/* ============================================
   NeonGrow Technologies — Design System
   ============================================ */

/* ----- Custom Properties ----- */
:root {
  --black: #080A0C;
  --surface: #0F1115;
  --surface-raised: #161A20;
  --border: #1E2328;
  --text-primary: #F0F2F5;
  --text-secondary: #8A8F9A;
  --neon: #7FFF00;
  --neon-dim: #4A9900;
  --white: #FFFFFF;

  --nav-bg: rgba(8, 10, 12, 0.85);
  --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --card-shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.4);
  --footer-bg: #080A0C;
  --toggle-icon: #FFFFFF;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.75rem;
  --text-5xl: 3.75rem;
  --text-hero: clamp(3rem, 8vw, 6rem);

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 80px;
  --space-3xl: 120px;
  --space-4xl: 160px;

  --max-width: 1200px;
  --container-padding: 24px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.3s ease;
}

/* ----- Light Theme ----- */
[data-theme="light"] {
  --black: #EEF0F2;
  --surface: #FFFFFF;
  --surface-raised: #E8EBEE;
  --border: #CDD1D8;
  --text-primary: #1E2024;
  --text-secondary: #6B7080;
  --white: #1A1C20;

  --nav-bg: rgba(230, 233, 237, 0.7);
  --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 12px 28px rgba(0, 0, 0, 0.05);
  --card-shadow-hover: 0 6px 20px rgba(0, 0, 0, 0.08), 0 16px 40px rgba(0, 0, 0, 0.06);
  --footer-bg: #CCD0D7;
  --toggle-icon: #6B7080;
}

