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

:root {
  --pink: #e91e8c;
  --pink-hover: #c71579;
  --black: #080808;
  --card: #111111;
  --card2: #161616;
  --border: rgba(255,255,255,0.07);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.55);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

em { font-family: var(--serif); font-style: italic; }

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

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: var(--pink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s, transform 0.15s;
  will-change: left, top;
}
.cursor-dot--hover {
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
}
.cursor-dot--click {
  transform: translate(-50%, -50%) scale(1.8);
}

.cursor-blob {
  position: fixed;
  width: 22px;
  height: 22px;
  border: 1.5px solid rgba(233, 30, 140, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s, width 0.3s cubic-bezier(0.22,1,0.36,1), height 0.3s cubic-bezier(0.22,1,0.36,1), border-color 0.3s, background 0.3s;
  will-change: left, top;
}
.cursor-blob--hover {
  width: 38px;
  height: 38px;
  border-color: var(--pink);
  background: rgba(233, 30, 140, 0.08);
}
.cursor-blob--click {
  width: 16px;
  height: 16px;
  background: rgba(233, 30, 140, 0.2);
  border-color: var(--pink);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink);
  color: #fff;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--pink-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(233,30,140,0.4);
}
.btn-large { padding: 16px 32px; font-size: 1rem; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}
.btn-outline:hover {
  border-color: var(--pink);
  background: rgba(233,30,140,0.08);
  transform: translateY(-1px);
}

.arrow-icon { font-size: 1rem; }

/* ===== FLOATING DOTS ===== */
.floating-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.dot-hero {
  width: 12px; height: 12px;
  background: #7c3aed;
  top: 42%; right: 32%;
  animation: floatDot 6s ease-in-out infinite;
}
.dot-services {
  width: 14px; height: 14px;
  background: #7c3aed;
  bottom: 20%; right: 8%;
  animation: floatDot 7s ease-in-out infinite reverse;
}
.dot-stories {
  width: 12px; height: 12px;
  background: #7c3aed;
  top: 60%; left: 1%;
  animation: floatDot 5s ease-in-out infinite;
}
.dot-cta {
  width: 16px; height: 16px;
  background: rgba(233,30,140,0.6);
  top: 30%; right: 15%;
  animation: floatDot 8s ease-in-out infinite;
}
@keyframes floatDot {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}

/* ===== BLOBS ===== */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.18;
  z-index: 0;
}
.blob-1 {
  width: 500px; height: 500px;
  background: var(--pink);
  top: -180px; right: -100px;
  animation: blobPulse 10s ease-in-out infinite;
}
.blob-2 {
  width: 350px; height: 350px;
  background: #7c3aed;
  top: 50%; left: -120px;
  animation: blobPulse 12s ease-in-out infinite reverse;
}
.blob-3 {
  width: 280px; height: 280px;
  background: var(--pink);
  bottom: -60px; right: 20%;
  animation: blobPulse 9s ease-in-out infinite 2s;
}
@keyframes blobPulse {
  0%,100% { transform: scale(1) translate(0,0); }
  33% { transform: scale(1.15) translate(20px,-20px); }
  66% { transform: scale(0.9) translate(-15px,15px); }
}

/* ===== PAGE READY FADE IN ===== */
body { opacity: 1; }

/* ===== REVEAL ANIMATIONS ===== */
/* Only hide elements when JS is confirmed running (body gets .js-on class) */
/* Without JS, all content is visible by default */
.js-on .reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.js-on .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.js-on .reveal-delay-1 { transition-delay: 0.1s; }
.js-on .reveal-delay-2 { transition-delay: 0.2s; }
.js-on .reveal-delay-3 { transition-delay: 0.3s; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: calc(100% - 48px);
  max-width: 1180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-outside {
  position: absolute;
  left: 6.5%;
  top: 50%;
  transform: translateY(-50%);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 50px;
  width: auto;
  background: rgba(17,17,17,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  padding: 6px 8px 6px 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.nav-logo-outside {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-outside .nav-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.nav-links { display: flex; gap: 28px; }
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.nav-link:hover { color: #fff; }
.nav-cta { padding: 9px 18px; font-size: 0.85rem; }

/* ===== NAV TRIGGER (Services button) ===== */
.nav-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.nav-chev {
  transition: transform 0.22s ease;
  flex-shrink: 0;
}
.navbar.mega-open .nav-chev { transform: rotate(180deg); }

/* ===== MEGA DROPDOWN PANEL ===== */
.mega-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: min(1100px, calc(100vw - 48px));
  background: #111111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  box-shadow: 0 24px 80px rgba(0,0,0,0.65), 0 0 48px rgba(233,30,140,0.07);
  overflow: hidden;
  z-index: 300;
}
.navbar.mega-open .mega-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-glow {
  position: absolute;
  top: -100px; left: -100px;
  width: 300px; height: 300px;
  background: #e91e8c;
  filter: blur(80px);
  opacity: 0.16;
  pointer-events: none;
  border-radius: 50%;
}
.mega-panel-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  z-index: 2;
}
.mega-col { display: flex; flex-direction: column; gap: 4px; }

/* Column header */
.mega-col-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(233,30,140,0.09);
  border: 1px solid rgba(233,30,140,0.22);
  border-radius: 10px;
  color: #f48cb8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* Mega link rows */
.mega-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease;
  border: 1px solid transparent;
}
.mega-link:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.07);
}
.mega-link-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mega-link:hover .mega-link-icon {
  background: rgba(233,30,140,0.08);
  border-color: rgba(233,30,140,0.25);
}
.mega-link-icon::before {
  content: '';
  width: 15px; height: 15px;
  background-color: rgba(255,255,255,0.7);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  transition: background-color 0.18s;
}
.mega-link:hover .mega-link-icon::before { background-color: #e91e8c; }
/* Icon masks */
.mega-link-icon[data-icon="google-ads"]::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 8v4l3 3'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 8v4l3 3'/%3E%3C/svg%3E"); }
.mega-link-icon[data-icon="meta-ads"]::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='4'/%3E%3Cpath d='M8 12h8M12 8v8'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='4'/%3E%3Cpath d='M8 12h8M12 8v8'/%3E%3C/svg%3E"); }
.mega-link-icon[data-icon="tiktok-ads"]::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M9 12v8a3 3 0 1 1-3-3h1M15 3c0 3 2 5 5 5M15 3v11'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M9 12v8a3 3 0 1 1-3-3h1M15 3c0 3 2 5 5 5M15 3v11'/%3E%3C/svg%3E"); }
.mega-link-icon[data-icon="landing"]::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Cpath d='M3 9h18M9 21V9'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Cpath d='M3 9h18M9 21V9'/%3E%3C/svg%3E"); }
.mega-link-icon[data-icon="strategy"]::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 2v4M12 18v4M2 12h4M18 12h4'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 2v4M12 18v4M2 12h4M18 12h4'/%3E%3C/svg%3E"); }
.mega-link-icon[data-icon="website"]::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Crect x='3' y='4' width='18' height='14' rx='2'/%3E%3Cpath d='M8 21h8M12 18v3'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Crect x='3' y='4' width='18' height='14' rx='2'/%3E%3Cpath d='M8 21h8M12 18v3'/%3E%3C/svg%3E"); }
.mega-link-icon[data-icon="app"]::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Crect x='7' y='2' width='10' height='20' rx='2'/%3E%3Cpath d='M11 18h2'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Crect x='7' y='2' width='10' height='20' rx='2'/%3E%3Cpath d='M11 18h2'/%3E%3C/svg%3E"); }
.mega-link-icon[data-icon="seo"]::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4-4'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4-4'/%3E%3C/svg%3E"); }
.mega-link-icon[data-icon="social"]::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='6' cy='6' r='3'/%3E%3Ccircle cx='18' cy='6' r='3'/%3E%3Ccircle cx='12' cy='18' r='3'/%3E%3Cpath d='M8 8l3 7M16 8l-3 7'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='6' cy='6' r='3'/%3E%3Ccircle cx='18' cy='6' r='3'/%3E%3Ccircle cx='12' cy='18' r='3'/%3E%3Cpath d='M8 8l3 7M16 8l-3 7'/%3E%3C/svg%3E"); }
.mega-link-icon[data-icon="home-care"]::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-6 9 6v11a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1z'/%3E%3Cpath d='M9 22V12h6v10'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-6 9 6v11a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1z'/%3E%3Cpath d='M9 22V12h6v10'/%3E%3C/svg%3E"); }
.mega-link-icon[data-icon="dental"]::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M12 2C8 2 6 5 6 8c0 4 2 8 3 12 .3 1 1 2 2 2h2c1 0 1.7-1 2-2 1-4 3-8 3-12 0-3-2-6-6-6z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M12 2C8 2 6 5 6 8c0 4 2 8 3 12 .3 1 1 2 2 2h2c1 0 1.7-1 2-2 1-4 3-8 3-12 0-3-2-6-6-6z'/%3E%3C/svg%3E"); }
.mega-link-icon[data-icon="local"]::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M12 22s8-6 8-12A8 8 0 0 0 4 10c0 6 8 12 8 12z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M12 22s8-6 8-12A8 8 0 0 0 4 10c0 6 8 12 8 12z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }
.mega-link-icon[data-icon="ecommerce"]::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z'/%3E%3Cpath d='M3 6h18M16 10a4 4 0 0 1-8 0'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z'/%3E%3Cpath d='M3 6h18M16 10a4 4 0 0 1-8 0'/%3E%3C/svg%3E"); }
.mega-link-icon[data-icon="paid-ads"]::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 11L21 3L17 21L13 13L3 11Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 11L21 3L17 21L13 13L3 11Z'/%3E%3C/svg%3E"); }
.mega-link-icon[data-icon="leads"]::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3L21 3L15 12L15 19L9 21L9 12Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3L21 3L15 12L15 19L9 21L9 12Z'/%3E%3C/svg%3E"); }
.mega-link-icon[data-icon="email"]::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='M3 7l9 6 9-6'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='M3 7l9 6 9-6'/%3E%3C/svg%3E"); }
.mega-link-icon[data-icon="saas"]::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='16' height='16' rx='2'/%3E%3Cpath d='M8 9l3 3-3 3M14 15h3'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='16' height='16' rx='2'/%3E%3Cpath d='M8 9l3 3-3 3M14 15h3'/%3E%3C/svg%3E"); }
.mega-link-icon[data-icon="domains"]::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18'/%3E%3Cpath d='M12 3a15 15 0 0 1 0 18a15 15 0 0 1 0-18z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18'/%3E%3Cpath d='M12 3a15 15 0 0 1 0 18a15 15 0 0 1 0-18z'/%3E%3C/svg%3E"); }
.mega-link-icon[data-icon="crm"]::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H7a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='10' cy='7' r='4'/%3E%3Cpath d='M21 21v-2a4 4 0 0 0-3-3.87M15.5 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H7a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='10' cy='7' r='4'/%3E%3Cpath d='M21 21v-2a4 4 0 0 0-3-3.87M15.5 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E"); }
.mega-link-icon[data-icon="ai"]::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2l1.5 6.5L20 10l-6.5 1.5L12 18l-1.5-6.5L4 10l6.5-1.5Z'/%3E%3Cpath d='M19 4l.5 2 2 .5-2 .5L19 9l-.5-2-2-.5 2-.5Z'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2l1.5 6.5L20 10l-6.5 1.5L12 18l-1.5-6.5L4 10l6.5-1.5Z'/%3E%3Cpath d='M19 4l.5 2 2 .5-2 .5L19 9l-.5-2-2-.5 2-.5Z'/%3E%3C/svg%3E"); }
.mega-link-icon[data-icon="content"]::before { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpath d='M14 2v6h6M8 13h8M8 17h5'/%3E%3C/svg%3E"); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpath d='M14 2v6h6M8 13h8M8 17h5'/%3E%3C/svg%3E"); }

