/* ============================================================
   ROOTCODE LLC — Terminal-Earth 3D Design System
   ============================================================ */

:root {
  --color-primary: #051410;
  --color-secondary: #0E5C4A;
  --color-accent: #2BE68A;
  --color-highlight: #C8A85A;
  --color-bg: #020A08;
  --color-surface: #0A1F1A;
  --color-text: #DFF5EC;
  --color-white: #FFFFFF;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-body: 'Inter', sans-serif;
  --shadow-3d: 0 4px 8px rgba(43,230,138,.08), 0 12px 32px rgba(14,92,74,.24), 0 32px 64px rgba(2,10,8,.62);
  --glow-phosphor: 0 0 14px rgba(43,230,138,.40), 0 0 32px rgba(14,92,74,.16);
  --radius: 10px;
  --transition: all .4s cubic-bezier(.23,1,.32,1);
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; }

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

/* ---- Terminal grid background overlay ---- */
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(43,230,138,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43,230,138,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 100%);
  z-index: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: .92rem; font-weight: 600;
  padding: 15px 30px; border-radius: var(--radius);
  cursor: pointer; border: none; transition: var(--transition);
  transform-style: preserve-3d; letter-spacing: .01em;
}
.btn-primary {
  background: var(--color-accent); color: var(--color-primary);
  box-shadow: var(--glow-phosphor);
}
.btn-primary:hover {
  transform: translateY(-3px) translateZ(6px);
  box-shadow: 0 0 22px rgba(43,230,138,.6), 0 0 48px rgba(43,230,138,.25);
}
.btn-primary:active { transform: translateZ(-4px); box-shadow: 0 0 8px rgba(43,230,138,.3); }
.btn-secondary {
  background: transparent; color: var(--color-highlight);
  border: 1px solid rgba(43,230,138,.45);
  box-shadow: inset 0 0 0 1px rgba(43,230,138,.05), 0 0 14px rgba(43,230,138,.12);
}
.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent);
  box-shadow: 0 0 18px rgba(43,230,138,.35);
}
.btn-lg { padding: 18px 40px; font-size: 1rem; }

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; position: relative; z-index: 2; }
.mono-label {
  font-family: var(--font-mono); color: var(--color-accent);
  font-size: .85rem; letter-spacing: .06em; display: inline-block; margin-bottom: 14px;
  text-shadow: 0 0 10px rgba(43,230,138,.5);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem); position: relative; display: inline-block;
  text-shadow: 0 1px 0 #06251c, 0 2px 0 #052018, 0 4px 8px rgba(2,10,8,.7), 0 0 26px rgba(43,230,138,.12);
}
.section-title::after {
  content: ""; display: block; width: 68px; height: 3px; margin: 18px auto 0;
  background: var(--color-accent); border-radius: 3px;
  box-shadow: 0 0 12px rgba(43,230,138,.7);
}
.section-sub { color: rgba(223,245,236,.7); margin-top: 18px; font-size: 1.05rem; }

/* ============================================================
   3D PRIMITIVES
   ============================================================ */
.text-3d {
  text-shadow:
    0 1px 0 #073024, 0 2px 0 #062a20, 0 3px 0 #05231b,
    0 4px 0 #041d16, 0 6px 14px rgba(2,10,8,.7), 0 0 34px rgba(43,230,138,.18);
}

.term-glass {
  background: rgba(10,31,26,.55);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(43,230,138,.16);
  box-shadow: inset 0 1px 0 rgba(43,230,138,.12), var(--shadow-3d);
  border-radius: var(--radius);
}

.glow-border {
  border: 1px solid rgba(43,230,138,.4);
  box-shadow: 0 0 14px rgba(43,230,138,.22), inset 0 0 12px rgba(43,230,138,.05);
}

