/* ==========================================================================
   ZAYD KHAN — GROWTH STUDIO
   Design tokens: white surface, blue/purple/cyan/orange accents
   Type: Sora (display) + Inter (body) + JetBrains Mono (data/labels)
   ========================================================================== */

:root {
  /* Colors */
  --bg: #FFFFFF;
  --bg-section: #F8FAFC;
  --blue: #2563EB;
  --purple: #7C3AED;
  --cyan: #06B6D4;
  --orange: #F97316;
  --gray-light: #E5E7EB;
  --text: #111827;
  --text-muted: #5B6472;
  --text-soft: #8A93A3;
  --white: #FFFFFF;

  --grad-primary: linear-gradient(135deg, var(--blue), var(--purple));
  --grad-warm: linear-gradient(135deg, var(--orange), var(--purple));
  --grad-cool: linear-gradient(135deg, var(--cyan), var(--blue));
  --grad-text: linear-gradient(90deg, var(--blue), var(--purple) 55%, var(--cyan));

  /* Type */
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Layout */
  --container: 1240px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 10px rgba(17, 24, 39, 0.06);
  --shadow-md: 0 12px 32px rgba(17, 24, 39, 0.08);
  --shadow-lg: 0 24px 60px rgba(37, 99, 235, 0.14);
  --shadow-glow-blue: 0 8px 30px rgba(37, 99, 235, 0.35);
  --shadow-glow-orange: 0 8px 30px rgba(249, 115, 22, 0.35);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 72px;
}

/* ============ RESET ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
svg { display: block; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 88px 0; position: relative; }
@media (min-width: 768px) { .section { padding: 120px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--grad-primary);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.14);
}
.section-head.light .eyebrow { color: #C7D2FE; }
.section-head.light .eyebrow .dot { background: linear-gradient(135deg,#93C5FD,#C4B5FD); box-shadow: 0 0 0 4px rgba(255,255,255,0.12); }

.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(28px, 4.5vw, 42px); margin-bottom: 14px; }
.section-sub { color: var(--text-muted); font-size: 16.5px; max-width: 520px; }
.section-head.light h2 { color: #fff; }
.section-head.light .section-sub { color: #C7D2FE; }

/* ============ BUTTONS ============ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-full);
  padding: 14px 26px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
  overflow: hidden;
  white-space: nowrap;
  isolation: isolate;
}
.btn span { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-glow-blue);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(37,99,235,0.42); }
.btn-ghost {
  background: rgba(37,99,235,0.06);
  color: var(--blue);
  border: 1px solid rgba(37,99,235,0.16);
}
.btn-ghost:hover { background: rgba(37,99,235,0.12); transform: translateY(-3px); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--gray-light);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-3px); }
.btn-large { padding: 16px 30px; font-size: 15.5px; }
.btn-small { padding: 10px 20px; font-size: 13.5px; }
.btn-block { width: 100%; }

.ripple::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255,255,255,0.55) 0%, transparent 60%);
  opacity: 0;
  transform: scale(0.3);
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
  z-index: 0;
}
.ripple:active::after { opacity: 1; transform: scale(1.6); transition: 0s; }

/* ============ LOADER ============ */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 20px;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-mark {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 800;
  display: flex; gap: 2px;
}
.loader-bracket { color: var(--gray-light); animation: bracketPulse 1.4s ease-in-out infinite; }
.loader-letter {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
@keyframes bracketPulse { 0%,100%{opacity:.4} 50%{opacity:1} }
.loader-bar { width: 160px; height: 3px; background: var(--gray-light); border-radius: 4px; overflow: hidden; }
.loader-bar span { display: block; height: 100%; width: 40%; background: var(--grad-primary); border-radius: 4px; animation: loaderSlide 1.1s ease-in-out infinite; }
@keyframes loaderSlide { 0%{transform:translateX(-100%)} 100%{transform:translateX(350%)} }

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--grad-text);
  z-index: 1001;
  transition: width 0.1s linear;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}
.navbar.scrolled {
  border-bottom-color: var(--gray-light);
  box-shadow: 0 4px 24px rgba(17,24,39,0.05);
  background: rgba(255,255,255,0.92);
}
.navbar-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--grad-primary);
  color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-glow-blue);
}
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.01em; }
.brand-name em { font-style: normal; color: var(--blue); }

