/* ============================================================
   NEW TECH SERVICES — DESIGN TOKENS
   Aesthetic: Clear Sky Professional
   Palette: Logo Royal Blue + Electric Teal + Clean White
   Colors sourced from logo.webp (globe: #1979BC / #2358A8, teal: #0097BE)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  /* ── Color Primitives ────────────────────────── */
  --clr-black:      #0B1829;   /* deep navy-black */
  --clr-surface-0:  #EDF4FC;   /* soft blue surface */
  --clr-surface-1:  #DAE8F7;   /* medium blue surface — CTA bands */
  --clr-surface-2:  #C7DCED;   /* deeper blue — gradient end */
  --clr-border:     #BDD8EE;   /* cool blue-gray border */
  --clr-border-hi:  #93BFDF;   /* highlighted border */

  --clr-amber:      #1A4DB5;   /* logo royal blue — primary brand */
  --clr-amber-dim:  #133A8E;
  --clr-amber-glow: rgba(26,77,181,0.11);
  --clr-cyan:       #0097BE;   /* logo electric teal — secondary */
  --clr-cyan-dim:   #0079A0;
  --clr-cyan-glow:  rgba(0,151,190,0.10);

  --clr-text:       #0B1829;   /* deep navy-black */
  --clr-text-muted: #3D5875;   /* blue-gray muted */
  --clr-text-faint: #6A8DAA;   /* light blue-gray */

  /* ── Semantic Tokens ─────────────────────────── */
  --bg:             #F7FBFF;   /* clean white with whisper of blue */
  --bg-surface:     var(--clr-surface-0);
  --bg-card:        #FFFFFF;
  --bg-card-hover:  #F3F9FF;

  --accent:         var(--clr-amber);
  --accent-dim:     var(--clr-amber-dim);
  --accent-glow:    var(--clr-amber-glow);

  --highlight:      var(--clr-cyan);
  --highlight-glow: var(--clr-cyan-glow);

  --text:           var(--clr-text);
  --text-muted:     var(--clr-text-muted);
  --border:         var(--clr-border);
  --border-hi:      var(--clr-border-hi);

  /* ── Typography ──────────────────────────────── */
  --font-display:   'Bebas Neue', 'Impact', sans-serif;
  --font-body:      'Outfit', 'Segoe UI', system-ui, sans-serif;
  --font-mono:      'JetBrains Mono', 'Courier New', monospace;

  --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;
  --text-7xl:  4.5rem;
  --text-8xl:  6rem;

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

  /* ── Layout ──────────────────────────────────── */
  --container:  1280px;
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  20px;

  /* ── Motion ──────────────────────────────────── */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.7, 0, 0.84, 0);
  --ease-inout: cubic-bezier(0.45, 0, 0.55, 1);

  --dur-fast:   150ms;
  --dur-base:   300ms;
  --dur-slow:   600ms;
  --dur-xslow:  1000ms;

  /* ── Shadows (cool blue tones) ──────────────── */
  --shadow-sm:     0 1px 4px rgba(10,40,100,0.08);
  --shadow-md:     0 4px 16px rgba(10,40,100,0.10);
  --shadow-lg:     0 8px 40px rgba(10,40,100,0.13);
  --shadow-amber:  0 0 30px rgba(26,77,181,0.22), 0 0 80px rgba(26,77,181,0.08);
  --shadow-cyan:   0 0 30px rgba(0,151,190,0.20), 0 0 60px rgba(0,151,190,0.07);
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ─────────────────────────────────────────────────
   UTILITY CLASSES
───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-8); }
}

/* Dot-grid texture overlay */
.dot-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--clr-border) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.45;
  pointer-events: none;
}

/* Noise texture overlay */
.noise::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

/* Amber rule line */
.amber-rule {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-bottom: var(--space-6);
}

/* Section label chip */
.section-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-4);
  border: 1px solid var(--clr-border-hi);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
  background: rgba(26,77,181,0.06);
}
.section-chip::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

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