[data-theme="light"] .hero-home {
  background: linear-gradient(180deg, #E6E9ED 0%, var(--black) 100%);
}

[data-theme="light"] .hero-glow,
[data-theme="light"] .hero-glow-2,
[data-theme="light"] .hero-glow-3 {
  opacity: 0.25;
}

[data-theme="light"] .hero-bg-lines {
  opacity: 1;
}

[data-theme="light"] .btn-ghost {
  border-width: 2px;
}

[data-theme="light"] .service-detail:nth-child(even),
[data-theme="light"] .service-detail-alt {
  background: var(--surface-raised);
}

[data-theme="light"] .card {
  background: var(--surface);
  box-shadow: var(--card-shadow);
}

[data-theme="light"] .hero-grid {
  opacity: 0.2;
}

[data-theme="light"] .section + .section {
  border-top: 1px solid var(--border);
}

[data-theme="light"] .btn-primary:hover {
  box-shadow: 0 0 12px rgba(127, 255, 0, 0.2);
}

[data-theme="light"] .wa-float {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .feature-item .icon-wrap {
  border-color: rgba(127, 255, 0, 0.25);
}

[data-theme="light"] .nav-links a.active {
  box-shadow: 0 0 4px rgba(127, 255, 0, 0.15);
}

[data-theme="light"] .service-detail-img {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 8px 24px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .service-detail-img:hover {
  box-shadow: var(--card-shadow-hover), 0 0 20px rgba(127, 255, 0, 0.05);
  border-color: var(--neon-dim);
}

[data-theme="light"] .service-proof li {
  background: rgba(127, 255, 0, 0.06);
  border-color: rgba(127, 255, 0, 0.15);
}

[data-theme="light"] .hero-shape {
  border-color: rgba(127, 255, 0, 0.04);
}

[data-theme="light"] .pricing-cta .cta-box {
  border-color: var(--border);
}

[data-theme="light"] .pricing-cta .cta-box::before {
  opacity: 0.4;
}

[data-theme="light"] input:focus,
[data-theme="light"] select:focus,
[data-theme="light"] textarea:focus {
  box-shadow: 0 0 0 3px rgba(127, 255, 0, 0.06);
}

[data-theme="light"] .process-mini-step {
  background: var(--surface);
  box-shadow: var(--card-shadow);
}

[data-theme="light"] .trust-card {
  background: var(--surface);
  box-shadow: var(--card-shadow);
}

[data-theme="light"] .industry-card {
  background: var(--surface);
  box-shadow: var(--card-shadow);
}

/* ----- Smooth Theme Transition ----- */
.theme-transitioning,
.theme-transitioning *,
.theme-transitioning *::before,
.theme-transitioning *::after {
  transition: background 0.35s ease,
              color 0.35s ease,
              border-color 0.35s ease,
              box-shadow 0.35s ease,
              fill 0.35s ease,
              stroke 0.35s ease !important;
}

/* ----- Reset ----- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--black);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ----- Typography ----- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
}

h1 {
  font-size: clamp(2.5rem, 7vw, 6rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

h2 {
  font-size: clamp(1.75rem, 5vw, var(--text-4xl));
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.25rem, 3vw, var(--text-2xl));
  letter-spacing: -0.02em;
}

h4 {
  font-size: var(--text-xl);
}

p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  padding: 16px 32px;
  transition: box-shadow 0.2s ease, transform 0.15s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn:active {
  opacity: 0.8;
}

.btn:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--neon);
  color: #000;
}

.btn-primary:hover {
  box-shadow: 0 0 20px rgba(127, 255, 0, 0.4);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
}

.btn-ghost:hover {
  border-color: var(--neon);
  color: var(--white);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ----- Navigation ----- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.nav.scrolled {
  border-bottom-color: var(--border);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: relative;
}

.nav-logo {
  width: 85px;
  height: auto;
  flex-shrink: 0;
}

[data-theme="light"] .nav-logo {
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.2));
}
}

.nav-logo-link {
  display: flex;
  align-items: center;
  padding: 4px 0;
  margin-right: auto;
  transition: opacity 0.3s ease;
}

.nav-logo-link:hover {
  opacity: 0.85;
}

@media (min-width: 768px) {
  .nav-logo-link {
    padding-right: var(--space-lg);
  }
}

@media (min-width: 768px) {
  .nav-logo {
    width: 105px;
  }
}

@media (max-width: 767px) {
  .nav-logo {
    width: 100px;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    gap: var(--space-md);
  }
}

@media (min-width: 1024px) {
  .nav-links {
    gap: var(--space-lg);
  }
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  position: relative;
  padding: 4px 2px;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--neon);
  transition: width 0.3s ease, left 0.3s ease;
  border-radius: 1px;
  box-shadow: 0 0 6px var(--neon);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  left: 0;
}

.nav-links a.active {
  color: var(--white);
  font-weight: 600;
}

.nav-links a:focus-visible,
.nav-overlay a:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
  border-radius: 4px;
}

.nav-cta {
  display: none;
  color: #000 !important;
  padding: 14px 32px;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  color: #000 !important;
}

/* ----- Theme Toggle ----- */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
  position: relative;
}

.theme-toggle:hover {
  background: var(--surface-raised);
  transform: scale(1.1);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  color: var(--toggle-icon);
  transition: transform 0.5s var(--ease-out), color 0.35s ease;
  position: absolute;
}

.theme-toggle .sun-icon {
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}

.theme-toggle .moon-icon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

[data-theme="light"] .theme-toggle .sun-icon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

[data-theme="light"] .theme-toggle .moon-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

@media (min-width: 768px) {
  .theme-toggle {
    width: 40px;
    height: 40px;
  }
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger span + span {
  margin-top: 6px;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-hamburger:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
  border-radius: 8px;
}

/* Mobile Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.nav-overlay.open {
  transform: translateX(0);
}

.nav-overlay a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--text-3xl);
  color: var(--text-secondary);
  padding: var(--space-sm) 0;
  opacity: 0;
  transform: translateY(20px);
  transition: color 0.25s ease, opacity 0.4s ease, transform 0.4s ease;
}

.nav-overlay.open a {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay a:hover {
  color: var(--white);
}

.nav-overlay .nav-overlay-cta {
  margin-top: var(--space-lg);
  color: #000;
}

/* ----- Section Spacing ----- */
section {
  padding: var(--space-2xl) 0;
}

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
}

.section-header {
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  max-width: 600px;
}

/* ----- Cards ----- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  border-color: var(--neon-dim);
  transform: translateY(-4px);
  box-shadow: 0 0 24px rgba(127, 255, 0, 0.06);
}

/* ----- Service Cards ----- */
.service-card {
  text-align: center;
  position: relative;
}

.service-card-featured {
  border-color: var(--neon-dim);
  position: relative;
}

.service-card-featured::after {
  content: '★ Most Popular';
  position: absolute;
  top: -10px;
  right: var(--space-md);
  background: var(--neon);
  color: var(--black);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.service-card-featured:hover {
  border-color: var(--neon);
  box-shadow: 0 0 40px rgba(127, 255, 0, 0.15);
}

.service-card .icon-wrap {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card .icon-wrap svg {
  width: 24px;
  height: 24px;
  color: var(--neon);
}

.service-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.service-card p {
  font-size: var(--text-sm);
}

.service-outcome {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px !important;
  color: var(--neon) !important;
  margin-top: var(--space-sm);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.service-card:hover .icon-wrap svg {
  color: var(--neon);
  filter: drop-shadow(0 0 8px rgba(127, 255, 0, 0.3));
}

.service-card:hover .service-outcome {
  color: var(--neon-dim) !important;
}

/* ----- Team Cards ----- */
.team-card {
  text-align: center;
}

.team-card .avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto var(--space-sm);
  overflow: hidden;
  border: 2px solid var(--border);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-raised);
}

.team-card:hover .avatar {
  border-color: var(--neon-dim);
  box-shadow: 0 0 20px rgba(127, 255, 0, 0.1);
}

.team-card .avatar svg {
  width: 64px;
  height: 64px;
  color: var(--text-secondary);
}

.team-card h3 {
  font-size: var(--text-xl);
  margin-bottom: 4px;
}

.team-card .role {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.team-card .team-desc {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  margin-top: var(--space-xs);
  line-height: 1.5;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

/* ----- Stat Items ----- */
.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--neon);
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--text-xs);
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  margin-top: var(--space-xs);
}

/* ----- Scroll Reveal ----- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-children > .reveal-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.reveal-children.visible > .reveal-child {
  opacity: 1;
  transform: translateY(0);
}

/* ----- CTA Banner ----- */
.cta-banner {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: var(--space-3xl) 0;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(127, 255, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  margin-bottom: var(--space-sm);
}

.cta-banner p {
  margin-bottom: var(--space-lg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ----- Footer ----- */
.footer {
  border-top: 1px solid var(--border);
  padding: var(--space-2xl) 0 var(--space-xl);
  background: var(--footer-bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.pricing-cta {
  text-align: center;
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.pricing-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(127, 255, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.pricing-cta h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-sm);
}

.pricing-cta p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-cta .btn {
  position: relative;
  z-index: 1;
}

.footer-brand .nav-logo {
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-sm);
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: var(--space-sm);
}

.footer-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.footer-socials a:hover {
  color: var(--white);
  border-color: var(--text-secondary);
  transform: scale(1.1);
}

.footer-socials a svg {
  width: 16px;
  height: 16px;
}

.footer h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-sm);
  color: var(--white);
}

.footer ul a {
  display: block;
  font-size: var(--text-base);
  color: var(--text-secondary);
  padding: 4px 0;
  transition: color 0.25s ease;
}

.footer ul a:hover {
  color: var(--white);
}

.footer-contact p {
  font-size: var(--text-base);
  margin-bottom: 4px;
}

.footer-contact a {
  color: var(--text-secondary);
  transition: color 0.25s ease;
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: var(--text-secondary);
}

/* ----- Hero Actions (button row) ----- */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.hero-actions .btn {
  flex: 1 1 auto;
  text-align: center;
}

@media (min-width: 640px) {
  .hero-actions .btn {
    flex: 0 1 auto;
  }
}

/* ----- Hero Stats ----- */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.hero-stat {
  text-align: center;
  flex: 1 1 auto;
  min-width: 80px;
}

.hero-stat .number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--neon);
}

.hero-stat .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--text-xs);
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  margin-top: 4px;
}

