/* =============================================================
   components.css — Shared components for all pages
   Navigation · Footer · WhatsApp Button · Cookie Banner
   Animation classes · Tool UI
   ============================================================= */

/* ─────────────────────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-sticky);
  height: var(--nav-height-desktop);
  /* overflow must be visible so the dropdown can extend below the nav */
  overflow: visible;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-base),
              box-shadow var(--transition-base),
              transform var(--transition-base);
}

/* backdrop-filter on ::before avoids the Chrome/Safari bug where
   backdrop-filter on the parent clips overflow:visible children */
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: -1;
  pointer-events: none;
}

.nav--scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.nav--hidden {
  transform: translateY(-100%);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height-desktop);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  gap: var(--space-8);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo img {
  height: 80px;
  width: auto;
  display: block;
}

@media (min-width: 1024px) {
  .nav-logo img {
    height: 88px;
  }
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: var(--fw-medium);
  color: var(--color-text);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-base);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-accent);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Resources dropdown */
.nav-dropdown-wrap {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9375rem;
  font-weight: var(--fw-medium);
  color: var(--color-text);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  padding-bottom: 2px;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-base);
  border-radius: 2px;
}

.nav-dropdown-trigger:hover { color: var(--color-accent); }
.nav-dropdown-trigger:hover::after { width: calc(100% - 14px); }

.nav-dropdown-arrow {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  transition: transform var(--transition-fast);
}

.nav-dropdown-trigger[aria-expanded="true"] .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: var(--space-2);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-base);
  z-index: var(--z-dropdown);
}

.nav-dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: var(--fw-medium);
  color: var(--color-text);
  text-decoration: none;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.nav-dropdown a:hover {
  background: var(--color-bg-alt);
  color: var(--color-accent);
}

.nav-dropdown-icon {
  font-size: 1rem;
  opacity: 0.6;
}

/* Nav CTA button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-cta-primary);
  color: var(--color-text-inverse) !important;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-weight: var(--fw-semibold);
  font-size: 0.875rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.nav-cta:hover {
  background: var(--color-cta-primary-hov);
  transform: translateY(-1px);
}

.nav-cta svg { flex-shrink: 0; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
}

.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
  transform-origin: center;
}

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

/* Mobile menu overlay */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: calc(var(--z-sticky) - 1);
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-height-mobile) + 2rem) var(--container-pad) 2rem;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
}

.nav-mobile.open {
  transform: translateX(0);
}

.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  color: var(--color-text);
  text-decoration: none;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border);
  display: block;
  transition: color var(--transition-fast), padding-left var(--transition-base);
}

.nav-mobile a:hover { color: var(--color-accent); padding-left: var(--space-4); }

.nav-mobile .mobile-sub {
  font-size: 1.125rem;
  font-weight: var(--fw-medium);
  color: var(--color-text-muted) !important;
  padding-left: var(--space-6) !important;
  font-family: var(--font-body) !important;
}

.nav-mobile-cta {
  margin-top: var(--space-8);
  display: block;
}

/* Body scroll lock when menu open */
body.menu-open { overflow: hidden; }

/* MOBILE BREAKPOINT */
@media (max-width: 767px) {
  .nav { height: var(--nav-height-mobile); }
  .nav-inner { height: var(--nav-height-mobile); }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}


/* ─────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────── */
.footer {
  background: var(--color-bg-dark);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer-logo img {
  height: 96px;
  width: auto;
  filter: invert(1); /* flip black logo to white */
  margin-bottom: var(--space-4);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-sm);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col-label {
  font-size: var(--text-label);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: var(--space-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition-fast), padding-left var(--transition-base);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-text-inverse);
  padding-left: var(--space-2);
}

.footer-bottom {
  border-top: 1px solid #1A1A1A;
  padding-top: var(--space-8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.3);
  font-size: var(--text-caption);
}

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

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

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

@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}


