/* ============================================================
   EXPERT LOCAL — Design System
   Brand: #0F0F0F dark + #4ECDB8 mint teal
   Typography: Inter Tight (headings) + Inter (body)
   Style: Trust & Authority + Minimalism + Full Dark
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Inter+Tight:wght@600;700;800;900&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  /* Colors — Full Dark Mode with Mint Accent
     Single canvas: #0F0F0F base, cards elevate to #191919 */
  --color-brand-dark: #0F0F0F;
  --color-brand-teal: #4ECDB8;
  --color-teal-light: #6FD9C7;
  --color-teal-dim: #3AA89A;
  --color-hero-bg: #0F0F0F;
  --color-hero-mid: #1C2523;
  --color-dark-strip: #0F0F0F;
  --color-white: #FFFFFF;
  --color-bg: #0F0F0F;
  --color-bg-soft: #0F0F0F;
  --color-surface: #191919;
  --color-text: #E8E8E8;
  --color-text-muted: #9CA3AF;
  --color-text-light: #6B7280;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-dark: rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-heading: 'Inter Tight', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

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

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

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows & Glassmorphism */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3), 0 2px 6px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-teal: 0 4px 20px rgba(78, 205, 184, 0.25);
  --shadow-glow: 0 0 40px rgba(78, 205, 184, 0.15);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: blur(24px);

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration: 300ms;

  /* Layout */
  --container: 1200px;
  --topbar-h: 40px;
  --nav-h: 72px;
  --total-header: calc(var(--topbar-h) + var(--nav-h));
}

/* Gradient text accent */
.gradient-text {
  background: linear-gradient(135deg, #4ECDB8, #6FD9C7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Trust strip — below hero */
.trust-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(20, 24, 28, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
.trust-strip__stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.trust-strip > .container {
  position: relative;
  z-index: 1;
}
.trust-strip__inner {
  display: flex;
  justify-content: space-evenly;
  gap: var(--space-8);
  padding: var(--space-6) 0;
  flex-wrap: wrap;
}
.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 640px) {
  .trust-strip__inner {
    justify-content: center;
    gap: var(--space-5);
  }
}

/* ============================================================
   TOP CONTACT BAR
   ============================================================ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  height: var(--topbar-h);
  background: var(--color-bg);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(78, 205, 184, 0.15);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
  width: 100%;
}

.topbar__trust {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.topbar__trust-icon {
  flex-shrink: 0;
  opacity: 0.7;
}

.topbar__contacts {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.topbar__contact {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  transition: color var(--duration);
  white-space: nowrap;
  cursor: pointer;
}

.topbar__contact svg {
  flex-shrink: 0;
}

.topbar__contact:hover {
  color: #fff;
}

.topbar__divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 640px) {
  .topbar__trust {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
    gap: var(--space-4);
  }

  .topbar__divider {
    display: none;
  }

  .topbar__contact span {
    display: none;
  }
}

/* ============================================================
   MOBILE STICKY CALL BUTTON
   ============================================================ */
.mobile-cta-sticky {
  display: none;
  position: fixed;
  bottom: var(--space-5);
  left: 50%;
  transform: translateX(-50%);
  z-index: 98;
  white-space: nowrap;
  box-shadow: 0 6px 24px rgba(78, 205, 184, 0.45);
}

@media (max-width: 768px) {
  .mobile-cta-sticky {
    display: inline-flex;
  }
}


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

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

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

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  .container {
    padding: 0 var(--space-4);
  }
}

.section {
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
}

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

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

/* Section divider — green gradient line between sections */
.section-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 184, 0.2), transparent);
  margin: 0;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background var(--duration) var(--ease),
    padding var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    backdrop-filter var(--duration) var(--ease);
}

.navbar.scrolled {
  background: rgba(15, 15, 15, 0.88);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(78, 205, 184, 0.2);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

.navbar__logo svg {
  height: 38px;
  width: auto;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.navbar__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--duration);
  padding: var(--space-2) 0;
  position: relative;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--color-brand-teal);
  transform: scaleX(0);
  transition: transform var(--duration) var(--ease);
}

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

.navbar__link:hover::after {
  transform: scaleX(1);
}

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

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  transition: all var(--duration);
  cursor: pointer;
}

.lang-btn.active {
  background: var(--color-brand-teal);
  color: white;
}

.lang-btn:hover:not(.active) {
  color: rgba(255, 255, 255, 0.9);
}

/* Mobile menu toggle */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  transition: all var(--duration);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}

.btn--primary {
  background: var(--color-brand-teal);
  color: #0F0F0F;
  border-color: var(--color-brand-teal);
  box-shadow: var(--shadow-teal);
}