@media (min-width: 640px) {
  .hero-stats {
    gap: var(--space-lg);
  }

  .hero-stat {
    flex: 0 1 auto;
  }
}

/* ----- Hero Visual (chart) ----- */
.hero-visual {
  display: none;
}

.hero-chart {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.hero-chart svg {
  width: 100%;
  height: auto;
}

/* ----- Grids: Service & Team ----- */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

/* ----- Process Timeline (base: vertical) ----- */
.process-timeline {
  position: relative;
  padding: var(--space-xl) 0;
}

.process-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background: var(--border);
  transform-origin: top;
}

.process-node {
  position: relative;
  padding-left: 52px;
  padding-bottom: var(--space-xl);
}

.process-node:last-child {
  padding-bottom: 0;
}

.process-node::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border);
  z-index: 1;
  transition: border-color 0.4s ease, background 0.4s ease;
}

.process-node.done::before {
  border-color: var(--neon);
  background: var(--neon);
  box-shadow: 0 0 10px rgba(127, 255, 0, 0.3);
}

.process-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--neon);
  opacity: 0.12;
  line-height: 1;
  position: absolute;
  top: -8px;
  left: 52px;
  pointer-events: none;
}

/* ----- Service Detail Grid ----- */
.service-detail-grid {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}

/* ----- Contact Grid ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.submit-wrap {
  margin-top: var(--space-md);
}

.submit-wrap .btn svg {
  width: 20px;
  height: 20px;
}

@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}

/* ----- Scroll Indicator ----- */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  opacity: 0.4;
  animation: bounce-fade 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
}

