/* ═══════════════════════════════════════════════════════
   STAYOS — Marketing CSS  (complete design system)
   Palette: #0f1520 base · #ECC97E gold
   Type: DM Serif Display (headings) · DM Sans (body)
═══════════════════════════════════════════════════════ */

/* ── Design Tokens ───────────────────────────────────── */
:root {
  --bg:            #0f1520;
  --bg-2:          #0D1220;
  --bg-3:          #111827;
  --surface:       rgba(255,255,255,0.07);
  --surface-2:     rgba(255,255,255,0.10);
  --surface-3:     rgba(255,255,255,0.14);
  --border:        rgba(255,255,255,0.12);
  --border-2:      rgba(255,255,255,0.16);
  --border-3:      rgba(255,255,255,0.22);
  --gold:          #ECC97E;
  --gold-2:        #F5DFA0;
  --gold-dim:      rgba(236,201,126,0.10);
  --gold-dim-2:    rgba(236,201,126,0.18);
  --gold-border:   rgba(236,201,126,0.22);
  --text:          #FFFFFF;
  --text-2:        rgba(255,255,255,0.78);
  --text-3:        rgba(255,255,255,0.56);
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:     0 8px 28px rgba(0,0,0,0.4);
  --shadow-lg:     0 20px 56px rgba(0,0,0,0.5);
  --shadow-xl:     0 32px 80px rgba(0,0,0,0.6);
  --radius-sm:     10px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     32px;
  --container:     1200px;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body.marketing-body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* ── Typography ──────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.12;
  color: var(--text);
}

h1 { font-size: 56px; letter-spacing: -0.02em; line-height: 1.05; }
h2 { font-size: 38px; letter-spacing: -0.02em; line-height: 1.12; }
h3 { font-size: 17px; letter-spacing: -0.01em; line-height: 1.4; }

p { font-size: 16px; line-height: 1.72; }
.section-sub,
.hero-subheadline { font-size: 16px; line-height: 1.72; }
.feat-desc { font-size: 13px; line-height: 1.6; }

/* ── Layout Container ────────────────────────────────── */
.m-container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: 40px;
}

@media (max-width: 768px) { .m-container { padding-inline: 20px; } }

/* ── Background Grain + Glow ─────────────────────────── */
.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.page-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse 90% 60% at 50% -5%, rgba(236,201,126,0.22) 0%, transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 24px 0;
}

.site-header-inner {
  width: min(100%, var(--container));
  margin-inline: auto;
  height: 56px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  border-radius: 16px;
  background: rgba(8,12,20,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.site-brand-logo {
  width: auto;
  height: 30px;
  max-height: 30px;
  object-fit: contain;
  object-position: left center;
}

.site-brand-wordmark {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.site-nav a,
.site-nav-button {
  background: transparent;
  border: 0;
  color: var(--text-2);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav-button:hover {
  color: var(--text);
  background: var(--surface-2);
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-login {
  color: var(--text-2);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.15s;
  text-decoration: none;
}
.header-login:hover { color: var(--text); }

.header-cta {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  background: var(--gold);
  color: #0A0C12;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}
.header-cta:hover { background: var(--gold-2); transform: translateY(-1px); }

/* Mobile menu button */
#mobileMenuBtn {
  display: none;
  background: transparent;
  border: 1px solid var(--border-2);
  border-radius: 8px;
  padding: 6px 8px;
  color: var(--text);
  line-height: 1;
}

/* Mobile drawer */
#mobileNavOverlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 49;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}
#mobileNavOverlay.open { display: block; }

#mobileNavDrawer {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(300px, 85vw);
  background: #0D1220;
  border-left: 1px solid var(--border-2);
  z-index: 50;
  flex-direction: column;
  padding: 24px 20px;
  box-shadow: -20px 0 60px rgba(0,0,0,0.6);
}
#mobileNavDrawer.open { display: flex; }

#mobileNavClose {
  align-self: flex-end;
  background: transparent;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  color: var(--text-2);
  font-size: 1.1rem;
  cursor: pointer;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
}

#mobileNavDrawer a,
#mobileNavDrawer button.site-nav-button {
  display: block;
  padding: 13px 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-2);
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  min-height: 44px;
}
#mobileNavDrawer a:hover, #mobileNavDrawer button.site-nav-button:hover { color: var(--text); }
#mobileNavDrawer a:last-of-type { border-bottom: 0; }

body.modal-open { overflow: hidden; }

/* ═══════════════════════════════════════════════════════
   BUTTONS (global)
═══════════════════════════════════════════════════════ */
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  background: var(--gold);
  color: #0A0C12;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}
.button-primary:hover { background: var(--gold-2); transform: translateY(-1px); }

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 22px;
  background: transparent;
  color: var(--text-2);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.button-secondary:hover { border-color: var(--border-3); color: var(--text); }

.button-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  background: rgba(255,255,255,0.10);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
}
.button-light:hover { background: rgba(255,255,255,0.16); }

.btn-view-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 22px;
  background: transparent;
  color: var(--text-2);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.btn-view-demo:hover { border-color: var(--border-3); color: var(--text); }

/* ═══════════════════════════════════════════════════════
   LANDING PAGE WRAPPER
═══════════════════════════════════════════════════════ */
.landing-page {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Section Badges ───────────────────────────────────── */
.section-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 20px;
  padding: 4px 12px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   1. HERO
═══════════════════════════════════════════════════════ */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 40px 100px;
  width: min(100%, var(--container));
  margin-inline: auto;
  position: relative;
}

