/* ==========================================================================
   TRIGGERZ DESIGN STUDIO — Main Stylesheet
   v1.0 — June 2026
   ========================================================================== */

/* CSS Variables — Brand Tokens */
:root {
  --color-bg: #0A0A0A;
  --color-bg-soft: #141414;
  --color-surface: #1A1A1A;
  --color-cream: #F5F1EB;
  --color-cream-soft: #EDE7DD;
  --color-mint: #7DEDD3;
  --color-mint-dark: #5BC7AE;
  --color-red: #FF4D2E;
  --color-text: #F5F1EB;
  --color-text-dim: #A8A39C;
  --color-text-muted: #6B6660;
  --color-border: rgba(245, 241, 235, 0.08);
  --color-border-strong: rgba(245, 241, 235, 0.16);

  --font-display: 'Manrope', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --max-w: 1280px;
  --pad-x: clamp(20px, 5vw, 60px);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

/* Hide native cursor on devices that support custom cursor */
@media (hover: hover) and (pointer: fine) {
  body.cursor-active, body.cursor-active * { cursor: none !important; }
}

/* Typography */
.h1, h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.h2, h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.h3, h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.h4, h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}
p { color: var(--color-text-dim); font-size: 1.05rem; max-width: 65ch; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.35rem); color: var(--color-cream); max-width: 60ch; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--color-mint);
  padding: 6px 14px; border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-pill); background: rgba(125, 237, 211, 0.05);
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-mint); box-shadow: 0 0 12px var(--color-mint);
}

.text-mint { color: var(--color-mint); }
.text-cream { color: var(--color-cream); }
.text-dim { color: var(--color-text-dim); }

/* Layout */
.container { max-width: var(--max-w); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.section { padding: clamp(80px, 12vw, 160px) 0; }
.section-tight { padding: clamp(60px, 8vw, 100px) 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.95rem;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-mint);
  color: var(--color-bg);
}
.btn-primary:hover {
  background: var(--color-cream); transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(125, 237, 211, 0.25);
}
.btn-secondary {
  background: transparent; color: var(--color-cream);
  border: 1px solid var(--color-border-strong);
}
.btn-secondary:hover {
  border-color: var(--color-mint); color: var(--color-mint);
  background: rgba(125, 237, 211, 0.04);
}
.btn-arrow svg { transition: transform 0.3s var(--ease); }
.btn-arrow:hover svg { transform: translateX(4px); }

/* Custom Cursor */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none;
  z-index: 9999; mix-blend-mode: difference;
  transition: transform 0.15s var(--ease), opacity 0.2s;
}
.cursor-dot {
  width: 8px; height: 8px; background: var(--color-red);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--color-cream);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-ring.hover {
  width: 64px; height: 64px;
  border-color: var(--color-mint);
}

/* Navigation */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px;
}
.nav-logo img { height: 38px; width: auto; }
.nav-menu {
  display: flex; gap: 4px; align-items: center;
}
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; border-radius: var(--radius-pill);
  font-size: 0.92rem; font-weight: 500;
  color: var(--color-cream);
  transition: all 0.25s var(--ease);
}
.nav-link:hover, .nav-item:hover .nav-link {
  color: var(--color-mint);
  background: rgba(125, 237, 211, 0.06);
}
.nav-link .chev {
  width: 10px; height: 10px; transition: transform 0.25s;
}
.nav-item:hover .chev { transform: rotate(180deg); }

.nav-submenu {
  position: absolute; top: 100%; left: 0;
  min-width: 280px; padding: 12px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.25s var(--ease);
  pointer-events: none;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}
.nav-item:hover .nav-submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
  pointer-events: auto;
}
.nav-sub-group { margin-bottom: 8px; }
.nav-sub-group:last-child { margin-bottom: 0; }
.nav-sub-title {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--color-text-muted);
  padding: 8px 12px 4px;
}
.nav-sub-link {
  display: block; padding: 8px 12px; border-radius: var(--radius-sm);
  font-size: 0.92rem; color: var(--color-cream);
  transition: all 0.2s;
}
.nav-sub-link:hover {
  background: rgba(125, 237, 211, 0.08); color: var(--color-mint);
}
.nav-cta {
  display: flex; gap: 10px; align-items: center;
}
.lang-switch {
  display: flex; gap: 2px; padding: 4px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
}
.lang-switch a {
  padding: 5px 10px; border-radius: var(--radius-pill);
  color: var(--color-text-dim); font-weight: 600;
  transition: all 0.2s;
}
.lang-switch a.active { background: var(--color-mint); color: var(--color-bg); }
.lang-switch a:not(.active):hover { color: var(--color-cream); }

