/* ============================================================
   MENTOVA — MAIN STYLESHEET
   mentova.app
   ============================================================
   
   TABLE OF CONTENTS
   -----------------
   1.  CSS Variables & Reset
   2.  Base Typography
   3.  Layout Utilities
   4.  Header & Navigation
   5.  Mobile Menu
   6.  Hero Section
   7.  Section Patterns & Shared
   8.  Cards
   9.  Buttons & CTAs
   10. Two-Column Splits
   11. How It Works / Process
   12. Pricing
   13. FAQ Accordion
   14. Contact Form
   15. Trust & Transparency Blocks
   16. Services Page
   17. About Page
   18. Policy Pages
   19. Footer
   20. Back-to-Top
   21. Utility / Misc
   22. Responsive Overrides
   ============================================================ */


/* ============================================================
   1. CSS VARIABLES & RESET
   ============================================================ */

:root {
  /* Brand Palette */
  --navy:        #0F172A;
  --teal:        #0F766E;
  --teal-dark:   #0A5C55;
  --teal-light:  #14B8A6;
  --slate:       #334155;
  --slate-light: #64748B;
  --bg:          #F8FAFC;
  --bg-white:    #FFFFFF;
  --border:      #E2E8F0;
  --border-soft: #F1F5F9;
  --accent-bg:   #ECFEFF;
  --accent-teal: #CCFBF1;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  /* Type Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Radius */
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow:     0 4px 12px rgba(15,23,42,0.08), 0 2px 4px rgba(15,23,42,0.04);
  --shadow-md:  0 8px 24px rgba(15,23,42,0.10), 0 4px 8px rgba(15,23,42,0.05);
  --shadow-lg:  0 20px 40px rgba(15,23,42,0.12), 0 8px 16px rgba(15,23,42,0.06);

  /* Transitions */
  --transition: 200ms ease;
  --transition-slow: 350ms ease;

  /* Container */
  --container-max: 1120px;
  --container-pad: var(--space-6);

  /* Header height */
  --header-h: 68px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--slate);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 600;
}


/* ============================================================
   2. BASE TYPOGRAPHY
   ============================================================ */

h1 { font-size: clamp(2.2rem, 5vw, var(--text-6xl)); font-weight: 600; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, var(--text-4xl)); font-weight: 600; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.3rem, 2.5vw, var(--text-2xl)); font-weight: 500; }
h4 { font-size: var(--text-xl); font-weight: 500; }
h5 { font-size: var(--text-lg); font-weight: 500; }

p {
  color: var(--slate);
  line-height: 1.7;
}

p + p { margin-top: var(--space-4); }

.lead {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--slate);
}

.text-sm  { font-size: var(--text-sm); }
.text-xs  { font-size: var(--text-xs); }
.text-lg  { font-size: var(--text-lg); }
.text-muted { color: var(--slate-light); }
.text-teal  { color: var(--teal); }
.text-navy  { color: var(--navy); }
.text-center { text-align: center; }
.text-left   { text-align: left; }

strong { font-weight: 600; color: var(--navy); }


/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.container--narrow {
  max-width: 760px;
}

.container--mid {
  max-width: 920px;
}

.section {
  padding: var(--space-20) 0;
}

.section--lg {
  padding: var(--space-24) 0;
}

.section--sm {
  padding: var(--space-12) 0;
}

.section--tinted {
  background-color: var(--bg);
}

.section--navy {
  background-color: var(--navy);
}

.section--accent {
  background-color: var(--accent-bg);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

.mt-2  { margin-top: var(--space-2); }
.mt-4  { margin-top: var(--space-4); }
.mt-6  { margin-top: var(--space-6); }
.mt-8  { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }
.mt-12 { margin-top: var(--space-12); }
.mb-2  { margin-bottom: var(--space-2); }
.mb-4  { margin-bottom: var(--space-4); }
.mb-6  { margin-bottom: var(--space-6); }
.mb-8  { margin-bottom: var(--space-8); }

/* Section heading block */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--space-4);
}

.section-heading {
  margin-bottom: var(--space-5);
}