.btn--primary:hover {
  background: var(--color-teal-light);
  border-color: var(--color-teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(78, 205, 184, 0.4);
}

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

.btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn--ghost:hover {
  background: transparent;
  border-color: var(--color-accent, #4ecdb8);
  color: var(--color-accent, #4ecdb8);
}

.btn--ghost-copper {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn--ghost-copper:hover {
  background: transparent;
  border-color: #B86B3A;
  color: #B86B3A;
}

.btn--outline {
  background: transparent;
  color: var(--color-brand-teal);
  border-color: var(--color-brand-teal);
}

.btn--outline:hover {
  background: var(--color-brand-teal);
  color: white;
  transform: translateY(-1px);
}

.btn--lg {
  font-size: var(--text-base);
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-md);
}

.btn--dark {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-color: rgba(255, 255, 255, 0.15);
}

.btn--dark:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + var(--space-16)) 0 calc(var(--space-12) + 60px);
  background: var(--color-hero-bg);
  overflow: hidden;
}

/* Starfield canvas */
.hero__stars {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Nebula glow */
.hero__nebula {
  position: absolute;
  top: 15%;
  right: -5%;
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at 60% 40%,
    rgba(78,205,184,0.12) 0%,
    rgba(78,205,184,0.05) 30%,
    rgba(30,100,120,0.03) 50%,
    transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
  animation: nebulaPulse 14s ease-in-out infinite alternate;
}

.hero__nebula--warm {
  top: 50%;
  right: auto;
  left: -10%;
  width: 600px;
  height: 500px;
  background: radial-gradient(ellipse at 40% 60%,
    rgba(78,205,184,0.06) 0%,
    rgba(50,120,140,0.03) 40%,
    transparent 65%);
  animation-delay: 4s;
}

@keyframes nebulaPulse {
  0%   { opacity: 0.7; transform: scale(1) translateY(0); }
  100% { opacity: 1; transform: scale(1.05) translateY(-10px); }
}

/* Harness-style nebula glow — single centered radial behind content */
.hero__nebula-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse at 40% 40%, rgba(78,205,184,0.1) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 60%, rgba(78,205,184,0.06) 0%, transparent 40%);
  z-index: 0;
  animation: nebulaPulse 14s ease-in-out infinite;
  pointer-events: none;
}

/* Hero title accent — teal gradient text */
.hero__title-accent {
  background: linear-gradient(135deg, var(--color-brand-teal), var(--color-teal-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Aurora glow behind hero text */
.hero__aurora {
  position: absolute;
  top: 15%;
  left: 10%;
  width: 600px;
  height: 400px;
  z-index: 2;
  pointer-events: none;
}

.hero__aurora-band {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(78,205,184,0.14) 0%,
    rgba(78,205,184,0.08) 25%,
    rgba(60,180,160,0.04) 50%,
    transparent 70%);
  filter: blur(40px);
  animation: auroraWave1 12s ease-in-out infinite alternate;
  border-radius: 50%;
}

.hero__aurora-band:nth-child(2) {
  width: 90%;
  left: 10%;
  top: -5%;
  background: radial-gradient(ellipse at 45% 55%,
    rgba(100,220,200,0.12) 0%,
    rgba(78,205,184,0.06) 30%,
    rgba(60,180,160,0.02) 55%,
    transparent 70%);
  filter: blur(45px);
  animation: auroraWave2 15s ease-in-out infinite alternate;
  animation-delay: 3s;
}

.hero__aurora-band:nth-child(3) {
  width: 70%;
  left: 20%;
  top: -10%;
  background: radial-gradient(ellipse at 55% 45%,
    rgba(50,200,170,0.16) 0%,
    rgba(78,205,184,0.07) 30%,
    rgba(40,160,140,0.02) 55%,
    transparent 70%);
  filter: blur(50px);
  animation: auroraWave3 18s ease-in-out infinite alternate;
  animation-delay: 6s;
}

@keyframes auroraWave1 {
  0%   { transform: translateX(0) scaleY(1) rotate(-2deg); opacity: 0.7; }
  50%  { transform: translateX(20px) scaleY(1.15) rotate(0deg); opacity: 1; }
  100% { transform: translateX(-15px) scaleY(0.9) rotate(2deg); opacity: 0.8; }
}
@keyframes auroraWave2 {
  0%   { transform: translateX(10px) scaleY(1.1) rotate(1deg); opacity: 0.6; }
  50%  { transform: translateX(-20px) scaleY(0.85) rotate(-1deg); opacity: 0.9; }
  100% { transform: translateX(15px) scaleY(1.05) rotate(2deg); opacity: 0.7; }
}
@keyframes auroraWave3 {
  0%   { transform: translateX(-10px) scaleY(0.95) rotate(-1deg); opacity: 0.5; }
  50%  { transform: translateX(25px) scaleY(1.2) rotate(1deg); opacity: 0.85; }
  100% { transform: translateX(-5px) scaleY(1) rotate(0deg); opacity: 0.65; }
}

/* Animated grid background */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
  z-index: 1;
}

/* Shooting stars */
.shooting-star {
  position: absolute;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, rgba(78,205,184,0.45), transparent);
  opacity: 0;
  z-index: 2;
  animation: shoot 6s ease-in-out infinite;
}
.shooting-star:nth-child(5) { top: 15%; left: 20%; transform: rotate(-25deg); animation-delay: 4s; }
.shooting-star:nth-child(6) { top: 35%; left: 60%; transform: rotate(-30deg); animation-delay: 10s; width: 60px; }
.shooting-star:nth-child(7) { top: 55%; left: 10%; transform: rotate(-20deg); animation-delay: 17s; width: 50px; }