.mega-link-content { flex: 1; min-width: 0; }
.mega-link-title {
  display: flex; align-items: center; gap: 8px;
  color: #ffffff; font-size: 0.85rem; font-weight: 500;
  margin-bottom: 3px; line-height: 1.3;
}
.mega-link-sub { color: rgba(255,255,255,0.48); font-size: 0.75rem; line-height: 1.4; }

/* New badge */
.badge-new {
  display: inline-flex;
  padding: 2px 7px;
  background: rgba(124,58,237,0.18);
  border: 1px solid rgba(124,58,237,0.4);
  border-radius: 50px;
  color: #b59bff;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Featured promo card */
.mega-featured {
  display: flex; flex-direction: column; gap: 7px;
  padding: 16px;
  margin-top: 8px;
  background: linear-gradient(135deg, rgba(233,30,140,0.13) 0%, rgba(124,58,237,0.13) 100%);
  border: 1px solid rgba(233,30,140,0.28);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}
.mega-featured:hover { border-color: rgba(233,30,140,0.5); transform: translateY(-1px); }
.mega-featured-pill {
  display: inline-flex; align-self: flex-start;
  padding: 2px 9px;
  background: rgba(233,30,140,0.22);
  border-radius: 50px;
  color: #f48cb8;
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.mega-featured-title { color: #fff; font-size: 1.05rem; font-weight: 700; line-height: 1.2; }
.mega-featured-title .italic-accent { font-style: italic; font-family: var(--serif); color: #f48cb8; font-weight: 500; }
.mega-featured-sub { color: rgba(255,255,255,0.55); font-size: 0.75rem; line-height: 1.4; }
.mega-featured-cta {
  display: inline-flex; align-items: center; gap: 5px;
  color: #f48cb8; font-size: 0.8rem; font-weight: 500; margin-top: 2px;
}

/* Mobile menu sections */

@media (prefers-reduced-motion: reduce) {
  .mega-panel { transition: none; }
  .nav-chev { transition: none; }
}

/* ===== MOBILE BURGER ===== */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE MENU ===== */

/* Mobile menu section headings (Growth / Build / Scale) */

/* ===== NAVBAR RESPONSIVE BREAKPOINT ===== */
/* The full desktop nav (Home/Services/Results/About/Insights/Contact + CTA)
   is too wide below ~900px — collapse to the burger menu there. */
@media (max-width: 900px) {
  .nav-links,
  .nav-cta { display: none !important; }
  .nav-burger { display: flex !important; }
  /* Never let the services mega-panel overlay content on mobile */
  .mega-panel { display: none !important; }

  /* Push the burger to the right corner; logo stays at the left */
  .navbar { justify-content: flex-end; }
  .nav-inner {
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 6px;
    gap: 0;
  }
}

/* ===== PRELOADER ===== */
@keyframes preloaderFill {
  0%   { width: 0%; }
  60%  { width: 75%; }
  100% { width: 100%; }
}
@keyframes preloaderFadeOut {
  0%   { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}
@keyframes preloaderLogoPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.04); }
}
#preloader {
  position: fixed;
  inset: 0;
  background: #080808;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: preloaderFadeOut 0.6s ease forwards;
  animation-delay: 1.8s;
}
#preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.preloader-logo-img {
  width: 160px;
  height: auto;
  filter: brightness(0) invert(1);
  animation: preloaderLogoPulse 1.2s ease-in-out infinite;
}
.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #e91e8c, #818cf8);
  border-radius: 2px;
  animation: preloaderFill 1.6s ease forwards;
}

/* ===== HERO ===== */
/* ===== HERO — FRAMER-STYLE 2-COLUMN LAYOUT ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #080808;
  overflow: hidden;
  padding: 0;
  perspective: 1400px;
  perspective-origin: 50% 80%;
}

/* BLOBS */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
}
.blob-1 {
  width: 520px; height: 520px;
  background: #e91e8c;
  opacity: 0.09;
  top: -180px; right: -80px;
  animation: blobPulse 10s ease-in-out infinite;
}
.blob-2 {
  width: 380px; height: 380px;
  background: #7c3aed;
  opacity: 0.08;
  top: 50%; left: -120px;
  animation: blobPulse 13s ease-in-out infinite reverse;
}
@keyframes blobPulse {
  0%,100% { transform: scale(1); }
  33%     { transform: scale(1.15) translate(20px,-20px); }
  66%     { transform: scale(0.9) translate(-15px,15px); }
}

.hero-float-dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #7c3aed;
  top: 38%; right: 36%;
  z-index: 2;
  animation: floatDot 4s ease-in-out infinite;
}

.hero-beam {
  position: absolute;
  top: 0; left: -60%;
  width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(233,30,140,0.07) 50%, transparent 70%);
  animation: beam-sweep 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes beam-sweep {
  0%   { left: -60%; }
  100% { left: 160%; }
}

