/* ============================================================
   MD ABDULLAH ABU SAMED - Portfolio Design System
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Palette */
  --navy:        #0B2545;
  --navy-light:  #13335C;
  --navy-muted:  #1B3F6F;
  --white:       #FFFFFF;
  --off-white:   #F7F8FA;
  --gray-50:     #F0F2F5;
  --gray-100:    #E2E5EA;
  --gray-200:    #C5CAD3;
  --gray-400:    #8A92A0;
  --gray-600:    #5A6270;
  --gray-800:    #2D3340;
  --coral:       #FF6B4A;
  --coral-hover: #E85A3A;
  --coral-light: rgba(255, 107, 74, 0.1);
  --signal:      #2FA876;
  --signal-light:rgba(47, 168, 118, 0.1);

  /* Typography with robust fast system fallbacks for instant FCP */
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono:    'IBM Plex Mono', SFMono-Regular, Consolas, Menlo, Monaco, 'Courier New', monospace;

  /* 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:  2rem;
  --text-4xl:  2.5rem;
  --text-5xl:  3.25rem;
  --text-6xl:  4rem;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Borders & Radii */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full:9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(11,37,69,0.06), 0 1px 2px rgba(11,37,69,0.04);
  --shadow-md:  0 4px 12px rgba(11,37,69,0.08), 0 2px 4px rgba(11,37,69,0.04);
  --shadow-lg:  0 12px 32px rgba(11,37,69,0.10), 0 4px 8px rgba(11,37,69,0.06);
  --shadow-xl:  0 20px 48px rgba(11,37,69,0.12), 0 8px 16px rgba(11,37,69,0.06);

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
}


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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

/* Focus states */
:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

h1 { font-size: var(--text-4xl); letter-spacing: -0.02em; }
h2 { font-size: var(--text-3xl); letter-spacing: -0.015em; }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

@media (min-width: 768px) {
  h1 { font-size: var(--text-5xl); }
  h2 { font-size: var(--text-4xl); }
}

@media (min-width: 1024px) {
  h1 { font-size: var(--text-6xl); }
}

p {
  margin-bottom: var(--space-md);
}

p:last-child {
  margin-bottom: 0;
}

.mono {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: var(--space-md);
  display: block;
}

.lead {
  font-size: var(--text-lg);
  color: var(--gray-600);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .lead { font-size: var(--text-xl); }
}


/* ============================================================
   4. LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--space-2xl); }
}

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

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

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

.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: var(--white);
}

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

.section--navy .lead {
  color: var(--gray-200);
}

.section--gray {
  background: var(--off-white);
}

.section-header {
  max-width: 640px;
  margin-bottom: var(--space-3xl);
}

.section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Grid system */
.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

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

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

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

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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


/* ============================================================
   5. COMPONENTS - NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow var(--duration-normal) var(--ease-out);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (min-width: 768px) {
  .nav__inner { padding: 0 var(--space-2xl); }
}

.nav__logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.15;
  text-decoration: none;
  white-space: nowrap;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}

.nav__logo-dot {
  color: var(--coral);
}

.nav__logo-tagline {
  font-family: var(--font-body);
  font-size: 0.44rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-top: 3px;
  line-height: 1;
  display: block;
}

.nav__logo > span:not(.nav__logo-tagline):not(.nav__logo-name) {
  color: var(--coral);
}

.nav__links {
  display: none;
  align-items: center;
  gap: var(--space-xl);
}

@media (min-width: 860px) {
  .nav__links { display: flex; }
}

.nav__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--gray-600);
  padding: var(--space-xs) 0;
  position: relative;
  transition: color var(--duration-fast) var(--ease-out);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width var(--duration-normal) var(--ease-out);
}

.nav__link:hover,
.nav__link.active {
  color: var(--navy);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

@media (min-width: 860px) {
  .nav__hamburger { display: none; }
  .nav__mobile { display: none !important; }
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--duration-normal) var(--ease-out),
              opacity var(--duration-fast) var(--ease-out);
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav menu state */
.nav.menu-open,
.nav:has(.nav__hamburger.open) {
  background: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Mobile menu */
.nav__mobile {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(100vh - 72px);
  height: calc(100dvh - 72px);
  background: #ffffff !important;
  background-color: #ffffff !important;
  padding: var(--space-xl) var(--space-lg) calc(var(--space-3xl) + 60px);
  gap: 10px;
  z-index: 99999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid var(--gray-100);
  box-shadow: 0 20px 40px rgba(11, 37, 69, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.22s;
}

.nav__mobile.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav__mobile .nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--navy);
  padding: 13px 18px;
  border-radius: var(--radius-md);
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  text-decoration: none;
  transition: all var(--duration-fast) var(--ease-out);
}

