/* ============================================================
   CSS CUSTOM PROPERTIES
============================================================ */
:root {
  --bg: #ECEFF5;
  --text: #12141A;
  --text-muted: rgba(18,20,26,0.60);
  --text-light: rgba(18,20,26,0.36);
  --glass-fill: rgba(255,255,255,0.20);
  --glass-fill-strong: rgba(255,255,255,0.32);
  --border-glass: 1px solid rgba(255,255,255,0.40);
  --shadow-panel: 0 20px 60px rgba(110,125,160,0.11), 0 4px 16px rgba(90,110,150,0.05);
  --shadow-soft: 0 8px 28px rgba(90,110,150,0.07);
  --blur-panel: 28px;
  --blur-glow: 80px;
  --radius-pill: 999px;
  --radius-2xl: 32px;
  --radius-3xl: 40px;

  /* Accent system */
  --accent-primary: #D93F8D;
  --accent-primary-hover: #C7327E;
  --accent-primary-tint: rgba(217,63,141,0.10);
  --accent-secondary: #9EDCFF;
  --accent-secondary-tint: rgba(158,220,255,0.12);
  --accent-tertiary: #CDBDFF;
  --accent-tertiary-tint: rgba(205,189,255,0.10);
  --glow-pink: 0 0 40px rgba(217,63,141,0.14);
  --glow-cyan: 0 0 36px rgba(158,220,255,0.18);
  --glow-lavender: 0 0 42px rgba(205,189,255,0.12);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.68;
  color: var(--text);
  background: #ECEFF5;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
ul { list-style: none; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================================
   BACKGROUND (FIXED)
============================================================ */
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg__base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 65% at 12% 5%, rgba(190,231,255,0.38) 0%, transparent 52%),
    radial-gradient(ellipse 60% 52% at 88% 12%, rgba(217,208,255,0.30) 0%, transparent 50%),
    radial-gradient(ellipse 70% 58% at 68% 88%, rgba(245,214,230,0.22) 0%, transparent 52%),
    linear-gradient(168deg, #EFF2F8 0%, #E8ECF4 45%, #ECF0F8 100%);
}

.bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.bg__orb--1 {
  width: 700px; height: 700px;
  top: -180px; left: -120px;
  background: radial-gradient(circle, rgba(190,231,255,0.35) 0%, transparent 68%);
}
.bg__orb--2 {
  width: 550px; height: 550px;
  top: 8%; right: -100px;
  background: radial-gradient(circle, rgba(217,208,255,0.28) 0%, transparent 68%);
}
.bg__orb--3 {
  width: 450px; height: 450px;
  bottom: 16%; left: 6%;
  background: radial-gradient(circle, rgba(245,214,230,0.26) 0%, transparent 68%);
}
.bg__orb--4 {
  width: 350px; height: 350px;
  bottom: 5%; right: 15%;
  background: radial-gradient(circle, rgba(183,204,255,0.22) 0%, transparent 68%);
}

/* ============================================================
   SITE WRAPPER
============================================================ */
.site {
  position: relative;
  z-index: 1;
}

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  padding: 18px 40px;
}

.nav__wrap {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 860px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.36);
  border-radius: 999px;
  padding: 10px 10px 10px 24px;
  box-shadow: 0 4px 20px rgba(90,110,150,0.06), inset 0 1px 0 rgba(255,255,255,0.50);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav__brand {
  text-decoration: none;
  margin-right: auto;
  display: flex;
  align-items: center;
}
.nav__logo {
  height: 36px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
  filter: grayscale(1) brightness(0.15);
  display: block;
}

.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0 auto;
}

.nav__links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--text); }

.nav__cta {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: #12141A;
  border: none;
  border-radius: 999px;
  padding: 9px 20px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(18,20,26,0.18);
  white-space: nowrap;
}
.nav__cta:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 20px;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 4px 6px;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
  font-family: inherit;
}
.lang-btn:hover {
  color: var(--text);
  background: rgba(255,255,255,0.35);
}
.lang-btn--active {
  color: #D93F8D;
  font-weight: 600;
}
.lang-sep {
  color: var(--text-light);
  font-size: 11px;
  user-select: none;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-radius: 999px;
  padding: 12px 26px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s ease;
}
.btn--dark {
  background: #D93F8D;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(217,63,141,0.22), inset 0 1px 0 rgba(255,255,255,0.22);
}
.btn--dark:hover {
  background: #C7327E;
  box-shadow: 0 12px 28px rgba(217,63,141,0.30), inset 0 1px 0 rgba(255,255,255,0.22);
  transform: translateY(-1px);
}
.btn--ghost {
  color: var(--text-muted);
  background: transparent;
  border: 1px solid rgba(18,20,26,0.14);
}
.btn--ghost:hover {
  color: var(--text);
  border-color: rgba(158,220,255,0.35);
  background: rgba(255,255,255,0.48);
  transform: translateY(-1px);
}
.btn--lg {
  font-size: 15px;
  padding: 14px 32px;
}
.btn--full {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 15px;
}
.btn-arrow { opacity: 0.7; }