/* HERO TEXT */
.hero-inner {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 48px 80px;
}
.hero-content {
  position: relative;
  z-index: 4;
  max-width: 820px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(233,30,140,0.1);
  border: 1px solid rgba(233,30,140,0.25);
  color: #e91e8c;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 40px;
  margin-bottom: 28px;
}
.hero-h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #fff;
}
.hero-h1 em {
  font-family: var(--serif);
  font-style: italic;
  color: #e91e8c;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}
.btn-outline:hover {
  border-color: #e91e8c;
  background: rgba(233,30,140,0.08);
  transform: translateY(-1px);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
}
.hero-trust strong { color: #fff; font-weight: 700; }
.trust-stars { color: #f5b800; letter-spacing: 2px; }

/* ANGLE CARD SLIDER */
.angle-slider-wrapper {
  position: absolute;
  bottom: -250px;
  left: -8%;
  width: 116%;
  transform: rotateX(28deg) rotate(-12deg);
  transform-origin: left bottom;
  transform-style: preserve-3d;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.angle-slider-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  width: max-content;
  animation: angleScroll 40s linear infinite;
  pointer-events: all;
}
.angle-slider-track:hover { animation-play-state: paused; }
@keyframes angleScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.angle-card {
  flex-shrink: 0;
  width: 390px;
  height: 410px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 4px 16px rgba(0,0,0,0.4);
  cursor: default;
  transition: transform 0.3s, box-shadow 0.3s;
}
.angle-card:hover {
  transform: scale(1.03);
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 30px rgba(233,30,140,0.15);
}
.angle-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.angle-card:hover img { transform: scale(1.06); }
.angle-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 14px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.angle-card-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}
.angle-card-stat {
  font-size: 0.72rem;
  color: #e91e8c;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 1280px) {
  .angle-card { width: 320px; height: 340px; }
}
@media (max-width: 1024px) {
  .hero-inner { padding: 100px 5vw 80px; }
  .hero-content { max-width: 100%; }
  .angle-slider-wrapper { bottom: -200px; }
  .angle-card { width: 280px; height: 300px; }
}
@media (max-width: 768px) {
  .hero-inner { padding: 90px 5vw 60px; }
  .hero-h1 { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .angle-slider-wrapper { bottom: -160px; }
  .angle-card { width: 220px; height: 240px; border-radius: 14px; }
  .hero-ctas { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  .angle-slider-track { animation: none; }
  .angle-card:hover { transform: none; }
  .hero-blob { animation: none; }
  .hero-beam { animation: none; }
}

/* ===== OLD HERO CHILDREN (kept for legacy, no longer in DOM) ===== */
.hero-content { position: relative; z-index: 4; max-width: 680px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 32px;
}
.stars { color: #f5a623; letter-spacing: 2px; }

.hero-heading {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-heading em {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
}

.hero-book {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 50;
  box-shadow: 0 8px 32px rgba(233,30,140,0.35);
  animation: heroBookPop 0.7s cubic-bezier(0.22,1,0.36,1) 1s both;
}
@keyframes heroBookPop {
  from { opacity: 0; transform: scale(0.8) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ===== HERO IMAGE SCROLL STRIP ===== */
.hero-img-strip {
  width: 100%;
  background: #080808;
  overflow: hidden;
  padding: 24px 0 48px;
  mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.hero-img-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: heroImgScroll 40s linear infinite;
}

.hero-img-strip:hover .hero-img-track { animation-play-state: paused; }

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

/* Cards — small, flat, no tilt */
.hi-card {
  position: relative;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}

.hi-card--photo {
  width: 220px;
  height: 240px;
}

.hi-card--photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hi-card--phone {
  width: 150px;
  height: 240px;
  padding: 6px;
  background: linear-gradient(180deg, #1c1c1c 0%, #0a0a0a 100%);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.07);
}

.hi-phone-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.hi-phone-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hi-phone-notch {
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 12px; background: #000;
  border-radius: 0 0 8px 8px; z-index: 2;
}

.hi-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 10px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  display: flex; flex-direction: column; gap: 1px;
}

.hi-tag {
  font-size: 0.5rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: #fff;
  background: rgba(233,30,140,0.8); padding: 2px 6px;
  border-radius: 20px; display: inline-block;
  align-self: flex-start; margin-bottom: 2px;
}

.hi-name { font-size: 0.75rem; font-weight: 700; color: #fff; }
.hi-stat { font-size: 0.65rem; color: #e91e8c; font-weight: 600; }

@media (max-width: 768px) {
  .hi-card--photo { width: 180px; height: 200px; }
  .hi-card--phone { width: 130px; height: 200px; }
  .hero-img-strip { padding: 16px 0 32px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-img-track { animation: none; }
}

/* ===== TRUSTED BY ===== */
.trusted {
  padding: 60px 0 80px;
  text-align: center;
}
.trusted-label {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.marquee-wrap {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.marquee-track { display: flex; width: 100%; overflow: hidden; }
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-inner:hover { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-item {
  display: inline-block;
  padding: 0 32px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  cursor: default;
}
.logo-item:hover { color: rgba(255,255,255,0.9); }
.logo-serif { font-family: var(--serif); font-style: italic; }
.logo-bold { font-weight: 800; }
.logo-sep {
  color: rgba(255,255,255,0.15);
  font-size: 0.7rem;
}

/* ===== SECTION SHARED ===== */
.section-tag {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.section-heading {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 60px;
}
.section-heading em {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}


/* ===== STATS SHOWCASE ===== */
.stats-showcase {
  position: relative;
  background: #080808;
  padding: 140px 24px 60px;
  min-height: 720px;
  overflow: hidden;
}
.stats-bg-glow-1 {
  position: absolute; top: 10%; left: -10%;
  width: 500px; height: 500px; background: #e91e8c;
  filter: blur(140px); opacity: 0.12; pointer-events: none; border-radius: 50%;
}
.stats-bg-glow-2 {
  position: absolute; bottom: 5%; right: -10%;
  width: 600px; height: 600px; background: #7c3aed;
  filter: blur(160px); opacity: 0.14; pointer-events: none; border-radius: 50%;
}
.stats-bg-glow-3 {
  position: absolute; top: 50%; left: 40%;
  width: 400px; height: 400px; background: #e91e8c;
  filter: blur(120px); opacity: 0.08; pointer-events: none; border-radius: 50%;
  transform: translateY(-50%);
}
.stats-container {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  height: 560px;
  z-index: 2;
}
.stat-item {
  position: absolute;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.stat-item.is-visible { opacity: 1; transform: translateY(0); }
.stat-item--1 { top: 8%;    left: 8%;   animation: floatA 8s  ease-in-out infinite; }
.stat-item--2 { top: 14%;   right: 6%;  animation: floatB 9s  ease-in-out infinite; animation-delay: -2s; }
.stat-item--3 { top: 44%;   left: 38%;  animation: floatA 10s ease-in-out infinite; animation-delay: -4s; }
.stat-item--4 { bottom: 14%; left: 12%; animation: floatB 11s ease-in-out infinite; animation-delay: -1s; }
.stat-item--5 { bottom: 8%;  right: 10%; animation: floatA 9s ease-in-out infinite; animation-delay: -3s; }
@keyframes floatA {
  0%,100% { transform: translateY(0) translateX(0); }
  50%     { transform: translateY(-10px) translateX(4px); }
}
@keyframes floatB {
  0%,100% { transform: translateY(0) translateX(0); }
  50%     { transform: translateY(8px) translateX(-4px); }
}
.stat-number {
  font-family: var(--sans);
  font-size: clamp(72px, 9vw, 140px);
  font-weight: 900; line-height: 0.9;
  letter-spacing: -0.04em;
  display: flex; align-items: baseline;
}
.stat-num-prefix { font-size: 0.7em; margin-right: 4px; }
.stat-num-suffix { font-size: 0.8em; margin-left: 2px; }
.stat-label {
  font-size: 13px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.85); margin-top: 4px;
}
.stats-cta-wrap {
  position: relative; display: flex;
  justify-content: center; z-index: 3;
}
.stats-cta {
  display: inline-flex; align-items: center;
  padding: 16px 36px; background: #e91e8c;
  border-radius: 50px; font-size: 15px; font-weight: 600;
  color: #fff; text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(233,30,140,0.3);
}
.stats-cta:hover {
  background: #f04ba1; transform: translateY(-2px);
  box-shadow: 0 14px 50px rgba(233,30,140,0.45);
}
@media (max-width: 1024px) {
  .stats-showcase { padding: 100px 24px 80px; }
  .stats-container { height: 520px; }
  .stat-number { font-size: clamp(56px, 10vw, 100px); }
  .stat-item--1 { top: 6%; left: 4%; }
  .stat-item--2 { top: 10%; right: 4%; }
  .stat-item--3 { top: 46%; left: 32%; }
  .stat-item--4 { bottom: 16%; left: 8%; }
  .stat-item--5 { bottom: 8%; right: 6%; }
}
@media (max-width: 768px) {
  .stats-showcase { padding: 80px 24px 60px; min-height: auto; }
  .stats-container {
    height: auto; display: flex; flex-direction: column;
    align-items: center; gap: 48px; margin-bottom: 48px;
  }
  .stat-item { position: static; text-align: center; align-items: center; animation: none !important; }
  .stat-number { font-size: clamp(56px, 14vw, 88px); justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .stat-item { animation: none !important; opacity: 1; transform: none; }
  .stats-cta:hover { transform: none; }
}

/* ===== WORKING INSYNC ===== */
.working-insync {
  position: relative;
  background: transparent;
  padding: 60px 0 60px;
  min-height: 720px;
  overflow: hidden;
}
.wi-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 6vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── 3D Wheel column ── */
.services-wheel-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 560px;
  overflow: hidden;
}
.services-wheel-stage {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1000px;
  perspective-origin: center center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-wheel {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 280px;
  transform-style: preserve-3d;
  animation: servicesWheelSpin 18s linear infinite;
}
.services-wheel-word {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin-top: -24px;
  font-family: var(--sans);
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #ffffff;
  white-space: nowrap;
  text-align: center;
  transform: rotateX(var(--angle)) translateZ(150px);
  backface-visibility: hidden;
}
.services-wheel-mask {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    #080808 0%,
    rgba(8,8,8,0.5) 20%,
    transparent 38%,
    transparent 62%,
    rgba(8,8,8,0.5) 80%,
    #080808 100%
  );
}
@keyframes servicesWheelSpin {
  from { transform: rotateX(0deg); }
  to   { transform: rotateX(360deg); }
}

/* ── Text column ── */
.wi-col-text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.wi-pill {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 40px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.wi-heading {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0;
}
.wi-heading em {
  font-family: var(--serif);
  font-style: italic;
  color: #e91e8c;
}
.wi-para {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 0;
}
.wi-service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.wi-service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.wi-service-link:hover {
  border-color: #e91e8c;
  color: #e91e8c;
  background: rgba(233,30,140,0.06);
}
.wi-cta { margin-top: 8px; align-self: flex-start; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-wheel-col {
    height: 440px;
  }
  .services-wheel {
    height: 240px;
    max-width: 300px;
  }
  .services-wheel-word {
    transform: rotateX(var(--angle)) translateZ(120px);
    font-size: clamp(28px, 4vw, 38px);
    margin-top: -20px;
  }
}
@media (max-width: 900px) {
  .wi-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .wi-cta { align-self: stretch; text-align: center; justify-content: center; }
}
@media (max-width: 768px) {
  .services-wheel-col {
    height: 280px;
    padding-left: 0;
    justify-content: center;
    order: 2;
  }
  .services-wheel {
    height: 200px;
    max-width: 100%;
  }
  .services-wheel-word {
    transform: rotateX(var(--angle)) translateZ(100px);
    font-size: clamp(28px, 8vw, 40px);
    margin-top: -20px;
    text-align: center;
    left: 0;
    right: 0;
  }
}
@media (max-width: 600px) {
  .working-insync { padding: 80px 0; min-height: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .services-wheel { animation: none; }
  .services-wheel-word {
    transform: none;
    position: relative;
    top: auto;
    margin: 12px 0;
    color: rgba(255,255,255,0.85);
    backface-visibility: visible;
  }
  .services-wheel-mask { display: none; }
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 6vw;
  position: relative;
  overflow: hidden;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px 40px 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.service-card:hover {
  border-color: rgba(233,30,140,0.3);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  transform: translateY(-4px);
}
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  text-align: center;
  margin-bottom: 32px;
}

/* Ads tree */
.ads-tree { display: flex; flex-direction: column; align-items: center; gap: 0; }
.ads-tree-icons {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 260px;
}
.ads-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.meta-icon { background: #1877F2; }
.google-icon { background: #4285F4; }
.tiktok-icon { background: #111; }

.ads-tree-lines { width: 100%; max-width: 300px; margin: -2px 0; }
.ads-tree-lines svg { width: 100%; height: 80px; }

.ads-result-bar {
  width: 100%;
  max-width: 260px;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 16px;
}
.result-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 10px;
  background: linear-gradient(90deg, #7c3aed, var(--pink));
  transition: width 1.4s cubic-bezier(0.22,1,0.36,1);
}

/* Social visual */
.social-visual { position: relative; height: 160px; margin-top: 8px; }
.follower-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--pink);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(233,30,140,0.4);
  animation: badgePop 3s ease-in-out infinite;
}
@keyframes badgePop {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
.social-chart { position: absolute; bottom: 0; left: 0; right: 0; height: 130px; }
.social-chart svg { width: 100%; height: 100%; }
.social-dot-pink {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 10px; height: 10px;
  background: var(--pink);
  border-radius: 50%;
  animation: floatDot 4s ease-in-out infinite;
}

/* ===== PROOF IN PERFORMANCE ===== */
@keyframes proofFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes proofPulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(233,30,140,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(233,30,140,0); }
  100% { box-shadow: 0 0 0 0 rgba(233,30,140,0); }
}
@keyframes proofArrowBounce {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50%       { transform: translateY(-50%) translateX(4px); }
}

.proof-section {
  position: relative;
  padding: 20px 32px 100px;
  background: transparent;
  overflow: hidden;
}
/* Ambient glow blobs */
.proof-section::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: #e91e8c;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.06;
  pointer-events: none;
}
.proof-section::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  background: #7c3aed;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.08;
  pointer-events: none;
}

.proof-header {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
  animation: proofFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) both;
}
.proof-heading {
  font-family: var(--sans);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 12px;
}
.proof-heading .italic-accent {
  font-family: var(--serif);
  font-style: italic;
  color: #e91e8c;
  font-weight: 500;
}
.proof-sub {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
  margin: 0 auto;
  max-width: 560px;
}

/* Slider — outer wrapper holds arrow, inner clips track */
.proof-slider-wrap {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding-right: 72px; /* room for arrow */
}
.proof-slider-clip {
  overflow: hidden;
  border-radius: 4px;
}
.proof-slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Cards */
.proof-card {
  flex: 0 0 calc(33.333% - 14px);
  position: relative;
  aspect-ratio: 3/3.7;
  border-radius: 18px;
  overflow: hidden;
  background: #1a1a1a;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.4s ease;
}
.proof-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.proof-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.proof-card:hover img {
  transform: scale(1.06);
}
.proof-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 0%,
    transparent 45%,
    rgba(0,0,0,0.55) 75%,
    rgba(0,0,0,0.9) 100%
  );
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.proof-card:hover .proof-card-overlay {
  opacity: 0.9;
}
.proof-card-meta {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  text-align: center;
  z-index: 2;
  transform: translateY(4px);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.proof-card:hover .proof-card-meta {
  transform: translateY(0);
}
.proof-card-name {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.proof-card-stats {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}
.proof-stat {
  padding: 6px 12px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.proof-card:hover .proof-stat {
  background: rgba(233,30,140,0.2);
  border-color: rgba(233,30,140,0.4);
}

/* Arrow — sits outside the clip div so it's never cut */
.proof-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  z-index: 10;
  color: #111111;
  animation: proofPulseRing 2.5s ease-out infinite,
             proofArrowBounce 2s ease-in-out infinite;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.proof-arrow:hover {
  background: #e91e8c;
  color: #fff;
  box-shadow: 0 8px 36px rgba(233,30,140,0.45);
  animation: none;
  transform: translateY(-50%) scale(1.1);
}

/* CTA */
.proof-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.proof-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: rgba(17,17,17,0.85);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.proof-cta:hover {
  background: rgba(30,30,30,0.95);
  border-color: rgba(255,255,255,0.25);
}

/* Responsive */
@media (max-width: 1024px) {
  .proof-section { padding: 80px 24px; }
  .proof-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 768px) {
  .proof-section { padding: 60px 16px; }
  .proof-header { margin-bottom: 40px; }
  .proof-card { flex: 0 0 calc(100% - 8px); }
  .proof-arrow { right: 0; width: 42px; height: 42px; }
  .proof-card-name { font-size: 15px; }
  .proof-stat { font-size: 10px; padding: 5px 10px; }
}
@media (prefers-reduced-motion: reduce) {
  .proof-slider-track { transition: none; }
  .proof-arrow:hover { transform: translateY(-50%); }
}

/* ===== REVIEWS / DON'T JUST TAKE OUR WORD FOR IT ===== */
.reviews-section {
  position: relative;
  padding: 100px 0;
  background: transparent;
  overflow: hidden;
}
.reviews-header {
  text-align: center;
}
.reviews-pill {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(233,30,140,0.12);
  border: 1px solid rgba(233,30,140,0.3);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #e91e8c;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.reviews-heading {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  text-align: center;
  margin: 0 auto 56px;
  max-width: 700px;
  padding: 0 24px;
}
.reviews-heading .italic-accent {
  font-family: var(--serif);
  font-style: italic;
  color: #e91e8c;
  font-weight: 700;
}
.reviews-marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.reviews-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
  margin-bottom: 16px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.reviews-marquee:last-child {
  margin-bottom: 0;
}
.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
}
.reviews-track--left {
  animation: reviewMarqueeLeft 70s linear infinite;
}
.reviews-track--right {
  animation: reviewMarqueeRight 85s linear infinite;
}
@keyframes reviewMarqueeLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes reviewMarqueeRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.review-card {
  flex: 0 0 380px;
  padding: 28px 28px 24px;
  background: #111111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s, transform 0.3s;
}
.review-card:hover {
  border-color: rgba(233,30,140,0.25);
  transform: translateY(-4px);
}
.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
}
.review-avatar.g1  { background: linear-gradient(135deg,#e91e8c,#f472b6); }
.review-avatar.g2  { background: linear-gradient(135deg,#6366f1,#818cf8); }
.review-avatar.g3  { background: linear-gradient(135deg,#14b8a6,#0d9488); }
.review-avatar.g4  { background: linear-gradient(135deg,#f97316,#fb923c); }
.review-avatar.g5  { background: linear-gradient(135deg,#8b5cf6,#a78bfa); }
.review-avatar.g6  { background: linear-gradient(135deg,#ec4899,#f9a8d4); }
.review-avatar.g7  { background: linear-gradient(135deg,#0ea5e9,#38bdf8); }
.review-avatar.g8  { background: linear-gradient(135deg,#10b981,#34d399); }
.review-avatar.g9  { background: linear-gradient(135deg,#f59e0b,#fbbf24); }
.review-avatar.g10 { background: linear-gradient(135deg,#ef4444,#f87171); }
.review-meta {
  display: flex;
  flex-direction: column;
}
.review-name {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}
.review-business {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  margin-top: 2px;
}
.review-stars {
  font-size: 14px;
  color: #fbbf24;
  letter-spacing: 2px;
  line-height: 1;
}
.review-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  flex: 1;
}
/* Responsive */
@media (max-width: 768px) {
  .reviews-section { padding: 72px 0; }
  .review-card { flex: 0 0 300px; }
  .reviews-heading { font-size: clamp(28px, 7vw, 40px); }
}

/* ===== SUCCESS STORIES ===== */
.stories {
  padding: 100px 6vw;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.stories-sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 56px;
  margin-top: -36px;
}

.stories-carousel-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}
.stories-carousel {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}

.story-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.story-img {
  width: 100%;
  height: 280px;
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}
.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-app-mock {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
}
.story-app-text {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}
.story-phone {
  font-family: var(--serif);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 14px;
  border-radius: 8px;
  letter-spacing: 1px;
}

.story-brand-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 6px;
  color: #1a1a1a;
}

.story-body {
  padding: 24px 24px 28px;
  text-align: left;
}
.story-body h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.story-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.story-tag {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
}
.carousel-btn:hover { background: var(--pink); transform: translateY(-50%) scale(1.08); }
.carousel-next { right: -22px; }
.carousel-prev { left: -22px; }

.stories-cta { margin-top: 48px; }

/* ===== PROCESS ===== */
.process {
  padding: 100px 6vw;
  text-align: center;
}
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.process-step {
  flex: 1;
  padding: 0 32px;
  text-align: center;
}
.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  font-family: var(--serif);
}
.process-step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}
.process-line {
  flex: 0 0 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.12), transparent);
  margin-top: 48px;
}

/* ===== FINAL CTA ===== */
/* Final CTA keyframes */
@keyframes finalGlowPulse {
  0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 0.7; transform: translate(-50%, -50%) scale(1.12); }
}
@keyframes starPop {
  0%   { opacity: 0; transform: translateY(16px) scale(0.6); }
  60%  { transform: translateY(-4px) scale(1.15); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes ctaFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes btnPulseGlow {
  0%, 100% { box-shadow: 0 12px 50px rgba(233,30,140,0.4); }
  50%       { box-shadow: 0 12px 70px rgba(233,30,140,0.7), 0 0 40px rgba(233,30,140,0.3); }
}
@keyframes btnShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.final-cta {
  position: relative;
  padding: 120px 32px 80px;
  background: transparent;
  overflow: hidden;
}
.final-cta-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.35) 0%, rgba(124,58,237,0.18) 25%, rgba(233,30,140,0.08) 50%, transparent 75%);
  transform: translate(-50%, -50%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
  animation: finalGlowPulse 6s ease-in-out infinite;
}
.final-cta-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}
.final-cta-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: #f5b800;
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 32px;
  animation: starPop 0.7s cubic-bezier(0.34,1.56,0.64,1) both;
}
.final-cta-stars span:nth-child(1) { animation-delay: 0.1s; }
.final-cta-stars span:nth-child(2) { animation-delay: 0.2s; }
.final-cta-stars span:nth-child(3) { animation-delay: 0.3s; }
.final-cta-stars span:nth-child(4) { animation-delay: 0.4s; }
.final-cta-stars span:nth-child(5) { animation-delay: 0.5s; }
.final-cta-heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 24px;
  animation: ctaFadeUp 0.8s ease both;
  animation-delay: 0.3s;
  opacity: 0;
  animation-fill-mode: forwards;
}
.final-cta-heading .italic-accent {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: #e91e8c;
  font-weight: 500;
}
.final-cta-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  margin: 0 auto 36px;
  max-width: 560px;
  animation: ctaFadeUp 0.8s ease both;
  animation-delay: 0.5s;
  opacity: 0;
  animation-fill-mode: forwards;
}
.final-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #e91e8c;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 12px 50px rgba(233,30,140,0.4);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  animation: btnPulseGlow 3s ease-in-out infinite;
  animation-delay: 0s;
  opacity: 1;
}
.final-cta-button:hover {
  background: #f04ba1;
  transform: translateY(-3px);
  box-shadow: 0 16px 60px rgba(233,30,140,0.65);
  animation: none;
}
.final-cta-cards {
  position: relative;
  max-width: 720px;
  margin: 60px auto 0;
  height: 320px;
  z-index: 2;
}
.cta-card {
  position: absolute;
  left: 50%;
  top: 0;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 30px rgba(233,30,140,0.1);
  overflow: hidden;
}
.cta-card--left {
  width: 200px;
  height: 260px;
  transform: translateX(-50%) translateX(-200px) rotate(-12deg);
  animation: ctaCardFloat1 6s ease-in-out infinite;
}
.cta-card--center {
  width: 220px;
  height: 280px;
  top: 20px;
  transform: translateX(-50%) rotate(0deg);
  z-index: 3;
  box-shadow: 0 30px 70px rgba(0,0,0,0.6), 0 0 40px rgba(233,30,140,0.15);
  animation: ctaCardFloat2 7s ease-in-out infinite;
}
.cta-card--right {
  width: 200px;
  height: 260px;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 2px solid #2a2a2a;
  border-radius: 28px;
  transform: translateX(-50%) translateX(200px) rotate(12deg);
  animation: ctaCardFloat3 6.5s ease-in-out infinite;
}
.cta-card-bg {
  position: absolute;
  inset: 0;
}
.cta-card-bg--gold {
  background: linear-gradient(135deg, #d4a574 0%, #8b6940 100%);
}
.cta-card-bg--blue {
  background: linear-gradient(135deg, #2a4a8a 0%, #1a2a50 100%);
}
.cta-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 60%, rgba(0,0,0,0.5) 100%);
}
.cta-card--center .cta-card-overlay {
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 30%, transparent 60%, rgba(0,0,0,0.6) 100%);
}
.cta-card-content {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
}
.cta-card-content--center {
  text-align: center;
}
.cta-card-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 2px;
}
.cta-card-tag {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cta-card-icon {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-card-caption-main {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}
.cta-card-caption-italic {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 13px;
  font-style: italic;
  color: #f48cb8;
  margin-top: 2px;
}
.cta-card-pill {
  margin-top: 10px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.95);
  border-radius: 50px;
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #2a4a8a;
}
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 18px;
  background: #000;
  border-radius: 0 0 10px 10px;
  z-index: 2;
}
.cta-card-phone-screen {
  position: absolute;
  inset: 12px;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cta-card-phone-brand {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1.1;
  text-align: center;
}
.cta-card-phone-pill {
  margin-top: 16px;
  padding: 6px 14px;
  background: #e91e8c;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
}
@keyframes ctaCardFloat1 {
  0%, 100% { transform: translateX(-50%) translateX(-200px) rotate(-12deg) translateY(0); }
  50%       { transform: translateX(-50%) translateX(-200px) rotate(-12deg) translateY(-8px); }
}
@keyframes ctaCardFloat2 {
  0%, 100% { transform: translateX(-50%) rotate(0deg) translateY(0); }
  50%       { transform: translateX(-50%) rotate(0deg) translateY(-12px); }
}
@keyframes ctaCardFloat3 {
  0%, 100% { transform: translateX(-50%) translateX(200px) rotate(12deg) translateY(0); }
  50%       { transform: translateX(-50%) translateX(200px) rotate(12deg) translateY(-6px); }
}
@media (max-width: 1024px) {
  .final-cta { padding: 100px 24px 60px; }
  .final-cta-cards { height: 280px; max-width: 560px; }
  .cta-card--left, .cta-card--right { width: 170px; height: 220px; }
  .cta-card--center { width: 190px; height: 240px; }
  .cta-card--left { transform: translateX(-50%) translateX(-150px) rotate(-12deg); animation: ctaCardFloat1Tablet 6s ease-in-out infinite; }
  .cta-card--right { transform: translateX(-50%) translateX(150px) rotate(12deg); animation: ctaCardFloat3Tablet 6.5s ease-in-out infinite; }
  @keyframes ctaCardFloat1Tablet {
    0%, 100% { transform: translateX(-50%) translateX(-150px) rotate(-12deg) translateY(0); }
    50%       { transform: translateX(-50%) translateX(-150px) rotate(-12deg) translateY(-8px); }
  }
  @keyframes ctaCardFloat3Tablet {
    0%, 100% { transform: translateX(-50%) translateX(150px) rotate(12deg) translateY(0); }
    50%       { transform: translateX(-50%) translateX(150px) rotate(12deg) translateY(-6px); }
  }
}
@media (max-width: 768px) {
  .final-cta { padding: 80px 20px 50px; }
  .final-cta-cards { height: 220px; max-width: 100%; }
  .cta-card--left, .cta-card--right { width: 130px; height: 170px; }
  .cta-card--center { width: 150px; height: 190px; top: 14px; }
  .cta-card--left { transform: translateX(-50%) translateX(-100px) rotate(-12deg); animation: ctaCardFloat1Mobile 6s ease-in-out infinite; }
  .cta-card--right { transform: translateX(-50%) translateX(100px) rotate(12deg); animation: ctaCardFloat3Mobile 6.5s ease-in-out infinite; }
  @keyframes ctaCardFloat1Mobile {
    0%, 100% { transform: translateX(-50%) translateX(-100px) rotate(-12deg) translateY(0); }
    50%       { transform: translateX(-50%) translateX(-100px) rotate(-12deg) translateY(-6px); }
  }
  @keyframes ctaCardFloat3Mobile {
    0%, 100% { transform: translateX(-50%) translateX(100px) rotate(12deg) translateY(0); }
    50%       { transform: translateX(-50%) translateX(100px) rotate(12deg) translateY(-4px); }
  }
  .cta-card-phone-brand { font-size: 16px; }
  .cta-card-icon { width: 40px; height: 40px; }
  .cta-card-caption-main, .cta-card-caption-italic { font-size: 11px; }
}
@media (prefers-reduced-motion: reduce) {
  .cta-card { animation: none !important; }
  .final-cta-button:hover { transform: none; }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  margin: 0 6vw 80px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 80px 6vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-blob {
  position: absolute;
  width: 400px; height: 400px;
  background: var(--pink);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 2; }
.cta-eyebrow {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.cta-heading {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-heading em { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.cta-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 36px;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 6vw;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .story-card { flex: 0 0 calc(50% - 12px); }
  .process-steps { flex-direction: column; align-items: center; }
  .process-line { width: 60px; height: 1px; margin: 0; }
}

@media (max-width: 640px) {
  .navbar { top: 12px; width: calc(100% - 24px); }
  .hero { padding: 120px 5vw 80px; }
  .hero-book { bottom: 20px; right: 20px; font-size: 0.8rem; padding: 10px 16px; }
  .story-card { flex: 0 0 85vw; }
  .carousel-next { right: -12px; }
  .carousel-prev { left: -12px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .cta-banner { padding: 60px 6vw; }
}

/* ===== HOMEPAGE — SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  background: var(--pink);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ===== HOMEPAGE — HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  padding: 0;
  perspective: 1400px;
  perspective-origin: 50% 80%;
}
.section-three-canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 0;
  pointer-events: none;
}
/* Ensure section content sits above canvas */
.process-section .section-inner,
.testimonials-section .section-inner {
  position: relative;
  z-index: 1;
}
.section-three-canvas { z-index: -1; }
.hero-three-canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 0;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
}
.hero-blob.blob-1 {
  width: 520px; height: 520px;
  background: var(--pink);
  opacity: 0.09;
  top: -180px; right: -80px;
  animation: blobPulse 10s ease-in-out infinite;
}
.hero-blob.blob-2 {
  width: 380px; height: 380px;
  background: #7c3aed;
  opacity: 0.08;
  top: 50%; left: -120px;
  animation: blobPulse 13s ease-in-out infinite reverse;
}
.hero-float-dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #7c3aed;
  top: 38%;
  right: 36%;
  z-index: 2;
  animation: floatDot 4s ease-in-out infinite;
}
@keyframes blobPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}
@keyframes floatDot {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-inner {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 6vw 80px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(233,30,140,0.1);
  border: 1px solid rgba(233,30,140,0.25);
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 40px;
  margin-bottom: 28px;
}
.hero-h1 {
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-h1 em { font-family: var(--serif); color: var(--pink); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.btn-hero { padding: 16px 32px; font-size: 1rem; border-radius: 50px; }
.hero-ctas .btn-outline {
  box-shadow: 0 0 16px rgba(233,30,140,0.25), 0 0 40px rgba(233,30,140,0.1);
  border-color: rgba(233,30,140,0.5);
  color: #fff;
  animation: outlineGlow 2.5s ease-in-out infinite;
}
.hero-ctas .btn-outline:hover {
  box-shadow: 0 0 28px rgba(233,30,140,0.55), 0 0 60px rgba(233,30,140,0.2);
  border-color: var(--pink);
}
@keyframes outlineGlow {
  0%,100% { box-shadow: 0 0 14px rgba(233,30,140,0.22), 0 0 36px rgba(233,30,140,0.08); }
  50%      { box-shadow: 0 0 26px rgba(233,30,140,0.45), 0 0 56px rgba(233,30,140,0.18); }
}
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}
.hero-stars { color: #f59e0b; letter-spacing: 2px; font-size: 1rem; }

/* ===== TRUSTED BY / MARQUEE ===== */
/* ===== TRUST STRIP — two-row logo marquee ===== */
.trust-strip {
  position: relative;
  background: #080808;
  padding: 80px 0 30px;
  z-index: 5;
  overflow: hidden;
}
.trust-strip-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}
.trust-strip-heading {
  text-align: center;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 40px;
  line-height: 1.4;
}
.trust-strip-heading strong {
  color: #ffffff;
  font-weight: 600;
}

.logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 12px 0;
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.logo-marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  align-items: center;
}

/* Row 1 — left */
.logo-marquee--left .logo-marquee-track {
  animation: marqueeLeft 60s linear infinite;
}
@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Row 2 — right */
.logo-marquee--right .logo-marquee-track {
  animation: marqueeRight 75s linear infinite;
}
@keyframes marqueeRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Row 3 — left again, offset speed so the rows don't sync */
.logo-marquee--left.logo-marquee--alt .logo-marquee-track {
  animation-duration: 72s;
}

/* Scrolling continues on hover — no pause */

.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 128px;
  padding: 0 12px;
}
.logo-item img {
  height: 112px;
  width: auto;
  max-width: 380px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.logo-item:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* Placeholder text (until real SVG logos arrive) */
.logo-placeholder {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}
.logo-item:hover .logo-placeholder {
  color: rgba(255,255,255,1);
  transform: scale(1.05);
}

/* TABLET */
@media (max-width: 1024px) {
  .trust-strip { padding: 60px 0 40px; }
  .trust-strip-heading { font-size: 13px; margin-bottom: 32px; }
  .logo-marquee-track { gap: 48px; }
  .logo-item { height: 104px; }
  .logo-item img { height: 88px; max-width: 290px; }
  .logo-marquee--left .logo-marquee-track  { animation-duration: 45s; }
  .logo-marquee--right .logo-marquee-track { animation-duration: 55s; }
  .logo-marquee--left.logo-marquee--alt .logo-marquee-track { animation-duration: 52s; }
}

/* MOBILE */
@media (max-width: 768px) {
  .trust-strip { padding: 48px 0 32px; }
  .trust-strip-heading { font-size: 11px; letter-spacing: 1px; margin-bottom: 24px; padding: 0 16px; }
  .logo-marquee-track { gap: 36px; }
  .logo-item { height: 92px; }
  .logo-item img { height: 74px; max-width: 240px; }
  .logo-placeholder { font-size: 13px; }
  .logo-marquee--left .logo-marquee-track  { animation-duration: 35s; }
  .logo-marquee--right .logo-marquee-track { animation-duration: 45s; }
  .logo-marquee--left.logo-marquee--alt .logo-marquee-track { animation-duration: 42s; }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track { animation: none; }
  .logo-item:hover img { transform: none; }
  .logo-item:hover .logo-placeholder { transform: none; }
}

/* ===== SECTION COMMONS ===== */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6vw;
}
.section-pill {
  display: inline-flex;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 20px;
}
.section-h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.section-h2 em { font-family: var(--serif); color: var(--pink); }
.section-intro {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 56px;
}
.section-center { text-align: center; }
.section-center .section-intro { margin: 0 auto 56px; }

/* ===== SERVICES GRID ===== */
.services-section { padding: 100px 0 20px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
/* ── Card shell ── */
.service-card {
  background: #16161e;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 36px 32px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
}
.service-card:hover {
  border-color: rgba(233,30,140,0.4);
  box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 0 40px rgba(233,30,140,0.07);
  transform: translateY(-6px);
}

/* ── Text block ── */
.sc-text {
  text-align: center;
  padding-bottom: 28px;
}
.sc-text h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.sc-text p {
  font-size: 0.9rem;
  color: rgba(166,171,177,0.9);
  line-height: 1.75;
}

/* ── Visual area (bottom of card) ── */
.sc-visual {
  position: relative;
  width: calc(100% + 0px);
  height: 220px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  margin-top: auto;
}

/* ──────────────────────────────────
   CARD 1 — ADS FUNNEL
────────────────────────────────── */
.sc-ads { justify-content: flex-end; gap: 0; padding: 0; }
.sc-ads-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.sc-picon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #1b1b28;
  border: 1.5px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, box-shadow 0.3s;
  animation: sc-picon-float 3s ease-in-out infinite;
}
.sc-picon:nth-child(2) { animation-delay: 0.4s; }
.sc-picon:nth-child(3) { animation-delay: 0.8s; }
@keyframes sc-picon-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
.service-card:hover .sc-picon {
  border-color: rgba(233,30,140,0.45);
  box-shadow: 0 0 20px rgba(233,30,140,0.15);
}
.sc-funnel-lines {
  width: 100%; height: 70px;
  flex-shrink: 0;
}
.sc-ads-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e91e8c, #7c3aed);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0;
  box-shadow: 0 8px 32px rgba(233,30,140,0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover .sc-ads-pill {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(233,30,140,0.5);
}

/* ──────────────────────────────────
   CARD 2 — SOCIAL WAVE CHART
────────────────────────────────── */
.sc-social { justify-content: flex-end; }
.sc-wave-chart { width: 100%; height: 140px; flex-shrink: 0; }
.sc-followers-badge {
  position: absolute;
  top: 16px; right: 20px;
  background: #e91e8c;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(233,30,140,0.4);
  animation: sc-badge-pop 2.5s ease-in-out infinite;
}
@keyframes sc-badge-pop {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}
.sc-pulse-dot { animation: sc-pulse 2s ease-in-out infinite; }
@keyframes sc-pulse {
  0%,100% { r: 10; opacity: 0.25; }
  50%      { r: 16; opacity: 0; }
}

/* ──────────────────────────────────
   CARD 3 — BROWSER MOCKUP
────────────────────────────────── */
.sc-webdev { align-items: center; justify-content: flex-end; }
.sc-browser {
  width: 90%;
  border-radius: 10px 10px 0 0;
  background: #1b1b28;
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom: none;
  overflow: hidden;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.4);
  transform: translateY(1px);
}
.sc-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #111118;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sc-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.sc-dot--red    { background: #ff5f57; }
.sc-dot--yellow { background: #febc2e; }
.sc-dot--green  { background: #28c840; }
.sc-browser-url {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  height: 16px;
  margin-left: 8px;
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  padding: 0 8px;
}
.sc-browser-body { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.sc-browser-hero-block {
  width: 100%; height: 52px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(233,30,140,0.25), rgba(124,58,237,0.25));
  animation: sc-shimmer 2.5s ease-in-out infinite alternate;
}
@keyframes sc-shimmer {
  from { opacity: 0.6; }
  to   { opacity: 1; }
}
.sc-browser-row { display: flex; gap: 6px; }
.sc-browser-card {
  flex: 1; height: 30px;
  border-radius: 5px;
  background: rgba(255,255,255,0.06);
}
.sc-browser-card:first-child { background: rgba(233,30,140,0.2); }
.sc-browser-line {
  height: 6px; border-radius: 3px;
  background: rgba(255,255,255,0.08);
}
.sc-browser-line--short { width: 60%; }

/* ──────────────────────────────────
   CARD 4 — SEO METRICS
────────────────────────────────── */
.sc-seo {
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 0 0 24px;
}
.sc-metric {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #1b1b28;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  transform: translateX(-60px);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.23,1,0.32,1), opacity 0.55s ease;
}
.sc-metric.sc-visible {
  transform: translateX(0);
  opacity: 1;
}
.sc-metric:nth-child(2) { transition-delay: 0.1s; }
.sc-metric:nth-child(3) { transition-delay: 0.2s; }
.sc-metric-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.sc-metric-value { font-size: 0.85rem; font-weight: 700; color: #fff; }
.sc-metric-value--pink { color: #e91e8c; }

/* ===== SERVICES NETWORK SPHERE ===== */
.network-sphere-wrap {
  position: relative;
  width: 100%;
  height: 520px;
  margin-top: 80px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(200,241,53,0.03);
  border: 1px solid rgba(200,241,53,0.08);
}
.network-sphere-wrap canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}
.network-sphere-label {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  pointer-events: none;
}
.network-sphere-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C8F135;
  border: 1px solid rgba(200,241,53,0.35);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 10px;
}
.network-sphere-label p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
@media (max-width: 768px) {
  .network-sphere-wrap { height: 360px; margin-top: 48px; }
}

/* ===== GLOBE SECTION ===== */
.globe-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0 60px;
  position: relative;
}
.globe-canvas {
  display: none;
  width: 400px !important;
  height: 400px !important;
  max-width: 90vw;
}
.globe-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: -16px;
}

/* ===== STORIES CAROUSEL ===== */
.stories-section { padding: 100px 0; }
.stories-carousel-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 48px;
}
.stories-carousel {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.story-card {
  min-width: 100%;
  padding: 60px 6vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-tag {
  grid-column: 1/-1;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.story-client {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.story-result-headline {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.story-result-headline strong { color: var(--pink); }
.story-body { font-size: 0.95rem; color: rgba(255,255,255,0.5); line-height: 1.75; }
.story-metrics {
  display: flex;
  gap: 32px;
}
.story-metric-num { font-size: 2.2rem; font-weight: 900; color: var(--pink); }
.story-metric-label { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 2px; }
.story-link { font-size: 0.9rem; font-weight: 700; color: var(--pink); }
.carousel-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 32px 0 0;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.carousel-btn:hover { background: var(--pink); border-color: var(--pink); }

/* ===== PROCESS ===== */
.process-section { padding: 100px 0; }
.process-steps {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
}
.process-card {
  flex: 1;
  background: #16161e;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
}
.process-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(233,30,140,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.process-card:hover {
  border-color: rgba(233,30,140,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), 0 0 36px rgba(233,30,140,0.07);
  transform: translateY(-5px);
}
.process-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(233,30,140,0.1);
  border: 1px solid rgba(233,30,140,0.28);
  color: #e91e8c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.process-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #0e0e14;
  border: 1px solid rgba(233,30,140,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.process-card:hover .process-icon-wrap {
  border-color: rgba(233,30,140,0.5);
  box-shadow: 0 0 24px rgba(233,30,140,0.15);
}
.process-card h3 { font-size: 1.3rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; margin: 0; }
.process-card p  { font-size: 0.9rem; color: rgba(166,171,177,0.9); line-height: 1.75; margin: 0; }
.process-arrow   { flex-shrink: 0; opacity: 0.5; }

/* ===== STATS BAND ===== */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-count-item {
  padding: 60px 40px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-count-item:last-child { border-right: none; }
.stat-count-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.stat-count-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 100px 0; }
.testimonials-carousel {
  max-width: 700px;
  margin: 48px auto 0;
  min-height: 180px;
  position: relative;
}
.testimonial-slide {
  display: none;
  text-align: center;
  animation: fadeInSlide 0.5s ease;
}
.testimonial-slide.active { display: block; }
@keyframes fadeInSlide {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.testimonial-quote {
  font-size: 1.2rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  font-family: var(--serif);
  margin-bottom: 20px;
}
.testimonial-cite {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  font-style: normal;
}
.testimonial-stars { color: #f59e0b; margin-top: 12px; letter-spacing: 3px; }
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.t-dot.active { background: var(--pink); transform: scale(1.3); }

/* ===== FAQ SECTION ===== */
.faq-section { padding: 100px 0; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--sans);
}
.faq-chevron {
  font-size: 1rem;
  color: var(--pink);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 20px; }
.faq-answer p { color: rgba(255,255,255,0.55); line-height: 1.8; font-size: 0.95rem; }

/* ===== CTA BANNER ===== */
.cta-banner-section {
  position: relative;
  padding: 120px 6vw;
  text-align: center;
  overflow: hidden;
  background: rgba(255,255,255,0.01);
}
.cta-banner-blob {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,30,140,0.18) 0%, rgba(124,58,237,0.1) 50%, transparent 70%);
  filter: blur(60px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: blobPulse 8s ease-in-out infinite;
}
.cta-float-dot {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #7c3aed;
  top: 30%; right: 20%;
  animation: floatDot 5s ease-in-out infinite;
}
.cta-banner-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-banner-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.cta-banner-inner h2 em { font-family: var(--serif); color: var(--pink); }
.cta-banner-inner p {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
}
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== LEAD FORM ===== */
.lead-section { padding: 100px 0; background: rgba(255,255,255,0.02); border-top: 1px solid var(--border); }
.lead-form-wrap { max-width: 800px; margin: 0 auto; }
.lead-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field--full { grid-column: 1/-1; }
/* Mixed row: textarea left, budget select right — textarea is taller so align top */
.form-row--mixed { align-items: start; }
.form-row--mixed .form-field:first-child textarea { height: 140px; resize: vertical; }
/* Italic accent inside section heading */
.section-h2 .italic-accent { font-family: var(--serif); font-style: italic; color: #e91e8c; font-weight: 700; }
.form-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.req { color: var(--pink); }
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 13px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(233,30,140,0.5);
  box-shadow: 0 0 0 3px rgba(233,30,140,0.08);
}
.form-field select { appearance: none; cursor: pointer; }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.2); }
.field-err { font-size: 0.8rem; color: var(--pink); min-height: 18px; }
.form-gdpr { flex-direction: row; align-items: flex-start; gap: 12px; }
.gdpr-label { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.5; }
.gdpr-label input { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; accent-color: var(--pink); cursor: pointer; }
.gdpr-label a { color: var(--pink); }
.form-submit-btn {
  padding: 16px 40px;
  font-size: 1rem;
  border-radius: 50px;
  width: 100%;
  font-family: var(--sans);
  font-weight: 700;
  opacity: 1;
  transition: opacity 0.2s, transform 0.2s;
}
.form-submit-btn:disabled { opacity: 0.45; cursor: not-allowed; }
.form-submit-btn:not(:disabled):hover { transform: translateY(-2px); }
.form-success { text-align: center; padding: 60px; }
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(233,30,140,0.1);
  border: 2px solid var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 24px;
}
.form-success h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 8px; }
.form-success p { color: rgba(255,255,255,0.55); }

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-sticky-cta.visible { opacity: 1; pointer-events: auto; }
@media (max-width: 768px) { .mobile-sticky-cta { display: block; } }

/* ===== FOCUS STATES (Accessibility) ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .story-card { grid-template-columns: 1fr; gap: 24px; }
  .process-steps { flex-direction: column; gap: 12px; }
  .process-arrow { transform: rotate(90deg); }
  .process-card { width: 100%; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stat-count-item:nth-child(2) { border-right: none; }
  .form-row { grid-template-columns: 1fr; }
  .globe-canvas { width: 300px !important; height: 300px !important; max-width: 85vw; }
}
@media (max-width: 600px) {
  .hero-h1 { font-size: 2.4rem; }
  .hero-ctas { flex-direction: column; }
  .btn-hero { text-align: center; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .stat-count-item { padding: 40px 20px; border-right: 1px solid var(--border); }
  .stat-count-item:nth-child(2) { border-right: none; }
  .stat-count-item:nth-child(3) { border-right: none; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
}

/* ===== ANIMATIONS ===== */
.hero-beam {
  position: absolute;
  top: 0; left: -60%;
  width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(233,30,140,0.07) 50%, transparent 70%);
  animation: beam-sweep 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes beam-sweep {
  0%   { left: -60%; }
  100% { left: 160%; }
}

.typed-cursor {
  display: inline-block;
  color: #e91e8c;
  font-style: normal;
  font-weight: 400;
  margin-left: 2px;
  animation: blink 0.9s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ===== DNA HELIX ===== */
.dna-helix-container {
  position: relative;
  margin: 20px auto 0;
  padding: 20px 0 0;
  margin-bottom: 0;
  max-width: 1200px;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}
.dna-blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(130px);
}
.dna-blob--pink   { top: -120px; left: -100px; width: 360px; height: 360px; background: #e91e8c; opacity: 0.14; }
.dna-blob--purple { bottom: -120px; right: -100px; width: 360px; height: 360px; background: #7c3aed; opacity: 0.12; }
.dna-blob--centre { top: 45%; left: 50%; transform: translate(-50%,-50%); width: 200px; height: 200px; background: #e91e8c; opacity: 0.08; filter: blur(100px); }
.dna-intro { text-align: center; padding: 0 24px 12px; position: relative; z-index: 2; }
.dna-pill {
  display: inline-block;
  padding: 7px 18px;
  border: 1px solid rgba(233,30,140,0.5);
  border-radius: 40px;
  color: #e91e8c;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.dna-subheading {
  color: #fff;
  font-family: Inter, sans-serif;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.03em;
  margin: 16px 0 8px;
}
.dna-subheading em { font-family: 'Playfair Display', Georgia, serif; font-weight: 400; font-style: italic; color: #e91e8c; }
.dna-description { color: rgba(255,255,255,0.5); font-family: Inter, sans-serif; font-size: 14px; max-width: 520px; margin: 0 auto; }
#insync-dna-canvas { width: 100%; height: 860px; position: relative; }
.dna-legend { display: flex; justify-content: center; gap: 28px; padding: 0 24px; position: relative; z-index: 2; flex-wrap: wrap; }
.dna-legend__item { display: flex; align-items: center; gap: 8px; }
.dna-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; }
.dna-dot--pink   { background: #e91e8c; box-shadow: 0 0 12px #e91e8c; }
.dna-dot--purple { background: #7c3aed; box-shadow: 0 0 12px #7c3aed; }
.dna-dot--white  { background: #fff;    box-shadow: 0 0 12px #fff; }
.dna-legend__label { color: rgba(255,255,255,0.7); font-family: Inter, sans-serif; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }
.dna-hint { text-align: center; padding: 14px 24px 0; position: relative; z-index: 2; color: rgba(255,255,255,0.3); font-family: Inter, sans-serif; font-size: 11px; letter-spacing: 0.08em; margin: 0; }
@media (max-width: 768px) {
  #insync-dna-canvas { height: 600px; }
  .dna-subheading { font-size: 24px; }
  .dna-description { font-size: 13px; }
}

/* ===== SITE FOOTER ===== */
.site-footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* CTA Strip */
.footer-cta {
  position: relative;
  overflow: hidden;
  padding: 90px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-cta__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.footer-cta__blob--pink   { width: 400px; height: 400px; background: #e91e8c; opacity: 0.14; top: -120px; left: -80px; }
.footer-cta__blob--purple { width: 400px; height: 400px; background: #7c3aed; opacity: 0.12; bottom: -120px; right: -80px; }
.footer-cta__inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.footer-cta__heading {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}
.footer-cta__heading .italic-accent {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  color: #e91e8c;
}
.footer-cta__subtext {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.footer-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 50px;
  background: linear-gradient(135deg, #e91e8c, #7c3aed);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.footer-cta__btn:hover { transform: scale(1.04); box-shadow: 0 8px 28px rgba(233,30,140,0.38); }

/* Main grid */
.footer-grid-wrap { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Brand column */
.footer-logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-wordmark {
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.footer-tagline {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 260px;
}
.footer-contact {
  list-style: none;
  margin-bottom: 24px;
}
.footer-contact li { margin-bottom: 6px; }
.footer-contact a, .footer-contact span {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover { color: #e91e8c; }
.footer-socials {
  display: flex;
  gap: 12px;
  list-style: none;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-socials a:hover { color: #e91e8c; border-color: rgba(233,30,140,0.5); background: rgba(233,30,140,0.08); }
.footer-socials a:focus-visible { outline: 2px solid #e91e8c; outline-offset: 2px; }

/* Nav columns */
.footer-heading {
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: #e91e8c; }
.footer-links a:focus-visible { outline: 2px solid #e91e8c; outline-offset: 2px; }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
}
.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-copyright {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
  list-style: none;
  flex-shrink: 0;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: #e91e8c; }

/* Responsive */
@media (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-col--brand { grid-column: 1 / -1; }
}
@media (max-width: 767px) {
  .footer-cta { padding: 56px 24px; }
  .footer-grid-wrap { padding: 48px 0 32px; }
  /* 2-column grid on mobile to match the branded WdFooter (was 1-col tall stack) */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; padding-left: 24px; padding-right: 24px; }
  .footer-col--brand { grid-column: 1 / -1; }
  .footer-bottom__inner { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; gap: 14px; }
}

/* ================================================================
   Trust strip / logo marquee — mobile + reduced-motion robustness
   ================================================================ */
@media (max-width: 640px) {
  .trust-strip { padding: 40px 0 28px !important; }
  .logo-marquee { padding: 6px 0 !important; }
  .logo-marquee-track { gap: 26px !important; }
  .logo-item { height: 80px !important; }
  .logo-item img { height: 64px !important; max-width: 210px !important; opacity: 0.85 !important; }
}
/* When the OS requests reduced motion the marquee can't scroll — wrap the
   logos into a tight centered grid so they're visible instead of a frozen,
   sparse, mostly-empty row. */
@media (prefers-reduced-motion: reduce) {
  .logo-marquee { overflow: visible !important; -webkit-mask-image: none !important; mask-image: none !important; }
  .logo-marquee--right, .logo-marquee--alt { display: none; } /* one row is enough when static */
  .logo-marquee .logo-item[aria-hidden="true"] { display: none !important; } /* no duplicate sets in the static grid */
  .logo-marquee-track {
    flex-wrap: wrap !important;
    justify-content: center !important;
    width: 100% !important;
    gap: 28px 36px !important;
    transform: none !important;
  }
  .logo-item img { opacity: 0.85 !important; }
}

/* ================================================================
   Selected Works (replaces Proof in Performance on homepage)
   ================================================================ */
.selected-works {
  position: relative;
  background:
    radial-gradient(ellipse 50% 40% at 12% 5%, rgba(233,30,140,0.12), transparent 60%),
    radial-gradient(ellipse 45% 45% at 95% 60%, rgba(124,58,237,0.12), transparent 60%),
    #000;
  padding: clamp(80px, 10vh, 130px) clamp(24px, 5vw, 64px) 140px;
}
.sw-inner { max-width: 1320px; margin: 0 auto; }
.sw-head {
  font-weight: 900;
  font-size: clamp(48px, 9vw, 130px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #f4f1ea;
  margin: 0 0 14px;
}
.sw-sub {
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1.4;
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  margin: 0 0 60px;
}
.sw-row {
  display: grid;
  gap: 22px;
  align-items: start;
}
.sw-row-1 { grid-template-columns: 1fr 1fr 1.4fr; margin-bottom: 60px; }
.sw-row-2 { grid-template-columns: 1.4fr 1fr 1fr; }

.sw-card { display: block; text-decoration: none; }
.sw-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #111;
}
.sw-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.sw-card:hover .sw-frame img { transform: scale(1.05); }
.sw-tags {
  position: absolute; top: 14px; left: 14px;
  display: flex; gap: 8px; flex-wrap: wrap; z-index: 2;
}
.sw-tag {
  font-size: 11px; font-weight: 800; letter-spacing: 0.05em;
  text-transform: uppercase; color: #06121f; background: #38e1c8;
  padding: 4px 9px; border-radius: 5px;
}
.sw-name {
  margin-top: 18px;
  display: flex; align-items: center; gap: 8px;
  font-size: clamp(24px, 2.4vw, 40px);
  font-weight: 900; letter-spacing: -0.01em;
  text-transform: uppercase; color: #fff;
}
.sw-cta-tile {
  border-radius: 4px;
  background: linear-gradient(150deg, rgba(233,30,140,0.18), rgba(124,58,237,0.12));
  border: 1px solid rgba(255,255,255,0.08);
  aspect-ratio: 1 / 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 24px; text-decoration: none;
}
.sw-cta-title {
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 900; line-height: 1.15; color: #fff;
  margin-bottom: 12px; text-transform: uppercase;
}
.sw-cta-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 700; color: #e91e8c;
}
@media (max-width: 820px) {
  .sw-row-1, .sw-row-2 { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 540px) {
  .sw-row-1, .sw-row-2 { grid-template-columns: 1fr !important; }
}

/* Hero angle cards — show clean custom images (no text/gradient overlay) */
.angle-card-overlay { display: none !important; }

/* ================================================================
   Selected Works — video + 2 images + CTA grid layout
   ================================================================ */
.sw-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.15fr;
  grid-template-rows: auto auto;
  gap: 22px;
  align-items: stretch;
}
.sw-tile, .sw-cta-tall {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  background: #111;
  display: block;
  min-width: 0;   /* prevent image min-content from blowing out grid columns */
  min-height: 0;
}
.sw-tile-video   { grid-column: 1; grid-row: 1 / 3; }   /* tall video left */
.sw-tile-img-top { grid-column: 2; grid-row: 1; aspect-ratio: 1 / 1; }
.sw-tile-img-bot { grid-column: 2; grid-row: 2; aspect-ratio: 1 / 1; }
.sw-cta-tall     { grid-column: 3; grid-row: 1; }   /* CTA fills right column, top row only */

.sw-tile video,
.sw-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.sw-tile:hover video,
.sw-tile:hover img { transform: scale(1.04); }

/* CTA tall tile */
.sw-cta-tall {
  aspect-ratio: auto !important;   /* override .sw-cta-tile's 1/1 — fill col×row instead */
  background: linear-gradient(150deg, rgba(233,30,140,0.18), rgba(124,58,237,0.12));
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 32px;
}

/* Responsive */
@media (max-width: 900px) {
  .sw-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; }
  .sw-tile-video   { grid-column: 1 / 3; grid-row: 1; aspect-ratio: 16 / 10; }
  .sw-tile-img-top { grid-column: 1; grid-row: 2; }
  .sw-tile-img-bot { grid-column: 2; grid-row: 2; }
  .sw-cta-tall     { grid-column: 1 / 3; grid-row: 3; min-height: 200px; }
}
@media (max-width: 540px) {
  .sw-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .sw-tile-video, .sw-tile-img-top, .sw-tile-img-bot, .sw-cta-tall {
    grid-column: 1 !important; grid-row: auto !important;
  }
  .sw-tile-video { aspect-ratio: 4 / 5; }
  .sw-cta-tall { min-height: 220px; }
}

/* Mute/unmute button on Selected Works video */
.sw-mute {
  position: absolute;
  bottom: 14px; right: 14px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 5;
  transition: background 0.2s ease, transform 0.2s ease;
}
.sw-mute:hover { background: rgba(233,30,140,0.8); transform: scale(1.08); }
.sw-mute .sw-ic-sound { display: none; }
.sw-mute.unmuted .sw-ic-muted { display: none; }
.sw-mute.unmuted .sw-ic-sound { display: block; }

/* ================================================================
   Selected Works — bento gallery (2 imgs + wide img + tall video)
   ================================================================ */
.sw-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  grid-template-rows: auto auto;
  gap: 22px;
  margin-bottom: 22px;
}
.sw-bento-tile {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  display: block;
  text-decoration: none;
  min-width: 0; min-height: 0;
}
.sw-bento-1 { grid-column: 1; grid-row: 1; aspect-ratio: 1 / 1; }
.sw-bento-2 { grid-column: 2; grid-row: 1; aspect-ratio: 1 / 1; }
.sw-bento-3 { grid-column: 1 / 3; grid-row: 2; aspect-ratio: 2 / 1; }   /* wide banner, bottom-left */
.sw-bento-video { grid-column: 3; grid-row: 1 / 3; }        /* tall video, right */
.sw-bento-tile img,
.sw-bento-tile video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.sw-bento-tile:hover img,
.sw-bento-tile:hover video { transform: scale(1.04); }

@media (max-width: 900px) {
  .sw-bento { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; }
  .sw-bento-1 { grid-column: 1; grid-row: 1; }
  .sw-bento-2 { grid-column: 2; grid-row: 1; }
  .sw-bento-3 { grid-column: 1 / 3; grid-row: 2; aspect-ratio: 2 / 1; }
  .sw-bento-video { grid-column: 1 / 3; grid-row: 3; aspect-ratio: 16 / 10; }
}
@media (max-width: 540px) {
  .sw-bento { grid-template-columns: 1fr; }
  .sw-bento-1, .sw-bento-2, .sw-bento-3, .sw-bento-video {
    grid-column: 1 !important; grid-row: auto !important;
  }
  .sw-bento-video { aspect-ratio: 4 / 5; }
}

/* Final CTA cards — real images (replaces gradient/phone styling) */
.cta-card { overflow: hidden; }
.cta-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  border-radius: inherit;
}
/* neutralize the right card's phone frame so the image fills cleanly */
.cta-card--right { background: #111 !important; border: none !important; padding: 0 !important; }
.cta-card--right .phone-notch { display: none !important; }

/* Make card ratio match the 800x840 source images so cover shows the FULL image (no crop) */
.cta-card--left, .cta-card--center, .cta-card--right {
  height: auto !important;
  aspect-ratio: 800 / 840;
}


/* ===== Selected Works — mobile card feed (≤768px only) ===== */
.swm { display: none; }
@media (max-width: 768px) {
  .sw-bento, .sw-grid { display: none !important; }
  .swm { display: flex; flex-direction: column; gap: 14px; }
  .swm-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .swm-card {
    position: relative; display: block; border-radius: 18px; overflow: hidden;
    background: #111; text-decoration: none; aspect-ratio: 3 / 4;
  }
  .swm-card.swm-full { aspect-ratio: 4 / 4.6; }
  .swm-card img, .swm-card video {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  }
  .swm-arrow {
    position: absolute; top: 12px; right: 12px; width: 32px; height: 32px;
    border-radius: 50%; background: rgba(8,8,8,.55); backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center; color: #fff;
  }
  .swm-meta {
    position: absolute; inset: auto 0 0 0; padding: 46px 14px 14px;
    background: linear-gradient(180deg, transparent, rgba(5,2,6,.88) 62%);
    display: flex; flex-direction: column; gap: 5px;
  }
  .swm-cat {
    font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: #E91E8C;
  }
  .swm-title { font-size: 17px; font-weight: 700; line-height: 1.25; color: #fff; letter-spacing: -0.01em; }
  .swm-pair .swm-title { font-size: 14.5px; }
  .swm-cta {
    border-radius: 18px; padding: 24px 18px; text-decoration: none;
    background: linear-gradient(125deg, #3A0B29, #1C0414 70%);
    border: 1px solid rgba(233,30,140,.3);
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
  }
  .swm-cta-txt b { display: block; font-size: 22px; font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; color: #fff; text-transform: uppercase; }
  .swm-cta-txt small { display: block; margin-top: 8px; font-size: 12.5px; color: rgba(255,255,255,.6); }
  .swm-cta-btn {
    flex: none; background: #E91E8C; color: #fff; font-weight: 700; font-size: 14px;
    padding: 13px 20px; border-radius: 100px; white-space: nowrap;
  }
  .swm-foot { display: flex; align-items: center; justify-content: space-between; padding: 4px 2px 0; }
  .swm-count { font-size: 10.5px; letter-spacing: .14em; color: rgba(255,255,255,.45); }
  .swm-all { font-size: 14px; color: #fff; text-decoration: none; border-bottom: 2px solid #E91E8C; padding-bottom: 3px; }
}


/* ===== Reviews — mobile swipe carousel (<=768px). No auto-scroll on mobile. ===== */
.rvm, .rvm-dots { display: none; }
@media (max-width: 768px) {
  .reviews-marquee { display: none !important; }
  .rvm {
    display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 8px 24px 4px; scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  .rvm::-webkit-scrollbar { display: none; }
  .rvm-card {
    flex: 0 0 86%; scroll-snap-align: center; text-align: left;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px; padding: 22px 22px 20px;
    display: flex; flex-direction: column;
  }
  .rvm-stars { color: #F5B301; font-size: 17px; letter-spacing: 3px; margin-bottom: 14px; }
  .rvm-text { margin: 0; font-size: 16.5px; line-height: 1.6; color: rgba(255,255,255,0.92); flex: 1;
    display: -webkit-box; -webkit-line-clamp: 10; -webkit-box-orient: vertical; overflow: hidden; }
  .rvm-foot {
    display: flex; align-items: center; gap: 13px;
    margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.14);
  }
  .rvm-av {
    width: 46px; height: 46px; border-radius: 50%; flex: none;
    display: flex; align-items: center; justify-content: center;
    background: rgba(233,30,140,0.10); border: 2px solid #E91E8C;
    color: #F58FC3; font-weight: 700; font-size: 14px; letter-spacing: .02em;
  }
  .rvm-who b { display: block; font-size: 16.5px; font-weight: 700; color: #fff; }
  .rvm-who small { display: block; margin-top: 2px; font-size: 13px; color: rgba(255,255,255,0.55); }
  .rvm-dots { display: flex; justify-content: center; gap: 6px; padding: 16px 0 4px; }
  .rvm-dots i { width: 7px; height: 7px; border-radius: 100px; background: rgba(255,255,255,0.28); transition: all .25s; }
  .rvm-dots i.on { width: 20px; background: #E91E8C; }
}

/* clients2 tiles are square 500x500 with padding baked in — render larger so
   the marks read at the same visual size as the old wordmark logos */
.trust-strip .logo-item img { height: 92px; max-width: 150px; }
@media (max-width: 1024px) { .trust-strip .logo-item img { height: 76px; } }
@media (max-width: 640px)  { .trust-strip .logo-item img { height: 64px; } }

/* mobile readability: micro-labels under 10px are raised on phones */
@media (max-width: 768px) {
  /* New badge */
.badge-new { font-size: 10.5px; }
  .mega-featured-pill { font-size: 10.5px; }
  .hi-tag { font-size: 10.5px; }
  .cta-card-phone-pill { font-size: 10.5px; }
  .sc-browser-url { font-size: 10.5px; }
}
