/* ============================================================
   Silver Fox Cyber — VaultShield
   Main Stylesheet
   Navy + Cream + Warm Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:        #1a2744;
  --navy-dark:   #0f1829;
  --navy-mid:    #243050;
  --navy-light:  #2e3d63;
  --cream:       #f5f0e8;
  --cream-dark:  #ebe4d5;
  --cream-mid:   #f0e9d8;
  --gold:        #c9a84c;
  --gold-light:  #dfc070;
  --gold-dark:   #a8882e;
  --teal:        #45c4b8;
  --teal-dark:   #2ea89c;
  --white:       #ffffff;
  --text-dark:   #1a2744;
  --text-mid:    #3d4f6e;
  --text-light:  #6b7a96;
  --border:      #d8cfbb;
  --shadow-sm:   0 2px 8px rgba(26,39,68,0.08);
  --shadow-md:   0 6px 24px rgba(26,39,68,0.12);
  --shadow-lg:   0 16px 48px rgba(26,39,68,0.18);
  --radius:      4px;
  --radius-lg:   8px;
  --transition:  0.22s ease;
  --max-width:   1160px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:   'Jost', 'Helvetica Neue', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--cream);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }
ul, ol { padding-left: 1.4em; }
li { margin-bottom: 0.4em; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { color: var(--text-mid); margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

.display-serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
}

/* ── Layout Utilities ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 128px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Labels ── */
.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.label--light { color: var(--gold-light); }
.label--cream { color: var(--cream-dark); opacity: 0.7; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,240,232,0.4);
}
.btn-outline:hover {
  background: rgba(245,240,232,0.1);
  border-color: var(--cream);
  color: var(--cream);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--cream);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.btn-ghost:hover { color: var(--gold-dark); }
.btn-ghost::after { content: ' →'; }

/* ── Navigation ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 88px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity var(--transition);
}

.nav-logo:hover { opacity: 0.88; color: inherit; }

.nav-logo-lockup {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  position: relative;
}

.logo-img-nav {
  height: 72px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 6px rgba(69,196,184,0.25));
  transition: filter var(--transition);
}

.nav-logo:hover .logo-img-nav {
  filter: drop-shadow(0 0 12px rgba(69,196,184,0.55));
}

.logo-img-footer {
  height: 60px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 5px rgba(69,196,184,0.2));
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.38rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 3px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.75);
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold-light); }

.nav-cta .btn { padding: 10px 22px; font-size: 0.72rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all var(--transition);
}

/* ── Hero — Home ── */
.hero {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
}

/* Subtle geometric background pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Gold accent border — uniform all around */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-image: linear-gradient(
    135deg,
    transparent 0%,
    rgba(201,168,76,0.55) 20%,
    rgba(201,168,76,0.75) 50%,
    rgba(201,168,76,0.55) 80%,
    transparent 100%
  ) 1;
  pointer-events: none;
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 1.4rem;
  font-weight: 700;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(245,240,232,0.72);
  line-height: 1.75;
  margin-bottom: 2.4rem;
  font-family: var(--font-body);
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero stat card */
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  backdrop-filter: blur(8px);
}

.hero-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  font-size: 1.4rem;
}

.hero-card h3 {
  color: var(--cream);
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.hero-card p {
  color: rgba(245,240,232,0.65);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.4rem;
}

.hero-card-stat {
  border-top: 1px solid rgba(201,168,76,0.2);
  padding-top: 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-item {}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label-sm {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* ── Trust bar ── */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 18px 0;
}

.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(245,240,232,0.65);
  white-space: nowrap;
}

.trust-item span.icon {
  color: var(--gold);
  font-size: 1rem;
}

/* ── Story section ── */
.story-section {
  background: var(--cream);
  position: relative;
  padding: 100px 0;
}

.story-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 6rem;
  align-items: center;
}

.story-text h2 { margin-bottom: 1.4rem; }
.story-text p { font-size: 1.05rem; margin-bottom: 1.4rem; }

.story-signature {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-light);
}

.story-aside {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.story-aside::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 10rem;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  pointer-events: none;
}

.story-aside blockquote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--cream);
  border: none;
  padding: 0;
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 1;
}

.story-aside-caption {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.55);
  letter-spacing: 0.06em;
}

.story-aside-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem 0;
}

