/* ============================================================
   WEBCRAFT MIAMI — styles.css
   Light theme default · Dark theme via [data-theme="dark"]
   Classic professional palette with Miami accents
   ============================================================ */

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

/* ── LIGHT THEME (default) ───────────────────────────────── */
:root {
  /* Brand palette */
  --blue:       #1d4ed8;   /* primary — professional blue   */
  --blue-light: #3b82f6;
  --teal:       #0369a1;   /* secondary — Miami water       */
  --coral:      #ea580c;   /* accent — Miami sunset (CTAs)  */

  /* Aliases kept for compatibility */
  --cyan:       var(--blue);
  --violet:     var(--teal);

  /* Surfaces */
  --bg:         #ffffff;
  --bg-2:       #f8fafc;
  --bg-3:       #f1f5f9;
  --surface:    #ffffff;
  --surface-2:  #f8fafc;
  --border:     rgba(15,23,42,.1);

  /* Text */
  --text:       #0f172a;
  --text-muted: #64748b;

  /* Gradients */
  --grad:      linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  --grad-soft: linear-gradient(135deg, rgba(29,78,216,.06) 0%, rgba(3,105,161,.06) 100%);

  /* Typography */
  --font-body: 'Inter', system-ui, sans-serif;
  --font-head: 'Plus Jakarta Sans', 'Space Grotesk', 'Inter', system-ui, sans-serif;

  /* Layout */
  --nav-h:     72px;
  --radius:    12px;
  --radius-lg: 20px;
  --max-w:     1200px;

  /* Easing */
  --ease:        cubic-bezier(.25,.46,.45,.94);
  --ease-out:    cubic-bezier(.22,1,.36,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);

  /* Shadows (lighter for white bg) */
  --shadow-sm: 0 1px 4px rgba(15,23,42,.08), 0 1px 2px rgba(15,23,42,.04);
  --shadow-md: 0 4px 20px rgba(15,23,42,.1),  0 2px 6px rgba(15,23,42,.05);
  --shadow-lg: 0 20px 48px rgba(15,23,42,.12), 0 8px 16px rgba(15,23,42,.06);
  --glow-cyan:   0 0 28px rgba(29,78,216,.15);
  --glow-violet: 0 0 28px rgba(3,105,161,.15);
}

/* ── DARK THEME ───────────────────────────────────────────── */
[data-theme="dark"] {
  --blue:       #38bdf8;
  --blue-light: #7dd3fc;
  --teal:       #818cf8;
  --coral:      #fb923c;

  --cyan:       var(--blue);
  --violet:     var(--teal);

  --bg:         #0f172a;
  --bg-2:       #1e293b;
  --bg-3:       #1e293b;
  --surface:    #1e293b;
  --surface-2:  #334155;
  --border:     rgba(255,255,255,.08);

  --text:       #f1f5f9;
  --text-muted: #94a3b8;

  --grad:      linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  --grad-soft: linear-gradient(135deg, rgba(56,189,248,.12) 0%, rgba(129,140,248,.12) 100%);

  --shadow-sm: 0 2px 12px rgba(0,0,0,.4);
  --shadow-md: 0 8px 32px rgba(0,0,0,.5);
  --shadow-lg: 0 24px 64px rgba(0,0,0,.6);
  --glow-cyan:   0 0 40px rgba(56,189,248,.2);
  --glow-violet: 0 0 40px rgba(129,140,248,.2);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  transition: background .35s var(--ease), color .35s var(--ease);
}

::selection { background: rgba(29,78,216,.18); color: inherit; }
[data-theme="dark"] ::selection { background: rgba(56,189,248,.25); }

/* ── 2. UTILITIES ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section    { padding: 100px 0; }
.section--sm{ padding: 60px 0; }

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform .2s var(--ease-spring), box-shadow .25s var(--ease), background .2s;
  position: relative;
  overflow: hidden;
  letter-spacing: .01em;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity .2s;
}

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

.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(29,78,216,.3);
}
[data-theme="dark"] .btn--primary { box-shadow: 0 4px 20px rgba(56,189,248,.25); }
.btn--primary:hover { box-shadow: 0 8px 28px rgba(29,78,216,.45); }
[data-theme="dark"] .btn--primary:hover { box-shadow: 0 8px 28px rgba(56,189,248,.4); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }

.btn--coral {
  background: linear-gradient(135deg, var(--coral) 0%, #f97316 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(234,88,12,.3);
}
.btn--coral:hover { box-shadow: 0 8px 28px rgba(234,88,12,.45); }

.btn--lg  { padding: 16px 32px; font-size: 1rem; }
.btn--sm  { padding: 10px 20px; font-size: .875rem; }
.btn--full{ width: 100%; justify-content: center; }

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(29,78,216,.08);
  border: 1px solid rgba(29,78,216,.2);
  color: var(--blue);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(.7); }
}

/* ── 3. CUSTOM CURSOR ─────────────────────────────────────── */
.cursor, .cursor-follower {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform .15s var(--ease);
}

.cursor {
  width: 8px; height: 8px;
  background: var(--blue);
  top: -4px; left: -4px;
  mix-blend-mode: normal;
}

.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(29,78,216,.4);
  top: -18px; left: -18px;
  transition: transform .4s var(--ease), width .3s, height .3s, opacity .3s;
}

