/* ═══════════════════════════════════════════════════════════════
   SLIMUX — Premium Agency Website
   Design System & Global Styles
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ──────────────────────────────────── */
:root {
  /* Colors */
  --bg:             #09090b;
  --bg-elevated:    #0f0f12;
  --surface:        #131316;
  --border:         #27272a;
  --border-hover:   #3f3f46;
  --text:           #fafafa;
  --text-muted:     #a1a1aa;
  --text-dim:       #52525b;
  --accent:         #a78bfa;
  --accent-hover:   #c4b5fd;
  --accent-glow:    rgba(167, 139, 250, 0.15);
  --accent-glow-strong: rgba(167, 139, 250, 0.25);
  --green:          #4ade80;
  --red:            #f87171;
  --yellow:         #facc15;

  /* Typography */
  --font:           'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:           'JetBrains Mono', 'Fira Code', 'Consolas', monospace;

  /* Spacing */
  --container:      1400px;
  --px:             clamp(1.25rem, 4vw, 3rem);

  /* Borders */
  --radius:         12px;
  --radius-sm:      8px;
  --radius-lg:      16px;
  --radius-full:    9999px;

  /* Transitions */
  --ease:           cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
  --duration:       0.3s;
  --duration-slow:  0.6s;
}

/* ── Light Theme ───────────────────────────────────────────── */
[data-theme="light"] {
  --bg:             #f8f9fa;
  --bg-elevated:    #ffffff;
  --surface:        #ffffff;
  --border:         #e4e4e7;
  --border-hover:   #d4d4d8;
  --text:           #18181b;
  --text-muted:     #52525b;
  --text-dim:       #a1a1aa;
  --accent:         #7c3aed;
  --accent-hover:   #6d28d9;
  --accent-glow:    rgba(124, 58, 237, 0.08);
  --accent-glow-strong: rgba(124, 58, 237, 0.15);
  --green:          #16a34a;
  --red:            #dc2626;
  --yellow:         #ca8a04;
}

[data-theme="light"] body::before {
  opacity: 0.012;
}

[data-theme="light"] .site-header.scrolled .nav-container {
  background: rgba(248, 249, 250, 0.85);
  border-bottom-color: var(--border);
}

[data-theme="light"] .btn-outline:hover {
  background: rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .lang-option:hover {
  background: rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .lang-option.active {
  background: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .demo-tab:hover {
  background: rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .demo-tab.active {
  background: var(--surface);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .cookie-inner {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .hero-glow {
  background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 60%);
}

[data-theme="light"] .bento-card-inner::before {
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(124, 58, 237, 0.06) 0%, transparent 60%);
}

[data-theme="light"] .cta-glow {
  background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 60%);
}

[data-theme="light"] .pricing-featured .pricing-card-inner {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.04) 0%, var(--bg) 50%);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

img, svg { display: block; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}


/* ── Container ──────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--px);
  padding-right: var(--px);
}


/* ── Utility ────────────────────────────────────────────────── */
.text-muted { color: var(--text-muted); }


/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-full);
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--text-muted);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--border-hover);
  background: rgba(255,255,255,0.03);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
  height: 3.5rem;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
}

.btn-full { width: 100%; }

.btn-nav {
  padding: 0.5rem 1.5rem;
  font-size: 0.8125rem;
  height: auto;
}

.btn-arrow {
  transition: transform var(--duration) var(--ease);
}
.group:hover .btn-arrow {
  transform: translateX(4px);
}


/* ═══════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.5s var(--ease);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  transition: all 0.5s var(--ease);
}

.site-header.scrolled .nav-container {
  background: rgba(9, 9, 11, 0.72);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--px);
  height: 5rem;
  transition: height 0.5s var(--ease);
}

.site-header.scrolled .nav-inner {
  height: 4rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  transition: all 0.5s var(--ease);
}
.site-header.scrolled .logo-text {
  font-size: 1.25rem;
}
.logo-tm {
  font-size: 0.625rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

/* Nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-link {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--duration) var(--ease);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text);
  transition: width var(--duration) var(--ease);
}
.nav-link:hover {
  color: var(--text);
}
.nav-link:hover::after {
  width: 100%;
}

/* Nav actions */
.nav-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .nav-actions { display: flex; }
}

