/* ============================================================
   Wexio Media — Shared Stylesheet  (premium 3D edition)
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --green:        #7fffb2;
  --green-dark:   #00c864;
  --green-glow:   rgba(127, 255, 178, 0.18);
  --blue:         #50c8ff;
  --blue-dark:    #0099e6;
  --blue-glow:    rgba(80, 200, 255, 0.18);
  --purple:       #a78bfa;

  --bg-base:      #080808;
  --bg-lift1:     #0a0a0a;
  --bg-lift2:     #0d0d0d;
  --bg-lift3:     #111111;
  --bg-card:      #111111;
  --bg-card-alt:  #0f0f0f;
  --bg-input:     #0f0f0f;

  --border:       rgba(255,255,255,0.06);
  --border-mid:   rgba(255,255,255,0.10);
  --border-light: rgba(255,255,255,0.16);

  --text-primary:  #ffffff;
  --text-secondary:rgba(255,255,255,0.60);
  --text-muted:    rgba(255,255,255,0.35);
  --text-label:    rgba(255,255,255,0.40);

  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --transition: 0.25s cubic-bezier(0.44, 0, 0.56, 1);
  --shadow-green: 0 0 24px rgba(127,255,178,0.20), 0 0 60px rgba(127,255,178,0.08);
  --shadow-blue:  0 0 24px rgba(80,200,255,0.20),  0 0 60px rgba(80,200,255,0.08);
  --shadow-card:  16px 24px 40px 8px rgba(0,0,0,0.55), inset 0px 1px 0px 0px rgba(255,255,255,0.06);
}

/* ---------- Custom Cursor ---------- */
* { cursor: none !important; }

.cursor-blob {
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  background: rgb(230, 230, 230);
  border-radius: 40px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px 4px rgba(196, 196, 196, 0.3);
  transition: width 0.3s cubic-bezier(0.23,1,0.32,1),
              height 0.3s cubic-bezier(0.23,1,0.32,1),
              background 0.3s,
              box-shadow 0.3s,
              opacity 0.2s;
  will-change: transform;
}

