:root {
  --bg-primary: #0a0c0f;
  --bg-secondary: #0f1318;
  --bg-tertiary: #141920;
  --bg-card: #111620;
  --bg-elevated: #1a2030;

  --neon-cyan: #00e5ff;
  --neon-green: #39ff85;
  --neon-magenta: #ff2d78;
  --neon-amber: #ffb300;

  --accent-primary: #00e5ff;
  --accent-secondary: #39ff85;
  --accent-glow: rgba(0, 229, 255, 0.18);
  --accent-glow-strong: rgba(0, 229, 255, 0.35);

  --text-primary: #e8edf5;
  --text-secondary: #8a9bb5;
  --text-muted: #4a5a72;
  --text-accent: #00e5ff;

  --border-subtle: rgba(0, 229, 255, 0.08);
  --border-mid: rgba(0, 229, 255, 0.18);
  --border-strong: rgba(0, 229, 255, 0.4);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.5), 0 1px 2px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.6), 0 2px 6px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.7), 0 4px 12px rgba(0,0,0,0.5);
  --shadow-neon: 0 0 12px rgba(0,229,255,0.3), 0 0 32px rgba(0,229,255,0.12);
  --shadow-neon-green: 0 0 12px rgba(57,255,133,0.3), 0 0 32px rgba(57,255,133,0.1);
  --shadow-neon-strong: 0 0 20px rgba(0,229,255,0.5), 0 0 60px rgba(0,229,255,0.2);

  --radius-xs: 3px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 80px;
  --space-10: 120px;

  --font-mono: 'Courier New', 'Lucida Console', monospace;
  --font-display: 'Wix Madefor Display', sans-serif;
  --font-body: 'Wix Madefor Text', sans-serif;

  --nav-height: 72px;
  --container-max: 1200px;
  --container-wide: 1440px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 229, 255, 0.012) 2px,
      rgba(0, 229, 255, 0.012) 4px
    );
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.site-wrapper { position: relative; z-index: 1; min-height: 100vh; display: flex; flex-direction: column; }

main { flex: 1; }

a { color: var(--accent-primary); text-decoration: none; transition: color 0.25s ease, opacity 0.25s ease; }
a:hover { color: var(--neon-green); }

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

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-5); }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--space-5); }

.mono { font-family: var(--font-mono); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border-mid); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--accent-primary); }

/* ─── NAVIGATION ─── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(10, 12, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.site-nav.scrolled {
  background: rgba(10, 12, 15, 0.96);
  border-bottom-color: var(--border-mid);
}

.nav-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-5);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img { height: 36px; width: auto; }

.nav-logo-text {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  transition: color 0.25s ease;
}

.nav-logo-text span { color: var(--accent-primary); }
.nav-logo:hover .nav-logo-text { color: var(--accent-primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--accent-primary); background: rgba(0,229,255,0.07); }

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-shrink: 0;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  background: rgba(0,229,255,0.05);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  padding: 4px 8px;
}

.lang-btn {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.1em;
  padding: 2px 4px;
  border-radius: var(--radius-xs);
  transition: color 0.25s ease, background 0.25s ease;
}

.lang-btn.active { color: var(--accent-primary); background: rgba(0,229,255,0.12); }
.lang-btn:hover { color: var(--accent-primary); }

.lang-divider { color: var(--text-muted); font-size: 0.65rem; font-family: var(--font-mono); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg-primary);
  background: var(--accent-primary);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  box-shadow: var(--shadow-neon);
}

.nav-cta:hover {
  background: var(--neon-green);
  color: var(--bg-primary);
  box-shadow: var(--shadow-neon-green);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-2);
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

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

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--accent-primary); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--accent-primary); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(10, 12, 15, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-mid);
  padding: var(--space-5);
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu.open { display: block; transform: translateY(0); opacity: 1; }

.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-2); }

.mobile-menu ul a {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease, background 0.25s ease;
  border: 1px solid transparent;
}

.mobile-menu ul a:hover { color: var(--accent-primary); background: rgba(0,229,255,0.06); border-color: var(--border-subtle); }

.mobile-menu-bottom {
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ─── PAGE OFFSET ─── */
.page-top { padding-top: var(--nav-height); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 40%, rgba(0,229,255,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(57,255,133,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 90% 90%, rgba(255,45,120,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: var(--space-10) var(--space-5) var(--space-9);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-primary);
  background: rgba(0,229,255,0.08);
  border: 1px solid var(--border-mid);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
}

.hero-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-primary);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--accent-primary); }
  50% { opacity: 0.5; box-shadow: 0 0 3px var(--accent-primary); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: var(--space-5);
}

