/*
    ============================================================
      CJX STUDIOS — index-page.css  v3.0
      Homepage only. All tokens in tokens.css.
      Every selector, spacing, transition, and shadow is
      deliberate. Pixel by pixel. No noise.
    ============================================================
*/

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

/* ── BASE ────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ── CUSTOM SCROLLBAR ────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--border-2);
  border-radius: var(--r-full);
  transition: background var(--dur-base);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-border);
}
* {
  scrollbar-width: thin;
  scrollbar-color: var(--border-2) transparent;
}

/* ── TEXT SELECTION ──────────────────────────────────────── */
::selection {
  background: rgba(43, 102, 230, 0.3);
  color: var(--text);
}

/* ── GRAIN OVERLAY (on body via pseudo) ──────────────────── */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: var(--z-grain);
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.80' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  background-repeat: repeat;
}

/* ── SKIP LINK ───────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.5rem 1.25rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  border-radius: 0 0 var(--r-sm) 0;
  z-index: 10001;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
}

/* ── SCREEN READER ONLY ──────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ────────────────────────────────────────────────────────── */
/* BACKGROUNDS                                               */
/* ────────────────────────────────────────────────────────── */

.radial-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 80% 60% at 0% 0%,
      rgba(43, 102, 230, 0.1) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 70% 50% at 100% 100%,
      rgba(43, 102, 230, 0.07) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 60% 80% at 50% -10%,
      rgba(43, 102, 230, 0.04) 0%,
      transparent 60%
    ),
    var(--bg);
}

.dots-pattern,
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(
    ellipse 90% 80% at 50% 35%,
    black 30%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 90% 80% at 50% 35%,
    black 30%,
    transparent 100%
  );
}

/* ────────────────────────────────────────────────────────── */
/* SCROLL PROGRESS BAR                                       */
/* ────────────────────────────────────────────────────────── */
#scrollBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    var(--accent-light) 50%,
    var(--accent) 100%
  );
  background-size: 200% 100%;
  animation: shimmer-bar 2s linear infinite;
  z-index: 9999;
  border-radius: 0 2px 2px 0;
  transition: width 0.08s linear;
}
@keyframes shimmer-bar {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ────────────────────────────────────────────────────────── */
/* NAV                                                       */
/* ────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-nav);
  height: 64px;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(9, 9, 9, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition:
    border-color var(--dur-base) var(--ease),
    box-shadow var(--dur-base) var(--ease);
}
nav.scrolled {
  border-color: var(--border-2);
  box-shadow:
    0 1px 0 var(--border),
    0 8px 32px rgba(0, 0, 0, 0.35);
}

.logo {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 0;
  transition: opacity var(--dur-fast);
}
.logo:hover {
  opacity: 0.85;
}
.logo:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: var(--r-xs);
}
.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  position: relative;
  color: var(--text-3);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color var(--dur-base) var(--ease);
  padding-bottom: 2px;
}
/* Underline slide animation */
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur-base) var(--ease);
  border-radius: var(--r-full);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: var(--r-xs);
}

.nav-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: var(--r-md);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    background var(--dur-base),
    transform var(--dur-fast),
    box-shadow var(--dur-base);
}
/* Shimmer sweep */
.nav-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.14),
    transparent
  );
  transition: left 0.5s var(--ease);
}
.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--blue-glow-sm);
}
.nav-cta:hover::before {
  left: 100%;
}
.nav-cta:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 3px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.4rem;
  border-radius: var(--r-xs);
  transition: background var(--dur-fast);
}
.mobile-menu-btn:hover {
  background: var(--border);
}
.mobile-menu-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}

.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(9, 9, 9, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1.75rem 2rem;
  gap: 1.4rem;
  border-bottom: 1px solid var(--border);
}

/* ────────────────────────────────────────────────────────── */
/* §1. HERO                                                  */
/* ────────────────────────────────────────────────────────── */
.hero {
  padding: 92px 4rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 5.5rem;
}

/* ── CITY HERO STYLES ────────────────────────────────────── */
.city-hero {
  position: relative;
  overflow: hidden;
}

.city-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(43, 102, 230, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 102, 230, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 0%,
    transparent 70%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 0%,
    transparent 70%
  );
}

.hero-color-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(43, 102, 230, 0.03) 0%,
    rgba(16, 185, 129, 0.02) 25%,
    rgba(245, 158, 11, 0.03) 50%,
    rgba(139, 92, 246, 0.02) 75%,
    rgba(43, 102, 230, 0.03) 100%
  );
  pointer-events: none;
  animation: colorShift 8s ease-in-out infinite;
}

@keyframes colorShift {
  0%,
  100% {
    opacity: 0.8;
  }
  25% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.9;
  }
  75% {
    opacity: 0.7;
  }
}

.cycling-font {
  display: inline-block;
  font-weight: 900;
  background: linear-gradient(
    45deg,
    var(--accent),
    var(--green),
    var(--amber),
    var(--accent)
  );
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation:
    fontCycle 4s ease-in-out infinite,
    gradientShift 3s ease-in-out infinite;
}

@keyframes fontCycle {
  0%,
  100% {
    font-family: var(--font-head);
  }
  25% {
    font-family: "Georgia", serif;
  }
  50% {
    font-family: "Courier New", monospace;
  }
  75% {
    font-family: "Arial", sans-serif;
  }
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.city-hero .hero-content {
  text-align: center;
  max-width: 600px;
}

/* ── CITY GUARANTEE SECTION ────────────────────────────────────── */
.guarantee-section {
  padding: 6rem 2rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.guarantee-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.02) 0%,
    rgba(43, 102, 230, 0.02) 50%,
    rgba(245, 158, 11, 0.02) 100%
  );
  pointer-events: none;
}

.guarantee-box {
  position: relative;
  z-index: 1;
}

.guarantee-text {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.g-point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  font-size: 0.9rem;
  color: var(--text-2);
  transition: all 0.3s ease;
}

.g-point:hover {
  transform: translateY(-2px);
  border-color: var(--accent-border);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.g-point i {
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.95rem;
  border-radius: var(--r-full);
  margin-bottom: 1.5rem;
  /* Subtle glow pulse on the badge itself */
  animation: badge-glow 3s ease-in-out infinite;
}
@keyframes badge-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(43, 102, 230, 0);
  }
  50% {
    box-shadow: 0 0 12px 0 rgba(43, 102, 230, 0.18);
  }
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(43, 102, 230, 0.5);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 0 5px rgba(43, 102, 230, 0);
    opacity: 0.75;
  }
}

