:root {
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-900: #1e3a8a;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 48px -12px rgba(15, 23, 42, 0.18);
  --container: 1320px;

  /* Tech / dark theme */
  --navy-950: #05070f;
  --navy-900: #0a0f1e;
  --navy-800: #131c31;
  --navy-700: #1c2740;
  --cyan-500: #06b6d4;
  --cyan-400: #22d3ee;
  --cyan-300: #67e8f9;
  --violet-600: #7c3aed;
  --violet-500: #8b5cf6;
  --violet-400: #a78bfa;

  /* Vecturr design system: warm neutral canvas + royal blue / purple / cyan accents */
  --canvas: #fafaf8;
  --canvas-alt: rgba(241, 240, 235, .82);
  --glass-bg: rgba(255, 255, 255, .62);
  --glass-bg-strong: rgba(255, 255, 255, .78);
  --glass-border: rgba(255, 255, 255, .7);
  --shadow-glow: 0 30px 60px -20px rgba(37, 99, 235, .18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* Warm canvas + a fixed, barely-there gradient mesh so no section reads as flat white.
     One layer drifts slowly (meshDrift) so the whole page never feels static. */
  background-color: var(--canvas);
  background-image:
    radial-gradient(circle at 12% 18%, rgba(37, 99, 235, .07), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(124, 58, 237, .06), transparent 40%),
    radial-gradient(circle, rgba(6, 182, 212, .06), transparent 45%);
  background-position: 0 0, 0 0, 50% 95%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100% 100%, 100% 100%, 140% 140%;
  animation: meshDrift 50s ease-in-out infinite;
  position: relative;
}
@keyframes meshDrift {
  0%, 100% { background-position: 0 0, 0 0, 50% 95%; }
  50% { background-position: 0 0, 0 0, 40% 82%; }
}
/* Faint film-grain layer over the whole page — adds tactile depth without being consciously visible */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 9998; pointer-events: none; opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg { display: block; max-width: 100%; }

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

ul { list-style: none; }

h1, h2, h3, h4 { color: var(--gray-900); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(2.5rem, 4.4vw, 3.8rem); letter-spacing: -0.03em; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }

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

.text-gradient {
  background: linear-gradient(90deg, var(--blue-500), var(--blue-700), var(--blue-500));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 6s ease-in-out infinite;
}
@keyframes gradientShift { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } }

/* Hero headline: emphasis rotates among the three lines every 3s (9s shared cycle,
   staggered by animation-delay so exactly one line is "active" at any moment) */
.hero-line {
  position: relative; display: inline-block;
  background: linear-gradient(90deg, var(--blue-600), var(--violet-500), var(--blue-600));
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: .55; filter: saturate(.4) drop-shadow(0 0 0 rgba(37, 99, 235, 0));
  transform: scale(1); letter-spacing: -0.01em;
  animation: lineEmphasis 9s ease-in-out infinite;
}
.hero h1 span.hero-line:nth-of-type(1) { animation-delay: 0s; }
.hero h1 span.hero-line:nth-of-type(2) { animation-delay: 3s; }
.hero h1 span.hero-line:nth-of-type(3) { animation-delay: 6s; }
.hero-line::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 3px; width: 100%; border-radius: 2px;
  background: linear-gradient(90deg, var(--blue-600), var(--violet-500));
  transform: scaleX(0); transform-origin: left;
  animation: lineUnderline 9s ease-in-out infinite;
}
.hero h1 span.hero-line:nth-of-type(1)::after { animation-delay: 0s; }
.hero h1 span.hero-line:nth-of-type(2)::after { animation-delay: 3s; }
.hero h1 span.hero-line:nth-of-type(3)::after { animation-delay: 6s; }
@keyframes lineEmphasis {
  0%   { opacity: 1; filter: saturate(1) drop-shadow(0 0 22px rgba(37, 99, 235, .45)); transform: scale(1.08); letter-spacing: .006em; background-position: 0% 50%; }
  28%  { opacity: 1; filter: saturate(1) drop-shadow(0 0 22px rgba(37, 99, 235, .45)); transform: scale(1.08); letter-spacing: .006em; background-position: 100% 50%; }
  36%  { opacity: .55; filter: saturate(.4) drop-shadow(0 0 0 rgba(37, 99, 235, 0)); transform: scale(1); letter-spacing: -0.01em; }
  100% { opacity: .55; filter: saturate(.4) drop-shadow(0 0 0 rgba(37, 99, 235, 0)); transform: scale(1); letter-spacing: -0.01em; }
}
@keyframes lineUnderline {
  0%   { transform: scaleX(1); opacity: 1; }
  28%  { transform: scaleX(1); opacity: 1; }
  36%  { transform: scaleX(0); opacity: 0; }
  100% { transform: scaleX(0); opacity: 0; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  border: 1px solid transparent; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn i, .btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(120deg, var(--blue-600), var(--violet-600), var(--blue-600));
  background-size: 200% auto; color: #fff; box-shadow: 0 8px 20px -6px rgba(37, 99, 235, .5);
  animation: brandGradientDrift 8s ease-in-out infinite;
}
@keyframes brandGradientDrift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -6px rgba(37, 99, 235, .55); }
.btn-outline { background: #fff; color: var(--blue-700); border-color: var(--blue-200, var(--blue-100)); border: 1.5px solid var(--blue-100); }
.btn-outline:hover { background: var(--blue-50); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--gray-700); }
.btn-ghost:hover { color: var(--blue-700); }
.btn-outline-dark { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.25); }
.btn-outline-dark:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn-shine { position: relative; overflow: hidden; }
.btn-shine::after {
  content: ''; position: absolute; top: 0; left: -75%; width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg); animation: btnShine 3.5s ease-in-out infinite;
}
@keyframes btnShine { 0% { left: -75%; } 55% { left: 130%; } 100% { left: 130%; } }
.btn-sm { padding: 9px 16px; font-size: 0.875rem; }
.btn-lg { padding: 17px 34px; font-size: 1.08rem; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Page Loader */
body.is-loading { overflow: hidden; }
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: rgba(5, 7, 15, .25);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  transition: opacity .5s ease, visibility .5s ease, backdrop-filter .5s ease;
}
.page-loader.loader-hidden { opacity: 0; visibility: hidden; pointer-events: none; backdrop-filter: blur(0px); -webkit-backdrop-filter: blur(0px); }

