/* ═══════════════════════════════════════════════════════════════
   DeskHost — Premium Design System v3
   Theme: Liquid Obsidian Gold
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Colors */
  --bg:          #050810;
  --bg-2:        #0a0f1e;
  --surface:     rgba(255,255,255,0.03);
  --surface-2:   rgba(255,255,255,0.06);
  --border:      rgba(212,175,55,0.12);
  --border-2:    rgba(212,175,55,0.25);

  /* Gold accent */
  --gold:        #D4AF37;
  --gold-2:      #F0D78C;
  --gold-dim:    rgba(212,175,55,0.15);
  --gold-glow:   rgba(212,175,55,0.35);

  /* Emerald accent */
  --emerald:     #10B981;
  --emerald-dim: rgba(16,185,129,0.15);

  /* Text */
  --text:        #F5F5F0;
  --text-muted:  rgba(245,245,240,0.55);
  --text-dim:    rgba(245,245,240,0.30);

  /* Fonts */
  --font-display: 'Cinzel', serif;
  --font-body:    'DM Sans', sans-serif;

  /* Spacing */
  --r-sm:   8px;
  --r-md:  14px;
  --r-lg:  22px;
  --r-xl:  32px;
  --r-2xl: 48px;

  /* Shadows */
  --shadow-gold: 0 0 60px rgba(212,175,55,0.12), 0 24px 80px rgba(0,0,0,0.5);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 80px rgba(212,175,55,0.2);

  /* Easing */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: hidden;
}

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

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

::selection { background: var(--gold); color: #000; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── Typography ────────────────────────────────────────────── */
.font-display { font-family: var(--font-display); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }

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

.grad-text-soft {
  background: linear-gradient(135deg, rgba(212,175,55,0.9) 0%, rgba(240,215,140,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ────────────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── NAVIGATION ────────────────────────────────────────────── */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 72px;
  background: rgba(5,8,16,0.7);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition: background 300ms ease, border-color 300ms ease;
}

nav.scrolled {
  background: rgba(5,8,16,0.92);
  border-bottom-color: var(--border-2);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--text);
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, #B8922A 100%);
  color: #000;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 0 20px var(--gold-glow);
  transition: transform 300ms var(--ease-spring), box-shadow 300ms ease;
}

.logo:hover .logo-mark {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 0 30px var(--gold-glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: var(--r-md);
  transition: color 200ms ease, background 200ms ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 16px;
  height: 2px;
  background: var(--gold);
  border-radius: 99px;
  transition: transform 200ms var(--ease-spring);
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: translateX(-50%) scaleX(1); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, #B8922A 100%) !important;
  color: #000 !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
  border-radius: var(--r-md) !important;
  box-shadow: 0 4px 16px rgba(212,175,55,0.3);
  transition: transform 200ms var(--ease-spring), box-shadow 200ms ease !important;
}

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

.nav-cta:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 8px 24px rgba(212,175,55,0.4) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 8px;
  color: var(--text);
  cursor: pointer;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--r-md);
  transition: transform 200ms var(--ease-spring), box-shadow 200ms ease, background 200ms ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn:active { transform: scale(0.96); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #B8922A 100%);
  color: #000;
  padding: 14px 28px;
  box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,175,55,0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
  padding: 13px 26px;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

.btn-lg {
  font-size: 16px;
  padding: 16px 36px;
  border-radius: var(--r-lg);
}

.btn-sm {
  font-size: 13px;
  padding: 9px 18px;
  border-radius: var(--r-sm);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Animated mesh background */
.mesh-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.mesh-bg::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  animation: mesh-float-1 18s ease-in-out infinite;
}

.mesh-bg::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(16,185,129,0.05) 0%, transparent 70%);
  animation: mesh-float-2 22s ease-in-out infinite;
}

@keyframes mesh-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-60px, 40px) scale(1.05); }
  66% { transform: translate(40px, -60px) scale(0.95); }
}

@keyframes mesh-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(80px, -50px) scale(1.1); }
  70% { transform: translate(-40px, 60px) scale(0.9); }
}

/* Animated grid */
.grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  animation: grid-pulse 8s ease-in-out infinite;
}

@keyframes grid-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orb-float 12s ease-in-out infinite;
  pointer-events: none;
}

.orb-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: 10%;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
  animation-delay: 0s;
  animation-duration: 16s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  bottom: 0;
  left: 5%;
  background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%);
  animation-delay: -6s;
  animation-duration: 20s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  animation-delay: -3s;
  animation-duration: 14s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(30px, -40px); }
  50% { transform: translate(-20px, 30px); }
  75% { transform: translate(40px, 20px); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(212,175,55,0.25);
  padding: 8px 16px;
  border-radius: 99px;
  margin-bottom: 32px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(212,175,55,0); }
}

.hero h1 {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 28px;
  animation: hero-title-in 800ms var(--ease-out) both;
}

.hero h1 .thin {
  font-weight: 400;
  opacity: 0.7;
}

