/* MedicalCloud Landing - Dark Cinema + Glassmorphism */
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --land-accent: #0d9488;
  --land-accent-2: #06b6d4;
  --land-accent-glow: rgba(13,148,136,0.25);
  --land-indigo: #5E6AD2;
  --land-green: #22c55e;
  --land-red: #ef4444;
  --land-purple: #8b5cf6;
  --land-amber: #f59e0b;
  --land-pink: #ec4899;
  --land-blue: #3b82f6;
  --land-bg: #0a0a0f;
  --land-bg-deep: #020203;
  --land-surface: rgba(255,255,255,0.05);
  --land-surface-card: rgba(255,255,255,0.04);
  --land-border: rgba(255,255,255,0.08);
  --land-text: #EDEDEF;
  --land-text-dim: #8A8F98;
  --land-radius: 16px;
  --land-radius-btn: 12px;
  --land-radius-badge: 50px;
  --land-ease: cubic-bezier(0.16,1,0.3,1);
}

* { box-sizing: border-box }
html { scroll-behavior: smooth }

.landing-body {
  font-family: 'Figtree', 'Inter', system-ui, sans-serif;
  background: linear-gradient(180deg, var(--land-bg) 0%, var(--land-bg-deep) 100%);
  color: var(--land-text);
  overflow-x: hidden;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

/* ── Animated Background ── */
.land-bg-wrap { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none }

.land-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
}

.land-orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .30; animation: orbFloat 25s var(--land-ease) infinite }
.land-orb-1 { width: 700px; height: 700px; background: radial-gradient(circle, var(--land-accent), transparent 70%); top: -250px; left: -150px }
.land-orb-2 { width: 600px; height: 600px; background: radial-gradient(circle, var(--land-accent-2), transparent 70%); bottom: -200px; right: -150px; animation-delay: -8s }
.land-orb-3 { width: 500px; height: 500px; background: radial-gradient(circle, var(--land-purple), transparent 70%); top: 35%; left: 45%; animation-delay: -16s }
.land-orb-4 { width: 450px; height: 450px; background: radial-gradient(circle, var(--land-pink), transparent 70%); top: 60%; left: 10%; animation-delay: -12s; opacity: .18 }

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1) }
  25% { transform: translate(40px, -50px) scale(1.08) }
  50% { transform: translate(-30px, 40px) scale(0.94) }
  75% { transform: translate(50px, 25px) scale(1.04) }
}

.land-noise {
  position: fixed; inset: 0; z-index: 1; opacity: .025; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='f'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23f)'/%3E%3C/svg%3E");
}

/* Scanline overlay */
.land-noise::after {
  content: '';
  position: fixed; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.008) 2px, rgba(255,255,255,0.008) 4px);
  pointer-events: none;
}

/* ── Animations ── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px) }
  to { opacity: 1; transform: translateY(0) }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px var(--land-accent-glow) }
  50% { box-shadow: 0 0 40px var(--land-accent-glow), 0 0 60px rgba(13,148,136,0.1) }
}
@keyframes barGrow { from { height: 0 !important } }
@keyframes shimmer {
  0% { background-position: -200% center }
  100% { background-position: 200% center }
}

/* ── Nav ── */
.land-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,15,0.7);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--land-border);
  box-shadow: 0 1px 30px rgba(13,148,136,0.06);
  transition: box-shadow .4s var(--land-ease);
}
.land-nav .nav-link {
  color: var(--land-text-dim); font-size: .875rem; font-weight: 500;
  transition: color .25s var(--land-ease); padding: .5rem .75rem;
}
.land-nav .nav-link:hover { color: #fff }

/* ── Buttons ── */
.btn-land-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.6rem;
  background: linear-gradient(135deg, var(--land-accent), var(--land-accent-2));
  color: #fff; border-radius: var(--land-radius-btn); font-weight: 600; font-size: .9rem;
  text-decoration: none; border: 0;
  transition: all .35s var(--land-ease);
  box-shadow: 0 4px 20px rgba(13,148,136,0.35), 0 0 0 0 rgba(13,148,136,0);
}
.btn-land-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(13,148,136,0.45), 0 0 50px rgba(13,148,136,0.15);
  color: #fff;
}
.btn-land-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.6rem;
  border: 1px solid rgba(255,255,255,0.15); color: #fff;
  border-radius: var(--land-radius-btn); font-weight: 600; font-size: .9rem;
  text-decoration: none; background: rgba(255,255,255,0.03);
  transition: all .35s var(--land-ease);
}
.btn-land-outline:hover {
  border-color: rgba(13,148,136,0.5); background: rgba(13,148,136,0.1);
  color: #fff; transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 20px rgba(13,148,136,0.15);
}
.btn-sm { padding: .45rem 1rem; font-size: .8rem }
.btn-lg { padding: .85rem 2.2rem; font-size: 1.05rem }

