/* ══════════════════════════════════════════════════════════════
   THEWEBYTES — PUBLIC STYLESHEET
   Pixel-faithful port of the Next.js design system
══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ── Root / Brand ── */
:root {
  --brand-cyan:   #33D6E5;
  --brand-blue:   #4F7BB8;
  --brand-teal:   #1D9FB4;
  --brand-ice:    #8DF0FA;
  --brand-space:  #1C1825;

  --brand-cyan-rgb:  51, 214, 229;
  --brand-blue-rgb:  79, 123, 184;
  --brand-teal-rgb:  29, 159, 180;
  --brand-ice-rgb:   141, 240, 250;
  --brand-space-rgb: 28, 24, 37;
}

/* ── Light theme ── */
:root {
  --surface:           #FFFFFF;
  --surface-base:      #F7FAFB;
  --surface-alt:       #EEF4F7;
  --surface-elevated:  #FFFFFF;
  --surface-sunken:    #E8EEF2;

  --ink:               #0F1220;
  --ink-strong:        #06070D;
  --ink-muted:         #4B5670;
  --ink-soft:          #6B7691;
  --ink-faint:         #8B95AE;
  --ink-inverse:       #FFFFFF;

  --line:              rgba(15, 18, 32, 0.10);
  --line-strong:       rgba(15, 18, 32, 0.16);
  --line-brand:        rgba(var(--brand-cyan-rgb), 0.32);

  --accent-soft:       rgba(var(--brand-cyan-rgb), 0.08);
  --accent-strong:     #1D9FB4;

  --shadow-sm:  0 1px 2px rgba(15, 18, 32, 0.06);
  --shadow-md:  0 8px 24px -8px rgba(15, 18, 32, 0.12);
  --shadow-lg:  0 20px 50px -12px rgba(15, 18, 32, 0.18);
  --shadow-glow: 0 0 0 1px rgba(var(--brand-cyan-rgb), 0.10),
                 0 18px 60px -10px rgba(var(--brand-cyan-rgb), 0.25);
  --shadow-brand-sm: 0 4px 12px -2px rgba(var(--brand-cyan-rgb), 0.15);
  --shadow-brand-md: 0 12px 28px -6px rgba(var(--brand-cyan-rgb), 0.20);
  --shadow-brand-lg: 0 28px 60px -12px rgba(var(--brand-cyan-rgb), 0.30);
  --shadow-brand-glow: 0 0 30px rgba(var(--brand-cyan-rgb), 0.30), 0 0 60px rgba(var(--brand-cyan-rgb), 0.18);
}

/* ── Dark theme ── */
html.dark {
  --surface:           #1F1A2C;
  --surface-base:      #1C1825;
  --surface-alt:       #181423;
  --surface-elevated:  #251F35;
  --surface-sunken:    #15111E;

  --ink:               #ECF7FA;
  --ink-strong:        #FFFFFF;
  --ink-muted:         rgba(141, 240, 250, 0.72);
  --ink-soft:          rgba(141, 240, 250, 0.55);
  --ink-faint:         rgba(141, 240, 250, 0.40);
  --ink-inverse:       #1C1825;

  --line:              rgba(var(--brand-cyan-rgb), 0.14);
  --line-strong:       rgba(var(--brand-cyan-rgb), 0.26);
  --line-brand:        rgba(var(--brand-cyan-rgb), 0.40);

  --accent-soft:       rgba(var(--brand-cyan-rgb), 0.10);
  --accent-strong:     #33D6E5;

  --shadow-sm:  0 1px 2px rgba(0, 0, 0, 0.35);
  --shadow-md:  0 10px 30px -8px rgba(0, 0, 0, 0.55);
  --shadow-lg:  0 25px 60px -15px rgba(0, 0, 0, 0.70);
  --shadow-glow: 0 0 0 1px rgba(var(--brand-cyan-rgb), 0.18),
                 0 22px 70px -10px rgba(var(--brand-cyan-rgb), 0.30);
}

/* ══════════════════════════════════════════════════════════════
   BASE RESET
══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border-color: var(--line); }
html { scroll-behavior: smooth; color-scheme: light dark; }
html.dark { color-scheme: dark; }
body {
  background-color: var(--surface-base);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.4s ease, color 0.4s ease;
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--ink-strong);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
::selection { background: rgba(var(--brand-cyan-rgb), 0.30); color: var(--ink-strong); }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--surface-base); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(var(--brand-cyan-rgb),0.35), rgba(var(--brand-blue-rgb),0.35));
  border-radius: 8px;
  border: 3px solid var(--surface-base);
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(var(--brand-cyan-rgb),0.6), rgba(var(--brand-blue-rgb),0.6));
  border: 3px solid var(--surface-base);
  background-clip: padding-box;
}

/* ══════════════════════════════════════════════════════════════
   LAYOUT UTILITIES
══════════════════════════════════════════════════════════════ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; width: 100%; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* Surfaces */
.bg-surface          { background-color: var(--surface); }
.bg-surface-base     { background-color: var(--surface-base); }
.bg-surface-alt      { background-color: var(--surface-alt); }
.bg-surface-elevated { background-color: var(--surface-elevated); }
.bg-surface-sunken   { background-color: var(--surface-sunken); }
.section-base { background-color: var(--surface-base); }
.section-alt  { background-color: var(--surface-alt); }
.section-deep { background-color: var(--surface-sunken); }

/* Ink */
.text-ink         { color: var(--ink); }
.text-ink-strong  { color: var(--ink-strong); }
.text-ink-muted   { color: var(--ink-muted); }
.text-ink-soft    { color: var(--ink-soft); }
.text-ink-faint   { color: var(--ink-faint); }
.text-ink-inverse { color: var(--ink-inverse); }
.text-brand       { color: var(--accent-strong); }