@keyframes hero-title-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
  animation: hero-title-in 800ms 150ms var(--ease-out) both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: hero-title-in 800ms 300ms var(--ease-out) both;
}

.hero-visual {
  position: relative;
  animation: hero-visual-in 1000ms 200ms var(--ease-out) both;
}

@keyframes hero-visual-in {
  from { opacity: 0; transform: translateX(40px) scale(0.97); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

/* 3D app mockup frame */
.mockup-frame {
  position: relative;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--border);
  padding: 20px;
  box-shadow: var(--shadow-gold);
  transform: perspective(1200px) rotateY(-6deg) rotateX(4deg);
  transition: transform 600ms var(--ease-out);
}

.mockup-frame:hover {
  transform: perspective(1200px) rotateY(-2deg) rotateX(2deg);
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  padding: 0 4px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot.red { background: #FF5F57; }
.mockup-dot.yel { background: #FEBC2E; }
.mockup-dot.grn { background: #28C840; }

/* App UI screenshot (CSS-only recreation) */
.app-screenshot {
  background: #0a0f1e;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
}

.screenshot-header {
  background: rgba(255,255,255,0.04);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.screenshot-title {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.screenshot-body {
  padding: 16px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 12px;
  height: calc(100% - 44px);
}

/* Sidebar in mockup */
.mockup-sidebar {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mockup-nav-item {
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  transition: all 200ms ease;
}

.mockup-nav-item.active {
  background: var(--gold-dim);
  color: var(--gold);
}

.mockup-nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}

.mockup-nav-item.active .mockup-nav-dot {
  background: var(--gold);
  opacity: 1;
  box-shadow: 0 0 6px var(--gold);
}

/* Calendar grid in mockup */
.mockup-calendar {
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}

.cal-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: 8px;
  background: rgba(255,255,255,0.03);
}

.cal-day-label {
  text-align: center;
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: 0 8px 8px;
}

.cal-cell {
  aspect-ratio: 1;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: rgba(255,255,255,0.3);
}

.cal-cell.has-booking {
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.3);
}

.cal-cell.booked-1 { background: rgba(16,185,129,0.25); color: var(--emerald); border: 1px solid rgba(16,185,129,0.3); }
.cal-cell.booked-2 { background: rgba(212,175,55,0.2); color: var(--gold); border: 1px solid rgba(212,175,55,0.3); }
.cal-cell.today { background: rgba(212,175,55,0.15); border: 1px solid var(--gold); color: var(--gold); }

/* KPI row in mockup */
.mockup-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.kpi-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 8px;
}

.kpi-label {
  font-size: 8px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.kpi-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
}

.kpi-sub {
  font-size: 8px;
  color: var(--emerald);
  margin-top: 2px;
}

/* Floating UI cards around mockup */
.floating-card {
  position: absolute;
  background: rgba(10,15,30,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: float-card 6s ease-in-out infinite;
}

.floating-card.card-1 {
  top: -20px;
  right: -30px;
  animation-delay: 0s;
  animation-duration: 7s;
}

.floating-card.card-2 {
  bottom: 40px;
  left: -40px;
  animation-delay: -2s;
  animation-duration: 8s;
}

.floating-card.card-3 {
  bottom: -10px;
  right: 20px;
  animation-delay: -4s;
  animation-duration: 6.5s;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.fc-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}

.fc-icon.gold { background: var(--gold-dim); color: var(--gold); }
.fc-icon.green { background: var(--emerald-dim); color: var(--emerald); }

.fc-label {
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.fc-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

/* ── STATS STRIP ───────────────────────────────────────────── */
.stats-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(212,175,55,0.03) 0%, transparent 50%, rgba(212,175,55,0.03) 100%);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.04), transparent);
  animation: stats-shimmer 4s ease-in-out infinite;
}

@keyframes stats-shimmer {
  0%, 100% { opacity: 0; transform: translateX(-100%); }
  50% { opacity: 1; transform: translateX(100%); }
}

.stats-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 8px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── SECTION BASE ───────────────────────────────────────────── */
.section {
  padding: 140px 0;
  position: relative;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  height: 1px;
  width: 32px;
  background: var(--gold);
  opacity: 0.4;
}

.section h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ── PRODUCT / BENTO ───────────────────────────────────────── */
.product-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 64px;
}

.bento-card {
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  transition: transform 400ms var(--ease-out), border-color 400ms ease, box-shadow 400ms ease;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
}

.bento-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--border-2);
  box-shadow: var(--shadow-gold);
}

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

/* Large featured card */
.bento-featured {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 440px;
  background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, rgba(10,15,30,0.9) 100%);
  display: flex;
  flex-direction: column;
  padding: 40px;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.bento-featured::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.bento-featured-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--gold-dim);
  border: 1px solid rgba(212,175,55,0.25);
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--gold);
  position: relative;
  z-index: 1;
  animation: icon-float 5s ease-in-out infinite;
}

@keyframes icon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.bento-featured h3 {
  font-size: 28px;
  font-family: var(--font-display);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.bento-featured p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 380px;
  position: relative;
  z-index: 1;
}