.nav__mobile .nav__link::after {
  content: '→';
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--gray-400);
  position: static;
  width: auto;
  height: auto;
  background: none;
  transition: transform var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out);
}

.nav__mobile .nav__link:hover,
.nav__mobile .nav__link:active {
  background: var(--gray-50);
  color: var(--coral);
  border-color: rgba(255, 107, 74, 0.3);
}

.nav__mobile .nav__link:hover::after,
.nav__mobile .nav__link:active::after {
  transform: translateX(4px);
  color: var(--coral);
}

.nav__mobile .nav__link.active {
  background: rgba(255, 107, 74, 0.08);
  color: var(--coral);
  border-color: rgba(255, 107, 74, 0.35);
}

.nav__mobile .nav__link.active::after {
  color: var(--coral);
}

.nav__mobile .btn {
  margin-top: var(--space-sm) !important;
  padding: 14px 20px;
  font-size: var(--text-base);
  font-weight: 600;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255, 107, 74, 0.35);
}


/* ============================================================
   6. COMPONENTS - BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(255,107,74,0.3);
}

.btn-primary:hover {
  background: var(--coral-hover);
  box-shadow: 0 4px 16px rgba(255,107,74,0.4);
  transform: translateY(-1px);
}

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

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-200);
}

.btn-secondary:hover {
  border-color: var(--navy);
  background: var(--off-white);
}

.btn-nav {
  padding: 10px 22px;
  font-size: var(--text-sm);
}

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

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--coral);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  transition: gap var(--duration-normal) var(--ease-out);
}

.btn-ghost:hover {
  gap: var(--space-sm);
}

.btn-ghost svg {
  width: 16px;
  height: 16px;
  transition: transform var(--duration-normal) var(--ease-out);
}

.btn-ghost:hover svg {
  transform: translateX(3px);
}


/* ============================================================
   7. COMPONENTS - HERO
   ============================================================ */
.hero {
  position: relative;
  padding: calc(72px + var(--space-4xl)) 0 var(--space-4xl);
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .hero { min-height: 100vh; }
}

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

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.hero__content {
  max-width: 580px;
}

.hero__title {
  margin-bottom: var(--space-lg);
}

.hero__title .accent {
  color: var(--coral);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
  max-width: 480px;
}

@media (min-width: 768px) {
  .hero__subtitle { font-size: var(--text-xl); }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
}

/* Hero chart */
.hero__chart {
  position: relative;
  width: 100%;
  max-width: 520px;
  justify-self: center;
}

@media (min-width: 1024px) {
  .hero__chart {
    justify-self: end;
    max-width: 100%;
  }
}

.hero__chart-wrap {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.hero__chart-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,107,74,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero__chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.hero__chart-title {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--gray-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__chart-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--signal);
  background: var(--signal-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.hero__chart-badge svg {
  width: 12px;
  height: 12px;
}

.hero__chart-svg {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

/* Chart draw animation */
.chart-line {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawChart 2s var(--ease-out) 0.5s forwards;
}

.chart-area {
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.8s forwards;
}

.chart-dot {
  opacity: 0;
  animation: popIn 0.3s var(--ease-spring) forwards;
}

.chart-dot:nth-child(1) { animation-delay: 1.4s; }
.chart-dot:nth-child(2) { animation-delay: 1.6s; }
.chart-dot:nth-child(3) { animation-delay: 1.8s; }
.chart-dot:nth-child(4) { animation-delay: 2.0s; }
.chart-dot:nth-child(5) { animation-delay: 2.2s; }

.chart-grid-line {
  opacity: 0;
  animation: fadeIn 0.5s var(--ease-out) 0.3s forwards;
}

.chart-label {
  opacity: 0;
  animation: fadeIn 0.5s var(--ease-out) 0.3s forwards;
  font-family: var(--font-mono);
  font-size: 10px;
  fill: var(--gray-400);
}

/* Hero metric cards */
.hero__chart-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-md);
  position: relative;
  z-index: 1;
}

.hero__metric {
  text-align: center;
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
}

.hero__metric-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--white);
  display: block;
}