/* Headline */
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 4.8vw, 4.1rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--text);
  margin-bottom: 1.25rem;
  font-kerning: normal;
  font-feature-settings:
    "kern" 1,
    "liga" 1;
}
.hero h1 .hl {
  color: var(--accent);
  /* Subtle text-shadow to lift accent line off background */
  text-shadow: 0 0 48px rgba(43, 102, 230, 0.22);
}

/* Sub-copy */
.hero-sub {
  font-size: clamp(0.93rem, 1.5vw, 1.05rem);
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-promise {
  display: block;
  padding-left: 1.05rem;
  border-left: 2px solid rgba(43, 102, 230, 0.3);
  position: relative;
  margin: 0;
  line-height: 1.45;
  transition: border-color var(--dur-base);
}
.hero-promise::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}
.hero-promise:hover {
  border-color: var(--accent);
}
.hero-sub strong {
  color: var(--text);
}

/* CTA pair */
.cta-pair {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: flex-start; /* left-aligned on desktop, overridden at mobile */
}

/* Primary button — the most important element on the page */
.btn-primary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: var(--accent);
  color: #fff;
  padding: 1rem 2.1rem;
  border-radius: var(--r-md);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.015em;
  border: none;
  cursor: pointer;
  transition:
    background var(--dur-base),
    transform var(--dur-fast),
    box-shadow var(--dur-base);
  /* Crisp inner highlight at top edge */
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
/* Shimmer sweep */
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -110%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.16) 50%,
    transparent 70%
  );
  transition: left 0.55s var(--ease);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow:
    var(--blue-glow-md),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.btn-primary:hover::before {
  left: 110%;
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-primary-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
}
.btn-primary:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 3px;
}

/* Ghost button */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-3);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 0.25rem;
  border-radius: var(--r-xs);
  transition: color var(--dur-base);
  letter-spacing: -0.01em;
}
.btn-ghost:hover {
  color: var(--text-2);
}
.btn-ghost:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}

/* Secondary (outline) */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-2);
  padding: 0.95rem 2rem;
  border-radius: var(--r-md);
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.01em;
  border: 1px solid var(--border-2);
  cursor: pointer;
  transition:
    color var(--dur-base),
    border-color var(--dur-base),
    transform var(--dur-fast);
}
.btn-secondary:hover {
  color: var(--accent);
  border-color: var(--accent-border);
  transform: translateY(-1px);
}
.btn-secondary-lg {
  padding: 1.1rem 2.4rem;
  font-size: 1rem;
}

/* Trust chips */
.hero-trust {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 0.32rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: -0.01em;
  transition:
    border-color var(--dur-base),
    color var(--dur-base);
}
.trust-chip:hover {
  border-color: var(--border-2);
  color: var(--text-2);
}
.trust-chip i {
  color: var(--accent);
  font-size: 0.7rem;
}

/* ── HERO VISUAL ─────────────────────────────────────────── */
.hero-visual {
  position: relative;
}

/* Browser mockup */
.hero-browser {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  overflow: hidden;
  /* Multi-layer shadow for true depth */
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.5),
    0 12px 40px rgba(0, 0, 0, 0.55),
    0 40px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(43, 102, 230, 0.1);
  /* Subtle upward tilt illusion */
  transform: perspective(1200px) rotateX(1.5deg);
  transition:
    transform var(--dur-slow) var(--ease),
    box-shadow var(--dur-slow) var(--ease);
}
.hero-browser:hover {
  transform: perspective(1200px) rotateX(0deg);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.5),
    0 16px 56px rgba(0, 0, 0, 0.55),
    0 48px 96px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(43, 102, 230, 0.18);
}

.bc-chrome {
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}
/* Animated loading bar inside chrome */
.bc-chrome::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 65%;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  animation: chrome-load 2.5s var(--ease) 0.5s forwards;
  opacity: 0;
}
@keyframes chrome-load {
  0% {
    width: 0%;
    opacity: 1;
  }
  70% {
    width: 100%;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}

.bc-dots {
  display: flex;
  gap: 0.38rem;
}
.bc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  /* Inset shadow gives them a slightly recessed, glass look */
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.25),
    inset 0 -1px 1px rgba(0, 0, 0, 0.25);
}
.bc-r {
  background: #ff5f57;
}
.bc-y {
  background: #febc2e;
}
.bc-g {
  background: #28c840;
}

.bc-url-bar {
  flex: 1;
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: var(--r-xs);
  padding: 0.28rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.bc-url-bar i {
  color: var(--green);
  font-size: 0.6rem;
}

.hero-screenshot {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Floating badges */
.f-badge {
  position: absolute;
  background: rgba(16, 16, 16, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-2);
  border-radius: var(--r-full);
  padding: 0.5rem 1.05rem;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  letter-spacing: -0.01em;
  /* Float animation */
  animation: badge-float 4s ease-in-out infinite;
}
.f-badge i {
  color: var(--accent);
}

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

.f-badge-1 {
  top: -16px;
  left: -14px;
  box-shadow:
    var(--shadow-md),
    0 0 20px rgba(43, 102, 230, 0.12);
  animation-delay: 0s;
}
.f-badge-2 {
  bottom: -16px;
  right: -14px;
  box-shadow:
    var(--shadow-md),
    0 0 20px rgba(43, 102, 230, 0.1);
  animation-delay: 2s;
}

/* ────────────────────────────────────────────────────────── */
/* §2. PROOF STRIP — scrolling marquee                       */
/* ────────────────────────────────────────────────────────── */
.proof-strip-wrap {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(
    180deg,
    var(--bg-2) 0%,
    rgba(16, 16, 16, 0.5) 100%
  );
  padding: 0.85rem 0;
}
/* Fade edges */
.proof-strip-wrap::before,
.proof-strip-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.proof-strip-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-2), transparent);
}
.proof-strip-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-2), transparent);
}

