/* =============================================================================
   Leading AI Solutions LLC — leadingaisolution.com
   Govern AI. Secure AI. Make AI Safe.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Surfaces — deep navy, matching the capability deck */
  --bg:          #050a16;
  --bg-2:        #071122;
  --surface:     #0b1830;
  --surface-2:   #0f2140;
  --surface-3:   #14294c;

  /* Accents */
  --cyan:        #22d3ee;
  --cyan-br:     #67e8f9;
  --cyan-dim:    #0e7490;
  --blue:        #3b82f6;
  --blue-lt:     #60a5fa;
  --violet:      #8b5cf6;

  /* Text */
  --text:        #eaf1ff;
  --text-md:     #a9bdda;
  --text-dim:    #7089ae;
  --text-faint:  #4d6285;

  /* Lines */
  --border:      rgba(96, 165, 250, 0.16);
  --border-br:   rgba(103, 232, 249, 0.34);

  --font-head:   'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-w:       1200px;
  --section-py:  104px;
  --radius:      14px;
  --radius-sm:   9px;

  --glow:        0 0 44px rgba(34, 211, 238, 0.16);
  --shadow:      0 10px 40px rgba(0, 0, 0, 0.42);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── Typography helpers ───────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; }

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); margin-bottom: 16px; }
.section-head p { color: var(--text-md); font-size: 1.05rem; }

.accent { color: var(--cyan); }
.grad-text {
  background: linear-gradient(100deg, var(--cyan-br) 0%, var(--blue-lt) 55%, var(--violet) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 30px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-size: 0.83rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(100deg, var(--cyan) 0%, var(--blue) 100%);
  color: #04121f;
  box-shadow: 0 6px 26px rgba(34, 211, 238, 0.26);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 34px rgba(34, 211, 238, 0.4); }
.btn-outline {
  border-color: var(--border-br);
  color: var(--text);
  background: rgba(34, 211, 238, 0.05);
}
.btn-outline:hover { background: rgba(34, 211, 238, 0.12); border-color: var(--cyan); transform: translateY(-2px); }
.btn-ghost { color: var(--cyan); padding: 10px 0; }
.btn-ghost:hover { color: var(--cyan-br); }
.btn:disabled, .btn[aria-disabled="true"] { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }

/* ── Nav ──────────────────────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .28s ease, border-color .28s ease, backdrop-filter .28s ease;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(5, 10, 22, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.nav-logo .mark {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 0.82rem; color: #04121f;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.34);
}
.nav-logo .wordmark {
  font-family: var(--font-head); font-weight: 700; font-size: 0.98rem;
  letter-spacing: 0.02em; line-height: 1.15;
}
.nav-logo .wordmark small {
  display: block; font-size: 0.6rem; font-weight: 500; letter-spacing: 0.16em;
  color: var(--text-dim); text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--text-md);
  transition: color .18s ease;
}
.nav-links a:hover { color: var(--cyan); }
.nav-links .nav-cta {
  padding: 10px 20px; border-radius: 7px;
  background: linear-gradient(100deg, var(--cyan) 0%, var(--blue) 100%);
  color: #04121f; font-weight: 600; font-family: var(--font-head);
  font-size: 0.8rem; letter-spacing: 0.04em;
}
.nav-links .nav-cta:hover { color: #04121f; transform: translateY(-1px); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .2s; }

.nav-mobile {
  display: none; flex-direction: column;
  background: rgba(5, 10, 22, 0.97);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 8px 24px 20px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 13px 0; color: var(--text-md); font-size: 0.95rem;
  border-bottom: 1px solid rgba(96, 165, 250, 0.08);
}
.nav-mobile a:last-child { border-bottom: none; color: var(--cyan); font-weight: 600; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  padding: 180px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 880px 540px at 78% 8%,  rgba(59, 130, 246, 0.20), transparent 62%),
    radial-gradient(ellipse 720px 480px at 12% 78%, rgba(34, 211, 238, 0.13), transparent 64%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(96, 165, 250, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.055) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(ellipse 80% 65% at 50% 38%, #000 35%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 65% at 50% 38%, #000 35%, transparent 78%);
}
.hero-content { position: relative; z-index: 2; max-width: 880px; }
.hero-headline {
  font-size: clamp(2.5rem, 6.4vw, 4.35rem);
  line-height: 1.05; margin-bottom: 24px; letter-spacing: -0.035em;
}
.hero-sub {
  font-size: clamp(1.02rem, 1.9vw, 1.22rem);
  color: var(--text-md); max-width: 680px; margin-bottom: 36px;
}
.hero-pillars { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 38px; }
.hero-pillars .chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(11, 24, 48, 0.7);
  font-size: 0.82rem; font-weight: 500; color: var(--text-md);
}
.hero-pillars .chip svg { width: 15px; height: 15px; color: var(--cyan); flex-shrink: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-question {
  position: relative; z-index: 2;
  margin-top: 68px; padding: 26px 30px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--cyan);
  border-radius: var(--radius-sm);
  background: linear-gradient(100deg, rgba(34, 211, 238, 0.07), rgba(11, 24, 48, 0.5));
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.hero-question div span {
  display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 7px;
}
.hero-question div p { font-size: 0.97rem; color: var(--text); font-weight: 500; }
.hero-question div:last-child span { color: var(--cyan); }
.hero-question div:last-child p { color: var(--cyan-br); font-weight: 600; }

/* ── Trust strip ──────────────────────────────────────────────────────────── */
.trust-strip {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(11, 24, 48, 0.42);
  padding: 20px 0;
}
.trust-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 12px 22px;
  font-size: 0.8rem; letter-spacing: 0.05em; color: var(--text-dim);
}
.trust-inner strong { color: var(--text-md); font-weight: 600; }
.trust-inner .dot { color: var(--cyan-dim); }