/* ============================================================
   GLASS UTILITIES
============================================================ */
.glass {
  background: rgba(255,255,255,0.20);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.40);
  box-shadow:
    0 20px 60px rgba(110,125,160,0.11),
    0 4px 16px rgba(90,110,150,0.05),
    inset 0 1px 0 rgba(255,255,255,0.48),
    inset 0 -1px 0 rgba(255,255,255,0.10);
}

.glass-card {
  background: rgba(255,255,255,0.26);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.46);
  box-shadow:
    0 8px 28px rgba(90,110,150,0.07),
    inset 0 1px 0 rgba(255,255,255,0.52);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* ============================================================
   LAYOUT UTILITIES
============================================================ */
.wrap {
  max-width: 1160px;
  margin: 0 auto;
}

.section {
  padding: 108px 40px;
}

.section-header {
  margin-bottom: 56px;
}

.label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #8C94A3;
  display: block;
  margin-bottom: 16px;
}

.h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.030em;
  color: var(--text);
  margin-bottom: 18px;
}
.h2--center { text-align: center; }

.section-intro {
  font-size: 17px;
  line-height: 1.68;
  color: var(--text-muted);
  max-width: 560px;
}
.section-intro--center {
  text-align: center;
  max-width: 440px;
  margin: 0 auto;
}
.section-support {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 600px;
  margin-top: 12px;
}
.section-cta {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

/* ============================================================
   GRID SYSTEMS
============================================================ */
.grid--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.grid--2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* ============================================================
   CARDS
============================================================ */
.card {
  border-radius: 32px;
  padding: 38px 32px;
  transition: transform 0.3s ease;
}
.card:hover { transform: translateY(-3px); }
.card:hover, .glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.65);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card--large { padding: 50px 44px; }

.card-num {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 22px;
}
.card-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.card-body {
  font-size: 14px;
  line-height: 1.68;
  color: var(--text-muted);
}

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 40px 80px;
}

.hero__panel {
  width: 100%;
  max-width: 1160px;
  border-radius: 40px;
  padding: 72px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__panel::before {
  content: '';
  position: absolute;
  top: -120px; right: -60px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(190,231,255,0.30) 0%, transparent 65%);
  filter: blur(70px);
  pointer-events: none;
}
.hero__panel::after {
  content: '';
  position: absolute;
  bottom: -100px; left: 5%;
  width: 420px; height: 320px;
  background: radial-gradient(ellipse, rgba(217,208,255,0.22) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}

.hero__left {
  position: relative;
  z-index: 1;
}
.hero__right {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8C94A3;
  margin-bottom: 26px;
  display: block;
}
.eyebrow-dot {
  color: #D93F8D;
  font-size: 6px;
  vertical-align: middle;
  margin-right: 6px;
}

.hero__h1 {
  font-size: 62px;
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.032em;
  color: var(--text);
  margin-bottom: 22px;
}

.hero__body {
  font-size: 16px;
  line-height: 1.68;
  color: var(--text-muted);
  max-width: 430px;
  margin-bottom: 34px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.chip {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255,255,255,0.52);
  border: 1px solid rgba(255,255,255,0.64);
  border-radius: 999px;
  padding: 5px 14px;
  letter-spacing: -0.01em;
}

.hero__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ============================================================
   ABSTRACT 3D OBJECT
============================================================ */
.abstract {
  position: relative;
  width: 380px;
  height: 380px;
  flex-shrink: 0;
}

/* Soft radial glow behind sphere */
.abstract::after {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at center, rgba(158,220,255,0.10) 0%, rgba(205,189,255,0.06) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Large ambient glow */
.abstract::before {
  content: '';
  position: absolute;
  inset: -80px;
  background: radial-gradient(ellipse at 50% 50%, rgba(190,231,255,0.50) 0%, rgba(217,208,255,0.28) 40%, transparent 68%);
  filter: blur(50px);
  border-radius: 50%;
  animation: abstractGlow 7s ease-in-out infinite;
}

/* Outer ring */
.abstract__ring--outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(158,220,255,0.30);
  box-shadow: 0 0 40px rgba(158,220,255,0.18), inset 0 0 20px rgba(255,255,255,0.06);
  transform: scaleY(0.32) rotate(-22deg);
  animation: floatRingOuter 8s ease-in-out infinite;
}

/* Mid ring */
.abstract__ring--mid {
  position: absolute;
  inset: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(217,63,141,0.16);
  transform: scaleX(0.28) rotate(12deg);
  animation: floatRingMid 10s ease-in-out infinite;
}

/* Inner sphere */
.abstract__sphere {
  position: absolute;
  inset: 88px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 28% 22%, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0) 42%),
    radial-gradient(ellipse at 74% 72%, rgba(190,231,255,0.42) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(217,208,255,0.15) 0%, transparent 70%),
    rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.52);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 50px rgba(120,140,190,0.20), inset 0 2px 6px rgba(255,255,255,0.60);
}