@keyframes shoot {
  0%   { opacity: 0; transform: translateX(0) rotate(-25deg); }
  3%   { opacity: 0.8; }
  12%  { opacity: 0; transform: translateX(250px) rotate(-25deg); }
  100% { opacity: 0; }
}

/* Two-column hero layout */
.hero__inner--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.hero__content {
  display: flex;
  flex-direction: column;
}

.hero__inner--2col .hero__badge {
  margin-left: 0;
  margin-right: auto;
}

.hero__inner--2col .hero__sub {
  margin-left: 0;
  margin-right: 0;
  max-width: 520px;
}

.hero__inner--2col .hero__trust {
  justify-content: flex-start;
}

.hero__inner--2col .hero__actions {
  justify-content: flex-start;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  width: fit-content;
  background: rgba(78, 205, 184, 0.15);
  border: 1px solid rgba(78, 205, 184, 0.35);
  color: #4ECDB8;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-8);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: #4ECDB8;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero__title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-8);
  max-width: 1000px;
}

.hero__title .text-accent,
.hero__title .hero__title-accent {
  color: var(--color-brand-teal);
  text-shadow: 0 0 50px rgba(78, 205, 184, 0.35);
  position: relative;
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 680px;
  margin: 0 auto var(--space-6);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  margin-bottom: var(--space-3);
  position: relative;
  z-index: 2;
}

.hero__micro-copy {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-bottom: var(--space-12);
}

.hero__trust {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
}

/* Two-column hero overrides */
.hero__inner--2col .hero__trust {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: fit-content;
}

.hero__inner--2col .hero__title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.45);
  width: fit-content;
}

.hero__inner--2col .hero__trust-item {
  width: auto;
}

.hero__trust-item svg {
  color: var(--color-brand-teal);
  flex-shrink: 0;
}

/* ===== HERO DASHBOARD MOCKUP ===== */
.hero__visual {
  position: relative;
  perspective: 1200px;
}

.dashboard {
  position: relative;
  background: rgba(20,24,28,0.85);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-teal), 0 20px 60px rgba(0,0,0,0.4);
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
  animation: dashFloat 10s ease-in-out infinite alternate;
  transition: transform 400ms var(--ease);
}
.dashboard:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

@keyframes dashFloat {
  0%   { transform: rotateY(-4deg) rotateX(2deg) translateY(0); }
  100% { transform: rotateY(-3deg) rotateX(1deg) translateY(-8px); }
}