/* ─────────────────────────────────────────────────────────────
   FLOATING WHATSAPP BUTTON
───────────────────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  z-index: var(--z-whatsapp);
  width: 56px; height: 56px;
  border-radius: var(--radius-full);
  background: var(--color-cta-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  animation: waFloat 3s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
  animation: none;
}

.wa-float svg { width: 28px; height: 28px; fill: white; }

/* Pulse ring */
.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: waPulse 2.5s ease-out infinite;
}

@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}


/* ─────────────────────────────────────────────────────────────
   COOKIE BANNER
───────────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: var(--space-6);
  left: var(--space-6);
  right: var(--space-6);
  max-width: 520px;
  z-index: calc(var(--z-whatsapp) - 1);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-6);
  animation: slideUpIn 0.4s ease-out;
}

.cookie-banner.hide { animation: slideDownOut 0.4s ease-out forwards; }

.cookie-banner p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.cookie-buttons { display: flex; gap: var(--space-3); }

@keyframes slideUpIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideDownOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(20px); }
}


/* ─────────────────────────────────────────────────────────────
   REVEAL ANIMATION CLASSES
───────────────────────────────────────────────────────────── */

/* Base reveal — fade up */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Fade only */
.reveal-fade {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.reveal-fade.visible { opacity: 1; }

/* Slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* Slide from right */
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Scale in */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger items */
.reveal-stagger {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-stagger.visible { opacity: 1; transform: translateY(0); }

/* Transition delay utility classes */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }


/* ─────────────────────────────────────────────────────────────
   HERO SHARED
───────────────────────────────────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-height-desktop) + var(--space-16));
  padding-bottom: var(--space-16);
  background: var(--color-bg);
  overflow: hidden;
  position: relative;
}

@media (max-width: 767px) {
  .page-hero {
    padding-top: calc(var(--nav-height-mobile) + var(--space-12));
    padding-bottom: var(--space-12);
  }
}

/* Eyebrow pill */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(13, 34, 64, 0.06);
  border: 1px solid rgba(13, 34, 64, 0.12);
  border-radius: var(--radius-full);
  padding: 0.3rem 1rem;
  font-size: var(--text-caption);
  font-weight: var(--fw-semibold);
  color: var(--color-accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}

.hero-pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-cta-primary);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

/* Typed cursor */
.typed-cursor {
  display: inline-block;
  color: var(--color-cta-primary);
  animation: blink 0.8s ease-in-out infinite;
  font-weight: 300;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* Spinner */
.btn-spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }


/* ─────────────────────────────────────────────────────────────
   INTERACTIVE TOOL UI
───────────────────────────────────────────────────────────── */
.tool-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.tool-header {
  margin-bottom: var(--space-8);
}

.tool-progress-track {
  height: 4px;
  background: var(--color-border);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
  overflow: hidden;
}

.tool-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent), var(--color-link));
  border-radius: var(--radius-full);
  transition: width 0.4s ease;
  width: 0%;
}

.tool-progress-text {
  font-size: var(--text-caption);
  color: var(--color-text-muted);
  font-weight: var(--fw-medium);
}

.tool-question {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-8);
  line-height: 1.4;
  transition: opacity 0.2s ease;
}

.tool-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: opacity 0.2s ease;
}

.gt-option {
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--fw-medium);
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  transition: border-color var(--transition-fast),
              background-color var(--transition-fast),
              transform var(--transition-fast);
}

.gt-option:hover {
  border-color: var(--color-accent);
  background: rgba(13, 34, 64, 0.04);
  transform: translateX(4px);
}

.gt-option.selected {
  border-color: var(--color-accent);
  background: rgba(13, 34, 64, 0.06);
  color: var(--color-accent);
  font-weight: var(--fw-semibold);
}

.tool-nav-btns {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-8);
  justify-content: flex-end;
}