.section-heading + .lead,
.section-heading + p {
  margin-top: 0;
}

.section-intro {
  max-width: 600px;
  margin: 0 auto var(--space-12);
  text-align: center;
}

.section-intro .section-label { display: block; margin-bottom: var(--space-3); }
.section-intro .section-heading { margin-bottom: var(--space-4); }


/* ============================================================
   4. HEADER & NAVIGATION
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background-color: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
  line-height: 1;
  letter-spacing: -0.02em;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

/* Primary Navigation */
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.site-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--slate);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--navy);
  background-color: var(--bg);
}

.site-nav a.active {
  color: var(--teal);
  font-weight: 600;
}

/* Header CTA area */
.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}


/* ============================================================
   5. MOBILE MENU
   ============================================================ */

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: transparent;
  border: none;
  gap: 5px;
  padding: 0;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-white);
  z-index: 99;
  padding: var(--space-6) var(--space-6) var(--space-8);
  flex-direction: column;
  overflow-y: auto;
  border-top: 1px solid var(--border);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-bottom: var(--space-8);
}

.mobile-menu nav a {
  font-size: var(--text-lg);
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border-soft);
  display: block;
  text-decoration: none;
}

.mobile-menu nav a:last-child { border-bottom: none; }

.mobile-menu .mobile-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: auto;
}


/* ============================================================
   6. HERO SECTION
   ============================================================ */

.hero {
  background-color: var(--navy);
  position: relative;
  overflow: hidden;
  padding: var(--space-24) 0 var(--space-20);
}

/* Subtle geometric accent in the hero background */
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(15,118,110,0.18);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(15,118,110,0.12);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(15,118,110,0.18);
  border: 1px solid rgba(15,118,110,0.35);
  border-radius: 100px;
  padding: var(--space-2) var(--space-4);
  margin-bottom: var(--space-6);
}

.hero-eyebrow span {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-light);
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--teal-light);
  flex-shrink: 0;
}

.hero h1 {
  color: #FFFFFF;
  margin-bottom: var(--space-6);
  font-weight: 500;
}

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

.hero-lead {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 620px;
  margin-bottom: var(--space-10);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-16);
}

/* Hero two-column audience block */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  padding-top: var(--space-12);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-audience-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.hero-audience-card h3 {
  font-size: var(--text-lg);
  font-family: var(--font-body);
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: var(--space-3);
}

.hero-audience-card p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.hero-audience-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: var(--space-3);
}


/* ============================================================
   7. SECTION PATTERNS & SHARED
   ============================================================ */

/* Divider line accent */
.divider {
  width: 48px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin-bottom: var(--space-6);
}

/* Highlighted stat / number block */
.stat-block {
  text-align: center;
  padding: var(--space-6);
}

.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--slate-light);
}

/* Inline icon list */
.icon-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--slate);
  line-height: 1.55;
}

.icon-list .check-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.icon-list .check-icon svg {
  width: 10px;
  height: 10px;
  stroke: var(--teal);
  stroke-width: 2.5;
}

/* Navy-variant icon list */
.icon-list--light li { color: rgba(255,255,255,0.75); }
.icon-list--light .check-icon {
  background: rgba(15,118,110,0.3);
}
.icon-list--light .check-icon svg { stroke: var(--teal-light); }

/* Tag pill */
.tag {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-3);
  border-radius: 100px;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tag--teal {
  background: var(--accent-teal);
  color: var(--teal-dark);
}

.tag--navy {
  background: rgba(15,23,42,0.08);
  color: var(--navy);
}

/* Alert / notice box */
.notice-box {
  background: var(--accent-bg);
  border: 1px solid rgba(15,118,110,0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-sm);
  color: var(--slate);
  line-height: 1.65;
}

.notice-box strong { color: var(--teal-dark); }


/* ============================================================
   8. CARDS
   ============================================================ */

.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.card--flat {
  border: 1px solid var(--border);
  box-shadow: none;
}

.card--flat:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.card--accent {
  background: var(--accent-bg);
  border: 1px solid rgba(15,118,110,0.18);
}

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