.dashboard__topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.dashboard__dot { width: 10px; height: 10px; border-radius: 50%; }
.dashboard__dot--red { background: #FF5F56; }
.dashboard__dot--yellow { background: #FFBD2E; }
.dashboard__dot--green { background: #27C93F; }

.dashboard__topbar-title {
  margin-left: 12px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

.dashboard__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 18px;
}

.metric-card__label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.metric-card__value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
}

.metric-card__change { font-size: 0.72rem; font-weight: 600; margin-top: 6px; }
.metric-card__change--up { color: #27C93F; }
.metric-card__change--teal { color: var(--color-brand-teal); }

.chart-card {
  grid-column: 1 / -1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px;
}

.chart-card__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.chart-card__title { font-size: 0.78rem; color: rgba(255,255,255,0.5); font-weight: 500; }
.chart-card__period { font-size: 0.68rem; color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); padding: 4px 10px; border-radius: 6px; }

.chart-svg { width: 100%; height: 160px; }

.kw-card {
  grid-column: 1 / -1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 18px;
}

.kw-card__title { font-size: 0.72rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }

.kw-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.kw-row:last-child { border-bottom: none; }
.kw-row__term { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.kw-row__pos { display: flex; align-items: center; gap: 6px; }
.kw-row__rank { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; color: var(--color-white); background: rgba(78,205,184,0.15); padding: 3px 10px; border-radius: 6px; min-width: 36px; text-align: center; }
.kw-row__arrow { color: #27C93F; font-size: 0.7rem; }

/* Floating badges */
.hero__float-badge {
  position: absolute;
  background: rgba(20,24,28,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 14px 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  z-index: 20;
  animation: floatBadge 8s ease-in-out infinite alternate;
}

/* Legacy traffic/score badges removed — now using --position and --seo-score */

@keyframes floatBadge {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

.float-badge__label { font-size: 0.65rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.float-badge__value { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; display: flex; align-items: center; gap: 6px; }
.float-badge__value--green { color: #27C93F; }
.float-badge__value--teal { color: var(--color-brand-teal); }

/* ===== SERVICE PAGE MOCKUPS (code editor, search result, workflow, ad card) ===== */

/* Code Editor Mockup (Web page) */
.code-editor {
  position: relative;
  background: rgba(20,24,28,0.85);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-teal), 0 20px 60px rgba(0,0,0,0.4);
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
  animation: dashFloat 10s ease-in-out infinite alternate;
  transition: transform 400ms var(--ease);
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  line-height: 1.7;
}

.code-editor__body { padding: 20px 24px; }
.code-editor .code-tag { color: #4ECDB8; }
.code-editor .code-attr { color: #FFBD2E; }
.code-editor .code-val { color: #87CEEB; }
.code-editor .code-comment { color: rgba(255,255,255,0.25); font-style: italic; }
.code-editor .code-text { color: rgba(255,255,255,0.7); }
.code-editor .code-line { display: block; padding-left: 2em; text-indent: -0.5em; }
.code-editor .code-indent { padding-left: 3.5em; }
.code-editor .code-indent2 { padding-left: 5em; }

/* Google Search Result Mockup (SEO page) */
.search-result {
  position: relative;
  background: rgba(20,24,28,0.85);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-teal), 0 20px 60px rgba(0,0,0,0.4);
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
  animation: dashFloat 10s ease-in-out infinite alternate;
  transition: transform 400ms var(--ease);
  padding: 28px;
}

.search-result__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  padding: 10px 20px;
  margin-bottom: 28px;
}

.search-result__bar-icon { color: rgba(255,255,255,0.3); flex-shrink: 0; }
.search-result__bar-text { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

.search-result__item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.search-result__item:last-child { border-bottom: none; }

.search-result__item--featured {
  background: rgba(78,205,184,0.05);
  border: 1px solid rgba(78,205,184,0.15);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 8px;
}

.search-result__url { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.search-result__title { font-size: 1.05rem; font-weight: 600; color: #87CEEB; margin-bottom: 6px; }
.search-result__desc { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.5; }
.search-result__stars { color: #FFBD2E; font-size: 0.75rem; margin-top: 6px; }
.search-result__pos {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-brand-teal);
  background: rgba(78,205,184,0.12);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
}

/* Workflow Mockup (Automation page) */
.workflow-mockup {
  position: relative;
  background: rgba(20,24,28,0.85);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-teal), 0 20px 60px rgba(0,0,0,0.4);
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
  animation: dashFloat 10s ease-in-out infinite alternate;
  transition: transform 400ms var(--ease);
  padding: 28px;
}

.workflow-mockup__title {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  text-align: center;
}

.workflow-nodes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.wf-node {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 20px;
  width: 100%;
  max-width: 320px;
  transition: border-color 0.3s;
}

.wf-node--active {
  border-color: rgba(78,205,184,0.4);
  background: rgba(78,205,184,0.06);
}

.wf-node__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wf-node__icon--trigger { background: rgba(78,205,184,0.2); color: var(--color-brand-teal); }
.wf-node__icon--process { background: rgba(135,206,235,0.2); color: #87CEEB; }
.wf-node__icon--action { background: rgba(39,201,63,0.2); color: #27C93F; }
.wf-node__icon--notify { background: rgba(255,189,46,0.2); color: #FFBD2E; }

.wf-node__text { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.wf-node__label { font-size: 0.65rem; color: rgba(255,255,255,0.35); margin-top: 2px; }

.wf-connector {
  width: 2px;
  height: 16px;
  background: rgba(78,205,184,0.3);
  position: relative;
}

.wf-connector::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(78,205,184,0.4);
}

/* Ad Performance Mockup (Ads page) */
.ad-mockup {
  position: relative;
  background: rgba(20,24,28,0.85);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-teal), 0 20px 60px rgba(0,0,0,0.4);
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
  animation: dashFloat 10s ease-in-out infinite alternate;
  transition: transform 400ms var(--ease);
}

.ad-mockup__body {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ad-mockup__preview {
  grid-column: 1 / -1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 18px;
}

.ad-mockup__preview-label {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ad-mockup__preview-label span { color: #FFBD2E; font-weight: 700; }

.ad-mockup__preview-title { font-size: 1rem; color: #87CEEB; font-weight: 600; margin-bottom: 4px; }
.ad-mockup__preview-url { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
.ad-mockup__preview-desc { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* Audit Score Gauge */
.audit-gauge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.audit-gauge__circle {
  position: relative;
  width: 160px;
  height: 160px;
}

.audit-gauge__circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.audit-gauge__track { fill: none; stroke: rgba(255,255,255,0.06); stroke-width: 8; }
.audit-gauge__fill { fill: none; stroke: var(--color-brand-teal); stroke-width: 8; stroke-linecap: round; stroke-dasharray: 440; stroke-dashoffset: 440; transition: stroke-dashoffset 2s ease; }
.audit-gauge__fill.animated { stroke-dashoffset: 44; }

.audit-gauge__value {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-white);
}

.audit-gauge__label { font-size: 0.65rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; }

/* Terminal Mockup (Tech page) */
.terminal-mockup {
  position: relative;
  background: rgba(12,16,20,0.95);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 60px rgba(0,0,0,0.5), 0 0 80px rgba(78,205,184,0.06), inset 0 1px 0 rgba(255,255,255,0.05);
  transform: rotateY(-4deg) rotateX(2deg);
  animation: dashFloat 10s ease-in-out infinite alternate;
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  line-height: 1.8;
}

.terminal-mockup__body { padding: 20px 24px; }
.terminal-mockup .t-prompt { color: var(--color-brand-teal); }
.terminal-mockup .t-cmd { color: var(--color-white); }
.terminal-mockup .t-output { color: rgba(255,255,255,0.5); }
.terminal-mockup .t-success { color: #27C93F; }
.terminal-mockup .t-warn { color: #FFBD2E; }
.terminal-mockup .t-line { display: block; }

/* Shared mockup responsive */
@media (max-width: 768px) {
  .code-editor, .search-result, .workflow-mockup, .ad-mockup, .terminal-mockup {
    transform: none;
    animation: dashFloatMobile 10s ease-in-out infinite alternate;
  }
  .ad-mockup__body { grid-template-columns: 1fr; }
}

.v2-glass-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-size: var(--text-sm);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

.v2-glass-badge svg {
  color: var(--color-brand-teal);
  flex-shrink: 0;
}

/* Smaller variant for compact trust badges */
.v2-glass-badge--sm {
  padding: var(--space-2) var(--space-3);
  font-size: 0.7rem;
}
.v2-glass-badge--sm svg {
  width: 12px;
  height: 12px;
}

/* Compact trust row — 4 badges in 2x2 grid below CTAs */
.hero__trust--compact {
  display: inline-grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: var(--space-4);
  margin-bottom: 0;
  width: fit-content;
}
.hero__trust--compact .hero__trust-item {
  font-size: 0.7rem;
  white-space: nowrap;
}

/* Dashboard live badge */
.dashboard__live-badge {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6rem;
  font-weight: 600;
  color: #4ECDB8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(78,205,184,0.1);
  border: 1px solid rgba(78,205,184,0.25);
  border-radius: var(--radius-full);
  padding: 2px 10px;
}
.dashboard__live-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ECDB8;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Dashboard metrics row — 3 columns */
.dashboard__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.dashboard__metrics .metric-card {
  text-align: center;
  padding: 14px 8px;
}
.dashboard__metrics .metric-card__value {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 4px;
}
.dashboard__metrics .metric-card__label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Chart pulse animation on endpoint dot */
.chart-pulse {
  animation: chartPulseAnim 2s ease-in-out infinite;
}
@keyframes chartPulseAnim {
  0%, 100% { stroke-width: 8; stroke-opacity: 0.3; }
  50% { stroke-width: 14; stroke-opacity: 0.1; }
}

/* Repositioned floating badges for harness style */
.hero__float-badge--position {
  top: -10px;
  right: -15px;
  animation-delay: 1s;
}
.hero__float-badge--seo-score {
  bottom: -16px;
  left: -20px;
  animation-delay: 2.5s;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--color-bg);
  padding: var(--space-8) 0;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-4);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item__value {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-item__value span {
  color: var(--color-brand-teal);
}

.stat-item__label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}

/* ============================================================
   WHY US — BENTO CARDS
   ============================================================ */
.why-us {
  background: var(--color-bg-soft);
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brand-teal);
  margin-bottom: var(--space-4);
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  height: 1px;
  width: 28px;
  background: var(--color-brand-teal);
  opacity: 0.5;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, var(--text-5xl));
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.15;
  margin-bottom: var(--space-4);
}

.section-title--light {
  color: var(--color-white);
}

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

.section-desc--light {
  color: rgba(255, 255, 255, 0.6);
}

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

.bento-grid--2x2 {
  grid-template-columns: repeat(2, 1fr);
}

.bento-card {
  background: var(--color-surface);
  border: none;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), var(--shadow-sm);
  transition: transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-brand-teal), transparent);
  opacity: 0;
  transition: opacity var(--duration);
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1px rgba(78, 205, 184, 0.3), var(--shadow-lg), var(--shadow-glow);
}

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

.bento-card__number {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 900;
  color: rgba(78, 205, 184, 0.08);
  line-height: 1;
  margin-bottom: var(--space-4);
  user-select: none;
}

.bento-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(78, 205, 184, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--color-brand-teal);
}

.bento-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.bento-card__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* Blog preview card */
.blog-card {
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(78, 205, 184, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), var(--shadow-glow);
}
.blog-card__image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center 45%;
  display: block;
  transform: scale(1.1);
}
.blog-card__body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card__tag {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-brand-teal);
  margin-bottom: var(--space-2);
}
.blog-card__title {
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: var(--space-3);
}
.blog-card__excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-8);
}
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.service-card {
  background: var(--color-surface);
  border: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), var(--shadow-sm);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all var(--duration) var(--ease);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1px rgba(78, 205, 184, 0.3), var(--shadow-lg), var(--shadow-glow);
}

.service-card__icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(78, 205, 184, 0.12), rgba(78, 205, 184, 0.06));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  color: var(--color-brand-teal);
  transition: background var(--duration);
}

.service-card:hover .service-card__icon-wrap {
  background: linear-gradient(135deg, rgba(78, 205, 184, 0.22), rgba(78, 205, 184, 0.12));
  box-shadow: 0 0 20px rgba(78, 205, 184, 0.3);
}

.service-card__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brand-teal);
  margin-bottom: var(--space-3);
}

.service-card__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.service-card__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--space-6);
}

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.service-card__feat {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.service-card__feat svg {
  color: var(--color-brand-teal);
  flex-shrink: 0;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-brand-teal);
  margin-top: auto;
  transition: gap var(--duration);
}

.service-card:hover .service-card__link {
  gap: var(--space-3);
}

/* ============================================================
   PROCESS / STEPS
   ============================================================ */
.process {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, transparent 5%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.5) 70%, transparent 95%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 5%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.5) 70%, transparent 95%);
  pointer-events: none;
}