.bento-visual-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 80%;
  opacity: 0.15;
  display: flex;
  align-items: flex-end;
}

/* Mini calendar visualization */
.mini-calendar {
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
  padding: 12px;
  width: 100%;
  max-width: 240px;
}

.mini-cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 10px;
  color: var(--gold);
  font-weight: 600;
}

.mini-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.mini-cal-cell {
  aspect-ratio: 1;
  border-radius: 3px;
  background: rgba(255,255,255,0.05);
}

.mini-cal-cell.reserved { background: var(--gold-dim); border: 1px solid rgba(212,175,55,0.3); }
.mini-cal-cell.booked { background: var(--emerald-dim); border: 1px solid rgba(16,185,129,0.3); }
.mini-cal-cell.today { border: 1px solid var(--gold); }

/* Side card */
.bento-side {
  grid-column: span 5;
  grid-row: span 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bento-side h3 {
  font-size: 20px;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  gap: 12px;
}

.bento-side h3 svg { color: var(--gold); flex-shrink: 0; }

.bento-side p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.bento-check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bento-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--emerald-dim);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--emerald);
}

/* Small card */
.bento-sm {
  grid-column: span 4;
  padding: 28px;
}

.bento-sm h4 {
  font-size: 16px;
  font-family: var(--font-display);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bento-sm h4 svg { color: var(--gold); }

.bento-sm p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── FEATURES ─────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: transform 300ms var(--ease-out), border-color 300ms ease, box-shadow 300ms ease;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity 300ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--gold-dim);
  border: 1px solid rgba(212,175,55,0.2);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--gold);
  transition: transform 300ms var(--ease-spring);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-4deg);
}

.feature-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: var(--font-display);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.how-section {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 16.66%;
  right: 16.66%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--border-2), var(--gold));
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 30px var(--gold-glow);
  transition: transform 300ms var(--ease-spring), box-shadow 300ms ease;
}

.step:hover .step-number {
  transform: scale(1.12);
  box-shadow: 0 0 50px var(--gold-glow);
}

.step h4 {
  font-size: 18px;
  font-family: var(--font-display);
  margin-bottom: 12px;
}

.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 280px;
  margin: 0 auto;
}

/* ── PRICING ───────────────────────────────────────────────── */
.pricing-section {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(212,175,55,0.03) 50%, var(--bg) 100%);
}

.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing-header .section-sub {
  max-width: 520px;
  margin: 16px auto 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 40px 36px;
  position: relative;
  transition: transform 400ms var(--ease-out), border-color 400ms ease, box-shadow 400ms ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-2);
}

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(10,15,30,0.95) 100%);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, #B8922A 100%);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 99px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-amount .euro { font-size: 28px; vertical-align: top; margin-right: 2px; }
.pricing-amount .once { font-size: 14px; color: var(--text-muted); font-weight: 400; letter-spacing: 0; margin-left: 6px; font-family: var(--font-body); }

.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-features li svg { color: var(--emerald); flex-shrink: 0; margin-top: 2px; }
.pricing-features li.dim svg { color: var(--text-dim); }

.pricing-card .btn {
  width: 100%;
}

/* ── TESTIMONIAL ───────────────────────────────────────────── */
.testimonial-section {
  padding: 120px 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 400px;
  color: rgba(212,175,55,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 32px;
}

.testimonial-author {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #B8922A 100%);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #000;
  font-size: 14px;
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-section {
  background: var(--bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 64px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  cursor: pointer;
  transition: border-color 250ms ease, background 250ms ease;
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 250ms var(--ease-out);
}

.faq-item.open::before,
.faq-item:hover::before { height: 100%; }

.faq-item.open { border-color: var(--border-2); background: rgba(212,175,55,0.03); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-display);
  padding-right: 32px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 300ms var(--ease-spring), background 200ms ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: #000;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease-out), padding 400ms ease;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-top: 16px;
}

/* ── CTA ───────────────────────────────────────────────────── */
.cta-section {
  padding: 160px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(212,175,55,0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-section h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  background: var(--bg-2);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 200ms ease;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 13px;
  color: var(--text-dim);
}

/* ── SCROLL ANIMATIONS ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-spring);
}

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

/* Stagger delays */
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }
.delay-4 { transition-delay: 400ms; }
.delay-5 { transition-delay: 500ms; }
.delay-6 { transition-delay: 600ms; }

/* ── CURSOR GLOW ───────────────────────────────────────────── */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 300ms ease;
  opacity: 0;
}

body:hover .cursor-glow { opacity: 1; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero h1 { max-width: 600px; margin: 0 auto 28px; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-visual { max-width: 560px; margin: 0 auto; }
  .mockup-frame { transform: none; }

  .bento { grid-template-columns: 1fr; }
  .bento-featured { grid-column: span 1; min-height: 360px; }
  .bento-side { grid-column: span 1; }
  .bento-sm { grid-column: span 1; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-8px); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 48px; }
  .steps::before { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .nav-links { display: none; }
  .nav-toggle { display: grid; place-items: center; }
}