/* Arc rings */
.abstract__arc {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid transparent;
}
.abstract__arc--a {
  inset: 14px;
  border-top-color: rgba(158,220,255,0.80);
  border-right-color: rgba(158,220,255,0.30);
  transform: rotate(0deg);
  animation: spinArc 13s linear infinite;
}
.abstract__arc--b {
  inset: 28px;
  border-bottom-color: rgba(217,63,141,0.48);
  border-left-color: rgba(217,63,141,0.16);
  animation: spinArc 17s linear infinite reverse;
}
.abstract__arc--c {
  inset: 55px;
  border-top-color: rgba(205,189,255,0.55);
  border-right-color: rgba(205,189,255,0.18);
  animation: spinArc 22s linear infinite;
}

/* Coloured glow orbs */
.abstract__orb {
  position: absolute;
  border-radius: 50%;
}
.abstract__orb--1 {
  width: 68px; height: 68px;
  top: 52px; right: 62px;
  background: radial-gradient(circle, rgba(190,231,255,0.90) 0%, rgba(183,204,255,0.55) 50%, transparent 78%);
  filter: blur(8px);
  animation: orbPulse 4.2s ease-in-out infinite;
}
.abstract__orb--2 {
  width: 44px; height: 44px;
  bottom: 80px; left: 72px;
  background: radial-gradient(circle, rgba(217,208,255,0.85) 0%, transparent 70%);
  filter: blur(6px);
  animation: orbPulse 5.5s ease-in-out infinite 1.4s;
}
.abstract__orb--3 {
  width: 26px; height: 26px;
  top: 128px; left: 48px;
  background: radial-gradient(circle, rgba(245,214,230,0.90) 0%, transparent 70%);
  filter: blur(4px);
  animation: orbPulse 3.8s ease-in-out infinite 0.7s;
}

/* Floating dots */
.abstract__dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
}
.abstract__dot--1 { width: 4px; height: 4px; top: 76px; left: 178px; }
.abstract__dot--2 { width: 3px; height: 3px; top: 198px; right: 54px; background: rgba(190,231,255,0.90); }
.abstract__dot--3 { width: 5px; height: 5px; bottom: 96px; right: 98px; background: rgba(217,208,255,0.75); filter: blur(1px); }