.scroll-indicator .chevron {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-secondary);
  border-bottom: 2px solid var(--text-secondary);
  transform: rotate(45deg);
  animation: bounce-chevron 2s ease-in-out infinite;
}

@keyframes bounce-chevron {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(4px); }
}

@keyframes bounce-fade {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

/* ----- WhatsApp Float ----- */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  animation: wa-pulse 2s infinite;
  transition: transform 0.2s ease;
}

.wa-float:hover {
  transform: scale(1.05);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.7); }
}

/* ----- Form Styles ----- */
.form-group {
  position: relative;
  margin-bottom: var(--space-md);
}

.form-group label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--text-base);
  color: var(--text-secondary);
  pointer-events: none;
  transition: all 0.2s ease;
  background: transparent;
  padding: 0 4px;
}

.form-group textarea ~ label {
  top: 18px;
  transform: none;
}

.form-group label.floating,
.form-group input:focus ~ label,
.form-group select:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group select:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -10px;
  left: 12px;
  font-size: var(--text-xs);
  color: var(--neon);
  background: var(--surface);
  padding: 0 6px;
}

.form-group label.floating {
  top: -10px;
  left: 12px;
  font-size: var(--text-xs);
  color: var(--neon);
  background: var(--surface);
  padding: 0 6px;
}

input, select, textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  padding: 16px 16px 14px;
  font-family: 'Inter', sans-serif;
  font-size: var(--text-base);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%238A8F9A'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

[data-theme="light"] select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%237A7F8A'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
}

input:focus, select:focus, textarea:focus {
  border-color: var(--neon);
  outline: none;
  box-shadow: 0 0 0 3px rgba(127, 255, 0, 0.08);
}

input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 1px;
}

input.error, select.error, textarea.error {
  border-color: #FF4D4D;
  animation: shake 0.35s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  50% { transform: translateX(6px); }
  75% { transform: translateX(-4px); }
}

/* ----- Tags / Pills ----- */
.tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-family: 'Inter', sans-serif;
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--border);
  color: var(--text-secondary);
  border: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.tag:hover {
  color: var(--neon);
  border-color: var(--neon-dim);
}

/* ----- Accordion ----- */
.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
  user-select: none;
}

.accordion-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.accordion-item.active .accordion-dot {
  background: var(--neon);
}

.accordion-header h4 {
  font-size: var(--text-base);
  transition: color 0.25s ease;
}

.accordion-item.active .accordion-header h4 {
  color: var(--white);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
}

.accordion-item.active .accordion-body {
  max-height: 300px;
  padding: 0 0 var(--space-sm) calc(var(--space-sm) + 8px);
}

.accordion-body p {
  font-size: var(--text-sm);
}

.process-line.drawn {
  background: var(--neon-dim);
}

.process-node h3 {
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-xs);
}

.process-node p {
  position: relative;
  z-index: 1;
  font-size: var(--text-sm);
}

/* ----- Hero (general) ----- */
main {
  position: relative;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 10;
  overflow: clip;
}

.hero-home {
  min-height: 100vh;
}

.hero-inner {
  min-height: 0;
  padding: 0;
  padding-top: 72px;
}

.hero-centered {
  text-align: center;
  justify-content: center;
  padding-bottom: 0;
}

.hero-centered .container {
  text-align: center;
}

.hero-centered + section {
  padding-top: var(--space-md);
}

.hero-centered p {
  margin-left: auto;
  margin-right: auto;
}

/* ----- Split Layout ----- */
.split-grid {
  display: grid;
  gap: var(--space-xl);
}

.split-left h2 {
  font-size: var(--text-5xl);
  line-height: 1.05;
}

.split-left .neon-text {
  color: var(--neon);
}

.split-left p {
  margin-top: var(--space-sm);
  margin-bottom: var(--space-lg);
}

/* ----- Why List ----- */
.why-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.25s ease;
}