.process__inner {
  position: relative;
  z-index: 1;
}

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

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--color-brand-teal) 0%, rgba(78, 205, 184, 0.2) 50%, var(--color-brand-teal) 100%);
  z-index: 0;
}

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

.step-card__num {
  width: 56px;
  height: 56px;
  background: var(--color-brand-teal);
  border: 3px solid rgba(78, 205, 184, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 800;
  color: white;
  margin: 0 auto var(--space-6);
  position: relative;
  box-shadow: 0 0 24px rgba(78, 205, 184, 0.3);
}

.step-card__num::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(78, 205, 184, 0.2);
}

.step-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.step-card__desc {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* ============================================================
   PAIN POINTS
   ============================================================ */
.pain-points {
  background: var(--color-bg);
}

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

.pain-col__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #EF4444;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}

.pain-col__title {
  font-size: clamp(1.5rem, 2.8vw, var(--text-4xl));
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: var(--space-5);
}

.pain-col__desc {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  transition: all var(--duration);
}

.pain-item:hover {
  border-color: var(--color-brand-teal);
  background: rgba(78, 205, 184, 0.04);
}

.pain-item__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.pain-item__icon--red {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
}

.pain-item__icon--teal {
  background: rgba(78, 205, 184, 0.1);
  color: var(--color-brand-teal);
}

.pain-item:hover .pain-item__icon--red {
  background: rgba(78, 205, 184, 0.15);
  color: var(--color-brand-teal);
  box-shadow: 0 0 16px rgba(78, 205, 184, 0.2);
}

.pain-item__text strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}