.proof-strip-track {
  display: flex;
  gap: 0;
  animation: marquee 32s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.proof-strip-track:hover {
  animation-play-state: paused;
}

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

.proof-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.79rem;
  font-weight: 600;
  color: var(--text-3);
  padding: 0 2.75rem;
  letter-spacing: -0.01em;
  /* Diamond separator after each item */
  position: relative;
}
.proof-strip-item::after {
  content: "◆";
  position: absolute;
  right: 0.5rem;
  font-size: 0.3rem;
  color: var(--border-2);
  vertical-align: middle;
  top: 50%;
  transform: translateY(-50%);
}
.proof-strip-item i {
  color: var(--accent);
  font-size: 0.78rem;
}
.proof-strip-item strong {
  color: var(--text-2);
}

/* ────────────────────────────────────────────────────────── */
/* §3. STATS                                                 */
/* ────────────────────────────────────────────────────────── */
.stats-section {
  padding: 5.5rem 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-card {
  position: relative;
  background: var(--bg-2);
  border-radius: var(--r-xl);
  padding: 1.85rem 1.6rem;
  text-align: center;
  /* Gradient border via padding-box / border-box technique */
  border: 1px solid var(--border);
  transition:
    border-color var(--dur-base),
    transform var(--dur-slow) var(--ease),
    box-shadow var(--dur-slow) var(--ease);
  overflow: hidden;
}
/* Subtle inner gradient highlight at top */
.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(43, 102, 230, 0.3),
    transparent
  );
  opacity: 0;
  transition: opacity var(--dur-base);
}
.stat-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px var(--accent-border);
}
.stat-card:hover::before {
  opacity: 1;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  margin: 0 auto 1.1rem;
  /* Animated glow */
  transition:
    box-shadow var(--dur-base),
    background var(--dur-base);
}
.stat-card:hover .stat-icon {
  background: rgba(43, 102, 230, 0.16);
  box-shadow: var(--blue-glow-sm);
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-feature-settings: "tnum" 1;
}
.stat-num-green {
  color: var(--green);
}
.stat-num-white {
  color: var(--text);
}
.stat-num-accent {
  color: var(--accent);
}

.stat-label {
  font-size: 0.81rem;
  color: var(--text-3);
  line-height: 1.5;
}
.stat-label strong {
  color: var(--text-2);
  display: block;
  margin-top: 0.25rem;
  font-size: 0.79rem;
}
.stat-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--dur-fast);
}
.stat-link:hover {
  color: var(--accent-light);
}

/* ────────────────────────────────────────────────────────── */
/* §4. PROBLEM + FOUNDER                                     */
/* ────────────────────────────────────────────────────────── */
.problem-section {
  padding: 5.5rem 2rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

/* Section decorative elements */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.69rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.32rem 0.85rem;
  border-radius: var(--r-full);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  margin-bottom: 1rem;
}

.problem-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text);
  line-height: 1.12;
  margin-bottom: 1.35rem;
}
.cjxblue {
  color: var(--accent);
}

.problem-body {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.78;
  margin-bottom: 1.35rem;
}
.problem-body strong {
  color: var(--text);
}

.problem-link {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--accent-border);
  padding-bottom: 1px;
  transition:
    color var(--dur-fast),
    border-color var(--dur-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.problem-link:hover {
  color: var(--accent-light);
  border-color: var(--accent);
}

/* Problem option cards */
.problem-option {
  background: var(--bg-2);
  border-radius: var(--r-md);
  padding: 1.05rem 1.2rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 0.8rem;
  transition:
    transform var(--dur-fast),
    box-shadow var(--dur-base);
  /* Subtle border */
  border: 1px solid transparent;
}
.po-bad {
  border-color: rgba(239, 68, 68, 0.14);
  background: rgba(239, 68, 68, 0.03);
}
.po-bad:hover {
  transform: translateX(2px);
}
.po-good {
  border-color: var(--accent-border);
  background: rgba(43, 102, 230, 0.06);
  box-shadow: 0 0 24px rgba(43, 102, 230, 0.08);
}
.po-good:hover {
  transform: translateX(2px);
  box-shadow: 0 0 32px rgba(43, 102, 230, 0.12);
}

.po-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  flex-shrink: 0;
}
.po-bad .po-icon {
  color: var(--red);
  background: var(--red-dim);
}
.po-good .po-icon {
  color: var(--accent);
  background: var(--accent-dim);
}

.po-label {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 0.18rem;
}
.po-text {
  font-size: 0.79rem;
  color: var(--text-2);
  line-height: 1.5;
}
.po-good .po-label {
  color: var(--accent);
}
.po-good .po-text {
  color: var(--text);
}

/* ── CEO BAR ─────────────────────────────────────────────── */
.ceo-bar {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: var(--bg-2);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-lg);
  padding: 2rem 2.5rem;
  margin-top: 0;
  position: relative;
  overflow: hidden;
  transition:
    border-color var(--dur-base),
    box-shadow var(--dur-base);
}
.ceo-bar:hover {
  box-shadow: 0 0 32px rgba(43, 102, 230, 0.1);
}

/* Left accent bar */
.ceo-bar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    var(--accent) 0%,
    rgba(43, 102, 230, 0.2) 70%,
    transparent 100%
  );
  border-radius: 0;
}

.ceo-bar-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 2px solid var(--accent-border);
  /* Layered ring */
  box-shadow:
    0 0 0 3px var(--bg-2),
    0 0 0 5px var(--accent-border),
    0 0 16px rgba(43, 102, 230, 0.15);
  transition: box-shadow var(--dur-base);
}
.ceo-bar:hover .ceo-bar-photo {
  box-shadow:
    0 0 0 3px var(--bg-2),
    0 0 0 5px var(--accent),
    0 0 24px rgba(43, 102, 230, 0.25);
}

.ceo-bar-body {
  flex: 1;
  min-width: 0;
}
.ceo-bar-header {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem 0.7rem;
  margin-bottom: 0.4rem;
}
.ceo-bar-eyebrow {
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.ceo-bar-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}
.ceo-bar-role {
  font-size: 0.74rem;
  color: var(--text-3);
}
.ceo-bar-story {
  font-size: 0.845rem;
  color: var(--text-2);
  line-height: 1.72;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  line-clamp: 8;
  overflow: hidden;
}

.ceo-bar-stats {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex-shrink: 0;
  min-width: 200px;
  border-left: 1px solid var(--border);
  padding-left: 1.5rem;
}
.ceo-bar-stat {
  font-size: 0.72rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 0.48rem;
  transition: color var(--dur-fast);
}
.ceo-bar-stat:hover {
  color: var(--text-2);
}
.ceo-bar-stat i {
  color: var(--accent);
  font-size: 0.68rem;
  width: 12px;
  text-align: center;
}