.card-3d {
  transform-style: preserve-3d; perspective: 1000px;
  transition: var(--transition); will-change: transform;
}
.card-3d:hover {
  transform: rotateX(-5deg) rotateY(8deg) translateZ(20px);
  box-shadow: 0 20px 50px rgba(2,10,8,.7), 0 0 30px rgba(43,230,138,.3);
}

.layer-float { box-shadow: var(--shadow-3d); transition: var(--transition); }
.layer-float:hover { transform: translateY(-8px) translateZ(12px); box-shadow: 0 24px 54px rgba(2,10,8,.72), 0 0 24px rgba(43,230,138,.22); }

/* ---- Node particles (circuit-root diamonds) ---- */
.node-particle {
  position: absolute; width: 14px; height: 14px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  box-shadow: 0 0 12px rgba(43,230,138,.7);
  animation: nodeFloat 7s ease-in-out infinite; z-index: 1; opacity: .8;
}

/* ---- Console glow radial pulse ---- */
.console-glow {
  position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(43,230,138,.16) 0%, rgba(14,92,74,.06) 45%, transparent 70%);
  animation: consolePulse 6s ease-in-out infinite; pointer-events: none; z-index: 0;
}

/* ---- Scanline shimmer ---- */
.shimmer-code {
  position: relative; overflow: hidden;
}
.shimmer-code::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(43,230,138,.18) 50%, transparent 70%);
  background-size: 250% 100%;
  animation: codeShimmer 3s linear infinite; pointer-events: none;
}

.cursor-blink {
  display: inline-block; width: 9px; height: 1.05em; margin-left: 3px;
  background: var(--color-accent); vertical-align: -2px;
  animation: blink 1.05s steps(1) infinite; box-shadow: 0 0 8px rgba(43,230,138,.7);
}

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: .82rem; color: var(--color-text);
  padding: 9px 16px; border-radius: 40px;
  border: 1px solid rgba(43,230,138,.4);
  box-shadow: 0 0 12px rgba(43,230,138,.18), inset 0 0 10px rgba(43,230,138,.04);
  background: rgba(10,31,26,.4);
}
.badge i { color: var(--color-accent); }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes float3d {
  0%,100% { transform: translateY(0) translateZ(0) rotateX(0deg); }
  50% { transform: translateY(-16px) translateZ(18px) rotateX(4deg); }
}
@keyframes nodeFloat {
  0%,100% { transform: translateY(0) rotate(0deg); opacity: .8; }
  50% { transform: translateY(-24px) rotate(45deg); opacity: 1; }
}
@keyframes consolePulse {
  0%,100% { transform: scale(1); opacity: .55; }
  50% { transform: scale(1.25); opacity: .9; }
}
@keyframes codeShimmer {
  0% { background-position: 250% 0; }
  100% { background-position: -50% 0; }
}
@keyframes blink { 0%,50% { opacity: 1; } 51%,100% { opacity: 0; } }
@keyframes rotateYloop {
  0% { transform: rotateY(-12deg) rotateX(6deg); }
  50% { transform: rotateY(12deg) rotateX(6deg); }
  100% { transform: rotateY(-12deg) rotateX(6deg); }
}
@keyframes dataFlow {
  0% { background-position: 0 0; }
  100% { background-position: 40px 0; }
}
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(43,230,138,.5); }
  70% { box-shadow: 0 0 0 18px rgba(43,230,138,0); }
  100% { box-shadow: 0 0 0 0 rgba(43,230,138,0); }
}
@keyframes floatanim {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.float3d { animation: float3d 8s ease-in-out infinite; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(2,10,8,.72);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43,230,138,.12);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(2,10,8,.9);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 30px rgba(2,10,8,.6), 0 0 20px rgba(43,230,138,.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; color: var(--color-text); }
.brand-name span { color: var(--color-accent); }
.brand-sub { font-family: var(--font-mono); font-size: .7rem; color: rgba(43,230,138,.65); margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--font-mono); font-size: .9rem; color: var(--color-text);
  position: relative; transition: var(--transition); padding: 6px 0;
}
.nav-links a:not(.nav-cta):hover { color: var(--color-accent); transform: translateY(-2px); }
.nav-links a:not(.nav-cta).active { color: var(--color-accent); }
.nav-links a:not(.nav-cta).active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--color-accent); border-radius: 2px; box-shadow: 0 0 8px rgba(43,230,138,.8);
}
.nav-cta {
  background: var(--color-accent); color: var(--color-primary) !important;
  padding: 10px 20px !important; border-radius: var(--radius);
  box-shadow: var(--glow-phosphor); font-weight: 600;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 20px rgba(43,230,138,.6); }