.card--navy h3, .card--navy h4 { color: white; }
.card--navy p { color: rgba(255,255,255,0.7); }

/* Card icon */
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  flex-shrink: 0;
}

.card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
  stroke-width: 1.8;
  fill: none;
}

.card--navy .card-icon {
  background: rgba(15,118,110,0.25);
}

.card--navy .card-icon svg { stroke: var(--teal-light); }

.card h3, .card h4 {
  margin-bottom: var(--space-2);
}

.card h4 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
}

.card p {
  font-size: var(--text-sm);
  line-height: 1.65;
}


/* ============================================================
   9. BUTTONS & CTAs
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

/* Primary button */
.btn-primary {
  background-color: var(--teal);
  color: #FFFFFF;
  border-color: var(--teal);
}

.btn-primary:hover {
  background-color: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15,118,110,0.3);
}

.btn-primary:active { transform: translateY(0); }

/* Secondary button */
.btn-secondary {
  background-color: transparent;
  color: var(--navy);
  border-color: var(--border);
}

.btn-secondary:hover {
  background-color: var(--bg);
  border-color: var(--slate-light);
}

/* White outlined (for dark backgrounds) */
.btn-outline-white {
  background-color: transparent;
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.35);
}

.btn-outline-white:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* Ghost teal */
.btn-ghost-teal {
  background: transparent;
  color: var(--teal);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}

.btn-ghost-teal:hover { color: var(--teal-dark); }

/* Button sizes */
.btn-sm { padding: var(--space-2) var(--space-4); font-size: var(--text-xs); }
.btn-lg { padding: var(--space-4) var(--space-8); font-size: var(--text-base); }

/* Arrow icon in button */
.btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

/* CTA Section — full-width */
.cta-section {
  padding: var(--space-20) 0;
  background: var(--navy);
  text-align: center;
}

.cta-section h2 { color: #FFFFFF; margin-bottom: var(--space-4); }
.cta-section p  { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto var(--space-8); }

.cta-section .cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}


/* ============================================================
   10. TWO-COLUMN SPLITS
   ============================================================ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.split--reversed .split-visual { order: -1; }

.split-content {}
.split-content .section-label { margin-bottom: var(--space-3); }
.split-content h2 { margin-bottom: var(--space-5); }
.split-content p  { margin-bottom: var(--space-5); }

.split-visual {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
}

/* Visual illustration placeholder */
.illustration-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  width: 100%;
  height: 100%;
}

/* Audience comparison card */
.audience-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.audience-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.audience-block h4 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-3);
}

.audience-block.teal-accent {
  border-top: 3px solid var(--teal);
}

.audience-block.navy-accent {
  border-top: 3px solid var(--navy);
}


/* ============================================================
   11. HOW IT WORKS / PROCESS
   ============================================================ */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}

/* Connecting line between steps */
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: var(--border);
  z-index: 0;
}

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

.process-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--teal);
}

.process-step h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-2);
}

.process-step p {
  font-size: var(--text-sm);
  color: var(--slate-light);
  line-height: 1.55;
}

/* Tinted version */
.section--tinted .process-step-number {
  background: var(--bg);
}


/* ============================================================
   12. PRICING
   ============================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: start;
}

.pricing-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.pricing-card:hover {
  box-shadow: var(--shadow-md);
}

.pricing-card--featured {
  border: 2px solid var(--teal);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: white;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-4);
  border-radius: 0 0 var(--radius) var(--radius);
  white-space: nowrap;
}

.pricing-name {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--space-3);
}

.pricing-price {
  margin-bottom: var(--space-2);
}

.pricing-price .amount {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}

.pricing-price .from {
  font-size: var(--text-sm);
  color: var(--slate-light);
  font-weight: 400;
}

.pricing-price .suffix {
  font-size: var(--text-sm);
  color: var(--slate-light);
}

.pricing-desc {
  font-size: var(--text-sm);
  color: var(--slate-light);
  margin-bottom: var(--space-6);
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: var(--space-5);
  line-height: 1.55;
}

.pricing-features {
  flex: 1;
  margin-bottom: var(--space-8);
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--slate);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border-soft);
  line-height: 1.5;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features .check {
  flex-shrink: 0;
  color: var(--teal);
  margin-top: 2px;
}

.pricing-note {
  margin-top: var(--space-8);
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
}

.pricing-note h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-3);
}

.pricing-note ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.pricing-note li {
  font-size: var(--text-sm);
  color: var(--slate);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}

.pricing-note li::before {
  content: '—';
  color: var(--teal);
  flex-shrink: 0;
  font-weight: 600;
}


/* ============================================================
   13. FAQ ACCORDION
   ============================================================ */