/* Radial glow behind hero */
.hero-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at top left, rgba(236,201,126,0.05) 0%, transparent 65%);
  pointer-events: none;
}

/* Grid pattern overlay */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
  border-radius: 24px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-copy p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 6px 16px;
  flex-wrap: wrap;
}

.hero-trust-row span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-3);
  font-weight: 500;
}

.hero-trust-row span::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ── Hero Visual ─────────────────────────────────────── */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-visual-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  min-height: 520px;
}

.hero-photo-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(140deg, #1a2540 0%, #0f1928 50%, #080c14 100%);
  border: 1px solid var(--border-2);
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(236,201,126,0.04) 0%, transparent 60%);
}

.hero-floating-card {
  position: absolute;
  padding: 12px 16px;
  background: rgba(13,18,32,0.92);
  border: 1px solid var(--border-2);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  max-width: 220px;
}

.hero-floating-card span {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.hero-floating-card strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

.hero-floating-card-top {
  top: 20px;
  left: 16px;
}

.hero-floating-card-bottom {
  bottom: 28px;
  left: 16px;
}

/* Hero phone */
.hero-phone {
  position: absolute;
  right: 24px;
  bottom: -20px;
  width: 288px;
  padding: 12px;
  border-radius: 36px;
  background: linear-gradient(180deg, #151d2e 0%, #0a0f1a 100%);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08) inset;
}

.hero-phone-notch {
  width: 110px;
  height: 20px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
}

.hero-phone-screen {
  min-height: 480px;
  padding: 16px 14px 14px;
  border-radius: 26px;
  background: linear-gradient(180deg, #161c28 0%, #0e1420 100%);
}

.hero-phone-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hero-phone-property,
.hero-phone-room {
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
  font-weight: 500;
}

.hero-phone-head strong {
  color: var(--gold);
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.hero-phone-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.hero-phone-card {
  display: grid;
  gap: 8px;
  padding: 11px;
  border-radius: 13px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-phone-card-wide { grid-column: 1 / -1; }

.hero-phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  flex-shrink: 0;
}

.hero-phone-card strong {
  display: block;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-phone-card span {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,0.42);
  font-size: 0.7rem;
  line-height: 1.4;
}

.hero-phone-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 14px 6px;
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.hero-phone-nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  color: rgba(255,255,255,0.3);
}

.hero-phone-nav-active {
  background: var(--gold-dim);
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   2. PROOF BAR (trust strip)
═══════════════════════════════════════════════════════ */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 40px;
  background: rgba(255,255,255,0.018);
}

.trust-strip-inner {
  width: min(100%, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-strip-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.trust-strip-divider {
  width: 1px;
  height: 16px;
  background: var(--border-2);
  flex-shrink: 0;
}

.trust-strip-hotels {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-strip-hotels span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 4px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
}

/* ═══════════════════════════════════════════════════════
   3. FEATURES
═══════════════════════════════════════════════════════ */
.feature-row-section {
  padding: 80px 40px;
  width: min(100%, var(--container));
  margin-inline: auto;
}

.section-intro {
  margin-bottom: 48px;
}

.section-intro.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-intro .section-badge {
  margin-bottom: 16px;
}

.section-intro h2 {
  margin-bottom: 14px;
  max-width: 640px;
}

.section-intro p {
  font-size: 1.0625rem;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.7;
}

.feature-row {
  display: grid;
  gap: 16px;
}

.feature-row-3 {
  grid-template-columns: repeat(3, 1fr);
}

.feature-tile {
  padding: 28px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.feature-tile:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.feature-tile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.feature-tile h3 {
  font-size: 1.0625rem;
  margin-bottom: 10px;
}

.feature-tile p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* Feature pills row */
.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  justify-content: center;
}

.feature-pill {
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-2);
}

/* ═══════════════════════════════════════════════════════
   4. PRODUCT VISUAL (tabbed showcase)
═══════════════════════════════════════════════════════ */
.product-visual-section {
  padding: 80px 0;
  width: 100%;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.product-visual-header {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: 40px;
  text-align: center;
  margin-bottom: 48px;
}

.product-visual-header .section-badge {
  margin-bottom: 16px;
}

.product-visual-header h2 {
  margin-bottom: 14px;
  max-width: 580px;
  margin-inline: auto;
}

.product-visual-header p {
  font-size: 1.0625rem;
  color: var(--text-2);
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.7;
}

.product-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 4px;
  width: fit-content;
  margin-inline: auto;
}

.product-tab {
  padding: 8px 20px;
  background: transparent;
  border: none;
  border-radius: 11px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-3);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.product-tab.active {
  background: var(--surface-3);
  color: var(--text);
}

.product-tab:hover:not(.active) {
  color: var(--text-2);
}

.product-mockup-wrap {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: 40px;
  min-height: 440px;
}

.product-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-panel.active {
  display: grid;
}

.product-panel-copy h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.product-panel-copy p {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.5;
}

.product-feature-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ── Phone Mockup ─────────────────────────────────────── */
.mockup-phone {
  width: 220px;
  flex-shrink: 0;
  margin: 0 auto;
  border-radius: 32px;
  background: linear-gradient(180deg, #151d2e 0%, #0a0f1a 100%);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.07) inset;
  padding: 10px;
}

.mockup-phone-bar {
  display: flex;
  gap: 5px;
  padding: 6px 10px;
}

.mockup-phone-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.mockup-phone-notch {
  width: 80px; height: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  margin: 0 auto 8px;
}

.mockup-phone-screen {
  background: linear-gradient(180deg, #161c28 0%, #0e1420 100%);
  border-radius: 24px;
  overflow: hidden;
  /* No min-height — height is driven by content */
  height: auto;
}

.mockup-screen-hero {
  background: linear-gradient(135deg, rgba(236,201,126,0.12) 0%, rgba(236,201,126,0.04) 100%);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 12px;
  border: 1px solid var(--gold-border);
}

.mockup-hotel-label {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.mockup-greeting {
  font-family: 'DM Serif Display', serif;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 2px;
}

.mockup-clock {
  font-size: 0.58rem;
  color: var(--text-3);
  margin-bottom: 4px;
}

.mockup-room-tag {
  display: inline-block;
  padding: 2px 7px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--gold);
}

.mockup-section-label {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--text-3);
  margin-bottom: 8px;
}

.mockup-card-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.mockup-card {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
}

.mockup-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--gold-dim);
  border-radius: 6px;
  flex-shrink: 0;
}

.mockup-card span {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text);
}

/* ── Browser Mockup ───────────────────────────────────── */
.mockup-browser {
  width: 100%;
  border-radius: 16px;
  background: #0D1220;
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.mockup-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}

.mockup-browser-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
}

.mockup-browser-url {
  flex: 1;
  height: 22px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  font-size: 0.68rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  padding: 0 8px;
}

.mockup-browser-screen {
  display: flex;
  min-height: 280px;
}

.mockup-dash-sidebar {
  width: 110px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.025);
  border-right: 1px solid var(--border);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mockup-dash-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold);
  padding: 0 4px;
  margin-bottom: 10px;
}