.pain-item__text span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* Pain Points v2 - 2x2 grid */
.pain-points-v2 { padding: var(--space-24) 0; position: relative; overflow: hidden; }
.pain-points__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-5); margin-top: var(--space-12); }
.pain-points__card {
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  transition: all var(--duration) var(--ease);
}
.pain-points__card:hover {
  border-color: rgba(78, 205, 184, 0.3);
  transform: translateY(-2px);
}
.pain-points__card:hover .pain-points__icon {
  background: rgba(78, 205, 184, 0.15);
  color: var(--color-brand-teal);
}
.pain-points__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(239, 68, 68, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  transition: all var(--duration) var(--ease);
}
.pain-points__text {
  font-size: 1.0625rem;
  color: var(--color-text);
  line-height: 1.5;
  font-weight: 500;
}
@media (min-width: 768px) {
  .pain-points__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   SCORECARD / LEAD FORM SECTION
   ============================================================ */
.scorecard {
  background: var(--color-bg);
  position: relative;
}

.scorecard::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(78, 205, 184, 0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.scorecard__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.scorecard__title {
  font-size: clamp(1.75rem, 3vw, var(--text-5xl));
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: var(--space-5);
}

.scorecard__title span {
  color: var(--color-brand-teal);
}

.scorecard__desc {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

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

.scorecard__bullet {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
}

.scorecard__bullet svg {
  color: var(--color-brand-teal);
  flex-shrink: 0;
}

/* Lead Form */
.lead-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  backdrop-filter: blur(8px);
}

.lead-form__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-2);
}

.lead-form__sub {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: var(--space-6);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: white;
  transition: border-color var(--duration), background var(--duration);
  outline: none;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.form-input:focus {
  border-color: var(--color-brand-teal);
  background: rgba(78, 205, 184, 0.08);
}

.form-hint {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.3);
}

.lead-form__submit {
  width: 100%;
  margin-top: var(--space-2);
  justify-content: center;
}

.form-privacy {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  line-height: 1.5;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--color-bg-soft);
}

.faq__grid {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--duration);
}

.faq-item:hover {
  border-color: rgba(78, 205, 184, 0.3);
}

.faq-item.open {
  border-color: var(--color-brand-teal);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  background: none;
  transition: color var(--duration);
}

.faq-item.open .faq-item__trigger {
  color: var(--color-brand-teal);
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--color-bg-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--duration);
}