/* ── Hero ── */
.land-hero {
  position: relative; z-index: 10; padding: 8rem 0 5rem;
  min-height: 100vh; display: flex; align-items: center;
}
.land-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem 1.1rem; border-radius: var(--land-radius-badge);
  border: 1px solid rgba(13,148,136,0.3); background: rgba(13,148,136,0.08);
  color: #5eead4; font-size: .8rem; font-weight: 500; margin-bottom: 1.5rem;
  animation: glowPulse 3s ease-in-out infinite;
}
.land-title {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800;
  line-height: 1.08; margin-bottom: 1.2rem; color: #fff;
  letter-spacing: -0.03em;
}
.hero-gradient {
  background: linear-gradient(135deg, var(--land-accent), var(--land-accent-2), var(--land-indigo), var(--land-purple));
  background-size: 300% 300%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 6s ease infinite;
}
.land-subtitle {
  font-size: 1.1rem; color: var(--land-text-dim); line-height: 1.75; max-width: 520px;
}
.land-subtitle.centered { margin: 0 auto }
.hero-checks { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem }
.hero-check {
  display: flex; align-items: center; gap: .4rem;
  color: rgba(255,255,255,0.7); font-size: .85rem; font-weight: 500;
}
.hero-check svg { color: var(--land-accent) }

/* ── Mockup ── */
.hero-mockup-3d { perspective: 1200px; padding: 2rem }
.hero-mockup-inner {
  transform: rotateY(-10deg) rotateX(5deg);
  border-radius: 14px; overflow: hidden;
  background: rgba(26,26,46,0.9);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all .6s var(--land-ease);
}
.hero-mockup-inner:hover {
  transform: rotateY(-2deg) rotateX(1deg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 40px rgba(13,148,136,0.15), 0 0 0 1px rgba(13,148,136,0.3);
}
.mock-topbar { display: flex; align-items: center; gap: .75rem; padding: .6rem 1rem; background: rgba(255,255,255,0.04); border-bottom: 1px solid var(--land-border) }
.mock-dots { display: flex; gap: 5px }
.mock-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.12) }
.mock-dots span:first-child { background: #ef4444 } .mock-dots span:nth-child(2) { background: #f59e0b } .mock-dots span:nth-child(3) { background: #22c55e }
.mock-url { font-size: .7rem; color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.04); padding: 2px 10px; border-radius: 6px; flex: 1; text-align: center }
.mock-body { display: flex; min-height: 260px }
.mock-sidebar { width: 40px; background: rgba(255,255,255,0.025); border-right: 1px solid var(--land-border); padding: .5rem 0; display: flex; flex-direction: column; align-items: center; gap: .5rem }
.mock-sidebar-icon { width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center; justify-content: center; transition: background .2s }
.mock-sidebar-icon svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.25); fill: none; stroke-width: 2 }
.mock-sidebar-icon.active { background: rgba(13,148,136,0.2) } .mock-sidebar-icon.active svg { stroke: var(--land-accent) }
.mock-main { flex: 1; padding: .75rem }
.mock-canvas { background: rgba(255,255,255,0.015); border-radius: 8px; border: 1px solid rgba(255,255,255,0.04); overflow: hidden }
.mock-toolbar { display: flex; gap: 4px; padding: 4px 6px; background: rgba(255,255,255,0.025); border-bottom: 1px solid var(--land-border) }
.mock-tool { width: 18px; height: 18px; border-radius: 4px; background: rgba(255,255,255,0.06) }
.mock-tool.active { background: rgba(13,148,136,0.3) }
.mock-drawing-area { padding: .5rem }