[data-theme="dark"] .cursor            { background: #fff; mix-blend-mode: difference; }
[data-theme="dark"] .cursor-follower   { border-color: rgba(255,255,255,.4); }

.cursor--hover .cursor-follower {
  width: 56px; height: 56px;
  border-color: var(--blue);
  opacity: .5;
}

@media (hover:none) { .cursor, .cursor-follower { display:none; } }

/* ── 4. LOADER ─────────────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s var(--ease), visibility .5s;
}

[data-theme="dark"] .loader { background: #0f172a; }
.loader.hidden { opacity:0; visibility:hidden; }

.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loader__logo { width:64px; animation: spin 4s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.loader__bar {
  width: 200px; height: 2px;
  background: var(--bg-3);
  border-radius: 2px;
  overflow: hidden;
}

.loader__fill {
  height: 100%;
  width: 0%;
  background: var(--grad);
  border-radius: 2px;
  transition: width .05s linear;
}

/* ── 5. NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background .3s, box-shadow .3s, border-color .3s;
}

[data-theme="dark"] .nav {
  background: rgba(15,23,42,.85);
  border-bottom-color: rgba(255,255,255,.06);
}

.nav.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .nav.scrolled {
  background: rgba(15,23,42,.97);
}

.nav__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: -.01em;
  flex-shrink: 0;
}

.nav__logo-icon { width:32px; height:32px; }
.nav__logo-accent { color: var(--blue); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.nav__link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}

.nav__link:hover { color: var(--text); background: var(--bg-2); }
.nav__link.active { color: var(--blue); }

/* Controls group */
.nav__controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
}

.lang-toggle__opt {
  padding: 7px 12px;
  color: var(--text-muted);
  transition: background .2s, color .2s;
  border-radius: 50px;
}

.lang-toggle__opt.active {
  background: var(--blue);
  color: #fff;
}

/* Theme toggle */
.theme-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s, transform .2s;
  color: var(--text-muted);
}

.theme-toggle:hover { background: var(--bg-3); border-color: var(--blue); color: var(--blue); transform: rotate(20deg); }

.theme-toggle svg { width:16px; height:16px; }
.theme-toggle .icon-sun  { display:block; }
.theme-toggle .icon-moon { display:none;  }
[data-theme="dark"] .theme-toggle .icon-sun  { display:none;  }
[data-theme="dark"] .theme-toggle .icon-moon { display:block; }

/* CTA in nav */
.nav__cta { flex-shrink: 0; }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}

.nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__burger.active span:nth-child(2) { opacity:0; }
.nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 16px 24px 32px;
}

.nav__mobile-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}

.nav__mobile-link:hover { color: var(--text); }

.nav__mobile-cta {
  margin-top: 20px;
  padding: 16px 0;
  border: none;
  color: var(--blue);
  font-weight: 700;
}

/* Mobile controls row */
.nav__mobile-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0 8px;
  border-bottom: 1px solid var(--border);
}

/* ── 6. HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: linear-gradient(160deg, #eff6ff 0%, #f0f9ff 55%, #fff 100%);
}

[data-theme="dark"] .hero { background: var(--bg); }

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: .5;
}

[data-theme="dark"] .hero__canvas { opacity: .6; }

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px;
}

.hero__eyebrow { margin-bottom: 28px; }

.hero__heading {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.025em;
  margin-bottom: 24px;
  color: var(--text);
}

.hero__heading-gradient {
  display: block;
  font-size: 1.15em;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 4px 0;
  min-height: 1.1em;
  will-change: contents;
  backface-visibility: hidden;
}

/* Blinking cursor after typed word */
.hero__heading-gradient::after {
  content: '|';
  -webkit-text-fill-color: transparent;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  margin-left: 2px;
  animation: cursorBlink 1s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

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

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}

.hero__stat-value {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.hero__stat-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero__stat-suffix {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.hero__stat-label {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero__stat-divider {
  width: 1px; height: 48px;
  background: var(--border);
}

.hero__scroll-indicator {
  display: none;
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

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

.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
}

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

/* ── 7. MARQUEE ─────────────────────────────────────────────── */
.marquee-section {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
}

.marquee { overflow: hidden; }

.marquee__track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee__track span {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.marquee__track .dot { color: var(--blue); }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── 8. SECTION HEADERS ─────────────────────────────────────── */
.section__header { text-align:center; margin-bottom:64px; }

.section__eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--text);
  margin-bottom: 16px;
}

.section__desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── 9. SERVICES ────────────────────────────────────────────── */

/* Section background blob animations */
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(40px,-30px) scale(1.08); }
  66%      { transform: translate(-20px,20px) scale(.94); }
}
@keyframes blobFloat2 {
  0%,100% { transform: translate(0,0) scale(1); }
  40%     { transform: translate(-35px,25px) scale(1.1); }
  70%     { transform: translate(25px,-15px) scale(.92); }
}

.section-blob {
  position:absolute; border-radius:50%;
  pointer-events:none; z-index:0;
  filter:blur(80px); opacity:.35;
}
[data-theme="dark"] .section-blob { opacity:.18; }

.section-blob--1 {
  width:520px; height:520px;
  background: radial-gradient(circle, rgba(29,78,216,.45) 0%, transparent 70%);
  animation: blobFloat 18s ease-in-out infinite;
}
.section-blob--2 {
  width:400px; height:400px;
  background: radial-gradient(circle, rgba(3,105,161,.4) 0%, transparent 70%);
  animation: blobFloat2 22s ease-in-out infinite;
}
.section-blob--3 {
  width:350px; height:350px;
  background: radial-gradient(circle, rgba(99,102,241,.35) 0%, transparent 70%);
  animation: blobFloat 26s ease-in-out infinite reverse;
}