.nav-links { display: none; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--text-muted);
  position: relative; padding: 6px 0;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--grad-primary); border-radius: 2px;
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.navbar-actions { display: flex; align-items: center; gap: 14px; }
.navbar-actions .btn-small { display: none; }

.menu-toggle {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: var(--bg-section);
}
.menu-toggle span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.3s ease; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 999;
  padding: 30px 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu-links a {
  font-family: var(--font-display); font-size: 26px; font-weight: 600;
  padding: 14px 4px; border-bottom: 1px solid var(--gray-light);
  color: var(--text);
}
.mobile-menu-footer { display: flex; flex-direction: column; gap: 10px; padding-top: 20px; }
.mobile-menu-footer a { color: var(--text-muted); font-size: 15px; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .navbar-actions .btn-small { display: inline-flex; }
  .menu-toggle { display: none; }
  .mobile-menu { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 56px) 0 80px;
  overflow: hidden;
  background: var(--bg);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(37,99,235,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(37,99,235,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, black 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, black 10%, transparent 75%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; animation: floatOrb 10s ease-in-out infinite; }
.hero-orb-1 { width: 320px; height: 320px; background: var(--blue); top: -100px; right: -80px; }
.hero-orb-2 { width: 260px; height: 260px; background: var(--purple); bottom: -60px; left: -80px; animation-delay: -3s; }
.hero-orb-3 { width: 200px; height: 200px; background: var(--cyan); top: 40%; right: 20%; opacity: 0.3; animation-delay: -6s; }
@keyframes floatOrb { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-30px)} }