@media (max-width: 820px) {
  .ceo-bar {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem;
  }
  .ceo-bar-stats {
    flex-direction: row;
    flex-wrap: wrap;
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 1rem;
    min-width: unset;
    gap: 0.85rem 1.5rem;
  }
  .ceo-bar-story {
    -webkit-line-clamp: 10;
    line-clamp: 10;
  }
}

/* ────────────────────────────────────────────────────────── */
/* §5. PROCESS                                               */
/* ────────────────────────────────────────────────────────── */
.process-section {
  padding: 5.5rem 2rem;
  position: relative;
}

.section-header {
  max-width: 1100px;
  margin: 0 auto 3rem;
}
.section-header.center {
  text-align: center;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.12;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.72;
}

.process-fit-intro {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.3rem 1.6rem;
  font-size: 0.89rem;
  color: var(--text-2);
  line-height: 1.7;
}
.process-fit-intro strong {
  color: var(--text);
}

.process-fit-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
  margin-top: 0.7rem;
}
.process-fit-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.83rem;
  color: var(--text-2);
}
.process-fit-list li i {
  color: var(--green);
  font-size: 0.74rem;
}

/* Steps grid — with connecting timeline */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
/* Horizontal connector line behind steps */
.process-steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(50% / 3 + 32px);
  right: calc(50% / 3 + 32px);
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--accent-border),
    var(--accent-border)
  );
  z-index: 0;
}

.process-step {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  transition:
    border-color var(--dur-base),
    transform var(--dur-slow) var(--ease),
    box-shadow var(--dur-slow) var(--ease);
  z-index: 1;
}
.process-step:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px var(--accent-border);
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  box-shadow:
    0 0 0 4px var(--bg-2),
    0 0 0 6px var(--accent-border),
    var(--blue-glow-sm);
  transition:
    box-shadow var(--dur-base),
    transform var(--dur-base);
  position: relative;
  z-index: 2;
}
.process-step:hover .step-num {
  box-shadow:
    0 0 0 4px var(--bg-2),
    0 0 0 6px var(--accent),
    var(--blue-glow-md);
  transform: scale(1.06);
}

.process-step h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.6rem;
  letter-spacing: -0.025em;
}
.process-step p {
  font-size: 0.84rem;
  color: var(--text-2);
  line-height: 1.68;
  margin-bottom: 1.1rem;
}

.process-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  padding: 0.32rem 0.8rem;
  border-radius: var(--r-full);
  letter-spacing: -0.01em;
}

.process-cta-wrap {
  text-align: center;
  margin-top: 3.25rem;
}

/* WhatsApp button — its own distinct system */
.btn-wa {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--wa);
  color: #fff;
  padding: 1rem 2.1rem;
  border-radius: var(--r-md);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.015em;
  border: none;
  cursor: pointer;
  transition:
    background var(--dur-base),
    transform var(--dur-fast),
    box-shadow var(--dur-base);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-wa::before {
  content: "";
  position: absolute;
  top: 0;
  left: -110%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 70%
  );
  transition: left 0.55s var(--ease);
}
.btn-wa:hover {
  background: var(--wa-hover);
  transform: translateY(-2px);
  box-shadow:
    var(--wa-glow-md),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.btn-wa:hover::before {
  left: 110%;
}
.btn-wa:active {
  transform: translateY(0);
}
.btn-wa-lg {
  padding: 1.2rem 2.9rem;
  font-size: 1.05rem;
}

.process-cta-note {
  margin-top: 1.1rem;
  font-size: 0.79rem;
  color: var(--text-3);
}
.process-cta-note strong {
  color: var(--text-2);
}

/* ────────────────────────────────────────────────────────── */
/* §6. PORTFOLIO + SERVICE TILES                             */
/* ────────────────────────────────────────────────────────── */
.portfolio-section {
  padding: 5.5rem 2rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Service tiles */
.services-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.75rem;
}
.svc-tile {
  background: var(--bg-2);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-md);
  padding: 1.1rem 1.25rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  transition:
    border-color var(--dur-base),
    transform var(--dur-slow) var(--ease),
    box-shadow var(--dur-base);
}
.svc-tile:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.4),
    0 0 16px rgba(43, 102, 230, 0.08);
}

.svc-tile-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition:
    background var(--dur-base),
    box-shadow var(--dur-base);
}
.svc-tile:hover .svc-tile-icon {
  background: rgba(43, 102, 230, 0.15);
  box-shadow: var(--blue-glow-sm);
}

.svc-tile-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.svc-tile-desc {
  font-size: 0.775rem;
  color: var(--text-2);
  line-height: 1.48;
}

/* Portfolio grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-bottom: 1.75rem;
}

.portfolio-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: pointer;
  transition:
    border-color var(--dur-slow) var(--ease),
    transform var(--dur-slow) var(--ease),
    box-shadow var(--dur-slow) var(--ease);
  position: relative;
}
.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  border: 1px solid transparent;
  transition: border-color var(--dur-slow);
  pointer-events: none;
}
.portfolio-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-5px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.5),
    0 0 0 1px var(--accent-border);
}

/* Chrome bar inside portfolio card */
.pc-chrome {
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
  padding: 0.55rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.pc-dots {
  display: flex;
  gap: 0.3rem;
}
.pc-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.pc-r {
  background: #ff5f57;
}
.pc-y {
  background: #febc2e;
}
.pc-g {
  background: #28c840;
}

.pc-url {
  flex: 1;
  font-size: 0.66rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
}
.pc-url i {
  color: var(--green);
}
.pc-url-text {
  flex: 1;
}
.pc-verified {
  color: var(--green);
  margin-left: 0.35rem;
}
.pc-green {
  color: var(--green);
}

/* Image wrapper with hover overlay */
.portfolio-img-wrap {
  height: 185px;
  overflow: hidden;
  background: var(--bg-3);
  position: relative;
}
/* Hover reveal overlay */
.portfolio-img-wrap::after {
  content: "View Project ↗";
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 9, 0.65);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease);
}
.portfolio-card:hover .portfolio-img-wrap::after {
  opacity: 1;
}

.portfolio-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.portfolio-card:hover .portfolio-thumb {
  transform: scale(1.06);
}

.portfolio-info {
  padding: 1.05rem 1.05rem 1.2rem;
}