/* Language Switcher */
.lang-switcher {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding: 0.375rem 0.625rem;
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease);
  border: 1px solid transparent;
}
.lang-btn:hover {
  color: var(--text);
  border-color: var(--border);
}
.lang-btn .chevron {
  transition: transform var(--duration) var(--ease);
}
.lang-switcher.open .lang-btn .chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.375rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all var(--duration) var(--ease);
  z-index: 200;
}
.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  border-radius: 6px;
  color: var(--text-muted);
  transition: all var(--duration) var(--ease);
}
.lang-option:hover {
  background: rgba(255,255,255,0.05);
  color: var(--text);
}
.lang-option.active {
  color: var(--text);
  background: rgba(255,255,255,0.08);
}


/* ── Theme Toggle ──────────────────────────────────────────── */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  color: var(--text-muted);
  transition: all var(--duration) var(--ease);
  position: relative;
}

.theme-toggle:hover {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .theme-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

.theme-icon {
  position: absolute;
  transition: all 0.4s var(--ease-out);
}

/* Dark mode (default): show sun icon, hide moon */
.theme-icon-sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.theme-icon-moon {
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
}

/* Light mode: show moon icon, hide sun */
[data-theme="light"] .theme-icon-sun {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}

[data-theme="light"] .theme-icon-moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}


/* ── Mobile Toggle ──────────────────────────────────────────── */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
}
.mobile-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  transition: all var(--duration) var(--ease);
  transform-origin: center;
}
.mobile-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (min-width: 768px) {
  .mobile-toggle { display: none; }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease);
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding: 6rem var(--px) 3rem;
  gap: 2rem;
}
.mobile-link {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  opacity: 0;
  transform: translateY(1rem);
  transition: all 0.5s var(--ease);
}
.mobile-menu.open .mobile-link {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.2s; }

.mobile-menu-actions {
  width: 100%;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  opacity: 0;
  transform: translateY(1rem);
  transition: all 0.5s var(--ease) 0.25s;
}
.mobile-menu.open .mobile-menu-actions {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile theme row */
.mobile-theme-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 1.5rem;
  opacity: 0;
  transform: translateY(1rem);
  transition: all 0.5s var(--ease) 0.22s;
}

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

.mobile-theme-label {
  font-size: 1.125rem;
  color: var(--text-muted);
  font-weight: 500;
}

.theme-toggle-mobile {
  width: 44px;
  height: 44px;
}


/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 6rem;
}

/* Grid overlay */
.grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image:
    linear-gradient(var(--text) 1px, transparent 1px),
    linear-gradient(90deg, var(--text) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Radial glow */
.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  pointer-events: none;
  animation: glow-pulse 6s ease-in-out infinite alternate;
}
@keyframes glow-pulse {
  0% { opacity: 0.3; transform: scale(1); }
  100% { opacity: 0.6; transform: scale(1.15); }
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 3rem;
  padding-bottom: 8rem;
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.eyebrow-line {
  width: 2rem;
  height: 1px;
  background: var(--text-dim);
}

/* Headline */
.hero-headline {
  margin-bottom: 3rem;
}
.headline-line {
  display: block;
  font-size: clamp(3rem, 10vw, 8.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.headline-accent {
  position: relative;
  display: inline-block;
}
.headline-underline {
  position: absolute;
  bottom: -0.125em;
  left: 0;
  right: 0;
  height: 0.18em;
  background: var(--accent-glow-strong);
  border-radius: 2px;
}

/* Hero grid: subtitle + buttons */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: end;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
}

/* Stats at bottom */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.marquee-stats {
  overflow: hidden;
  white-space: nowrap;
}
.marquee-stats-track {
  display: flex;
  gap: 4rem;
  animation: marquee-scroll 25s linear infinite;
}
.stat-item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 1.25rem 0;
  flex-shrink: 0;
}
.stat-value {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
}


/* ── Animate In (hero elements) ─────────────────────────────── */
.animate-in {
  opacity: 0;
  transform: translateY(1.5rem);
  animation: fadeInUp 0.8s var(--ease-out) forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ═══════════════════════════════════════════════════════════════
   MARQUEE — Trusted By
   ═══════════════════════════════════════════════════════════════ */
.marquee-section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee-title {
  font-size: 0.8125rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 500;
}

.marquee-track {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-content {
  display: flex;
  gap: 3rem;
  animation: marquee-scroll 35s linear infinite;
  width: fit-content;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  color: var(--text-dim);
  transition: color var(--duration) var(--ease);
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
}
.marquee-logo:hover {
  color: var(--text-muted);
  border-color: var(--border);
  background: rgba(255,255,255,0.015);
}
.marquee-logo span {
  font-size: 0.9375rem;
  font-weight: 500;
  white-space: nowrap;
}


/* ═══════════════════════════════════════════════════════════════
   TRUST BAR — Compliance & Partnerships
   ═══════════════════════════════════════════════════════════════ */
.trust-bar-section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.trust-bar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .trust-bar {
    flex-direction: row;
    align-items: stretch;
    gap: 1.5rem;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--duration) var(--ease);
  flex: 1;
}

.trust-item:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
}

.trust-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--accent-glow);
  color: var(--accent);
  flex-shrink: 0;
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
  min-width: 0;
}