.hero-title .highlight {
  color: var(--accent-primary);
  text-shadow: var(--shadow-neon);
  position: relative;
}

.hero-title .highlight-green {
  color: var(--neon-green);
  text-shadow: var(--shadow-neon-green);
}

.cursor-blink {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--accent-primary);
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 1.1s step-end infinite;
  box-shadow: 0 0 8px var(--accent-primary);
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-7);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg-primary);
  background: var(--accent-primary);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  box-shadow: var(--shadow-neon), var(--shadow-md);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--neon-green);
  color: var(--bg-primary);
  box-shadow: var(--shadow-neon-green), var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-primary);
  background: transparent;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 1px solid var(--border-strong);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(0,229,255,0.08);
  color: var(--neon-green);
  border-color: var(--neon-green);
  transform: translateY(-2px);
}

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

.hero-terminal {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-lg), var(--shadow-neon);
  overflow: hidden;
}

.terminal-header {
  background: var(--bg-elevated);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border-bottom: 1px solid var(--border-subtle);
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.terminal-dots span:nth-child(1) { background: #ff5f57; }
.terminal-dots span:nth-child(2) { background: #ffbd2e; }
.terminal-dots span:nth-child(3) { background: #28ca41; }

.terminal-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  flex: 1;
  text-align: center;
}

.terminal-body {
  padding: var(--space-5);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.8;
}

.t-line { display: flex; gap: var(--space-2); }
.t-prompt { color: var(--neon-green); flex-shrink: 0; }
.t-cmd { color: var(--text-primary); }
.t-output { color: var(--text-secondary); padding-left: 16px; }
.t-success { color: var(--neon-green); padding-left: 16px; }
.t-warn { color: var(--neon-amber); padding-left: 16px; }
.t-accent { color: var(--accent-primary); }
.t-blank { height: 8px; }

/* ─── SECTION STYLES ─── */
.section { position: relative; }

.section-full { width: 100%; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: var(--space-4);
}

.section-label::before {
  content: '//';
  opacity: 0.6;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.section-title .accent { color: var(--accent-primary); }
.section-title .accent-green { color: var(--neon-green); }

.section-body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 640px;
}

/* ─── PROBLEM SECTION ─── */
.problem-section {
  padding: var(--space-10) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  margin-top: var(--space-7);
}

.problem-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.problem-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
  filter: brightness(0.85) saturate(0.9);
  transition: filter 0.4s ease;
}

.problem-image:hover img { filter: brightness(0.95) saturate(1); }

.problem-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  pointer-events: none;
}

.problem-list { display: flex; flex-direction: column; gap: var(--space-4); margin-top: var(--space-5); }

.problem-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-4) var(--space-5);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.problem-item:hover {
  border-color: var(--border-mid);
  box-shadow: var(--shadow-md), 0 0 20px rgba(0,229,255,0.05);
  transform: translateX(4px);
}

.problem-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,229,255,0.08);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  color: var(--accent-primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.problem-item h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.problem-item p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* ─── HOW IT WORKS ─── */
.how-section {
  padding: var(--space-10) 0;
  background: var(--bg-primary);
}

.steps-track {
  margin-top: var(--space-8);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.steps-track::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--border-mid), var(--accent-primary), var(--neon-green), var(--border-mid));
  z-index: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--space-4);
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 2px solid var(--border-mid);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: var(--space-5);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
}

.step-item:hover .step-num {
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-neon);
  background: rgba(0,229,255,0.08);
}

.step-item:nth-child(2) .step-num { border-color: rgba(57,255,133,0.3); color: var(--neon-green); }
.step-item:nth-child(2):hover .step-num { border-color: var(--neon-green); box-shadow: var(--shadow-neon-green); }
.step-item:nth-child(3) .step-num { border-color: rgba(255,179,0,0.3); color: var(--neon-amber); }
.step-item:nth-child(4) .step-num { border-color: rgba(255,45,120,0.3); color: var(--neon-magenta); }

.step-item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.step-item p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* ─── SERVICES / WHAT WE DO ─── */
.services-section {
  padding: var(--space-10) 0;
  background: var(--bg-secondary);
}

.services-full-bg {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(0,229,255,0.03) 50%, var(--bg-secondary) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-7);
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  border-color: var(--border-mid);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(0,229,255,0.06);
  transform: translateY(-4px);
}

.service-card:hover::before { opacity: 1; }

