/* ─────────────────────────────────────────
   Design tokens — Aether by Unite (light theme)
───────────────────────────────────────── */
:root {
  --bg: #F0F0F0;
  --surface: #FFFFFF;
  --surface-2: #F7F7F7;
  --border: #C6C6C6;
  --border-light: #D8D8D8;
  --accent: #FFB300;
  --accent-dim: #E5A000;
  --accent-glow: rgba(255, 179, 0, 0.15);
  --accent-rendered: #FCBF2F;
  --text: #000000;
  --muted: #727272;
  --dark: #16181F;
  --font: 'Outfit', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --max-w: 1140px;
  --nav-h: 68px;
}

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

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─────────────────────────────────────────
   Utility
───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--accent); }

/* ─────────────────────────────────────────
   Decorative logo watermark (global)
───────────────────────────────────────── */
.logo-watermark {
  position: absolute;
  right: -22vw;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(600px, 70vw, 1100px);
  height: clamp(600px, 70vw, 1100px);
  background: url('../logo.svg') no-repeat center / contain;
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.logo-watermark-sm {
  position: absolute;
  right: -8vw;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 40vw, 500px);
  height: clamp(280px, 40vw, 500px);
  background: url('../logo.svg') no-repeat center / contain;
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ─────────────────────────────────────────
   Buttons
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #000;
}
.btn-primary:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ─────────────────────────────────────────
   Navbar
───────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(240, 240, 240, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: background 0.3s;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  color: var(--text);
}

.logo-product {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.flash-icon {
  width: 1em;
  height: 1em;
  color: var(--accent);
  flex-shrink: 0;
}

.hero-title .flash-icon {
  width: 0.85em;
  height: 0.85em;
  vertical-align: middle;
  position: relative;
  top: -0.05em;
}

.logo-by {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.footer-by {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.9em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(0, 0, 0, 0.04);
}

/* Lang toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
}

.lang-btn {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}

.lang-btn.active {
  color: #000;
  background: var(--accent);
}

.lang-btn:not(.active):hover {
  color: var(--text);
}

.lang-sep { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-light);
  padding: 8px 0 16px;
}
.mobile-menu a {
  padding: 12px 24px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s;
}
.mobile-menu a:hover { color: var(--accent); }

/* ─────────────────────────────────────────
   Hero
───────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  overflow: hidden;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* Hero preview (phone screenshots) */
.hero-preview {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-phones-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 520px;
  width: 100%;
}

.hero-phone-back,
.hero-phone-front {
  position: absolute;
  width: 200px;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.04);
}

.hero-phone-back {
  left: calc(50% - 180px);
  bottom: 20px;
  transform: rotate(-5deg);
  opacity: 0.9;
  z-index: 1;
  border: 3px solid #000;
  border-radius: 20px;
}

.hero-phone-front {
  left: calc(50% - 40px);
  bottom: 0;
  transform: rotate(3deg);
  z-index: 2;
  border: 3px solid #000;
  border-radius: 20px;
}

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-phones-wrap {
    height: 400px;
  }
  .hero-phone-back,
  .hero-phone-front {
    width: 160px;
  }
  .hero-phone-back {
    left: calc(50% - 150px);
  }
  .hero-phone-front {
    left: calc(50% - 30px);
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--accent-glow);
  border: 1px solid rgba(255, 179, 0, 0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent-dim);
  text-transform: uppercase;
}

/* ─────────────────────────────────────────
   Live stats section
───────────────────────────────────────── */
#live-stats {
  background: var(--dark);
  color: #fff;
  padding: 72px 0;
}

.live-stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.live-stats-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.live-stats-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: 480px;
}

.live-stats-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.live-stats-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.live-stats-km {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.4);
  font-variant-numeric: tabular-nums;
}

.live-stats-km #liveKm {
  font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.02em;
}

.live-counter-value {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.live-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e53e3e;
  flex-shrink: 0;
  animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.live-stats-daily {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.daily-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.daily-stat-value {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}

.daily-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.daily-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  .live-stats-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .live-stats-desc {
    max-width: 100%;
  }
  .live-stats-counter {
    justify-content: center;
  }
  .live-stats-daily {
    flex-direction: column;
    gap: 24px;
  }
  .daily-stat-sep {
    width: 40px;
    height: 1px;
  }
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
}

.hero-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-benefits li::before {
  content: "/";
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
}

.hero-benefits li svg {
  display: none;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 8px;
}
.trust-badges .sep { color: var(--border); }

/* ─────────────────────────────────────────
   About secondary text
───────────────────────────────────────── */
.about-text-secondary {
  margin-top: 16px;
  font-size: 1rem;
}

/* ─────────────────────────────────────────
   Show more / Platform components
───────────────────────────────────────── */
.show-more-wrap {
  text-align: center;
  margin-top: 40px;
}

.features-more {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s ease;
}

.features-more.open {
  max-height: 5000px !important;
}

.section-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 56px 0 28px;
  color: var(--text);
}