/* ── How it works ── */
.steps-section {
  background: var(--cream-dark);
  padding: 100px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(26,39,68,0.2);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.step-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--navy);
}

.step-card p {
  font-size: 0.94rem;
  color: var(--text-mid);
}

/* ── Tiers overview ── */
.tiers-section {
  background: var(--navy-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.tiers-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

.tiers-section .label { color: var(--gold-light); }
.tiers-section h2 { color: var(--cream); }

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  position: relative;
  z-index: 1;
}

.tier-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  transition: all var(--transition);
  position: relative;
}

.tier-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.tier-card.featured {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.tier-window {
  font-size: 0.78rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  font-weight: 500;
}

.tier-price {
  margin-bottom: 1.6rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.tier-price-from {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.2rem;
}

.tier-price-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}

.tier-price-num sup {
  font-size: 1.4rem;
  font-weight: 400;
  vertical-align: top;
  margin-top: 0.4rem;
  display: inline-block;
}

.tier-price-num sub {
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(245,240,232,0.5);
}

.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
}

.tier-features li {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.72);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(245,240,232,0.06);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 0;
}

.tier-features li::before {
  content: '✓';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ── Pricing table ── */
.pricing-table-wrap {
  overflow-x: auto;
  margin: 3rem 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

table.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: var(--white);
}

.pricing-table thead th {
  background: var(--navy);
  color: var(--cream);
  padding: 18px 20px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  vertical-align: middle;
}

.pricing-table thead th:first-child {
  text-align: left;
  background: var(--navy-dark);
}

.pricing-table thead .feature-row th {
  background: var(--navy-mid);
  color: rgba(245,240,232,0.55);
  font-size: 0.7rem;
  padding: 10px 20px;
  font-weight: 400;
  text-align: left;
}

.pricing-table thead .feature-row td {
  background: var(--navy-mid);
  color: rgba(245,240,232,0.75);
  font-size: 0.82rem;
  padding: 10px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(245,240,232,0.06);
}

.pricing-table thead .feature-row th:first-child {
  background: var(--navy-light);
  text-align: left;
}

.pricing-table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--text-mid);
  transition: background var(--transition);
}

.pricing-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--navy);
  background: var(--cream-dark);
  font-size: 0.88rem;
}

.pricing-table tbody tr:hover td {
  background: var(--cream-mid);
}

.pricing-table tbody tr:hover td:first-child {
  background: var(--cream-dark);
}

.price-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.price-val .mo {
  font-size: 0.9rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-light);
}

.custom-quote {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--gold-dark);
}

.check { color: #2a9d6e; font-size: 1.1rem; }
.dash  { color: var(--border); }

/* ── Trust section ── */
.trust-section {
  background: var(--cream);
  padding: 100px 0;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.trust-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold-light));
}

.trust-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
}

.trust-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.trust-card p { font-size: 0.94rem; }

/* ── PDF Lead Magnet ── */
.pdf-section {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.pdf-section::after {
  display: none;
}

.pdf-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pdf-section .label { color: var(--gold-light); }
.pdf-section h2 { color: var(--cream); font-size: clamp(1.6rem, 3vw, 2.4rem); }
.pdf-section p { color: rgba(245,240,232,0.7); }

.pdf-topics {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 2rem;
}

.pdf-topics li {
  color: rgba(245,240,232,0.75);
  font-size: 0.92rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(245,240,232,0.08);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0;
}

.pdf-topics li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
}

.pdf-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
}

.pdf-form h3 {
  color: var(--cream);
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.pdf-form p {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.55);
  margin-bottom: 1.4rem;
}

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
  margin-bottom: 0.4rem;
}

.form-group input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input::placeholder { color: rgba(245,240,232,0.3); }
.form-group input:focus { border-color: var(--gold); }

.form-note {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.35);
  margin-top: 0.8rem;
  text-align: center;
}

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--navy-dark);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.page-hero h1 { color: var(--cream); margin-bottom: 1rem; }
.page-hero .sub {
  font-size: 1.1rem;
  color: rgba(245,240,232,0.65);
  font-weight: 300;
  max-width: 640px;
  line-height: 1.75;
}

/* ── Content sections ── */
.content-section {
  padding: 80px 0;
}

.content-section.alt { background: var(--cream-dark); }
.content-section.navy { background: var(--navy-dark); }