.hero__metric-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gray-400);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@keyframes drawChart {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

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


/* ============================================================
   8. COMPONENTS - NICHE STRIP
   ============================================================ */
.niche-strip {
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.niche-strip__inner {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
  justify-content: center;
}

.niche-strip__item {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.niche-strip__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
}


/* ============================================================
   9. COMPONENTS - STAT BAND
   ============================================================ */
.stat-band {
  background: var(--navy);
  padding: var(--space-3xl) 0;
}

.stat-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .stat-band__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}

.stat-card__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-3xl);
  color: var(--white);
  display: block;
  margin-bottom: var(--space-xs);
}

@media (min-width: 768px) {
  .stat-card__value { font-size: var(--text-4xl); }
}

.stat-card__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* Stat dividers */
.stat-band__grid .stat-card + .stat-card {
  position: relative;
}

@media (min-width: 768px) {
  .stat-band__grid .stat-card + .stat-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.1);
  }
}


/* ============================================================
   10. COMPONENTS - SERVICE CARDS
   ============================================================ */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--duration-normal) var(--ease-out);
  display: flex;
  flex-direction: column;
}

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

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--coral);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.service-card__desc {
  color: var(--gray-600);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.service-card__deliverables {
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.service-card__deliverables li {
  font-size: var(--text-sm);
  color: var(--gray-600);
  padding: var(--space-xs) 0;
  padding-left: var(--space-lg);
  position: relative;
}

.service-card__deliverables li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal-light);
  border: 2px solid var(--signal);
  transform: translateY(-50%);
}


/* ============================================================
   11. COMPONENTS - PROJECT CARDS
   ============================================================ */
.project-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
}

.project-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.project-card__header {
  background: var(--navy);
  padding: var(--space-xl) var(--space-xl) var(--space-lg);
  position: relative;
}

.project-card__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: var(--space-sm);
}

.project-card__title {
  font-size: var(--text-xl);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
}

.project-card__metrics {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--gray-100);
}

.project-card__metric {
  text-align: center;
  flex: 1;
}

.project-card__metric-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--signal);
  display: block;
}

.project-card__metric-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.project-card__body {
  padding: var(--space-xl);
}

.project-card__desc {
  color: var(--gray-600);
  font-size: var(--text-sm);
  line-height: 1.7;
}


/* ============================================================
   12. COMPONENTS - TESTIMONIAL CARDS
   ============================================================ */
.quote-band {
  background: var(--navy);
  padding: var(--space-4xl) 0;
  text-align: center;
}

.quote-band__text {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto var(--space-xl);
}

@media (min-width: 768px) {
  .quote-band__text { font-size: var(--text-3xl); }
}

.quote-band__mark {
  font-size: var(--text-5xl);
  color: var(--coral);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-lg);
  font-family: Georgia, serif;
}

.quote-band__author {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--duration-normal) var(--ease-out);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial-card__stars {
  color: var(--coral);
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
}

.testimonial-card__quote {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.8;
  flex-grow: 1;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

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

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--navy);
}

.testimonial-card__role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-400);
}


/* ============================================================
   13. COMPONENTS - PROCESS STEPS
   ============================================================ */
.process {
  counter-reset: step;
}

.process__timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}

@media (min-width: 768px) {
  .process__timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.process__step {
  counter-increment: step;
  position: relative;
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
}

/* Connecting line */
@media (min-width: 768px) {
  .process__step::before {
    content: '';
    position: absolute;
    top: calc(var(--space-2xl) + 24px);
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--gray-100);
  }
  .process__step:last-child::before {
    display: none;
  }
}