/* Abstract keyframes */
@keyframes abstractGlow {
  0%, 100% { opacity: 0.80; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.07); }
}
@keyframes floatRingOuter {
  0%, 100% { transform: scaleY(0.32) rotate(-22deg); }
  50% { transform: scaleY(0.30) rotate(-18deg) translateY(-10px); }
}
@keyframes floatRingMid {
  0%, 100% { transform: scaleX(0.28) rotate(12deg); }
  50% { transform: scaleX(0.26) rotate(16deg) translateY(8px); }
}
@keyframes spinArc {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes orbPulse {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

/* ============================================================
   SERVICE CHIPS (hero orbital symbols)
============================================================ */
.svc-chip {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.52);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow:
    0 4px 16px rgba(120,140,200,0.10),
    inset 0 1px 0 rgba(255,255,255,0.80);
  z-index: 6;
  transition: opacity 0.3s;
}

/* Colour tints per service */
.svc-chip--web  { background: rgba(158,220,255,0.18); color: #69BDEB; }
.svc-chip--insta { background: rgba(217,63,141,0.12); color: #D93F8D; }
.svc-chip--meta  { background: rgba(100,160,255,0.14); color: #7D9BFF; }
.svc-chip--fb    { background: rgba(100,160,255,0.14); color: #7D9BFF; }
.svc-chip--ai    { background: linear-gradient(135deg, rgba(158,220,255,0.12), rgba(205,189,255,0.12)); color: #7D9BFF; width:42px; border-radius:14px; }
.svc-chip--seo   { background: rgba(100,160,255,0.12); color: #7DB5FF; }
.svc-chip--reels { background: rgba(205,189,255,0.16); color: #9D84E8; }

/* Individual float animations */
@keyframes svcDrift1 {
  0%,100% { transform: translateY(0px) translateX(0px); opacity:0.82; }
  40%     { transform: translateY(-5px) translateX(2px); opacity:1; }
  70%     { transform: translateY(-2px) translateX(-2px); opacity:0.88; }
}
@keyframes svcDrift2 {
  0%,100% { transform: translateY(0px) translateX(0px); opacity:0.78; }
  35%     { transform: translateY(4px) translateX(-3px); opacity:0.95; }
  65%     { transform: translateY(2px) translateX(2px); opacity:0.84; }
}
@keyframes svcDrift3 {
  0%,100% { transform: translateY(0px); opacity:0.80; }
  50%     { transform: translateY(-4px); opacity:1; }
}
@keyframes svcDrift4 {
  0%,100% { transform: translateY(0px) translateX(0px); opacity:0.75; }
  45%     { transform: translateY(5px) translateX(2px); opacity:0.92; }
}
@keyframes svcDrift5 {
  0%,100% { transform: translateY(0px); opacity:0.72; }
  50%     { transform: translateY(-3px); opacity:0.90; }
}
@keyframes svcDrift6 {
  0%,100% { transform: translateY(0px) translateX(0px); opacity:0.80; }
  40%     { transform: translateY(-4px) translateX(-1px); opacity:0.96; }
}
@keyframes svcDrift7 {
  0%,100% { transform: translateY(0px); opacity:0.76; }
  50%     { transform: translateY(4px); opacity:0.94; }
}

.svc-chip--web    { animation: svcDrift1 14s ease-in-out infinite; }
.svc-chip--insta  { animation: svcDrift2 18s ease-in-out infinite 1.2s; }
.svc-chip--meta   { animation: svcDrift3 20s ease-in-out infinite 0.6s; }
.svc-chip--fb     { animation: svcDrift4 16s ease-in-out infinite 2.4s; }
.svc-chip--ai     { animation: svcDrift5 22s ease-in-out infinite 0.9s; }
.svc-chip--seo    { animation: svcDrift6 12s ease-in-out infinite 1.8s; }
.svc-chip--reels  { animation: svcDrift7 24s ease-in-out infinite 3.0s; }

/* Hide on mobile so hero stays clean */
@media (max-width: 768px) {
  .svc-chip { display: none; }
}

/* ============================================================
   SERVICES
============================================================ */
.svc-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,0.54);
  border: 1px solid rgba(255,255,255,0.64);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--text-muted);
  box-shadow: 0 2px 8px rgba(90,110,150,0.06);
}
.svc-icon--web { background: rgba(158,220,255,0.14); color: #69BDEB; }
.svc-icon--insta { background: rgba(217,63,141,0.10); color: #D93F8D; }
.svc-icon--reels { background: rgba(205,189,255,0.14); color: #9D84E8; }
.svc-icon--ai { background: linear-gradient(135deg, rgba(158,220,255,0.10), rgba(205,189,255,0.10)); color: #7D9BFF; }
.svc-icon--meta { background: rgba(100,160,255,0.12); color: #7DB5FF; }
.svc-icon--seo { background: rgba(100,160,255,0.10); color: #7DB5FF; }

.svc-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 14px;
}

/* ============================================================
   WHY US
============================================================ */
.why-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.why-items { margin-top: 40px; }

.why-item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(18,20,26,0.07);
}
.why-item:last-child { border-bottom: none; }

.why-item-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
}

.why-right {
  position: sticky;
  top: 120px;
}

.stats-panel {
  border-radius: 40px;
  padding: 52px 48px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.stats-panel::before {
  content: '';
  position: absolute;
  top: -60px; right: -40px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(190,231,255,0.36) 0%, transparent 65%);
  filter: blur(55px);
}

.stat { position: relative; z-index: 1; }
.stat-num {
  display: block;
  font-size: 68px;
  font-weight: 600;
  letter-spacing: -0.045em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  display: block;
}
.stat-word {
  display: block;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 8px;
}
.stat-line {
  height: 1px;
  background: rgba(255,255,255,0.55);
  margin: 26px 0;
}

/* ============================================================
   WEBSITE PROJECTS / PORTFOLIO
============================================================ */
.port-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 18px;
}

.port-secondary {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.browser-mockup {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.28);
  border: 1px solid rgba(255,255,255,0.46);
  box-shadow:
    0 20px 60px rgba(110,125,160,0.11),
    0 4px 16px rgba(90,110,150,0.05);
}

/* Primary large mockup only — fixed height, balanced with right column */
.browser-mockup--primary {
  align-self: start;
}
.browser-mockup--primary .browser-body--lg {
  height: 390px;
  min-height: 390px;
}

.browser-bar {
  background: rgba(255,255,255,0.52);
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(255,255,255,0.42);
}

.browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dot--r { background: rgba(255,100,100,0.38); }
.dot--y { background: rgba(255,180,50,0.38); }
.dot--g { background: rgba(80,200,80,0.38); }

.browser-url {
  flex: 1;
  background: rgba(255,255,255,0.52);
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 11px;
  color: var(--text-muted);
  margin: 0 6px;
  font-family: inherit;
}

.browser-body {
  background: linear-gradient(140deg, #EFF3FA 0%, #E5ECFA 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.browser-body--lg { min-height: 280px; height: 280px; }
.browser-body--sm { min-height: 168px; height: 168px; }

.browser-body--scroll {
  display: block;
  overflow-y: scroll;
  overflow-x: hidden;
  align-items: unset;
  justify-content: unset;
  scrollbar-width: thin;
  scrollbar-color: rgba(160,180,215,0.4) transparent;
}
.browser-body--scroll::-webkit-scrollbar { width: 4px; }
.browser-body--scroll::-webkit-scrollbar-track { background: transparent; }
.browser-body--scroll::-webkit-scrollbar-thumb { background: rgba(160,180,215,0.45); border-radius: 2px; }

.browser-body--scroll a {
  display: block;
  width: 100%;
}

.mockup-img {
  width: 100%;
  display: block;
}

.mock-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  padding: 0 20px;
}
.mock-content--sm { gap: 8px; }

.mock-line {
  height: 6px;
  border-radius: 3px;
  background: rgba(160,180,215,0.42);
}
.mock-line--xl {
  height: 10px;
  border-radius: 5px;
}

.mock-btn-ph {
  width: 80px;
  height: 28px;
  border-radius: 999px;
  background: rgba(140,165,210,0.30);
  margin-top: 6px;
}

.port-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(158,220,255,0.16);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(158,220,255,0.25);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 11.5px;
  font-weight: 500;
  color: #4A95B8;
}
.port-tag--web { background: rgba(158,220,255,0.16); color: #4A95B8; border-color: rgba(158,220,255,0.25); }
.port-tag--insta { background: rgba(217,63,141,0.10); color: #C7327E; border-color: rgba(217,63,141,0.20); }
.port-tag--reels { background: rgba(205,189,255,0.14); color: #7D6FC2; border-color: rgba(205,189,255,0.28); }

/* ============================================================
   INSTAGRAM GRID
============================================================ */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.ig-cell {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.46);
  transition: transform 0.28s, box-shadow 0.28s;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(110,125,160,0.08);
}
.ig-cell:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(90,110,150,0.15);
}

.ig-tall {
  aspect-ratio: 4/5;
}

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

.ig-c1 { background: linear-gradient(135deg, rgba(190,231,255,0.55), rgba(183,204,255,0.35)); }
.ig-c2 { background: linear-gradient(135deg, rgba(217,208,255,0.55), rgba(245,214,230,0.35)); }
.ig-c3 { background: linear-gradient(135deg, rgba(245,214,230,0.55), rgba(190,231,255,0.35)); }
.ig-c4 { background: linear-gradient(135deg, rgba(183,204,255,0.55), rgba(217,208,255,0.35)); }
.ig-c5 { background: linear-gradient(135deg, rgba(248,251,255,0.70), rgba(190,231,255,0.45)); }
.ig-c6 { background: linear-gradient(135deg, rgba(217,208,255,0.45), rgba(245,214,230,0.55)); }
.ig-c7 { background: linear-gradient(135deg, rgba(190,231,255,0.42), rgba(217,208,255,0.52), rgba(245,214,230,0.32)); }
.ig-c8 { background: linear-gradient(135deg, rgba(245,214,230,0.50), rgba(183,204,255,0.40)); }
.ig-c9 { background: linear-gradient(135deg, rgba(183,204,255,0.55), rgba(190,231,255,0.40)); }
.ig-c10 { background: linear-gradient(135deg, rgba(217,208,255,0.40), rgba(245,214,230,0.50)); }

/* ============================================================
   REELS GALLERY
============================================================ */
.reels-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.reels-scroll::-webkit-scrollbar { display: none; }

.reel {
  flex: 0 0 178px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.28);
  border: 1px solid rgba(255,255,255,0.46);
  box-shadow: 0 8px 28px rgba(90,110,150,0.07);
  transition: transform 0.25s;
}
.reel:hover { transform: translateY(-5px); }

.reel-thumb {
  aspect-ratio: 9/16;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.reel-t1 { background: linear-gradient(165deg, rgba(190,231,255,0.60), rgba(183,204,255,0.42), rgba(217,208,255,0.50)); }
.reel-t2 { background: linear-gradient(165deg, rgba(217,208,255,0.62), rgba(245,214,230,0.42)); }
.reel-t3 { background: linear-gradient(165deg, rgba(245,214,230,0.55), rgba(190,231,255,0.50)); }
.reel-t4 { background: linear-gradient(165deg, rgba(183,204,255,0.62), rgba(217,208,255,0.50)); }
.reel-t5 { background: linear-gradient(165deg, rgba(190,231,255,0.52), rgba(245,214,230,0.45)); }

.play-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(255,255,255,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  color: var(--text);
}
.play-btn svg { margin-left: 2px; }

.reel-lbl {
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

/* Real video reel */
.reel--video { cursor: pointer; }
.reel--video:hover .play-btn {
  background: rgba(255,255,255,0.90);
  transform: scale(1.12);
}
.reel-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* VIDEO LIGHTBOX */
.reel-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.reel-modal.is-open {
  opacity: 1;
  pointer-events: all;
}
.reel-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 20, 0.78);
  backdrop-filter: blur(14px);
  cursor: pointer;
}
.reel-modal__frame {
  position: relative;
  z-index: 1;
  width: min(380px, 90vw);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45);
  transform: scale(0.92);
  transition: transform 0.30s cubic-bezier(0.34,1.56,0.64,1);
}
.reel-modal.is-open .reel-modal__frame {
  transform: scale(1);
}
.reel-modal__video {
  width: 100%;
  display: block;
  background: #000;
  max-height: 85vh;
  object-fit: contain;
}
.reel-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.32);
  backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.reel-modal__close:hover { background: rgba(255,255,255,0.32); }

/* ============================================================
   AI AUTOMATION
============================================================ */
.auto-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.auto-left .section-intro { margin-bottom: 0; }

.benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 40px;
}
.benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}
.benefit-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.benefit-dot--cyan { background: rgba(190,231,255,0.9); border: 1px solid rgba(183,204,255,0.75); }
.benefit-dot--lav  { background: rgba(217,208,255,0.9); border: 1px solid rgba(217,208,255,0.75); }
.benefit-dot--pink { background: rgba(245,214,230,0.9); border: 1px solid rgba(245,214,230,0.75); }
.benefit-dot--blue { background: rgba(183,204,255,0.9); border: 1px solid rgba(183,204,255,0.75); }

.auto-closing {
  margin-top: 40px;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.45;
}

.flow-panel {
  border-radius: 40px;
  padding: 56px 48px;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}
.flow-panel::before {
  content: '';
  position: absolute;
  bottom: -70px; right: -40px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(217,208,255,0.36) 0%, transparent 65%);
  filter: blur(50px);
}

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

.flow-step {
  display: flex;
  align-items: center;
  gap: 16px;
}
.flow-num {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.64);
  border: 1px solid rgba(255,255,255,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  box-shadow: 0 2px 6px rgba(90,110,150,0.07);
}
.flow-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}
.flow-connector {
  width: 1px;
  height: 24px;
  background: linear-gradient(to bottom, rgba(190,231,255,0.65), rgba(217,208,255,0.65));
  margin: 8px 0 8px 14px;
}

/* ============================================================
   PROCESS
============================================================ */
.process-card {
  border-radius: 32px;
  padding: 40px 32px;
  transition: transform 0.3s;
}
.process-card:hover { transform: translateY(-3px); }

.process-num {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 26px;
}
.process-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 12px;
}