.faq-list {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  background: var(--bg-white);
  transition: background var(--transition);
  width: 100%;
  text-align: left;
  border: none;
}

.faq-question:hover { background: var(--bg); }
.faq-item.open .faq-question { background: var(--bg); }

.faq-question-text {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  font-family: var(--font-body);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--teal);
  border-color: var(--teal);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--slate-light);
  stroke-width: 2.5;
}

.faq-item.open .faq-icon svg { stroke: white; }

.faq-answer {
  display: none;
  padding: 0 var(--space-6) var(--space-5);
  background: var(--bg);
}

.faq-answer p {
  font-size: var(--text-sm);
  color: var(--slate);
  line-height: 1.7;
  margin-top: 0;
}

.faq-answer a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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


/* ============================================================
   14. CONTACT FORM
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-12);
  align-items: start;
}

.contact-info {}

.contact-info h2 {
  margin-bottom: var(--space-5);
}

.contact-info p {
  margin-bottom: var(--space-8);
}

.contact-detail-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--teal);
  stroke-width: 1.8;
  fill: none;
}

.contact-detail-text h5 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-light);
  margin-bottom: var(--space-1);
}

.contact-detail-text a,
.contact-detail-text p {
  font-size: var(--text-sm);
  color: var(--navy);
  font-weight: 500;
  text-decoration: none;
  margin: 0;
}

.contact-detail-text a:hover { color: var(--teal); }

.contact-detail-text .sub {
  font-size: var(--text-xs);
  color: var(--slate-light);
  font-weight: 400;
  display: block;
  margin-top: 2px;
}

/* Response times */
.response-times {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
}

.response-times h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-light);
  margin-bottom: var(--space-4);
}

.response-times ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.response-times li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-4);
  font-size: var(--text-sm);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border-soft);
}

.response-times li:last-child { border-bottom: none; padding-bottom: 0; }

.response-times .label { color: var(--slate); }
.response-times .time  { color: var(--teal); font-weight: 600; text-align: right; flex-shrink: 0; }

/* Form card */
.contact-form-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--header-h) + var(--space-6));
}

.contact-form-card h3 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-1);
}

.contact-form-card p {
  font-size: var(--text-sm);
  color: var(--slate-light);
  margin-bottom: var(--space-6);
  margin-top: var(--space-1);
}

/* Form fields */
.form-group {
  margin-bottom: var(--space-5);
}

.form-group label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--slate);
  margin-bottom: var(--space-2);
}

.form-group label .required {
  color: var(--teal);
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--navy);
  background: var(--bg-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  line-height: 1.5;
}

.form-control::placeholder { color: var(--slate-light); }

.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15,118,110,0.1);
}

.form-control.error {
  border-color: #E53E3E;
}

.form-error {
  display: none;
  font-size: var(--text-xs);
  color: #E53E3E;
  margin-top: var(--space-1);
}

.form-group.has-error .form-error { display: block; }
.form-group.has-error .form-control { border-color: #E53E3E; }

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  padding-right: var(--space-8);
  cursor: pointer;
}

.form-submit-note {
  font-size: var(--text-xs);
  color: var(--slate-light);
  text-align: center;
  margin-top: var(--space-3);
  line-height: 1.55;
}

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-8) var(--space-4);
}

.form-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
}

.form-success-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--teal);
  stroke-width: 2;
  fill: none;
}

.form-success h4 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-2);
}

.form-success p {
  font-size: var(--text-sm);
  color: var(--slate-light);
}