/* ── Trusted ── */
.land-trusted { position: relative; z-index: 10; padding: 2.5rem 0; border-top: 1px solid var(--land-border); border-bottom: 1px solid var(--land-border) }
.land-trusted-text { color: rgba(255,255,255,0.25); font-size: .78rem; font-weight: 500; text-transform: uppercase; letter-spacing: .12em }
.land-trusted-logo { color: rgba(255,255,255,0.18); font-size: 1rem; font-weight: 700; letter-spacing: .05em; transition: color .3s var(--land-ease) }
.land-trusted-logo:hover { color: rgba(255,255,255,0.5) }

/* ── Sections ── */
.land-section { position: relative; z-index: 10; padding: 5.5rem 0 }
.land-section-surface { background: rgba(255,255,255,0.015) }
.land-section-surface2 { background: rgba(13,148,136,0.025) }

/* ── Glass Card Mixin (shared hover) ── */
.bento-item, .showcase-card, .demo-card, .security-card, .testimonial-card, .faq-item {
  background: var(--land-surface-card);
  border: 1px solid var(--land-border);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: all .4s var(--land-ease);
}
.bento-item:hover, .showcase-card:hover, .demo-card:hover, .security-card:hover, .testimonial-card:hover, .faq-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(13,148,136,0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(13,148,136,0.15), 0 0 0 1px rgba(13,148,136,0.1);
}

/* ── Bento Grid ── */
.bento-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem }
.bento-item {
  border-radius: var(--land-radius); padding: 1.75rem; overflow: hidden;
  animation: fadeSlideUp .6s var(--land-ease) both;
}
.bento-item:nth-child(1) { animation-delay: 0ms }
.bento-item:nth-child(2) { animation-delay: 80ms }
.bento-item:nth-child(3) { animation-delay: 160ms }
.bento-item:nth-child(4) { animation-delay: 240ms }
.bento-item:nth-child(5) { animation-delay: 320ms }
.bento-item:nth-child(6) { animation-delay: 400ms }
.bento-item:nth-child(7) { animation-delay: 480ms }
.bento-item:nth-child(8) { animation-delay: 560ms }
.bento-wide { grid-column: span 2 }
.bento-tag {
  display: inline-block; padding: .2rem .65rem; border-radius: var(--land-radius-badge);
  font-size: .7rem; font-weight: 600; color: var(--land-accent);
  background: rgba(13,148,136,0.08); border: 1px solid rgba(13,148,136,0.2);
  margin-bottom: .75rem; text-transform: uppercase; letter-spacing: .06em;
}
.bento-item h3 { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: .4rem; letter-spacing: -0.01em }
.bento-item p { color: var(--land-text-dim); font-size: .88rem; line-height: 1.65; margin-bottom: 1rem }
.bento-illustration {
  background: rgba(0,0,0,0.2); border-radius: 12px; padding: .75rem;
  border: 1px solid rgba(255,255,255,0.04);
}
.bento-illustration svg { width: 100%; display: block }

/* ── Steps ── */
.land-step { text-align: center; padding: 2rem 1.5rem }
.land-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--land-accent), var(--land-accent-2));
  color: #fff; font-weight: 800; font-size: 1rem; margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(13,148,136,0.3);
}
.land-step-icon { margin: 0 auto 1.25rem; width: 80px; height: 80px; display: flex; align-items: center; justify-content: center }
.land-step-icon svg { width: 64px; height: 64px }
.land-step h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: .5rem }
.land-step p { color: var(--land-text-dim); font-size: .88rem; line-height: 1.65 }