.process__number {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: var(--text-xs);
  color: var(--white);
  background: var(--coral);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.process__number::before {
  content: '0' counter(step);
}

.process__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.process__desc {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 240px;
  margin: 0 auto;
}

/* 3-step variant for services page */
@media (min-width: 768px) {
  .process__timeline--three {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ============================================================
   14. COMPONENTS - CTA BAND
   ============================================================ */
.cta-band {
  background: var(--navy);
  padding: var(--space-4xl) 0;
  text-align: center;
}

.cta-band__inner {
  max-width: 600px;
  margin: 0 auto;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-band p {
  color: var(--gray-200);
  margin-bottom: var(--space-2xl);
}


/* ============================================================
   15. COMPONENTS - CONTACT FORM
   ============================================================ */
.contact {
  background: var(--off-white);
  padding: var(--space-4xl) 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
}

@media (min-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact__info h2 {
  margin-bottom: var(--space-md);
}

.contact__info p {
  color: var(--gray-600);
  margin-bottom: var(--space-2xl);
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact__detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  flex-shrink: 0;
}

.contact__detail-icon svg {
  width: 18px;
  height: 18px;
}

.contact__detail-text {
  font-size: var(--text-sm);
}

.contact__detail-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px var(--coral-light);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238A92A0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: var(--coral);
}

.form-group .error-message {
  font-size: var(--text-xs);
  color: var(--coral);
  margin-top: var(--space-xs);
}

.form-success {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
}

.form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--signal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: var(--signal);
}

.form-success h3 {
  margin-bottom: var(--space-sm);
}

.form-success p {
  color: var(--gray-600);
}


/* ============================================================
   16. COMPONENTS - PAGE HEADERS
   ============================================================ */
.page-header {
  padding: calc(72px + var(--space-4xl)) 0 var(--space-3xl);
  background: var(--navy);
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.page-header p {
  color: var(--gray-200);
  max-width: 560px;
  margin: 0 auto;
  font-size: var(--text-lg);
}

.page-header .eyebrow {
  color: var(--coral);
}


/* ============================================================
   17. COMPONENTS - ABOUT PAGE
   ============================================================ */
.about-bio {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

@media (min-width: 768px) {
  .about-bio {
    grid-template-columns: 340px 1fr;
  }
}

.about-bio__photo-wrap {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
  width: 100%;
}

.about-bio__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-50);
  aspect-ratio: 4/5;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.about-bio__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform var(--duration-normal) var(--ease-out);
}

.about-bio__photo:hover img {
  transform: scale(1.03);
}

.about-bio__photo-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100px;
  height: 100px;
  border-radius: var(--radius-lg);
  background: var(--coral);
  z-index: -1;
}

.about-bio__text h2 {
  margin-bottom: var(--space-sm);
}

.about-bio__role {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--coral);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xl);
}

.about-bio__text p {
  color: var(--gray-600);
  line-height: 1.8;
}

/* Principles grid */
.principle-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--duration-normal) var(--ease-out);
}

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

.principle-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--coral);
  font-size: var(--text-xl);
}

.principle-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.principle-card__desc {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.7;
}


/* ============================================================
   18. COMPONENTS - CASE STUDY (PORTFOLIO)
   ============================================================ */
.case-study {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-2xl);
  transition: all var(--duration-normal) var(--ease-out);
}

.case-study:hover {
  box-shadow: var(--shadow-lg);
}

.case-study:last-child {
  margin-bottom: 0;
}

.case-study__header {
  background: var(--navy);
  padding: var(--space-2xl) var(--space-2xl) var(--space-xl);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
}

.case-study__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: var(--space-sm);
}

.case-study__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-2xl);
  color: var(--white);
}

.case-study__stats {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.case-study__stat {
  text-align: center;
  padding: var(--space-sm) var(--space-md);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
}

.case-study__stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--signal);
  display: block;
}

.case-study__stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.case-study__body {
  padding: var(--space-2xl);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .case-study__body {
    grid-template-columns: repeat(3, 1fr);
  }
}