.mockup-dash-nav-item {
  padding: 6px 8px;
  border-radius: 7px;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-3);
  cursor: default;
}

.mockup-dash-nav-item.active {
  background: var(--surface-2);
  color: var(--text);
}

.mockup-dash-main {
  flex: 1;
  padding: 14px 16px;
}

.mockup-dash-heading {
  font-family: 'DM Serif Display', serif;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 10px;
}

.mockup-dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}

.mockup-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px;
  background: var(--surface);
  border-radius: 9px;
  border: 1px solid var(--border);
}

.mockup-stat-val {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1;
}

.mockup-stat-lbl {
  font-size: 0.55rem;
  color: var(--text-3);
  font-weight: 500;
}

.mockup-dash-section-label {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 8px;
}

.mockup-request-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  margin-bottom: 5px;
  font-size: 0.62rem;
  color: var(--text-2);
}

.mockup-badge {
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.mockup-badge-open { background: rgba(236,201,126,0.18); color: var(--gold); }
.mockup-badge-done { background: rgba(74,222,128,0.14); color: #4ade80; }

/* ── Request Flow Mockup ─────────────────────────────── */
.mockup-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.mockup-flow-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  width: 100%;
}

.mockup-flow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  font-size: 1rem;
  flex-shrink: 0;
}

.mockup-flow-text strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}

.mockup-flow-text span {
  font-size: 0.8125rem;
  color: var(--text-2);
}

.mockup-flow-arrow {
  font-size: 1.1rem;
  color: var(--text-3);
  padding: 6px 0 6px 28px;
}

/* ═══════════════════════════════════════════════════════
   5. PROBLEM / SOLUTION
═══════════════════════════════════════════════════════ */
.problem-solution-section {
  padding: 80px 40px;
  width: 100%;
  scroll-margin-top: 80px;
  background: #131c2e;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.problem-solution-section > .section-intro,
.problem-solution-section > .problem-solution-grid {
  width: min(100%, var(--container));
  margin-inline: auto;
}

.problem-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.info-panel {
  padding: 28px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, background 0.2s;
}

.info-panel:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.18);
}

.info-panel-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.info-panel h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.info-panel p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}

.info-panel-accent {
  background: linear-gradient(135deg, rgba(236,201,126,0.08) 0%, rgba(236,201,126,0.03) 100%);
  border-color: var(--gold-border);
  grid-column: 1 / -1;
}

.info-panel-accent .info-panel-label { color: var(--gold); }
.info-panel-accent h3 { font-size: 1.2rem; }

/* ═══════════════════════════════════════════════════════
   6. SPLIT SECTION (How It Works + Pricing)
═══════════════════════════════════════════════════════ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 80px 40px;
  width: min(100%, var(--container));
  margin-inline: auto;
}

.split-panel {
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.split-panel .section-badge {
  margin-bottom: 14px;
}

.split-panel h2 {
  margin-bottom: 28px;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  flex-shrink: 0;
}

.step-item h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: 0;
}

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

.flow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Pricing panel */
.split-panel-pricing {
  background: linear-gradient(145deg, rgba(236,201,126,0.05) 0%, rgba(236,201,126,0.02) 60%, var(--surface) 100%);
  border-color: var(--gold-border);
}

.pricing-plan-name {
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-bottom: 8px;
}

.pricing-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-amount span {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-3);
}

.split-panel-pricing h2 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 16px;
}

.pricing-feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 24px;
}

.pricing-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-2);
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  line-height: 1.4;
}

.pricing-feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ═══════════════════════════════════════════════════════
   7. LANGUAGE STRIP
═══════════════════════════════════════════════════════ */
.lang-strip-section {
  width: 100%;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 40px;
}