.faq-item.open .faq-item__icon {
  background: rgba(78, 205, 184, 0.1);
  color: var(--color-brand-teal);
  transform: rotate(45deg);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms var(--ease);
}

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

.faq-item__content {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   FAQ v2 - Harness style
   ============================================================ */
.faq-v2 { padding: var(--space-24) 0; }
.faq__list {
  max-width: 780px;
  margin: var(--space-12) auto 0;
}
.faq__item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
  overflow: hidden;
  transition: border-color var(--duration) var(--ease);
}
.faq__item.is-open {
  border-color: var(--color-brand-teal);
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-text);
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color var(--duration) var(--ease);
}
.faq__question:hover { color: var(--color-brand-teal); }
.faq__toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(78, 205, 184, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-teal);
  transition: transform var(--duration) var(--ease);
}
.faq__item.is-open .faq__toggle { transform: rotate(45deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease);
}
.faq__answer-inner {
  padding: 0 var(--space-6) var(--space-5);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: var(--space-24) 0;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
}

.final-cta__title {
  font-size: clamp(1.75rem, 3vw, var(--text-5xl));
  font-weight: 800;
  color: white;
  margin-bottom: var(--space-4);
}

.final-cta__desc {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-10);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.btn--white {
  background: var(--color-brand-teal);
  color: #0F0F0F;
  border-color: var(--color-brand-teal);
  font-weight: 700;
}

.btn--white:hover {
  background: var(--color-teal-light);
  border-color: var(--color-teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(78, 205, 184, 0.3);
}

.btn--white-outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--white-outline:hover {
  background: transparent;
  border-color: var(--color-accent, #4ecdb8);
  color: var(--color-accent, #4ecdb8);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0A0A0A;
  padding: var(--space-16) 0 var(--space-8);
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(78, 205, 184, 0.35), transparent) 1;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer__brand-logo {
  margin-bottom: var(--space-4);
}

.footer__description {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin-bottom: var(--space-6);
  max-width: 280px;
}

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

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.45);
  transition: background var(--duration), color var(--duration);
}

.footer__social-link:hover {
  background: rgba(78, 205, 184, 0.15);
  color: var(--color-brand-teal);
}

.footer__col-title {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: var(--space-5);
}

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

.footer__link {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--duration);
}

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

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  gap: var(--space-2);
}

.footer__copy {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.3);
}

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

.footer__legal a {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--duration);
}

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

.footer__separator {
  color: var(--color-brand-teal);
  font-size: var(--text-xs);
  opacity: 0.5;
  margin: 0 var(--space-2);
}



/* Subtle CTA pulse */
@keyframes cta-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(78, 205, 184, 0); }
  50% { box-shadow: 0 0 0 6px rgba(78, 205, 184, 0.12); }
}

.navbar__cta-desktop {
  animation: cta-glow 3s ease-in-out infinite;
}

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(15, 15, 15, 0.98);
  backdrop-filter: blur(20px);
  padding: calc(var(--total-header) + var(--space-8)) var(--space-6) var(--space-8);
  flex-direction: column;
  overflow-y: auto;
}

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

.mobile-nav__link {
  display: block;
  width: 100%;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color var(--duration);
}

.mobile-nav__link:hover {
  color: var(--color-brand-teal);
}

.mobile-nav__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   Gated behind html.js-loaded so content stays visible if JS fails
   ============================================================ */
html.js-loaded .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}

html.js-loaded .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

