/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:        #1E3A8A;
  --navy-dark:   #162d6e;
  --navy-mid:    #2A3B4E;
  --gray-light:  #F8FAFC;
  --gray-mid:    #E2E8F0;
  --gray-border: #CBD5E1;
  --silver:      #94A3B8;
  --silver-light:#CBD5E1;
  --white:       #FFFFFF;
  --charcoal:    #1F2937;
  --text-muted:  #64748B;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.12);
  --transition:  .25s ease;
  --max-w:       1140px;
  --font:        "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.container-wide {
  width: 100%;
  padding-inline: clamp(1.5rem, 5vw, 5rem);
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 56ch;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin-inline: auto;
}

section {
  padding: 5rem 0;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0);    }

.btn-primary {
  background: #F8FAFC;
  color: var(--navy);
  border-color: #F8FAFC;
}

.btn-primary:hover {
  background: #E2E8F0;
  border-color: #E2E8F0;
  box-shadow: 0 6px 20px rgba(248,250,252,.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

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

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* ============================================================
   NAVIGATION
============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-nav.scrolled {
  background: rgba(30,58,138,.97);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

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

.nav-logo-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
}

.nav-logo-tagline {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--silver);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-links a {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  padding: .4rem .75rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  letter-spacing: .01em;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

.nav-cta {
  margin-left: .75rem;
}

.nav-cta a.btn-primary {
  color: var(--navy);
  background: #F8FAFC;
  border-color: #F8FAFC;
}

.nav-cta a.btn-primary:hover {
  background: #E2E8F0;
  border-color: #E2E8F0;
  color: var(--navy);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg);  }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.hero {
  --silver: #C8D4E0;
  padding: 0;
  background: linear-gradient(145deg, #1E3A8A 0%, #162d6e 100%);
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 65% 40%, rgba(200,212,224,.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 9rem 0 6rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(200,212,224,.12);
  border: 1px solid rgba(200,212,224,.35);
  color: var(--silver);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--silver);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--silver);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 50ch;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-benefits {
  margin-bottom: 2.5rem;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  margin-bottom: .45rem;
  font-weight: 500;
}

.hero-benefits li::before {
  content: "";
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: var(--silver);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%231F2937' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

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

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-mock {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 100%;
  max-width: 420px;
  backdrop-filter: blur(6px);
}

.mock-browser-bar {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: 1.25rem;
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mock-dot:nth-child(1) { background: #FF5F57; }
.mock-dot:nth-child(2) { background: #FEBC2E; }
.mock-dot:nth-child(3) { background: #28C840; }

.mock-url-bar {
  flex: 1;
  height: 22px;
  background: rgba(255,255,255,.1);
  border-radius: 4px;
  margin-left: .5rem;
  display: flex;
  align-items: center;
  padding: 0 .6rem;
}

.mock-url-text {
  font-size: .65rem;
  color: rgba(255,255,255,.4);
}

.mock-hero-block {
  background: linear-gradient(135deg, rgba(30,58,138,.6), rgba(42,59,78,.6));
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.mock-heading-line {
  height: 10px;
  background: rgba(255,255,255,.6);
  border-radius: 4px;
  margin-bottom: .6rem;
  width: 80%;
}

.mock-heading-line.short { width: 55%; }

.mock-para-line {
  height: 6px;
  background: rgba(255,255,255,.25);
  border-radius: 4px;
  margin-bottom: .4rem;
}

.mock-para-line.w80 { width: 80%; }
.mock-para-line.w65 { width: 65%; }

.mock-btn-row {
  display: flex;
  gap: .5rem;
  margin-top: .75rem;
}

.mock-btn {
  height: 22px;
  border-radius: 4px;
  background: #F8FAFC;
  width: 90px;
}

.mock-btn.ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
}

.mock-card {
  height: 55px;
  background: rgba(255,255,255,.08);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.1);
}

.hero-stat-row {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--silver);
}

.hero-stat-label {
  font-size: .65rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* ============================================================
   TRUST BAR
============================================================ */
.trust-bar {
  background: var(--gray-light);
  border-top: 1px solid var(--gray-mid);
  border-bottom: 1px solid var(--gray-mid);
  padding: 1.5rem 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-icon {
  width: 32px;
  height: 32px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 16px;
  height: 16px;
  stroke: #F8FAFC;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-icon img  { width: 16px; height: 16px; }
.service-icon img { width: 24px; height: 24px; }
.benefit-icon img { width: 20px; height: 20px; }
.pain-icon img   { width: 22px; height: 22px; }

/* ============================================================
   PAIN POINTS
============================================================ */
.pain-section {
  background: var(--white);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pain-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--gray-mid);
  background: var(--gray-light);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.pain-item:hover {
  border-color: var(--silver);
  box-shadow: var(--shadow-sm);
}

.pain-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.pain-item h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: .2rem;
}

.pain-item p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.pain-cta-block {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: var(--white);
}

.pain-cta-block h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--white);
}

.pain-cta-block p {
  color: rgba(255,255,255,.75);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* ============================================================
   SERVICES
============================================================ */
.services-section {
  background: var(--gray-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-mid);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--silver);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: #F8FAFC;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: .6rem;
}

.service-card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   PACKAGES / PRICING
============================================================ */
.packages-section {
  background: var(--white);
}

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

.package-card {
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-mid);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), border-color var(--transition);
  position: relative;
}

.package-card:hover {
  box-shadow: var(--shadow-lg);
}

.package-card.featured {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gray-mid);
  color: var(--charcoal);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 100px;
}

.package-tier {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: .5rem;
}

.package-card.featured .package-tier {
  color: var(--gray-light);
}

.package-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--charcoal);
  margin-bottom: .25rem;
}

.package-card.featured .package-name {
  color: var(--white);
}

.package-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-mid);
}