.service-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,229,255,0.08);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  font-size: 1.3rem;
  color: var(--accent-primary);
  margin-bottom: var(--space-5);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .service-card-icon {
  background: rgba(0,229,255,0.14);
  box-shadow: var(--shadow-neon);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.service-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* ─── CALCULATOR ─── */
.calculator-section {
  padding: var(--space-10) 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.calculator-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,229,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.calculator-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-neon);
  margin-top: var(--space-7);
}

.calc-header {
  background: var(--bg-elevated);
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.calc-header-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,229,255,0.1);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  color: var(--accent-primary);
  font-size: 1rem;
}

.calc-header h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.calc-header p { font-size: 0.85rem; color: var(--text-secondary); }

.calc-body {
  padding: var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.calc-form { display: flex; flex-direction: column; gap: var(--space-4); }

.calc-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
}

.calc-field select,
.calc-field input[type="range"] {
  width: 100%;
}

.calc-field select {
  background: var(--bg-elevated);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 10px 14px;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}

.calc-field select:focus { border-color: var(--accent-primary); box-shadow: 0 0 0 3px rgba(0,229,255,0.1); }

.range-wrap { position: relative; }

input[type="range"] {
  -webkit-appearance: none;
  height: 4px;
  background: var(--bg-elevated);
  border-radius: var(--radius-full);
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--accent-primary);
  border-radius: 50%;
  box-shadow: var(--shadow-neon);
  transition: box-shadow 0.2s ease;
}

input[type="range"]:hover::-webkit-slider-thumb { box-shadow: var(--shadow-neon-strong); }

.range-value {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-top: var(--space-2);
  display: block;
}

.calc-result {
  background: var(--bg-elevated);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) var(--space-4);
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.result-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.result-value {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-primary);
}

.result-value.green { color: var(--neon-green); }
.result-value.amber { color: var(--neon-amber); }

.calc-cta-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  font-family: var(--font-mono);
  padding: var(--space-3);
  border-top: 1px solid var(--border-subtle);
}

/* ─── RESOURCES ─── */
.resources-section {
  padding: var(--space-10) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-7);
}

.resource-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.resource-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--neon-green));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.resource-card:hover {
  border-color: var(--border-mid);
  box-shadow: var(--shadow-md), 0 0 20px rgba(0,229,255,0.06);
  transform: translateY(-3px);
}

.resource-card:hover::after { opacity: 1; }

.resource-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,229,255,0.08);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  font-size: 1.4rem;
  color: var(--accent-primary);
  transition: background 0.3s ease;
}

.resource-card:hover .resource-icon {
  background: rgba(0,229,255,0.14);
  box-shadow: var(--shadow-neon);
}

.resource-content { flex: 1; }

.resource-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon-green);
  background: rgba(57,255,133,0.08);
  border: 1px solid rgba(57,255,133,0.2);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: var(--space-2);
}

.resource-content h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.resource-content p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: var(--space-3); }

.resource-dl {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-primary);
  text-decoration: none;
  transition: color 0.25s ease, gap 0.25s ease;
}

.resource-dl:hover { color: var(--neon-green); gap: var(--space-3); }

/* ─── ABOUT STRIP ─── */
.about-strip {
  padding: var(--space-10) 0;
  background: var(--bg-primary);
}

.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.about-strip-image {
  position: relative;
}

.about-strip-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-md);
  filter: brightness(0.85) saturate(0.85);
  transition: filter 0.4s ease;
}

.about-strip-image:hover img { filter: brightness(0.95) saturate(1); }

.about-strip-image::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-md) + 1px);
  background: linear-gradient(135deg, rgba(0,229,255,0.2) 0%, transparent 50%, rgba(57,255,133,0.1) 100%);
  pointer-events: none;
  z-index: 1;
}

.about-strip-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  z-index: 2;
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-lg), var(--shadow-neon);
  z-index: 3;
}

.about-badge .badge-num {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-primary);
  line-height: 1;
  display: block;
  text-shadow: var(--shadow-neon);
}

.about-badge .badge-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-strip-content { padding-left: var(--space-4); }

.disclaimer-box {
  margin-top: var(--space-6);
  padding: var(--space-4) var(--space-5);
  background: rgba(255,179,0,0.05);
  border: 1px solid rgba(255,179,0,0.2);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--neon-amber);
}

.disclaimer-box p {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--neon-amber);
  line-height: 1.6;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  padding: var(--space-9) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(0,229,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.cta-banner p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-8) 0 var(--space-5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: var(--space-7);
  padding-bottom: var(--space-7);
  border-bottom: 1px solid var(--border-subtle);
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  text-decoration: none;
}

.footer-logo img { height: 32px; }