.case-study__section h4 {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.case-study__section p {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.8;
}


/* ============================================================
   19. FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: var(--space-3xl) 0 var(--space-xl);
  color: var(--gray-400);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
}

.footer__logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.15;
  text-decoration: none;
}

.footer__logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.footer__logo-dot {
  color: var(--coral);
}

.footer__logo-tagline {
  font-family: var(--font-body);
  font-size: 0.44rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: 3px;
  line-height: 1;
  display: block;
}

.footer__logo > span:not(.footer__logo-tagline):not(.footer__logo-name) {
  color: var(--coral);
}

.footer__links {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.footer__link {
  font-size: var(--text-sm);
  color: var(--gray-400);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer__link:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.footer__copy {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
}

.footer__socials {
  display: flex;
  gap: var(--space-md);
}

.footer__social {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all var(--duration-fast) var(--ease-out);
}

.footer__social:hover {
  background: var(--coral);
  color: var(--white);
}

.footer__social svg {
  width: 16px;
  height: 16px;
}


/* ============================================================
   20. SCROLL ANIMATIONS
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll[data-delay="1"] { transition-delay: 0.1s; }
.animate-on-scroll[data-delay="2"] { transition-delay: 0.2s; }
.animate-on-scroll[data-delay="3"] { transition-delay: 0.3s; }
.animate-on-scroll[data-delay="4"] { transition-delay: 0.4s; }


/* ============================================================
   21. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }

  .chart-line {
    stroke-dashoffset: 0;
  }

  .chart-area,
  .chart-dot,
  .chart-grid-line,
  .chart-label {
    opacity: 1;
  }
}


/* ============================================================
   22. UTILITY CLASSES
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }


/* ============================================================
   23. STICKY WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  text-decoration: none;
  transition: transform var(--duration-normal) var(--ease-spring),
              box-shadow var(--duration-normal) var(--ease-out),
              background-color var(--duration-fast) var(--ease-out);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0, 0, 0, 0.15);
  background-color: #20BD5A;
  color: #FFFFFF;
}

.whatsapp-float:active {
  transform: translateY(0) scale(0.96);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Tooltip on hover */
.whatsapp-float__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
  box-shadow: var(--shadow-md);
}

.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent var(--navy);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}

/* Subtle pulse animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: rgba(37, 211, 102, 0.35);
  z-index: -1;
  animation: whatsappPulse 2.5s infinite;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.25);
    opacity: 0;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 76px;
  }

  .whatsapp-float {
    bottom: 84px;
    right: 18px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .whatsapp-float__tooltip {
    display: none;
  }

  /* Footer Mobile List View & Centered Copyright */
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-lg);
  }

  .footer__links {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
    width: 100%;
  }

  .footer__link {
    display: inline-block;
    padding: 3px 0;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
  }

  .footer__copy {
    text-align: center;
    width: 100%;
    line-height: 1.5;
  }

  .footer__socials {
    justify-content: center;
  }
}


/* ============================================================
   24. MOBILE STICKY BOTTOM CTA BAR
   ============================================================ */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9990;
    padding: 10px 14px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    background: rgba(11, 37, 69, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.28);
  }

  .mobile-sticky-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px 10px;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--text-xs);
    letter-spacing: 0.02em;
    text-align: center;
    line-height: 1.2;
    transition: transform var(--duration-fast) var(--ease-out),
                opacity var(--duration-fast) var(--ease-out);
    white-space: nowrap;
  }

  .mobile-sticky-cta__btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  .mobile-sticky-cta__btn--audit {
    background: var(--coral);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(255, 107, 74, 0.4);
  }

  .mobile-sticky-cta__btn--call {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.28);
  }

  .mobile-sticky-cta__btn:active {
    transform: scale(0.97);
    opacity: 0.9;
  }
}


/* ============================================================
   FAQ SECTION (AEO)
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: var(--coral);
  box-shadow: 0 2px 12px rgba(255, 107, 74, 0.08);
}

.faq-question {
  cursor: pointer;
  padding: var(--space-lg) var(--space-xl);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  transition: background 0.15s ease;
}

.faq-question:hover {
  background: var(--gray-50);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--coral);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  content: '\2212';
  transform: rotate(0deg);
}

.faq-question h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  line-height: 1.4;
}

.faq-answer {
  padding: 0 var(--space-xl) var(--space-lg);
}

.faq-answer p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

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

.faq-answer a:hover {
  color: var(--coral-hover);
}

/* Section-gray variant */
.section--gray .faq-item {
  background: var(--white);
}