.components-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.component-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.component-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px var(--accent-glow);
}

.component-stack {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-dim);
  letter-spacing: 0.04em;
  font-family: 'Courier New', Courier, monospace;
  margin-bottom: 12px;
}

.component-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.component-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

.arch-section {
  margin-top: 48px;
}

.arch-block {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85rem;
  color: var(--accent);
  line-height: 2;
  overflow-x: auto;
  margin-top: 16px;
  margin-bottom: 16px;
  white-space: pre;
}

.arch-note {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ─────────────────────────────────────────
   Section titles
───────────────────────────────────────── */
section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

/* ─────────────────────────────────────────
   Screenshots
───────────────────────────────────────── */
#screenshots { background: var(--bg); }

#screenshots .about-text { margin-bottom: 64px; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dim);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--text);
}

.screens-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}

.screens-row-reverse {
  grid-template-columns: 1fr 1.8fr;
}

@media (max-width: 800px) {
  .screens-row,
  .screens-row-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.screens-label { display: flex; flex-direction: column; gap: 14px; }

.screen-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dim);
  background: var(--accent-glow);
  border: 1px solid rgba(255, 179, 0, .25);
  border-radius: 20px;
  padding: 4px 12px;
  width: fit-content;
}

.screens-label h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.screens-label p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 400px;
}

/* Phone frames */
.phones-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 560px;
}

.phone-frame {
  position: absolute;
  width: 220px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.15), 0 0 0 1px rgba(0,0,0,.06);
  background: #f5f5f5;
}

.phone-frame img { display: block; width: 100%; height: auto; }

.phone-back {
  left: calc(50% - 200px);
  bottom: 0;
  transform: rotate(-4deg) translateY(20px);
  opacity: 0.85;
  z-index: 1;
}

.phone-front {
  left: calc(50% - 80px);
  bottom: 0;
  transform: rotate(2deg);
  z-index: 2;
}

@media (max-width: 800px) {
  .phones-wrap { height: 420px; }
  .phone-frame { width: 160px; }
  .phone-back { left: calc(50% - 160px); }
  .phone-front { left: calc(50% - 50px); }
}

/* Desktop / browser frame */
.desktop-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 24px 64px rgba(0,0,0,.08);
  background: #fff;
}

.desktop-bar {
  background: #f0f0f0;
  padding: 10px 16px;
  display: flex;
  gap: 7px;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
}

.desktop-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--border);
  display: block;
}

.desktop-bar span:nth-child(1) { background: #ff5f57; }
.desktop-bar span:nth-child(2) { background: #febc2e; }
.desktop-bar span:nth-child(3) { background: #28c840; }

.desktop-frame img {
  display: block;
  width: 100%;
  height: auto;
}

/* ─────────────────────────────────────────
   About
───────────────────────────────────────── */
#about { background: var(--surface); }

.about-text {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 680px;
  line-height: 1.8;
}

/* ─────────────────────────────────────────
   Features grid
───────────────────────────────────────── */
#features { background: var(--bg); }

#features .section-title { margin-bottom: 48px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.feature-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 16px;
  color: var(--accent);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   White-label
───────────────────────────────────────── */
#whitelabel { background: var(--surface); }

.whitelabel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.whitelabel-content p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-top: 16px;
}

.domain-examples {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.domain-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 14px 20px;
}

.domain-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}

.domain-line code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85rem;
  color: var(--dark);
  background: var(--accent-glow);
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

/* ─────────────────────────────────────────
   USP
───────────────────────────────────────── */
#usp { background: var(--bg); }

.usp-card {
  background: linear-gradient(135deg, var(--surface) 0%, #FFF9E6 100%);
  border: 1px solid rgba(255, 179, 0, 0.25);
  border-radius: var(--radius);
  padding: 56px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.usp-icon {
  width: 56px;
  height: 56px;
  color: var(--accent);
  margin: 0 auto 20px;
}

.usp-icon svg {
  width: 100%;
  height: 100%;
}

.usp-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--text);
}

.usp-card p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.85;
}

/* ─────────────────────────────────────────
   Contact
───────────────────────────────────────── */
/* ─────────────────────────────────────────
   Pricing info
───────────────────────────────────────── */
#pricing-info {
  background: var(--surface);
  text-align: center;
}

.pricing-info-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 640px;
  margin: 0 auto;
}

.pricing-info-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.pricing-info-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-glow);
  border: 1px solid rgba(255, 179, 0, 0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-dim);
  letter-spacing: 0.02em;
}

.pricing-info-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ─────────────────────────────────────────
   Customers