/* ============================================================
   RESULTS
============================================================ */
.results-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.results-left .h2 { margin-bottom: 18px; }
.results-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-top: 16px;
}

.results-panel {
  border-radius: 40px;
  padding: 50px 46px;
  position: relative;
  overflow: hidden;
}
.results-panel::before {
  content: '';
  position: absolute;
  top: -50px; left: -50px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(190,231,255,0.32) 0%, transparent 65%);
  filter: blur(48px);
}

.results-list {
  list-style: none;
  position: relative;
  z-index: 1;
}
.results-list li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.52);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.015em;
  display: flex;
  align-items: center;
  gap: 14px;
}
.results-list li:last-child { border-bottom: none; }

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(190,231,255,0.50);
  border: 1px solid rgba(190,231,255,0.68);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testi-card {
  border-radius: 32px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.testi-stars {
  font-size: 13px;
  color: #D93F8D;
  letter-spacing: 1px;
  margin-bottom: 16px;
  opacity: 0.85;
}
.testi-q {
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--text);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  flex: 1;
}
.testi-q::before {
  content: '"';
  color: rgba(217,63,141,0.30);
  font-size: 2em;
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 2px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 13px;
}
.testi-av-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.72);
  box-shadow: 0 2px 10px rgba(100,120,160,0.12);
  flex-shrink: 0;
}
.testi-name {
  font-size: 13px;
  font-weight: 700;
  color: #111318;
  letter-spacing: -0.01em;
}
.testi-role {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================================
   HOW I WORK / DIRECT WORK
============================================================ */
.dw-grid {
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: center;
  gap: 72px;
}

/* Image column */
.dw-img-col {
  position: relative;
}
.dw-img-frame {
  position: relative;
  border-radius: 32px;
  overflow: visible;
}
.dw-photo {
  width: 100%;
  border-radius: 28px;
  display: block;
  object-fit: cover;
  box-shadow:
    0 24px 64px rgba(100, 120, 160, 0.14),
    0 4px 16px rgba(100, 120, 160, 0.08);
}
.dw-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.70);
  border-radius: 20px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 0 0 1px rgba(217,63,141,0.08);
  max-width: 220px;
}
.dw-badge__icon {
  font-size: 14px;
  color: #9BAED4;
  flex-shrink: 0;
}
.dw-badge__text {
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

/* Text column */
.dw-text-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dw-title {
  margin-top: 14px;
  margin-bottom: 18px;
}
.dw-intro {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 22px;
  font-weight: 400;
}
.dw-para {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* Highlight box */
.dw-highlight {
  margin: 28px 0 24px;
  background: rgba(255,255,255,0.42);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.58);
  border-left: 2px solid #D93F8D;
  border-radius: 0 20px 20px 0;
  padding: 24px 28px;
  box-shadow: 4px 0 20px rgba(217,63,141,0.06);
}
.dw-highlight strong, .dw-highlight h4, .dw-highlight .dw-highlight-title {
  font-weight: 700;
  color: #111318;
}
.dw-highlight__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.dw-highlight__text {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-muted);
}