.package-card.featured .package-price {
  color: #E2E8F0;
  border-bottom-color: rgba(255,255,255,.15);
}

.package-features {
  flex: 1;
  margin-bottom: 2rem;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .85rem;
  color: var(--charcoal);
  margin-bottom: .65rem;
  line-height: 1.5;
}

.package-card.featured .package-features li {
  color: rgba(255,255,255,.85);
}

.package-features li::before {
  content: "✓";
  min-width: 18px;
  height: 18px;
  background: rgba(148,163,184,.15);
  color: var(--silver);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .1rem;
}

.package-card.featured .package-features li::before {
  background: rgba(226,232,240,.15);
  color: var(--gray-light);
}

.package-card .btn {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   PROCESS
============================================================ */
.process-section {
  background: var(--gray-light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 2.25rem;
  left: calc(10% + 1.25rem);
  right: calc(10% + 1.25rem);
  height: 2px;
  background: linear-gradient(90deg, var(--silver) 0%, var(--navy) 100%);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 .5rem;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid #F8FAFC;
  color: #F8FAFC;
  font-size: .9rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.process-step h4 {
  font-size: .9rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: .4rem;
}

.process-step p {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================================
   RESULTS / TESTIMONIALS
============================================================ */
.results-section {
  background: var(--white);
}

.results-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.stat-card {
  background: var(--gray-light);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: .4rem;
}

.stat-number span {
  color: var(--silver);
}

.stat-label {
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-mid);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
  stroke: #F8FAFC;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-item h4 {
  font-size: .95rem;
  font-weight: 800;
  margin-bottom: .3rem;
}

.benefit-item p {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--gray-light);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  line-height: 1;
  color: var(--silver);
  opacity: .25;
  font-family: Georgia, serif;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.star {
  color: #D4AF37;
  font-size: .9rem;
}

.testimonial-text {
  font-size: .88rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  color: var(--silver);
}

.author-name {
  font-size: .88rem;
  font-weight: 800;
  color: var(--charcoal);
}

.author-role {
  font-size: .75rem;
  color: var(--text-muted);
}

/* ============================================================
   ABOUT
============================================================ */
.about-section {
  background: var(--gray-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.about-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 5px solid var(--silver);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  flex-shrink: 0;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}


.about-credentials {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  width: 100%;
}

.credential-chip {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 8px;
  padding: .6rem 1rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--charcoal);
}

.credential-chip::before {
  content: "✓";
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: var(--navy);
  color: #F8FAFC;
  border-radius: 50%;
  font-size: .65rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}

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

.value-item {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .83rem;
  color: var(--charcoal);
  font-weight: 600;
}

.value-item::before {
  content: "→";
  color: var(--silver);
  font-weight: 900;
}

/* ============================================================
   FAQ
============================================================ */
.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-size: .9rem;
  font-weight: 700;
  color: var(--charcoal);
  font-family: var(--font);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-question:hover { color: var(--navy); }

.faq-arrow {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
  font-size: .7rem;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--navy);
  color: #F8FAFC;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.75;
  padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

/* ============================================================
   CONTACT / CTA
============================================================ */
.contact-section {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(148,163,184,.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-content p {
  color: rgba(255,255,255,.75);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.contact-promises {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.promise-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .88rem;
  color: rgba(255,255,255,.8);
}

.promise-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promise-icon svg {
  width: 13px;
  height: 13px;
  stroke: #F8FAFC;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.contact-form-wrap h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: .4rem;
  letter-spacing: .02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius);
  padding: .7rem 1rem;
  font-size: .875rem;
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--gray-light);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30,58,138,.1);
  background: var(--white);
}

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

.form-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: .5rem;
  background: var(--navy);
  color: var(--gray-light);
  border-color: var(--navy);
}

.form-submit-btn:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--gray-light);
}