.lang-strip-inner {
  width: min(100%, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.lang-strip-text {
  font-size: 0.875rem;
  color: var(--text-2);
  font-weight: 500;
}

.lang-strip-flags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.lang-strip-flags span {
  font-size: 1.3rem;
  line-height: 1;
}

/* ═══════════════════════════════════════════════════════
   8. CTA BAND
═══════════════════════════════════════════════════════ */
.cta-band-section {
  padding: 80px 40px;
  width: min(100%, var(--container));
  margin-inline: auto;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 48px 48px;
  background: linear-gradient(135deg, rgba(236,201,126,0.12) 0%, rgba(236,201,126,0.05) 50%, rgba(255,255,255,0.04) 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
}

.cta-band h2 {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  margin-bottom: 10px;
}

.cta-band p {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 480px;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.site-footer {
  background: #0c111a;
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
  margin-top: 0;
}

.site-footer-inner {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.site-footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-footer-brand-col .site-brand {
  margin-bottom: 4px;
}

.site-footer-desc {
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.6;
  max-width: 280px;
}

.site-footer-col-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 4px;
}

.site-footer-nav-col a,
.site-footer-contact-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.62);
  transition: color 0.15s;
  padding: 3px 0;
}

.site-footer-nav-col a:hover,
.site-footer-contact-col a:hover { color: var(--text); }

.site-footer-contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
}

.site-footer-email {
  font-size: 0.875rem;
  color: var(--gold);
}

.site-footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.site-footer-bottom p {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: 40px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.42);
}

/* ═══════════════════════════════════════════════════════
   DEMO MODAL
═══════════════════════════════════════════════════════ */
.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  padding: 20px;
}

.demo-modal[hidden] { display: none; }

.demo-card {
  background: #0D1220;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: min(880px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
}

.demo-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  color: var(--text-2);
  font-size: 1.1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.15s;
}
.demo-close:hover { background: var(--surface-3); }

.demo-slideshow {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.demo-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  color: var(--text-2);
  font-size: 0.9rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.15s;
}
.demo-arrow:hover { background: var(--surface-3); color: var(--text); }

.demo-slides {
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.demo-slide.active { display: flex; }

.demo-slide-label {
  font-size: 0.8125rem;
  color: var(--text-3);
  text-align: center;
  max-width: 480px;
  line-height: 1.5;
}

/* Demo phone */
.demo-phone-frame {
  width: 220px;
  border-radius: 32px;
  background: linear-gradient(180deg, #151d2e 0%, #0a0f1a 100%);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.07) inset;
  padding: 10px;
}

.demo-phone-notch-bar {
  width: 80px; height: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  margin: 0 auto 8px;
}

.demo-phone-screen {
  background: linear-gradient(180deg, #161c28 0%, #0e1420 100%);
  border-radius: 24px;
  padding: 14px 12px;
  min-height: 300px;
}

.demo-phone-header {
  background: linear-gradient(135deg, rgba(236,201,126,0.12) 0%, rgba(236,201,126,0.04) 100%);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid var(--gold-border);
}

.demo-phone-hotel {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.demo-phone-greeting {
  font-family: 'DM Serif Display', serif;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 2px;
}

.demo-phone-room {
  font-size: 0.6rem;
  color: var(--text-3);
}

.demo-phone-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-bottom: 8px;
}

.demo-phone-card {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text);
}

.demo-phone-card-icon {
  width: 18px; height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.demo-phone-request-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
}

.demo-phone-nav {
  display: flex;
  justify-content: space-around;
  padding: 6px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.demo-phone-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.5rem;
  color: var(--text-3);
}

.demo-phone-nav-item.active { color: var(--gold); }

.demo-phone-nav-icon {
  width: 16px; height: 16px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
}

.demo-phone-nav-item.active .demo-phone-nav-icon {
  background: var(--gold-dim);
}

/* Demo browser */
.demo-browser-frame {
  width: 100%;
  border-radius: 14px;
  background: #0D1220;
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.demo-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}

.demo-browser-dots {
  display: flex;
  gap: 4px;
}

.demo-browser-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
}

.demo-browser-url {
  flex: 1;
  height: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 5px;
  font-size: 0.62rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  padding: 0 8px;
}

.demo-browser-body {
  display: flex;
  min-height: 220px;
}

.demo-browser-sidebar {
  width: 100px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.02);
  border-right: 1px solid var(--border);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.demo-browser-brand {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold);
  padding: 0 4px;
  margin-bottom: 8px;
}

.demo-browser-nav-item {
  padding: 5px 7px;
  border-radius: 6px;
  font-size: 0.58rem;
  font-weight: 500;
  color: var(--text-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.demo-browser-nav-item.active {
  background: var(--surface-2);
  color: var(--text);
}

.demo-browser-badge {
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  padding: 1px 5px;
  border-radius: 999px;
  font-size: 0.5rem;
  font-weight: 700;
}

.demo-browser-main {
  flex: 1;
  padding: 12px 14px;
}

.demo-browser-heading {
  font-family: 'DM Serif Display', serif;
  font-size: 0.8rem;
  color: var(--text);
  margin-bottom: 8px;
}

.demo-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-bottom: 12px;
}

.demo-stat-card {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 7px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.demo-stat-val {
  font-family: 'DM Serif Display', serif;
  font-size: 0.9rem;
  color: var(--text);
}

.demo-stat-lbl {
  font-size: 0.5rem;
  color: var(--text-3);
}

.demo-req-row {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 7px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 0.58rem;
  color: var(--text-2);
  margin-bottom: 4px;
}

.demo-req-badge {
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  flex-shrink: 0;
}

.demo-req-badge.new  { background: rgba(236,201,126,0.18); color: var(--gold); }
.demo-req-badge.pend { background: rgba(99,179,237,0.18);  color: #63b3ed; }
.demo-req-badge.done { background: rgba(74,222,128,0.14);  color: #4ade80; }

/* Demo flow */
.demo-flow-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.demo-flow-panel {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.demo-flow-panel-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.demo-flow-textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 10px 12px;
  font-size: 0.8125rem;
  color: var(--text-2);
  line-height: 1.5;
  font-style: italic;
}

.demo-flow-send-btn {
  align-self: flex-end;
  padding: 6px 14px;
  background: var(--gold);
  color: #0A0C12;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: default;
}

.demo-flow-arrow-center {
  font-size: 1.5rem;
  color: var(--gold);
  text-align: center;
}

.demo-flow-notif-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
}

.demo-flow-notif-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.demo-flow-notif-body {
  font-size: 0.8125rem;
  color: var(--text-2);
  line-height: 1.5;
  font-style: italic;
}

.demo-flow-action-btns {
  display: flex;
  gap: 8px;
}

.demo-flow-action-btn {
  padding: 6px 12px;
  border-radius: 7px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-2);
  cursor: default;
}

.demo-flow-action-btn.gold {
  background: var(--gold-dim);
  border-color: var(--gold-border);
  color: var(--gold);
}

/* Demo features */
.demo-features-wrap {
  width: 100%;
}

.demo-features-header {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-2);
  text-align: center;
  margin-bottom: 20px;
}

.demo-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.demo-feature-card {
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
}

.demo-feature-icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.demo-feature-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.demo-feature-desc {
  font-size: 0.75rem;
  color: var(--text-3);
  line-height: 1.4;
}

/* Demo dots */
.demo-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.demo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--surface-3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s;
}