.hero-inner {
  position: relative; z-index: 1;
  display: grid; gap: 56px;
}
.hero-copy { max-width: 640px; }
.hero-copy h1 {
  font-size: clamp(32px, 6.4vw, 58px);
  margin-bottom: 20px;
}
.type-wrap { display: block; color: var(--blue); position: relative; }
.type-target {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.type-cursor { color: var(--blue); animation: blink 1s step-end infinite; font-weight: 300; }
@keyframes blink { 50% { opacity: 0; } }

.hero-sub { font-size: 17px; color: var(--text-muted); max-width: 500px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.hero-stats { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-stat { font-family: var(--font-display); }
.hero-stat .counter, .hero-stat .stat-suffix { font-size: 26px; font-weight: 800; color: var(--text); }
.hero-stat p { font-family: var(--font-body); font-size: 13px; color: var(--text-soft); margin-top: 2px; }

.hero-visual { position: relative; max-width: 460px; margin: 0 auto; width: 100%; }
.hero-card-main {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 18px;
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.hero-card-head { display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }
.hero-card-dot { width: 9px; height: 9px; border-radius: 50%; }
.hero-card-dot.red { background: #F87171; } .hero-card-dot.yellow { background: #FBBF24; } .hero-card-dot.green { background: #34D399; }
.hero-card-title { margin-left: 8px; font-family: var(--font-mono); font-size: 12px; color: var(--text-soft); }

.hero-card-topbar {
  display: flex; align-items: center; justify-content: space-between;
  background: #0B1220; border-radius: 10px;
  padding: 9px 12px;
  margin-bottom: 14px;
}
.hero-card-shopify {
  display: flex; align-items: center; gap: 7px;
  color: #fff; font-family: var(--font-display); font-size: 12.5px; font-weight: 600;
}
.hero-card-shopify svg { color: #95BF47; flex-shrink: 0; }
.hero-card-live {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 10.5px; color: #A5B0C2;
  text-transform: uppercase; letter-spacing: 0.05em;
}

.hero-card-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.hero-stat-tile {
  background: var(--bg-section);
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  padding: 9px 8px;
  display: flex; flex-direction: column; gap: 3px;
}
.hero-stat-tile span { font-size: 10px; color: var(--text-soft); font-weight: 500; }
.hero-stat-tile strong { font-family: var(--font-display); font-size: 13.5px; letter-spacing: -0.01em; }
.hero-stat-tile em { font-style: normal; font-size: 10px; font-weight: 700; }
.hero-stat-tile em.up { color: #16A34A; }
.hero-stat-tile em.up::before { content: '↑ '; }

.hero-card-chart { margin-bottom: 14px; }
.hero-card-chart-label { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 8px; }
.hero-card-chart-label span { font-size: 12px; font-weight: 600; color: var(--text); }
.hero-card-chart-label em { font-style: normal; font-size: 10.5px; color: var(--text-soft); }
.hero-card-chart svg { width: 100%; height: 100px; }

.hero-card-channels {
  display: flex; flex-wrap: wrap; gap: 8px 14px;
  border-top: 1px solid var(--gray-light);
  padding-top: 12px;
}
.channel-row {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--text-muted);
}
.channel-row strong { font-family: var(--font-display); font-size: 11.5px; color: var(--text); margin-left: 2px; }
.channel-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--c); flex-shrink: 0; }

.hero-float {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--gray-light);
  border-radius: var(--radius-full);
  padding: 9px 14px;
  font-size: 12.5px; font-weight: 600;
  box-shadow: var(--shadow-md);
  animation: floatSlow 5s ease-in-out infinite;
}
.hero-float-1 { top: -14px; left: -18px; animation-delay: -1s; }
.hero-float-2 { bottom: 30%; right: -22px; animation-delay: -2.4s; }
.hero-float-3 { bottom: -18px; left: 10%; animation-delay: -3.6s; flex-direction: column; align-items: flex-start; gap: 0; }
.hero-float-3 strong { font-family: var(--font-display); font-size: 15px; }
.hero-float-3 span { font-size: 10.5px; color: var(--text-soft); font-weight: 500; }
@keyframes floatSlow { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 0 rgba(6,182,212,0.6); animation: pulseDot 1.8s infinite; }
@keyframes pulseDot { 0%{box-shadow:0 0 0 0 rgba(6,182,212,.55)} 70%{box-shadow:0 0 0 8px rgba(6,182,212,0)} 100%{box-shadow:0 0 0 0 rgba(6,182,212,0)} }

.scroll-cue { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: none; }
.scroll-cue span { display: block; width: 22px; height: 34px; border: 2px solid var(--gray-light); border-radius: 20px; position: relative; }
.scroll-cue span::before { content:''; position:absolute; top:6px; left:50%; width:4px; height:8px; background: var(--blue); border-radius: 3px; transform: translateX(-50%); animation: scrollCue 1.6s ease-in-out infinite; }
@keyframes scrollCue { 0%{opacity:1; transform:translate(-50%,0)} 100%{opacity:0; transform:translate(-50%,10px)} }

@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
  .scroll-cue { display: block; }
}

/* ============ MARQUEE ============ */
.marquee {
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  overflow: hidden;
  padding: 18px 0;
  background: var(--bg-section);
}
.marquee-track {
  display: flex; gap: 34px; width: max-content;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.06em;
  color: var(--text-soft); text-transform: uppercase;
  animation: marqueeScroll 26s linear infinite;
}
.marquee-track span:nth-child(2n) { color: var(--blue); }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ ABOUT ============ */
.about-inner { display: grid; gap: 48px; align-items: center; }
.about-visual { display: flex; justify-content: center; }
.about-photo { position: relative; width: 100%; max-width: 340px; aspect-ratio: 4/5; }
.about-photo-frame {
  width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  background: var(--grad-primary);
  background-image: linear-gradient(135deg, var(--blue), var(--purple) 60%, var(--cyan));
  position: relative;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.about-photo-frame::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.35), transparent 45%),
    repeating-linear-gradient(115deg, rgba(255,255,255,0.06) 0 2px, transparent 2px 26px);
}
.about-badge {
  position: absolute; bottom: -20px; right: -16px;
  background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  text-align: center;
}
.about-badge strong { display: block; font-family: var(--font-display); font-size: 22px; color: var(--blue); }
.about-badge span { font-size: 11.5px; color: var(--text-soft); }

.about-copy h2 { font-size: clamp(26px, 4.5vw, 36px); margin-bottom: 16px; }
.about-copy p { color: var(--text-muted); margin-bottom: 20px; max-width: 520px; }
.about-points { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.about-points li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; }
.check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--grad-cool); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0;
}

@media (min-width: 860px) {
  .about-inner { grid-template-columns: 0.8fr 1.2fr; }
}