.nav-toggle { display: none; background: none; border: none; color: var(--color-accent); font-size: 1.5rem; cursor: pointer; }

/* Mobile panel */
.mobile-panel {
  position: fixed; top: 74px; right: 0; width: min(80vw, 320px); height: calc(100vh - 74px);
  background: rgba(2,10,8,.96); backdrop-filter: blur(20px);
  border-left: 1px solid rgba(43,230,138,.2);
  transform: translateX(105%); transition: transform .4s cubic-bezier(.23,1,.32,1);
  z-index: 99; padding: 32px 26px; display: flex; flex-direction: column; gap: 20px;
}
.mobile-panel.open { transform: translateX(0); }
.mobile-panel a { font-family: var(--font-mono); font-size: 1.05rem; color: var(--color-text); }
.mobile-panel a.active { color: var(--color-accent); }
.mobile-panel .nav-cta { text-align: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100dvh; display: flex; align-items: center;
  background: radial-gradient(ellipse 90% 80% at 50% 30%, #07211a 0%, var(--color-bg) 70%);
  overflow: hidden; perspective: 1200px;
}
.hero-compact { min-height: 60vh; padding: 120px 0 80px; }
.hero-content { position: relative; z-index: 3; max-width: 760px; }
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem); margin: 18px 0 22px;
}
.hero-sub { font-size: 1.18rem; color: var(--color-accent); max-width: 620px; margin-bottom: 34px; text-shadow: 0 0 14px rgba(43,230,138,.25); }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Node graph decorative panels */
.node-graph {
  position: absolute; right: 4%; top: 50%; transform: translateY(-50%);
  width: 340px; height: 360px; z-index: 2; transform-style: preserve-3d;
  animation: rotateYloop 14s ease-in-out infinite; perspective: 900px;
}
.node-graph .gpanel {
  position: absolute; border-radius: var(--radius); padding: 20px;
}
.gpanel-1 { inset: 40px 0 auto 0; height: 130px; transform: translateZ(60px); }
.gpanel-2 { top: 120px; left: 40px; right: 20px; height: 130px; transform: translateZ(20px); }
.gpanel-3 { bottom: 20px; left: 10px; right: 40px; height: 120px; transform: translateZ(90px); }
.gpanel .gline { font-family: var(--font-mono); font-size: .78rem; color: rgba(43,230,138,.7); margin-bottom: 8px; }
.gpanel .gbar { height: 6px; border-radius: 4px; background: linear-gradient(90deg, var(--color-accent), transparent); margin-bottom: 8px; }
.gpanel .gbar:nth-child(3) { width: 70%; opacity: .6; }
.gpanel .gbar:nth-child(4) { width: 45%; opacity: .4; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { background: var(--color-surface); padding: 44px 0; border-top: 1px solid rgba(43,230,138,.08); border-bottom: 1px solid rgba(43,230,138,.08); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat-card { text-align: center; padding: 26px 18px; border-radius: var(--radius); }
.stat-num { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--color-accent); text-shadow: 0 0 16px rgba(43,230,138,.4); }
.stat-label { font-family: var(--font-mono); font-size: .82rem; color: rgba(223,245,236,.75); margin-top: 6px; }

/* ============================================================
   GRIDS / CARDS
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; z-index: 2; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.svc-card { padding: 34px 28px; position: relative; }
.svc-icon {
  width: 62px; height: 62px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(43,230,138,.08); border: 1px solid rgba(43,230,138,.25);
  color: var(--color-accent); font-size: 1.5rem; margin-bottom: 20px;
  box-shadow: 0 0 18px rgba(43,230,138,.18);
}
.svc-card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.svc-card p { color: rgba(223,245,236,.72); font-size: .98rem; margin-bottom: 18px; }
.svc-link { font-family: var(--font-mono); color: var(--color-accent); font-size: .88rem; display: inline-flex; gap: 6px; transition: var(--transition); }
.svc-link:hover { gap: 12px; }

/* Why choose */
.why-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why-wrap h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 20px; }
.why-wrap > div > p { color: rgba(223,245,236,.75); margin-bottom: 18px; }
.owner-line { font-family: var(--font-mono); color: var(--color-highlight); border-left: 2px solid var(--color-accent); padding-left: 16px; font-size: .95rem; }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feat-item { display: flex; gap: 12px; align-items: flex-start; padding: 18px; border-radius: var(--radius); }
.feat-item i { color: var(--color-accent); font-size: 1.15rem; margin-top: 3px; }
.feat-item span { font-size: .93rem; }