.footer-logo-text {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.footer-logo-text span { color: var(--accent-primary); }

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-5);
  max-width: 280px;
}

.footer-contact-info { display: flex; flex-direction: column; gap: var(--space-2); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact-item i {
  width: 16px;
  color: var(--accent-primary);
  font-size: 0.8rem;
}

.footer-contact-item:hover { color: var(--accent-primary); }

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: var(--space-4);
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-2); }

.footer-col ul a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
  display: block;
  padding: 2px 0;
}

.footer-col ul a:hover { color: var(--accent-primary); padding-left: 4px; }

.footer-disclaimer {
  margin-top: var(--space-4);
  padding: var(--space-3) var(--space-4);
  background: rgba(255,179,0,0.04);
  border: 1px solid rgba(255,179,0,0.15);
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--neon-amber);
}

.footer-disclaimer p {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(255,179,0,0.7);
  line-height: 1.6;
}

.footer-bottom {
  padding-top: var(--space-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.footer-copy a { color: var(--text-muted); transition: color 0.25s ease; }
.footer-copy a:hover { color: var(--accent-primary); }

.footer-legal {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-legal a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.25s ease;
}

.footer-legal a:hover { color: var(--accent-primary); }

/* ─── INNER PAGE HERO ─── */
.page-hero {
  padding: calc(var(--nav-height) + var(--space-8)) 0 var(--space-8);
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,229,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner { position: relative; z-index: 1; }

.page-hero-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.page-hero-label::before { content: '//'; opacity: 0.5; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: var(--space-4);
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

/* ─── TEAM PAGE ─── */
.team-section {
  padding: var(--space-10) 0;
  background: var(--bg-primary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-7);
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.team-card:hover {
  border-color: var(--border-mid);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(0,229,255,0.06);
  transform: translateY(-4px);
}

.team-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.8) sepia(0.1);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.team-card:hover .team-card-image img { filter: brightness(0.95) saturate(0.95); transform: scale(1.03); }

.team-card-body { padding: var(--space-5); }

.team-card-role {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: var(--space-2);
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.team-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }

.values-section {
  padding: var(--space-10) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-7);
}

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

.value-item:hover { border-color: var(--border-mid); transform: translateY(-3px); }

.value-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(57,255,133,0.08);
  border: 1px solid rgba(57,255,133,0.2);
  border-radius: var(--radius-sm);
  font-size: 1.3rem;
  color: var(--neon-green);
  margin: 0 auto var(--space-4);
}

.value-item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.value-item p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }

/* ─── PARA PROPIETARIOS PAGE ─── */
.owners-section {
  padding: var(--space-10) 0;
  background: var(--bg-primary);
}

.owners-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  margin-top: var(--space-7);
}

.owners-intro-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-md);
  filter: brightness(0.85) saturate(0.85);
}

.owners-intro-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.owners-intro-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  pointer-events: none;
}

.faq-section {
  padding: var(--space-10) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

.faq-list { margin-top: var(--space-7); display: flex; flex-direction: column; gap: var(--space-3); }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.open { border-color: var(--border-mid); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  gap: var(--space-4);
  user-select: none;
  transition: background 0.25s ease;
}

.faq-question:hover { background: rgba(0,229,255,0.03); }

.faq-question h4 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,229,255,0.06);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  color: var(--accent-primary);
  font-size: 0.75rem;
  transition: background 0.25s ease, transform 0.3s ease;
}

.faq-item.open .faq-toggle { background: rgba(0,229,255,0.12); transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-5);
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-4);
}

/* ─── CONTACT PAGE ─── */
.contact-section {
  padding: var(--space-10) 0;
  background: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-8);
  margin-top: var(--space-7);
}

.contact-info { display: flex; flex-direction: column; gap: var(--space-5); }

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.contact-info-card:hover { border-color: var(--border-mid); transform: translateX(4px); }

.contact-info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,229,255,0.08);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  color: var(--accent-primary);
  font-size: 1rem;
}

.contact-info-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 600;
}

.contact-info-value a { color: var(--text-primary); text-decoration: none; transition: color 0.25s ease; }
.contact-info-value a:hover { color: var(--accent-primary); }

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

.map-container iframe {
  width: 100%;
  height: 280px;
  display: block;
  filter: invert(0.9) hue-rotate(180deg) brightness(0.85) saturate(0.8);
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.form-subtitle { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: var(--space-6); }

.form-group { margin-bottom: var(--space-4); }

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: var(--space-2);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(0,229,255,0.1);
}

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent-primary);
  cursor: pointer;
}