.dw-closing {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-muted);
  font-style: italic;
}

/* Responsive */
@media (max-width: 900px) {
  .dw-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .dw-img-col { order: -1; max-width: 420px; margin: 0 auto; }
  .dw-badge { right: 0; bottom: -14px; }
}
@media (max-width: 600px) {
  .dw-grid { gap: 32px; }
  .dw-highlight { padding: 20px 20px; }
}

/* ============================================================
   PRICING
============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.pr-span2 { grid-column: span 2; }
.pr-span3 { grid-column: span 3; }

.pricing-card {
  border-radius: 32px;
  padding: 36px 28px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(90,110,160,0.13);
}

.pricing-card--featured {
  background: rgba(255,255,255,0.42) !important;
  border: 1px solid rgba(255,255,255,0.62) !important;
  box-shadow:
    0 24px 64px rgba(110,125,160,0.14),
    inset 0 1px 0 rgba(255,255,255,0.60) !important;
}
.pr-featured {
  position: relative;
  border-top: 2px solid #D93F8D !important;
  background: radial-gradient(circle at top center, rgba(217,63,141,0.07), transparent 60%), rgba(255,255,255,0.55);
}
.pr-featured::before {
  content: 'Most popular';
  position: absolute;
  top: -1px;
  right: 20px;
  background: rgba(217,63,141,0.10);
  color: #C7327E;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 0 0 8px 8px;
}

.pr-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: block;
  text-transform: uppercase;
}
.pr-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.022em;
  color: var(--text);
  margin-bottom: 10px;
}
.pr-desc {
  font-size: 13px;
  line-height: 1.66;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.pr-included {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.pr-included li {
  font-size: 13px;
  color: var(--text-secondary, #4a5568);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.pr-included li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #69BDEB;
  font-size: 12px;
  font-weight: 700;
  top: 1px;
}
.pr-price-area {
  border-top: 1px solid rgba(255,255,255,0.52);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pr-from {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: lowercase;
}
.pr-price {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #111318;
  line-height: 1;
}
.pr-price--custom {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}
.pr-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.pricing-footer {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.pricing-footer-note {
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================================
   FINAL CTA
============================================================ */
.section--cta { padding-bottom: 80px; }