/* Testimonials */
.test-card { padding: 32px 28px; position: relative; z-index: 2; }
.test-stars { color: var(--color-accent); margin-bottom: 16px; letter-spacing: 3px; text-shadow: 0 0 10px rgba(43,230,138,.5); }
.test-quote { font-size: 1.02rem; margin-bottom: 20px; color: rgba(223,245,236,.9); }
.test-name { font-family: var(--font-heading); font-weight: 700; }
.test-loc { font-family: var(--font-mono); color: var(--color-highlight); font-size: .82rem; margin-top: 2px; }

/* CTA banner */
.cta-banner {
  position: relative; overflow: hidden; text-align: center;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, #08251d 0%, var(--color-bg) 75%);
  padding: 100px 0;
}
.cta-banner h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin: 16px 0 30px; position: relative; z-index: 3; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--color-primary); border-top: 1px solid rgba(43,230,138,.14); padding: 64px 0 30px; position: relative; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer .brand-name { font-size: 1.4rem; }
.footer-tag { font-family: var(--font-mono); color: var(--color-accent); font-size: .9rem; margin: 14px 0; }
.footer-owner { color: rgba(223,245,236,.6); font-size: .9rem; }
.footer h4 { font-family: var(--font-mono); font-size: .85rem; color: var(--color-highlight); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; color: rgba(223,245,236,.72); font-size: .92rem; margin-bottom: 12px; transition: var(--transition); }
.footer-col a:hover { color: var(--color-accent); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(43,230,138,.1); padding-top: 24px; text-align: center; font-family: var(--font-mono); font-size: .8rem; color: rgba(223,245,236,.5); }

/* ============================================================
   PROCESS TIMELINE (services)
   ============================================================ */