/* ============ TEAM ============ */
.team-grid { display: grid; gap: 20px; grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; }
@media (min-width: 640px) { .team-grid { grid-template-columns: 1fr 1fr; } }

.team-card {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 140px; height: 140px; border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--ta), var(--tb));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 34px; font-weight: 700;
  box-shadow: 0 14px 32px -8px color-mix(in srgb, var(--ta) 55%, transparent);
  border: 4px solid #fff;
  outline: 1px solid var(--gray-light);
}
@media (max-width: 479px) {
  .team-avatar { width: 110px; height: 110px; font-size: 28px; }
}
.team-card h3 { font-size: 19px; margin-bottom: 4px; }
.team-role {
  display: inline-block; font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 14px;
}
.team-card p { color: var(--text-muted); font-size: 14.5px; margin-bottom: 18px; }
.team-socials { display: flex; justify-content: center; gap: 10px; }
.team-socials a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.team-socials a:hover { background: var(--grad-primary); color: #fff; border-color: transparent; }

/* ============ SERVICES ============ */
.services { background: var(--bg-section); }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 620px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(229,231,235,0.9);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37,99,235,0.25);
}
.service-icon {
  width: 46px; height: 46px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--icon-a), var(--icon-b));
  color: #fff; margin-bottom: 16px;
  box-shadow: 0 8px 20px -6px color-mix(in srgb, var(--icon-a) 60%, transparent);
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 17px; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--text-muted); }

/* ============ WHY CHOOSE ME ============ */
.why { background: #0B1220; position: relative; overflow: hidden; }
.why-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 15% 0%, rgba(37,99,235,0.35), transparent 60%),
              radial-gradient(ellipse 50% 50% at 100% 100%, rgba(124,58,237,0.3), transparent 60%);
}
.why-grid { position: relative; display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform 0.4s var(--ease), background 0.4s ease, border-color 0.4s ease;
}
.why-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.07); border-color: rgba(37,99,235,0.4); }
.why-num {
  font-family: var(--font-mono); font-size: 13px; color: #93C5FD;
  display: inline-block; margin-bottom: 14px;
}
.why-card h3 { color: #fff; font-size: 18px; margin-bottom: 8px; }
.why-card p { color: #A5B0C2; font-size: 14.5px; }

/* ============ PACKAGES ============ */
.pricing-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: start; } }

.price-card {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card h3 { font-size: 18px; margin-bottom: 12px; }
.price-tag { font-family: var(--font-display); font-size: 40px; font-weight: 800; margin-bottom: 10px; }
.price-tag span { font-size: 20px; font-weight: 600; color: var(--text-soft); margin-right: 4px; vertical-align: middle;}
.price-desc { color: var(--text-muted); font-size: 14px; margin-bottom: 22px; min-height: 42px; }
.price-list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.price-list li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; }

.price-card-featured {
  background: #0B1220;
  border: none;
  color: #fff;
  transform: scale(1);
  box-shadow: var(--shadow-lg);
}
.price-card-featured::before {
  content: '';
  position: absolute; inset: -1px; border-radius: inherit; z-index: -1;
  background: var(--grad-primary);
  opacity: 0.9;
}
.price-card-featured::after {
  content: ''; position: absolute; inset: 2px; border-radius: calc(var(--radius-lg) - 2px);
  background: #0B1220; z-index: -1;
}
.price-card-featured h3, .price-card-featured .price-tag { color: #fff; }
.price-card-featured .price-tag span { color: #93C5FD; }
.price-card-featured .price-desc { color: #A5B0C2; }
.price-card-featured .price-list { color: #E5E7EB; }
.price-card-featured .check { background: var(--grad-warm); }
.price-card-featured:hover { transform: translateY(-10px) scale(1.02); }
@media (min-width: 900px) { .price-card-featured { transform: scale(1.05); } .price-card-featured:hover { transform: translateY(-8px) scale(1.07); } }

.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-warm); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  padding: 7px 18px; border-radius: var(--radius-full);
  box-shadow: var(--shadow-glow-orange);
  white-space: nowrap;
}

/* ============ PORTFOLIO ============ */
.portfolio { background: var(--bg-section); }
.portfolio-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .portfolio-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }

.portfolio-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
  display: block;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.portfolio-media {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--pc-a), var(--pc-b));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.portfolio-media::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.35), transparent 40%);
}
.portfolio-media span {
  font-family: var(--font-mono); color: #fff; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5); padding: 6px 14px; border-radius: var(--radius-full);
  transition: transform 0.5s var(--ease);
}
.portfolio-card:hover .portfolio-media span { transform: scale(1.08); }
.portfolio-info { padding: 18px 20px; }
.portfolio-info h3 { font-size: 16px; margin-bottom: 4px; }
.portfolio-info p { font-size: 13.5px; color: var(--text-muted); }