/* ============================================================
   15. TRUST & TRANSPARENCY BLOCKS
   ============================================================ */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.trust-item {
  padding: var(--space-6);
  border-left: 3px solid var(--teal);
  background: var(--bg);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.trust-item h4 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-2);
}

.trust-item p {
  font-size: var(--text-sm);
  color: var(--slate);
  line-height: 1.6;
}

/* Timeline / delivery expectations */
.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--space-6);
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--border-soft);
  align-items: start;
}

.timeline-item:last-child { border-bottom: none; }

.timeline-time {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--teal);
  padding-top: 2px;
}

.timeline-desc h5 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-1);
}

.timeline-desc p {
  font-size: var(--text-sm);
  color: var(--slate-light);
  line-height: 1.55;
  margin: 0;
}


/* ============================================================
   16. SERVICES PAGE
   ============================================================ */

.services-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.services-panel {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.services-panel-header {
  padding: var(--space-6) var(--space-6) var(--space-5);
  border-bottom: 1px solid var(--border);
}

.services-panel-header .tag {
  margin-bottom: var(--space-3);
}

.services-panel-header h3 {
  margin-bottom: var(--space-2);
  font-size: var(--text-2xl);
}

.services-panel-header p {
  font-size: var(--text-sm);
  color: var(--slate-light);
  margin: 0;
}

.services-panel-body {
  padding: var(--space-6);
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--border-soft);
}

.service-item:last-child { border-bottom: none; }

.service-item-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-item-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--teal);
  stroke-width: 2;
  fill: none;
}

.service-item-text h5 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-1);
}

.service-item-text p {
  font-size: var(--text-xs);
  color: var(--slate-light);
  line-height: 1.55;
  margin: 0;
}

/* Use case block */
.use-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.use-case-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  transition: border-color var(--transition);
}

.use-case-card:hover { border-color: var(--teal); }

.use-case-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: var(--space-2);
}

.use-case-card h5 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-2);
}

.use-case-card p {
  font-size: var(--text-xs);
  color: var(--slate-light);
  line-height: 1.55;
  margin: 0;
}


/* ============================================================
   17. ABOUT PAGE
   ============================================================ */

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}

.value-item {
  padding: var(--space-5);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-white);
}

.value-item .value-icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-3);
  line-height: 1;
}

.value-item h4 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-2);
}

.value-item p {
  font-size: var(--text-sm);
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
}

/* Problem / Solution blocks */
.problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.problem-block, .solution-block {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
}

.problem-block {
  background: var(--bg);
  border: 1px solid var(--border);
}

.solution-block {
  background: var(--accent-bg);
  border: 1px solid rgba(15,118,110,0.18);
}

.problem-block h4, .solution-block h4 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.problem-block h4 { color: var(--slate); }
.solution-block h4 { color: var(--teal-dark); }

.problem-block p, .solution-block p {
  font-size: var(--text-sm);
  line-height: 1.65;
  margin: 0;
}


/* ============================================================
   18. POLICY PAGES
   ============================================================ */

.policy-hero {
  background: var(--navy);
  padding: var(--space-16) 0 var(--space-12);
}

.policy-hero h1 { color: white; margin-bottom: var(--space-3); }
.policy-hero p  { color: rgba(255,255,255,0.6); font-size: var(--text-sm); }

.policy-body {
  padding: var(--space-16) 0 var(--space-20);
}

.policy-content {
  max-width: 760px;
}

.policy-content h2 {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
}

.policy-content h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.policy-content h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy);
  margin-top: var(--space-6);
  margin-bottom: var(--space-2);
}

.policy-content p {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--slate);
  margin-bottom: var(--space-4);
}

.policy-content ul,
.policy-content ol {
  margin-left: var(--space-6);
  margin-bottom: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.policy-content ul { list-style: disc; }
.policy-content ol { list-style: decimal; }

.policy-content li {
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--slate);
}

.policy-content a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-content .policy-notice {
  background: var(--accent-bg);
  border-left: 3px solid var(--teal);
  padding: var(--space-4) var(--space-5);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: var(--space-6) 0;
}