/* ══════════════════════════════════════════════════════════════
   GLASS / CARDS
══════════════════════════════════════════════════════════════ */
.glass {
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(var(--brand-cyan-rgb), 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), var(--shadow-md);
}
html.dark .glass {
  background: rgba(31, 26, 44, 0.55);
  border: 1px solid rgba(var(--brand-cyan-rgb), 0.18);
  box-shadow: inset 0 1px 0 rgba(var(--brand-ice-rgb), 0.08), var(--shadow-md);
}
.glass-strong {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(var(--brand-cyan-rgb), 0.22);
  border-radius: 9999px;
  display: inline-flex;
}
html.dark .glass-strong {
  background: rgba(28, 24, 37, 0.78);
  border: 1px solid rgba(var(--brand-cyan-rgb), 0.22);
}
.tw-card {
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s cubic-bezier(.2,.8,.2,1), border-color .35s ease;
}
.tw-card-hover:hover {
  border-color: var(--line-brand);
  box-shadow: var(--shadow-glow);
}
.tw-input, input.tw-input, textarea.tw-input, select.tw-input {
  background-color: var(--surface-sunken);
  border: 1.5px solid var(--line);
  color: var(--ink-strong);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  width: 100%;
  outline: none;
  font-family: inherit;
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.tw-input::placeholder { color: var(--ink-faint); }
.tw-input:hover { border-color: var(--line-strong); }
.tw-input:focus {
  border-color: var(--brand-cyan);
  box-shadow: 0 0 0 4px rgba(var(--brand-cyan-rgb), 0.18);
  background-color: var(--surface);
}
select.tw-input { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%238B95AE' d='M6 8L0 0h12z'/></svg>"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

/* ══════════════════════════════════════════════════════════════
   GRADIENTS / TEXT EFFECTS
══════════════════════════════════════════════════════════════ */
.gradient-text {
  background: linear-gradient(135deg, #33D6E5 0%, #4F7BB8 50%, #8DF0FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.gradient-text-deep {
  background: linear-gradient(135deg, #1D9FB4 0%, #4F7BB8 60%, #33D6E5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.glow-text {
  color: var(--accent-strong);
  text-shadow: 0 0 24px rgba(var(--brand-cyan-rgb), 0.55),
               0 0 50px rgba(var(--brand-cyan-rgb), 0.30),
               0 0 80px rgba(var(--brand-teal-rgb), 0.20);
}
html:not(.dark) .glow-text {
  text-shadow: 0 0 16px rgba(var(--brand-teal-rgb), 0.35),
               0 0 32px rgba(var(--brand-teal-rgb), 0.18);
}
.cyan-glow {
  box-shadow: 0 0 30px rgba(var(--brand-cyan-rgb), 0.30),
              0 0 60px rgba(var(--brand-cyan-rgb), 0.18);
}
.mesh-gradient {
  background:
    radial-gradient(at 40% 20%, rgba(var(--brand-cyan-rgb), 0.12) 0px, transparent 55%),
    radial-gradient(at 80%  0%, rgba(var(--brand-blue-rgb), 0.10) 0px, transparent 55%),
    radial-gradient(at  0% 50%, rgba(var(--brand-teal-rgb), 0.10) 0px, transparent 55%),
    radial-gradient(at 80% 50%, rgba(var(--brand-ice-rgb),  0.08) 0px, transparent 55%);
}
.space-grid {
  background-image:
    linear-gradient(rgba(var(--brand-cyan-rgb), 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--brand-cyan-rgb), 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
html.dark .space-grid {
  background-image:
    linear-gradient(rgba(var(--brand-cyan-rgb), 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--brand-cyan-rgb), 0.06) 1px, transparent 1px);
}
.conic-glow {
  background: conic-gradient(from 180deg at 50% 50%,
    rgba(var(--brand-cyan-rgb), 0.0) 0deg,
    rgba(var(--brand-cyan-rgb), 0.20) 90deg,
    rgba(var(--brand-blue-rgb), 0.20) 180deg,
    rgba(var(--brand-ice-rgb), 0.15) 270deg,
    rgba(var(--brand-cyan-rgb), 0.0) 360deg);
}

/* ══════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.875rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(.2,.8,.2,1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary, .btn-brand-gradient {
  background-image: linear-gradient(135deg, #33D6E5 0%, #1D9FB4 100%);
  color: #0B0F18;
  box-shadow: 0 18px 50px -10px rgba(51,214,229,0.55);
}
.btn-primary:hover, .btn-brand-gradient:hover {
  background-image: linear-gradient(135deg, #8DF0FA 0%, #33D6E5 100%);
  box-shadow: 0 24px 60px -10px rgba(51,214,229,0.7);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--line-brand);
  color: var(--ink-strong);
}
.btn-outline:hover {
  border-color: var(--brand-cyan);
  background: rgba(var(--brand-cyan-rgb), 0.08);
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2rem; font-size: 1rem; border-radius: 1rem; }
.btn-xl { padding: 1.1rem 2.25rem; font-size: 1.05rem; border-radius: 1rem; }
.btn .shine-sweep {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 20%, rgba(255,255,255,0.35) 50%, transparent 80%);
  transform: translateX(-100%);
  transition: transform .9s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.btn:hover .shine-sweep { transform: translateX(100%); }

/* ══════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════ */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1);
}
.nav-wrap.hidden { transform: translateY(-120%); }
.nav-bar {
  padding: 1.25rem 1rem;
  background: rgba(var(--brand-space-rgb), 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--line);
  transition: all 0.5s ease;
}
html:not(.dark) .nav-bar { background: rgba(255, 255, 255, 0.55); }
.nav-wrap.scrolled .nav-bar {
  padding: 0.75rem 1rem;
  background: rgba(var(--brand-space-rgb), 0.85);
  border-bottom: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md);
}
html:not(.dark) .nav-wrap.scrolled .nav-bar { background: rgba(255, 255, 255, 0.85); }
@media (min-width: 640px) { .nav-bar { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 768px) { .nav-bar { padding-left: 2.5rem; padding-right: 2.5rem; } }
@media (min-width: 1024px) { .nav-bar { padding-left: 3rem; padding-right: 3rem; } }

.nav-inner { display: flex; align-items: center; justify-content: space-between; position: relative; }
.nav-logo { display: inline-flex; align-items: center; position: relative; transition: transform 0.5s ease; }
.nav-logo img { height: 40px; width: auto; object-fit: contain; }
@media (min-width: 640px) { .nav-logo img { height: 40px; } }
@media (min-width: 768px) { .nav-logo img { height: 48px; } }
@media (min-width: 1024px) { .nav-logo img { height: 56px; } }
.nav-logo:hover { transform: scale(1.05); }
.nav-logo-glow {
  position: absolute; inset: 0; border-radius: 100%;
  background: linear-gradient(90deg, rgba(var(--brand-cyan-rgb), 0), rgba(var(--brand-blue-rgb), 0));
  filter: blur(20px); opacity: 0; transition: all 0.5s ease; z-index: -1;
}
.nav-logo:hover .nav-logo-glow {
  background: linear-gradient(90deg, rgba(var(--brand-cyan-rgb), 0.3), rgba(var(--brand-blue-rgb), 0.3));
  opacity: 1;
}

.nav-links { display: none; gap: 0.25rem; align-items: center; position: absolute; left: 50%; transform: translateX(-50%); }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link {
  position: relative;
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--ink-muted);
  transition: all 0.3s ease;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-link:hover, .nav-link.active { color: var(--accent-strong); }
.nav-link.active { background: linear-gradient(90deg, rgba(var(--brand-cyan-rgb),0.15), rgba(var(--brand-blue-rgb),0.15), rgba(var(--brand-cyan-rgb),0.15)); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.375rem; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-cyan), transparent);
  transition: width 0.5s;
}
.nav-link:hover::after { width: 60%; }

.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.theme-toggle {
  width: 40px; height: 40px; border-radius: 0.75rem;
  background: var(--surface-sunken); border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-strong);
  transition: all 0.3s ease;
}
.theme-toggle:hover { background: rgba(var(--brand-cyan-rgb), 0.12); border-color: var(--line-brand); transform: scale(1.05); }
.theme-toggle .icon-sun, .theme-toggle .icon-moon { position: absolute; transition: opacity 0.3s ease, transform 0.3s ease; }
html:not(.dark) .theme-toggle .icon-sun { opacity: 1; transform: rotate(0) scale(1); }
html:not(.dark) .theme-toggle .icon-moon { opacity: 0; transform: rotate(90deg) scale(0); }
html.dark .theme-toggle .icon-sun { opacity: 0; transform: rotate(-90deg) scale(0); }
html.dark .theme-toggle .icon-moon { opacity: 1; transform: rotate(0) scale(1); }

.nav-cta { display: none; }
@media (min-width: 768px) { .nav-cta { display: inline-flex; } }
.nav-cta .btn { padding: 0.55rem 1.5rem; font-size: 0.875rem; }