/* Display heading */
.display {
  font-family: var(--font-display);
  line-height: 1.0;
  letter-spacing: 0.02em;
  padding-bottom: 0.08em; /* prevent descenders/ascenders clipping at line-height 0.92 */
}

/* Blue gradient text (logo royal blue → bright cobalt) */
.text-amber {
  display: inline-block; /* ensures reliable background-clip:text bounding box */
  background: linear-gradient(135deg, var(--clr-amber) 0%, #3D7FE8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0 0.15em 0.05em 0;
}

/* Teal gradient text (logo electric teal → bright sky) */
.text-cyan {
  display: inline-block;
  background: linear-gradient(135deg, var(--clr-cyan) 0%, #00C0E8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0 0.15em 0.05em 0;
}

/* ─────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent);
  color: #FFFFFF;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-amber); }
.btn-primary:hover::after { opacity: 1; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hi);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-cyan {
  background: var(--highlight);
  color: #FFFFFF;
}
.btn-cyan:hover { transform: translateY(-2px); box-shadow: var(--shadow-cyan); }

/* ─────────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(247,251,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--clr-border);
  box-shadow: 0 1px 24px rgba(10,40,100,0.08);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  text-decoration: none;
}
.navbar__logo span { color: var(--accent); }

/* Actual logo image — replaces the old "N" mark + text */
.navbar__logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity var(--dur-base) var(--ease-out);
}
.navbar__logo-img:hover { opacity: 0.88; }

/* Brand name beside logo */
.navbar__brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--clr-text);
  white-space: nowrap;
  line-height: 1;
}
.footer .navbar__brand-name {
  color: rgba(255,255,255,0.9);
  font-size: 1.25rem;
}

/* Hidden: old mark no longer present in HTML */
.navbar__logo-mark { display: none; }

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

@media (min-width: 1024px) {
  .navbar__links { display: flex; }
}

.navbar__links a {
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast);
  position: relative;
}
.navbar__links a:hover, .navbar__links a.active { color: var(--text); }
.navbar__links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: var(--space-3);
  right: var(--space-3);
  height: 2px;
  background: var(--accent);
}

.navbar__cta {
  display: none;
  gap: var(--space-3);
}
@media (min-width: 768px) { .navbar__cta { display: flex; } }

.navbar__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}
@media (min-width: 1024px) { .navbar__hamburger { display: none; } }

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all var(--dur-base) var(--ease-out);
  transform-origin: center;
}

.navbar__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(247,251,255,0.98);
  backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
}
.navbar__mobile.open { display: flex; }
.navbar__mobile a {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  color: var(--text-muted);
  transition: color var(--dur-base);
}
.navbar__mobile a:hover { color: var(--accent); }

/* ─────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────── */
.footer {
  background: var(--clr-surface-0);
  border-top: 1px solid var(--border);
  padding: var(--space-20) 0 var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer__brand p {
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.8;
  margin-top: var(--space-4);
  max-width: 320px;
}

/* Footer logo image sizing */
.footer__brand .navbar__logo-img {
  height: 72px;
  margin-bottom: 0;
}

.footer__heading {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-6);
}

.footer__links { display: flex; flex-direction: column; gap: var(--space-3); }
.footer__links a {
  color: var(--text-muted);
  font-size: var(--text-sm);
  transition: color var(--dur-fast);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.footer__links a:hover { color: var(--text); }
.footer__links a::before {
  content: '→';
  color: var(--accent);
  font-size: var(--text-xs);
  opacity: 0;
  transform: translateX(-4px);
  transition: all var(--dur-fast);
}
.footer__links a:hover::before { opacity: 1; transform: translateX(0); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.footer__bottom p {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--clr-text-faint);
}

/* Social icons */
.social-links { display: flex; gap: var(--space-3); margin-top: var(--space-6); }
.social-links a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: var(--text-sm);
  transition: all var(--dur-base);
}
.social-links a:hover { border-color: var(--accent); color: var(--accent); }