.form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: .75rem;
}

.form-privacy img {
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: #0F1F52;
  color: rgba(255,255,255,.6);
  padding: 3.5rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .4rem;
}

.footer-brand p {
  font-size: .8rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-silver-accent {
  color: var(--silver);
}

.footer-col h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
  text-align: center;
}

.footer-col ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem .5rem;
  text-align: center;
}

.footer-col ul a {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}

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

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

.footer-copy {
  font-size: .78rem;
}

.footer-disclaimer {
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  max-width: 100%;
  line-height: 1.6;
  font-style: italic;
}

/* ============================================================
   UTILITY CLASSES
============================================================ */
.text-silver { color: var(--silver); }
.text-navy   { color: var(--navy); }
.text-muted  { color: var(--text-muted); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* ============================================================
   RESPONSIVE — TABLET (max 900px)
============================================================ */
@media (max-width: 900px) {
  .hero-grid           { grid-template-columns: 1fr; gap: 2.5rem; padding: 8rem 0 4rem; }
  .hero-visual         { display: none; }
  .pain-grid           { grid-template-columns: 1fr; }
  .services-grid       { grid-template-columns: repeat(2, 1fr); }
  .packages-grid       { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .process-steps       { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
  .results-stats       { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid       { grid-template-columns: 1fr; }
  .testimonials-grid   { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .about-grid          { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-visual        { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .faq-grid            { grid-template-columns: 1fr; }
  .contact-grid        { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner        { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 640px)
============================================================ */
@media (max-width: 640px) {
  section              { padding: 3.5rem 0; }
  .nav-links           { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy); padding: 1rem 1.5rem 1.5rem; gap: .25rem; border-top: 1px solid rgba(255,255,255,.1); }
  .nav-links.mobile-open { display: flex; }
  .nav-links .nav-cta  { margin-left: 0; margin-top: .5rem; }
  .nav-cta             { display: none; }
  .nav-toggle          { display: flex; }
  .services-grid       { grid-template-columns: 1fr; }
  .process-steps       { grid-template-columns: repeat(2, 1fr); }
  .results-stats       { grid-template-columns: 1fr 1fr; }
  .form-row            { grid-template-columns: 1fr; }
  .footer-inner        { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom       { flex-direction: column; }
  .about-values        { grid-template-columns: 1fr; }
  .trust-bar-inner     { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-stat-row       { gap: 1rem; }
}