.nav-toggle {
  display: none; width: 44px; height: 44px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-pill);
  align-items: center; justify-content: center;
}
.nav-toggle span {
  width: 18px; height: 2px; background: var(--color-cream);
  position: relative; transition: all 0.3s;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0;
  width: 18px; height: 2px; background: var(--color-cream);
  transition: all 0.3s;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

@media (max-width: 1024px) {
  .nav-menu, .nav-cta .btn-primary { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--color-bg);
  padding: 100px var(--pad-x) 40px;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu-list a {
  display: block; padding: 14px 0;
  font-size: 1.6rem; font-weight: 700;
  font-family: var(--font-display);
  border-bottom: 1px solid var(--color-border);
}

/* Hero */
.hero {
  position: relative;
  padding: 180px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
  width: 80vw; height: 80vw; max-width: 1200px; max-height: 1200px;
  background: radial-gradient(circle, rgba(125, 237, 211, 0.12) 0%, transparent 60%);
  filter: blur(80px); pointer-events: none; z-index: 0;
}
.hero-inner { position: relative; z-index: 1; }
.hero-eyebrow { margin-bottom: 24px; }
.hero h1 { margin-bottom: 28px; max-width: 14ch; }
.hero h1 .accent { color: var(--color-mint); }
.hero h1 .outline {
  -webkit-text-stroke: 1.5px var(--color-cream);
  color: transparent;
}
.hero-lead { margin-bottom: 40px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-meta {
  margin-top: 80px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  color: var(--color-cream); letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stat .num .symbol { color: var(--color-mint); }
.hero-stat .label {
  margin-top: 8px; font-size: 0.85rem; color: var(--color-text-dim);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* Client Marquee */
.marquee {
  padding: 60px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  background: var(--color-bg);
}
.marquee-title {
  text-align: center; margin-bottom: 40px;
  font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--color-text-muted);
}
.marquee-track {
  display: flex; gap: 80px; width: max-content;
  animation: marquee 50s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  height: 60px; min-width: 180px;
  filter: grayscale(1) brightness(1.5) contrast(0.9);
  opacity: 0.55; transition: all 0.3s;
}
.marquee-item:hover {
  filter: none; opacity: 1;
}
.marquee-item img {
  max-height: 50px; max-width: 160px;
  width: auto; height: auto; object-fit: contain;
}
.marquee-placeholder {
  height: 50px; min-width: 140px;
  border: 1px dashed var(--color-border-strong);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: var(--color-text-muted);
  letter-spacing: 0.1em; text-transform: uppercase;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 60px;
}
.service-card {
  position: relative;
  padding: 32px 28px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease);
  overflow: hidden;
  text-decoration: none; color: inherit;
  display: block;
}
.service-card::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(125, 237, 211, 0.08) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.5s;
}
.service-card:hover {
  border-color: var(--color-border-strong);
  transform: translateY(-6px);
  background: var(--color-surface);
}
.service-card:hover::before { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }
.service-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(125, 237, 211, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  color: var(--color-mint);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: 0.95rem; margin-bottom: 20px; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--color-mint); font-size: 0.9rem; font-weight: 600;
}
.service-link svg { width: 14px; height: 14px; transition: transform 0.3s; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* Section Header */
.section-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: end; margin-bottom: 20px;
}
@media (max-width: 768px) {
  .section-head { grid-template-columns: 1fr; }
}
.section-head h2 { max-width: 18ch; }
.section-head-lead { color: var(--color-text-dim); }

/* Approach Steps */
.approach {
  background: var(--color-cream);
  color: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 80px);
  margin-top: 40px;
}
.approach h2 { color: var(--color-bg); }
.approach .eyebrow {
  background: rgba(10, 10, 10, 0.06);
  color: var(--color-bg); border-color: rgba(10, 10, 10, 0.12);
}
.approach .eyebrow::before { background: var(--color-red); box-shadow: 0 0 12px var(--color-red); }
.approach p { color: rgba(10, 10, 10, 0.7); }
.steps {
  display: grid; gap: 16px; margin-top: 40px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.step {
  padding: 24px;
  background: rgba(10, 10, 10, 0.04);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease);
}
.step:hover {
  background: var(--color-bg); color: var(--color-cream);
  transform: translateY(-4px);
}
.step:hover .step-num, .step:hover h4 { color: var(--color-mint); }
.step:hover p { color: var(--color-text-dim); }
.step-num {
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 800;
  color: var(--color-red); letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.step h4 { color: var(--color-bg); margin-bottom: 8px; font-size: 1.05rem; }
.step p { font-size: 0.88rem; color: rgba(10, 10, 10, 0.6); }

/* Why Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin-top: 60px;
}
.why-card {
  padding: 32px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg-soft);
}
.why-card .why-num {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 800;
  color: var(--color-mint); margin-bottom: 16px;
  letter-spacing: -0.03em; line-height: 1;
}
.why-card h4 { margin-bottom: 10px; }
.why-card p { font-size: 0.92rem; }

/* CTA Banner */
.cta-banner {
  position: relative;
  margin: 80px 0;
  padding: clamp(60px, 10vw, 120px) clamp(30px, 6vw, 80px);
  background: linear-gradient(135deg, var(--color-bg-soft) 0%, var(--color-surface) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(125, 237, 211, 0.15) 0%, transparent 60%);
  filter: blur(60px); pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { margin-bottom: 20px; }
.cta-banner p { margin: 0 auto 32px; }
.cta-banner .hero-actions { justify-content: center; }

/* Cases / Portfolio Grid */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px; margin-top: 50px;
}
.case-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  transition: all 0.4s var(--ease);
}
.case-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-strong);
}
.case-thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-bg) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.case-thumb .placeholder-text {
  color: var(--color-text-muted); font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.case-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.case-body { padding: 28px; }
.case-tag {
  display: inline-block; padding: 4px 12px;
  background: rgba(125, 237, 211, 0.1);
  color: var(--color-mint);
  border-radius: var(--radius-pill);
  font-size: 0.75rem; font-weight: 600;
  margin-bottom: 12px;
}
.case-body h3 { margin-bottom: 10px; font-size: 1.4rem; }
.case-body p { font-size: 0.92rem; margin-bottom: 16px; }
.case-stat {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 800;
  color: var(--color-mint); letter-spacing: -0.02em;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 50px;
}
.testimonial {
  padding: 32px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.testimonial .quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem; line-height: 1;
  color: var(--color-mint); margin-bottom: 12px;
}
.testimonial blockquote {
  color: var(--color-cream); font-size: 1.02rem;
  line-height: 1.6; margin-bottom: 24px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px; border-top: 1px solid var(--color-border);
}
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-mint);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-bg); font-weight: 700;
}
.testimonial-name { font-weight: 600; color: var(--color-cream); font-size: 0.95rem; }
.testimonial-role { font-size: 0.82rem; color: var(--color-text-dim); }