/* ── Generic section ──────────────────────────────────────────────────────── */
section { padding: var(--section-py) 0; position: relative; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ── Risk landscape ───────────────────────────────────────────────────────── */
.risk-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.risk-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; background: var(--surface);
}
.risk-card.drivers { border-top: 3px solid var(--blue); }
.risk-card.risks   { border-top: 3px solid #f43f5e; }
.risk-card h3 { font-size: 1.16rem; margin-bottom: 20px; }
.risk-card.drivers h3 { color: var(--blue-lt); }
.risk-card.risks h3 { color: #fb7185; }
.risk-card li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid rgba(96, 165, 250, 0.09);
  font-size: 0.94rem; color: var(--text-md);
}
.risk-card li:last-child { border-bottom: none; }
.risk-card li svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 3px; }
.risk-card.drivers li svg { color: var(--blue-lt); }
.risk-card.risks li svg { color: #fb7185; }

.risk-note {
  margin-top: 28px; padding: 20px 26px;
  border: 1px solid var(--border-br); border-radius: var(--radius-sm);
  background: rgba(34, 211, 238, 0.06);
  display: flex; gap: 14px; align-items: center;
  color: var(--text); font-size: 0.97rem;
}
.risk-note svg { width: 22px; height: 22px; color: var(--cyan); flex-shrink: 0; }

/* ── Framework ────────────────────────────────────────────────────────────── */
.framework-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fw-step {
  position: relative; overflow: hidden;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); padding: 28px 26px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.fw-step:hover { transform: translateY(-4px); border-color: var(--border-br); box-shadow: var(--glow); }
.fw-step .num {
  font-family: var(--font-head); font-size: 2.6rem; font-weight: 800;
  line-height: 1; color: rgba(96, 165, 250, 0.17); margin-bottom: 12px;
}
.fw-step h3 {
  font-size: 1.05rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 10px;
}
.fw-step p { font-size: 0.92rem; color: var(--text-md); }

.fw-flow {
  margin-top: 34px; padding: 18px 26px; border-radius: var(--radius-sm);
  border: 1px dashed var(--border-br); background: rgba(34, 211, 238, 0.04);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 16px;
  font-family: var(--font-head); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-md);
}
.fw-flow .arrow { color: var(--cyan); }