.content-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Numbered steps ── */
.numbered-steps { margin-top: 3rem; }

.numbered-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: start;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.3);
  line-height: 1;
  padding-top: 0.3rem;
}

.step-content h3 { margin-bottom: 0.6rem; }
.step-content p { font-size: 1rem; }

.step-divider {
  grid-column: 1 / -1;
  height: 1px;
  background: var(--border);
  margin-bottom: 0;
}

/* ── FAQ ── */
.faq-list { margin-top: 2.5rem; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.4rem 1.6rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--cream-mid); }
.faq-question.open { background: var(--cream-dark); }

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gold);
  transition: transform var(--transition);
}

.faq-question.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 1.6rem 1.4rem;
  font-size: 0.96rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.faq-answer.open { display: block; }

/* ── Resources ── */
.resource-group {
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
}

.resource-group:last-child { border-bottom: none; }

.resource-group h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.resource-group .resource-intro {
  color: var(--text-light);
  font-size: 0.94rem;
  margin-bottom: 1.4rem;
}

.resource-links { display: flex; flex-direction: column; gap: 0.7rem; }

.resource-link {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition);
}

.resource-link:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateX(3px);
}

.resource-link-icon {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.resource-link-content {}

.resource-link-title {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--navy);
  display: block;
  margin-bottom: 0.2rem;
}

.resource-link-desc {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ── About ── */
.about-intro {
  max-width: 760px;
  font-size: 1.1rem;
  line-height: 1.85;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.6rem;
}

.value-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.92rem;
  margin: 0;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}

.contact-form h2 { margin-bottom: 0.5rem; }
.contact-form > p { margin-bottom: 2rem; font-size: 0.96rem; }

.form-group-light label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.form-group-light input,
.form-group-light select,
.form-group-light textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
  margin-bottom: 1.2rem;
}

.form-group-light input:focus,
.form-group-light select:focus,
.form-group-light textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.form-group-light textarea { min-height: 140px; resize: vertical; }

.contact-info h3 { margin-bottom: 1.4rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  font-size: 0.94rem;
}

.contact-detail-icon {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.response-note {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-top: 2rem;
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-banner h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-banner p { color: rgba(245,240,232,0.65); margin-bottom: 2rem; font-size: 1.05rem; }

.cta-banner-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ── */
.site-footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 60px 0 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  margin-bottom: 2rem;
}

.footer-brand {}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.footer-brand-logo svg {
  filter: drop-shadow(0 0 4px rgba(69,196,184,0.2));
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}

.footer-brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 2px;
  display: block;
}

.footer-brand p {
  font-size: 0.86rem;
  color: rgba(245,240,232,0.45);
  line-height: 1.7;
  margin: 0;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li { margin-bottom: 0.6rem; }

.footer-col a {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.5);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.3);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.3);
}

.footer-legal a:hover { color: var(--cream); }

/* ── Utilities ── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-cream { color: var(--cream); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-3 { animation-delay: 0.3s; opacity: 0; }
.fade-up-4 { animation-delay: 0.4s; opacity: 0; }

/* ── Mobile ── */
@media (max-width: 960px) {
  .hero-inner        { grid-template-columns: 1fr; }
  .hero-card         { display: none; }
  .story-inner       { grid-template-columns: 1fr; gap: 3rem; }
  .pdf-inner         { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid      { grid-template-columns: 1fr; }
  .footer-top        { grid-template-columns: 1fr 1fr; }
  .grid-3, .steps-grid, .tiers-grid, .trust-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container         { padding: 0 1.25rem; }
  .section           { padding: 64px 0; }
  .grid-2, .grid-3, .steps-grid, .tiers-grid, .trust-cards, .values-grid { grid-template-columns: 1fr; }
  .footer-top        { grid-template-columns: 1fr; }
  .nav-links         { display: none; }
  .nav-toggle        { display: flex; }
  .nav-links.open    { display: flex; flex-direction: column; position: fixed; top: 88px; left: 0; right: 0; background: var(--navy-dark); padding: 1.5rem 2rem; gap: 1.4rem; border-top: 1px solid rgba(201,168,76,0.15); }
  .nav-cta           { display: none; }
  .numbered-step     { grid-template-columns: 48px 1fr; gap: 1rem; }
  .step-number       { font-size: 2.5rem; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .footer-bottom     { flex-direction: column; text-align: center; }
}