/* FAQ */
.faq {
  max-width: 800px; margin: 60px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 24px 0;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; text-align: left;
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 600;
  color: var(--color-cream);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--color-mint); }
.faq-q-icon {
  width: 32px; height: 32px;
  border: 1px solid var(--color-border-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-left: 16px;
  transition: all 0.3s var(--ease);
}
.faq-q-icon::before, .faq-q-icon::after {
  content: ''; position: absolute;
  background: var(--color-cream); transition: all 0.3s;
}
.faq-q-icon::before { width: 12px; height: 1.5px; }
.faq-q-icon::after { width: 1.5px; height: 12px; }
.faq-item.open .faq-q-icon { background: var(--color-mint); border-color: var(--color-mint); }
.faq-item.open .faq-q-icon::before, .faq-item.open .faq-q-icon::after { background: var(--color-bg); }
.faq-item.open .faq-q-icon::after { transform: rotate(90deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s;
}
.faq-item.open .faq-a {
  max-height: 500px; padding-top: 16px;
}
.faq-a p { color: var(--color-text-dim); font-size: 0.98rem; line-height: 1.7; }

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px; margin-top: 60px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
  padding: 32px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.contact-info-card h4 { margin-bottom: 8px; font-size: 1rem; color: var(--color-mint); }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-item .ico {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(125, 237, 211, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-mint);
}
.contact-info-item .ico svg { width: 18px; height: 18px; }
.contact-info-item .label { font-size: 0.78rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px; }
.contact-info-item .value { color: var(--color-cream); font-size: 1rem; }
.contact-info-item .value:hover { color: var(--color-mint); }

.form-field { margin-bottom: 20px; }
.form-field label {
  display: block; font-size: 0.85rem; font-weight: 500;
  margin-bottom: 8px; color: var(--color-cream);
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 14px 16px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  color: var(--color-cream); font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.25s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--color-mint);
  background: var(--color-surface);
}
.form-field textarea { min-height: 140px; resize: vertical; }

/* Footer */
.footer {
  background: var(--color-bg-soft);
  border-top: 1px solid var(--color-border);
  padding: 80px 0 40px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 44px; margin-bottom: 20px; }
.footer-brand p { font-size: 0.92rem; }
.footer-col h5 {
  font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--color-text-muted);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
  color: var(--color-cream); font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--color-mint); }
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--color-border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 0.85rem; color: var(--color-text-dim);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a:hover { color: var(--color-mint); }