.demo-dot.active { background: var(--gold); }

/* ═══════════════════════════════════════════════════════
   PRICING MODAL
═══════════════════════════════════════════════════════ */
.pricing-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  padding: 20px;
}

.pricing-modal[hidden] { display: none; }

.pricing-modal-backdrop {
  position: absolute;
  inset: 0;
}

.pricing-modal-card {
  position: relative;
  background: #0D1220;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: min(760px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
}

/* Wide variant for two-plan layout */
.pricing-modal-card-wide {
  width: min(760px, 100%);
}

.pricing-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  color: var(--text-2);
  font-size: 1.1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.pricing-modal-card .section-badge {
  margin-bottom: 14px;
}

.pricing-modal-card h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

/* ── Pricing card (in split panel) ── */
.pricing-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.pricing-card-featured {
  background: rgba(236,201,126,0.06);
  border-color: rgba(236,201,126,0.28);
  position: relative;
}

.pricing-card-best-value {
  position: absolute;
  top: -10px;
  right: 12px;
  background: #ECC97E;
  color: #0f1215;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}

.pricing-card-label-gold { color: #ECC97E; }

.pricing-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 2px;
}

.pricing-card-amount {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 32px;
  color: #FFFFFF;
  line-height: 1;
}

.pricing-card-period {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.pricing-card-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  margin-bottom: 6px;
}

.pricing-card-saving {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(92,200,122,0.12);
  border: 1px solid rgba(92,200,122,0.2);
  border-radius: 20px;
  padding: 3px 9px;
  font-size: 11px;
  color: #5CC87A;
  font-weight: 600;
  margin-bottom: 14px;
  width: fit-content;
}

.pricing-feature-list-sm {
  font-size: 0.75rem;
  margin-bottom: 16px;
}

.pricing-feature-list-sm li {
  font-size: 0.75rem;
  padding: 5px 8px;
}

.pricing-card-cta {
  display: block;
  text-align: center;
  border-radius: 8px;
  padding: 10px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  transition: opacity 0.15s;
  margin-top: auto;
}

.pricing-card-cta-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #FFFFFF;
}

.pricing-card-cta-gold {
  background: #ECC97E;
  border: none;
  color: #0f1215;
}

.pricing-card-cta:hover { opacity: 0.85; }

@media (max-width: 640px) {
  .pricing-plans { grid-template-columns: 1fr; }
}

/* ── Pricing modal two-plan layout ── */
.pricing-modal-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .pricing-modal-plans { grid-template-columns: 1fr; }
}

.pricing-modal-plan {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.pricing-modal-plan-featured {
  background: rgba(236,201,126,0.06);
  border-color: rgba(236,201,126,0.28);
  position: relative;
}

.pricing-modal-plan-badge {
  position: absolute;
  top: -10px;
  right: 14px;
  background: #ECC97E;
  color: #0f1215;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-modal-plan-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}

.pricing-modal-plan-label-gold { color: #ECC97E; }

.pricing-modal-plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 3px;
}

.pricing-modal-plan-amount {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 40px;
  color: #FFFFFF;
  line-height: 1;
}

.pricing-modal-plan-period {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.pricing-modal-plan-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.pricing-modal-plan-saving {
  font-size: 12px;
  color: #5CC87A;
  font-weight: 600;
  margin-bottom: 16px;
}

.pricing-modal-plan-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  padding: 0;
  list-style: none;
  flex: 1;
}

.pricing-modal-plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.pricing-modal-plan-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0;
}

.pricing-modal-plan-btn {
  display: block;
  text-align: center;
  border-radius: 10px;
  padding: 12px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  transition: opacity 0.15s;
  margin-top: auto;
}

.pricing-modal-plan-btn:hover { opacity: 0.88; }

.pricing-modal-plan-btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #FFFFFF;
}

.pricing-modal-plan-btn-gold {
  background: #ECC97E;
  border: none;
  color: #0f1215;
}

.pricing-modal-plan-note {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════ */

/* Generic .container used by How It Works section */
.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: 40px;
}

@media (max-width: 768px) { .container { padding-inline: 20px; } }