.menu-toggle {
  display: inline-flex; width: 44px; height: 44px; border-radius: 0.75rem;
  background: var(--surface-sunken); border: 1px solid var(--line);
  align-items: center; justify-content: center;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-toggle:hover { background: rgba(var(--brand-cyan-rgb), 0.12); border-color: var(--line-brand); }
.menu-toggle .bars { position: relative; width: 20px; height: 20px; }
.menu-toggle .bars span {
  position: absolute; left: 0; width: 20px; height: 2px;
  background: var(--ink-strong); border-radius: 9999px; transition: all 0.3s;
}
.menu-toggle .bars span:nth-child(1) { top: 4px; }
.menu-toggle .bars span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle .bars span:nth-child(3) { bottom: 4px; }
.menu-toggle[aria-expanded="true"] .bars span:nth-child(1) { transform: rotate(45deg) translateY(6px); background: var(--accent-strong); }
.menu-toggle[aria-expanded="true"] .bars span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .bars span:nth-child(3) { transform: rotate(-45deg) translateY(-6px); background: var(--accent-strong); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 40;
  background: rgba(6,7,13,0.40);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
}
html.dark .mobile-menu { background: rgba(6,7,13,0.72); }
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-panel {
  position: absolute; top: 5rem; left: 1rem; right: 1rem;
  background: var(--surface-elevated);
  border: 1px solid var(--line-strong);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateY(-32px) scale(0.95); opacity: 0;
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
}
.mobile-menu.open .mobile-menu-panel { transform: translateY(0) scale(1); opacity: 1; }
.mobile-menu-header {
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(var(--brand-cyan-rgb),0.1), rgba(var(--brand-blue-rgb),0.1));
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 0.75rem;
}
.mobile-menu-header .icon-badge {
  width: 40px; height: 40px; border-radius: 0.75rem;
  background-image: linear-gradient(135deg, #33D6E5 0%, #1D9FB4 100%);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--brand-space);
  box-shadow: var(--shadow-brand-glow);
}
.mobile-menu-links { padding: 1rem; max-height: 70vh; overflow-y: auto; }
.mobile-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; border-radius: 1rem;
  font-weight: 700; color: var(--ink-muted);
  transition: all 0.3s;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  background: rgba(var(--brand-cyan-rgb), 0.1);
  color: var(--accent-strong);
}
.mobile-nav-link + .mobile-nav-link { margin-top: 0.25rem; }
.mobile-services-sublist { margin: 0.25rem 0 0.5rem 0.75rem; }
.mobile-services-sublist a {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.625rem 1rem; border-radius: 0.75rem;
  font-size: 0.875rem; font-weight: 600;
  color: var(--ink-strong); transition: all 0.2s;
}
.mobile-services-sublist a:hover { background: rgba(var(--brand-cyan-rgb), 0.08); color: var(--accent-strong); }
.mobile-services-sublist a .icon-tile {
  width: 32px; height: 32px; border-radius: 0.5rem;
  background-image: linear-gradient(135deg, #33D6E5 0%, #1D9FB4 100%);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--brand-space); flex-shrink: 0;
}
.mobile-services-accordion { overflow: hidden; max-height: 0; transition: max-height 0.4s cubic-bezier(.2,.8,.2,1); }
.mobile-services-accordion.open { max-height: 900px; }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(to bottom, #F7FAFB, #EEF4F7, #F7FAFB);
}
html.dark .hero { background: linear-gradient(to bottom, #1C1825, #1a2235, #1C1825); }
.hero-mesh { position: absolute; inset: 0; pointer-events: none; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; display: none; }
@media (min-width: 1024px) { .hero-canvas { display: block; } }
.hero-orb {
  position: absolute; width: 26rem; height: 26rem; border-radius: 9999px; pointer-events: none;
  transition: transform 0.6s ease-out;
}
.hero-orb .orb-inner { width: 100%; height: 100%; border-radius: 9999px; filter: blur(60px); animation: hero-orb-scale 8s ease-in-out infinite; }
.hero-orb-cyan { top: 5rem; left: -5rem; }
.hero-orb-cyan .orb-inner { background: rgba(var(--brand-cyan-rgb), 0.15); }
.hero-orb-blue { bottom: -5rem; right: -5rem; }
.hero-orb-blue .orb-inner { background: rgba(var(--brand-blue-rgb), 0.12); animation-delay: 1.4s; }
@keyframes hero-orb-scale { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.hero-content {
  position: relative;
  padding: 8rem 1rem;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero-inner { max-width: 64rem; margin: 0 auto; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1.25rem; margin-bottom: 2rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(var(--brand-cyan-rgb), 0.22);
  color: var(--accent-strong);
  font-weight: 700; font-size: 0.875rem;
  box-shadow: var(--shadow-brand-md);
  transition: transform 0.3s;
}
html.dark .hero-badge { background: rgba(28,24,37,0.78); }
.hero-badge:hover { transform: scale(1.05); }
.hero-badge .sparkle { animation: sparkle-rotate 2.5s ease-in-out infinite; display: inline-flex; }
@keyframes sparkle-rotate { 0%, 100% { transform: rotate(0); } 25% { transform: rotate(15deg); } 75% { transform: rotate(-15deg); } }
.pulse-dot { position: relative; display: inline-flex; width: 0.5rem; height: 0.5rem; }
.pulse-dot::before {
  content: ''; position: absolute; inset: 0;
  background: var(--brand-cyan); border-radius: 9999px;
  animation: pulse-ping 1.6s cubic-bezier(0,0,0.2,1) infinite;
}
.pulse-dot::after {
  content: ''; position: relative;
  background: var(--brand-cyan); border-radius: 9999px;
  width: 100%; height: 100%;
}
@keyframes pulse-ping { 75%, 100% { transform: scale(2); opacity: 0; } }

.hero-heading {
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink-strong);
  margin-bottom: 2rem;
  font-family: 'Space Grotesk', sans-serif;
}
.hero-heading .line-break { display: block; margin-top: 0.5rem; }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.375rem);
  color: var(--ink-muted);
  max-width: 48rem;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 640px) { .hero-ctas { flex-direction: row; justify-content: center; } }

.hero-trust { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem 2rem; }
.hero-trust > div { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--ink-muted); }
.hero-trust strong { color: var(--ink-strong); }
.hero-trust .divider { display: none; width: 1px; height: 1rem; background: var(--line); }
@media (min-width: 640px) { .hero-trust .divider { display: block; } }
.hero-trust .stars { display: inline-flex; }
.hero-trust .stars svg { color: var(--brand-cyan); fill: var(--brand-cyan); width: 14px; height: 14px; }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: none; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 10; pointer-events: none;
}
@media (min-width: 768px) { .hero-scroll { display: flex; } }
.hero-scroll span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--ink-faint); font-weight: 600; }
.hero-scroll-line {
  width: 1px; height: 3rem;
  background: linear-gradient(to bottom, var(--line-brand), transparent);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1.5rem;
  background: linear-gradient(to bottom, transparent, var(--brand-cyan), transparent);
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot { 0% { top: -1.5rem; } 100% { top: 100%; } }

.hero-bottom-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 8rem;
  background: linear-gradient(to bottom, transparent, var(--surface-base));
  pointer-events: none; z-index: 2;
}