.cta-panel {
  border-radius: 40px;
  padding: 88px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-panel::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 640px; height: 420px;
  background: radial-gradient(ellipse, rgba(190,231,255,0.36) 0%, rgba(217,208,255,0.20) 42%, transparent 68%);
  filter: blur(64px);
  pointer-events: none;
}

.cta-title {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.030em;
  color: var(--text);
  line-height: 1.06;
  max-width: 720px;
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
}
.cta-text {
  font-size: 17px;
  line-height: 1.66;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 44px;
  position: relative;
  z-index: 1;
}
.cta-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ============================================================
   CONTACT FORM
============================================================ */
.section--contact {
  padding-top: 0;
  padding-bottom: 100px;
}

.contact-panel {
  border-radius: 40px;
  padding: 68px 72px;
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.contact-panel::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 300px;
  background: radial-gradient(ellipse, rgba(217,208,255,0.36) 0%, transparent 65%);
  filter: blur(52px);
}
.contact-panel > * { position: relative; z-index: 1; }
.contact-panel .label { text-align: center; display: block; margin-bottom: 14px; }
.contact-panel .h2 { text-align: center; margin-bottom: 14px; }
.contact-panel .section-intro--center { margin-bottom: 36px; }

.form {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.form-input {
  background: rgba(255,255,255,0.46);
  border: 1px solid rgba(255,255,255,0.62);
  border-radius: 16px;
  padding: 13px 18px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
}
.form-input:focus {
  border-color: rgba(190,231,255,0.80);
  box-shadow: 0 0 0 3px rgba(190,231,255,0.16);
}
.form-input::placeholder { color: var(--text-muted); }
.form-textarea { resize: none; }
.form-success {
  margin-top: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(158,220,255,0.14);
  border: 1px solid rgba(158,220,255,0.30);
  color: #3A8AAD;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.form-error {
  margin-top: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(217,63,141,0.08);
  border: 1px solid rgba(217,63,141,0.22);
  color: #C7327E;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  padding: 44px 40px;
  border-top: 1px solid rgba(18,20,26,0.06);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__logo {
  height: 72px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
  filter: grayscale(1) brightness(0.15) contrast(1.4);
  display: block;
}
.footer-tag {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-nav {
  display: flex;
  gap: 28px;
}
.footer-nav a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #D93F8D; }
.footer-copy {
  font-size: 12px;
  color: var(--text-light);
}

/* ============================================================
   REVEAL ANIMATIONS
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — 1080px
============================================================ */
@media (max-width: 1080px) {
  .hero__panel {
    grid-template-columns: 1fr;
  }
  .hero__right {
    display: none;
  }
  .why-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .why-right {
    position: static;
  }
  .port-grid {
    grid-template-columns: 1fr;
  }
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pr-span2, .pr-span3 { grid-column: span 1; }
  .auto-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .results-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .h2 {
    font-size: 40px;
  }
}

/* ============================================================
   RESPONSIVE — 768px
============================================================ */
@media (max-width: 768px) {
  .nav__links {
    display: none;
  }
  .section {
    padding: 80px 24px;
  }
  .hero {
    padding: 96px 24px 64px;
  }
  .hero__panel {
    border-radius: 28px;
    padding: 48px 28px;
    grid-template-columns: 1fr;
  }
  .hero__h1 {
    font-size: 38px;
  }
  .h2 {
    font-size: 32px;
  }
  .grid--4,
  .grid--3 {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pr-span2, .pr-span3 { grid-column: span 1; }
  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ig-wide {
    grid-column: span 1;
    aspect-ratio: 4/5;
  }
  .cta-panel {
    padding: 56px 32px;
  }
  .cta-title {
    font-size: 34px;
  }
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 16px;
  }
  .contact-panel {
    padding: 48px 28px;
  }
  .contact-panel .form > div[style] {
    grid-template-columns: 1fr !important;
  }
  .stats-panel {
    padding: 40px 32px;
  }
  .stat-num {
    font-size: 52px;
  }
  .stat-word {
    font-size: 28px;
  }
  .why-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .port-grid {
    grid-template-columns: 1fr;
  }
  .auto-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .results-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  /* Service cards — 1 column on mobile */
  .grid--2 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .card, .glass-card {
    padding: 28px 24px;
  }
  .svc-title {
    font-size: 20px;
  }

  /* Hero CTA buttons — mobile */
  .hero__actions,
  .cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero__actions .btn,
  .cta-actions .btn {
    width: auto;
    min-width: 200px;
    max-width: 280px;
    justify-content: center;
  }
  .nav {
    padding: 14px 16px;
  }
  .nav__wrap {
    padding: 8px 8px 8px 18px;
  }
  .cta-panel::before {
    width: 320px;
    height: 280px;
  }
}

/* ============================================================
   Cookie Consent Banner
============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 680px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.58);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(90,110,150,0.14), inset 0 1px 0 rgba(255,255,255,0.8);
  animation: cookieSlideUp 0.4s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes cookieSlideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
}
.cookie-banner__text {
  flex: 1;
}
.cookie-banner__text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #111318;
  margin-bottom: 4px;
}
.cookie-banner__text p {
  font-size: 13px;
  color: #667085;
  margin: 0;
  line-height: 1.5;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.cookie-btn--primary {
  background: #D93F8D;
  color: #fff;
  box-shadow: 0 4px 14px rgba(217,63,141,0.22);
}
.cookie-btn--primary:hover {
  background: #C7327E;
  transform: translateY(-1px);
}
.cookie-btn--outline {
  background: rgba(255,255,255,0.5);
  color: #5F6673;
  border: 1px solid rgba(17,19,24,0.10);
}
.cookie-btn--outline:hover {
  background: rgba(255,255,255,0.8);
  border-color: rgba(158,220,255,0.35);
}
@media (max-width: 600px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .cookie-banner__actions {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}