/* Section tag pill + heading used in centered intros */
.section-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 0;
}

.how-it-works-section {
  padding: 120px 0;
  width: 100%;
  background: #0f1520;
  position: relative;
}

@media (max-width: 768px) {
  .how-it-works-section { padding: 72px 0; }
}

.how-it-works-section .section-intro {
  margin-bottom: 0;
}

/* Legacy how-it-works-* classes (kept for back-compat) */
.how-it-works-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  margin-top: 52px;
  margin-bottom: 52px;
  padding-inline: 40px;
  width: min(100%, var(--container));
  margin-inline: auto;
}

.how-it-works-line {
  position: absolute;
  top: 20px;
  left: 16.5%;
  right: 16.5%;
  height: 1px;
  border-top: 1px dashed rgba(236,201,126,0.25);
  z-index: 0;
}

.how-it-works-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.how-it-works-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0f1520;
  box-shadow: inset 0 0 0 100px rgba(236,201,126,0.10);
  border: 1px solid rgba(236,201,126,0.30);
  color: #ECC97E;
  font-size: 16px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.how-it-works-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 10px;
  line-height: 1.3;
}

.how-it-works-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 260px;
  margin: 0 auto;
}

.how-it-works-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  padding-inline: 40px;
  width: min(100%, var(--container));
  margin-inline: auto;
}

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS (hiw- shared classes)
   Used by .how-it-works-section via .container inner wrapper
═══════════════════════════════════════════════════════ */
.hiw-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  margin-top: 64px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  gap: 0;
}

.hiw-line {
  position: absolute;
  top: 20px;
  left: 20%;
  right: 20%;
  height: 1px;
  border-top: 1px dashed rgba(240,207,130,0.2);
  z-index: 0;
  pointer-events: none;
}

.hiw-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

/* Number circle — sits above the dashed line */
.hiw-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0D1117;
  border: 1px solid rgba(240,207,130,0.3);
  color: #F0CF82;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.hiw-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(240,207,130,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.hiw-icon i { font-size: 22px; color: #F0CF82; }

.hiw-title {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 10px;
  line-height: 1.3;
}

.hiw-body {
  font-size: 13px;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
  max-width: 240px;
  margin: 0 auto;
}

.hiw-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .hiw-line { display: none; }

  .hiw-steps {
    flex-direction: column;
    align-items: center;
    gap: 48px;
    margin-top: 48px;
  }

  .hiw-step {
    width: 100%;
    max-width: 320px;
    padding: 0 20px;
  }
}

/* ═══════════════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

.fade-up-delay-1 { transition-delay: 0.08s; }
.fade-up-delay-2 { transition-delay: 0.16s; }
.fade-up-delay-3 { transition-delay: 0.24s; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1040px)
═══════════════════════════════════════════════════════ */
@media (max-width: 1040px) {
  .hero-section {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 32px 80px;
  }

  .split-section {
    grid-template-columns: 1fr;
    padding: 60px 32px;
  }

  .problem-solution-section {
    padding: 60px 32px;
  }

  .feature-row-section {
    padding: 60px 32px;
  }

  .cta-band-section {
    padding: 60px 32px;
  }

  .site-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 820px)