/* ── Services ─────────────────────────────────────────────────────────────── */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.svc-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: linear-gradient(165deg, var(--surface) 0%, var(--bg-2) 100%);
  padding: 34px 32px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.svc-card:hover { transform: translateY(-4px); border-color: var(--border-br); box-shadow: var(--glow); }
.svc-card .svc-top { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.svc-icon {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 11px;
  display: grid; place-items: center;
  background: rgba(34, 211, 238, 0.11); border: 1px solid var(--border-br);
}
.svc-icon svg { width: 23px; height: 23px; color: var(--cyan); }
.svc-card h3 { font-size: 1.22rem; }
.svc-card .svc-lead { color: var(--text-md); font-size: 0.94rem; margin-bottom: 20px; }
.svc-card li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.9rem; color: var(--text-md); padding: 7px 0;
}
.svc-card li::before {
  content: ''; flex-shrink: 0; margin-top: 8px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--cyan);
}

/* ── Packages / pricing ───────────────────────────────────────────────────── */
.pkg-table-wrap { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.pkg-row {
  display: grid; grid-template-columns: 1.6fr 2fr 1fr auto;
  gap: 18px; align-items: center;
  padding: 20px 26px;
  border-bottom: 1px solid rgba(96, 165, 250, 0.1);
  transition: background .18s ease;
}
.pkg-row:last-child { border-bottom: none; }
.pkg-row:not(.pkg-head):hover { background: rgba(34, 211, 238, 0.045); }
.pkg-head {
  background: var(--surface-2);
  font-family: var(--font-head); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--text-dim);
}
.pkg-name { font-family: var(--font-head); font-weight: 600; font-size: 0.98rem; color: var(--text); }
.pkg-focus { font-size: 0.89rem; color: var(--text-md); }
.pkg-dur { font-size: 0.87rem; color: var(--text-md); white-space: nowrap; }
.pkg-cta {
  padding: 9px 17px; border-radius: 7px; border: 1px solid var(--border-br);
  background: rgba(34, 211, 238, 0.07);
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--cyan);
  cursor: pointer; white-space: nowrap; transition: all .18s ease;
}
.pkg-cta:hover:not(:disabled) { background: var(--cyan); color: #04121f; }
.pkg-cta:disabled { opacity: .4; cursor: not-allowed; }
.pkg-label { display: none; }

.pkg-foot {
  margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px 24px;
  align-items: center; justify-content: space-between;
  font-size: 0.86rem; color: var(--text-dim);
}
#pay-disabled-note { color: var(--text-faint); font-size: 0.82rem; }

/* ── Industries ───────────────────────────────────────────────────────────── */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ind-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); padding: 28px 26px;
  transition: transform .22s ease, border-color .22s ease;
}
.ind-card:hover { transform: translateY(-4px); border-color: var(--border-br); }
.ind-card svg { width: 26px; height: 26px; color: var(--cyan); margin-bottom: 14px; }
.ind-card h3 { font-size: 1.03rem; margin-bottom: 7px; }
.ind-card p { font-size: 0.88rem; color: var(--text-md); }

/* ── Partners ─────────────────────────────────────────────────────────────── */
.partner-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.partner-card {
  border: 1px solid var(--border); border-left: 3px solid var(--blue);
  border-radius: var(--radius); background: var(--surface); padding: 28px 30px;
}
.partner-card h3 { font-size: 1.06rem; margin-bottom: 14px; color: var(--blue-lt); }
.partner-card li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.9rem; color: var(--text-md); padding: 6px 0;
}
.partner-card li svg { width: 15px; height: 15px; color: var(--cyan); flex-shrink: 0; margin-top: 4px; }