.loader-term {
  width: 290px; background: #0d1526; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-sm);
  overflow: hidden; animation: loaderTermGlow 2.4s ease-in-out infinite;
}
@keyframes loaderTermGlow {
  0%, 100% { box-shadow: 0 30px 60px -20px rgba(0,0,0,.6), 0 0 18px rgba(37,99,235,.15); }
  50% { box-shadow: 0 30px 60px -20px rgba(0,0,0,.6), 0 0 32px rgba(34,211,238,.35); }
}
.loader-term-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: #111a2e; border-bottom: 1px solid rgba(255,255,255,.06); }
.term-dot { width: 8px; height: 8px; border-radius: 50%; }
.term-dot.red { background: #f87171; } .term-dot.yellow { background: #fbbf24; } .term-dot.green { background: #34d399; }
.loader-term-title { margin-left: 6px; font-size: .72rem; color: #64748b; font-family: 'SFMono-Regular', Consolas, monospace; }

.loader-term-body { padding: 18px 16px 20px; font-family: 'SFMono-Regular', Consolas, monospace; font-size: .85rem; }
.loader-line { color: #cbd5e1; white-space: nowrap; }
.loader-prompt { color: var(--cyan-300); margin-right: 8px; }
.loader-typed {
  display: inline-block; overflow: hidden; white-space: nowrap; vertical-align: bottom;
  width: 0; color: #e2e8f0; animation: loaderTyping 1.3s steps(20, end) .3s forwards;
}
@keyframes loaderTyping { to { width: 20ch; } }
.loader-cursor { display: inline-block; margin-left: 2px; color: var(--cyan-300); font-size: .7rem; animation: loaderCursorBlink .8s steps(1) infinite; }
@keyframes loaderCursorBlink { 50% { opacity: 0; } }

.loader-progress { margin-top: 16px; height: 4px; border-radius: 999px; background: rgba(255,255,255,.08); overflow: hidden; }
.loader-progress span {
  display: block; height: 100%; width: 0%; border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan-400), var(--blue-500));
  animation: loaderProgressFill 1.6s ease .4s forwards;
}
@keyframes loaderProgressFill { to { width: 100%; } }

@media (prefers-reduced-motion: reduce) {
  .loader-term { animation: none !important; }
  .loader-typed { animation: none !important; width: 20ch !important; }
  .loader-cursor { animation: none !important; }
  .loader-progress span { animation: none !important; width: 100% !important; }
}

/* Header: floating glass pill navbar */
.header {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 40px); max-width: 1240px;
  z-index: 100; padding: 14px 26px; border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, .6);
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, .14), inset 0 1px 0 rgba(255, 255, 255, .5);
  transition: top .35s cubic-bezier(.22, .9, .3, 1), padding .35s cubic-bezier(.22, .9, .3, 1), box-shadow .35s ease, background .35s ease;
}
.header.scrolled {
  top: 10px; padding: 10px 22px;
  background: rgba(255, 255, 255, .85);
  box-shadow: 0 14px 34px -10px rgba(15, 23, 42, .2), inset 0 1px 0 rgba(255, 255, 255, .6);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.22rem; color: var(--gray-900); }
.brand-mark { width: 40px; height: 40px; border-radius: 11px; background: linear-gradient(135deg, var(--blue-500), var(--violet-600)); color: #fff; display: flex; align-items: center; justify-content: center; transition: transform .3s ease; }
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.06); }
.brand-mark svg { width: 22px; height: 22px; }
.brand-name span { color: var(--blue-600); }
.nav-links { display: flex; gap: 30px; }
.nav-links a { position: relative; font-size: 0.98rem; font-weight: 500; color: var(--gray-600); transition: color .2s; padding-bottom: 3px; }
.nav-links a::before {
  content: ''; position: absolute; left: 50%; top: 50%; width: 64px; height: 34px;
  transform: translate(-50%, -50%) scale(.7); border-radius: 999px;
  background: radial-gradient(circle, rgba(37, 99, 235, .16), transparent 70%);
  opacity: 0; transition: opacity .25s ease, transform .25s ease; z-index: -1;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-400));
  transform: scaleX(0); transform-origin: left; transition: transform .25s cubic-bezier(.22, .9, .3, 1);
}
.nav-links a:hover { color: var(--blue-700); }
.nav-links a:hover::before { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--blue-700); font-weight: 700; }
.nav-links a.active::after { transform: scaleX(1); }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--gray-800); }