/* ── Canvas Features ── */
.canvas-features-list { list-style: none; padding: 0; margin: 2rem 0 0 }
.canvas-features-list li { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1.25rem }
.cf-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  backdrop-filter: blur(8px);
}
.canvas-features-list strong { color: #fff; font-size: .9rem; display: block; margin-bottom: .15rem }
.canvas-features-list span { color: var(--land-text-dim); font-size: .82rem; line-height: 1.55 }

/* ── Canvas Showcase Card ── */
.canvas-showcase-card {
  background: rgba(26,26,46,0.9); border-radius: var(--land-radius); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  transition: box-shadow .4s var(--land-ease);
}
.canvas-showcase-card:hover { box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(13,148,136,0.1) }
.cs-header { display: flex; align-items: center; gap: .75rem; padding: .6rem 1rem; background: rgba(255,255,255,0.03); border-bottom: 1px solid var(--land-border) }
.cs-dots { display: flex; gap: 5px } .cs-dots span { width: 8px; height: 8px; border-radius: 50% }
.cs-dots span:first-child { background: #ef4444 } .cs-dots span:nth-child(2) { background: #f59e0b } .cs-dots span:nth-child(3) { background: #22c55e }
.cs-title { flex: 1; font-size: .75rem; color: rgba(255,255,255,0.45); text-align: center }
.cs-actions { display: flex; gap: .5rem }
.cs-btn { padding: 2px 8px; border-radius: 6px; font-size: .65rem; color: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.08) }
.cs-body { display: flex }
.cs-tools { width: 44px; background: rgba(255,255,255,0.025); border-right: 1px solid var(--land-border); padding: .5rem .35rem; display: flex; flex-direction: column; align-items: center; gap: 4px }
.cs-tool { width: 28px; height: 28px; border-radius: 6px; background: rgba(255,255,255,0.05) }
.cs-tool.active { background: rgba(13,148,136,0.25); box-shadow: 0 0 0 1px var(--land-accent) }
.cs-divider { width: 20px; height: 1px; background: var(--land-border); margin: 2px 0 }
.cs-color { width: 16px; height: 16px; border-radius: 50%; border: 2px solid transparent }
.cs-color.active { border-color: #fff; box-shadow: 0 0 0 2px rgba(13,148,136,0.4) }
.cs-canvas { flex: 1; background: #fff; min-height: 280px }
.cs-canvas svg { display: block }
.cs-pages { display: flex; align-items: center; gap: 4px; padding: .4rem .75rem; background: rgba(255,255,255,0.025); border-top: 1px solid var(--land-border) }
.cs-page, .cs-page-add { width: 28px; height: 22px; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 600; color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06) }
.cs-page.active { background: rgba(13,148,136,0.2); color: var(--land-accent); border-color: var(--land-accent) }

/* ── Showcase Cards ── */
.showcase-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem }
.showcase-card { border-radius: var(--land-radius); padding: 2rem 1.5rem; text-align: center }
.showcase-val {
  font-size: 2.8rem; font-weight: 800;
  background: linear-gradient(135deg, var(--land-accent), var(--land-accent-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1.2; letter-spacing: -0.02em;
}
.showcase-label { color: var(--land-text-dim); font-size: .85rem; margin: .5rem 0 1.25rem }
.showcase-bars { display: flex; align-items: flex-end; justify-content: center; gap: 4px; height: 50px }
.showcase-bar { width: 8px; border-radius: 3px 3px 0 0; background: var(--land-accent); opacity: .6; animation: barGrow .8s var(--land-ease) forwards }

/* ── Demo Cards ── */
.demo-card { border-radius: var(--land-radius); padding: 2rem; text-align: center; height: 100% }
.demo-card-icon {
  width: 72px; height: 72px; border-radius: 18px;
  background: rgba(13,148,136,0.08); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 30px rgba(13,148,136,0.1);
}
.demo-card h3 { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: .5rem }
.demo-card p { color: var(--land-text-dim); font-size: .88rem; line-height: 1.65; margin-bottom: 1rem }
.demo-creds { background: rgba(0,0,0,0.25); border-radius: 10px; padding: 1rem; text-align: left; font-size: .82rem; color: rgba(255,255,255,0.6); line-height: 1.8; border: 1px solid rgba(255,255,255,0.04) }
.demo-creds span { color: rgba(255,255,255,0.3); font-size: .75rem }
.demo-extra-users { text-align: center; margin-top: 2.5rem; padding: 1.5rem; background: var(--land-surface-card); border-radius: 12px; border: 1px solid var(--land-border); backdrop-filter: blur(12px) }
.demo-extra-users p { color: var(--land-text-dim); font-size: .85rem; margin-bottom: .75rem }
.demo-extra-user { text-align: left }
.demo-extra-user strong { display: block; color: #fff; font-size: .85rem }
.demo-extra-user span { color: rgba(255,255,255,0.35); font-size: .8rem; font-family: 'Figtree', monospace }

/* ── Onboarding Timeline ── */
.onboarding-timeline { max-width: 700px; margin: 0 auto; position: relative; padding-left: 40px }
.onboarding-timeline::before {
  content: ''; position: absolute; left: 18px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--land-accent), var(--land-indigo), var(--land-purple));
}
.onboarding-step { position: relative; margin-bottom: 2rem; padding-bottom: .5rem; animation: fadeSlideUp .5s var(--land-ease) both }
.onboarding-step:nth-child(1) { animation-delay: 100ms }
.onboarding-step:nth-child(2) { animation-delay: 200ms }
.onboarding-step:nth-child(3) { animation-delay: 300ms }
.onboarding-step:nth-child(4) { animation-delay: 400ms }
.onboarding-step:nth-child(5) { animation-delay: 500ms }
.onboarding-step:last-child { margin-bottom: 0 }
.ob-num {
  position: absolute; left: -40px; top: 0; width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--land-accent), var(--land-accent-2));
  color: #fff; font-weight: 800; font-size: .9rem;
  display: flex; align-items: center; justify-content: center; z-index: 2;
  box-shadow: 0 0 0 4px var(--land-bg), 0 0 20px rgba(13,148,136,0.3);
}
.ob-content h4 { color: #fff; font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem }
.ob-content p { color: var(--land-text-dim); font-size: .88rem; line-height: 1.7; margin-bottom: .5rem }
.ob-content p a { color: #5eead4; text-decoration: none; transition: color .2s } .ob-content p a:hover { color: var(--land-accent-2) }
.ob-content p strong { color: rgba(255,255,255,0.85) }
.ob-tip {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem .8rem; border-radius: 8px;
  background: rgba(13,148,136,0.06); border: 1px solid rgba(13,148,136,0.15);
  color: #5eead4; font-size: .78rem;
}

/* ── Security Cards ── */
.security-card { border-radius: 14px; padding: 1.75rem; height: 100% }
.sec-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
  box-shadow: 0 0 20px rgba(13,148,136,0.08);
}
.security-card h4 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: .4rem }
.security-card p { color: var(--land-text-dim); font-size: .85rem; line-height: 1.65; margin: 0 }