/* ============ SUCCESS STATS ============ */
.stats { background: var(--grad-primary); background-image: linear-gradient(120deg, var(--blue), var(--purple) 65%, var(--cyan)); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; text-align: center; }
@media (min-width: 760px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-block { color: #fff; }
.stat-block .counter, .stat-block .stat-suffix { font-family: var(--font-display); font-size: clamp(30px, 5vw, 44px); font-weight: 800; }
.stat-block p { font-size: 13.5px; opacity: 0.85; margin-top: 6px; }

/* ============ REVIEWS ============ */
.reviews-rating { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.stars { color: var(--orange); font-size: 16px; letter-spacing: 2px; }
.reviews-rating strong { font-family: var(--font-display); font-size: 17px; }
.reviews-sub { color: var(--text-soft); font-size: 13.5px; }

.testimonial-slider { position: relative; }
.testimonial-track {
  display: flex;
  gap: 20px;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
}
.testimonial-card {
  scroll-snap-align: start;
  flex: 0 0 100%;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(14px);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: rgba(37,99,235,0.25); }
.testimonial-card p { font-size: 16px; margin: 14px 0 20px; color: var(--text); }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--av), #111827);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
}
.testimonial-person strong { display: block; font-size: 14.5px; }
.testimonial-person span { font-size: 12.5px; color: var(--text-soft); }

@media (min-width: 700px) { .testimonial-card { flex: 0 0 calc(50% - 10px); } }
@media (min-width: 1040px) { .testimonial-card { flex: 0 0 calc(33.333% - 14px); } }

.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 28px; }
.testi-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 1px solid var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--text); transition: all 0.3s ease;
}
.testi-btn:hover { background: var(--grad-primary); color: #fff; border-color: transparent; }
.testi-dots { display: flex; gap: 8px; }
.testi-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gray-light);
  transition: all 0.3s ease;
}
.testi-dots button.active { width: 22px; border-radius: 5px; background: var(--grad-primary); }

.reviews-counters {
  display: flex; justify-content: center; gap: 60px;
  margin-top: 56px; text-align: center;
}
.reviews-counters .counter, .reviews-counters .stat-suffix { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: var(--blue); }
.reviews-counters p { font-size: 13px; color: var(--text-soft); margin-top: 4px; }

/* ============ MENTORSHIP ============ */
.mentorship-inner { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 800px) { .mentorship-inner { grid-template-columns: 1fr 1fr; } }
.mentorship-card {
  background: var(--bg-section);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.mentorship-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.mentorship-icon {
  width: 54px; height: 54px; border-radius: 15px;
  background: var(--grad-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; box-shadow: var(--shadow-glow-blue);
}
.mentorship-icon svg { width: 26px; height: 26px; }
.mentorship-card h3 { font-size: 21px; margin-bottom: 12px; }
.mentorship-card p { color: var(--text-muted); margin-bottom: 20px; }
.mentorship-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.mentorship-list li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 500; }

/* ============ FAQ ============ */
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-head { max-width: 100%; text-align: left; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  transition: border-color 0.3s ease;
}
.faq-item.active { border-color: rgba(37,99,235,0.3); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 22px; text-align: left;
  font-family: var(--font-display); font-weight: 600; font-size: 15.5px;
}
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--blue); border-radius: 2px; transition: transform 0.35s var(--ease);
}
.faq-icon::before { width: 18px; height: 2px; top: 8px; left: 0; }
.faq-icon::after { width: 2px; height: 18px; top: 0; left: 8px; }
.faq-item.active .faq-icon::after { transform: rotate(90deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-answer p { padding: 0 22px 20px; color: var(--text-muted); font-size: 14.5px; }

/* ============ CONTACT ============ */
.contact { position: relative; overflow: hidden; }
.contact-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 50% at 90% 10%, rgba(6,182,212,0.08), transparent 60%),
              radial-gradient(ellipse 55% 50% at 0% 90%, rgba(124,58,237,0.08), transparent 60%);
}
.contact-inner { position: relative; display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-inner { grid-template-columns: 0.85fr 1.15fr; } }