/* Hero */
.hero {
  position: relative; overflow: hidden; background: linear-gradient(180deg, var(--gray-50), var(--white));
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; min-height: 100svh; padding: 130px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(to right, var(--gray-200) 1px, transparent 1px), linear-gradient(to bottom, var(--gray-200) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, #000 60%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, #000 60%, transparent 100%);
  opacity: .6;
}
.hero-parallax-back, .hero-parallax-front { position: absolute; inset: 0; z-index: 0; pointer-events: none; will-change: transform; }
.cursor-glow {
  position: absolute; top: 0; left: 0; width: 420px; height: 420px; margin: -210px 0 0 -210px;
  border-radius: 50%; background: radial-gradient(circle, rgba(37, 99, 235, .16), transparent 70%);
  opacity: 0; transition: opacity .4s ease; pointer-events: none; z-index: 0; will-change: transform;
}
.hero-blob { position: absolute; z-index: 0; border-radius: 50%; filter: blur(60px); opacity: .55; pointer-events: none; }
.hero-blob-1 { width: 520px; height: 520px; top: -120px; left: -100px; background: radial-gradient(circle, var(--blue-100), transparent 70%); animation: blobFloat1 16s ease-in-out infinite alternate; }
.hero-blob-2 { width: 580px; height: 580px; bottom: -160px; right: -120px; background: radial-gradient(circle, var(--blue-50), transparent 70%); animation: blobFloat2 20s ease-in-out infinite alternate; }
@keyframes blobFloat1 { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(50px, 35px) scale(1.18); } }
@keyframes blobFloat2 { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(-40px, -45px) scale(1.12); } }