.timeline { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
.timeline::before {
  content: ""; position: absolute; top: 40px; left: 12%; right: 12%; height: 2px;
  border-top: 2px dashed rgba(43,230,138,.4);
  background-image: linear-gradient(90deg, rgba(43,230,138,.5) 50%, transparent 50%);
  background-size: 40px 2px; animation: dataFlow 1.5s linear infinite;
}
.step-card { padding: 28px 22px; text-align: center; position: relative; z-index: 2; }
.step-num { font-family: var(--font-mono); color: var(--color-accent); font-size: .95rem; margin-bottom: 14px; }
.step-icon { width: 54px; height: 54px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center; background: var(--color-surface); border: 1px solid rgba(43,230,138,.35); color: var(--color-accent); font-size: 1.2rem; box-shadow: 0 0 18px rgba(43,230,138,.2); }
.step-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step-card p { font-size: .88rem; color: rgba(223,245,236,.68); }

/* ============================================================
   ABOUT
   ============================================================ */
.story-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.story-wrap p { color: rgba(223,245,236,.78); margin-bottom: 18px; }
.owner-card { padding: 40px 36px; margin: 0 auto; max-width: 820px; text-align: center; }
.owner-card .mono-label { margin-bottom: 18px; }
.owner-card h3 { font-size: 1.6rem; margin-bottom: 16px; }
.owner-card p { color: rgba(223,245,236,.82); font-size: 1.05rem; }
.value-card { padding: 30px 24px; text-align: center; }
.value-card i { color: var(--color-accent); font-size: 1.8rem; margin-bottom: 16px; text-shadow: 0 0 14px rgba(43,230,138,.4); }
.value-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.value-card p { font-size: .9rem; color: rgba(223,245,236,.7); }
.team-card { padding: 32px 26px; text-align: center; }
.avatar { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center; font-family: var(--font-heading); font-weight: 700; font-size: 1.9rem; color: var(--color-accent); background: linear-gradient(145deg, var(--color-primary), var(--color-secondary)); box-shadow: var(--shadow-3d), 0 0 20px rgba(43,230,138,.2); }
.team-card h3 { font-size: 1.2rem; }
.team-role { font-family: var(--font-mono); color: var(--color-highlight); font-size: .82rem; margin-top: 4px; }
.badge-wrap { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; align-items: start; }
.info-row { display: flex; gap: 16px; align-items: flex-start; padding: 20px 22px; border-radius: var(--radius); margin-bottom: 16px; }
.info-row i { color: var(--color-accent); font-size: 1.3rem; margin-top: 3px; width: 26px; text-align: center; }
.info-row .lbl { font-family: var(--font-mono); font-size: .76rem; color: var(--color-highlight); text-transform: uppercase; letter-spacing: .06em; }
.info-row .val { font-size: .98rem; }

/* Forms */
.form-panel { padding: 38px 34px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: block; font-family: var(--font-mono); font-size: .82rem; color: rgba(223,245,236,.85); margin-bottom: 8px; }
input, select, textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--radius);
  background: var(--color-surface); border: 1px solid rgba(43,230,138,.18);
  color: var(--color-text); font-family: var(--font-body); font-size: .95rem;
  transition: var(--transition);
}
input::placeholder, textarea::placeholder { font-family: var(--font-mono); color: rgba(223,245,236,.35); font-size: .85rem; }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--color-accent);
  box-shadow: 0 0 0 1px rgba(43,230,138,.4), 0 0 16px rgba(43,230,138,.25);
}
textarea { resize: vertical; min-height: 110px; }
select option { background: var(--color-surface); }
.field-error { color: #ff7a7a; font-family: var(--font-mono); font-size: .76rem; margin-top: 6px; display: none; }
.field-error.show { display: block; }
.form-success {
  font-family: var(--font-mono); color: var(--color-highlight); font-size: 1.05rem;
  text-align: center; padding: 20px; margin-top: 18px; display: none;
  border: 1px solid rgba(200,168,90,.4); border-radius: var(--radius);
  background: rgba(200,168,90,.06); box-shadow: 0 0 16px rgba(200,168,90,.15);
}
.form-success.show { display: block; animation: fadeIn .6s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.map-card { padding: 44px; text-align: center; position: relative; margin-top: 30px; }
.map-card i { font-size: 3rem; color: var(--color-accent); position: relative; z-index: 2; text-shadow: 0 0 18px rgba(43,230,138,.5); }
.map-card p { font-size: 1.1rem; margin-top: 16px; position: relative; z-index: 2; }

/* ============================================================
   BOOKING
   ============================================================ */
.booking-wrap { max-width: 780px; margin: 0 auto; padding: 40px 36px; }
.progress-head { margin-bottom: 32px; }
.progress-readout { font-family: var(--font-mono); color: var(--color-accent); font-size: .85rem; margin-bottom: 12px; }
.progress-track { height: 8px; border-radius: 8px; background: var(--color-surface); overflow: hidden; box-shadow: inset 0 0 6px rgba(0,0,0,.5); }
.progress-fill { height: 100%; width: 25%; background: var(--color-accent); border-radius: 8px; transition: width .5s cubic-bezier(.23,1,.32,1); box-shadow: 0 0 14px rgba(43,230,138,.7); }
.step { display: none; animation: slideIn .45s cubic-bezier(.23,1,.32,1); }
.step.active { display: block; }
@keyframes slideIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
.step h3 { font-size: 1.5rem; margin-bottom: 6px; }
.step > p { color: rgba(223,245,236,.65); margin-bottom: 24px; font-size: .95rem; }

.choice-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 26px; }
.choice-grid.freq { grid-template-columns: repeat(4,1fr); }
.choice {
  padding: 22px 16px; border-radius: var(--radius); text-align: center; cursor: pointer;
  background: rgba(10,31,26,.5); border: 1px solid rgba(43,230,138,.16);
  transition: var(--transition); position: relative; transform-style: preserve-3d;
}
.choice i { color: var(--color-accent); font-size: 1.4rem; margin-bottom: 10px; }
.choice .c-title { font-family: var(--font-heading); font-weight: 500; font-size: .98rem; }
.choice .c-sub { font-family: var(--font-mono); font-size: .74rem; color: rgba(223,245,236,.55); margin-top: 4px; }
.choice.selected {
  border-color: var(--color-accent); transform: translateZ(8px);
  box-shadow: 0 0 20px rgba(43,230,138,.4); overflow: hidden;
}
.choice.selected::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(43,230,138,.15) 50%, transparent 70%);
  background-size: 250% 100%; animation: codeShimmer 3s linear infinite;
}