/* ══════════════════════════════════════════════════════════════
   SECTION HEADER
══════════════════════════════════════════════════════════════ */
.section-pad { padding: 5rem 0; position: relative; overflow: hidden; }
.section-pad-lg { padding: 6rem 0; position: relative; overflow: hidden; }
@media (min-width: 1024px) { .section-pad-lg { padding: 8rem 0; } }
.section-head { text-align: center; margin-bottom: 4rem; max-width: 48rem; margin-left: auto; margin-right: auto; }
.section-kicker {
  display: inline-block; padding: 0.5rem 1rem; margin-bottom: 1.5rem;
  background: rgba(var(--brand-cyan-rgb), 0.1);
  border: 1px solid var(--line-brand);
  border-radius: 9999px;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent-strong); font-weight: 700;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.05;
  color: var(--ink-strong); margin-bottom: 1rem;
  font-family: 'Space Grotesk', sans-serif;
}
.section-sub {
  font-size: 1.125rem; color: var(--ink-muted); line-height: 1.6;
  max-width: 40rem; margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════════════════ */
.stats-section { padding: 5rem 0; background: var(--surface-base); position: relative; overflow: hidden; }
.stats-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(var(--brand-cyan-rgb), 0.05), transparent, rgba(var(--brand-blue-rgb), 0.05));
}
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; max-width: 80rem; margin: 0 auto;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  padding: 2rem; text-align: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(.2,.8,.2,1);
}
.stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-brand);
  box-shadow: var(--shadow-glow);
}
.stat-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 0.75rem;
  background-image: linear-gradient(135deg, #33D6E5 0%, #1D9FB4 100%);
  color: #1C1825;
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-brand-glow);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}
.stat-card:hover .stat-icon { transform: scale(1.1) rotate(3deg); }
.stat-value {
  font-size: 2.5rem; font-weight: 700; letter-spacing: -0.02em;
  background: linear-gradient(135deg, #33D6E5 0%, #4F7BB8 50%, #8DF0FA 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; color: transparent;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) { .stat-value { font-size: 3rem; } }
.stat-label { font-size: 0.875rem; color: var(--ink-muted); font-weight: 500; }

/* ══════════════════════════════════════════════════════════════
   SERVICES GRID (mobile-only)
══════════════════════════════════════════════════════════════ */
.services-grid-sec { padding: 6rem 0; background: var(--surface-base); position: relative; overflow: hidden; }
.services-grid-sec .mesh-gradient { position: absolute; inset: 0; opacity: 0.6; pointer-events: none; }
.services-grid-cards {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem;
}
@media (min-width: 768px) { .services-grid-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid-cards { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  padding: 2rem; height: 100%;
  background: var(--surface); border: 1px solid var(--line); border-radius: 1rem;
  position: relative; overflow: hidden; display: block;
  transition: all 0.35s cubic-bezier(.2,.8,.2,1);
}
.service-card:hover { border-color: var(--line-brand); box-shadow: var(--shadow-glow); transform: translateY(-4px); }
.service-card .card-glow {
  position: absolute; top: -5rem; right: -5rem; width: 15rem; height: 15rem;
  background: rgba(var(--brand-cyan-rgb), 0); border-radius: 9999px; filter: blur(60px);
  transition: background 0.5s;
}
.service-card:hover .card-glow { background: rgba(var(--brand-cyan-rgb), 0.1); }
.service-card-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 0.875rem;
  background-image: linear-gradient(135deg, #33D6E5 0%, #1D9FB4 100%);
  color: #1C1825;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-brand-glow);
  transition: transform 0.5s;
}
.service-card:hover .service-card-icon { transform: scale(1.1) rotate(3deg); }
.service-card-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--ink-strong); }
.service-card:hover .service-card-title { color: var(--accent-strong); }
.service-card-desc { font-size: 0.875rem; color: var(--ink-muted); line-height: 1.6; margin-bottom: 1rem; }
.service-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; border-top: 1px solid var(--line);
  color: var(--accent-strong); font-size: 0.875rem; font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════
   SERVICES TREE (desktop-only)
══════════════════════════════════════════════════════════════ */
.services-tree-sec { padding: 6rem 0; background: var(--surface-base); position: relative; overflow: hidden; display: none; }
@media (min-width: 1024px) { .services-tree-sec { display: block; padding: 8rem 0; } }
.services-tree-sec .mesh-gradient { position: absolute; inset: 0; opacity: 0.5; pointer-events: none; }
.services-tree-container { position: relative; height: 920px; }
.services-tree-canvas { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.tree-node {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.tree-node:hover { z-index: 30; }
.tree-card {
  position: relative;
  padding: 1.5rem 1.5rem 1.75rem;
  border-radius: 1.5rem;
  width: 15rem;
  cursor: pointer;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-brand-md);
  transition: all 0.5s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
  display: block;
}
.tree-node:hover .tree-card {
  box-shadow: var(--shadow-glow);
  border-color: var(--line-brand);
  transform: scale(1.06) translateY(-4px);
}
.tree-number-badge {
  position: absolute; top: -0.75rem; left: -0.75rem;
  width: 2.25rem; height: 2.25rem; border-radius: 9999px;
  background-image: linear-gradient(135deg, #33D6E5 0%, #1D9FB4 100%);
  color: #0B0F18;
  border: 2px solid var(--surface-base);
  box-shadow: var(--shadow-brand-glow);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900;
  z-index: 30;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
}
.tree-node:hover .tree-number-badge { transform: rotate(-10deg) scale(1.1); }
.tree-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 0.75rem;
  background-image: linear-gradient(135deg, #33D6E5 0%, #1D9FB4 100%);
  color: #0B0F18;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-brand-glow);
  transition: transform 0.5s;
}
.tree-node:hover .tree-icon { transform: scale(1.1) rotate(6deg); }
.tree-title { font-weight: 700; color: var(--ink-strong); margin-bottom: 0.5rem; font-size: 1rem; line-height: 1.2; }
.tree-link { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; color: var(--accent-strong); font-weight: 600; }
.tree-node:hover .tree-link { gap: 0.5rem; }
.tree-tip {
  text-align: center; margin-top: 4rem;
  display: flex; justify-content: center;
}
.tree-tip .pill {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1.5rem; border-radius: 9999px;
  background: var(--surface); border: 1px solid var(--line-brand);
  color: var(--ink-muted); font-size: 0.875rem; font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════
   FLOW FEATURES
══════════════════════════════════════════════════════════════ */
.flow-sec { padding: 6rem 0; background: var(--surface-base); position: relative; overflow: hidden; }
@media (min-width: 1024px) { .flow-sec { padding: 8rem 0; } }
.flow-sec .mesh-gradient { position: absolute; inset: 0; opacity: 0.5; pointer-events: none; }
.flow-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start; }
@media (min-width: 1024px) { .flow-grid { grid-template-columns: 5fr 7fr; gap: 3rem; } }
@media (min-width: 1280px) { .flow-grid { grid-template-columns: 4fr 8fr; } }
.flow-rail { display: flex; flex-direction: column; gap: 0.75rem; }
.flow-rail-btn {
  position: relative; width: 100%; text-align: left;
  padding: 1.25rem; border-radius: 1rem;
  border: 2px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(.2,.8,.2,1);
  display: block;
}
.flow-rail-btn:hover { border-color: var(--line-strong); transform: translateX(6px); }
.flow-rail-btn.active { border-color: var(--line-brand); box-shadow: var(--shadow-glow); }
.flow-rail-inner { position: relative; z-index: 10; display: flex; align-items: center; gap: 1rem; }
.flow-num {
  flex-shrink: 0; width: 2.5rem; height: 2.5rem; border-radius: 0.75rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface-sunken); color: var(--ink-faint);
  font-weight: 900; font-size: 0.875rem;
  transition: all 0.5s;
}
.flow-rail-btn.active .flow-num {
  background-image: linear-gradient(135deg, #33D6E5 0%, #1D9FB4 100%);
  color: #0B0F18; box-shadow: var(--shadow-brand-glow);
}
.flow-rail-btn:hover .flow-num { color: var(--accent-strong); }
.flow-icon-pill {
  flex-shrink: 0; width: 2.25rem; height: 2.25rem; border-radius: 0.625rem;
  background: var(--surface-sunken); color: var(--ink-soft);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.5s;
}
.flow-rail-btn.active .flow-icon-pill { background: rgba(var(--brand-cyan-rgb), 0.15); color: var(--accent-strong); }
.flow-rail-btn:hover .flow-icon-pill { color: var(--accent-strong); }
.flow-rail-text { flex: 1; min-width: 0; }
.flow-rail-text .label { font-weight: 700; color: var(--ink-muted); transition: color 0.3s; }
.flow-rail-btn.active .flow-rail-text .label { color: var(--ink-strong); }
.flow-rail-text .sub {
  display: block; font-size: 0.75rem; color: var(--ink-faint);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.flow-rail-btn .arrow { color: var(--ink-faint); opacity: 0; transition: all 0.5s; }
.flow-rail-btn.active .arrow { color: var(--accent-strong); opacity: 1; transform: translateX(4px); }
.flow-rail-btn:hover .arrow { opacity: 1; }
.flow-rail-btn .progress {
  position: absolute; bottom: 0; left: 0; height: 2px;
  background-image: linear-gradient(90deg, #33D6E5, #4F7BB8);
  transition: width 0s linear; width: 0;
}
.flow-rail-btn.active.auto .progress { width: 100%; transition: width 5.5s linear; }

.flow-panel {
  position: relative;
  padding: 2rem; min-height: 460px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 1rem;
  box-shadow: var(--shadow-sm); overflow: hidden;
}
@media (min-width: 768px) { .flow-panel { padding: 2.5rem; } }
@media (min-width: 1024px) { .flow-panel { padding: 3rem; } }
.flow-panel::before {
  content: ''; position: absolute; top: -8rem; right: -8rem;
  width: 16rem; height: 16rem; border-radius: 9999px;
  background-image: linear-gradient(135deg, #33D6E5, #4F7BB8);
  opacity: 0.2; filter: blur(60px); pointer-events: none;
  transition: all 0.7s;
}
.flow-panel-inner { position: relative; z-index: 10; }
.flow-glyph {
  width: 4rem; height: 4rem; border-radius: 1rem;
  background-image: linear-gradient(135deg, #33D6E5 0%, #1D9FB4 100%);
  color: #0B0F18;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; box-shadow: var(--shadow-brand-glow);
}
@media (min-width: 1024px) { .flow-glyph { width: 5rem; height: 5rem; } }
.flow-panel h3 {
  font-size: 2rem; font-weight: 700; color: var(--ink-strong);
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1rem;
}
@media (min-width: 768px) { .flow-panel h3 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .flow-panel h3 { font-size: 2.6rem; } }
.flow-panel p.desc { font-size: 1rem; color: var(--ink-muted); line-height: 1.6; max-width: 36rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .flow-panel p.desc { font-size: 1.125rem; } }
.flow-bullets { list-style: none; margin-bottom: 2rem; }
.flow-bullets li { display: flex; align-items: center; gap: 0.75rem; color: var(--ink); padding: 0.25rem 0; }
.flow-bullets li span.dot {
  width: 1.25rem; height: 1.25rem; border-radius: 9999px;
  background: rgba(var(--brand-cyan-rgb), 0.15);
  color: var(--accent-strong);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.flow-bullets li span.txt { font-size: 0.95rem; font-weight: 500; }
.flow-metric {
  display: inline-flex; align-items: center; gap: 1rem;
  padding: 0.75rem 1.25rem; border-radius: 1rem;
  background: var(--surface-sunken); border: 1px solid var(--line);
}
.flow-metric .v { font-size: 1.5rem; font-weight: 900; background-image: linear-gradient(135deg, #33D6E5, #4F7BB8); -webkit-background-clip: text; background-clip: text; color: transparent; }
@media (min-width: 768px) { .flow-metric .v { font-size: 1.875rem; } }
.flow-metric .line { width: 1px; height: 2rem; background: var(--line); }
.flow-metric .l { font-size: 0.875rem; color: var(--ink-muted); font-weight: 500; }

/* ══════════════════════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════════════════════ */
.why-sec { padding: 6rem 0; background: var(--surface-base); position: relative; overflow: hidden; }
@media (min-width: 1024px) { .why-sec { padding: 8rem 0; } }
.why-sec .mesh-gradient { position: absolute; inset: 0; opacity: 0.4; pointer-events: none; }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; position: relative; }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.why-card {
  position: relative; padding: 2rem; height: 100%;
  background: var(--surface); border: 1px solid var(--line); border-radius: 1rem;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(.2,.8,.2,1);
}
.why-card:hover { transform: translateY(-10px); border-color: var(--line-brand); box-shadow: 0 0 60px -15px rgba(51,214,229,0.5); }
.why-card .corner-orb {
  position: absolute; top: -5rem; right: -5rem;
  width: 11rem; height: 11rem; border-radius: 9999px;
  background-image: linear-gradient(135deg, #33D6E5, #1D9FB4);
  opacity: 0.15; filter: blur(50px); transition: all 0.7s; pointer-events: none;
}
.why-card:hover .corner-orb { opacity: 0.35; }
.why-card .inner { position: relative; z-index: 10; }
.why-card-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.5rem; }
.why-card-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 1rem;
  background-image: linear-gradient(135deg, #33D6E5, #1D9FB4);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-brand-glow);
  transition: transform 0.3s;
}
.why-card:hover .why-card-icon { transform: rotate(-10deg) scale(1.1); }
.why-stat { text-align: right; }
.why-stat .v {
  font-size: 1.875rem; font-weight: 900; line-height: 1;
  background-image: linear-gradient(135deg, #33D6E5, #1D9FB4);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.why-stat .l { font-size: 11px; color: var(--ink-faint); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.25rem; }
.why-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--ink-strong); margin-bottom: 0.75rem; transition: color 0.3s; }
.why-card:hover h3 { color: var(--accent-strong); }
.why-card p { color: var(--ink-muted); line-height: 1.6; margin-bottom: 1.5rem; }
.why-progress { height: 4px; width: 100%; border-radius: 9999px; background: var(--line); overflow: hidden; }
.why-progress span { display: block; height: 100%; border-radius: 9999px; background-image: linear-gradient(90deg, #33D6E5, #1D9FB4); width: 0; transition: width 1.4s cubic-bezier(.2,.8,.2,1); }
.why-card.in-view .why-progress span { width: 100%; }

/* ══════════════════════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════════════════════ */
.process-sec { padding: 6rem 0; background: var(--surface-alt); position: relative; overflow: hidden; }
@media (min-width: 1024px) { .process-sec { padding: 8rem 0; } }
.process-timeline { position: relative; }
.process-timeline .center-line {
  display: none; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: var(--line); transform: translateX(-50%);
}
@media (min-width: 1024px) { .process-timeline .center-line { display: block; } }
.process-steps { display: flex; flex-direction: column; gap: 5rem; }
@media (min-width: 1024px) { .process-steps { gap: 7rem; } }
.process-row {
  display: flex; flex-direction: column; align-items: center; gap: 2rem;
  position: relative;
}
@media (min-width: 1024px) {
  .process-row { flex-direction: row; }
  .process-row.reverse { flex-direction: row-reverse; }
}
.process-col { flex: 1; width: 100%; }
@media (min-width: 1024px) { .process-col { width: 50%; } }
.process-card {
  position: relative;
  padding: 2rem; background: var(--surface); border: 1px solid var(--line); border-radius: 1rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
}
@media (min-width: 1024px) {
  .process-card { padding: 2.5rem; }
  .process-row:not(.reverse) .process-card { margin-right: 2.5rem; }
  .process-row.reverse .process-card { margin-left: 2.5rem; }
}
.process-card:hover { transform: scale(1.02) translateY(-6px); border-color: var(--line-brand); box-shadow: var(--shadow-glow); }
.process-head { display: flex; align-items: flex-start; gap: 1.5rem; margin-bottom: 1.5rem; }
.process-icon {
  flex-shrink: 0; width: 4rem; height: 4rem; border-radius: 1rem;
  background-image: linear-gradient(135deg, #33D6E5, #1D9FB4);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-brand-glow);
}
.process-head-info { flex: 1; min-width: 0; }
.process-num {
  font-size: 3rem; font-weight: 900; line-height: 1;
  letter-spacing: -0.02em;
  background-image: linear-gradient(135deg, #33D6E5, #1D9FB4);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.process-phase { font-size: 0.75rem; font-weight: 700; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.2em; margin-left: 0.75rem; }
.process-title { font-size: 1.5rem; font-weight: 700; color: var(--ink-strong); line-height: 1.2; margin-top: 0.25rem; }
@media (min-width: 1024px) { .process-title { font-size: 1.875rem; } }
.process-desc { color: var(--ink-muted); line-height: 1.6; margin-bottom: 1.5rem; font-size: 1rem; }
@media (min-width: 1024px) { .process-desc { font-size: 1.125rem; } }
.process-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.process-feature { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--ink-muted); font-weight: 500; }
.process-feature .check {
  flex-shrink: 0; width: 1.25rem; height: 1.25rem; border-radius: 9999px;
  background-image: linear-gradient(135deg, #33D6E5, #1D9FB4);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0.8;
}
.process-bar { margin-top: 2rem; height: 4px; width: 100%; border-radius: 9999px; background: var(--line); overflow: hidden; }
.process-bar span { display: block; height: 100%; border-radius: 9999px; background-image: linear-gradient(90deg, #33D6E5, #1D9FB4); transition: width 1.4s cubic-bezier(.2,.8,.2,1); width: 0; }
.process-row.in-view .process-bar span { width: var(--progress, 100%); }
.process-node {
  display: none; position: absolute; left: 50%; transform: translateX(-50%); z-index: 20;
  width: 3.5rem; height: 3.5rem; border-radius: 9999px;
}
@media (min-width: 1024px) { .process-node { display: inline-flex; align-items: center; justify-content: center; } }
.process-node::before {
  content: ''; position: absolute; inset: 0; border-radius: 9999px;
  background-image: linear-gradient(135deg, #33D6E5, #1D9FB4);
  opacity: 0.6; filter: blur(8px);
}
.process-node .inner {
  position: relative; width: 100%; height: 100%; border-radius: 9999px;
  background-image: linear-gradient(135deg, #33D6E5, #1D9FB4);
  border: 4px solid var(--surface-alt);
  box-shadow: var(--shadow-brand-glow);
  display: inline-flex; align-items: center; justify-content: center;
}
.process-node .dot {
  width: 0.75rem; height: 0.75rem; border-radius: 9999px; background: #fff;
  animation: node-pulse 2s ease-in-out infinite;
}
@keyframes node-pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: 0.4; } }
.process-empty { flex: 1; width: 100%; display: none; }
@media (min-width: 1024px) { .process-empty { display: block; width: 50%; } }

/* ══════════════════════════════════════════════════════════════
   TECH STACK
══════════════════════════════════════════════════════════════ */
.tech-sec { padding: 5rem 0; background: var(--surface-base); position: relative; overflow: hidden; }
.tech-categories { display: grid; grid-template-columns: 1fr; gap: 3rem; max-width: 64rem; margin: 0 auto; }
@media (min-width: 768px) { .tech-categories { grid-template-columns: repeat(2, 1fr); } }
.tech-cat h3 { text-align: center; font-size: 1.25rem; font-weight: 700; color: var(--ink-strong); margin-bottom: 1.5rem; }
.tech-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.tech-chip {
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(var(--brand-cyan-rgb), 0.18);
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(.2,.8,.2,1);
  cursor: pointer;
}
html.dark .tech-chip { background: rgba(31, 26, 44, 0.55); }
.tech-chip:hover { transform: scale(1.1) rotate(5deg) translateY(-4px); box-shadow: var(--shadow-glow); border-color: var(--line-brand); }
.tech-chip-icon { width: 40px; height: 40px; margin: 0 auto 0.5rem; position: relative; transition: transform 0.3s; }
.tech-chip-icon.dark-bg { background: #fff; border-radius: 0.5rem; padding: 4px; }
.tech-chip-icon img { width: 100%; height: 100%; object-fit: contain; }
.tech-chip-name { font-size: 0.875rem; font-weight: 500; color: var(--ink); }
.tech-rings {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}
.tech-rings .ring-a, .tech-rings .ring-b {
  position: absolute; top: 50%; left: 50%; border-radius: 9999px;
  transform: translate(-50%, -50%);
}
.tech-rings .ring-a { width: 800px; height: 800px; border: 1px solid rgba(var(--brand-cyan-rgb), 0.1); animation: ring-spin 50s linear infinite; }
.tech-rings .ring-b { width: 600px; height: 600px; border: 1px solid rgba(var(--brand-blue-rgb), 0.1); animation: ring-spin 40s linear infinite reverse; }
@keyframes ring-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════════ */
.testi-sec { padding: 6rem 0; background: var(--surface-alt); position: relative; overflow: hidden; }
.testi-marquee-wrap { position: relative; }
.testi-marquee-wrap::before, .testi-marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 8rem; z-index: 10; pointer-events: none;
}
.testi-marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--surface-alt), transparent); }
.testi-marquee-wrap::after { right: 0; background: linear-gradient(to left, var(--surface-alt), transparent); }
.testi-marquee { display: flex; overflow: hidden; }
.testi-marquee-track { display: flex; gap: 1.5rem; animation: marquee 40s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.testi-marquee:hover .testi-marquee-track { animation-play-state: paused; }
.testi-card {
  flex-shrink: 0; width: 400px; padding: 2rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s;
}
.testi-card:hover { border-color: var(--line-brand); box-shadow: var(--shadow-glow); }
.testi-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.testi-stars svg { width: 20px; height: 20px; color: var(--brand-cyan); fill: var(--brand-cyan); }
.testi-text { color: var(--ink); line-height: 1.6; margin-bottom: 1.5rem; }
.testi-foot { display: flex; align-items: center; gap: 1rem; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 9999px;
  overflow: hidden; position: relative; flex-shrink: 0;
  box-shadow: inset 0 0 0 2px rgba(var(--brand-cyan-rgb), 0.4);
  transition: box-shadow 0.3s;
}
.testi-card:hover .testi-avatar { box-shadow: inset 0 0 0 2px rgba(var(--brand-cyan-rgb), 0.7); }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-weight: 600; color: var(--ink-strong); }
.testi-role { font-size: 0.875rem; color: var(--ink-faint); }

/* ══════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════ */
.faq-sec { padding: 5rem 0; background: var(--surface-base); position: relative; overflow: hidden; }
.faq-list { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: 1rem;
  overflow: hidden; transition: all 0.35s;
}
.faq-item:hover { border-color: var(--line-brand); box-shadow: var(--shadow-glow); }
.faq-q {
  width: 100%; padding: 1.5rem;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  text-align: left;
}
.faq-q h3 { flex: 1; font-size: 1.125rem; font-weight: 600; color: var(--ink-strong); transition: color 0.3s; }
.faq-item:hover .faq-q h3 { color: var(--accent-strong); }
.faq-icon {
  flex-shrink: 0; width: 2rem; height: 2rem; border-radius: 9999px;
  background-image: linear-gradient(135deg, #33D6E5, #1D9FB4);
  color: #1C1825;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-brand-glow);
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-icon .icon-plus, .faq-icon .icon-minus { transition: opacity 0.2s; }
.faq-item.open .faq-icon .icon-plus { opacity: 0; position: absolute; }
.faq-item:not(.open) .faq-icon .icon-minus { opacity: 0; position: absolute; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.35s cubic-bezier(.2,.8,.2,1); }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 0 1.5rem 1.5rem; border-top: 1px solid var(--line); padding-top: 1rem; }
.faq-a-inner p { color: var(--ink-muted); line-height: 1.6; }
.faq-still {
  margin-top: 4rem; text-align: center;
}
.faq-still-card { padding: 2rem; max-width: 40rem; margin: 0 auto; background: var(--surface); border: 1px solid var(--line); border-radius: 1rem; }
.faq-still h3 { font-size: 1.5rem; font-weight: 700; color: var(--ink-strong); margin-bottom: 1rem; }
.faq-still p { color: var(--ink-muted); margin-bottom: 1.5rem; }

/* ══════════════════════════════════════════════════════════════
   CTA
══════════════════════════════════════════════════════════════ */
.cta-sec { padding: 6rem 0; background: var(--surface-base); position: relative; overflow: hidden; }
.cta-sec::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(var(--brand-cyan-rgb), 0.04), transparent);
}
.cta-orb-a, .cta-orb-b { position: absolute; border-radius: 9999px; filter: blur(80px); pointer-events: none; animation: pulse-slow 4s ease-in-out infinite; }
.cta-orb-a { top: 5rem; left: 2.5rem; width: 18rem; height: 18rem; background: rgba(var(--brand-cyan-rgb), 0.08); }
.cta-orb-b { bottom: 5rem; right: 2.5rem; width: 24rem; height: 24rem; background: rgba(var(--brand-blue-rgb), 0.08); animation-delay: 1s; }
@keyframes pulse-slow { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
.cta-card {
  position: relative; padding: 2rem; max-width: 80rem; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--line-brand); border-radius: 1.5rem;
  box-shadow: var(--shadow-glow); overflow: visible;
}
@media (min-width: 768px) { .cta-card { padding: 3rem; } }
@media (min-width: 1024px) { .cta-card { padding: 4rem; } }
.cta-badge {
  display: none; position: absolute; top: -1.5rem; left: 50%; transform: translateX(-50%);
  padding: 0.75rem 1.5rem; border-radius: 9999px;
  background-image: linear-gradient(135deg, #33D6E5, #1D9FB4);
  color: #1C1825; font-weight: 900; font-size: 0.875rem;
  box-shadow: var(--shadow-brand-glow);
  align-items: center; gap: 0.5rem;
}
@media (min-width: 768px) { .cta-badge { display: inline-flex; } }
.cta-badge svg { color: #1C1825; fill: #1C1825; }
.cta-head { text-align: center; margin-top: 1rem; margin-bottom: 3rem; }
.cta-sparkle {
  display: inline-flex; position: relative;
  width: 5rem; height: 5rem; border-radius: 1rem; margin-bottom: 1.5rem;
  background-image: linear-gradient(135deg, #33D6E5, #1D9FB4);
  color: #1C1825;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow-brand-glow); animation: float 6s ease-in-out infinite;
}
.cta-sparkle::after {
  content: ''; position: absolute; top: -0.5rem; right: -0.5rem;
  width: 1.5rem; height: 1.5rem; border-radius: 9999px;
  background: var(--brand-cyan); border: 4px solid var(--surface);
  animation: pulse-slow 2s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.cta-head h2 {
  font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 700;
  line-height: 1.1; color: var(--ink-strong); margin-bottom: 1.5rem;
  font-family: 'Space Grotesk', sans-serif;
}
.cta-head p.big { font-size: 1.125rem; color: var(--ink-muted); margin-bottom: 1rem; max-width: 40rem; margin-left: auto; margin-right: auto; }
@media (min-width: 768px) { .cta-head p.big { font-size: 1.25rem; } }
.cta-head p.small { font-size: 0.875rem; color: var(--accent-strong); font-weight: 600; margin-bottom: 2rem; }
.cta-why { margin-bottom: 2.5rem; }
.cta-why-title { text-align: center; font-size: 1.25rem; font-weight: 700; color: var(--ink-strong); margin-bottom: 1.5rem; }
.cta-why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 1024px) { .cta-why-grid { grid-template-columns: repeat(4, 1fr); } }
.cta-why-card {
  padding: 1.25rem; text-align: center; border-radius: 1rem;
  background: var(--surface); border: 1px solid var(--line);
  transition: all 0.3s;
}
.cta-why-card:hover { transform: scale(1.05); border-color: var(--line-brand); box-shadow: var(--shadow-glow); }
.cta-why-card-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 0.75rem;
  background-image: linear-gradient(135deg, #33D6E5, #1D9FB4);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem; box-shadow: var(--shadow-brand-md);
  transition: transform 0.5s;
}
.cta-why-card:hover .cta-why-card-icon { transform: scale(1.1) rotate(6deg); }
.cta-why-card h4 { font-weight: 700; font-size: 0.875rem; color: var(--ink-strong); margin-bottom: 0.25rem; }
.cta-why-card p { font-size: 0.75rem; color: var(--ink-muted); }
.cta-perks {
  background: rgba(var(--brand-cyan-rgb), 0.05);
  border-radius: 1rem; padding: 2rem;
  border: 2px solid var(--line-brand);
  position: relative; overflow: hidden;
}
.cta-perks-head { display: flex; flex-direction: column; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; text-align: center; gap: 1rem; }
@media (min-width: 640px) { .cta-perks-head { flex-direction: row; } }
.cta-perks-head h3 { font-size: 1.25rem; font-weight: 700; background: linear-gradient(135deg, #33D6E5, #4F7BB8); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta-perks-pill { padding: 0.5rem 1rem; border-radius: 9999px; background: var(--surface); border: 1px solid var(--line); font-size: 0.75rem; font-weight: 700; color: var(--accent-strong); }
.cta-perks-list { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .cta-perks-list { grid-template-columns: repeat(2, 1fr); } }
.cta-perks-list > div {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.75rem; border-radius: 0.75rem;
  transition: background 0.3s;
}
.cta-perks-list > div:hover { background: rgba(var(--brand-cyan-rgb), 0.08); }
.cta-perks-list svg { color: var(--accent-strong); flex-shrink: 0; margin-top: 0.125rem; transition: transform 0.3s; }
.cta-perks-list > div:hover svg { transform: scale(1.25); }
.cta-perks-list span { font-size: 0.875rem; color: var(--ink); font-weight: 500; line-height: 1.6; }
.cta-foot { text-align: center; margin-top: 2.5rem; }
.cta-foot .stars-row { display: flex; justify-content: center; gap: 0.25rem; margin-bottom: 0.75rem; }
.cta-foot .stars-row svg { color: var(--brand-cyan); fill: var(--brand-cyan); }
.cta-foot .quote { font-size: 0.875rem; color: var(--ink-muted); }
.cta-foot .quote strong { color: var(--ink-strong); font-weight: 600; }
.cta-trust-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--line); font-size: 0.875rem; color: var(--ink-muted); font-weight: 500; }
.cta-trust-bar .live-dot { display: inline-flex; align-items: center; gap: 0.5rem; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.site-footer { position: relative; background: var(--surface-alt); border-top: 1px solid var(--line); overflow: hidden; }
.site-footer::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--brand-cyan-rgb), 0.5), transparent);
}
.site-footer .space-grid { position: absolute; inset: 0; opacity: 0.3; pointer-events: none; }
.site-footer .footer-orb {
  position: absolute; width: 24rem; height: 24rem; border-radius: 9999px; filter: blur(80px); pointer-events: none;
  animation: pulse-slow 8s ease-in-out infinite;
}
.site-footer .footer-orb-a { top: 0; left: 25%; background: rgba(var(--brand-cyan-rgb), 0.08); }
.site-footer .footer-orb-b { bottom: 0; right: 25%; background: rgba(var(--brand-blue-rgb), 0.08); animation-delay: 2s; }

.footer-wrap { position: relative; padding: 4rem 0 2rem; }
@media (min-width: 768px) { .footer-wrap { padding: 5rem 0 2rem; } }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-col h3 {
  font-size: 1.125rem; font-weight: 600; color: var(--ink-strong);
  margin-bottom: 1.5rem; position: relative; display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
}
.footer-col h3::after {
  content: ''; position: absolute; bottom: -0.25rem; left: 0;
  width: 2rem; height: 2px; border-radius: 9999px;
  background-image: linear-gradient(90deg, #33D6E5, #4F7BB8);
}
.footer-col p { font-size: 0.875rem; color: var(--ink-muted); line-height: 1.6; }
.footer-brand-logo { display: inline-block; margin-bottom: 1.5rem; }
.footer-brand-logo img { height: 48px; width: auto; object-fit: contain; transition: transform 0.3s; }
@media (min-width: 640px) { .footer-brand-logo img { height: 56px; } }
.footer-brand-logo:hover img { transform: scale(1.05); }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.footer-contact a, .footer-contact > div { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--ink-muted); transition: color 0.3s; }
.footer-contact a:hover { color: var(--accent-strong); }
.footer-contact .icon-pill {
  width: 32px; height: 32px; border-radius: 0.5rem;
  background: rgba(var(--brand-cyan-rgb), 0.1);
  border: 1px solid var(--line-brand);
  color: var(--accent-strong);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.3s;
}
.footer-contact a:hover .icon-pill { transform: scale(1.1) rotate(6deg); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; color: var(--ink-muted); transition: all 0.3s; }
.footer-links a::before {
  content: ''; width: 0; height: 1px; background: var(--accent-strong);
  transition: width 0.3s;
}
.footer-links a:hover { color: var(--accent-strong); }
.footer-links a:hover::before { width: 0.75rem; }

.newsletter-form { display: flex; flex-direction: column; gap: 0.75rem; }
.newsletter-form .status { font-size: 0.75rem; color: var(--accent-strong); }
.socials { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.5rem; }
.social-icon {
  position: relative; width: 40px; height: 40px; border-radius: 0.5rem;
  background: var(--surface-sunken); border: 1px solid var(--line);
  color: var(--ink-soft);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  overflow: hidden;
}
.social-icon::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(var(--brand-cyan-rgb),0), rgba(var(--brand-blue-rgb),0));
  transition: all 0.5s;
}
.social-icon:hover {
  color: var(--accent-strong);
  background: rgba(var(--brand-cyan-rgb), 0.1);
  border-color: var(--line-brand);
}
.social-icon:hover::before { background: linear-gradient(135deg, rgba(var(--brand-cyan-rgb),0.15), rgba(var(--brand-blue-rgb),0.15)); }
.social-icon svg { position: relative; z-index: 10; transition: transform 0.3s; }
.social-icon:hover svg { transform: scale(1.1) rotate(6deg); }

.footer-cta-bar {
  position: relative; padding: 1.5rem; margin-bottom: 2rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: 1rem;
  overflow: hidden;
}
@media (min-width: 768px) { .footer-cta-bar { padding: 2rem; } }
.footer-cta-bar::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(var(--brand-cyan-rgb), 0.05), rgba(var(--brand-blue-rgb), 0.05), rgba(var(--brand-teal-rgb), 0.05));
}
.footer-cta-bar .inner { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem; text-align: center; }
@media (min-width: 768px) { .footer-cta-bar .inner { flex-direction: row; text-align: left; } }
.footer-cta-bar h4 { font-size: 1.25rem; font-weight: 700; color: var(--ink-strong); margin-bottom: 0.25rem; }
@media (min-width: 768px) { .footer-cta-bar h4 { font-size: 1.5rem; } }
.footer-cta-bar p { font-size: 0.875rem; color: var(--ink-muted); }
.footer-bottom {
  padding-top: 2rem; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-bottom p { font-size: 0.875rem; color: var(--ink-faint); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.875rem; color: var(--ink-faint); transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--accent-strong); }

/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s cubic-bezier(.2,.8,.2,1), transform 0.6s cubic-bezier(.2,.8,.2,1); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════════════════════════
   FLOATING PARTICLES (bg dots)
══════════════════════════════════════════════════════════════ */
.fp-container { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.fp-dot {
  position: absolute; border-radius: 9999px;
  animation: fp-float linear infinite;
}
@keyframes fp-float {
  0% { transform: translate(0, 0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)); opacity: 0; }
}

/* ══════════════════════════════════════════════════════════════
   CONTACT / PAGE HEADS
══════════════════════════════════════════════════════════════ */
.page-hero { padding: 8rem 0 4rem; background: var(--surface-base); text-align: center; position: relative; overflow: hidden; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; color: var(--ink-strong); margin-bottom: 1.5rem; }
.page-hero p { font-size: 1.125rem; color: var(--ink-muted); max-width: 48rem; margin: 0 auto; }
@media (min-width: 768px) { .page-hero p { font-size: 1.25rem; } }

.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .form-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
.form-group label { display: block; font-weight: 600; color: var(--ink-strong); margin-bottom: 0.5rem; font-size: 0.875rem; }
.form-group .error-msg { font-size: 0.75rem; color: #dc2626; margin-top: 0.25rem; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 80rem; margin: 0 auto; align-items: stretch; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.pricing-card {
  position: relative; padding: 2rem; height: 100%;
  background: var(--surface); border: 1px solid var(--line); border-radius: 1rem;
  display: flex; flex-direction: column;
  transition: all 0.35s;
}
.pricing-card.popular { border: 2px solid var(--brand-cyan); box-shadow: 0 0 30px -5px rgba(var(--brand-cyan-rgb), 0.3); }
@media (min-width: 768px) { .pricing-card.popular { transform: scale(1.05); } }
.pricing-card:hover { border-color: var(--line-brand); box-shadow: var(--shadow-glow); }
.pricing-card.popular:hover { transform: scale(1.06); }
.pricing-popular-badge {
  position: absolute; top: -1rem; left: 50%; transform: translateX(-50%);
  padding: 0.25rem 1rem; border-radius: 9999px;
  background-image: linear-gradient(90deg, #33D6E5, #4F7BB8);
  color: #fff; font-size: 0.875rem; font-weight: 900;
  box-shadow: 0 4px 15px -2px rgba(var(--brand-cyan-rgb), 0.3);
}
.pricing-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 0.75rem;
  background-image: linear-gradient(135deg, #33D6E5, #4F7BB8);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; box-shadow: 0 8px 20px -4px rgba(var(--brand-cyan-rgb), 0.2);
}
.pricing-name { font-size: 1.5rem; font-weight: 700; color: var(--ink-strong); margin-bottom: 0.5rem; }
.pricing-desc { font-size: 0.875rem; color: var(--ink-muted); margin-bottom: 1.5rem; }
.pricing-price-row { margin-bottom: 1.5rem; }
.pricing-price { font-size: 2.25rem; font-weight: 700; color: var(--accent-strong); }
.pricing-period { color: var(--ink-faint); margin-left: 0.5rem; font-size: 0.95rem; }
.pricing-cta { margin-bottom: 2rem; }
.pricing-features { flex: 1; display: flex; flex-direction: column; gap: 0.75rem; }
.pricing-feature { display: flex; align-items: flex-start; gap: 0.75rem; }
.pricing-feature.not { opacity: 0.4; }
.pricing-feature.not span { text-decoration: line-through; color: var(--ink-faint); }
.pricing-feature svg { flex-shrink: 0; color: var(--accent-strong); margin-top: 2px; }
.pricing-feature.not svg { color: var(--ink-faint); }
.pricing-feature span { font-size: 0.875rem; color: var(--ink); }

/* Portfolio */
.portfolio-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-bottom: 3rem; }
.portfolio-filter button {
  padding: 0.625rem 1.25rem; border-radius: 9999px;
  background: var(--surface); border: 1px solid var(--line);
  font-weight: 600; font-size: 0.875rem; color: var(--ink-muted);
  transition: all 0.3s;
}
.portfolio-filter button.active, .portfolio-filter button:hover {
  background-image: linear-gradient(135deg, #33D6E5, #1D9FB4);
  color: #1C1825; border-color: transparent;
}
.portfolio-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }
.portfolio-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 1rem;
  overflow: hidden; transition: all 0.35s;
}
.portfolio-card:hover { border-color: var(--line-brand); box-shadow: var(--shadow-glow); transform: translateY(-4px); }
.portfolio-thumb { aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-sunken); }
.portfolio-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.portfolio-card:hover .portfolio-thumb img { transform: scale(1.06); }
.portfolio-body { padding: 1.5rem; }
.portfolio-cat { font-size: 0.75rem; color: var(--accent-strong); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.portfolio-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--ink-strong); margin-bottom: 0.5rem; }
.portfolio-card p { font-size: 0.875rem; color: var(--ink-muted); line-height: 1.6; margin-bottom: 1rem; }
.portfolio-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.portfolio-tag { padding: 0.25rem 0.75rem; border-radius: 9999px; background: var(--surface-sunken); border: 1px solid var(--line); font-size: 0.75rem; color: var(--ink-muted); font-weight: 500; }

/* Team */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card {
  padding: 1.5rem; text-align: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: 1rem;
  transition: all 0.35s;
}
.team-card:hover { border-color: var(--line-brand); box-shadow: var(--shadow-glow); transform: translateY(-6px); }
.team-photo {
  width: 120px; height: 120px; border-radius: 9999px;
  overflow: hidden; margin: 0 auto 1rem;
  box-shadow: inset 0 0 0 3px rgba(var(--brand-cyan-rgb), 0.4);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--ink-strong); margin-bottom: 0.25rem; }
.team-card .role { font-size: 0.875rem; color: var(--accent-strong); font-weight: 600; margin-bottom: 0.75rem; }
.team-card p { font-size: 0.875rem; color: var(--ink-muted); line-height: 1.5; margin-bottom: 1rem; }
.team-card .socials { justify-content: center; margin-top: 1rem; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; max-width: 80rem; margin: 0 auto; }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 3fr 2fr; } }
.contact-info-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .contact-info-grid { grid-template-columns: repeat(2, 1fr); } }
.contact-info-card {
  padding: 1.5rem; background: var(--surface); border: 1px solid var(--line); border-radius: 1rem;
  transition: all 0.3s;
}
.contact-info-card:hover { border-color: var(--line-brand); transform: translateY(-4px); }
.contact-info-card .icon {
  width: 2.5rem; height: 2.5rem; border-radius: 0.625rem;
  background-image: linear-gradient(135deg, #33D6E5, #1D9FB4);
  color: #1C1825;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem;
}
.contact-info-card h4 { font-weight: 700; color: var(--ink-strong); margin-bottom: 0.25rem; font-size: 0.95rem; }
.contact-info-card p { font-size: 0.875rem; color: var(--ink-muted); }

/* Service detail */
.service-hero { padding: 8rem 0 3rem; background: var(--surface-base); position: relative; overflow: hidden; }
.service-hero-icon {
  width: 5rem; height: 5rem; border-radius: 1rem;
  background-image: linear-gradient(135deg, #33D6E5, #1D9FB4);
  color: #1C1825;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; box-shadow: var(--shadow-brand-glow);
}
.service-hero h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700; color: var(--ink-strong); margin-bottom: 1.25rem; }
.service-hero p { font-size: 1.125rem; color: var(--ink-muted); max-width: 48rem; }
.service-detail-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; max-width: 80rem; margin: 0 auto; }
@media (min-width: 1024px) { .service-detail-grid { grid-template-columns: 2fr 1fr; } }
.service-features-card { padding: 2rem; background: var(--surface); border: 1px solid var(--line); border-radius: 1rem; }
.service-features-list { list-style: none; }
.service-features-list li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid var(--line); }
.service-features-list li:last-child { border-bottom: 0; }
.service-features-list li svg { color: var(--accent-strong); flex-shrink: 0; margin-top: 2px; }
.service-tech-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.service-tech-chips span { padding: 0.375rem 0.875rem; border-radius: 9999px; background: rgba(var(--brand-cyan-rgb),0.1); border: 1px solid var(--line-brand); font-size: 0.8rem; color: var(--accent-strong); font-weight: 600; }