/* Page Hero (interior pages) */
.page-hero {
  padding: 160px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60vw; height: 60vw; max-width: 800px; max-height: 800px;
  background: radial-gradient(circle, rgba(125, 237, 211, 0.1) 0%, transparent 60%);
  filter: blur(70px); pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 800px; }
.page-hero h1 { margin-top: 24px; margin-bottom: 24px; }
.page-hero p { font-size: 1.15rem; }

/* Scroll fade-in */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .marquee-track { animation: none; }
}

/* Selection */
::selection { background: var(--color-mint); color: var(--color-bg); }

/* Print */
@media print {
  .nav, .footer, .cursor-dot, .cursor-ring { display: none; }
}

/* ==========================================================================
   WOW EFFECTS PACK — v2 (May 2026)
   ========================================================================== */

/* 1. AURORA GRADIENT BLOBS — Hero background */
.hero { z-index: 0; }
.hero .aurora {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden; pointer-events: none;
}
.hero .aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.55;
  mix-blend-mode: screen;
  animation: aurora-drift 18s ease-in-out infinite;
  will-change: transform;
}
.hero .aurora-blob.b1 {
  width: 50vw; height: 50vw; max-width: 700px; max-height: 700px;
  top: -10%; left: 10%;
  background: radial-gradient(circle, rgba(125, 237, 211, 0.55), transparent 70%);
  animation-delay: 0s;
}
.hero .aurora-blob.b2 {
  width: 40vw; height: 40vw; max-width: 600px; max-height: 600px;
  top: 30%; right: -5%;
  background: radial-gradient(circle, rgba(91, 199, 174, 0.45), transparent 70%);
  animation-delay: -6s;
  animation-duration: 22s;
}
.hero .aurora-blob.b3 {
  width: 45vw; height: 45vw; max-width: 650px; max-height: 650px;
  bottom: -15%; left: 30%;
  background: radial-gradient(circle, rgba(255, 77, 46, 0.18), transparent 70%);
  animation-delay: -12s;
  animation-duration: 26s;
}
@keyframes aurora-drift {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  25% { transform: translate(8%, -6%) scale(1.1) rotate(45deg); }
  50% { transform: translate(-6%, 8%) scale(0.95) rotate(90deg); }
  75% { transform: translate(6%, 6%) scale(1.05) rotate(135deg); }
}
.hero-inner { position: relative; z-index: 2; }

/* 2. ANIMATED SVG PATH-DRAWN LINES — Hero decoration */
.hero-svg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
  opacity: 0.4;
}
.hero-svg path {
  fill: none;
  stroke: var(--color-mint);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw-path 3.5s var(--ease) forwards;
  filter: drop-shadow(0 0 8px rgba(125, 237, 211, 0.6));
}
.hero-svg path.p2 { animation-delay: 0.8s; }
.hero-svg path.p3 { animation-delay: 1.6s; stroke: var(--color-red); filter: drop-shadow(0 0 6px rgba(255, 77, 46, 0.5)); }
@keyframes draw-path {
  to { stroke-dashoffset: 0; }
}

/* 3. CURSOR GLOW ORB — follows mouse */
.cursor-glow {
  position: fixed; top: 0; left: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(125, 237, 211, 0.18) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease), opacity 0.3s;
  filter: blur(20px);
  mix-blend-mode: screen;
  will-change: transform;
  opacity: 0;
}
.cursor-glow.active { opacity: 1; }
@media (hover: none) and (pointer: coarse) {
  .cursor-glow { display: none; }
}

/* 4. SPLIT TEXT — letter-by-letter reveal */
.split-text { display: inline-block; }
.split-text .word {
  display: inline-block;
  margin-right: 0.25em;
  overflow: hidden;
  vertical-align: top;
}
.split-text .word:last-child { margin-right: 0; }
.split-text .char {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.7s var(--ease), opacity 0.7s ease;
  will-change: transform, opacity;
}
.split-text.revealed .char {
  transform: translateY(0);
  opacity: 1;
}

/* 5. OUTLINE → FILL heading animation */
.h2-outline, .section-head h2 {
  position: relative;
  display: inline-block;
}
.heading-fill .accent-fill {
  display: inline-block;
  background: linear-gradient(to right, var(--color-mint) 50%, transparent 50%);
  background-size: 220% 100%;
  background-position: right bottom;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.2px var(--color-cream);
  transition: background-position 1.2s var(--ease), -webkit-text-fill-color 0.4s;
}
.heading-fill.revealed .accent-fill {
  background-position: left bottom;
  -webkit-text-fill-color: transparent;
}