.why-list li:last-child {
  border-bottom: none;
}

.why-list li:hover {
  color: var(--white);
}

.why-list .check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ----- Service Detail Section ----- */
.service-detail {
  padding: var(--space-xl) 0;
  position: relative;
}

.service-detail:nth-child(even),
.service-detail-alt {
  background: var(--surface);
}

.service-detail::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.service-detail:last-child::after {
  display: none;
}

/* Alt layout: image first */
.service-detail-alt .service-detail-grid {
  direction: rtl;
}

.service-detail-alt .service-detail-grid > * {
  direction: ltr;
}

/* Service detail image - hover zoom + glow */
.service-detail-img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  width: 100%;
  box-shadow: var(--card-shadow);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.service-detail-img:hover {
  transform: scale(1.03);
  box-shadow: var(--card-shadow-hover), 0 0 30px rgba(127, 255, 0, 0.08);
  border-color: var(--neon-dim);
}

/* Result badge under h2 */
.service-result {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--neon);
  letter-spacing: 0.03em;
  margin-top: -0.5em;
  margin-bottom: var(--space-md);
  display: block;
}

.service-detail .icon-large {
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-sm);
}

.service-detail .icon-large svg {
  width: 64px;
  height: 64px;
  color: var(--neon);
}

.service-detail h2 {
  margin-bottom: var(--space-sm);
}

.service-detail p {
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
}

.service-detail ul {
  margin-top: var(--space-sm);
}

.service-detail ul li {
  position: relative;
  padding-left: var(--space-md);
  font-size: var(--text-base);
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
  line-height: 1.6;
}

.service-detail ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon);
  opacity: 0.6;
}

/* ----- Contact Page ----- */
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.info-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.info-card-item {
  margin-bottom: var(--space-sm);
}

.info-card-item:last-child {
  margin-bottom: 0;
}

.info-card-item .label {
  font-size: var(--text-xs);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.08em;
  color: var(--neon);
  margin-bottom: 4px;
}

.info-card-item p,
.info-card-item a {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.info-card-item a:hover {
  color: var(--white);
}

.map-container {
  margin-top: var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 220px;
  filter: grayscale(100%) invert(1);
}

/* ----- Responsive: Small (640px) ----- */
@media (min-width: 640px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ----- Responsive: Tablet (768px) ----- */
@media (min-width: 768px) {
  :root {
    --container-padding: 48px;
  }

  section {
    padding: var(--space-3xl) 0;
  }

  .nav-cta {
    display: inline-flex;
  }

  .nav-hamburger {
    display: none;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .split-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }

  .process-timeline {
    padding-left: 0;
    padding-right: 0;
  }

  .process-line {
    left: 0;
    right: 0;
    top: auto;
    bottom: auto;
    height: 2px;
    width: 0;
  }

  .process-line.drawn {
    width: 100%;
  }

  .process-node {
    padding-left: 0;
    padding-bottom: 0;
    text-align: center;
  }

  .process-node::before {
    left: 50%;
    top: -7px;
    transform: translateX(-50%);
  }

  .process-number {
    position: static;
    margin-bottom: var(--space-xs);
  }

  .process-nodes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    padding-top: var(--space-xl);
  }

  .hero-centered + section {
    padding-top: var(--space-md);
  }

  .service-detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail {
    padding: var(--space-2xl) 0;
  }

  .pricing-cta {
    padding: var(--space-2xl) 0;
  }
}

/* ----- Responsive: Desktop (1024px) ----- */
@media (min-width: 1024px) {
  :root {
    --container-padding: 80px;
  }

  section {
    padding: var(--space-4xl) 0;
  }

  .nav .container {
    justify-content: center;
  }

  .nav-logo-link {
    margin-right: 0;
    position: absolute;
    left: var(--container-padding);
  }

  .nav-actions {
    position: absolute;
    right: var(--container-padding);
  }

  .hero-home .container {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: var(--space-xl);
    align-items: center;
  }

  .hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }

  .process-nodes {
    grid-template-columns: repeat(6, 1fr);
  }

  .service-detail {
    padding: var(--space-3xl) 0;
  }
}

/* ----- Responsive: Large Desktop (1280px) ----- */
@media (min-width: 1280px) {
  .hero-home .hero-content {
    max-width: 640px;
  }
}