.policy-content .policy-notice p {
  margin: 0;
  font-size: var(--text-sm);
}

.policy-sidebar {
  position: sticky;
  top: calc(var(--header-h) + var(--space-6));
}

.policy-nav {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-5);
}

.policy-nav h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-light);
  margin-bottom: var(--space-4);
}

.policy-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.policy-nav li a {
  display: block;
  font-size: var(--text-sm);
  color: var(--slate);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.policy-nav li a:hover {
  background: var(--bg-white);
  color: var(--teal);
}

.policy-layout {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: var(--space-12);
  align-items: start;
}


/* ============================================================
   19. FOOTER
   ============================================================ */

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: var(--space-10);
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  text-decoration: none;
}

.footer-logo .logo-mark {
  background: rgba(255,255,255,0.1);
}

.footer-logo .logo-mark span { color: white; }
.footer-logo .logo-text { color: white; font-size: 1.25rem; }

.footer-tagline {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-5);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-contact-list li {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
}

.footer-contact-list li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-contact-list li a:hover { color: var(--teal-light); }

/* Footer nav columns */
.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.footer-nav-col h5 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-4);
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-nav-col li a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-nav-col li a:hover { color: white; }

/* Footer bottom bar */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.footer-copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
}

.footer-legal a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal a:hover { color: rgba(255,255,255,0.75); }


/* ============================================================
   20. BACK-TO-TOP
   ============================================================ */

#back-to-top {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 50;
  box-shadow: var(--shadow-md);
}

#back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

#back-to-top:hover { transform: translateY(-2px); }
#back-to-top svg {
  width: 16px;
  height: 16px;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
}


/* ============================================================
   21. UTILITY / MISC
   ============================================================ */

/* Page hero (internal pages) */
.page-hero {
  background: var(--navy);
  padding: var(--space-16) 0 var(--space-12);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(15,118,110,0.15);
  pointer-events: none;
}

.page-hero h1 { color: white; margin-bottom: var(--space-4); font-size: clamp(1.8rem, 4vw, 3rem); }
.page-hero .lead { color: rgba(255,255,255,0.65); max-width: 560px; }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.page-hero .breadcrumb a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-weight: 500;
}

.page-hero .breadcrumb span {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
}

.page-hero .breadcrumb .current {
  font-size: var(--text-xs);
  color: var(--teal-light);
  font-weight: 600;
}

/* Inline link */
.link-teal {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.link-teal:hover { color: var(--teal-dark); }

/* Bordered note */
.inline-note {
  font-size: var(--text-xs);
  color: var(--slate-light);
  border-top: 1px solid var(--border-soft);
  padding-top: var(--space-3);
  margin-top: var(--space-3);
  line-height: 1.55;
}

/* Horizontal rule */
hr.section-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--space-12) 0;
}

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--teal);
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: 600;
  z-index: 200;
  text-decoration: none;
}

.skip-link:focus { top: var(--space-4); }


/* ============================================================
   22. RESPONSIVE OVERRIDES
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  :root { --container-pad: var(--space-6); }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid .pricing-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-card { position: static; }
  .split { gap: var(--space-10); }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-sidebar { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-nav-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --container-pad: var(--space-5);
    --space-20: 3.5rem;
    --space-24: 4rem;
  }

  /* Nav */
  .site-nav  { display: none; }
  .header-cta .btn { display: none; }
  .mobile-toggle { display: flex; }

  /* Typography */
  h1 { font-size: clamp(1.9rem, 7vw, 2.5rem); }
  h2 { font-size: clamp(1.5rem, 5vw, 2rem); }

  /* Hero */
  .hero { padding: var(--space-16) 0; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }

  /* Grids */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: var(--space-8); }
  .split--reversed .split-visual { order: 0; }
  .audience-compare { grid-template-columns: 1fr; }
  .services-split { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid .pricing-card:last-child { grid-column: auto; max-width: 100%; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .problem-solution { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .use-cases { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; }
  .footer-nav-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal { gap: var(--space-4); }

  /* Misc */
  .cta-section .cta-group { flex-direction: column; }
  .cta-section .cta-group .btn { width: 100%; justify-content: center; }
  .timeline-item { grid-template-columns: 1fr; gap: var(--space-1); }
  .split-visual { min-height: 240px; }
  .page-hero { padding: var(--space-12) 0 var(--space-10); }
  .hero-audience-card { padding: var(--space-5); }
}

@media (max-width: 480px) {
  .footer-nav-grid { grid-template-columns: 1fr; }
  .hero-split { display: none; }
}


/* ============================================================
   SUPPLEMENTAL: FAQ GROUPS
   ============================================================ */

.faq-group {
  margin-bottom: var(--space-12);
}
.faq-group:last-of-type {
  margin-bottom: var(--space-8);
}
.faq-group-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border);
}