/* ── Why us ───────────────────────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-item .why-icon {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(59, 130, 246, 0.12); border: 1px solid var(--border);
}
.why-item .why-icon svg { width: 21px; height: 21px; color: var(--blue-lt); }
.why-item h3 { font-size: 1rem; margin-bottom: 6px; }
.why-item p { font-size: 0.89rem; color: var(--text-md); }

.quote-block {
  margin-top: 56px; padding: 36px 40px;
  border: 1px solid var(--border-br); border-radius: var(--radius);
  background: linear-gradient(115deg, rgba(34, 211, 238, 0.08), rgba(139, 92, 246, 0.06));
  text-align: center;
}
.quote-block p {
  font-family: var(--font-head); font-size: clamp(1.05rem, 2.1vw, 1.4rem);
  font-weight: 500; font-style: italic; color: var(--text); margin-bottom: 14px;
  max-width: 800px; margin-left: auto; margin-right: auto; line-height: 1.5;
}
.quote-block cite {
  font-style: normal; font-size: 0.82rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cyan);
}

/* ── Leadership ───────────────────────────────────────────────────────────── */
.bio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.bio-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: linear-gradient(165deg, var(--surface) 0%, var(--bg-2) 100%);
  padding: 36px 34px;
  display: flex; flex-direction: column;
}
.bio-top { display: flex; gap: 20px; align-items: center; margin-bottom: 22px; }
.bio-photo {
  width: 96px; height: 96px; flex-shrink: 0; border-radius: 50%;
  object-fit: cover; object-position: center top;
  border: 2px solid var(--border-br);
  box-shadow: 0 0 26px rgba(34, 211, 238, 0.2);
}
.bio-top h3 { font-size: 1.4rem; margin-bottom: 4px; }
.bio-role {
  font-family: var(--font-head); font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 6px;
}
.bio-lead { font-size: 0.94rem; color: var(--text-md); margin-bottom: 22px; }
.bio-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  padding: 18px 0; margin-bottom: 20px;
  border-top: 1px solid rgba(96, 165, 250, 0.12);
  border-bottom: 1px solid rgba(96, 165, 250, 0.12);
}
.bio-stats div strong {
  display: block; font-family: var(--font-head); font-size: 1.3rem;
  font-weight: 700; color: var(--cyan-br); line-height: 1.2;
}
.bio-stats div span {
  font-size: 0.7rem; letter-spacing: 0.05em; color: var(--text-dim);
  text-transform: uppercase;
}
.bio-focus { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 12px; }
.bio-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.bio-tags span {
  padding: 6px 13px; border-radius: 100px;
  border: 1px solid var(--border); background: rgba(59, 130, 246, 0.07);
  font-size: 0.77rem; color: var(--text-md);
}
.bio-links { margin-top: auto; display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 0.85rem; }
.bio-links a { color: var(--cyan); display: inline-flex; align-items: center; gap: 6px; }
.bio-links a:hover { color: var(--cyan-br); }
.bio-links svg { width: 15px; height: 15px; }

/* ── Contact ──────────────────────────────────────────────────────────────── */
.contact-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 44px; align-items: start; }
.contact-side h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 16px; }
.contact-side > p { color: var(--text-md); margin-bottom: 32px; }
.contact-points li {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 13px 0; border-bottom: 1px solid rgba(96, 165, 250, 0.1);
}
.contact-points li:last-child { border-bottom: none; }
.contact-points svg { width: 19px; height: 19px; color: var(--cyan); flex-shrink: 0; margin-top: 3px; }
.contact-points strong { display: block; font-size: 0.93rem; font-weight: 600; }
.contact-points span { font-size: 0.87rem; color: var(--text-md); }
.contact-points a { color: var(--cyan); }

