/* ==========================================================================
   FlickerBytes / Niyam — shared stylesheet
   Design principles: restrained palette, no emoji, line-icons, calm typography.
   See CLAUDE.md for the full design system rationale.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

:root {
  /* Brand — aligned to the logo (blue shield → navy, sparse cyan accent) */
  --brand:       #1B50E0;
  --brand-2:     #1543C4;
  --brand-navy:  #0A1F52;
  --brand-tint:  #EEF3FE;
  --brand-tint-2:#DCE7FD;
  --brand-line:  #C7D6FA;
  --accent:      #12A7C4;   /* cyan from the logo — used sparingly */
  --accent-tint: #E2F4F8;

  /* Neutrals */
  --ink:    #0D1526;
  --slate:  #3E4A61;
  --muted:  #6B7688;
  --faint:  #9AA4B6;
  --line:   #E6E9F0;
  --line-2: #D4DAE5;
  --bg:     #FFFFFF;
  --soft:   #F7F8FB;
  --soft-2: #EEF1F6;

  /* Status */
  --ok:     #157F52;
  --ok-bg:  #E4F4EC;
  --warn:   #9A5B08;
  --warn-bg:#FBEEDA;

  --shadow-sm: 0 1px 2px rgba(13,21,38,.05), 0 1px 3px rgba(13,21,38,.04);
  --shadow:    0 6px 20px rgba(13,21,38,.07), 0 2px 6px rgba(13,21,38,.04);
  --shadow-lg: 0 24px 60px rgba(13,21,38,.10), 0 8px 20px rgba(13,21,38,.05);

  --ff: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(.16,1,.3,1);
  --r: 12px;
  --maxw: 1180px;
}

body {
  font-family: var(--ff);
  background: var(--bg);
  color: var(--slate);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { color: var(--ink); line-height: 1.12; letter-spacing: -0.02em; font-weight: 700; }
h1 { font-size: clamp(2.3rem, 4.6vw, 3.7rem); letter-spacing: -0.033em; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.7rem); letter-spacing: -0.028em; }
h3 { font-size: clamp(1.1rem, 1.6vw, 1.3rem); }
h4 { font-size: 1rem; }
p  { font-size: 1.01rem; line-height: 1.72; color: var(--slate); }
a  { color: var(--brand); text-decoration: none; }
strong { color: var(--ink); font-weight: 600; }

.lead { font-size: 1.15rem; line-height: 1.7; color: var(--slate); }
.muted { color: var(--muted); }

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section-sm { padding: 56px 0; }
.bg-soft { background: var(--soft); }
.bg-ink { background: var(--ink); }
.center { text-align: center; }
.section-head { max-width: 680px; margin: 0 auto 56px; }
.section-head.center { text-align: center; }
.section-head p { margin-top: 16px; font-size: 1.08rem; }

/* ── Eyebrow ────────────────────────────────────────────── */
.eyebrow {
  font-size: .77rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--brand); border-radius: 2px; }
.section-head.center .eyebrow { justify-content: center; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--ff); font-weight: 600; font-size: .93rem;
  padding: 12px 22px; border-radius: 10px; cursor: pointer;
  transition: all .18s var(--ease); border: 1.5px solid transparent;
  white-space: nowrap; letter-spacing: -0.01em; line-height: 1;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 1px 2px rgba(27,80,224,.35); }