.trust-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.trust-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.trust-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  color: var(--text-dim);
  transition: all var(--duration) var(--ease);
  flex-shrink: 0;
}

.trust-link:hover {
  color: var(--accent);
  background: var(--accent-glow);
}


/* ═══════════════════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════════════════ */
.section-header {
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .section-header { margin-bottom: 4rem; }
}

.section-header-center {
  text-align: center;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.section-eyebrow-center {
  justify-content: center;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
}


/* ═══════════════════════════════════════════════════════════════
   CAPABILITIES — BENTO GRID
   ═══════════════════════════════════════════════════════════════ */
.capabilities-section {
  padding: 6rem 0;
  border-bottom: 1px solid var(--border);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bento-card {
  position: relative;
  overflow: hidden;
}
.bento-card-inner {
  background: var(--bg);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: background var(--duration-slow) var(--ease);
  position: relative;
}
@media (min-width: 768px) {
  .bento-card-inner { padding: 2.5rem; }
}

/* Hover glow effect */
.bento-card-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease);
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), var(--accent-glow) 0%, transparent 60%);
  pointer-events: none;
}
.bento-card:hover .bento-card-inner::before {
  opacity: 1;
}

.bento-large {
  grid-column: 1 / -1;
}
@media (min-width: 768px) {
  .bento-wide {
    grid-column: 1 / -1;
  }
}

.bento-number {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.bento-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform var(--duration) var(--ease);
}
.bento-card:hover .bento-title {
  transform: translateX(4px);
}

.bento-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.bento-visual {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 100px;
}
.bento-visual-wide {
  justify-content: flex-start;
}

.bento-svg {
  width: 100%;
  max-width: 200px;
  height: auto;
}
.bento-visual-wide .bento-svg {
  max-width: 360px;
}


/* ═══════════════════════════════════════════════════════════════
   LIVE DEMOS STUDIO
   ═══════════════════════════════════════════════════════════════ */
.demos-section {
  padding: 6rem 0;
  border-bottom: 1px solid var(--border);
}

/* Tab bar */
.demo-tabs {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 2rem;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 0.375rem;
  border: 1px solid var(--border);
  overflow-x: auto;
}

.demo-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  flex: 1;
  justify-content: center;
}
.demo-tab:hover {
  color: var(--text);
  background: rgba(255,255,255,0.04);
}
.demo-tab.active {
  color: var(--text);
  background: var(--bg);
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Browser Mockup */
.browser-mockup {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}

.browser-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.browser-dots {
  display: flex;
  gap: 6px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-dim);
  opacity: 0.3;
}
.dot-red { background: var(--red); opacity: 0.6; }
.dot-yellow { background: var(--yellow); opacity: 0.6; }
.dot-green { background: var(--green); opacity: 0.6; }

.browser-url {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  min-width: 200px;
  justify-content: center;
}

.browser-actions {
  display: flex;
  align-items: center;
}
.browser-status {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  color: var(--text-dim);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.browser-status.live .status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 4px rgba(74, 222, 128, 0); }
}

/* Browser viewport */
.browser-viewport {
  min-height: 400px;
  position: relative;
  background: var(--bg);
}

.demo-content {
  display: none;
  animation: demoFadeIn 0.5s var(--ease-out);
}
.demo-content.active {
  display: block;
}
@keyframes demoFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Demo inner mockups */
.demo-hero-bar {
  padding: 2rem 2rem 2.5rem;
  border-radius: 0;
}
.demo-nav-mock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.demo-brand {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}
.demo-nav-links-mock {
  display: none;
  gap: 1.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}
@media (min-width: 640px) {
  .demo-nav-links-mock { display: flex; }
}

.demo-hero-text {
  max-width: 480px;
}
.demo-hero-text h3 {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.demo-hero-text p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.25rem;
}
.demo-cta-btn {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  background: #fff;
  color: #000;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: transform var(--duration) var(--ease);
}
.demo-cta-btn:hover { transform: scale(1.04); }