.portfolio-tag {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  padding: 0.18rem 0.6rem;
  border-radius: var(--r-full);
  margin-bottom: 0.45rem;
}
.portfolio-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}
.portfolio-metric {
  font-size: 0.74rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.portfolio-metric i {
  color: var(--accent);
}

/* Niche strip */
.niche-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
}
.niche-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 0.28rem 0.85rem;
  font-size: 0.74rem;
  color: var(--text-3);
  transition:
    border-color var(--dur-fast),
    color var(--dur-fast);
}
.niche-tag:hover {
  border-color: var(--border-2);
  color: var(--text-2);
}
.niche-tag i {
  color: var(--accent);
  font-size: 0.68rem;
}

.portfolio-footer-link {
  text-align: center;
}
.text-link-arrow {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--accent-border);
  padding-bottom: 1px;
  transition:
    color var(--dur-fast),
    border-color var(--dur-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.text-link-arrow:hover {
  color: var(--accent-light);
  border-color: var(--accent);
}

/* ────────────────────────────────────────────────────────── */
/* §7. REVIEWS + VIDEO TESTIMONIALS                          */
/* ────────────────────────────────────────────────────────── */
.reviews-section {
  padding: 5.5rem 2rem;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-bottom: 1.5rem;
}

.testi-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.8rem 1.65rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition:
    border-color var(--dur-base),
    transform var(--dur-slow) var(--ease),
    box-shadow var(--dur-slow) var(--ease);
}
/* Large decorative quote mark */
.testi-card::before {
  content: "\201C";
  position: absolute;
  top: -0.5rem;
  right: 1rem;
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 1;
  color: rgba(43, 102, 230, 0.06);
  pointer-events: none;
  user-select: none;
}
.testi-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px var(--accent-border);
}

.testi-stars {
  color: var(--amber);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 8px rgba(245, 158, 11, 0.25);
}
.testi-outcome {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.71rem;
  font-weight: 700;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  color: var(--green);
  padding: 0.2rem 0.65rem;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.testi-quote {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.7;
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 1.3rem;
  position: relative;
  z-index: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testi-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  box-shadow:
    0 0 0 2px var(--bg-2),
    0 0 0 4px var(--accent-border);
}
.testi-name {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--text);
}
.testi-biz {
  font-size: 0.73rem;
  color: var(--text-3);
}
.testi-verified {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  color: var(--accent);
  margin-top: 0.2rem;
}

.reviews-more-wrap {
  text-align: center;
  margin-top: 0.75rem;
  margin-bottom: 4rem;
}
.reviews-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.83rem;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-border);
  padding-bottom: 1px;
  transition:
    color var(--dur-fast),
    border-color var(--dur-fast);
}
.reviews-more-link:hover {
  color: var(--accent-light);
  border-color: var(--accent);
}
.reviews-stat-qualifier {
  display: block;
  font-size: 0.71rem;
  color: var(--text-3);
  font-style: italic;
  margin-top: 0.45rem;
}

/* Video testimonials */
.video-testi-subhead {
  text-align: center;
  margin-bottom: 2rem;
}
.video-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.69rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.32rem 0.85rem;
  border-radius: var(--r-full);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.video-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.video-testi-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition:
    border-color var(--dur-slow) var(--ease),
    transform var(--dur-slow) var(--ease);
}
.video-testi-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-3px);
}

.video-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-4));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.video-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(43, 102, 230, 0.14),
    rgba(43, 102, 230, 0.04)
  );
}
.video-play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  box-shadow:
    0 0 0 6px rgba(43, 102, 230, 0.2),
    var(--blue-glow-sm);
  position: relative;
  z-index: 1;
  transition:
    transform var(--dur-base),
    box-shadow var(--dur-base);
}
.video-testi-card:hover .video-play-btn {
  transform: scale(1.12);
  box-shadow:
    0 0 0 8px rgba(43, 102, 230, 0.2),
    var(--blue-glow-md);
}
.video-thumb-label {
  position: absolute;
  bottom: 8px;
  left: 10px;
  background: rgba(0, 0, 0, 0.72);
  border-radius: var(--r-xs);
  padding: 0.22rem 0.55rem;
  font-size: 0.68rem;
  color: #fff;
  font-weight: 600;
  z-index: 1;
}
.video-testi-info {
  padding: 1rem 1.1rem 1.15rem;
}
.video-testi-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.15rem;
}
.video-testi-biz {
  font-size: 0.77rem;
  color: var(--text-3);
}
.video-coming-soon {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: rgba(43, 102, 230, 0.18);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: var(--r-xs);
}

/* ────────────────────────────────────────────────────────── */
/* §8. PRICING                                               */
/* ────────────────────────────────────────────────────────── */
.pricing-section {
  padding: 5.5rem 2rem;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.plan-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 2rem 1.85rem;
  position: relative;
  transition:
    border-color var(--dur-slow) var(--ease),
    transform var(--dur-slow) var(--ease),
    box-shadow var(--dur-slow) var(--ease);
  overflow: hidden;
}
.plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--border-2) 50%,
    transparent 100%
  );
}
.plan-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-5px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.5),
    0 0 0 1px var(--accent-border);
}

/* Featured card — animated gradient border */
.plan-card.featured {
  background: linear-gradient(
    180deg,
    rgba(43, 102, 230, 0.06) 0%,
    var(--bg-2) 100%
  );
  border-color: var(--accent-border);
  box-shadow:
    0 0 0 1px var(--accent-border),
    0 24px 64px rgba(43, 102, 230, 0.12),
    inset 0 0 0 1px rgba(43, 102, 230, 0.08);
  padding-top: 0;
}
.plan-card.featured::before {
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--accent) 50%,
    transparent 100%
  );
  opacity: 0.7;
  animation: featured-top-bar 2.5s ease-in-out infinite;
}
@keyframes featured-top-bar {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.plan-card.featured:hover {
  border-color: var(--accent);
  box-shadow:
    0 0 0 1px var(--accent),
    0 32px 80px rgba(43, 102, 230, 0.2),
    inset 0 0 0 1px rgba(43, 102, 230, 0.14);
  transform: translateY(-7px);
}

.plan-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: linear-gradient(90deg, var(--accent) 0%, #3d7bff 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  margin: 0 -2rem 1.75rem;
  white-space: nowrap;
  position: relative;
}

.plan-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.2rem;
  letter-spacing: -0.025em;
}
.plan-card.featured .plan-name {
  color: var(--accent);
}