/* ── Testimonials ── */
.testimonial-card {
  border-radius: var(--land-radius); padding: 1.75rem; height: 100%;
  display: flex; flex-direction: column;
}
.tc-stars { display: flex; gap: 2px; margin-bottom: 1rem }
.tc-text { color: var(--land-text-dim); font-size: .9rem; line-height: 1.75; flex: 1; font-style: italic; margin-bottom: 1.25rem }
.tc-author { display: flex; align-items: center; gap: .75rem; border-top: 1px solid var(--land-border); padding-top: 1rem }
.tc-avatar {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .85rem; flex-shrink: 0;
}
.tc-author strong { display: block; color: #fff; font-size: .85rem }
.tc-author span { color: var(--land-text-dim); font-size: .75rem }

/* ── FAQ ── */
.faq-item { border-radius: 12px; margin-bottom: .75rem; overflow: hidden }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 1.1rem 1.25rem;
  background: transparent; border: none; color: #fff;
  font-size: .95rem; font-weight: 600; cursor: pointer; text-align: left; gap: 1rem;
  font-family: inherit; min-height: 44px;
}
.faq-question svg { flex-shrink: 0; color: rgba(255,255,255,0.25); transition: transform .3s var(--land-ease), color .3s }
.faq-question:not(.collapsed) svg { transform: rotate(180deg); color: var(--land-accent) }
.faq-answer { padding: 0 1.25rem 1.1rem; color: var(--land-text-dim); font-size: .88rem; line-height: 1.75 }