───────────────────────────────────────── */
#customers {
  background: var(--bg);
}

.customers-panel {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 64px 56px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative elements — same watermark pattern used elsewhere on the site */
.customers-grid-bg {
  display: none;
}

.customers-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.customers-glow--left {
  bottom: -120px;
  left: 5%;
  background: rgba(255, 179, 0, 0.06);
}

.customers-glow--right {
  bottom: -100px;
  right: 5%;
  background: rgba(255, 179, 0, 0.04);
}

/* Header */
.customers-header {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.customers-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.customers-eyebrow::before,
.customers-eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
  opacity: 0.4;
}

.customers-heading {
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: -0.01em;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.45;
}

/* Grid */
.customers-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

/* Dashed connector between cards */
.customers-connector {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.1);
}

.connector-h {
  width: 48px;
  height: 2px;
  display: block;
}

.connector-v {
  display: none;
}

/* Card */
.customer-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 20px 24px;
  flex: 1;
  max-width: 360px;
  position: relative;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.customer-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 179, 0, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Logo container */
.customer-logo-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.customer-card--columbus .customer-logo-wrap {
  background: rgba(253, 101, 0, 0.1);
  border: 1px solid rgba(253, 101, 0, 0.15);
}

.customer-card--sminn .customer-logo-wrap {
  background: rgba(39, 191, 255, 0.08);
  border: 1px solid rgba(39, 191, 255, 0.12);
}

.customer-logo {
  max-height: 26px;
  max-width: 40px;
  width: auto;
  object-fit: contain;
}

.customer-logo--columbus {
  max-height: 22px;
}

.customer-logo--sminn {
  max-height: 17px;
}

/* Info */
.customer-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  flex: 1;
  min-width: 0;
}

.customer-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.005em;
}

.customer-meta {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
}

.customer-link {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 2px;
  transition: color 0.15s;
}

.customer-card:hover .customer-link {
  color: var(--accent);
}

.customer-link svg {
  transition: transform 0.15s;
}

.customer-card:hover .customer-link svg {
  transform: translate(1px, -1px);
}

/* Live status indicator — matches live-stats section pulse pattern */
.customer-status {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 2px;
}

.customer-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34D399;
  position: relative;
  flex-shrink: 0;
}

.customer-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.3);
  animation: customerPulse 2s ease-in-out infinite;
}

@keyframes customerPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.8); opacity: 0; }
}

.customer-status-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #34D399;
  opacity: 0.7;
}

/* ─────────────────────────────────────────
   Trust / Partners
───────────────────────────────────────── */
#trust {
  padding: 80px 0;
  background: var(--bg);
}

.trust-heading {
  text-align: center;
  margin-bottom: 48px;
}

.trust-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.trust-title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.trust-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 20px 24px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.15s;
  min-width: 240px;
}

.trust-badge:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.trust-badge-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--surface-2);
}

.trust-badge-icon svg {
  width: 24px;
  height: 24px;
}

.trust-badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-badge-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.trust-badge-desc {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ─────────────────────────────────────────
   Contact
───────────────────────────────────────── */
#contact {
  background: var(--dark);
  color: #fff;
}

#contact .section-title {
  color: #fff;
}

#contact .contact-cta-wrap .btn-outline {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.25);
}
#contact .contact-cta-wrap .btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
}

.contact-top {
  margin-bottom: 48px;
}

.contact-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 580px;
  line-height: 1.75;
  margin-top: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-persons .contact-person + .contact-person {
  margin-top: 20px;
}

.contact-section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.contact-langs {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

.contact-role {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s;
}

.contact-link:hover {
  color: var(--accent);
}

.contact-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent);
}

.billing-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.billing-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.billing-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}

.billing-value {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.contact-cta-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ─────────────────────────────────────────
   Footer
───────────────────────────────────────── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-logo {
  font-weight: 800;
  color: #fff;
}

.footer-version {
  font-size: 0.75rem;
  opacity: 0.35;
}

/* ─────────────────────────────────────────
   Pricing
───────────────────────────────────────── */
#pricing {
  background: var(--bg);
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 80px;
}

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

.pricing-intro {
  font-size: 1.1rem;
  color: var(--muted);
  margin-top: 12px;
}

.pricing-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 48px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--surface) 0%, #FFF9E6 100%);
  box-shadow: 0 0 48px var(--accent-glow);
}

.pricing-dark {
  background: var(--dark);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.pricing-dark .pricing-plan-name {
  color: #fff;
}

.pricing-dark .pricing-connect-desc {
  color: rgba(255, 255, 255, 0.55);
}

.pricing-dark .pricing-value {
  color: #fff;
}

.pricing-dark .pricing-value-accent {
  color: var(--accent);
}

.pricing-dark .pricing-period {
  color: rgba(255, 255, 255, 0.4);
}

.pricing-dark .pricing-label {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-dark .pricing-divider {
  background: rgba(255, 255, 255, 0.08);
}

.pricing-dark .pricing-connect-feature {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-dark .pricing-row-highlight .pricing-label {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: var(--accent);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 20px;
}

.pricing-plan-name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--text);
  text-align: center;
}

.pricing-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}