/* 6. NEON SCAN LINE — at section transitions */
.section, .section-tight, .hero, .marquee {
  position: relative;
}
.scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-mint) 50%, transparent);
  box-shadow: 0 0 16px rgba(125, 237, 211, 0.8), 0 0 32px rgba(125, 237, 211, 0.4);
  opacity: 0;
  pointer-events: none;
  z-index: 5;
}
.scan-line.scan-top { top: 0; }
.scan-line.scan-bottom { bottom: 0; }
.scan-line.scanning {
  animation: scan-pass 1.4s var(--ease) forwards;
}
@keyframes scan-pass {
  0% { opacity: 0; transform: scaleX(0); transform-origin: left; }
  20% { opacity: 1; }
  80% { opacity: 1; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(1); transform-origin: right; }
}

/* 7. MAGNETIC BUTTONS — JS adds the transform, CSS smooths it */
.btn {
  will-change: transform;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.btn.magnetic-active {
  transition: transform 0.1s linear, background 0.3s, color 0.3s, box-shadow 0.3s;
}

/* 8. CARD 3D TILT — bonus (subtle) */
.service-card, .case-card, .testimonial, .why-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* 9. GRADIENT TEXT HOVER on links */
.nav-link, .footer-col a {
  background-image: linear-gradient(to right, var(--color-mint), var(--color-mint));
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s var(--ease), color 0.25s;
}
.nav-link:hover, .footer-col a:hover {
  background-size: 100% 1px;
}

/* 10. NOISE TEXTURE OVERLAY for film grain effect */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' /><feColorMatrix values='0 0 0 0 0.5 0 0 0 0 0.5 0 0 0 0 0.5 0 0 0 0.08 0'/></filter><rect width='200' height='200' filter='url(%23n)' /></svg>");
  opacity: 0.4;
  mix-blend-mode: overlay;
}

/* Reduce motion respect */
@media (prefers-reduced-motion: reduce) {
  .aurora-blob, .hero-svg path, .scan-line.scanning, .split-text .char {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    stroke-dashoffset: 0 !important;
  }
}

/* ==========================================================================
   WOW EFFECTS v3 — Mega Menu, Spotlight, Custom Map, 6-grid
   ========================================================================== */

/* MEGA MENU — Mixpanel-style with promo card */
.nav-submenu {
  min-width: 880px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.1fr;
  gap: 28px;
  border-radius: 18px;
  border: 1px solid var(--color-border-strong);
  background: linear-gradient(180deg, #141414 0%, #0F0F0F 100%);
  box-shadow: 0 32px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(125,237,211,0.04) inset;
}
.nav-submenu .nav-sub-group { margin: 0; }
.nav-sub-title {
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--color-mint);
  padding: 0 0 12px 0; margin-bottom: 4px;
  border-bottom: 1px solid var(--color-border);
}
.nav-sub-link {
  display: block; padding: 10px 0; border-radius: 0;
  font-size: 0.95rem; font-weight: 600;
  color: var(--color-cream);
  transition: all 0.2s var(--ease);
}
.nav-sub-link:hover { background: transparent; color: var(--color-mint); transform: translateX(4px); }
.nav-sub-link .nav-sub-desc {
  display: block;
  font-size: 0.78rem; font-weight: 400;
  color: var(--color-text-muted); margin-top: 2px;
  transition: color 0.2s;
}
.nav-sub-link:hover .nav-sub-desc { color: var(--color-text-dim); }

/* Featured promo card in menu */
.nav-sub-promo {
  position: relative;
  padding: 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(125,237,211,0.18) 0%, rgba(255,77,46,0.12) 50%, rgba(125,237,211,0.08) 100%);
  border: 1px solid rgba(125,237,211,0.2);
  overflow: hidden;
  text-decoration: none;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 180px;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.nav-sub-promo::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(125,237,211,0.2), transparent 60%);
  pointer-events: none;
}
.nav-sub-promo:hover { transform: translateY(-3px); border-color: rgba(125,237,211,0.4); }
.nav-sub-promo-tag {
  display: inline-block;
  font-size: 0.65rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(10,10,10,0.4); color: var(--color-mint);
  align-self: flex-start; position: relative; z-index: 1;
}
.nav-sub-promo h6 {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  color: var(--color-cream);
  margin: 14px 0 6px; position: relative; z-index: 1;
}
.nav-sub-promo p {
  font-size: 0.82rem; color: var(--color-text-dim);
  margin: 0; position: relative; z-index: 1;
}
.nav-sub-promo .promo-arrow {
  color: var(--color-mint); font-size: 0.8rem; font-weight: 600;
  margin-top: 12px; position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 6px;
}