.reveal-delay-3 {
  transition-delay: 300ms;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  position: relative;
  padding: var(--space-10) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(20, 24, 28, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
.stats-strip__stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.stats-strip > .container {
  position: relative;
  z-index: 1;
}
.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  text-align: center;
}
.stats-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stats-strip__num-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.stats-strip__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-brand-teal);
  line-height: 1;
}
.stats-strip__suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--color-brand-teal);
  line-height: 1;
  margin-left: 2px;
}
.stats-strip__label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
  margin-top: 4px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  backdrop-filter: blur(12px);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(78, 205, 184, 0.2);
  box-shadow: 0 8px 32px rgba(78, 205, 184, 0.1), var(--shadow-glow);
}
.testimonial-card__stars {
  display: flex;
  gap: 2px;
  color: #F5B731;
}
.testimonial-card__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}
.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(78,205,184,0.15);
  color: var(--color-brand-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 600;
  color: var(--color-white);
  font-size: var(--text-sm);
}
.testimonial-card__role {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

@media (prefers-reduced-motion: reduce) {
  html.js-loaded .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .stats-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .pain-grid {
    gap: var(--space-10);
  }

  .scorecard__inner {
    gap: var(--space-10);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
  }

  .navbar__nav {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar__cta-desktop {
    display: none;
  }

  .stats-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .hero__inner {
    padding: var(--space-20) var(--space-4) var(--space-16);
  }

  .hero__inner--2col {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }

  .hero__inner--2col .hero__sub { margin-left: auto; margin-right: auto; margin-bottom: var(--space-6); }
  .hero__inner--2col .hero__trust {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .hero__trust--compact {
    flex-wrap: wrap !important;
    justify-content: center;
    gap: 6px;
  }
  .hero__trust--compact .hero__trust-item {
    font-size: 0.6rem;
  }
  .hero__inner--2col .hero__actions { justify-content: center; }

  .hero__visual { max-width: 500px; margin: 0 auto; }
  .dashboard { transform: none; animation: dashFloatMobile 10s ease-in-out infinite alternate; }
  .hero__float-badge--position { right: 0; top: -10px; }
  .hero__float-badge--seo-score { left: 0; bottom: 20px; }
  .dashboard__metrics { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .dashboard__metrics .metric-card__value { font-size: 1rem; }
  .dashboard__metrics .metric-card__label { font-size: 0.5rem; }

  .hero__watermark {
    display: none;
  }

  .stats-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .stat-item:nth-child(4) {
    border-right: none;
  }

  .bento-grid,
  .bento-grid--2x2 {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .steps-grid::before {
    display: none;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .scorecard__inner {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@keyframes dashFloatMobile {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-5px); }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .dashboard__body { grid-template-columns: 1fr; padding: 16px; }
  .hero__float-badge { display: none; }
  .metric-card__value { font-size: 1.3rem; }
  .hero__title { font-size: clamp(2rem, 8vw, 2.8rem); }

  .final-cta__actions {
    flex-direction: column;
  }

  .final-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .stats-strip__inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   COOKIE CONSENT BANNER (custom — no third-party, zero cost)
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0F0F0F;
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.5);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 260px;
}

.cookie-banner__title {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.cookie-banner__desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  margin: 0;
}

.cookie-banner__desc a {
  color: #4ECDB8;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.cookie-btn--accept {
  background: #4ECDB8;
  color: #fff;
}

.cookie-btn--accept:hover {
  background: #6FD9C7;
}

.cookie-btn--decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn--decline:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 640px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}

/* ============================================================
   NAVBAR DROPDOWN
   ============================================================ */
.navbar__dropdown-wrap {
  position: relative;
}

.navbar__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ============================================================
   V2 ANIMATIONS & MOTION
   Gated behind html.js-loaded so content stays visible if JS fails
   ============================================================ */
html.js-loaded .animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  visibility: hidden;
  transition: opacity 0.8s var(--ease-bounce), transform 0.8s var(--ease-bounce), visibility 0.8s;
  will-change: opacity, transform;
}

html.js-loaded .animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-400 {
  transition-delay: 400ms;
}

.delay-500 {
  transition-delay: 500ms;
}

/* Stats Counter Animation */
.stat-item__value {
  display: inline-block;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.stat-item__value.is-visible {
  opacity: 1;
  transform: scale(1);
}

.navbar__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  background: #191919;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px 8px 8px 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 200;
}

.navbar__dropdown::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #191919;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar__dropdown-wrap:hover .navbar__dropdown,
.navbar__dropdown-wrap:focus-within .navbar__dropdown,
.navbar__dropdown-wrap.open .navbar__dropdown {
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: fadeDown 0.15s ease;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.navbar__dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.navbar__dropdown-item svg {
  opacity: 0.6;
  flex-shrink: 0;
}

.navbar__dropdown-item:hover {
  background: rgba(78, 205, 184, 0.15);
  color: #4ECDB8;
}

.navbar__dropdown-item:hover svg {
  opacity: 1;
}

/* ============================================================
   MOBILE NAV GROUP (Services sub-items)
   ============================================================ */
.mobile-nav__group {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 8px;
  margin-bottom: 4px;
}

.mobile-nav__group-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, 0.35);
  padding: 16px 24px 8px;
}

.mobile-nav__sub {
  display: block !important;
  padding-left: 2.5rem !important;
  font-size: 1.1rem !important;
  opacity: 0.8;
  border-bottom: none !important;
}

/* ============================================================
   MOBILE OVERFLOW FIX
   ============================================================ */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

@media (max-width: 640px) {
  .hero__title {
    word-break: break-word;
  }

  .contact-form-section {
    margin: 0 12px;
    padding: 20px;
  }

  .cards-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .contact-card {
    width: 100%;
  }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS (duplicate block — kept in sync)
   ============================================================ */
html.js-loaded .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}

html.js-loaded .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

.reveal-delay-3 {
  transition-delay: 300ms;
}

html.js-loaded .animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}

html.js-loaded .animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.stat-item__value.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   FLOATING CTA BUTTON (bottom-right corner)
   ============================================================ */
.float-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-cta__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,.35);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}

.float-cta__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,.45);
}

.float-cta__btn--phone {
  background: var(--color-brand-teal, #4ECDB8);
}

.float-cta__btn--email {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
}

.float-cta__btn svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 768px) {
  .float-cta {
    bottom: 16px;
    right: 16px;
  }
  .float-cta__btn {
    width: 48px;
    height: 48px;
  }
}

/* Ghost section background image */
.section-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}
.section-bg-image--ghost {
  opacity: 0.04;
}