/* ----- Mobile: Hero & Container Fixes ----- */
@media (max-width: 767px) {
  :root {
    --container-padding: 20px;
  }

  .hero-home {
    min-height: 55vh;
    padding-top: 120px;
    padding-bottom: var(--space-lg);
  }

  .hero-home .hero-content {
    max-width: 100%;
    width: 100%;
  }

  .hero-home .hero-content h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    max-width: 100%;
  }

  .hero-home .hero-content p {
    max-width: 100% !important;
  }

  .hero-visual {
    display: block;
    position: absolute;
    top: 10%;
    right: -60px;
    width: 40%;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
  }

  .hero-visual .hero-chart {
    max-width: none;
    margin: 0;
  }

  .hero-actions {
    flex-direction: column;
    gap: var(--space-sm);
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 16px 32px;
  }

  .hero-home + section {
    padding-top: var(--space-md);
  }

  .scroll-indicator {
    display: none;
  }
}

/* ----- WhatsApp Mobile ----- */
@media (max-width: 639px) {
  .hero-bg-lines {
    opacity: 0.3;
  }

  .hero-bg-lines .gl-path:nth-child(3) {
    opacity: 0 !important;
  }

  .wa-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .wa-float svg {
    width: 24px;
    height: 24px;
  }
}

/* ----- Reduced Motion ----- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-child {
    opacity: 1 !important;
    transform: none !important;
  }

  .gl-path,
  .chart-bar,
  .chart-line,
  .chart-dot,
  .chart-dashed {
    animation: none !important;
    stroke-dashoffset: 0 !important;
    transform: none !important;
  }

  .wa-float {
    animation: none !important;
  }

  .scroll-indicator {
    animation: none !important;
  }
}

/* ----- Section Divider (organic curve) ----- */
.section-divider {
  width: 100%;
  height: 80px;
  overflow: hidden;
  line-height: 0;
  position: relative;
  z-index: 1;
}

.section-divider svg {
  width: 100%;
  height: 80px;
}

.section-divider path {
  fill: var(--surface);
}

.section-divider-invert path {
  fill: var(--black);
}

/* ----- Stats Strip (Trust Metrics) ----- */
.stats-strip {
  padding: var(--space-2xl) 0;
  position: relative;
}

.stats-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 400px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  opacity: 0.3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: var(--space-md) 0;
}

.stat-card .stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--neon);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-card .stat-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ----- Featured Work ----- */
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.work-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.work-card:hover {
  border-color: var(--neon-dim);
  transform: translateY(-4px);
  box-shadow: 0 0 24px rgba(127, 255, 0, 0.06);
}

.work-card .work-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--border);
}

.work-card-body {
  padding: var(--space-md);
}

.work-card-body h3 {
  font-size: var(--text-lg);
  margin-bottom: 4px;
}

.work-card-body p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
  line-height: 1.5;
}

.work-card-body .tag {
  display: inline-block;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--border);
  color: var(--text-secondary);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ----- Testimonials ----- */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--neon-dim);
  transform: translateY(-2px);
}

.testimonial-card .stars {
  color: var(--neon);
  font-size: var(--text-sm);
  margin-bottom: var(--space-sm);
  letter-spacing: 3px;
}

.testimonial-card .quote {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.testimonial-card .author {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--text-sm);
  color: var(--white);
  font-weight: 600;
}

.testimonial-card .author-role {
  font-size: var(--text-xs);
  color: var(--text-secondary);
}

/* ----- Process Strip (Compact, Homepage) ----- */
.process-strip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .process-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.process-step:hover {
  border-color: var(--neon-dim);
  transform: translateY(-3px);
}

.process-step .step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--neon);
  opacity: 0.08;
  line-height: 1;
  position: absolute;
  top: -4px;
  right: var(--space-sm);
  pointer-events: none;
}

.process-step h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
  position: relative;
}

.process-step p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  position: relative;
}