.plan-tagline {
  font-size: 0.81rem;
  color: var(--text-3);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.agency-compare {
  font-size: 0.73rem;
  color: var(--text-3);
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.4rem 0.75rem;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}
.agency-compare strong {
  color: var(--text-2);
}

.plan-price-block {
  margin-bottom: 1.2rem;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  line-height: 1;
}

.currency {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-2);
  align-self: flex-start;
  margin-top: 0.3rem;
}
.price-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.045em;
  font-feature-settings: "tnum" 1;
}
.plan-card.featured .price-num {
  color: var(--accent);
}
.period {
  font-size: 0.88rem;
  color: var(--text-3);
  margin-left: 0.2rem;
}

.plan-divider {
  height: 1px;
  background: var(--border);
  margin: 1.2rem 0;
}
.plan-card.featured .plan-divider {
  background: rgba(43, 102, 230, 0.2);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.68rem;
  margin-bottom: 1.5rem;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: var(--text-2);
  line-height: 1.45;
}
.plan-features li.dim {
  color: var(--text-3);
}

.fi {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.fi-yes {
  background: var(--green-dim);
  color: var(--green);
}
.fi-no {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-3);
}

.plan-note {
  font-size: 0.74rem;
  color: var(--text-3);
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.45rem 0.75rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.plan-note i {
  color: var(--accent);
}

/* Plan action buttons */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.9rem 1.5rem;
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  letter-spacing: -0.015em;
  transition: all var(--dur-base);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -110%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 70%
  );
  transition: left 0.5s var(--ease);
}
.btn:hover::before {
  left: 110%;
}
.btn-orange {
  background: var(--accent);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.btn-orange:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow:
    var(--blue-glow-sm),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.btn-outline {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-2);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.plan-sub {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-3);
  margin-top: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}
.plan-sub i {
  color: var(--green);
}

.pricing-annual-link {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.83rem;
  color: var(--text-3);
}
.pricing-annual-link a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
  margin-top: 2rem;
}
.pricing-trust-item {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.79rem;
  color: var(--text-3);
}
.pricing-trust-item i {
  color: var(--green);
}

/* ────────────────────────────────────────────────────────── */
/* §9. FINAL CTA                                             */
/* ────────────────────────────────────────────────────────── */
.final-cta-section {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Background glow */
.final-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 50% 0%,
    rgba(43, 102, 230, 0.14) 0%,
    transparent 65%
  );
  pointer-events: none;
}
/* Subtle grid lines in background */
.final-cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(43, 102, 230, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 102, 230, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 0%,
    transparent 70%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 0%,
    transparent 70%
  );
}

.final-cta-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1.3rem;
}
.final-cta-title {
  position: relative;
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 1rem;
}
.final-cta-title em {
  font-style: normal;
  color: var(--accent);
}
.final-cta-sub {
  position: relative;
  font-size: 1rem;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto 2.75rem;
  line-height: 1.72;
}
.final-cta-trust {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-3);
}
.final-cta-trust span {
  display: flex;
  align-items: center;
  gap: 0.42rem;
}
.final-cta-trust i {
  color: var(--green);
}

/* ────────────────────────────────────────────────────────── */
/* CITY PAGE CTA SECTION                                     */
/* ────────────────────────────────────────────────────────── */
.cta-section {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
/* Background glow */
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 50% 0%,
    rgba(43, 102, 230, 0.14) 0%,
    transparent 65%
  );
  pointer-events: none;
}
/* Subtle grid lines in background */
.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(43, 102, 230, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 102, 230, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 0%,
    transparent 70%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 0%,
    transparent 70%
  );
}

.cta-orb {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(43, 102, 230, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.cta-box {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 1rem;
}

.cta-title .hl {
  color: var(--accent);
}

.cta-sub {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto 2.75rem;
  line-height: 1.72;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-3);
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 0.42rem;
}

.cta-trust-item i {
  color: var(--green);
}

/* ────────────────────────────────────────────────────────── */
/* CITY PAGE SERVICES SECTION                                */
/* ────────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s,
    box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  background: rgba(43, 102, 230, 0.12);
  color: var(--accent);
  border: 1px solid rgba(43, 102, 230, 0.2);
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-card p {
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.tag {
  background: rgba(43, 102, 230, 0.08);
  color: var(--accent);
  border: 1px solid rgba(43, 102, 230, 0.15);
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-sm);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ────────────────────────────────────────────────────────── */
/* FOOTER                                                    */
/* ────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 4.5rem 4rem 2rem;
  position: relative;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, var(--bg) 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-w);
  margin: 0 auto 3rem;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.025em;
  display: inline-block;
  margin-bottom: 1rem;
}
.footer-logo span {
  color: var(--accent);
}
.footer-logo:hover {
  opacity: 0.85;
}

.footer-desc {
  font-size: 0.81rem;
  color: var(--text-3);
  line-height: 1.67;
  margin-bottom: 1.3rem;
}
.footer-map-link {
  color: var(--accent);
  text-decoration: none;
}
.footer-map-link:hover {
  color: var(--accent-light);
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}
.social-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  font-size: 0.84rem;
  text-decoration: none;
  transition:
    border-color var(--dur-base),
    color var(--dur-base),
    transform var(--dur-fast),
    box-shadow var(--dur-base);
}
.social-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--blue-glow-sm);
}

.footer-heading {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  margin-bottom: 1.1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  color: var(--text-3);
  text-decoration: none;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition:
    color var(--dur-base),
    transform var(--dur-fast);
}
.footer-links a:hover {
  color: var(--text-2);
  transform: translateX(2px);
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.81rem;
  color: var(--text-3);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.77rem;
  color: var(--text-3);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ────────────────────────────────────────────────────────── */
/* PERSISTENT ELEMENTS                                       */
/* ────────────────────────────────────────────────────────── */

/* WhatsApp float */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow:
    0 4px 16px rgba(37, 211, 102, 0.5),
    0 0 0 0 rgba(37, 211, 102, 0.3);
  transition:
    transform var(--dur-base),
    box-shadow var(--dur-base);
  /* Pulse ring animation */
  animation: wa-pulse 2.5s ease-in-out infinite;
}
@keyframes wa-pulse {
  0% {
    box-shadow:
      0 4px 16px rgba(37, 211, 102, 0.5),
      0 0 0 0 rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow:
      0 4px 16px rgba(37, 211, 102, 0.5),
      0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow:
      0 4px 16px rgba(37, 211, 102, 0.5),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow:
    0 8px 32px rgba(37, 211, 102, 0.55),
    0 0 0 6px rgba(37, 211, 102, 0.12);
  animation: none;
}

/* Mobile bar */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(9, 9, 9, 0.94);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
  gap: 0.6rem;
}
.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  padding: 0.75rem;
  transition:
    opacity var(--dur-fast),
    transform var(--dur-fast);
}
.mobile-bar a:active {
  opacity: 0.8;
  transform: scale(0.98);
}
.mb-wa {
  background: var(--wa);
  color: #fff;
}
.mb-call {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-2);
  flex: 0 0 52px;
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 998;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(16, 16, 16, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-2);
  color: var(--text-3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.78rem;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--dur-slow),
    border-color var(--dur-base),
    color var(--dur-base),
    transform var(--dur-fast);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ────────────────────────────────────────────────────────── */