.services { background: var(--bg); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
  overflow: hidden;
  will-change: opacity, transform;
}

.service-card::before {
  content:'';
  position:absolute; inset:0;
  background: var(--grad-soft);
  opacity:0;
  transition: opacity .3s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(29,78,216,.25);
  box-shadow: var(--shadow-md), var(--glow-cyan);
}

.service-card:hover::before { opacity:1; }

.service-card__number {
  position: absolute;
  top:24px; right:28px;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  color: var(--border);
  letter-spacing: .1em;
}

.service-card__icon {
  width:52px; height:52px;
  margin-bottom:24px;
  position:relative; z-index:1;
}

.service-card__icon svg { width:100%; height:100%; }

.service-card__title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  position: relative; z-index:1;
}

.service-card__desc {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative; z-index:1;
}

.service-card__features {
  list-style:none;
  display:flex; flex-direction:column;
  gap:8px; margin-bottom:28px;
  position:relative; z-index:1;
}

.service-card__features li {
  font-size:.85rem;
  color:var(--text-muted);
  padding-left:18px;
  position:relative;
}

.service-card__features li::before {
  content:'→';
  position:absolute; left:0;
  color:var(--blue);
}

.service-card__link {
  font-size:.9rem;
  font-weight:600;
  color:var(--blue);
  text-decoration:none;
  position:relative; z-index:1;
}

.service-card__link:hover { opacity:.75; }

/* CTA card */
.service-card--cta {
  background: var(--grad);
  border-color: transparent;
  display:flex; align-items:center; justify-content:center;
  overflow: visible;
}

.service-card--cta::before { display:none; }
.service-card--cta:hover { border-color:transparent; box-shadow:var(--shadow-lg); }

.service-card__cta-inner {
  text-align:center;
  position:relative; z-index:1;
  width:100%;
}

.service-card__cta-icon {
  display:flex; align-items:center; justify-content:center;
  width:56px; height:56px; border-radius:50%;
  background:rgba(255,255,255,.12);
  margin:0 auto 20px;
}

.service-card__cta-inner h3 {
  font-family:var(--font-head);
  font-size:1.5rem; font-weight:800;
  color:#fff; margin-bottom:10px;
}

.service-card__cta-inner p {
  color:rgba(255,255,255,.82);
  font-size:.93rem; margin-bottom:28px; line-height:1.65;
}

/* ── 10. TRUSTED BY ─────────────────────────────────────────── */
.trusted { background: var(--bg-2); }

.trusted__label {
  text-align:center;
  font-size:.78rem; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase;
  color:var(--text-muted); margin-bottom:32px;
}

.trusted__logos {
  display:flex; align-items:center;
  justify-content:center;
  gap:8px; flex-wrap:wrap;
}

.trusted__logo {
  background:var(--surface);
  border:1px solid var(--border);
  color:var(--text-muted);
  font-size:.8rem; font-weight:600;
  letter-spacing:.08em; text-transform:uppercase;
  padding:12px 24px; border-radius:50px;
  transition:color .2s, border-color .2s, transform .2s;
}

.trusted__logo:hover {
  color:var(--blue);
  border-color:rgba(29,78,216,.3);
  transform:translateY(-2px);
}

/* ── 11. PROCESS ────────────────────────────────────────────── */
.process { background: var(--bg-3); }

.process__steps {
  display:flex;
  align-items:center;
  gap:0;
  flex-wrap:wrap;
  justify-content:center;
}

.process__step {
  flex:1; min-width:200px; max-width:260px;
  display:flex; flex-direction:column;
  align-items:center; text-align:center;
  gap:16px; padding:32px 20px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  transition:transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
  will-change: opacity, transform;
}

.process__step:hover {
  transform:translateY(-4px);
  border-color:rgba(29,78,216,.25);
  box-shadow:var(--shadow-sm), var(--glow-cyan);
}