/* Flash */
.flash { padding: 0.75rem 1rem; border-radius: 0.75rem; margin-bottom: 1rem; font-size: 0.9rem; font-weight: 500; }
.flash-success { background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.3); color: #16a34a; }
.flash-error { background: rgba(220, 38, 38, 0.1); border: 1px solid rgba(220, 38, 38, 0.3); color: #dc2626; }
.flash-info { background: rgba(var(--brand-cyan-rgb), 0.1); border: 1px solid var(--line-brand); color: var(--accent-strong); }

/* Support page tickets card */
.support-cats { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 80rem; margin: 0 auto 3rem; }
@media (min-width: 768px) { .support-cats { grid-template-columns: repeat(3, 1fr); } }
.support-cat {
  padding: 2rem; text-align: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: 1rem;
  transition: all 0.35s;
}
.support-cat:hover { border-color: var(--line-brand); box-shadow: var(--shadow-glow); transform: translateY(-4px); }
.support-cat .icon {
  width: 3.5rem; height: 3.5rem; border-radius: 0.875rem;
  background-image: linear-gradient(135deg, #33D6E5, #1D9FB4);
  color: #1C1825;
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; box-shadow: var(--shadow-brand-glow);
}
.support-cat h3 { font-size: 1.125rem; font-weight: 700; color: var(--ink-strong); margin-bottom: 0.5rem; }
.support-cat p { font-size: 0.875rem; color: var(--ink-muted); }

/* ══════════════════════════════════════════════════════════════
   MOBILE PERFORMANCE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1023px) {
  .hero-orb, .conic-glow, .tech-rings { display: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