.contact-info h2 { font-size: clamp(26px, 4.5vw, 34px); margin-bottom: 12px; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; }
.contact-method {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-section);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
a.contact-method:hover { transform: translateX(4px); border-color: rgba(37,99,235,0.3); }
.contact-method-icon {
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--grad-primary); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  flex-shrink: 0;
}
.contact-method strong { display: block; font-size: 14.5px; }
.contact-method span { font-size: 13.5px; color: var(--text-muted); }

.contact-form {
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 18px;
}
.form-row { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.form-field input, .form-field select, .form-field textarea {
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  font-size: 14.5px;
  color: var(--text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: vertical;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.12);
  outline: none;
}
.form-status { font-size: 14px; font-weight: 500; min-height: 20px; color: var(--cyan); }

/* ============ FOOTER ============ */
.footer { background: #0B1220; color: #A5B0C2; padding: 70px 0 24px; }
.footer-top { display: grid; gap: 40px; grid-template-columns: 1fr; margin-bottom: 50px; }
@media (min-width: 760px) { .footer-top { grid-template-columns: 1.4fr repeat(3, 1fr); } }
.footer-brand p { margin: 16px 0 20px; font-size: 14px; max-width: 280px; }
.footer .brand-name { color: #fff; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff;
  transition: all 0.3s ease;
}
.footer-social a:hover { background: var(--grad-primary); border-color: transparent; transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-size: 14.5px; margin-bottom: 18px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; transition: color 0.3s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  font-size: 13px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a:hover { color: #fff; }

/* ============ FLOATING ELEMENTS ============ */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(37,211,102,0.45);
  animation: floatSlow 3.5s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

.back-to-top {
  position: fixed; bottom: 24px; left: 24px; z-index: 900;
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; color: var(--blue);
  border: 1px solid var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all 0.35s var(--ease);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--grad-primary); color: #fff; border-color: transparent; }

/* ============ SCROLL REVEAL ============ */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-up.in-view { opacity: 1; transform: translateY(0); }
.delay-1.in-view { transition-delay: 0.08s; }
.delay-2.in-view { transition-delay: 0.16s; }
.delay-3.in-view { transition-delay: 0.24s; }
.delay-4.in-view { transition-delay: 0.32s; }

/* ============ PAYMENT MODAL ============ */
.payment-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.payment-overlay.active { opacity: 1; visibility: visible; }
.payment-modal {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg, 16px);
  padding: 32px 28px;
  max-width: 420px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.35);
  transform: translateY(16px);
  transition: transform 0.25s ease;
}
.payment-overlay.active .payment-modal { transform: translateY(0); }
.payment-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; font-size: 26px; line-height: 1;
  color: var(--text-muted, #64748B); cursor: pointer;
}
.payment-close:hover { color: var(--ink, #0F172A); }
.payment-eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--blue, #2563EB); margin: 0 0 6px;
}
.payment-modal h3 { font-size: 20px; margin: 0 0 4px; }
.payment-price { color: var(--blue, #2563EB); font-weight: 700; font-size: 18px; margin: 0 0 18px; }
.payment-bank-box {
  background: var(--bg-section, #F8FAFC);
  border: 1px solid var(--gray-light, #E2E8F0);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 16px;
}
.payment-bank-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 8px 0;
  border-bottom: 1px solid var(--gray-light, #E2E8F0);
  font-size: 14px;
}
.payment-bank-row:last-child { border-bottom: none; }
.payment-bank-row span { color: var(--text-muted, #64748B); }
.payment-bank-row strong { text-align: right; word-break: break-word; }
.payment-note {
  font-size: 13.5px; color: var(--text-muted, #64748B);
  line-height: 1.5; margin-bottom: 20px;
}