/* Hover over links/buttons — expand to pill */
body.cursor-hover .cursor-blob {
  width: 48px;
  height: 48px;
  background: rgba(99, 99, 99, 0.3);
  box-shadow: 0 0 20px 4px rgba(92, 92, 92, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(214, 214, 214, 0.4);
}

/* Click */
body.cursor-click .cursor-blob {
  width: 8px; height: 8px;
  background: rgb(255, 255, 255);
}

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

html { scroll-behavior: smooth; }

/* ── Page load entrance animation ── */
html.page-loading { overflow: hidden; }

html.page-loading body {
  opacity: 0;
  transform: translateY(12px);
}

html.page-loaded body {
  animation: siteReveal 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes siteReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered hero content animation */
.hero-badge    { animation: fadeUp 0.5s 0.3s cubic-bezier(0.22,1,0.36,1) both; }
.hero h1       { animation: fadeUp 0.5s 0.42s cubic-bezier(0.22,1,0.36,1) both; }
.hero-sub      { animation: fadeUp 0.5s 0.52s cubic-bezier(0.22,1,0.36,1) both; }
.hero-ctas     { animation: fadeUp 0.5s 0.62s cubic-bezier(0.22,1,0.36,1) both; }
.hero-stats    { animation: fadeUp 0.5s 0.72s cubic-bezier(0.22,1,0.36,1) both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.15rem; font-weight: 600; }

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

.text-green  { color: var(--green); }
.text-blue   { color: var(--blue); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.text-small  { font-size: 0.875rem; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(127,255,178,0.08);
  border: 1px solid rgba(127,255,178,0.22);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

/* ---------- Section Utilities ---------- */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 128px 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Background variants */
.bg-base    { background: var(--bg-base); }
.bg-lift1   { background: var(--bg-lift1); }
.bg-lift2   { background: var(--bg-lift2); }
.bg-lift3   { background: var(--bg-lift3); }

.bg-green-wash {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(127,255,178,0.05) 0%, transparent 65%),
              var(--bg-lift2);
}
.bg-blue-wash {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(80,200,255,0.04) 0%, transparent 65%),
              var(--bg-lift1);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(180deg, #ffffff 0%, #a0a0a0 160%);
  color: #080808;
  padding: 13px 28px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset;
}
.btn-primary:hover {
  background: linear-gradient(180deg, #ffffff 0%, #c0c0c0 160%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 1px 0 rgba(255,255,255,0.12) inset;
}

.btn-secondary {
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  color: var(--text-primary);
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(5px);
}
.btn-secondary:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.13) 0%, rgba(255,255,255,0.05) 100%);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.btn-blue {
  background: linear-gradient(180deg, #ffffff 0%, #a0a0a0 160%);
  color: #080808;
  padding: 13px 28px;
}
.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.btn-cta {
  font-size: 1.05rem;
  padding: 16px 36px;
}

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

/* ---------- Magnetic Button ---------- */
.btn-magnetic {
  position: relative;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: inset 0px 1px 0px 0px rgba(255,255,255,0.06);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: 16px 24px 40px 8px rgba(0,0,0,0.5), inset 0px 1px 0px 0px rgba(255,255,255,0.08);
}
.card-green {
  border-color: rgba(127,255,178,0.2);
}
.card-green:hover {
  border-color: rgba(127,255,178,0.45);
  box-shadow: var(--shadow-green), var(--shadow-card);
}
.card-blue {
  border-color: rgba(80,200,255,0.2);
}
.card-blue:hover {
  border-color: rgba(80,200,255,0.45);
  box-shadow: var(--shadow-blue), var(--shadow-card);
}
.card-featured {
  background: linear-gradient(145deg, #101026 0%, #0d1a14 100%);
  border: 1.5px solid rgba(127,255,178,0.35);
  box-shadow: var(--shadow-green);
  position: relative;
}

/* ---------- 3D Card Tilt ---------- */
.card-3d {
  transform-style: preserve-3d;
  transition: transform 0.15s ease;
  will-change: transform;
  position: relative;
}
.card-3d-inner {
  transform-style: preserve-3d;
}
.card-3d .card-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.card-3d:hover .card-shine { opacity: 1; }

/* ---------- Glow Cards ---------- */
.glow-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
}
.glow-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(127,255,178,0.3), rgba(80,200,255,0.1), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.glow-card:hover::before { opacity: 1; }

/* ---------- Scroll Reveal ---------- */

/* 1. Fade + rise (default) */
.reveal {
  opacity: 0;
  transform: translateY(64px);
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
/* 2. Slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
/* 3. Slide from right */
.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
/* 4. Scale + fade */
.reveal-scale {
  opacity: 0;
  transform: scale(0.82) translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1), transform 0.85s cubic-bezier(0.22,1,0.36,1);
}

/* Visible states */
.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible  { opacity: 1; transform: translate(0); }
.reveal-scale.is-visible  { opacity: 1; transform: scale(1) translateY(0); }

.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }
.reveal-delay-4 { transition-delay: 0.46s; }
.reveal-delay-5 { transition-delay: 0.58s; }

/* ---------- Gradient Text ---------- */
.grad-text {
  background: linear-gradient(135deg, var(--green) 0%, #a0ffd0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-text-2 {
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Grid Background ---------- */
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(127,255,178,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127,255,178,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.grid-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, transparent 0%, var(--bg-base) 100%);
}

/* ---------- Marquee ---------- */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
}
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrapper::before { left: 0; background: linear-gradient(90deg, var(--bg-lift2), transparent); }
.marquee-wrapper::after  { right: 0; background: linear-gradient(-90deg, var(--bg-lift2), transparent); }

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Featured Pricing Card — Green Glow Border ---------- */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 0 1.5px rgba(127,255,178,0.4), 0 0 24px rgba(127,255,178,0.12), inset 0px 1px 0px 0px rgba(127,255,178,0.12); }
  50%       { box-shadow: 0 0 0 1.5px rgba(127,255,178,0.7), 0 0 40px rgba(127,255,178,0.20), inset 0px 1px 0px 0px rgba(127,255,178,0.18); }
}
.pricing-card.featured {
  border: 1.5px solid rgba(127,255,178,0.45);
  animation: glow-pulse 3s ease-in-out infinite;
  background: linear-gradient(160deg, #0d1a10 0%, var(--bg-card) 60%);
}

/* ---------- Counter Animation ---------- */
.count-up { font-variant-numeric: tabular-nums; }

/* ---------- Typed cursor ---------- */
.typed-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--green);
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ---------- Icon Boxes ---------- */
.icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.icon-box-green {
  background: rgba(127,255,178,0.1);
  border: 1px solid rgba(127,255,178,0.2);
}
.icon-box-blue {
  background: rgba(80,200,255,0.1);
  border: 1px solid rgba(80,200,255,0.2);
}