/* ─────────────────────────────────────────────────
   CARDS
───────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--dur-base);
}

.card:hover {
  border-color: var(--border-hi);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card:hover::before { opacity: 1; }

/* Icon box */
.icon-box {
  width: 52px;
  height: 52px;
  background: var(--accent-glow);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-6);
  font-size: var(--text-2xl);
  flex-shrink: 0;
}

.icon-box.cyan {
  background: var(--highlight-glow);
  border-color: var(--clr-border);
}

/* Stat block */
.stat-block {
  text-align: center;
  padding: var(--space-8);
}
.stat-block__number {
  font-family: var(--font-mono);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stat-block__label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─────────────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--clr-surface-1) 0%, var(--bg) 60%);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(26,77,181,0.09) 0%, transparent 70%);
}
.page-hero .dot-grid::before { opacity: 0.3; }
.page-hero__label { margin-bottom: var(--space-4); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-6);
  overflow: visible;
  padding-bottom: 0.1em;
}
.page-hero p {
  font-size: var(--text-xl);
  color: var(--text-muted);
  max-width: 600px;
}

/* ─────────────────────────────────────────────────
   SECTION HEADING
───────────────────────────────────────────────── */
.section-heading {
  margin-bottom: var(--space-16);
  overflow: visible;
}
.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-4);
  overflow: visible;
  padding-bottom: 0.1em;
}
.section-heading p {
  color: var(--text-muted);
  font-size: var(--text-lg);
  max-width: 560px;
}

/* ─────────────────────────────────────────────────
   GRID LAYOUTS
───────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--space-6); }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: var(--space-6); }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }

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

/* ─────────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slide-right {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(26,77,181,0.15); }
  50% { box-shadow: 0 0 40px rgba(26,77,181,0.35); }
}

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

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.animate-fade-up { animation: fade-up 0.7s var(--ease-out) both; }
.animate-fade-in { animation: fade-in 0.7s var(--ease-out) both; }

/* Scroll reveal — only hidden when JS is active */
.js-loaded .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.js-loaded .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────────
   WHATSAPP FLOAT
───────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--dur-base) var(--ease-out);
  animation: float 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ─────────────────────────────────────────────────
   SCROLL INDICATOR
───────────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-amber), var(--clr-cyan));
  z-index: 1001;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s linear;
}

/* ─────────────────────────────────────────────────
   FORM STYLES
───────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}
.form-group label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-4);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  outline: none;
  transition: border-color var(--dur-base);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group textarea { resize: vertical; min-height: 140px; }

/* ─────────────────────────────────────────────────
   PRICING CARDS
───────────────────────────────────────────────── */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  position: relative;
  transition: all var(--dur-base) var(--ease-out);
}
.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, var(--clr-surface-0), #FFFFFF);
  box-shadow: var(--shadow-md);
}
.pricing-card.featured::after {
  content: 'POPULAR';
  position: absolute;
  top: -1px; right: var(--space-8);
  background: var(--accent);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: var(--space-1) var(--space-4);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.pricing-card__price {
  font-family: var(--font-mono);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--accent);
  margin: var(--space-4) 0;
}
.pricing-card__price span {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-8) 0;
}
.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-muted);
}
.pricing-card__features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────
   FAQ ACCORDION
───────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) 0;
  text-align: left;
  color: var(--text);
  font-size: var(--text-base);
  font-weight: 500;
  gap: var(--space-4);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}
.faq-toggle:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-base);
  color: var(--accent);
  transition: transform var(--dur-base) var(--ease-out);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out), padding var(--dur-slow) var(--ease-out);
}
.faq-item.open .faq-body { max-height: 300px; padding-bottom: var(--space-6); }
.faq-body p { color: var(--text-muted); font-size: var(--text-sm); line-height: 1.8; }

/* ─────────────────────────────────────────────────
   LIGHT SECTION VARIANT
   Creates subtle alternating rhythm on warm pages
───────────────────────────────────────────────── */
.section-light {
  background: #FFFFFF !important;
}

.section-light.dot-grid::before {
  background-image: radial-gradient(circle, var(--clr-border) 1px, transparent 1px);
  opacity: 0.5;
}