.btn-primary:hover { background: var(--brand-2); box-shadow: 0 8px 22px rgba(27,80,224,.28); transform: translateY(-1px); }
.btn-secondary { background: #fff; color: var(--ink); border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--brand); }
.btn-ghost:hover { background: var(--brand-tint); }
.btn-lg { padding: 15px 30px; font-size: 1rem; border-radius: 11px; }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-outline-light:hover { background: rgba(255,255,255,.08); border-color: #fff; }
.btn-block { width: 100%; }

/* ── Badges & pills ─────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .73rem; font-weight: 600; letter-spacing: .04em;
  padding: 5px 13px; border-radius: 100px;
  background: var(--brand-tint); color: var(--brand-2); border: 1px solid var(--brand-line);
}
.badge-dot::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge-accent { background: var(--accent-tint); color: #0B7C93; border-color: #B6E3EC; }
.badge-ok { background: var(--ok-bg); color: var(--ok); border-color: #B9E3CC; }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8rem; font-weight: 600; color: var(--slate);
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  padding: 7px 13px;
}
.tag svg { width: 15px; height: 15px; color: var(--brand); }

/* ── Icon chips ─────────────────────────────────────────── */
.ico {
  width: 44px; height: 44px; border-radius: 11px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-tint); color: var(--brand);
}
.ico svg { width: 22px; height: 22px; }
.ico-accent { background: var(--accent-tint); color: #0B7C93; }
.ico-navy { background: var(--brand-navy); color: #fff; }

/* ── Cards ──────────────────────────────────────────────── */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 30px; box-shadow: var(--shadow-sm); transition: all .24s var(--ease);
}
.card:hover { border-color: var(--line-2); box-shadow: var(--shadow); transform: translateY(-3px); }
.card h3 { margin: 18px 0 8px; }
.card p { font-size: .92rem; line-height: 1.65; }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

.divider { height: 1px; background: var(--line); border: 0; }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
#nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 34px; width: auto; display: block; }
.nav-menu { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-menu > li > a, .nav-drop-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .92rem; font-weight: 500; color: var(--slate);
  padding: 9px 14px; border-radius: 9px; background: none; border: none;
  font-family: var(--ff); cursor: pointer; transition: all .15s;
}
.nav-menu > li > a:hover, .nav-drop-toggle:hover { color: var(--ink); background: var(--soft-2); }
.nav-drop-toggle svg { width: 15px; height: 15px; transition: transform .2s; }
.nav-drop { position: relative; }
.nav-drop.open .nav-drop-toggle svg { transform: rotate(180deg); }
.nav-drop-panel {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(6px);
  width: 520px; background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-lg); padding: 14px; opacity: 0; visibility: hidden;
  transition: all .2s var(--ease); display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
}
.nav-drop.open .nav-drop-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-drop-item { display: flex; gap: 12px; align-items: flex-start; padding: 12px; border-radius: 11px; transition: background .15s; }
.nav-drop-item:hover { background: var(--soft); }
.nav-drop-item .ico { width: 38px; height: 38px; border-radius: 9px; }
.nav-drop-item .ico svg { width: 19px; height: 19px; }
.nav-drop-item h5 { font-size: .88rem; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.nav-drop-item p { font-size: .76rem; color: var(--muted); line-height: 1.4; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-hamburger { display: none; background: none; border: 1px solid var(--line-2); border-radius: 9px; padding: 8px; color: var(--ink); cursor: pointer; }

/* ==========================================================================
   HERO
   ========================================================================== */
.page-top { padding-top: 70px; }
#hero { padding-top: 70px; position: relative; overflow: hidden; background: #fff; }
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 78% 30%, rgba(27,80,224,.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 45% at 5% 85%, rgba(18,167,196,.05) 0%, transparent 65%);
}
.hero-dots {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: radial-gradient(circle, #CBD3E4 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 60% 0%, #000 25%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 70% at 60% 0%, #000 25%, transparent 75%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center;
  padding: 76px 0 68px;
}
.hero h1 { margin-bottom: 22px; }
.hero-sub { font-size: 1.14rem; color: var(--slate); line-height: 1.7; margin-bottom: 34px; max-width: 500px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-proof { padding-top: 28px; border-top: 1px solid var(--line); }
.hero-proof-label { font-size: .78rem; color: var(--muted); font-weight: 600; letter-spacing: .04em; margin-bottom: 12px; text-transform: uppercase; }
.hero-proof-tags { display: flex; gap: 8px; flex-wrap: wrap; }

/* Product visual — compliance dashboard mock */
.mock {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
}
.mock-bar { background: var(--soft); border-bottom: 1px solid var(--line); padding: 12px 16px; display: flex; align-items: center; gap: 7px; }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-title { font-size: .74rem; font-weight: 600; color: var(--muted); margin-left: 8px; }
.mock-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.mock-scores { display: flex; gap: 10px; }
.mock-score { flex: 1; background: var(--soft); border: 1px solid var(--line); border-radius: 11px; padding: 14px; }
.mock-score-n { font-size: 1.55rem; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -0.03em; }
.mock-score-l { font-size: .62rem; color: var(--muted); margin-top: 5px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.mock-bars { display: flex; flex-direction: column; gap: 9px; }
.mock-brow { display: flex; align-items: center; gap: 10px; }
.mock-blbl { font-size: .68rem; font-weight: 600; color: var(--slate); width: 76px; flex-shrink: 0; }
.mock-btrack { flex: 1; height: 6px; background: var(--soft-2); border-radius: 100px; overflow: hidden; }
.mock-bfill { height: 100%; border-radius: 100px; background: var(--brand); }
.mock-bpct { font-size: .68rem; font-weight: 700; color: var(--ink); width: 32px; text-align: right; }
.mock-alert { background: var(--brand-tint); border: 1px solid var(--brand-line); border-radius: 9px; padding: 10px 13px; font-size: .72rem; color: var(--brand-2); display: flex; align-items: center; gap: 9px; font-weight: 500; }
.mock-pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); animation: pulse 2s ease infinite; flex-shrink: 0; }
.mock-rows { display: flex; flex-direction: column; gap: 7px; }
.mock-row { display: flex; align-items: center; gap: 10px; background: var(--soft); border: 1px solid var(--line); border-radius: 9px; padding: 9px 12px; font-size: .72rem; color: var(--slate); font-weight: 500; }
.mock-row svg { width: 15px; height: 15px; color: var(--brand); flex-shrink: 0; }
.mock-pill { margin-left: auto; font-size: .62rem; font-weight: 700; padding: 3px 8px; border-radius: 100px; }
.pill-ok { background: var(--ok-bg); color: var(--ok); }
.pill-wip { background: var(--brand-tint); color: var(--brand); }
.pill-pend { background: var(--warn-bg); color: var(--warn); }
.mock-float {
  position: absolute; top: -14px; right: -14px; background: var(--ink); color: #fff;
  border-radius: 11px; padding: 11px 15px; font-size: .74rem; font-weight: 600;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 8px;
  animation: floatY 5s ease-in-out infinite;
}
.mock-float svg { width: 15px; height: 15px; color: #4ADE80; }

/* ==========================================================================
   INDUSTRY STRIP
   ========================================================================== */
.strip { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; }
.strip-inner { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; justify-content: center; }
.strip-label { font-size: .74rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.strip-items { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.strip-item {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 9px;
  padding: 9px 15px; font-size: .84rem; font-weight: 600; color: var(--slate);
  box-shadow: var(--shadow-sm); transition: all .18s;
}
.strip-item:hover { border-color: var(--brand-line); color: var(--brand); transform: translateY(-2px); }
.strip-item svg { width: 17px; height: 17px; color: var(--brand); }

/* ==========================================================================
   FEATURE LIST (icon + text)
   ========================================================================== */
.featurelist { display: flex; flex-direction: column; gap: 16px; }
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .ico { border-radius: 10px; }
.feature-txt h4 { font-size: .98rem; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.feature-txt p { font-size: .89rem; line-height: 1.6; }

/* Split section */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* Niyam module panel */
.panel { background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden; }
.panel-head { background: var(--brand-navy); padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; }
.panel-head h4 { color: #fff; font-size: .84rem; }
.panel-head .badge { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.2); }
.panel-body { padding: 18px; display: flex; flex-direction: column; gap: 11px; }
.module { display: flex; align-items: center; gap: 12px; background: var(--soft); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; }
.module svg { width: 19px; height: 19px; color: var(--brand); flex-shrink: 0; }
.module-name { font-size: .84rem; font-weight: 600; color: var(--ink); flex: 1; }
.module-status { font-size: .64rem; font-weight: 700; padding: 3px 9px; border-radius: 100px; }
.st-active { background: var(--ok-bg); color: var(--ok); }
.st-monitor { background: var(--brand-tint); color: var(--brand); }
.st-review { background: var(--warn-bg); color: var(--warn); }
.panel-progress { margin-top: 3px; }
.panel-progress-lbl { display: flex; justify-content: space-between; font-size: .68rem; font-weight: 600; color: var(--muted); margin-bottom: 7px; }
.panel-progress-track { height: 8px; background: var(--soft-2); border-radius: 100px; overflow: hidden; }
.panel-progress-fill { height: 100%; border-radius: 100px; background: var(--brand); }

/* ==========================================================================
   FRAMEWORK CARDS
   ========================================================================== */
.fw-card { position: relative; overflow: hidden; }
.fw-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--brand); }
.fw-card .ico { margin-bottom: 4px; }
.fw-name { font-size: 1rem; font-weight: 700; color: var(--ink); margin: 16px 0 6px; }
.fw-desc { font-size: .84rem; color: var(--muted); margin-bottom: 16px; line-height: 1.55; }
.fw-meta { display: flex; align-items: baseline; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--line); }
.fw-count { font-size: 1.4rem; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.fw-count span { font-size: .72rem; font-weight: 500; color: var(--muted); margin-left: 5px; }
.fw-req { font-size: .66rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 3px 9px; border-radius: 100px; }
.fw-req-must { background: #FCE8E6; color: #B42318; }
.fw-req-opt { background: var(--soft-2); color: var(--muted); }

/* ==========================================================================
   STEPS
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.steps::before { content: ''; position: absolute; top: 30px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, var(--brand-tint), var(--brand-line), var(--brand-tint)); }
.step { text-align: center; padding: 0 18px; position: relative; z-index: 1; }
.step-n { width: 60px; height: 60px; border-radius: 50%; background: #fff; border: 2px solid var(--brand); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 800; color: var(--brand); margin: 0 auto 20px; box-shadow: 0 0 0 6px var(--brand-tint); }
.step h3 { font-size: .96rem; margin-bottom: 8px; }
.step p { font-size: .84rem; line-height: 1.6; }

/* ==========================================================================
   NUMBERED / WHY CARDS
   ========================================================================== */
.why-card .why-n { font-size: 2.4rem; font-weight: 800; color: var(--brand-tint-2); line-height: 1; margin-bottom: 14px; letter-spacing: -0.03em; }
.why-card h3 { margin-bottom: 10px; }
.why-card p { font-size: .9rem; line-height: 1.68; }

/* ==========================================================================
   PRICING
   ========================================================================== */
.price-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; align-items: start; }
.price-card { background: #fff; border: 1.5px solid var(--line); border-radius: 18px; padding: 30px 26px; position: relative; overflow: hidden; transition: all .24s var(--ease); }
.price-card:hover { box-shadow: var(--shadow); border-color: var(--line-2); transform: translateY(-3px); }
.price-card.featured { background: var(--ink); border-color: var(--ink); box-shadow: var(--shadow-lg); }
.price-tier { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.featured .price-tier { color: rgba(255,255,255,.5); }
.price-name { font-size: 1.28rem; font-weight: 800; color: var(--ink); margin-bottom: 5px; letter-spacing: -0.02em; }
.featured .price-name { color: #fff; }
.price-tag { font-size: .82rem; color: var(--muted); line-height: 1.55; margin-bottom: 22px; min-height: 60px; }
.featured .price-tag { color: rgba(255,255,255,.6); }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin: 20px 0 26px; }
.price-list li { display: flex; gap: 9px; font-size: .84rem; color: var(--slate); line-height: 1.45; align-items: flex-start; }
.featured .price-list li { color: rgba(255,255,255,.72); }
.price-list svg { width: 16px; height: 16px; color: var(--ok); flex-shrink: 0; margin-top: 1px; }
.featured .price-list svg { color: #4ADE80; }
.price-note { font-size: .74rem; color: var(--muted); text-align: center; margin-top: 10px; }
.featured .price-note { color: rgba(255,255,255,.4); }
.featured-flag { position: absolute; top: 0; left: 50%; transform: translateX(-50%); background: var(--brand); color: #fff; font-size: .64rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 4px 15px; border-radius: 0 0 9px 9px; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.ctaband { background: var(--ink); padding: 88px 0; position: relative; overflow: hidden; text-align: center; }
.ctaband::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 65% 75% at 50% 40%, rgba(27,80,224,.28) 0%, transparent 70%); }
.ctaband-inner { position: relative; z-index: 2; }
.ctaband h2 { color: #fff; margin-bottom: 16px; }
.ctaband p { color: rgba(255,255,255,.62); font-size: 1.06rem; max-width: 520px; margin: 0 auto 34px; }
.ctaband-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.ctaband-contact { margin-top: 34px; display: flex; align-items: center; justify-content: center; gap: 30px; flex-wrap: wrap; }
.ctaband-contact-item { display: flex; align-items: center; gap: 8px; font-size: .87rem; color: rgba(255,255,255,.55); }
.ctaband-contact-item svg { width: 16px; height: 16px; }
.ctaband-contact-item a { color: rgba(255,255,255,.82); font-weight: 500; }
.ctaband-contact-item a:hover { color: #fff; }

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-wrap { background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); padding: 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .84rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field label .req { color: #B42318; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--ff); font-size: .94rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line-2); border-radius: 10px;
  background: #fff; transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-tint);
}
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: #D0342B; box-shadow: 0 0 0 3px #FBEAE8; }
.field-error { font-size: .78rem; color: #D0342B; margin-top: 6px; display: none; }
.field-error.show { display: block; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 14px; text-align: center; }
.form-status { font-size: .9rem; font-weight: 600; padding: 12px 16px; border-radius: 10px; margin-bottom: 18px; display: none; }
.form-status.show { display: block; }
.form-status.error { background: #FCE8E6; color: #B42318; }
.form-status.sending { background: var(--brand-tint); color: var(--brand-2); }

/* Contact split */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-methods { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; }
.contact-method { display: flex; gap: 15px; align-items: flex-start; }
.contact-method h4 { font-size: .92rem; margin-bottom: 3px; }
.contact-method a, .contact-method p { font-size: .9rem; color: var(--slate); }
.contact-method a:hover { color: var(--brand); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer { background: #060C1C; padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-brand img { height: 30px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.4); line-height: 1.7; margin-top: 16px; max-width: 270px; }
.footer-contact { margin-top: 16px; display: flex; flex-direction: column; gap: 7px; }
.footer-contact a { font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-contact a:hover { color: rgba(255,255,255,.85); }
.footer-col h5 { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.32); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: .86rem; color: rgba(255,255,255,.5); }
.footer-links a:hover { color: rgba(255,255,255,.9); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-legal a:hover { color: rgba(255,255,255,.6); }

/* ==========================================================================
   SECTOR PAGE bits
   ========================================================================== */
.sector-hero { padding: 116px 0 72px; position: relative; overflow: hidden; background: var(--soft); border-bottom: 1px solid var(--line); }
.sector-hero .hero-bg { background: radial-gradient(ellipse 50% 60% at 82% 20%, rgba(27,80,224,.07) 0%, transparent 70%); }
.sector-hero-inner { position: relative; z-index: 2; max-width: 720px; }
.sector-hero .breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .82rem; color: var(--muted); margin-bottom: 20px; }
.sector-hero .breadcrumb a { color: var(--muted); }
.sector-hero .breadcrumb a:hover { color: var(--brand); }
.reg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.reg-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px; box-shadow: var(--shadow-sm); }
.reg-card .ico { margin-bottom: 14px; }
.reg-card h4 { margin-bottom: 7px; font-size: .98rem; }
.reg-card p { font-size: .85rem; line-height: 1.6; }
.reg-card .badge { margin-top: 14px; }
.pain-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.pain-list li { display: flex; gap: 13px; align-items: flex-start; font-size: .96rem; color: var(--slate); }
.pain-list svg { width: 22px; height: 22px; color: var(--brand); flex-shrink: 0; margin-top: 1px; }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.45;transform:scale(1.5)} }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: .08s; } .rd2 { transition-delay: .16s; } .rd3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 540px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .price-grid { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .reg-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-menu { display: none; }
  .nav-hamburger { display: block; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .section { padding: 68px 0; }
  .container { padding: 0 18px; }
  .hero-inner { padding: 44px 0; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .mock-float { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .reg-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .featured { transform: none !important; }
  .steps { grid-template-columns: 1fr 1fr; gap: 34px; }
  .steps::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .ctaband-actions { flex-direction: column; align-items: center; }
  .ctaband-actions .btn { width: 100%; max-width: 320px; }
  .ctaband-contact { flex-direction: column; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .nav-actions .btn-secondary { display: none; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .strip-inner { gap: 14px; }
}

/* Mobile nav panel (JS toggled) */
.nav-mobile {
  display: none; position: fixed; top: 70px; left: 0; right: 0; z-index: 800;
  background: rgba(255,255,255,.98); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  padding: 18px 24px 26px; flex-direction: column; gap: 4px;
  max-height: calc(100vh - 70px); overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 1rem; font-weight: 600; color: var(--ink); padding: 11px 0; border-bottom: 1px solid var(--soft-2); }
.nav-mobile .nav-mobile-sub { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); padding: 14px 0 4px; border: 0; }
.nav-mobile a.sub { padding-left: 12px; font-weight: 500; color: var(--slate); font-size: .92rem; }
.nav-mobile .btn { margin-top: 14px; }