/* ── Legal Pages ── */
.legal-page { max-width: 800px; margin: 0 auto; padding-bottom: 3rem }
.legal-page h2 { color: #fff; font-size: 1.2rem; font-weight: 700; margin-top: 2rem; margin-bottom: .75rem; padding-bottom: .5rem; border-bottom: 1px solid var(--land-border) }
.legal-page p { color: var(--land-text-dim); font-size: .9rem; line-height: 1.8; margin-bottom: 1rem }
.legal-page ul { color: var(--land-text-dim); font-size: .9rem; line-height: 1.8; padding-left: 1.5rem; margin-bottom: 1rem }
.legal-page li { margin-bottom: .4rem }
.legal-page strong { color: rgba(255,255,255,0.85) }
.legal-page code { background: rgba(13,148,136,0.1); color: #5eead4; padding: .15rem .4rem; border-radius: 4px; font-size: .82rem }
.cookie-table { overflow-x: auto; margin: 1rem 0 }
.cookie-table table { width: 100%; border-collapse: collapse; font-size: .85rem }
.cookie-table th { background: rgba(13,148,136,0.08); color: #5eead4; padding: .6rem .8rem; text-align: left; font-weight: 600; border-bottom: 1px solid var(--land-border) }
.cookie-table td { padding: .6rem .8rem; border-bottom: 1px solid var(--land-border); color: var(--land-text-dim) }

/* ── Footer ── */
.footer-links li { margin-bottom: .4rem }
.footer-links a, .footer-links span { color: rgba(255,255,255,0.35); font-size: .82rem; text-decoration: none; transition: color .25s var(--land-ease) }
.footer-links a:hover { color: var(--land-accent) }

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--land-border); padding: 1rem 0;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.4);
}

/* ── CTA ── */
.land-cta { position: relative; z-index: 10; padding: 5.5rem 0; text-align: center }

/* ── Footer Section ── */
.land-footer { position: relative; z-index: 10; border-top: 1px solid var(--land-border) }

/* ── Responsive ── */
@media (max-width: 991px) {
  .bento-grid { grid-template-columns: 1fr }
  .bento-wide { grid-column: span 1 }
  .showcase-cards { grid-template-columns: 1fr }
  .land-section { padding: 4rem 0 }
}

@media (max-width: 768px) {
  .land-title { font-size: clamp(2rem, 7vw, 2.5rem) }
  .land-hero { padding: 6rem 0 3rem }
  .hero-checks { flex-direction: column; gap: .5rem }
  .showcase-cards { grid-template-columns: 1fr }
  .hero-mockup-inner { transform: rotateY(0) rotateX(0) }
  .hero-mockup-inner:hover { transform: none }
  .hero-mockup-3d { perspective: none; padding: 1rem 0 }
  .onboarding-timeline { padding-left: 32px }
  .land-cta { padding: 4rem 0 }
}

@media (max-width: 480px) {
  .land-title { font-size: 1.8rem }
  .land-subtitle { font-size: 1rem }
  .btn-land-primary, .btn-land-outline { padding: .6rem 1.2rem; font-size: .85rem; min-height: 44px }
  .bento-item { padding: 1.25rem }
  .showcase-val { font-size: 2.2rem }
  .demo-card { padding: 1.25rem }
  .land-section { padding: 3rem 0 }
  .faq-question { padding: 1rem; font-size: .88rem; min-height: 44px }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto }
  .land-orb { animation: none }
  .hero-gradient { animation: none }
  .land-badge { animation: none }
}