@media (max-width: 1100px) {
  .nav-submenu { min-width: 600px; grid-template-columns: 1fr 1fr; }
  .nav-sub-promo { grid-column: span 2; min-height: 120px; }
}

/* SPOTLIGHT EFFECT under sections (Mixpanel-style glow) */
.spotlight-section {
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(125,237,211,0.04) 100%);
}
.spotlight-section::after {
  content: '';
  position: absolute;
  bottom: -120px; left: 50%; transform: translateX(-50%);
  width: 80%; max-width: 1000px; height: 240px;
  background: radial-gradient(ellipse, rgba(125,237,211,0.35) 0%, rgba(125,237,211,0.1) 30%, transparent 60%);
  filter: blur(60px);
  pointer-events: none; z-index: 1;
}
.spotlight-floor {
  position: relative;
  background: var(--color-bg-soft);
  border-radius: 24px;
  padding: clamp(40px, 6vw, 80px) clamp(30px, 4vw, 60px);
  margin: 60px 0;
  overflow: hidden;
}
.spotlight-floor::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 90%; height: 60%;
  background: radial-gradient(ellipse at bottom, rgba(125,237,211,0.18) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.spotlight-floor::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(125,237,211,0.6) 50%, transparent 90%);
  box-shadow: 0 0 16px rgba(125,237,211,0.4);
}
.spotlight-floor > * { position: relative; z-index: 1; }

/* 6-CARD SERVICES GRID (was 4) */
.services-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
@media (max-width: 900px) { .services-grid-6 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid-6 { grid-template-columns: 1fr; } }

/* 8-STEP APPROACH (was 5) */
.steps-8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}
@media (max-width: 1024px) { .steps-8 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .steps-8 { grid-template-columns: 1fr; } }

/* MEGA FOOTER */
.footer-mega .footer-grid {
  grid-template-columns: 1.6fr repeat(5, 1fr);
  gap: 36px;
}
@media (max-width: 1100px) {
  .footer-mega .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .footer-mega .footer-col.col-extra { display: none; }
}
@media (max-width: 800px) { .footer-mega .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-mega .footer-grid { grid-template-columns: 1fr; } }
.footer-mega .footer-col h5 {
  font-size: 0.72rem; letter-spacing: 0.14em;
  color: var(--color-mint); margin-bottom: 16px;
}
.footer-mega .footer-col ul li { margin-bottom: 8px; }
.footer-mega .footer-col a { font-size: 0.88rem; }
.footer-region {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  display: flex; flex-wrap: wrap; gap: 12px;
  font-size: 0.8rem; color: var(--color-text-dim);
}
.footer-region a { color: var(--color-text-dim); }
.footer-region a:hover { color: var(--color-mint); }

/* CUSTOM SVG MAP — for contact page */
.map-art-wrap {
  position: relative;
  margin-top: 60px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--color-border-strong);
  background: var(--color-bg);
  aspect-ratio: 16/9;
  max-height: 560px;
}
.map-art-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(125,237,211,0.08) 0%, transparent 70%);
  pointer-events: none; z-index: 2;
}
.map-art {
  width: 100%; height: 100%;
  display: block;
}
.map-art .road {
  fill: none;
  stroke: var(--color-mint);
  stroke-width: 1.5;
  stroke-linecap: round;
  opacity: 0.45;
  filter: drop-shadow(0 0 4px rgba(125,237,211,0.6));
}
.map-art .road-major {
  stroke-width: 2.5;
  opacity: 0.75;
  filter: drop-shadow(0 0 8px rgba(125,237,211,0.9));
}
.map-art .road-highway {
  stroke-width: 3.5;
  opacity: 0.95;
  filter: drop-shadow(0 0 12px rgba(125,237,211,1));
}
.map-art .water {
  fill: rgba(91,199,174,0.05);
  stroke: rgba(125,237,211,0.2);
  stroke-width: 1;
}
.map-art .building {
  fill: rgba(245,241,235,0.03);
  stroke: rgba(245,241,235,0.08);
  stroke-width: 0.5;
}
.map-art .label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  fill: var(--color-text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.map-art .label-major {
  font-size: 13px;
  fill: var(--color-cream);
}

/* Pulsing pin overlay */
.map-pin {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  z-index: 3;
}
.map-pin-dot {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--color-mint);
  box-shadow: 0 0 0 4px rgba(10,10,10,0.8), 0 0 24px rgba(125,237,211,1);
  z-index: 2;
}
.map-pin-ring1, .map-pin-ring2, .map-pin-ring3 {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--color-mint);
  border-radius: 50%;
  opacity: 0;
}
.map-pin-ring1 { animation: ping 2.4s ease-out infinite; }
.map-pin-ring2 { animation: ping 2.4s ease-out infinite 0.8s; }
.map-pin-ring3 { animation: ping 2.4s ease-out infinite 1.6s; }
@keyframes ping {
  0% { width: 16px; height: 16px; opacity: 0.8; }
  100% { width: 120px; height: 120px; opacity: 0; }
}