/* ---------- Divider ---------- */
.divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}

/* ---------- Badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}
.badge-green {
  background: rgba(127,255,178,0.1);
  color: var(--green);
  border: 1px solid rgba(127,255,178,0.25);
}
.badge-blue {
  background: rgba(80,200,255,0.1);
  color: var(--blue);
  border: 1px solid rgba(80,200,255,0.25);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 48px);
  max-width: 1160px;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  background: rgba(11,11,11,0.75);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  transition: background var(--transition), border-color var(--transition);
}

.nav-scrolled {
  background: rgba(11,11,11,0.92) !important;
  border-color: rgba(255,255,255,0.12) !important;
}

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(127,255,178,0.7);
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-wordmark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-primary);
  letter-spacing: -0.04em;
}
.logo-wordmark .acc {
  color: var(--green);
}
.logo-sub {
  font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: rgba(127,255,178,0.55);
  text-transform: uppercase;
  margin-top: 2px;
  padding-left: 1px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  padding: 7px 16px;
  border-radius: 100px;
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}
.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.07);
}
.nav-links a.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.10);
}

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Mobile hamburger (hidden by default) */
.nav-hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border-mid);
  color: var(--text-primary);
  cursor: pointer;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  transition: border-color var(--transition);
}
.nav-hamburger:hover { border-color: var(--green); }

/* ============================================================
   HERO — full-screen cinematic
   ============================================================ */
.hero {
  min-height: 100svh;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--bg-base);
}

/* ---------- Hero two-column layout ---------- */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 64px;
}
.hero-visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Floating glassmorphism cards */
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 18px 22px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 16px 24px 40px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.08);
  min-width: 220px;
  pointer-events: none;
}
.hero-float-card-1 {
  top: 30px;
  right: 0;
  animation: float-1 6s ease-in-out infinite;
}
.hero-float-card-2 {
  bottom: 40px;
  left: 0;
  animation: float-2 7s ease-in-out infinite;
}
@keyframes float-1 {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50%       { transform: translateY(-16px) rotate(-1deg); }
}
@keyframes float-2 {
  0%, 100% { transform: translateY(0px) rotate(1.5deg); }
  50%       { transform: translateY(-12px) rotate(1.5deg); }
}

/* Card 1 — "Live gegaan" notification */
.fc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.fc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(127,255,178,0.8);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
.fc-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}
.fc-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.fc-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.40);
}

/* Card 2 — Review card */
.fc-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.fc-quote {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin-bottom: 12px;
  font-style: italic;
}
.fc-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fc-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #080808;
  flex-shrink: 0;
}
.fc-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
}
.fc-biz {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
}

/* Glow orb behind the cards */
.hero-glow-orb {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127,255,178,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: blur(20px);
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-lift2);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.7;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-label);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--text-primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--green); }
.footer-bottom a:hover { text-decoration: underline; }

/* Mobile footer quick-links row (hidden by default) */
.footer-mobile-row {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px 0 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-mobile-row a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-mobile-row a:hover { color: var(--text-primary); }
.footer-mobile-row span { color: var(--text-muted); }

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-label);
}
.form-label .optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-muted);
  font-size: 0.7rem;
  margin-left: 4px;
}