.pricing-divider {
  height: 1px;
  background: var(--border-light);
  margin: 4px 0;
}

.pricing-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-shrink: 0;
  min-width: 120px;
}

.pricing-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}

.pricing-period {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}

.pricing-value-accent {
  color: var(--accent-dim);
  font-size: 1.6rem;
}

.pricing-label {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: right;
  line-height: 1.4;
  flex: 1;
}

.pricing-row-highlight .pricing-label {
  color: var(--text);
}

.pricing-examples {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.pricing-example-items {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-weight: 500;
}

.pricing-cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.pricing-note {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 12px;
  margin-bottom: 24px;
}

.pricing-dark .pricing-note {
  color: rgba(255, 255, 255, 0.6);
}

.pricing-connect-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  text-align: center;
  max-width: 500px;
  margin: 0 auto 28px;
}

.pricing-connect-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.pricing-connect-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
}

.pricing-connect-feature svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent);
}

@media (max-width: 768px) {
  .pricing-plans { grid-template-columns: 1fr; }
  .pricing-card { padding: 32px 24px; }
  .pricing-price { min-width: 0; }
  .pricing-label { text-align: right; }
}

/* ─────────────────────────────────────────
   Scroll reveal
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* ─────────────────────────────────────────
   Responsive
───────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  #navbar.nav-open .mobile-menu { display: flex; }
  #navbar.nav-open .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  #navbar.nav-open .hamburger span:nth-child(2) { opacity: 0; }
  #navbar.nav-open .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .whitelabel-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .usp-card { padding: 36px 24px; }

  .customers-panel { padding: 48px 20px 40px; }
  .customers-grid { flex-direction: column; align-items: stretch; }
  .connector-h { display: none; }
  .connector-v { display: block; width: 2px; height: 24px; margin: 0 auto; }
  .customer-card { max-width: 100%; }

  .footer-inner { justify-content: center; text-align: center; }

  section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .domain-line { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ─────────────────────────────────────────
   Pricing blur & modal
───────────────────────────────────────── */
.pricing-blur-wrap {
  position: relative;
  margin-bottom: 28px;
}

.pricing-rows-blurred {
  filter: blur(16px);
  user-select: none;
  pointer-events: none;
  opacity: 0.3;
}

.pricing-blur-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(2px);
  border-radius: var(--radius);
}

.pricing-blur-overlay svg {
  color: var(--accent);
}

.pricing-blur-overlay p {
  font-size: 0.95rem;
  color: var(--muted);
  text-align: center;
  margin: 0;
}

/* Modal backdrop */
.price-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.price-modal.open { display: flex; }

.price-modal-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.15);
}

.price-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  color: var(--muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, border-color 0.2s;
}

.price-modal-close:hover {
  color: var(--text);
  border-color: var(--text);
}

.price-modal-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-glow);
  border: 1px solid rgba(255, 179, 0, .25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--accent);
}

.price-modal-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.price-modal-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.price-modal-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-dim);
  text-decoration: none;
  background: var(--accent-glow);
  border: 1px solid rgba(255, 179, 0, .2);
  border-radius: 8px;
  padding: 10px 18px;
  margin-bottom: 20px;
  transition: background 0.2s;
}

.price-modal-email:hover { background: rgba(255, 179, 0, .2); }

.price-modal-cta {
  display: block;
  text-decoration: none;
  text-align: center;
}

@media (max-width: 520px) {
  .price-modal-card { padding: 36px 24px; }
  .price-modal-title { font-size: 1.3rem; }
}

/* ─────────────────────────────────────────
   Card thumbnails
───────────────────────────────────────── */
.card-thumbs {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  flex-wrap: wrap;
}

.card-thumb {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-light);
  background: none;
  padding: 0;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.card-thumb:hover {
  border-color: var(--accent);
  transform: scale(1.08);
  box-shadow: 0 0 0 2px var(--accent-glow);
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─────────────────────────────────────────
   Lightbox
───────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}

.lightbox.open { display: flex; }

.lightbox-img {
  max-width: min(90vw, 1200px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.8);
  cursor: default;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10000;
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ─────────────────────────────────────────
   Cookie Consent Banner
───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-text {
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: 560px;
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-accept {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.cookie-decline {
  padding: 10px 20px;
  font-size: 0.85rem;
  color: #fff !important;
  border-color: rgba(255,255,255,0.25);
}
.cookie-decline:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }
}