.map-overlay {
  position: absolute; bottom: 24px; left: 24px; z-index: 4;
  padding: 20px 24px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-border-strong);
  border-radius: 12px;
  max-width: 340px;
}
.map-overlay h4 { color: var(--color-mint); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 8px; }
.map-overlay .addr { color: var(--color-cream); font-size: 1.02rem; font-weight: 600; line-height: 1.4; }
.map-overlay .meta { color: var(--color-text-dim); font-size: 0.85rem; margin-top: 6px; }
.map-overlay .directions {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  color: var(--color-mint); font-size: 0.85rem; font-weight: 600;
}
.map-overlay .directions:hover { color: var(--color-cream); }

.map-coords {
  position: absolute; top: 24px; right: 24px; z-index: 4;
  font-family: 'Consolas', monospace;
  font-size: 0.72rem;
  color: var(--color-text-muted);
  background: rgba(10,10,10,0.7);
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid var(--color-border);
}
.map-coords .blink {
  display: inline-block; width: 6px; height: 6px;
  background: var(--color-mint); border-radius: 50%;
  margin-right: 6px;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; box-shadow: 0 0 8px var(--color-mint); }
}

/* Animated road draw on load */
.map-art .road-animated {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: map-road-draw 4s ease-out forwards;
}
.map-art .road-animated.delay-1 { animation-delay: 0.2s; }
.map-art .road-animated.delay-2 { animation-delay: 0.5s; }
.map-art .road-animated.delay-3 { animation-delay: 0.9s; }
@keyframes map-road-draw {
  to { stroke-dashoffset: 0; }
}

/* ==========================================================================
   WOW EFFECTS v4 — Apply to all pages
   ========================================================================== */

/* PAGE HERO — Aurora support (same as home hero) */
.page-hero { position: relative; overflow: hidden; }
.page-hero .aurora {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden; pointer-events: none;
}
.page-hero .aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  mix-blend-mode: screen;
  animation: aurora-drift 18s ease-in-out infinite;
  will-change: transform;
}
.page-hero .aurora-blob.b1 {
  width: 50vw; height: 50vw; max-width: 600px; max-height: 600px;
  top: -10%; left: 10%;
  background: radial-gradient(circle, rgba(125, 237, 211, 0.5), transparent 70%);
}
.page-hero .aurora-blob.b2 {
  width: 40vw; height: 40vw; max-width: 500px; max-height: 500px;
  top: 30%; right: -5%;
  background: radial-gradient(circle, rgba(91, 199, 174, 0.4), transparent 70%);
  animation-delay: -6s; animation-duration: 22s;
}
.page-hero .aurora-blob.b3 {
  width: 45vw; height: 45vw; max-width: 550px; max-height: 550px;
  bottom: -25%; left: 30%;
  background: radial-gradient(circle, rgba(255, 77, 46, 0.15), transparent 70%);
  animation-delay: -12s; animation-duration: 26s;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero .hero-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
  opacity: 0.35;
}
.page-hero .hero-svg path {
  fill: none;
  stroke: var(--color-mint);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw-path 3.5s var(--ease) forwards;
  filter: drop-shadow(0 0 8px rgba(125, 237, 211, 0.6));
}
.page-hero .hero-svg path.p2 { animation-delay: 0.8s; }
.page-hero .hero-svg path.p3 { animation-delay: 1.6s; stroke: var(--color-red); filter: drop-shadow(0 0 6px rgba(255, 77, 46, 0.5)); }

/* CARD MOUSE-FOLLOW GLOW (Linear/Mixpanel style) */
.service-card, .case-card, .why-card, .testimonial {
  position: relative;
}
.service-card::after,
.case-card::after,
.why-card::after,
.testimonial::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(125, 237, 211, 0.12),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
  z-index: 0;
}
.service-card:hover::after,
.case-card:hover::after,
.why-card:hover::after,
.testimonial:hover::after { opacity: 1; }
.service-card > *, .case-card > *, .why-card > *, .testimonial > * { position: relative; z-index: 1; }