/* MODALS                                                    */
/* ────────────────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-backdrop.open {
  display: flex;
}

.modal {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-2xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
  /* Slide in from below */
  animation: modal-in 0.3s var(--ease-spring) both;
}
@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
}
.modal-close-btn {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.82rem;
  transition:
    background var(--dur-fast),
    transform var(--dur-fast);
}
.modal-close-btn:hover {
  background: rgba(0, 0, 0, 0.75);
  transform: scale(1.08);
}

.modal-body {
  padding: 1.6rem;
}
.modal-tag {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-full);
  margin-bottom: 0.5rem;
}
.modal-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
}
.modal-desc {
  font-size: 0.86rem;
  color: var(--text-2);
  line-height: 1.68;
  margin-bottom: 1.3rem;
}
.modal-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.modal-stat {
  flex: 1;
  text-align: center;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.9rem 0.5rem;
  transition: border-color var(--dur-base);
}
.modal-stat:hover {
  border-color: var(--accent-border);
}
.modal-stat-val {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.035em;
}
.modal-stat-lbl {
  font-size: 0.69rem;
  color: var(--text-3);
  margin-top: 0.15rem;
}
.modal-actions {
  display: flex;
  gap: 0.75rem;
}
.modal-actions .btn-primary {
  flex: 1;
  font-size: 0.85rem;
  padding: 0.85rem 1rem;
}
.modal-actions .btn-wa {
  flex: 1;
  font-size: 0.85rem;
  padding: 0.85rem 1rem;
  justify-content: center;
}

/* ────────────────────────────────────────────────────────── */
/* ANIMATIONS                                                */
/* ────────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays — applied as classes on children */
.d2 {
  transition-delay: 0.08s;
}
.d3 {
  transition-delay: 0.16s;
}
.d4 {
  transition-delay: 0.24s;
}
.d5 {
  transition-delay: 0.32s;
}

/* ────────────────────────────────────────────────────────── */
/* MISC COMPONENTS                                           */
/* ────────────────────────────────────────────────────────── */
.designer-section {
  padding: 4rem 2rem;
  background: var(--bg);
}

.ti-wrapper {
  margin-bottom: 2.5rem;
  min-height: 80px;
}

/* Footer email capture */
.footer-capture {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  margin: 2rem auto;
  text-align: center;
  max-width: 600px;
  transition: border-color var(--dur-base);
}
.footer-capture:hover {
  border-color: var(--border-2);
}
.footer-capture-label {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 1.3rem 0;
}
.footer-capture-form {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-capture-form input {
  flex: 1;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--bg-3);
  color: var(--text);
  font-size: 0.94rem;
  font-family: inherit;
  outline: none;
  transition:
    border-color var(--dur-base),
    box-shadow var(--dur-base);
}
.footer-capture-form input::placeholder {
  color: var(--text-3);
}
.footer-capture-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.footer-capture-form button {
  padding: 0.875rem 1.5rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 0.94rem;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition:
    background var(--dur-base),
    transform var(--dur-fast),
    box-shadow var(--dur-base);
}
.footer-capture-form button:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--blue-glow-sm);
}
.footer-capture-sent {
  color: var(--green);
  font-size: 0.94rem;
  margin: 0;
}