.toggle-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 8px; }
.toggle {
  display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-radius: var(--radius);
  cursor: pointer; background: rgba(10,31,26,.5); transition: var(--transition);
}
.toggle .box { width: 22px; height: 22px; border-radius: 6px; border: 1px solid rgba(43,230,138,.4); display: grid; place-items: center; color: transparent; transition: var(--transition); }
.toggle.on { box-shadow: 0 0 14px rgba(43,230,138,.25); }
.toggle.on .box { background: var(--color-accent); color: var(--color-primary); }
.toggle span { font-size: .92rem; }

.time-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.time-card { padding: 22px; text-align: center; border-radius: var(--radius); cursor: pointer; background: rgba(10,31,26,.5); border: 1px solid rgba(43,230,138,.16); transition: var(--transition); }
.time-card i { color: var(--color-accent); font-size: 1.5rem; margin-bottom: 10px; }
.time-card.selected { border-color: var(--color-accent); box-shadow: 0 0 18px rgba(43,230,138,.35); transform: translateY(-6px); }

.booking-nav { display: flex; justify-content: space-between; margin-top: 32px; gap: 16px; }
.pulse-ring { animation: pulseRing 2s infinite; }
.booking-success { text-align: center; padding: 50px 20px; display: none; }
.booking-success.show { display: block; animation: fadeIn .6s ease; }
.booking-success i { font-size: 3.4rem; color: var(--color-accent); margin-bottom: 20px; text-shadow: 0 0 24px rgba(43,230,138,.6); }
.booking-success h3 { font-size: 1.8rem; margin-bottom: 14px; }
.booking-success p { color: rgba(223,245,236,.75); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s cubic-bezier(.23,1,.32,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .node-graph { display: none; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .why-wrap, .story-wrap, .contact-wrap { grid-template-columns: 1fr; gap: 34px; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline::before { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .choice-grid, .choice-grid.freq { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .feat-grid { grid-template-columns: 1fr; }
  .grid-4, .trust-grid, .timeline, .time-grid { grid-template-columns: 1fr; }
  .toggle-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { justify-content: center; }
}
@media (hover: none) {
  .card-3d:hover { transform: none; }
  .tilt-card { transform: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