/* COUNT-UP STATS — initial styling */
.hero-stat .num { transition: color 0.3s; }
.hero-stat[data-counting="true"] .num { color: var(--color-mint); }

/* FLOATING AMBIENT ORBS */
.ambient-orbs {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
  z-index: 0;
}
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 237, 211, 0.18), transparent 65%);
  filter: blur(40px);
  animation: orb-float 24s ease-in-out infinite;
  will-change: transform;
}
.ambient-orb.o1 { width: 280px; height: 280px; top: 10%; left: 5%; animation-delay: 0s; }
.ambient-orb.o2 { width: 220px; height: 220px; top: 50%; right: 8%; animation-delay: -8s; animation-duration: 28s; background: radial-gradient(circle, rgba(91,199,174,0.18), transparent 65%); }
.ambient-orb.o3 { width: 320px; height: 320px; bottom: 8%; left: 35%; animation-delay: -16s; animation-duration: 32s; background: radial-gradient(circle, rgba(255,77,46,0.08), transparent 65%); }
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(8%, -6%) scale(1.15); }
  66% { transform: translate(-6%, 8%) scale(0.9); }
}

/* SECTION with ambient orbs — set position: relative on parent */
.section, .section-tight { position: relative; z-index: 0; }
.section > .container, .section-tight > .container { position: relative; z-index: 1; }

/* CARD GLOW LIFT — enhanced hover */
.service-card:hover, .case-card:hover, .why-card:hover {
  box-shadow: 0 24px 60px -20px rgba(125, 237, 211, 0.25),
              0 0 0 1px rgba(125, 237, 211, 0.15);
}

/* APPROACH STEPS — number color shift on hover */
.steps-8 .step { transition: all 0.3s var(--ease); }
.steps-8 .step:hover { background: var(--color-bg); transform: translateY(-4px); }
.steps-8 .step:hover .step-num { color: var(--color-mint); }
.steps-8 .step:hover h4 { color: var(--color-mint); }
.steps-8 .step:hover p { color: var(--color-text-dim); }

/* SPOTLIGHT ON FORMS — focused input gets mint glow */
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  box-shadow: 0 0 0 3px rgba(125, 237, 211, 0.15),
              0 0 24px rgba(125, 237, 211, 0.1);
}

/* GRADIENT BORDER on featured cards (cta-banner) */
.cta-banner {
  position: relative;
  background:
    linear-gradient(var(--color-bg-soft), var(--color-bg-soft)) padding-box,
    linear-gradient(135deg, rgba(125,237,211,0.4), rgba(255,77,46,0.2), rgba(125,237,211,0.4)) border-box;
  border: 1px solid transparent;
}
.cta-banner::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70%; height: 200%;
  background: radial-gradient(ellipse, rgba(125, 237, 211, 0.18) 0%, transparent 60%);
  filter: blur(60px); pointer-events: none;
}

/* PAGE-HERO eyebrow glow boost */
.page-hero .eyebrow {
  background: rgba(125, 237, 211, 0.08);
  box-shadow: 0 0 24px rgba(125, 237, 211, 0.08);
}

/* SUBTLE GRADIENT TEXT for big headings on interior pages */
.page-hero h1 .text-mint,
.page-hero h1 span[style*="color"] {
  background: linear-gradient(135deg, var(--color-mint) 0%, #5BC7AE 50%, var(--color-mint) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 6s ease infinite;
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ==========================================================================
   FORM STATES — async submit feedback
   ========================================================================== */
.form-field input.error,
.form-field textarea.error,
.form-field select.error {
  border-color: var(--color-red);
  background: rgba(255, 77, 46, 0.05);
}

.form-status {
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  display: none;
}
.form-status.sending,
.form-status.success,
.form-status.error { display: block; }

.form-status.sending {
  background: rgba(245, 241, 235, 0.04);
  border: 1px solid var(--color-border);
  color: var(--color-text-dim);
}
.form-status.success {
  background: rgba(125, 237, 211, 0.08);
  border: 1px solid rgba(125, 237, 211, 0.3);
  color: var(--color-mint);
  font-weight: 500;
  position: relative;
  padding-left: 50px;
}
.form-status.success::before {
  content: '✓';
  position: absolute;
  left: 16px; top: 50%;
  transform: translate(-50%, -50%);
  width: 28px; height: 28px;
  background: var(--color-mint);
  color: var(--color-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-left: 14px;
  box-shadow: 0 0 16px rgba(125,237,211,0.5);
}
.form-status.error {
  background: rgba(255, 77, 46, 0.08);
  border: 1px solid rgba(255, 77, 46, 0.3);
  color: var(--color-red);
}

button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