/* ----- Hero Upgrade ----- */
.hero-glow {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 650px;
  height: 650px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(127, 255, 0, 0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.hero-glow-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(127, 255, 0, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.hero-glow-3 {
  position: absolute;
  top: 15%;
  left: 40%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(127, 255, 0, 0.03) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.hero-bg-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.growth-line {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.growth-line path,
.gl-path {
  stroke: var(--neon);
  fill: none;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(127, 255, 0, 0.15));
}

.gl-path {
  stroke-dasharray: 2500;
  stroke-dashoffset: 2500;
  animation: drawGl 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes drawGl {
  to { stroke-dashoffset: 0; }
}

/* ----- Hero Chart Enhanced ----- */
.hero-chart {
  max-width: 440px;
}

.hero-chart svg {
  filter: drop-shadow(0 0 30px rgba(127, 255, 0, 0.1));
}

.chart-bar {
  transform-origin: bottom center;
  animation: barGrow 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes barGrow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

.chart-line {
  stroke: #7FFF00;
  stroke-width: 2.5;
  opacity: 0.9;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawLine 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

.chart-dot {
  fill: #7FFF00;
  animation: dotPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1.4s both;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

@keyframes dotPop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.chart-dashed {
  stroke: #7FFF00;
  stroke-width: 1;
  opacity: 0.12;
  stroke-dasharray: 4 4;
  animation: fadeIn 0.6s ease 1.2s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 0.12; }
}

/* ----- Enhanced Card Hover (all cards) ----- */
.card:hover,
.work-card:hover,
.testimonial-card:hover,
.process-step:hover,
.info-card:hover {
  border-color: var(--neon-dim);
  transform: translateY(-6px);
  box-shadow: 0 0 32px rgba(127, 255, 0, 0.10);
}

/* ----- Why Choose NeonGrow (replaced with Split Editorial) ----- */
.split-editorial {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .split-editorial {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

.split-editorial-left h2 {
  font-size: var(--text-4xl);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

.split-editorial-left p {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

.split-editorial-right .feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.feature-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.feature-icon {
  font-size: 14px;
  color: var(--neon);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--neon-dim);
  border-radius: 50%;
  margin-top: 2px;
}

.feature-item h3 {
  font-size: var(--text-base);
  margin-bottom: 4px;
}

.feature-item p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ----- Industries We Serve ----- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

@media (min-width: 640px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.industry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.industry-card:hover {
  border-color: var(--neon-dim);
  transform: translateY(-3px);
}

.industry-card .industry-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto var(--space-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon);
  opacity: 0.7;
}

.industry-card .industry-icon svg {
  width: 28px;
  height: 28px;
}

.industry-card h4 {
  font-size: var(--text-sm);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--white);
}

/* ----- Company Motto ----- */
.motto-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.motto-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(127, 255, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.motto-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
}

.motto-text .motto-line {
  display: block;
}

.motto-text .motto-line:first-child {
  color: var(--white);
}

.motto-text .motto-line:nth-child(2) {
  color: var(--white);
}

.motto-text .motto-line:nth-child(3) {
  color: var(--neon);
}

.motto-period {
  color: var(--neon);
}

/* ----- Mission & Vision (About) ----- */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .mission-vision-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.mission-card,
.vision-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
  border-color: var(--neon-dim);
  transform: translateY(-3px);
}

.mission-card .mv-label,
.vision-card .mv-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: var(--neon);
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.mission-card h2,
.vision-card h2 {
  margin-bottom: var(--space-sm);
}

.mission-card p,
.vision-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ----- Business Credentials Strip ----- */
.credentials-strip {
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

@media (min-width: 640px) {
  .credentials-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.credential-badge {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  color: var(--text-secondary);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.credential-badge:hover {
  border-color: var(--neon-dim);
  color: var(--white);
}

.credential-badge svg {
  width: 18px;
  height: 18px;
  color: var(--neon);
  flex-shrink: 0;
}

/* ----- Team Placeholder (monochrome) ----- */
.team-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--surface-raised);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  transition: border-color 0.3s ease;
}

.team-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--text-secondary);
  opacity: 0.5;
}

.team-card:hover .team-placeholder {
  border-color: var(--neon-dim);
}

.team-image-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--space-sm);
  border: 2px solid var(--border);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card:hover .team-image-wrap {
  border-color: var(--neon-dim);
  box-shadow: 0 0 20px rgba(127, 255, 0, 0.1);
}

/* ----- Social Placeholder ----- */
.social-placeholder {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.06em;
  opacity: 0.7;
  margin-top: var(--space-xs);
}

/* ----- Utility ----- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.text-center {
  text-align: center;
}

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

/* ----- Hero Grid Pattern ----- */
.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(127, 255, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 255, 0, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.hero-shape {
  position: absolute;
  border: 1px solid rgba(127, 255, 0, 0.06);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 5%;
}

.hero-shape-2 {
  width: 180px;
  height: 180px;
  bottom: 20%;
  left: 10%;
}

.hero-shape-3 {
  width: 120px;
  height: 120px;
  top: 30%;
  left: 50%;
  border-radius: 0;
  transform: rotate(45deg);
}

/* ----- Service Nav Pills ----- */
.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: var(--space-xl);
}

@media (max-width: 480px) {
  .service-nav {
    gap: 4px;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .service-nav::-webkit-scrollbar {
    display: none;
  }
  .service-nav a {
    font-size: 10px;
    padding: 6px 12px;
  }
}

.service-nav a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-secondary);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.service-nav a:hover {
  border-color: var(--neon-dim);
  color: var(--white);
  background: var(--surface-raised);
}

/* ----- Service Proof Bullets ----- */
.service-proof {
  list-style: none;
  padding: 0;
  margin-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.service-proof li {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--neon);
  background: rgba(127, 255, 0, 0.04);
  border: 1px solid rgba(127, 255, 0, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
}

/* ----- Mini Process Strip ----- */
.process-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

@media (min-width: 640px) {
  .process-mini {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-mini {
    grid-template-columns: repeat(6, 1fr);
  }
}

.process-mini-step {
  text-align: center;
  padding: var(--space-md);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.process-mini-step:hover {
  border-color: var(--neon-dim);
  transform: translateY(-2px);
}

.process-mini-step .step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--neon);
  opacity: 0.2;
  line-height: 1;
  display: block;
  margin-bottom: var(--space-xs);
}

.process-mini-step h4 {
  font-size: var(--text-sm);
  color: var(--white);
}

/* ----- Trust Cards (small) ----- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.trust-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-sm);
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.trust-card:hover {
  border-color: var(--neon-dim);
  transform: translateY(-3px);
}

.trust-card .trust-icon {
  font-size: 18px;
  color: var(--neon);
  margin-bottom: var(--space-xs);
  display: block;
}

.trust-card h4 {
  font-size: var(--text-sm);
  color: var(--white);
  font-weight: 600;
}

/* ----- CTA Enhanced ----- */
.pricing-cta .cta-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-cta .cta-box::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(127, 255, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.pricing-cta .cta-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.pricing-cta .cta-contact a {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  transition: color 0.25s ease;
}

.pricing-cta .cta-contact a:hover {
  color: var(--white);
}

.pricing-cta .cta-contact svg {
  width: 16px;
  height: 16px;
  color: var(--neon);
}

/* ----- Cursor Glow ----- */
.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 255, 0, 0.04) 0%, transparent 65%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  will-change: transform;
}

/* ----- Enhanced Reveal Variants ----- */
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-side {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-side.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-side-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-side-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ----- Text Split Reveal ----- */
.text-reveal {
  overflow: hidden;
  line-height: 1.15;
}

.text-reveal .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.text-reveal.visible .word {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Image Clip Reveal ----- */
.img-reveal {
  position: relative;
  overflow: hidden;
}

.img-reveal .img-wrap {
  position: relative;
  overflow: hidden;
}

.img-reveal img {
  display: block;
  width: 100%;
  transform: scale(1.08);
  transition: transform 0.8s var(--ease-out);
}

.img-reveal.visible img {
  transform: scale(1);
}

.img-reveal .img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--neon);
  transform: translateX(0);
  transition: transform 0.9s var(--ease-out);
}

.img-reveal.visible .img-wrap::after {
  transform: translateX(100%);
}

/* ----- Magnetic Button ----- */
.magnetic-wrap {
  display: inline-block;
  position: relative;
}

/* ----- Marquee ----- */
.marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: var(--space-sm) 0;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-inner {
  display: flex;
  gap: var(--space-xl);
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-inner span {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--text-sm);
  color: var(--neon);
  opacity: 0.3;
  letter-spacing: 0.08em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.marquee-inner span::after {
  content: '✦';
  color: var(--neon);
  opacity: 0.4;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ----- Link Hover Glow ----- */
a.hover-glow {
  position: relative;
  transition: color 0.3s ease;
}

a.hover-glow::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--neon);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}

a.hover-glow:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

a.hover-glow:hover {
  color: var(--white);
}

/* ----- Smooth Scroll ----- */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  .cursor-glow,
  .marquee-inner,
  .img-reveal .img-wrap::after,
  .img-reveal img,
  .text-reveal .word,
  .reveal-scale,
  .reveal-side,
  .reveal-side-right {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .cursor-glow {
    display: none;
  }

  html {
    scroll-behavior: auto;
  }
}