/* Tool results */
.tool-score-ring {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: conic-gradient(var(--color-accent) 0%, var(--color-border) 0%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  position: relative;
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  transition: background 1.5s ease;
}

.tool-score-ring::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--color-bg);
}

.tool-score-ring span { position: relative; z-index: 1; }

.tool-results-label {
  text-align: center;
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: var(--fw-semibold);
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.tool-results-advice {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  font-size: var(--text-body);
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

/* Growth plan blocks */
.gt-plan-block {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  margin-bottom: var(--space-4);
}

.gt-plan-month {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.gt-plan-block ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.gt-plan-block li {
  font-size: 0.9375rem;
  color: var(--color-text);
  padding-left: var(--space-5);
  position: relative;
}

.gt-plan-block li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-cta-primary);
  font-weight: var(--fw-bold);
}

.gt-disclaimer {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: italic;
  text-align: center;
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}


/* ─────────────────────────────────────────────────────────────
   MISC SHARED
───────────────────────────────────────────────────────────── */

/* Image spacer / aspect ratios */
.aspect-3-4 { aspect-ratio: 3/4; }
.aspect-1-1 { aspect-ratio: 1/1; }
.aspect-16-9 { aspect-ratio: 16/9; }

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

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

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

@media (max-width: 1023px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
}

/* Two column with image */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

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

@media (max-width: 767px) {
  .two-col, .two-col-reverse { grid-template-columns: 1fr; gap: var(--space-10); }
  .two-col-reverse .two-col-image { order: -1; }
}

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 780px;
  margin: 0 auto;
}

.compare-table th {
  padding: var(--space-4) var(--space-6);
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: 0.875rem;
  text-align: left;
}

.compare-table th:first-child {
  background: var(--color-bg-alt);
  color: var(--color-text-muted);
  border-radius: var(--radius-md) 0 0 0;
}

.compare-table th:last-child {
  background: var(--color-accent);
  color: white;
  border-radius: 0 var(--radius-md) 0 0;
}

.compare-table td {
  padding: var(--space-4) var(--space-6);
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--color-border);
}

.compare-table td:first-child {
  color: var(--color-text-muted);
  background: #FAFAFA;
  position: relative;
  padding-left: var(--space-10);
}

.compare-table td:first-child::before {
  content: '✕';
  position: absolute;
  left: var(--space-5);
  color: #D1D5DB;
  font-size: 0.75rem;
}

.compare-table td:last-child {
  color: var(--color-text);
  font-weight: var(--fw-medium);
  background: rgba(13, 34, 64, 0.03);
  position: relative;
  padding-left: var(--space-10);
}

.compare-table td:last-child::before {
  content: '✓';
  position: absolute;
  left: var(--space-5);
  color: var(--color-cta-primary);
  font-weight: var(--fw-bold);
}

/* Testimonial card */
.testimonial-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-4);
  right: var(--space-6);
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--color-accent);
  opacity: 0.12;
  line-height: 1;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
  font-style: italic;
  margin-bottom: var(--space-6);
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-bg-alt);
  flex-shrink: 0;
  object-fit: cover;
}

.testimonial-name {
  font-weight: var(--fw-semibold);
  font-size: 0.9375rem;
  color: var(--color-text);
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: var(--text-caption);
  color: var(--color-text-muted);
}

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

.process-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: var(--color-border);
}

.process-step {
  text-align: center;
  padding-top: var(--space-4);
}

.process-num {
  width: 48px; height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-bg-navy);
  color: white;
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  position: relative;
  z-index: 1;
}

.process-step h4 {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.process-step p {
  font-size: var(--text-caption);
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 767px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
}

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-6) 0;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  gap: var(--space-4);
  transition: color var(--transition-fast);
}

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

.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem;
  color: var(--color-text-muted);
  transition: transform var(--transition-base), border-color var(--transition-fast);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--transition-base);
}

.faq-answer-inner {
  padding-bottom: var(--space-6);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}
