/* ===== 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); }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 48px);
  max-width: 860px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(12,12,12,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 60px;
  padding: 10px 14px 10px 18px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.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 DROPDOWN ===== */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(14,14,14,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 10px;
  min-width: 220px;
  z-index: 200;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.nav-dropdown.active .nav-dropdown-menu { display: flex; flex-direction: column; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: rgba(233,30,140,0.12); color: #fff; }
.nav-arrow { font-size: 0.7rem; margin-left: 3px; opacity: 0.7; }

/* ===== 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 ===== */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8,8,8,0.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 80px 32px 32px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  padding: 12px 24px;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}
.nav-mobile-menu a:hover { background: rgba(233,30,140,0.12); color: #fff; }

@media (max-width: 700px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 160px 6vw 60px;
  overflow: hidden;
  perspective: 1400px;
  perspective-origin: 50% 80%;
}
.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(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-heading em {
  font-size: clamp(3rem, 7vw, 5.5rem);
  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); }
}

/* ===== ANGLED SLIDER (inside hero) ===== */
@keyframes angleScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.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; }

.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-overlay strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.angle-card-stat {
  font-size: 0.72rem;
  color: var(--pink);
  font-weight: 600;
}

.angle-card-tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(233,30,140,0.75);
  padding: 3px 8px;
  border-radius: 20px;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 4px;
  backdrop-filter: blur(4px);
}

/* ===== 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);
}

/* ===== 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;
}

/* ===== 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;
}

/* ===== 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, 5rem);
  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 ===== */
.trusted-by {
  padding: 60px 0 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.trusted-label {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  padding: 0 6vw;
}
.marquee-outer { overflow: hidden; }
.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  transition: color 0.2s;
}
.marquee-track span:hover { color: rgba(255,255,255,0.7); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== 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: 200px; 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; }
.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 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Brand column */
.footer-logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.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; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-col--brand { grid-column: auto; }
  .footer-bottom__inner { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; gap: 14px; }
}