.form-input,
.form-select,
.form-textarea {
  background: var(--bg-input);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  padding: 13px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(127,255,178,0.12);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2360607a' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-select option { background: #0d0d1a; color: var(--text-primary); }

.form-textarea { resize: vertical; min-height: 110px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── Tablet ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ── Mobile nav + layout ── */
@media (max-width: 768px) {

  /* Hamburger visible */
  .nav-hamburger { display: flex; align-items: center; justify-content: center; }

  /* Hide desktop CTA button in nav */
  .nav-cta .btn { display: none; }

  /* Mobile nav drawer — slides down from fixed nav */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 88px;
    left: 24px;
    right: 24px;
    background: rgba(11,11,11,0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 12px 16px 20px;
    gap: 2px;
    z-index: 99;
    /* hidden state */
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: var(--radius-md);
    width: 100%;
  }

  /* CTA button at bottom of mobile menu */
  .nav-links::after {
    content: '';
    display: block;
    height: 1px;
    background: var(--border);
    margin: 10px 0;
  }

  /* Typography */
  h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  h3 { font-size: 1.2rem; }

  /* Sections */
  .section    { padding: 56px 0; }
  .section-sm { padding: 40px 0; }
  .section-lg { padding: 72px 0; }

  /* Buttons */
  .btn-cta {
    font-size: 0.95rem;
    padding: 14px 24px;
  }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ── Small phones ── */
@media (max-width: 540px) {
  .container { padding: 0 16px; }
  .container-narrow { padding: 0 16px; }

  h1 { font-size: clamp(1.8rem, 9vw, 2.4rem); }

  .section    { padding: 48px 0; }
  .section-sm { padding: 32px 0; }

  .hero-ctas  { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

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

  .footer { padding: 32px 0 0; }
  .footer-grid { display: none; }
  .footer-mobile-row { display: flex; }
  .footer-bottom { border-top: 1px solid var(--border); padding: 16px 0; justify-content: center; flex-direction: column; align-items: center; gap: 8px; }
}

/* ============================================================
   AURORA ANIMATION (Hero blobs)
   ============================================================ */
@keyframes aurora-float-1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(40px,-30px) scale(1.08); }
  66%      { transform: translate(-20px, 20px) scale(0.96); }
}
@keyframes aurora-float-2 {
  0%,100% { transform: translate(0,0) scale(1); }
  40%      { transform: translate(-50px, 25px) scale(1.1); }
  70%      { transform: translate(30px,-40px) scale(0.94); }
}
@keyframes aurora-float-3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(25px, 35px) scale(1.06); }
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
  will-change: transform;
}
.aurora-1 {
  width: 600px; height: 500px;
  background: radial-gradient(circle, rgba(127,255,178,0.55) 0%, transparent 70%);
  top: -120px; left: -100px;
  animation: aurora-float-1 12s ease-in-out infinite;
}
.aurora-2 {
  width: 500px; height: 450px;
  background: radial-gradient(circle, rgba(80,200,255,0.5) 0%, transparent 70%);
  top: -60px; right: -80px;
  animation: aurora-float-2 15s ease-in-out infinite;
}
.aurora-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(127,255,178,0.35) 0%, transparent 70%);
  top: 300px; right: 200px;
  animation: aurora-float-3 18s ease-in-out infinite;
}

/* ============================================================
   MISC UTILITIES
   ============================================================ */
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Scroll-margin for fixed nav */
[id] { scroll-margin-top: 80px; }

/* Highlight span */
.hl-green {
  color: var(--green);
  position: relative;
}
.hl-blue { color: var(--blue); }

/* Checkmark list */
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.check-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(127,255,178,0.12);
  border: 1px solid rgba(127,255,178,0.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%237fffb2' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Stars */
.stars {
  display: flex;
  gap: 3px;
  color: #fbbf24;
  font-size: 1rem;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

.portfolio-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}
.portfolio-card:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--border-light);
}
.portfolio-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.portfolio-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}
.portfolio-card:hover .portfolio-img img { transform: scale(1.04); }

/* Portfolio overlay — slides up from bottom */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3,3,8,0.75);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  backdrop-filter: blur(2px);
}
.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
  transform: translateY(0);
}
.portfolio-visit {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 10px 22px;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
}
.portfolio-img-placeholder {
  width: 100%; height: 220px;
  background: linear-gradient(135deg, var(--c2) 0%, color-mix(in srgb, var(--c2) 80%, var(--c1)) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.placeholder-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 5rem;
  color: var(--c1);
  opacity: 0.35;
  letter-spacing: -3px;
  user-select: none;
}
.portfolio-info {
  padding: 18px 20px;
}
.portfolio-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.portfolio-type {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Noise overlay (subtle texture — stronger) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
}