.hero-orbit { position: absolute; border: 2px dashed var(--gray-200); border-radius: 50%; opacity: .6; z-index: 0; pointer-events: none; }
.hero-orbit-1 { width: 540px; height: 540px; top: -170px; left: -210px; animation: orbitSpin 60s linear infinite; }
.hero-orbit-2 { width: 640px; height: 640px; bottom: -300px; right: -250px; animation: orbitSpin 80s linear infinite reverse; }
@keyframes orbitSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 5fr 3fr; gap: 64px; align-items: center; width: 100%; perspective: 1600px; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--gray-500); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.scroll-cue i, .scroll-cue svg { width: 18px; height: 18px; }
@keyframes scrollBounce { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; border-radius: 999px; background: var(--blue-50); color: var(--blue-700); font-weight: 600; font-size: 0.92rem; margin-bottom: 28px; }
.eyebrow i, .eyebrow svg { width: 16px; height: 16px; }
.hero h1 { position: relative; font-size: clamp(2.8rem, 5.6vw, 4.6rem); line-height: 1.15; margin-bottom: 26px; }
.hero-sub { font-size: 1.3rem; color: var(--gray-600); max-width: 580px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust { display: grid; grid-template-columns: repeat(4, auto); align-items: center; gap: 40px; margin-top: 60px; }
.trust-item { display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.trust-item strong { font-size: 1.9rem; color: var(--gray-900); font-weight: 800; line-height: 1; }
.trust-item span { font-size: 0.86rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: .04em; }

.hero-art {
  position: relative; perspective: 1400px;
  animation: flipInRight 1.15s cubic-bezier(.22, .9, .3, 1) .15s both;
  animation-play-state: paused;
}
body:not(.is-loading) .hero-art { animation-play-state: running; }
@keyframes flipInRight {
  0% { opacity: 0; transform: translateX(160px) rotateY(65deg) scale(.9); }
  55% { opacity: 1; }
  72% { transform: translateX(-14px) rotateY(-8deg) scale(1.02); }
  100% { opacity: 1; transform: translateX(0) rotateY(0deg) scale(1); }
}
.hero-art-glow { position: absolute; inset: 10%; background: radial-gradient(circle, var(--blue-100) 0%, transparent 70%); filter: blur(30px); opacity: .7; z-index: 0; animation: glowPulse 5s ease-in-out infinite alternate; }
@keyframes glowPulse { 0% { opacity: .5; transform: scale(1); } 100% { opacity: .9; transform: scale(1.08); } }

/* Floating capsule cluster — asymmetric, layered, independent motion */
.orbit-wrap { position: relative; width: 100%; max-width: 480px; aspect-ratio: 1 / 1; margin: 0 auto; }
.capsule-lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; overflow: visible; pointer-events: none; }
.capsule-line {
  fill: none; stroke: var(--blue-500); stroke-width: 1.5; stroke-opacity: .2;
  stroke-dasharray: 6 8; animation: capsuleLineFlow 3.2s linear infinite;
  filter: drop-shadow(0 0 3px rgba(37, 99, 235, .3));
}
@keyframes capsuleLineFlow { to { stroke-dashoffset: -28; } }

.capsule {
  --rot: 0deg; --depth: 1;
  position: absolute; opacity: 0;
  transform: translate(-50%, -50%) rotate(var(--rot)) scale(calc(var(--depth) * .85));
  animation: capsulePopIn .6s cubic-bezier(.22, .9, .3, 1) forwards; animation-play-state: paused;
}
body:not(.is-loading) .capsule { animation-play-state: running; }
@keyframes capsulePopIn {
  to { transform: translate(-50%, -50%) rotate(var(--rot)) scale(var(--depth)); opacity: 1; }
}
/* Varied rotation, depth (size/z-index) and slight overlap with the dashboard — a scattered,
   handcrafted arrangement rather than evenly-spaced points on an invisible grid */
.capsule-seo       { --rot: -7deg; --depth: .82; z-index: 2; animation-delay: 1.1s; }
.capsule-ads       { --rot: 4deg;  --depth: 1.05; z-index: 4; animation-delay: 1.3s; }
.capsule-tech      { --rot: 6deg;  --depth: .8; z-index: 2; animation-delay: 1.4s; }
.capsule-analytics { --rot: -5deg; --depth: .95; z-index: 1; animation-delay: 1.5s; }
.capsule-reviews   { --rot: 6deg;  --depth: .78; z-index: 2; animation-delay: 1.7s; }
.capsule-ai        { --rot: -4deg; --depth: 1; z-index: 4; animation-delay: 1.9s; }
.capsule-lead      { --rot: 5deg;  --depth: 1.1; z-index: 4; animation-delay: 2.1s; }
.capsule-maps      { --rot: -8deg; --depth: .8; z-index: 1; animation-delay: 2.3s; }

/* Each capsule's own idle bob lives on a nested element so it doesn't fight the parent's entrance animation */
.capsule-float {
  display: flex; align-items: center; gap: 10px; white-space: nowrap;
  padding: 12px 16px; border-radius: 18px; border: 1px solid transparent;
  background:
    linear-gradient(var(--glass-bg), var(--glass-bg)) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, .8), rgba(124, 58, 237, .25)) border-box;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 32px -12px rgba(15, 23, 42, .22);
  animation: capsuleFloat 4.5s ease-in-out infinite;
}
.capsule-seo .capsule-float       { animation-duration: 4.2s; }
.capsule-ads .capsule-float       { animation-duration: 5.1s; animation-delay: .3s; }
.capsule-tech .capsule-float      { animation-duration: 4.9s; animation-delay: .7s; }
.capsule-analytics .capsule-float { animation-duration: 4.8s; animation-delay: .6s; }
.capsule-reviews .capsule-float   { animation-duration: 5.4s; animation-delay: .1s; }
.capsule-ai .capsule-float        { animation-duration: 4.6s; animation-delay: .5s; }
.capsule-lead .capsule-float      { animation-duration: 5.7s; animation-delay: .2s; }
.capsule-maps .capsule-float      { animation-duration: 5s; animation-delay: .4s; }
@keyframes capsuleFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.capsule-icon {
  width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; background: linear-gradient(135deg, var(--blue-500) 25%, var(--blue-700) 70%, var(--violet-600) 100%);
}
.capsule-icon i, .capsule-icon svg { width: 17px; height: 17px; color: #fff; }
.capsule-body { display: flex; flex-direction: column; line-height: 1.25; }
.capsule-body strong { font-size: .92rem; font-weight: 800; color: var(--gray-900); }
.capsule-body span { font-size: .7rem; color: var(--gray-500); }
.capsule-body-center { align-items: center; text-align: center; }
.capsule-body-center strong {
  font-size: 1.3rem; background: linear-gradient(90deg, var(--blue-600), var(--violet-600));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.capsule-stars { color: #f59e0b; font-size: .8rem; letter-spacing: 1px; flex-shrink: 0; }
.capsule-live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #34d399; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, .6); animation: livePulse 1.8s ease-out infinite;
}

.capsule-seo { top: 8%; left: 18%; }
.capsule-ads { top: 3%; left: 58%; }
.capsule-tech { top: 16%; left: 84%; }
.capsule-analytics { top: 32%; left: 78%; }
.capsule-reviews { top: 72%; left: 80%; }
.capsule-ai { top: 90%; left: 54%; }
.capsule-lead { top: 80%; left: 22%; }
.capsule-maps { top: 46%; left: 16%; }

.hero-panel-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 260px; z-index: 3; }
.hero-panel {
  position: relative; width: 100%; margin: 0 auto;
  background: rgba(255,255,255,.88); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); overflow: hidden;
  transform-style: preserve-3d; transform: rotateX(0deg) rotateY(0deg);
  transition: box-shadow .3s ease;
  will-change: transform;
}
.hero-panel:hover { box-shadow: 0 42px 74px -18px rgba(15, 23, 42, .38); }
.hero-panel::before {
  content: ''; position: absolute; inset: 0; z-index: 5; border-radius: inherit; pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 30%), rgba(255,255,255,.6), transparent 55%);
  opacity: 0; transition: opacity .3s ease; mix-blend-mode: overlay;
}
.hero-panel:hover::before { opacity: .7; }
.hero-panel-header { display: flex; align-items: center; gap: 8px; padding: 16px 18px; border-bottom: 1px solid var(--gray-100); }
.hero-panel-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gray-200); }
.hero-panel-dot:first-child { background: #f87171; }
.hero-panel-dot:nth-child(2) { background: #fbbf24; }
.hero-panel-dot:nth-child(3) { background: #34d399; }
.hero-panel-title { margin-left: 6px; font-size: .78rem; font-weight: 600; color: var(--gray-500); }
.live-pulse-dot { margin-left: auto; width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 0 rgba(52,211,153,.6); animation: livePulse 1.8s ease-out infinite; }
@keyframes livePulse { 0% { box-shadow: 0 0 0 0 rgba(52,211,153,.6); } 100% { box-shadow: 0 0 0 8px rgba(52,211,153,0); } }
.hero-panel-body { padding: 18px; transform-style: preserve-3d; }
.growth-body { display: flex; flex-direction: column; gap: 14px; }
.growth-metric-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.growth-metric {
  display: flex; align-items: center; gap: 6px; background: var(--gray-50); border-radius: var(--radius-sm);
  padding: 9px 8px; position: relative; overflow: hidden;
}
.growth-metric > i, .growth-metric > svg { width: 14px; height: 14px; color: var(--blue-600); flex-shrink: 0; }
.growth-metric div { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.growth-metric strong { font-size: .96rem; font-weight: 800; color: var(--gray-900); white-space: nowrap; transition: color .15s ease; }
.growth-metric strong.tick-flash { color: var(--violet-600); animation: tickFlash .7s ease; }
@keyframes tickFlash { 0% { transform: scale(1.18); } 100% { transform: scale(1); } }
.growth-metric span { font-size: .62rem; color: var(--gray-500); white-space: nowrap; }
.trend-up { margin-left: auto; padding-left: 4px; font-size: .62rem; font-weight: 700; color: #059669; flex-shrink: 0; }
.growth-chart { display: flex; align-items: flex-end; gap: 5px; height: 46px; padding: 4px 2px 0; }
.growth-chart span {
  flex: 1; height: var(--h); border-radius: 3px 3px 0 0; background: linear-gradient(180deg, var(--blue-500), var(--blue-700));
  transform: scaleY(0); transform-origin: bottom; animation: chartGrow .6s ease forwards; animation-play-state: paused;
}
body:not(.is-loading) .growth-chart span { animation-play-state: running; }
.growth-chart span:nth-child(1) { animation-delay: 1.9s; } .growth-chart span:nth-child(2) { animation-delay: 1.97s; }
.growth-chart span:nth-child(3) { animation-delay: 2.04s; } .growth-chart span:nth-child(4) { animation-delay: 2.11s; }
.growth-chart span:nth-child(5) { animation-delay: 2.18s; } .growth-chart span:nth-child(6) { animation-delay: 2.25s; }
.growth-chart span:nth-child(7) { animation-delay: 2.32s; }
@keyframes chartGrow { to { transform: scaleY(1); } }

/* Sections */
.section { padding: 110px 0; }
.section-alt { background: var(--canvas-alt); }
.section-tag { display: inline-block; color: var(--blue-600); font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.lead { font-size: 1.2rem; line-height: 1.7; color: var(--gray-600); margin-top: 14px; }

/* About */
#about { position: relative; overflow: hidden; }
.draw-line { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; opacity: .4; }
.draw-line path { fill: none; stroke: var(--blue-500); stroke-width: 1.5; stroke-linecap: round; stroke-dasharray: 1500; stroke-dashoffset: 1500; }
.draw-line.in-view path { animation: drawLine 2.4s cubic-bezier(.22, .9, .3, 1) forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.about-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-grid p { margin-bottom: 16px; color: var(--gray-600); font-size: 1.02rem; }
.check-list { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--gray-800); font-size: 1.02rem; }
.check-list i, .check-list svg { width: 22px; height: 22px; color: var(--blue-600); flex-shrink: 0; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.stat-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-card i, .stat-card svg { width: 28px; height: 28px; color: var(--blue-600); margin-bottom: 16px; }
.stat-card h3 { font-size: 1.15rem; margin-bottom: 7px; }
.stat-card p { font-size: 0.95rem; color: var(--gray-500); }

/* Grid cards general */
.grid { display: grid; gap: 28px; }
.card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

/* Growth Ecosystem */
.eco-section { position: relative; overflow: hidden; }
.eco-glow {
  position: absolute; top: 50%; left: 50%; width: 900px; height: 900px; margin: -450px 0 0 -450px;
  background: radial-gradient(circle, rgba(37, 99, 235, .08), rgba(124, 58, 237, .05) 45%, transparent 70%);
  filter: blur(40px); z-index: 0; pointer-events: none;
}
.eco-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.eco-block {
  position: relative; border-radius: 22px; perspective: 600px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid transparent;
  background:
    linear-gradient(var(--glass-bg-strong), var(--glass-bg-strong)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, .28), rgba(124, 58, 237, .28)) border-box;
  box-shadow: var(--shadow-sm);
  animation: ecoBorderPulse 6s ease-in-out infinite;
  transition: box-shadow .3s ease, background .4s ease;
}
.eco-block::before {
  content: ''; position: absolute; top: -18px; left: 50%; width: 1px; height: 18px; transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent, var(--blue-500));
  opacity: .5;
}
.eco-block::after {
  content: ''; position: absolute; top: -22px; left: 50%; width: 6px; height: 6px; border-radius: 50%;
  transform: translateX(-50%); background: var(--blue-500); box-shadow: 0 0 8px 1px rgba(37, 99, 235, .6);
}
/* Gradient border "breathes" via filter (not box-shadow, which the :hover state below owns) */
@keyframes ecoBorderPulse {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(37, 99, 235, 0)); }
  50% { filter: drop-shadow(0 0 10px rgba(124, 58, 237, .18)); }
}
.eco-block:hover {
  background:
    linear-gradient(var(--glass-bg-strong), var(--glass-bg-strong)) padding-box,
    linear-gradient(135deg, rgba(37, 99, 235, .65), rgba(124, 58, 237, .65)) border-box;
  box-shadow: var(--shadow-glow), 0 0 0 1px rgba(124, 58, 237, .25);
}
/* Motion (idle breathing, cursor tilt/pan, hover lift) is driven by JS on .eco-block-inner —
   see setupTiltCards() in script.js — so it can blend all three without CSS animations fighting it */
.eco-block-inner { padding: 32px 26px; will-change: transform; }
.eco-icon {
  width: 54px; height: 54px; border-radius: 15px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue-500) 25%, var(--blue-700) 70%, var(--violet-600) 100%);
  will-change: transform;
}
.eco-icon i, .eco-icon svg { width: 26px; height: 26px; color: #fff; }
.eco-block h3 { margin-bottom: 8px; }
.eco-block p { color: var(--gray-500); font-size: .94rem; }
.eco-cta { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 56px; position: relative; z-index: 1; }

/* Why us */
.why-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.why-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 32px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-icon { flex-shrink: 0; width: 50px; height: 50px; border-radius: 13px; background: var(--blue-50); display: flex; align-items: center; justify-content: center; }
.why-icon i, .why-icon svg { width: 24px; height: 24px; color: var(--blue-600); }
.why-item h3 { font-size: 1.15rem; margin-bottom: 5px; }
.why-item p { font-size: 0.96rem; color: var(--gray-500); }

/* Reviews */
.reviews-grid { grid-template-columns: repeat(3, 1fr); }
.stars { color: #f59e0b; letter-spacing: 2px; margin-bottom: 16px; font-size: 1.05rem; display: inline-block; }
.review-card p { color: var(--gray-600); font-size: 1.02rem; margin-bottom: 24px; }
/* Testimonials take turns in the spotlight — one card highlighted at a time, 12s shared cycle */
.review-card { animation: reviewSpotlight 12s ease-in-out infinite; }
.review-card:nth-of-type(1) { animation-delay: 0s; }
.review-card:nth-of-type(2) { animation-delay: 4s; }
.review-card:nth-of-type(3) { animation-delay: 8s; }
@keyframes reviewSpotlight {
  0%   { transform: scale(1.03); box-shadow: var(--shadow-glow), 0 0 0 1px rgba(37, 99, 235, .2); }
  30%  { transform: scale(1.03); box-shadow: var(--shadow-glow), 0 0 0 1px rgba(37, 99, 235, .2); }
  38%  { transform: scale(1); box-shadow: var(--shadow-sm); }
  100% { transform: scale(1); box-shadow: var(--shadow-sm); }
}
.review-card .stars { animation: starPop 12s ease-in-out infinite; }
.review-card:nth-of-type(1) .stars { animation-delay: 0s; }
.review-card:nth-of-type(2) .stars { animation-delay: 4s; }
.review-card:nth-of-type(3) .stars { animation-delay: 8s; }
@keyframes starPop {
  0% { transform: scale(1.2); }
  12% { transform: scale(1); }
  100% { transform: scale(1); }
}
.reviewer { display: flex; align-items: center; gap: 14px; }
.avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-400), var(--blue-600)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.reviewer div { display: flex; flex-direction: column; }
.reviewer strong { font-size: 0.98rem; color: var(--gray-900); }
.reviewer span { font-size: 0.86rem; color: var(--gray-500); }

/* Gallery */
.gallery-carousel { overflow: hidden; cursor: grab; padding: 4px 0 28px; }
.gallery-carousel.dragging { cursor: grabbing; }
.gallery-track { display: flex; gap: 24px; width: max-content; will-change: transform; }
.gallery-card { flex: 0 0 340px; overflow: visible; transition: transform .3s cubic-bezier(.22, .9, .3, 1), box-shadow .3s ease; }
.gallery-card:hover { transform: translateY(-12px) scale(1.03); box-shadow: 0 32px 54px -18px rgba(15, 23, 42, .32); }
.device-mock { position: relative; margin-bottom: 32px; padding-bottom: 22px; perspective: 900px; }
.browser-mock {
  background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: 0 14px 30px -14px rgba(15, 23, 42, .18);
  transition: transform .35s ease, box-shadow .35s ease;
  transform: perspective(900px) rotateX(0deg) rotateY(0deg);
}
.gallery-card:hover .browser-mock {
  transform: perspective(900px) rotateX(4deg) rotateY(-6deg) scale(1.02);
  box-shadow: 0 26px 44px -16px rgba(15, 23, 42, .28), 0 0 0 1px rgba(37, 99, 235, .18), 0 0 28px rgba(37, 99, 235, .22);
}
.browser-bar { display: flex; gap: 5px; padding: 10px 12px; background: var(--white); border-bottom: 1px solid var(--gray-200); }
.browser-bar span { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-200); }
.browser-bar span:first-child { background: #f87171; }
.browser-bar span:nth-child(2) { background: #fbbf24; }
.browser-bar span:nth-child(3) { background: #34d399; }
.browser-body { padding: 14px; }
.mock-nav { height: 8px; width: 40%; background: var(--gray-200); border-radius: 4px; margin-bottom: 12px; }
.mock-hero {
  height: 64px; border-radius: var(--radius-sm); margin-bottom: 12px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  display: flex; align-items: center; justify-content: center;
}
.mock-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 25% 20%, rgba(255,255,255,.35), transparent 55%); }
.mock-hero i, .mock-hero svg { width: 24px; height: 24px; color: #fff; opacity: .9; position: relative; z-index: 1; }
.mock-line { height: 7px; border-radius: 4px; background: var(--gray-200); margin-bottom: 7px; }
.mock-line.short { width: 55%; }
.phone-mock {
  position: absolute; right: 10px; bottom: -22px; width: 68px; height: 106px; border-radius: 16px;
  background: var(--gray-900); border: 2px solid var(--gray-900); box-shadow: var(--shadow-md); padding: 12px 8px 8px;
  transition: transform .35s ease; transform: translateZ(20px) rotate(0deg);
}
.gallery-card:hover .phone-mock { transform: translateZ(30px) rotate(6deg); }
.gallery-view-demo {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, calc(-50% + 10px)); z-index: 5;
  display: inline-flex; align-items: center; gap: 6px; padding: 10px 18px; border-radius: 999px;
  background: rgba(15, 23, 42, .85); color: #fff; font-size: .82rem; font-weight: 700;
  opacity: 0; pointer-events: none; transition: opacity .3s ease, transform .3s ease;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.gallery-view-demo i, .gallery-view-demo svg { width: 14px; height: 14px; }
.gallery-card:hover .gallery-view-demo { opacity: 1; transform: translate(-50%, -50%); }
.phone-notch { position: absolute; top: 5px; left: 50%; transform: translateX(-50%); width: 20px; height: 4px; border-radius: 3px; background: rgba(255,255,255,.35); }
.phone-mock .phone-body { background: var(--white); border-radius: 8px; height: 100%; padding: 10px 8px; }
.phone-body .mock-line.tiny { height: 5px; margin-bottom: 6px; }
.phone-body .mock-line.tiny.short { width: 60%; }
.gallery-card h3 { font-size: 1.15rem; margin-bottom: 5px; }
.gallery-card p { font-size: 0.94rem; color: var(--gray-500); }

/* Results */
.results-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; text-align: center; }
.stat-box { padding: 22px 14px; }
.stat-number { font-size: clamp(2.2rem, 3.6vw, 3rem); font-weight: 800; letter-spacing: -0.02em; }
.stat-label { margin-top: 8px; font-size: 0.92rem; color: var(--gray-500); font-weight: 500; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.process-step { text-align: center; padding: 32px 20px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); position: relative; }
.process-num { width: 32px; height: 32px; border-radius: 50%; background: var(--blue-600); color: #fff; font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.process-step i, .process-step svg { width: 28px; height: 28px; color: var(--blue-600); margin: 0 auto 14px; }
.process-step h3 { font-size: 1.02rem; margin-bottom: 7px; }
.process-step p { font-size: 0.88rem; color: var(--gray-500); }

/* FAQ */
.faq-wrap { max-width: 820px; }
.accordion-item { border-bottom: 1px solid var(--gray-200); }
.accordion-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 22px 0; background: none; border: none; text-align: left; font-weight: 600; font-size: 1.08rem; color: var(--gray-900); cursor: pointer; }
.accordion-trigger i, .accordion-trigger svg { width: 19px; height: 19px; color: var(--blue-600); transition: transform .25s ease; flex-shrink: 0; }
.accordion-item.open .accordion-trigger i, .accordion-item.open .accordion-trigger svg { transform: rotate(180deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.accordion-panel p { padding-bottom: 22px; color: var(--gray-600); font-size: 0.98rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.contact-row { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--gray-700); font-size: 1.02rem; }
.contact-row i, .contact-row svg { width: 22px; height: 22px; color: var(--blue-600); flex-shrink: 0; }
.map-placeholder { height: 240px; border-radius: var(--radius); background: var(--gray-100); border: 1px dashed var(--gray-200); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--gray-500); }
.map-placeholder i, .map-placeholder svg { width: 32px; height: 32px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form h3 { margin-bottom: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: flex; flex-direction: column; gap: 7px; font-size: 0.9rem; font-weight: 600; color: var(--gray-700); }
.contact-form input, .contact-form textarea {
  padding: 14px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--gray-200); font-family: inherit; font-size: 0.98rem; color: var(--gray-800); resize: vertical; transition: border-color .2s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--blue-500); }
.form-note { font-size: 0.9rem; color: var(--blue-700); min-height: 1.2em; }

/* Footer */
.footer { background: var(--gray-900); color: var(--gray-200); }
.footer-cta { text-align: center; padding: 84px 0 60px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-cta h2 { color: #fff; margin-bottom: 10px; }
.footer-cta p { color: var(--gray-500); margin-bottom: 30px; font-size: 1.05rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding: 60px 0; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer-tag { color: var(--gray-500); font-size: 0.96rem; margin-bottom: 22px; max-width: 300px; }
.socials { display: flex; gap: 12px; }
.socials a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.socials a:hover { background: var(--blue-600); }
.socials svg { width: 18px; height: 18px; color: #fff; }
.footer h5 { color: #fff; font-size: 0.96rem; margin-bottom: 20px; }
.footer ul { display: flex; flex-direction: column; gap: 11px; }
.footer ul a, .footer ul li { color: var(--gray-500); font-size: 0.94rem; }
.footer ul a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 26px 0; border-top: 1px solid rgba(255,255,255,.08); font-size: 0.88rem; color: var(--gray-500); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a:hover { color: #fff; }

/* Email FAB */
.fab-email {
  position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700)); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px -6px rgba(37, 99, 235, .5);
  z-index: 90; transition: transform .2s ease;
}
.fab-email:hover { transform: scale(1.08); }
.fab-email i, .fab-email svg { width: 28px; height: 28px; color: #fff; }

/* ============ Tech Page ============ */
.tech-hero {
  position: relative; padding: 170px 0 110px; overflow: hidden; color: #e2e8f0;
  background: radial-gradient(ellipse 90% 60% at 50% -10%, var(--navy-800), var(--navy-950) 70%);
}
.tech-hero-glow-1, .tech-hero-glow-2 { position: absolute; border-radius: 50%; z-index: 0; filter: blur(20px); pointer-events: none; }
.tech-hero-glow-1 { width: 520px; height: 520px; top: -180px; left: -180px; background: radial-gradient(circle, rgba(34,211,238,.28), transparent 70%); }
.tech-hero-glow-2 { width: 600px; height: 600px; bottom: -280px; right: -220px; background: radial-gradient(circle, rgba(167,139,250,.22), transparent 70%); }
.tech-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 6fr 4fr; gap: 64px; align-items: center; }
.tech-hero .eyebrow { background: rgba(34,211,238,.12); color: var(--cyan-300); }
.tech-gradient { background: linear-gradient(90deg, var(--cyan-400), var(--violet-400)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tech-hero h1 { color: #fff; font-size: clamp(2.4rem, 4.6vw, 3.6rem); margin-bottom: 22px; }
.tech-hero-sub { font-size: 1.18rem; color: #94a3b8; max-width: 560px; margin-bottom: 32px; }
.tech-hero .hero-actions { margin-bottom: 8px; }
.tech-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.tech-pill { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); font-size: .88rem; font-weight: 600; color: #cbd5e1; }

.code-panel { position: relative; z-index: 1; background: #0d1526; border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); box-shadow: 0 30px 60px -20px rgba(0,0,0,.6); overflow: hidden; max-width: 500px; margin: 0 auto; }
.code-panel-header { display: flex; align-items: center; gap: 8px; padding: 16px 20px; background: #111a2e; border-bottom: 1px solid rgba(255,255,255,.06); }
.code-dot { width: 10px; height: 10px; border-radius: 50%; }
.code-dot.red { background: #f87171; } .code-dot.yellow { background: #fbbf24; } .code-dot.green { background: #34d399; }
.code-panel-title { margin-left: 8px; font-size: .84rem; color: #64748b; font-family: 'SFMono-Regular', Consolas, monospace; }
.code-panel-body { padding: 26px 26px 30px; font-family: 'SFMono-Regular', Consolas, monospace; font-size: .9rem; line-height: 1.9; overflow-x: auto; }
.code-line { white-space: pre; color: #cbd5e1; }
.tok-kw { color: #c084fc; } .tok-fn { color: #60a5fa; } .tok-str { color: #4ade80; } .tok-tag { color: #f472b6; } .tok-com { color: #64748b; } .tok-num { color: #fbbf24; }

.stack-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stack-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.stack-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stack-icon { width: 58px; height: 58px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.stack-icon i, .stack-icon svg { width: 28px; height: 28px; color: #fff; }
.stack-icon.frontend { background: linear-gradient(135deg, #38bdf8, #2563eb); }
.stack-icon.backend { background: linear-gradient(135deg, #a78bfa, #6d28d9); }
.stack-icon.database { background: linear-gradient(135deg, #34d399, #047857); }
.stack-icon.platforms { background: linear-gradient(135deg, #f472b6, #db2777); }
.stack-card h3 { margin-bottom: 7px; }
.stack-card > p { color: var(--gray-500); font-size: .96rem; margin-bottom: 20px; }
.chip-list { display: flex; flex-wrap: wrap; gap: 11px; }
.tech-chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; border-radius: 10px; background: var(--gray-50); border: 1px solid var(--gray-200); font-weight: 600; font-size: .88rem; color: var(--gray-800); }
.tech-chip .dot, .tech-pill .dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }

.dot-react { background: #61dafb; } .dot-angular { background: #dd0031; } .dot-js { background: #f7df1e; }
.dot-ts { background: #3178c6; } .dot-html { background: #e34c26; }
.dot-dotnet { background: #512bd4; } .dot-csharp { background: #68217a; } .dot-api { background: #0ea5e9; }
.dot-sqlserver { background: #cc2927; } .dot-oracle { background: #f80000; } .dot-postgres { background: #336791; } .dot-data { background: #0f172a; }
.dot-fastapi { background: #009688; } .dot-wordpress { background: #21759b; } .dot-ai { background: linear-gradient(135deg, #a78bfa, #22d3ee); }

.tech-cta { background: linear-gradient(135deg, var(--navy-900), var(--navy-950)); color: #fff; text-align: center; padding: 96px 0; }
.tech-cta h2 { color: #fff; margin-bottom: 12px; }
.tech-cta p { color: #94a3b8; margin-bottom: 30px; font-size: 1.08rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Responsive */
@media (max-width: 980px) {
  .hero { min-height: unset; padding: 150px 0 70px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 1; }
  .hero-art { order: 0; max-width: 320px; margin: 0 auto; }
  .hero-orbit { opacity: .3; }
  .capsule, .capsule-lines { display: none; }
  .orbit-wrap { aspect-ratio: unset; height: auto; }
  .hero-panel-center { position: static; transform: none; width: 100%; max-width: 260px; margin: 0 auto; }
  .scroll-cue { display: none; }
  .hero-actions, .hero-trust { justify-content: center; }
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .eco-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card { flex-basis: 300px; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .results-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tech-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .tech-pills { justify-content: center; }
  .code-panel { max-width: 420px; margin: 0 auto; }
  .stack-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 20px 24px; box-shadow: var(--shadow-md); gap: 16px;
  }
  .eco-grid, .reviews-grid { grid-template-columns: 1fr; }
  .gallery-card { flex-basis: 260px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .why-list { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-trust { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .stack-grid { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-blob, .hero-orbit, .hero-art-glow, .text-gradient, .scroll-cue, .btn-shine::after,
  .hero-art, .capsule-float, .capsule-line, .capsule-live-dot, .eco-icon, .eco-block, .draw-line path, .btn-primary, body,
  .review-card, .review-card .stars {
    animation: none !important;
  }
  .capsule { animation: none !important; opacity: 1 !important; transform: translate(-50%, -50%) scale(1) !important; }
  .hero-line { animation: none !important; opacity: 1 !important; filter: none !important; transform: scale(1) !important; }
  .hero-line::after { animation: none !important; transform: scaleX(0) !important; }
  .growth-chart span { animation: none !important; transform: scaleY(1) !important; }
  .hero-panel { transition: none !important; }
}