═══════════════════════════════════════════════════════ */
@media (max-width: 820px) {
  #mobileMenuBtn { display: block; }
  .site-nav { display: none !important; }
  .site-header { padding: 10px 16px 0; }
  .site-header-inner {
    grid-template-columns: auto auto;
    gap: 0;
    padding: 0 12px;
    justify-content: space-between;
  }

  /* Hero — text first on mobile */
  .hero-section {
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
    padding: 40px 20px 48px !important;
    gap: 40px !important;
  }
  .hero-copy {
    order: 1 !important;
    max-width: 100% !important;
  }
  .hero-visual {
    order: 2 !important;
    justify-content: center !important;
    margin-top: 0 !important;
  }
  .hero-copy h1 {
    font-size: 34px !important;
  }
  .hero-copy p {
    font-size: 15px !important;
    max-width: 100% !important;
  }
  .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }
  .hero-actions .button-primary,
  .hero-actions .btn-view-demo {
    width: 100% !important;
    justify-content: center !important;
  }
  .hero-trust-row {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
  }

  .hero-visual-frame {
    min-height: 460px;
    width: 100%;
    max-width: 360px;
  }

  .hero-phone {
    right: 10px;
    width: 260px;
  }

  /* How It Works — stack vertically */
  .how-it-works-steps {
    flex-direction: column !important;
    align-items: center !important;
    gap: 40px !important;
    padding-inline: 20px !important;
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .how-it-works-line {
    display: none !important;
  }
  .how-it-works-step {
    max-width: 320px !important;
    padding: 0 !important;
  }
  .how-it-works-cta {
    padding-inline: 20px !important;
  }

  /* Sections */
  .feature-row-section,
  .how-it-works-section,
  .problem-solution-section,
  .cta-band-section {
    padding: 64px 20px !important;
  }

  .feature-row-3 {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .feature-tile {
    padding: 20px !important;
  }

  .problem-solution-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .info-panel {
    padding: 20px !important;
  }

  .split-section {
    grid-template-columns: 1fr !important;
    padding: 64px 20px !important;
  }

  .cta-band {
    grid-template-columns: 1fr !important;
    padding: 32px 24px !important;
    gap: 20px !important;
    text-align: center !important;
  }

  .cta-band h2 {
    font-size: 1.4rem !important;
  }

  .section-intro h2,
  .split-panel h2 {
    font-size: 26px !important;
  }

  .product-panel {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .product-mockup-wrap {
    padding-inline: 20px;
  }

  .product-visual-header {
    padding-inline: 20px;
  }

  .trust-strip {
    padding: 16px 20px;
  }

  .lang-strip-section {
    padding: 20px;
  }

  .lang-strip-inner {
    flex-direction: column;
    gap: 12px;
  }

  /* Footer */
  .site-footer-inner {
    grid-template-columns: 1fr !important;
    gap: 28px;
    padding-inline: 20px;
    padding-bottom: 28px;
  }

  .site-footer {
    padding-top: 40px;
  }

  .site-footer-bottom {
    padding: 16px 20px;
  }

  /* Demo modal */
  .demo-card {
    padding: 20px 16px;
  }

  .demo-slideshow {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
  }

  .demo-flow-grid {
    grid-template-columns: 1fr !important;
  }

  .demo-flow-arrow-center { text-align: center; }

  .demo-features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .pricing-modal-card {
    padding: 28px 20px;
  }

  .info-panel-accent {
    grid-column: 1 / -1;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — SMALL (≤ 640px)
═══════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .site-brand-wordmark { display: none; }

  .hero-copy h1 {
    font-size: 32px !important;
  }

  .hero-phone {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
  }

  .hero-visual-frame {
    min-height: 440px;
  }

  .hero-floating-card {
    display: none;
  }

  .demo-stat-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — XSMALL (≤ 375px)
═══════════════════════════════════════════════════════ */
@media (max-width: 375px) {
  .hero-section,
  .feature-row-section,
  .how-it-works-section,
  .problem-solution-section,
  .split-section,
  .cta-band-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .hero-copy h1 {
    font-size: 28px !important;
  }

  .section-intro h2,
  .split-panel h2 {
    font-size: 22px !important;
  }
}

/* ═══════════════════════════════════════════════════════
   PHONE MOCKUP — Mobile glitch fix
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-phone-mockup,
  .phone-mockup-wrap,
  [class*="phone-wrap"],
  [class*="mockup"] {
    width: 100%;
    max-width: 280px;
    margin: 32px auto 0;
    display: block;
    position: relative;
    left: auto;
    right: auto;
    transform: none;
    overflow: hidden;
  }

  .hero-phone-mockup img,
  .phone-mockup-wrap img,
  [class*="phone-wrap"] img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  /* Hero text must come first */
  .hero-container,
  .hero-section > * {
    flex-direction: column;
  }
  .hero-text { order: 1; }
  .hero-visual { order: 2; margin-top: 32px; }
}

/* Phone frame container used when phone is an HTML component */
.hero-phone-container {
  overflow: hidden;
  border-radius: 44px;
  max-width: 280px;
  width: 100%;
}

/* ═══════════════════════════════════════════════════════
   PROOF SECTION — responsive 3-col grid
═══════════════════════════════════════════════════════ */
.proof-section { overflow: hidden; }

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

@media (max-width: 900px) {
  .proof-grid { grid-template-columns: 1fr !important; max-width: 480px !important; margin: 0 auto; }
  .proof-section > div { padding: 0 20px !important; }
}

@media (max-width: 768px) {
  .proof-section { padding: 56px 0 !important; }
  .proof-section > div { padding: 0 20px !important; }
  .proof-grid { gap: 14px !important; }
}

/* ═══════════════════════════════════════════════════════
   LANDING PAGE MOBILE SPACING — Complete fix
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Sections */
  section.landing-page > *,
  .landing-page section,
  .landing-page .section { padding: 64px 20px !important; }

  /* Hero */
  .hero-section { padding: 80px 20px 48px !important; text-align: center; }
  h1 { font-size: 34px !important; line-height: 1.1 !important; }
  h2 { font-size: 26px !important; line-height: 1.15 !important; }
  h3 { font-size: 16px !important; line-height: 1.4 !important; }
  .hero-copy h1,
  .hero-headline { font-size: 34px !important; line-height: 1.1 !important; }
  .hero-copy p,
  .hero-subheadline { font-size: 15px !important; }
  .hero-actions,
  .hero-cta-row { flex-direction: column; gap: 10px; width: 100%; }
  .hero-actions a, .hero-actions button,
  .hero-cta-row a, .hero-cta-row button { width: 100% !important; text-align: center; }
  .hero-trust-row { flex-wrap: wrap; justify-content: center; gap: 10px; }

  /* Features grid */
  .features-grid { grid-template-columns: 1fr !important; gap: 12px !important; }

  /* Problem cards */
  .problem-cards, .problem-grid { grid-template-columns: 1fr !important; gap: 12px !important; }

  /* Pricing */
  .pricing-plans { grid-template-columns: 1fr !important; max-width: 380px !important; margin: 0 auto; }

  /* Product tabs */
  .product-tabs-content { flex-direction: column !important; }
  .product-tab-text { order: 1; }
  .product-tab-visual { order: 2; margin-top: 24px; }

  /* Tab bar */
  .tab-bar { flex-wrap: wrap; gap: 6px; justify-content: center; }
  .tab-btn { font-size: 12px; padding: 7px 14px; }

  /* Section headings — sizes handled by global h1/h2/h3 rules above */
  h2.section-heading,
  .section-intro h2 { font-size: 26px !important; line-height: 1.15 !important; }

  /* Cards */
  .card, .feature-card { padding: 20px !important; }
  .card-grid { grid-template-columns: 1fr !important; }

  /* Footer */
  .site-footer { padding: 48px 20px 32px !important; }
  .site-footer-inner { grid-template-columns: 1fr !important; gap: 32px !important; text-align: center; }

  /* Navbar */
  .site-header-inner { padding: 0 16px !important; }

  /* No horizontal overflow */
  body { overflow-x: hidden; }
}

/* ── Dashboard mockup on landing page — mobile scale fix ── */
@media (max-width: 768px) {
  .dash-mockup,
  .product-dash-mockup,
  [class*="dash-wrap"],
  [class*="dashboard-mockup"] {
    transform: scale(0.78) !important;
    transform-origin: top center !important;
    margin-bottom: -60px !important;
  }

  .dash-inner-date,
  [class*="tb-date"] {
    white-space: nowrap !important;
    font-size: 9px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 80px !important;
  }

  .dash-btn-gold,
  .tbb {
    padding: 4px 8px !important;
    font-size: 8px !important;
    white-space: nowrap !important;
  }
}

/* ═══════════════════════════════════════════════════════
   COMPACT LANDING CARDS
═══════════════════════════════════════════════════════ */

/* Feature tiles */
.feature-tile {
  padding: 16px !important;
}

.feature-tile-icon {
  width: 36px !important;
  height: 36px !important;
  margin-bottom: 10px !important;
}

.feature-tile h3 {
  font-size: 13px !important;
  line-height: 1.3 !important;
  margin-bottom: 5px !important;
}

.feature-tile p {
  font-size: 12px !important;
  line-height: 1.5 !important;
}

.feature-row {
  gap: 10px !important;
}

/* How-it-works steps */
.hiw-step {
  padding: 0 16px !important;
}

.hiw-icon {
  width: 36px !important;
  height: 36px !important;
  border-radius: 10px !important;
  margin-bottom: 10px !important;
}

.hiw-icon i {
  font-size: 16px !important;
}

.hiw-title {
  font-size: 13px !important;
  line-height: 1.3 !important;
  margin-bottom: 5px !important;
}

/* Proof-grid cards (inline-styled children) */
.proof-grid {
  gap: 10px !important;
}

.proof-grid > div {
  padding: 16px !important;
  gap: 10px !important;
}

/* Mobile compact */
@media (max-width: 768px) {
  .feature-tile {
    padding: 14px !important;
  }

  .feature-tile-icon {
    width: 30px !important;
    height: 30px !important;
    margin-bottom: 8px !important;
  }

  .feature-tile h3 {
    font-size: 12px !important;
  }

  .feature-tile p {
    font-size: 11px !important;
  }

  .feature-row {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
}

/* ═══════════════════════════════════════════════════════
   COMPACT CARD HEIGHTS — All landing sections
═══════════════════════════════════════════════════════ */

/* Hero — trim bottom padding */
.hero-section {
  padding-top: 80px !important;
  padding-bottom: 60px !important;
  min-height: auto !important;
}

/* Feature tiles — compact */
.feature-tile {
  padding: 16px !important;
  border-radius: 12px !important;
}

.feature-tile-icon,
.feat-ico {
  width: 34px !important;
  height: 34px !important;
  margin-bottom: 8px !important;
}

.feature-tile-icon i,
.feat-ico i { font-size: 16px !important; }

.feature-tile h3,
.feat-title {
  font-size: 13px !important;
  margin-bottom: 4px !important;
  line-height: 1.3 !important;
}

.feature-tile p,
.feat-desc {
  font-size: 12px !important;
  line-height: 1.5 !important;
}

/* Features grids — tighter gap */
.features-grid,
.feature-row {
  gap: 8px !important;
}

/* Problem cards */
.problem-card {
  padding: 18px !important;
}

/* How-it-works steps */
.hiw-step {
  padding: 0 20px !important;
}

/* Pricing cards */
.pricing-card {
  padding: 22px !important;
}

/* Product tab feature list items */
.tab-content-card,
.product-feature-item {
  padding: 12px 0 !important;
  gap: 8px !important;
}

/* Section vertical padding */
.feature-row-section,
.product-visual-section,
.problem-solution-section,
.split-section,
.cta-band-section,
.how-it-works-section,
.proof-section {
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}

@media (max-width: 768px) {
  .feature-row-section,
  .product-visual-section,
  .problem-solution-section,
  .split-section,
  .cta-band-section,
  .how-it-works-section,
  .proof-section {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }
}

/* ═══════════════════════════════════════════════════════
   MOBILE LAYOUT — Overflow, phone mockup, hero, footer
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Prevent all horizontal overflow */
  html { overflow-x: hidden !important; max-width: 100vw !important; }

  /* Hero two-column → single column */
  .hero-container,
  .hero-layout {
    flex-direction: column !important;
    gap: 32px !important;
    padding: 0 !important;
    text-align: center !important;
  }

  /* Phone mockup — constrained so it doesn't overflow */
  .landing-phone,
  .hero-phone {
    max-height: 400px !important;
    height: 400px !important;
    width: 200px !important;
    max-width: 200px !important;
    overflow: hidden !important;
    margin: 0 auto !important;
  }

  /* CTA row stack */
  .hero-cta-row {
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    gap: 10px !important;
  }

  .hero-cta-row a,
  .hero-cta-row button {
    width: 100% !important;
    max-width: 320px !important;
    text-align: center !important;
  }

  /* Features grid — 2 col on mobile */
  .features-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  /* Problem grid — 1 col */
  .problem-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  /* Pricing stack */
  .pricing-plans {
    grid-template-columns: 1fr !important;
    max-width: 360px !important;
    margin: 0 auto !important;
  }

  /* Generic footer grids */
  .footer-grid,
  .footer-columns {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    text-align: center !important;
  }
}