.process__step-num {
  font-family:var(--font-head);
  font-size:2rem; font-weight:800;
  background:var(--grad);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

.process__step-content h3 {
  font-family:var(--font-head);
  font-size:1.05rem; font-weight:700;
  color:var(--text); margin-bottom:8px;
}

.process__step-content p {
  font-size:.88rem;
  color:var(--text-muted);
  line-height:1.65;
}

.process__connector {
  flex:0 0 40px; height:2px;
  background:var(--grad);
  opacity:.35;
}

/* ── 12. WORK ───────────────────────────────────────────────── */
.work { background: var(--bg); }

.work__grid { display:flex; flex-direction:column; gap:32px; }

.work-card {
  display:grid; grid-template-columns:1fr 1fr;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  overflow:hidden;
  transition:transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
  will-change: opacity, transform;
}

.work-card:nth-child(even) { direction:rtl; }
.work-card:nth-child(even)>* { direction:ltr; }

.work-card:hover {
  transform:translateY(-4px);
  border-color:rgba(29,78,216,.2);
  box-shadow:var(--shadow-lg), var(--glow-cyan);
}

.work-card__visual {
  position:relative;
  min-height:300px;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}

.work-card__visual--1 { background:linear-gradient(135deg,#dbeafe 0%,#ede9fe 100%); }
.work-card__visual--2 { background:linear-gradient(135deg,#dcfce7 0%,#dbeafe 100%); }
.work-card__visual--3 { background:linear-gradient(135deg,#fef9c3 0%,#dbeafe 100%); }

[data-theme="dark"] .work-card__visual--1 { background:linear-gradient(135deg,#0d1f2d 0%,#1a0a2e 100%); }
[data-theme="dark"] .work-card__visual--2 { background:linear-gradient(135deg,#0a1a2d 0%,#0d2b1a 100%); }
[data-theme="dark"] .work-card__visual--3 { background:linear-gradient(135deg,#1a1a0d 0%,#0d0a2d 100%); }

.work-card__badge {
  position:absolute; top:20px; left:20px;
  background:rgba(29,78,216,.1);
  border:1px solid rgba(29,78,216,.25);
  color:var(--blue);
  font-size:.72rem; font-weight:700;
  letter-spacing:.06em; text-transform:uppercase;
  padding:6px 14px; border-radius:50px;
}

[data-theme="dark"] .work-card__badge {
  background:rgba(56,189,248,.1);
  border-color:rgba(56,189,248,.25);
}

.work-card__mockup {
  width:75%;
  background:var(--surface);
  border-radius:10px;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  border:1px solid var(--border);
}

.mockup-bar {
  height:28px;
  background:var(--bg-3);
  display:flex; align-items:center;
  padding:0 12px; gap:6px;
}

.mockup-bar::before {
  content:'';
  width:8px; height:8px;
  border-radius:50%;
  background:rgba(239,68,68,.6);
  box-shadow:14px 0 rgba(250,204,21,.6), 28px 0 rgba(34,197,94,.5);
}

.mockup-content { padding:16px; display:flex; flex-direction:column; gap:10px; }

.mockup-line { height:8px; background:var(--bg-3); border-radius:4px; }
.w-90{width:90%} .w-80{width:80%} .w-70{width:70%} .w-60{width:60%} .w-50{width:50%}

.mockup-chart {
  display:flex; align-items:flex-end;
  gap:6px; height:80px; padding-top:8px;
}

.chart-bar {
  flex:1;
  background:var(--grad);
  border-radius:3px 3px 0 0;
  opacity:.7;
}

.mockup-grid { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.mockup-card-sm { height:44px; background:var(--bg-3); border-radius:6px; }
.mockup-progress { display:flex; flex-direction:column; gap:8px; }
.prog-bar { height:10px; background:var(--grad); border-radius:5px; opacity:.7; }

.work-card__info {
  padding:48px 40px;
  display:flex; flex-direction:column;
  justify-content:center; gap:16px;
}

.work-card__industry {
  font-size:.78rem; font-weight:600;
  letter-spacing:.08em; text-transform:uppercase;
  color:var(--blue);
}

.work-card__title {
  font-family:var(--font-head);
  font-size:1.5rem; font-weight:800;
  color:var(--text); line-height:1.2;
}

.work-card__desc {
  font-size:.95rem;
  color:var(--text-muted);
  line-height:1.7;
}

.work-card__metrics { display:flex; gap:32px; margin-top:8px; }
.metric { display:flex; flex-direction:column; gap:4px; }

.metric__val {
  font-family:var(--font-head);
  font-size:1.8rem; font-weight:800;
  background:var(--grad);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  line-height:1;
}

.metric__label {
  font-size:.75rem;
  color:var(--text-muted);
  letter-spacing:.04em;
  text-transform:uppercase;
}

/* ── 13. AUDIT CTA ──────────────────────────────────────────── */
.audit-cta { background: var(--bg-2); }

.audit-cta__inner {
  position:relative;
  background:var(--surface);
  border:1px solid rgba(29,78,216,.15);
  border-radius:24px;
  padding:72px 48px;
  text-align:center;
  overflow:hidden;
  box-shadow:var(--shadow-md);
}

[data-theme="dark"] .audit-cta__inner { border-color: rgba(56,189,248,.12); }

.audit-cta__glow {
  position:absolute;
  top:-60px; left:50%;
  transform:translateX(-50%);
  width:400px; height:400px;
  background:radial-gradient(circle, rgba(29,78,216,.08) 0%, transparent 70%);
  pointer-events:none;
}

[data-theme="dark"] .audit-cta__glow {
  background:radial-gradient(circle, rgba(56,189,248,.1) 0%, transparent 70%);
}

.audit-cta__inner h2 {
  font-family:var(--font-head);
  font-size:clamp(1.8rem,4vw,2.8rem);
  font-weight:800;
  color:var(--text);
  margin:12px 0 16px;
  line-height:1.15;
}

.audit-cta__inner>p {
  font-size:1.05rem;
  color:var(--text-muted);
  max-width:520px; margin:0 auto 32px;
  line-height:1.7;
}

.audit-cta__checks {
  display:flex; flex-wrap:wrap;
  gap:12px 24px; justify-content:center;
  margin-bottom:40px;
}

.audit-cta__checks span {
  display:flex; align-items:center;
  gap:8px; font-size:.9rem;
  color:var(--text-muted); font-weight:500;
}

.audit-cta__checks svg circle { stroke: var(--blue); }
.audit-cta__checks svg path  { stroke: var(--blue); }

/* ── 14. TESTIMONIALS ───────────────────────────────────────── */
.testimonials { background: var(--bg); }

.testimonials__grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.testimonial-card {
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:36px 32px;
  box-shadow:var(--shadow-sm);
  transition:transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
  will-change: opacity, transform;
}

.testimonial-card:hover {
  transform:translateY(-4px);
  border-color:rgba(29,78,216,.2);
  box-shadow:var(--shadow-md), var(--glow-cyan);
}

.testimonial-card__stars { color:#f59e0b; letter-spacing:2px; margin-bottom:16px; }

.testimonial-card p {
  font-size:.95rem;
  color:var(--text-muted);
  line-height:1.75;
  margin-bottom:28px;
  font-style:italic;
}

.testimonial-card footer {
  display:flex; align-items:center; gap:14px;
}

.testimonial-card__avatar {
  width:44px; height:44px;
  border-radius:50%;
  background:var(--grad);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:.85rem; color:#fff;
  flex-shrink:0;
}

.testimonial-card cite {
  display:block; font-style:normal;
  font-weight:700; color:var(--text); font-size:.9rem;
}

.testimonial-card span {
  display:block; font-size:.8rem;
  color:var(--text-muted); margin-top:2px;
}

/* ── 15. PRICING ─────────────────────────────────────────────── */
.pricing { background: var(--bg-3); }

.pricing__grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px; align-items:stretch;
  margin-bottom:48px;
}

.pricing-card {
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:36px 32px;
  display:flex; flex-direction:column;
  position:relative;
  box-shadow:var(--shadow-sm);
  transition:transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
  will-change: opacity, transform;
}

.pricing-card:hover {
  transform:translateY(-6px);
  border-color:rgba(29,78,216,.25);
  box-shadow:var(--shadow-md);
}

.pricing-card--featured {
  background:var(--grad);
  border-color:transparent;
  transform:scale(1.03);
  box-shadow:var(--shadow-lg);
}

.pricing-card--featured:hover {
  transform:scale(1.03) translateY(-6px);
  border-color:transparent;
  box-shadow:var(--shadow-lg), var(--glow-cyan);
}

.pricing-card__popular {
  position:absolute; top:-14px; left:50%;
  transform:translateX(-50%);
  background:var(--coral);
  color:#fff;
  font-size:.72rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase;
  padding:5px 16px; border-radius:50px;
  white-space:nowrap;
}

.pricing-card__header { margin-bottom:28px; }

.pricing-card__tier {
  display:block;
  font-size:.78rem; font-weight:700;
  letter-spacing:.12em; text-transform:uppercase;
  color:var(--blue); margin-bottom:12px;
}

.pricing-card--featured .pricing-card__tier { color:rgba(255,255,255,.8); }

.pricing-card__price {
  display:flex; align-items:flex-start;
  gap:4px; margin-bottom:12px;
}

.pricing-card__currency {
  font-family:var(--font-head);
  font-size:1.4rem; font-weight:700;
  color:var(--text-muted); margin-top:6px;
}

.pricing-card--featured .pricing-card__currency { color:rgba(255,255,255,.7); }

.pricing-card__amount {
  font-family:var(--font-head);
  font-size:3.2rem; font-weight:700;
  line-height:1; color:var(--text);
}

.pricing-card--featured .pricing-card__amount { color:#fff; }

.pricing-card__suffix {
  font-family:var(--font-head);
  font-size:1.4rem; font-weight:700;
  color:var(--text-muted); margin-top:6px;
}

.pricing-card--featured .pricing-card__suffix { color:rgba(255,255,255,.7); }

.pricing-card__price--custom span {
  font-family:var(--font-head);
  font-size:2.8rem; font-weight:700;
  background:var(--grad);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

.pricing-card--featured .pricing-card__price--custom span {
  background:none;
  -webkit-text-fill-color:#fff;
  color:#fff;
}

.pricing-card__desc {
  font-size:.9rem; color:var(--text-muted); line-height:1.6;
}

.pricing-card--featured .pricing-card__desc { color:rgba(255,255,255,.8); }

.pricing-card__features {
  list-style:none;
  display:flex; flex-direction:column;
  gap:12px; flex:1; margin-bottom:28px;
}

.pricing-card__features li {
  display:flex; align-items:center;
  gap:10px; font-size:.9rem; color:var(--text-muted);
}

.pricing-card--featured .pricing-card__features li { color:rgba(255,255,255,.88); }
.pricing-card__features li svg { flex-shrink:0; }

.pricing-card__note {
  text-align:center;
  font-size:.78rem; color:var(--text-muted);
  margin-top:12px; font-style:italic;
}

.pricing-card--featured .pricing-card__note { color:rgba(255,255,255,.55); }

.pricing__addons { text-align:center; }

.pricing__addons-label {
  font-size:.78rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase;
  color:var(--text-muted); margin-bottom:20px;
}

.pricing__addons-grid {
  display:flex; flex-wrap:wrap;
  gap:12px; justify-content:center;
}

.addon-chip {
  display:flex; align-items:center;
  gap:10px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:50px;
  padding:10px 20px;
  box-shadow:var(--shadow-sm);
  transition:border-color .2s, transform .2s;
}

.addon-chip:hover { border-color:rgba(29,78,216,.3); transform:translateY(-2px); }

.addon-chip__name { font-size:.85rem; color:var(--text-muted); font-weight:500; }
.addon-chip__price { font-size:.85rem; font-weight:700; color:var(--blue); }

/* ── 16. FAQ ─────────────────────────────────────────────────── */
.faq { background: var(--bg-2); }

.faq__list { max-width:760px; margin:0 auto; }

.faq__item { border-bottom:1px solid var(--border); }
.faq__item:first-child { border-top:1px solid var(--border); }

.faq__question {
  width:100%;
  background:none; border:none;
  cursor:pointer; text-align:left;
  padding:24px 0;
  display:flex; align-items:center;
  justify-content:space-between; gap:16px;
  font-family:var(--font-body);
  font-size:1rem; font-weight:600;
  color:var(--text);
  transition:color .2s;
}

.faq__question::after {
  content:'+';
  font-size:1.5rem; font-weight:300;
  color:var(--blue); flex-shrink:0;
  transition:transform .3s var(--ease-out);
  line-height:1;
}

.faq__question[aria-expanded="true"] { color:var(--blue); }
.faq__question[aria-expanded="true"]::after { transform:rotate(45deg); }

.faq__answer {
  overflow:hidden; max-height:0;
  transition:max-height .4s var(--ease-out);
}

.faq__answer.open { max-height:300px; padding-bottom:24px; }

.faq__answer p {
  font-size:.95rem; color:var(--text-muted); line-height:1.75;
}

/* ── 17. ABOUT ──────────────────────────────────────────────── */
.about { background: var(--bg); }

.about__inner {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px; align-items:center;
}

.about__content p {
  font-size:1rem; color:var(--text-muted);
  line-height:1.75; margin-bottom:16px;
}

.about__content strong { color:var(--text); font-weight:600; }

.about__values {
  display:grid; grid-template-columns:1fr 1fr 1fr;
  gap:16px; margin-top:32px;
}

.about__value {
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:20px 16px; text-align:center;
  box-shadow:var(--shadow-sm);
  transition:transform .2s, border-color .2s;
}

.about__value:hover { transform:translateY(-3px); border-color:rgba(29,78,216,.2); }
.about__value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(29,78,216,.1) 0%, rgba(3,105,161,.1) 100%);
  margin-bottom: 12px;
}
[data-theme="dark"] .about__value-icon {
  background: linear-gradient(135deg, rgba(56,189,248,.12) 0%, rgba(129,140,248,.12) 100%);
}

.about__value strong {
  display:block; font-family:var(--font-head);
  font-weight:700; color:var(--text);
  font-size:.95rem; margin-bottom:6px;
}

.about__value p {
  font-size:.82rem; color:var(--text-muted);
  margin:0; line-height:1.5;
}

/* Card stack */
.about__visual { display:flex; align-items:center; justify-content:center; }

.about__card-stack { position:relative; width:320px; height:380px; }

.about__card {
  position:absolute; inset:0;
  border-radius:20px;
  transition:transform .3s var(--ease-out);
}

.about__card--back {
  background:rgba(29,78,216,.06);
  border:1px solid rgba(29,78,216,.15);
  transform:rotate(-6deg) translateY(12px);
}

.about__card--mid {
  background:rgba(3,105,161,.06);
  border:1px solid rgba(3,105,161,.12);
  transform:rotate(-2deg) translateY(6px);
}

.about__card--front {
  background:var(--surface);
  border:1px solid rgba(29,78,216,.2);
  box-shadow:var(--shadow-lg);
  display:flex; align-items:center; justify-content:center;
}

.about__card-stack:hover .about__card--back  { transform:rotate(-8deg) translateY(16px); }
.about__card-stack:hover .about__card--mid   { transform:rotate(-4deg) translateY(8px); }

.about__card-content { padding:36px; width:100%; }
.about__card-label {
  font-size:.78rem; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase;
  color:var(--text-muted); margin-bottom:8px;
}

.about__card-num {
  font-family:var(--font-head);
  font-size:3.5rem; font-weight:800;
  color:var(--text); line-height:1; margin-bottom:24px;
}

.about__card-spark {
  display:flex; align-items:flex-end;
  gap:4px; height:48px; margin-bottom:24px;
}

.about__card-spark div {
  flex:1; background:var(--grad); border-radius:2px; opacity:.7;
  animation:spark 2s ease-in-out infinite;
}

.about__card-spark div:nth-child(1){height:40%;animation-delay:.0s}
.about__card-spark div:nth-child(2){height:65%;animation-delay:.15s}
.about__card-spark div:nth-child(3){height:50%;animation-delay:.3s}
.about__card-spark div:nth-child(4){height:85%;animation-delay:.45s}
.about__card-spark div:nth-child(5){height:70%;animation-delay:.6s}
.about__card-spark div:nth-child(6){height:95%;animation-delay:.75s}
.about__card-spark div:nth-child(7){height:60%;animation-delay:.9s}

@keyframes spark {
  0%,100%{opacity:.4} 50%{opacity:1}
}

.about__card-perc {
  font-family:var(--font-head);
  font-size:2rem; font-weight:800;
  background:var(--grad);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

/* ── 18. CONTACT ────────────────────────────────────────────── */
.contact { background: var(--bg-2); }

.contact__inner {
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:80px; align-items:start;
}

.contact__details {
  display:flex; flex-direction:column;
  gap:16px; margin-top:32px;
}

.contact__detail {
  display:flex; align-items:center;
  gap:12px; font-size:.95rem;
  color:var(--text-muted);
  text-decoration:none;
  transition:color .2s;
}

.contact__detail:hover { color:var(--blue); }

.contact__form {
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:20px;
  padding:40px;
  position:relative;
  box-shadow:var(--shadow-md);
}

.form__row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }

.form__group {
  display:flex; flex-direction:column;
  gap:8px; margin-bottom:20px;
}

.form__group label {
  font-size:.85rem; font-weight:600;
  color:var(--text-muted); letter-spacing:.02em;
}

.form__group input,
.form__group select,
.form__group textarea {
  background:var(--bg-2);
  border:1.5px solid var(--border);
  border-radius:10px;
  padding:14px 16px;
  color:var(--text);
  font-family:var(--font-body);
  font-size:.95rem;
  outline:none;
  transition:border-color .2s, box-shadow .2s, background .2s;
  -webkit-appearance:none; appearance:none;
}

.form__group select {
  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 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 14px center;
  padding-right:40px; cursor:pointer;
}

.form__group select option { background:var(--surface); }

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(29,78,216,.1);
}

[data-theme="dark"] .form__group input:focus,
[data-theme="dark"] .form__group select:focus,
[data-theme="dark"] .form__group textarea:focus {
  box-shadow:0 0 0 3px rgba(56,189,248,.12);
}

.form__group input::placeholder,
.form__group textarea::placeholder { color:var(--text-muted); opacity:.5; }
.form__group textarea { resize:vertical; min-height:120px; }

.form__group--budget { margin-bottom:28px; }

.budget-options { display:flex; gap:8px; flex-wrap:wrap; }
.budget-option { cursor:pointer; }
.budget-option input { display:none; }

.budget-option span {
  display:block;
  background:var(--bg-2);
  border:1.5px solid var(--border);
  border-radius:50px;
  padding:8px 18px;
  font-size:.85rem; color:var(--text-muted);
  font-weight:500;
  transition:border-color .2s, color .2s, background .2s;
  cursor:pointer;
}

.budget-option input:checked+span {
  border-color:var(--blue);
  color:var(--blue);
  background:rgba(29,78,216,.07);
}

.budget-option:hover span { border-color:rgba(29,78,216,.3); color:var(--text); }

.form__privacy {
  text-align:center;
  font-size:.8rem; color:var(--text-muted); margin-top:12px;
}

.form__success[hidden] { display:none !important; }

.form__success {
  position:absolute; inset:0;
  background:var(--surface);
  border-radius:20px;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  gap:16px; text-align:center; padding:40px;
  animation:fadeIn .4s var(--ease-out);
}

.form__success h3 {
  font-family:var(--font-head);
  font-size:1.5rem; font-weight:800; color:var(--text);
}

.form__success p { color:var(--text-muted); font-size:.95rem; }

@keyframes fadeIn {
  from{opacity:0;transform:scale(.96)}
  to{opacity:1;transform:scale(1)}
}

/* ── 19. FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
}

.footer__top {
  display:grid; grid-template-columns:1fr 2fr;
  gap:60px; padding:64px 0;
}

.footer__brand .nav__logo { margin-bottom:16px; }

.footer__brand p {
  font-size:.9rem; color:var(--text-muted);
  line-height:1.6; max-width:280px; margin-bottom:24px;
}

.footer__social { display:flex; gap:8px; }

.footer__social-link {
  width:36px; height:36px;
  border-radius:8px;
  background:var(--surface);
  border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  color:var(--text-muted); text-decoration:none;
  font-size:.85rem; font-weight:600;
  transition:border-color .2s, color .2s, transform .2s;
}

.footer__social-link:hover {
  border-color:var(--blue);
  color:var(--blue);
  transform:translateY(-2px);
}

.footer__links {
  display:grid; grid-template-columns:repeat(3,1fr); gap:32px;
}

.footer__col h4 {
  font-family:var(--font-head);
  font-size:.82rem; font-weight:700;
  color:var(--text); letter-spacing:.06em;
  text-transform:uppercase; margin-bottom:20px;
}

.footer__col a {
  display:block;
  color:var(--text-muted); text-decoration:none;
  font-size:.9rem; margin-bottom:12px;
  transition:color .2s;
}

.footer__col a:hover { color:var(--blue); }

.footer__bottom {
  border-top:1px solid var(--border);
  padding:24px 0;
  display:flex; align-items:center;
  justify-content:space-between;
  gap:16px; flex-wrap:wrap;
}

.footer__bottom p { font-size:.85rem; color:var(--text-muted); }

.footer__legal { display:flex; gap:20px; }

.footer__legal a {
  font-size:.85rem; color:var(--text-muted);
  text-decoration:none; transition:color .2s;
}

.footer__legal a:hover { color:var(--blue); }

/* ── 20. REVEALS (GSAP controls) ────────────────────────────── */
.reveal-up, .reveal-card { will-change:opacity, transform; }

/* ── 21. RESPONSIVE ─────────────────────────────────────────── */
@media (max-width:1024px) {
  .pricing__grid      { grid-template-columns:1fr; max-width:480px; margin-left:auto; margin-right:auto; }
  .pricing-card--featured { transform:scale(1); }
  .pricing-card--featured:hover { transform:translateY(-6px); }
  .services__grid     { grid-template-columns:repeat(2,1fr); }
  .testimonials__grid { grid-template-columns:repeat(2,1fr); }
  .about__inner       { grid-template-columns:1fr; gap:48px; }
  .about__visual      { display:none; }
  .contact__inner     { grid-template-columns:1fr; gap:48px; }
  .work-card          { grid-template-columns:1fr; }
  .work-card:nth-child(even) { direction:ltr; }
  .work-card__visual  { min-height:220px; }
  .process__steps     { gap:16px; }
  .process__connector { display:none; }
  .footer__top        { grid-template-columns:1fr; gap:40px; }
}

@media (max-width:768px) {
  .section { padding:72px 0; }
  .nav__links   { display:none; }
  .nav__controls .nav__cta  { display:none; }
  .nav__burger  { display:flex; }
  .nav__mobile.open { display:flex; }
  .hero__stats  { flex-direction:column; gap:24px; }
  .hero__stat-divider { width:60px; height:1px; }
  .services__grid { grid-template-columns:1fr; }
  .testimonials__grid { grid-template-columns:1fr; }
  .about__values { grid-template-columns:1fr; }
  .form__row     { grid-template-columns:1fr; }
  .audit-cta__inner { padding:48px 28px; }
  .footer__links { grid-template-columns:1fr 1fr; }
  .footer__bottom { flex-direction:column; text-align:center; }
}

@media (max-width:480px) {
  .container { padding:0 16px; }
  .hero__heading { font-size:2.4rem; letter-spacing:-.02em; }
  .hero__actions { flex-direction:column; align-items:center; }
  .btn--lg { padding:14px 24px; font-size:.95rem; }
  .section__title { font-size:1.9rem; }
  .service-card { padding:28px 24px; }
  .work-card__info { padding:28px 24px; }
  .contact__form { padding:28px 20px; }
  .audit-cta__inner { padding:36px 20px; }
  .footer__links { grid-template-columns:1fr; }
}

/* ── 22. SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background:var(--bg); }
::-webkit-scrollbar-thumb { background:var(--border); border-radius:3px; }
::-webkit-scrollbar-thumb:hover { background:rgba(29,78,216,.3); }

/* ── 23. PRINT ──────────────────────────────────────────────── */
@media print {
  .nav, .hero__canvas, .cursor, .cursor-follower,
  .loader, .marquee-section { display:none !important; }
  body { background:#fff; color:#000; }
}

/* ── 24. HERO TWO-COLUMN LAYOUT ─────────────────────────────── */
.hero__text { flex: 1; }

.hero__visual {
  display: none;
}

@media (min-width: 1024px) {
  .hero__content {
    display: flex;
    align-items: center;
    gap: 60px;
    text-align: left;
    padding-top: 100px;
    padding-bottom: 80px;
    min-height: clamp(600px, 80vh, 860px);
  }
  .hero__text { max-width: 590px; }
  .hero__sub { margin-left: 0; }
  .hero__actions { justify-content: flex-start; }
  .hero__stats { justify-content: flex-start; }
  .hero__visual {
    display: block;
    flex: 0 0 420px;
    width: 420px;
    align-self: center;
    contain: layout;
    transform: translateZ(0);
    will-change: transform;
  }
}

/* ── 25. HERO MOCKUP WINDOW ─────────────────────────────────── */
.hero__mockup {
  position: relative;
  animation: mockupFloat 6s ease-in-out infinite;
}

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

.mockup-window {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.06);
  overflow: hidden;
}

.mockup-window__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-dot.red    { background: #ff5f57; }
.mockup-dot.yellow { background: #febc2e; }
.mockup-dot.green  { background: #28c840; }

.mockup-window__url {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  background: var(--bg-3);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: .72rem;
  color: var(--text-muted);
  margin-left: 8px;
}

.mockup-window__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* KPI row */
.mkp-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.mkp-kpi {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
}

.mkp-kpi--accent {
  background: var(--grad);
  border-color: transparent;
}
.mkp-kpi--accent .mkp-kpi__label,
.mkp-kpi--accent .mkp-kpi__val,
.mkp-kpi--accent .mkp-kpi__trend {
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

.mkp-kpi__label {
  font-size: .65rem;
  color: var(--text-muted);
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.mkp-kpi__val {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.mkp-kpi__trend {
  font-size: .62rem;
  color: #22c55e;
  margin-top: 3px;
}

/* Chart */
.mkp-chart__label {
  font-size: .68rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mkp-chart__bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
}

.mkp-bar {
  flex: 1;
  height: var(--h);
  background: var(--bg-3);
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: background .3s;
}

.mkp-bar span {
  display: block;
  font-size: .55rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.mkp-bar--active {
  background: var(--grad);
}

/* Activity feed */
.mkp-feed { display: flex; flex-direction: column; gap: 8px; padding-top: 4px; }

.mkp-feed__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mkp-feed__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mkp-feed__dot--blue { background: var(--blue); }
.mkp-feed__dot--teal { background: var(--teal); }

.mkp-feed__lines { flex: 1; display: flex; flex-direction: column; gap: 3px; }

.mkp-feed__line {
  height: 6px;
  background: var(--bg-3);
  border-radius: 3px;
}

.mkp-feed__tag {
  font-size: .6rem;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 10px;
  background: var(--bg-2);
  color: var(--blue);
  border: 1px solid var(--border);
  letter-spacing: .03em;
}

/* Floating badges */
.mockup-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 12px 6px 8px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  white-space: nowrap;
  animation: mockupFloat 6s ease-in-out infinite;
}

.mockup-float--tl {
  top: -16px;
  left: -16px;
  animation-delay: -3s;
}
.mockup-float--br {
  bottom: -16px;
  right: -16px;
  animation-delay: -1.5s;
}

/* ── 26. ABOUT SCENE ─────────────────────────────────────────── */
.about__scene {
  position: relative;
}

.about__skyline {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #e0f2fe 0%, #bfdbfe 60%, #dbeafe 100%);
  padding: 24px 0 0;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}

[data-theme="dark"] .about__skyline {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 60%, #0f172a 100%);
}

.skyline-svg {
  width: 100%;
  height: auto;
  display: block;
}

.about__card-stack {
  position: absolute;
  bottom: 40px;
  right: -20px;
}

@media (max-width: 1023px) {
  .about__card-stack {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 16px;
  }
}