/* ────────────────────────────────────────────────────────── */
/* RESPONSIVE                                                */
/* ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* ── HERO: collapse 2-col grid → single centred column ── */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 3.5rem;
  }

  /* Visual (browser mockup + floating badges) disappears */
  .hero-visual {
    display: none;
  }

  /* Content column: centre everything as a flex column */
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
  }

  /* Badge already inline-flex — auto-centres under text-align:center */

  /* Sub-copy: centre the flex column */
  .hero-sub {
    align-items: center;
    text-align: center;
    max-width: 540px;
  }

  /* Promise bullet: left border looks wrong on centred text → strip it */
  .hero-promise {
    border-left: none;
    padding-left: 0;
    text-align: center;
  }
  .hero-promise::before {
    display: none;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .video-testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .process-steps::before {
    display: none;
  }
  .services-tiles {
    grid-template-columns: 1fr;
  }
  .hero-trust {
    justify-content: center;
  }
  .cta-pair {
    justify-content: center !important;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 1.25rem;
    height: 57px;
  }
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 57px;
    left: 0;
    right: 0;
    background: rgba(9, 9, 9, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 0 1.5rem 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    z-index: 1001;
  }
  .nav-links li {
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child {
    border-bottom: none;
  }
  .nav-links a {
    display: block;
    padding: 0.9rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-2);
  }
  .nav-links a::after {
    display: none;
  }
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--accent);
  }
  .nav-cta {
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
  }
  .mobile-menu-btn {
    display: flex;
  }

  /* ── HERO — mobile centred layout ── */
  .hero {
    padding: 88px 1.5rem 0;
    min-height: auto; /* don't force full viewport on mobile */
    padding-bottom: 3.5rem; /* breathing room above mobile bar */
  }
  .hero-inner {
    padding-bottom: 0; /* hero itself handles bottom space */
    margin: 0 auto;
    justify-items: center;
  }
  .hero-content {
    margin: 0 auto;
    width: 100%;
    max-width: 760px;
  }

  /* CTA buttons: full-width stacked */
  .cta-pair {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.75rem;
  }
  .cta-pair a,
  .cta-pair .btn-primary,
  .cta-pair .btn-primary-lg,
  .cta-pair .btn-ghost,
  .cta-pair .btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Trust chips: wrap and centre tightly */
  .hero-trust {
    justify-content: center;
    gap: 0.5rem;
  }
  .trust-chip {
    font-size: 0.72rem;
  }

  .stats-section,
  .problem-section,
  .process-section,
  .portfolio-section,
  .reviews-section,
  .pricing-section,
  .final-cta-section {
    padding: 3.75rem 1.25rem;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .video-testi-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  footer {
    padding: 3.5rem 1.25rem 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .mobile-bar {
    display: flex;
  }
  body {
    padding-bottom: 76px;
  }
  .wa-float {
    bottom: 88px;
  }
  .modal-actions {
    flex-direction: column;
  }
  .footer-capture {
    padding: 1.5rem;
  }
  .footer-capture-form {
    flex-direction: column;
  }
  .footer-capture-form button {
    width: 100%;
  }
  .ceo-bar {
    padding: 1.5rem;
  }
  .city-hero .hero-content {
    max-width: 100%;
    padding: 0 1rem;
  }
  .guarantee-section {
    padding: 4rem 1.5rem;
  }
  .guarantee-points {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .g-point {
    padding: 0.875rem;
    font-size: 0.85rem;
  }
  .cta-section {
    padding: 6rem 1.5rem;
  }
  .cta-box {
    padding: 0 1rem;
  }
  .cta-title {
    font-size: clamp(1.75rem, 7vw, 2.6rem);
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-trust {
    gap: 1rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .service-card {
    padding: 1.5rem;
  }
}

/* ────────────────────────────────────────────────────────── */
/* REDUCED MOTION                                            */
/* ────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .f-badge {
    animation: none;
  }
  .wa-float {
    animation: none;
  }
  .hero-browser {
    transform: none !important;
  }
  .bc-chrome::after {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════════
   INDEX PAGE — Mobile Optimisation Layer v5.0
   ══════════════════════════════════════════════════════════════ */

/* ── HERO ────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    padding: 88px 1.5rem 3.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 82px 1.25rem 3rem;
  }

  /* Hero heading — tighter on small screens */
  .hero-heading,
  .hero h1 {
    font-size: clamp(2rem, 8.5vw, 2.6rem) !important;
    letter-spacing: -0.035em;
    line-height: 1.08;
  }

  /* Hero sub */
  .hero-sub {
    font-size: 0.93rem;
    gap: 10px;
    max-width: 100%;
  }

  /* Trust chips */
  .hero-trust {
    gap: 0.45rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .trust-chip {
    font-size: 0.7rem;
    padding: 0.28rem 0.7rem;
  }

  /* Badge */
  .hero-badge {
    font-size: 0.67rem;
    padding: 0.3rem 0.8rem;
    letter-spacing: 0.1em;
  }
}

/* ── STATS GRID ──────────────────────────────────────────────── */
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
  .stats-section {
    padding: 2.75rem 1.25rem;
  }
}

/* ── PROBLEM / VALUE SECTION ─────────────────────────────────── */
@media (max-width: 480px) {
  .problem-section {
    padding: 3.5rem 1.25rem;
  }
  .problem-grid {
    gap: 1.75rem;
  }
}

/* ── PROCESS / STEPS ─────────────────────────────────────────── */
@media (max-width: 480px) {
  .process-section {
    padding: 3.5rem 1.25rem;
  }
  .process-step {
    padding: 1.25rem;
  }
}

/* ── SERVICES TILES ──────────────────────────────────────────── */
@media (max-width: 480px) {
  .services-section,
  .services-tiles-section {
    padding: 3.5rem 1.25rem;
  }
  .services-tiles {
    gap: 0.85rem;
  }
  .service-tile {
    padding: 1.25rem;
  }
}

/* ── PORTFOLIO GRID ──────────────────────────────────────────── */
@media (max-width: 480px) {
  .portfolio-section {
    padding: 3.5rem 1.25rem;
  }
  .portfolio-grid {
    gap: 0.85rem;
  }
}

/* ── REVIEWS / TESTIMONIALS ──────────────────────────────────── */
@media (max-width: 480px) {
  .reviews-section {
    padding: 3.5rem 1.25rem;
  }
  .testi-grid {
    gap: 0.85rem;
  }
}

/* ── PRICING SECTION ON INDEX ────────────────────────────────── */
@media (max-width: 480px) {
  .pricing-section {
    padding: 3.5rem 1.25rem;
  }
  .plans-grid {
    max-width: 100%;
  }
}

/* ── FINAL CTA ───────────────────────────────────────────────── */
@media (max-width: 480px) {
  .final-cta-section {
    padding: 3.5rem 1.25rem;
  }
  .final-cta-section h2 {
    font-size: clamp(1.75rem, 7vw, 2.6rem);
  }
}

/* ── CEO / FOUNDER BAR ───────────────────────────────────────── */
@media (max-width: 480px) {
  .ceo-bar {
    padding: 1.25rem;
    gap: 0.85rem;
  }
  .ceo-bar-text {
    font-size: 0.875rem;
  }
}

/* ── FOOTER CAPTURE FORM ─────────────────────────────────────── */
@media (max-width: 480px) {
  .footer-capture {
    padding: 1.25rem;
  }
  .footer-capture h3 {
    font-size: 1.1rem;
  }
  .footer-capture-form input {
    font-size: 16px; /* prevent iOS zoom */
  }
}

/* ── MOBILE BAR — ensure above safe area ────────────────────── */
@media (max-width: 768px) {
  .mobile-bar {
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
}

/* ── 375px FINE-TUNE ─────────────────────────────────────────── */
@media (max-width: 375px) {
  .hero {
    padding: 80px 1rem 2.5rem;
  }
  .hero-heading,
  .hero h1 {
    font-size: clamp(1.85rem, 8.5vw, 2.1rem) !important;
  }
  .hero-content {
    max-width: 100%;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
  }
}

/* ── VIDEO TESTIMONIALS ──────────────────────────────────────── */
@media (max-width: 480px) {
  .video-testi-grid {
    gap: 0.85rem;
  }
  .video-testi-card {
    border-radius: 12px;
  }
}
/* ══════════════════════════════════════════════════════════════ */