/* FAQ Still-have-questions block */
.faq-cta-block {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  text-align: center;
  margin-top: var(--space-12);
}
.faq-cta-block h3 {
  font-size: var(--text-xl);
  color: var(--navy);
  margin-bottom: var(--space-3);
}
.faq-cta-block p {
  color: var(--slate);
  margin-bottom: var(--space-6);
}


/* ============================================================
   SUPPLEMENTAL: POLICY PAGES
   ============================================================ */

/* Flip sidebar to left */
.policy-layout {
  grid-template-columns: 220px 1fr;
}
.policy-nav {
  order: -1;
  position: sticky;
  top: calc(var(--header-height) + var(--space-8));
}
.policy-nav h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: var(--space-4);
}
.policy-nav ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: policy-counter;
}
.policy-nav ol li {
  counter-increment: policy-counter;
  margin-bottom: var(--space-2);
}
.policy-nav ol li a {
  font-size: var(--text-sm);
  color: var(--slate);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  transition: color 0.2s;
  line-height: 1.4;
}
.policy-nav ol li a::before {
  content: counter(policy-counter);
  font-size: var(--text-xs);
  color: var(--teal);
  font-weight: 600;
  min-width: 1.2em;
  flex-shrink: 0;
}
.policy-nav ol li a:hover {
  color: var(--teal);
}

/* Policy hero overrides */
.policy-hero {
  background: var(--navy);
  padding: var(--space-16) 0 var(--space-12);
}
.policy-hero h1 {
  color: white;
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  margin-bottom: var(--space-3);
}
.policy-meta {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
}
.breadcrumb--light a,
.breadcrumb--light span { color: rgba(255,255,255,0.5); }
.breadcrumb--light .current { color: rgba(255,255,255,0.8); }

/* Policy section spacing */
.policy-section {
  padding-top: var(--space-2);
  margin-bottom: var(--space-10);
  scroll-margin-top: calc(var(--header-height) + var(--space-6));
}
.policy-section:last-child {
  margin-bottom: 0;
}

/* Contact detail list in policies */
.contact-detail-list {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.contact-detail-list li {
  padding: var(--space-3) var(--space-5);
  border-bottom: 1px solid var(--border);
  font-size: var(--text-sm);
  color: var(--slate);
}
.contact-detail-list li:last-child {
  border-bottom: none;
}
.contact-detail-list li strong {
  color: var(--navy);
  margin-right: var(--space-2);
}


/* ============================================================
   SUPPLEMENTAL: REFUND POLICY SUMMARY CARD
   ============================================================ */

.refund-summary-card {
  background: var(--accent-light);
  border: 1px solid #a5f3fc;
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  margin: var(--space-6) 0;
}
.refund-summary-card h3 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-4);
}
.refund-summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.refund-summary-list li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--space-4);
  align-items: start;
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(15, 118, 110, 0.15);
  font-size: var(--text-sm);
}
.refund-summary-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.refund-service {
  font-weight: 600;
  color: var(--navy);
}
.refund-rule {
  color: var(--slate);
}

@media (max-width: 768px) {
  .policy-layout {
    grid-template-columns: 1fr;
  }
  .policy-nav {
    position: static;
    order: 0;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-5);
    margin-bottom: var(--space-8);
  }
  .refund-summary-list li {
    grid-template-columns: 1fr;
    gap: var(--space-1);
  }
}