.contact-form {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); padding: 34px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: 0.73rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px;
  background: var(--bg-2); color: var(--text);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.94rem;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { resize: vertical; min-height: 118px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.14);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237089ae' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 17px;
  padding-right: 42px;
}
.field select option { background: var(--bg-2); color: var(--text); }
.form-note { font-size: 0.78rem; color: var(--text-faint); margin-top: 14px; }
.form-msg { padding: 14px 18px; border-radius: var(--radius-sm); font-size: 0.9rem; margin-bottom: 18px; display: block; }
/* Visibility is driven by the `hidden` attribute, so the modifier classes must
   only carry color — a `display` here would override [hidden] and leak both
   messages onto the page at load. */
.form-msg[hidden] { display: none !important; }
.form-msg.ok   { background: rgba(34, 211, 238, 0.1); border: 1px solid var(--border-br); color: var(--cyan-br); }
.form-msg.err  { background: rgba(244, 63, 94, 0.1); border: 1px solid rgba(244, 63, 94, 0.35); color: #fb7185; }

/* ── Final CTA ────────────────────────────────────────────────────────────── */
#cta-band {
  background:
    radial-gradient(ellipse 760px 420px at 50% 0%, rgba(59, 130, 246, 0.18), transparent 66%),
    var(--bg-2);
  border-top: 1px solid var(--border);
  text-align: center;
}
#cta-band h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 16px; }
#cta-band p { color: var(--text-md); max-width: 640px; margin: 0 auto 34px; font-size: 1.05rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 60px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: var(--text-dim); max-width: 320px; }
.footer-col h4 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 16px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.88rem; color: var(--text-md); transition: color .18s; }
.footer-col a:hover { color: var(--cyan); }
/* Conflict-of-interest disclosure — the site claims vendor neutrality, so the
   principals' CyberArmor.AI affiliation is stated plainly rather than buried. */
.affiliation {
  border: 1px solid var(--border);
  border-left: 3px solid var(--cyan);
  border-radius: var(--radius-sm);
  background: rgba(34, 211, 238, 0.045);
  padding: 16px 20px;
  margin-bottom: 26px;
  font-size: 0.81rem;
  line-height: 1.65;
  color: var(--text-dim);
  max-width: 860px;
}
.affiliation strong { color: var(--text-md); font-weight: 600; }

.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 10px 24px;
  align-items: center; justify-content: space-between;
  font-size: 0.79rem; color: var(--text-faint);
}
.footer-bottom .disclaimer { max-width: 640px; }

/* ── Scroll reveal ────────────────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1040px) {
  .framework-grid, .ind-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 900px) {
  :root { --section-py: 76px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  #hero { padding: 140px 0 84px; }
  .hero-question { grid-template-columns: 1fr; gap: 18px; }
  .risk-cols, .svc-grid, .bio-grid, .partner-grid { grid-template-columns: 1fr; }

  /* Pricing table → stacked cards */
  .pkg-table-wrap { border: none; background: none; overflow: visible; }
  .pkg-head { display: none; }
  .pkg-row {
    grid-template-columns: 1fr; gap: 0;
    border: 1px solid var(--border); border-radius: var(--radius);
    background: var(--surface); padding: 22px 24px; margin-bottom: 14px;
  }
  .pkg-row:last-child { margin-bottom: 0; }
  .pkg-label {
    display: block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.13em;
    text-transform: uppercase; color: var(--text-dim); margin: 12px 0 3px;
  }
  .pkg-name { font-size: 1.06rem; }
  .pkg-cta { margin-top: 18px; width: 100%; padding: 12px; }
}

@media (max-width: 620px) {
  :root { --section-py: 62px; }
  .container { padding: 0 18px; }
  .framework-grid, .ind-grid, .why-grid, .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .bio-top { flex-direction: column; align-items: flex-start; text-align: left; }
  .bio-card, .svc-card, .contact-form, .risk-card { padding: 26px 22px; }
  .quote-block { padding: 28px 24px; }
  .bio-stats { grid-template-columns: 1fr 1fr; }
}