.form-check span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.form-check a { color: var(--accent-primary); }

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg-primary);
  background: var(--accent-primary);
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  box-shadow: var(--shadow-neon), var(--shadow-md);
}

.btn-submit:hover {
  background: var(--neon-green);
  box-shadow: var(--shadow-neon-green), var(--shadow-lg);
  transform: translateY(-2px);
}

/* ─── THANKS PAGE ─── */
.thanks-section {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-9) var(--space-5);
}

.thanks-card {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-xl);
  padding: var(--space-9) var(--space-8);
  text-align: center;
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow-lg), var(--shadow-neon);
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background: rgba(57,255,133,0.1);
  border: 2px solid rgba(57,255,133,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--neon-green);
  margin: 0 auto var(--space-6);
  box-shadow: var(--shadow-neon-green);
}

.thanks-card h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.thanks-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

/* ─── LEGAL PAGES ─── */
.legal-section {
  padding: var(--space-9) 0;
  background: var(--bg-primary);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: var(--space-7) 0 var(--space-3);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border-subtle);
}

.legal-content h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }

.legal-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.legal-content ul {
  margin: var(--space-3) 0 var(--space-4) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.legal-content ul li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.legal-content a { color: var(--accent-primary); }

.legal-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: var(--space-3) var(--space-4);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-7);
}

/* ─── COOKIE CONSENT ─── */
.cookie-banner {
  position: fixed;
  bottom: var(--space-5);
  left: var(--space-5);
  right: var(--space-5);
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  z-index: 9999;
  box-shadow: var(--shadow-lg), var(--shadow-neon);
  display: none;
}

.cookie-banner.visible { display: block; }

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.cookie-text { flex: 1; min-width: 200px; }

.cookie-text h4 {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
  letter-spacing: 0.05em;
}

.cookie-text p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; }
.cookie-text a { color: var(--accent-primary); font-size: 0.82rem; }

.cookie-actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
  min-height: 44px;
}

.cookie-btn-accept {
  background: var(--accent-primary);
  color: var(--bg-primary);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-neon);
}

.cookie-btn-accept:hover { background: var(--neon-green); border-color: var(--neon-green); box-shadow: var(--shadow-neon-green); transform: translateY(-1px); }

.cookie-btn-reject {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border-mid);
}

.cookie-btn-reject:hover { color: var(--text-primary); border-color: var(--text-secondary); }

.cookie-btn-customize {
  background: rgba(0,229,255,0.06);
  color: var(--accent-primary);
  border-color: var(--border-mid);
}

.cookie-btn-customize:hover { background: rgba(0,229,255,0.12); border-color: var(--border-strong); }

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
}

.cookie-modal.visible { display: flex; }

.cookie-modal-inner {
  background: var(--bg-elevated);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.cookie-modal-inner h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-5);
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-3);
}

.cookie-category-info h5 {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.cookie-category-info p { font-size: 0.78rem; color: var(--text-secondary); }

.cookie-toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.cookie-toggle input { opacity: 0; width: 0; height: 0; }

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.25s ease;
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--text-muted);
  border-radius: 50%;
  transition: transform 0.25s ease, background 0.25s ease;
}

.cookie-toggle input:checked + .cookie-toggle-slider { background: rgba(0,229,255,0.2); border-color: var(--accent-primary); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translate(18px, -50%); background: var(--accent-primary); }
.cookie-toggle input:disabled + .cookie-toggle-slider { opacity: 0.5; cursor: not-allowed; }

.cookie-modal-actions {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
  flex-wrap: wrap;
}

/* ─── SPLITTING ANIMATIONS ─── */
.hero-title .word { overflow: hidden; display: inline-block; }
.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: calc(var(--char-index) * 0.03s);
}

.hero-title.animate .char { opacity: 1; transform: translateY(0); }

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-in.visible { opacity: 1; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-track { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
  .steps-track::before { display: none; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-terminal { max-width: 100%; }
  .problem-grid { grid-template-columns: 1fr; }
  .about-strip-inner { grid-template-columns: 1fr; }
  .about-badge { right: var(--space-4); }
  .calc-body { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .owners-intro-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  :root { --nav-height: 64px; }
  .team-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-track { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
  .cookie-banner-inner { flex-direction: column; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; justify-content: center; }
  .about-badge { display: none; }
  .contact-form-wrap { padding: var(--space-5); }
  .thanks-card { padding: var(--space-6) var(--space-5); }
  .hero-terminal { font-size: 0.7rem; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 380px) {
  .container { padding: 0 var(--space-4); }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}