/* Demo product / service cards */
.demo-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.demo-product-card,
.demo-service-card,
.demo-treatment-card {
  background: var(--bg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.demo-product-img {
  width: 100%;
  height: 80px;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
}
.demo-product-name { font-weight: 600; font-size: 0.875rem; }
.demo-product-price { font-size: 0.8125rem; color: var(--text-muted); }

.demo-service-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}
.demo-service-name { font-weight: 600; font-size: 0.875rem; }
.demo-service-tag { font-size: 0.75rem; color: var(--text-dim); }

.demo-treatment-card {
  justify-content: center;
}
.demo-treatment-name { font-weight: 600; font-size: 0.875rem; }
.demo-treatment-price { font-size: 1.125rem; font-weight: 700; color: var(--accent); }
.demo-treatment-time { font-size: 0.75rem; color: var(--text-dim); }


/* ═══════════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════════ */
.pricing-section {
  padding: 6rem 0;
  border-bottom: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}

.pricing-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--duration-slow) var(--ease);
}
@media (min-width: 768px) {
  .pricing-card {
    border-radius: 0;
  }
  .pricing-card:first-child {
    border-radius: var(--radius) 0 0 var(--radius);
  }
  .pricing-card:last-child {
    border-radius: 0 var(--radius) var(--radius) 0;
  }
  .pricing-card + .pricing-card {
    border-left: none;
  }
}

.pricing-card:hover {
  border-color: var(--border-hover);
}

.pricing-card-inner {
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

/* Featured card */
.pricing-featured {
  border-color: var(--accent);
  z-index: 1;
}
@media (min-width: 768px) {
  .pricing-featured {
    border-radius: var(--radius) !important;
    border: 1px solid var(--accent) !important;
    transform: scaleY(1.02);
    box-shadow: 0 0 40px -10px var(--accent-glow);
  }
}
.pricing-featured .pricing-card-inner {
  background: linear-gradient(180deg, rgba(167, 139, 250, 0.04) 0%, var(--bg) 50%);
}

.pricing-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0.5rem;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pricing-featured .pricing-card-inner {
  padding-top: 3.5rem;
}

.pricing-header {
  margin-bottom: 1.5rem;
}
.pricing-name {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.375rem;
}
.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}
.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-muted);
}
.price-value {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-custom {
  font-size: 2.5rem;
}
.price-period {
  font-size: 0.8125rem;
  color: var(--text-dim);
  margin-left: 0.375rem;
}

.pricing-plus {
  font-size: 1.25rem;
  color: var(--text-dim);
  margin: 0.25rem 0;
}

.pricing-monthly {
  display: flex;
  align-items: baseline;
  gap: 0.125rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.price-currency-sm {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
}
.price-value-sm {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.price-period-sm {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.pricing-features {
  flex: 1;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pricing-features li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 1.5rem;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}
.pricing-featured .pricing-features li::before {
  opacity: 1;
}


/* ═══════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════ */
.cta-section {
  padding: 6rem 0;
}

.cta-box {
  position: relative;
  text-align: center;
  padding: 4rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
}
@media (min-width: 768px) {
  .cta-box { padding: 6rem 4rem; }
}

.cta-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  pointer-events: none;
  animation: glow-pulse 5s ease-in-out infinite alternate;
}

.cta-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 1rem;
  position: relative;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  position: relative;
}


/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 280px;
  line-height: 1.6;
}

.footer-heading {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-col a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--duration) var(--ease);
}
.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.footer-belgium {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}


/* ═══════════════════════════════════════════════════════════════
   COOKIE CONSENT
   ═══════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 500;
  width: calc(100% - 2rem);
  max-width: 560px;
  opacity: 0;
  transition: all 0.5s var(--ease-out);
}
.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.cookie-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .cookie-inner {
    flex-direction: row;
    align-items: center;
  }
}

.cookie-text p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
   ═══════════════════════════════════════════════════════════════ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE FINE-TUNING
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .demo-cards-row {
    grid-template-columns: 1fr;
  }
  .stat-value {
    font-size: 1.5rem;
  }
  .price-value {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding-top: 5rem;
  }
  .hero-content {
    padding-bottom: 6rem;
  }
  .capabilities-section,
  .demos-section,
  .pricing-section,
  .cta-section {
    padding: 4rem 0;
  }
  .browser-topbar {
    padding: 0.625rem 0.75rem;
  }
  .browser-url {
    display: none;
  }
}
