/* ═══════════════════════════════════════════════════════
   Famylio Beta — CSS v2.0.0
   Premium landing page with image showcases
   ═══════════════════════════════════════════════════════ */

/* === RESET & VARIABLES === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --terra: #D4654A; --terra-soft: #E8846C; --terra-glow: rgba(212,101,74,0.08);
  --navy: #2C3340; --navy-soft: #4A5568; --slate: #6B7280;
  --bg: #EBE6DF; --white: #FFFFFF; --cream: #FFF8F0; --cloud: #E8E2DA;
  --olive: #5C6B4F; --sage: #5B8A72; --honey: #E8C86A; --camel: #B8956A;
  --shadow: 0 4px 24px rgba(44,51,64,0.08);
  --radius: 16px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', system-ui, sans-serif; background: var(--bg); color: var(--navy); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: var(--terra); text-decoration: none; transition: color .2s; }
img { max-width: 100%; display: block; }

/* === SCROLL REVEAL === */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === HEADER === */
.beta-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.88); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.bh-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.bh-logo img { border-radius: 8px; height: 38px !important; width: auto !important; max-height: 38px !important; }
.bh-partner {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--slate); font-weight: 500;
}
.bh-partner i { color: var(--terra); }

/* === TOPBAR CONTROLS === */
.bh-controls {
  display: flex; align-items: center; gap: 8px; margin-left: auto;
}
.bh-cta-mini {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 100px;
  background: var(--terra); color: white;
  font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 700;
  text-decoration: none; transition: all .25s;
  box-shadow: 0 2px 12px rgba(212,101,74,0.25);
}
.bh-cta-mini:hover { background: var(--terra-soft); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(212,101,74,0.35); color: white; }

.bh-dark-toggle {
  width: 38px; height: 38px; border-radius: 12px; border: none;
  background: var(--white); color: var(--slate); font-size: 15px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(44,51,64,0.07); transition: all .2s;
}
.bh-dark-toggle:hover { background: var(--terra); color: white; }
.bh-dark-toggle .bh-sun { display: none; }
.bh-dark-toggle .bh-moon { display: inline; }
html.dark .bh-dark-toggle .bh-sun { display: inline; }
html.dark .bh-dark-toggle .bh-moon { display: none; }

/* === LANG DROPDOWN === */
.bh-lang-wrap { position: relative; }
.bh-lang-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 12px; border-radius: 12px; border: none;
  background: var(--white); color: var(--navy);
  font-size: 12px; font-weight: 700; cursor: pointer;
  box-shadow: 0 2px 8px rgba(44,51,64,0.07);
  font-family: 'Poppins', sans-serif; transition: all .2s;
}
.bh-lang-btn:hover { background: var(--terra); color: white; }
.bh-lang-btn .fa-globe { font-size: 13px; }
.bhl-code { text-transform: uppercase; letter-spacing: 0.5px; font-size: 12px; font-weight: 700; }
.bhl-chevron { font-size: 9px; color: var(--slate); transition: transform .2s; }
.bh-lang-wrap.open .bhl-chevron { transform: rotate(180deg); }
.bh-lang-btn:hover .bhl-chevron { color: white; }

.bh-lang-dropdown {
  display: none; position: absolute; top: calc(100% + 6px); right: 0;
  min-width: 180px; background: var(--white);
  border: 1px solid var(--cloud); border-radius: 14px;
  overflow: hidden; box-shadow: 0 12px 40px rgba(44,51,64,0.15); z-index: 300;
}
.bh-lang-wrap.open .bh-lang-dropdown {
  display: block; animation: betaLangIn .2s ease;
}
@keyframes betaLangIn { from{opacity:0;transform:translateY(-6px)} to{opacity:1;transform:translateY(0)} }
.bhld-header {
  padding: 10px 14px 8px; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--slate);
  border-bottom: 1px solid var(--cloud);
  display: flex; align-items: center; gap: 6px;
}
.bhld-option {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; font-size: 13px; font-weight: 600; color: var(--navy);
  cursor: pointer; transition: background .15s; text-decoration: none;
}
.bhld-option:hover { background: var(--cream); }
.bhld-option.active { background: var(--terra-glow); color: var(--terra); }
.bhld-code {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 28px; height: 20px; border-radius: 5px;
  background: var(--terra); border: none; padding: 0 5px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.5px;
  color: white; flex-shrink: 0;
}
.bhld-option.active .bhld-code { background: var(--terra); color: white; }
.bhld-name { font-size: 13px; }
.bhld-check { margin-left: auto; font-size: 11px; color: var(--terra); }

/* ═══════════════════════════════════════════════════════
   HERO — Split layout with image
   ═══════════════════════════════════════════════════════ */
.beta-hero {
  padding: 80px 24px 60px;
  background: linear-gradient(160deg, #fff 0%, var(--cream) 40%, var(--bg) 100%);
  overflow: hidden;
}
.hero-inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.hero-text { max-width: 520px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--terra-glow); color: var(--terra);
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 24px;
  border: 1.5px solid rgba(212,101,74,0.2);
}
.hero-text h1 {
  font-size: clamp(32px, 5vw, 56px); font-weight: 900; color: var(--navy);
  line-height: 1.08; margin-bottom: 20px; letter-spacing: -1.5px;
}
.hero-accent { color: var(--terra); }
.hero-sub {
  font-size: 17px; color: var(--slate); line-height: 1.7; margin-bottom: 32px;
}
.hero-actions { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.hero-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 14px;
  background: var(--terra); color: white;
  font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 800;
  text-decoration: none; transition: all .3s;
  box-shadow: 0 6px 24px rgba(212,101,74,0.35);
}
.hero-btn-primary:hover {
  background: var(--terra-soft); transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(212,101,74,0.4); color: white;
}
.hero-trust { display: flex; align-items: center; gap: 12px; }
.hero-trust-avatars { display: flex; }
.hta {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cream); border: 2px solid var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; margin-left: -8px;
}
.hta:first-child { margin-left: 0; }
.hero-trust-text { font-size: 13px; color: var(--slate); font-weight: 500; }

/* Hero visual — image + floating badges */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-img-wrap {
  position: relative; border-radius: 24px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(44,51,64,0.30), 0 10px 28px rgba(44,51,64,0.14);
  max-width: 520px; width: 100%;
}
.hero-img-wrap img {
  width: 100%; height: auto; display: block;
  object-fit: cover; aspect-ratio: 1/1;
}
.hero-img-glow {
  position: absolute; inset: -40px; z-index: -1;
  background: radial-gradient(circle at 50% 50%, rgba(212,101,74,0.12) 0%, transparent 60%);
  filter: blur(40px); pointer-events: none;
}

/* Floating badges on hero image */
.hero-float {
  position: absolute;
  background: var(--white); border-radius: 12px;
  padding: 10px 16px; font-size: 12px; font-weight: 700; color: var(--navy);
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 32px rgba(44,51,64,0.12);
  animation: heroFloat 3s ease-in-out infinite;
  white-space: nowrap;
}
.hero-float i { color: var(--terra); font-size: 14px; }
.hero-float-1 { top: 12%; right: -24px; animation-delay: 0s; }
.hero-float-2 { bottom: 20%; left: -20px; animation-delay: 1s; }
.hero-float-3 { bottom: 6%; right: -12px; animation-delay: 2s; }
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ═══════════════════════════════════════════════════════
   STATS RIBBON
   ═══════════════════════════════════════════════════════ */
.beta-stats {
  padding: 0 24px; margin-top: -32px; position: relative; z-index: 10;
}
.stats-inner {
  max-width: 800px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border-radius: 20px;
  box-shadow: 0 8px 40px rgba(44,51,64,0.1);
  padding: 0; overflow: hidden;
}
.stat-item { padding: 24px 36px; text-align: center; flex: 1; }
.stat-n { font-size: 32px; font-weight: 900; color: var(--navy); letter-spacing: -0.5px; }
.stat-l { font-size: 11px; font-weight: 700; color: var(--slate); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.stat-sep { width: 1px; height: 44px; background: var(--cloud); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════
   SHOWCASE SECTIONS (image + text, alternating)
   ═══════════════════════════════════════════════════════ */
.showcase { padding: 80px 24px; }
.show-inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.showcase-reverse .show-inner { direction: rtl; }
.showcase-reverse .show-inner > * { direction: ltr; }

.show-img {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(44,51,64,0.28), 0 8px 24px rgba(44,51,64,0.12);
}
.show-img img { width: 100%; height: auto; display: block; object-fit: cover; }

.show-text { }
.show-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--terra-glow); color: var(--terra);
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 16px;
}
.show-tag-sage { background: rgba(91,138,114,0.1); color: var(--sage); }
.show-tag-olive { background: rgba(92,107,79,0.1); color: var(--olive); }

.show-text h2 {
  font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--navy);
  line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.5px;
}
.show-text p {
  font-size: 15px; color: var(--slate); line-height: 1.7; margin-bottom: 24px;
}
.show-features {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.show-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--navy);
}
.show-features li i { color: var(--sage); font-size: 15px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════
   CTA FULL-WIDTH with background image
   ═══════════════════════════════════════════════════════ */
.beta-cta {
  position: relative; padding: 100px 24px;
  overflow: hidden; text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  filter: brightness(0.4);
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(44,51,64,0.5) 0%, rgba(44,51,64,0.8) 100%);
}
.cta-content { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.cta-content h2 {
  font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: white;
  line-height: 1.12; margin-bottom: 16px; letter-spacing: -0.5px;
}
.cta-content p { font-size: 16px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 32px; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border-radius: 14px;
  background: var(--terra); color: white;
  font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 800;
  text-decoration: none; transition: all .3s;
  box-shadow: 0 6px 24px rgba(212,101,74,0.4);
}
.cta-btn:hover {
  background: var(--terra-soft); transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(212,101,74,0.5); color: white;
}

/* ═══════════════════════════════════════════════════════
   FEATURES (4-card grid)
   ═══════════════════════════════════════════════════════ */
.beta-features { max-width: 1120px; margin: 0 auto; padding: 80px 24px; }
.bf-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.bf-card {
  background: var(--white); border-radius: var(--radius); padding: 28px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04); transition: transform .25s, box-shadow .25s;
}
.bf-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); }
.bf-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
}
.bf-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.bf-card p { font-size: 13px; color: var(--slate); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS (3 steps)
   ═══════════════════════════════════════════════════════ */
.beta-how {
  max-width: 900px; margin: 0 auto; padding: 80px 24px; text-align: center;
}
.beta-how > h2 {
  font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--navy);
  margin-bottom: 48px; letter-spacing: -0.5px;
}
.how-grid {
  display: flex; align-items: flex-start; justify-content: center; gap: 0;
}
.how-step {
  flex: 1; max-width: 240px; text-align: center; padding: 0 16px;
}
.how-num {
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--terra); color: white;
  font-size: 22px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; box-shadow: 0 4px 16px rgba(212,101,74,0.3);
}
.how-step h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.how-step p { font-size: 13px; color: var(--slate); line-height: 1.6; }
.how-arrow {
  display: flex; align-items: center; justify-content: center;
  padding-top: 14px; color: var(--cloud); font-size: 20px;
  flex-shrink: 0; width: 48px;
}

/* ═══════════════════════════════════════════════════════
   FORM SECTION
   ═══════════════════════════════════════════════════════ */
.beta-form-section {
  max-width: 620px; margin: 0 auto; padding: 80px 24px;
}
.bfs-header { text-align: center; margin-bottom: 32px; }
.bfs-header h2 { font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.bfs-header p { font-size: 14px; color: var(--slate); }

.beta-slots {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 12px;
  background: rgba(16,185,129,0.08); color: #059669;
  font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 8px;
}
.beta-limit-warning {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 12px;
  background: rgba(245,158,11,0.1); color: #D97706;
  font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 8px;
}
.beta-alert-error {
  background: #FDE8EF; color: #DC2626;
  border: 1px solid rgba(220,38,38,0.15);
  border-radius: 12px; padding: 12px 16px; font-size: 13px; font-weight: 600;
  margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.beta-form { display: flex; flex-direction: column; gap: 16px; }
.bform-row { display: flex; gap: 14px; }
.bform-group { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.bform-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--navy); }
.req { color: var(--terra); }
.bform-input {
  padding: 12px 16px; border: 2px solid var(--cloud); border-radius: 12px;
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 500; color: var(--navy);
  background: var(--white); outline: none; transition: border-color .2s, box-shadow .2s; width: 100%;
}
.bform-input:focus { border-color: var(--terra); box-shadow: 0 0 0 3px rgba(212,101,74,0.1); }
.bform-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.bform-reseller {
  display: flex; align-items: center; gap: 8px;
  background: rgba(92,107,79,0.08); color: var(--olive);
  padding: 10px 16px; border-radius: 10px; font-size: 13px; font-weight: 600;
}
.bform-consent { display: flex; flex-direction: column; gap: 8px; }
.bfc-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.bfc-label input[type="checkbox"] {
  margin-top: 3px; accent-color: var(--terra); flex-shrink: 0;
  min-width: 18px; min-height: 18px;
}
.bfc-label span { font-size: 12px; color: var(--slate); line-height: 1.5; }
.bfc-label span a { color: var(--terra); font-weight: 600; }
.bform-submit {
  padding: 16px 24px; background: var(--terra); color: white;
  border: none; border-radius: 14px; font-family: 'Poppins', sans-serif;
  font-size: 15px; font-weight: 800; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 6px 20px rgba(212,101,74,0.35); transition: all .25s;
  margin-top: 4px;
}
.bform-submit:hover { background: var(--terra-soft); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(212,101,74,0.4); }
.bform-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* === SUCCESS === */
.beta-success {
  text-align: center; padding: 48px 32px;
  background: var(--white); border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.bs-icon { font-size: 56px; color: #059669; margin-bottom: 16px; }
.beta-success h2 { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.beta-success p { font-size: 14px; color: var(--slate); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */
.beta-faq { max-width: 1120px; margin: 0 auto; padding: 40px 24px 60px; }
.beta-faq h2 { font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 28px; text-align: center; }
.bfaq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.bfaq-item {
  background: var(--white); border-radius: 14px; padding: 22px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04); transition: transform .2s;
}
.bfaq-item:hover { transform: translateY(-2px); }
.bfaq-q { font-size: 14px; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.bfaq-q i { color: var(--terra); flex-shrink: 0; }
.bfaq-a { font-size: 13px; color: var(--slate); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.beta-footer {
  text-align: center; padding: 48px 24px 32px;
  border-top: 1px solid var(--cloud); background: var(--white);
}
.beta-footer img { margin: 0 auto 12px; border-radius: 8px; height: 34px !important; width: auto !important; max-height: 34px !important; }
.bf-copy { font-size: 12px; color: var(--slate); margin-bottom: 12px; }
.bf-links {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-bottom: 12px; flex-wrap: wrap;
}
.bf-links a { color: var(--terra); font-size: 13px; font-weight: 600; transition: opacity .2s; }
.bf-links a:hover { opacity: .7; }
.bf-company { font-size: 11px; color: var(--slate); opacity: .7; }
.bf-email { font-size: 12px; margin-top: 8px; }
.bf-email a { color: var(--terra); font-weight: 600; transition: opacity .2s; text-decoration: none; }
.bf-email a:hover { opacity: .7; }
.bf-email i { font-size: 11px; margin-right: 2px; }

/* ═══════════════════════════════════════════════════════
   HELP MODAL — Family name contextual help
   ═══════════════════════════════════════════════════════ */
.bform-help-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%; border: none;
  background: var(--terra-glow); color: var(--terra);
  font-size: 11px; cursor: pointer; margin-left: 6px;
  vertical-align: middle; transition: all .2s; padding: 0;
}
.bform-help-btn:hover { background: var(--terra); color: white; }

.bhelp-overlay {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.45); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 24px;
}
.bhelp-overlay.open { display: flex; animation: bhelpFadeIn .25s ease; }
@keyframes bhelpFadeIn { from{opacity:0} to{opacity:1} }

.bhelp-modal {
  background: var(--white); border-radius: 20px; padding: 32px 28px 28px;
  max-width: 420px; width: 100%; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2); animation: bhelpSlideIn .3s cubic-bezier(.22,1,.36,1);
}
@keyframes bhelpSlideIn { from{opacity:0;transform:translateY(16px)scale(.96)} to{opacity:1;transform:translateY(0)scale(1)} }

.bhelp-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 10px; border: none;
  background: rgba(0,0,0,0.04); color: var(--slate);
  font-size: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.bhelp-close:hover { background: var(--terra-glow); color: var(--terra); }

.bhelp-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--terra-glow); color: var(--terra);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
}
.bhelp-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.bhelp-text { font-size: 13px; color: var(--slate); line-height: 1.6; margin-bottom: 16px; }

.bhelp-examples {
  background: var(--cream); border: 1px solid var(--cloud);
  border-radius: 12px; padding: 14px 16px; margin-bottom: 14px;
}
.bhelp-ex-title {
  font-size: 12px; font-weight: 700; color: var(--camel);
  margin-bottom: 8px; display: flex; align-items: center; gap: 6px;
}
.bhelp-ex-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.bhelp-ex-list li {
  background: var(--white); border: 1px solid var(--cloud); border-radius: 8px;
  padding: 5px 12px; font-size: 12px; font-weight: 600; color: var(--navy);
}
.bhelp-note {
  font-size: 11px; color: var(--sage); display: flex; align-items: center; gap: 6px;
}
.bhelp-note i { font-size: 12px; }

/* Dark overrides */
html.dark .bhelp-modal { background: #1E1E26; }
html.dark .bhelp-title { color: #E8E4DF; }
html.dark .bhelp-examples { background: #2A2A34; border-color: #333; }
html.dark .bhelp-ex-list li { background: #1E1E26; border-color: #333; color: #E8E4DF; }
html.dark .bhelp-close { background: rgba(255,255,255,0.06); }

/* ═══════════════════════════════════════════════════════
   GDPR NOTICE (always at bottom)
   ═══════════════════════════════════════════════════════ */
.beta-gdpr-card {
  max-width: 620px; margin: 32px auto 40px; padding: 16px 20px;
  background: #FFF8F0;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — Tablet
   ═══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-text { max-width: 100%; margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .hero-float-1 { right: -8px; }
  .hero-float-2 { left: -8px; }
  .hero-float-3 { right: -4px; }

  .show-inner { grid-template-columns: 1fr; gap: 32px; }
  .showcase-reverse .show-inner { direction: ltr; }
  .show-text { text-align: center; }
  .show-features { align-items: center; }
  .show-img { max-width: 540px; margin: 0 auto; }

  .bf-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — Mobile
   ═══════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .beta-hero { padding: 56px 20px 40px; }
  .hero-text h1 { font-size: 32px; letter-spacing: -1px; }
  .hero-sub { font-size: 15px; }
  .hero-btn-primary { padding: 14px 24px; font-size: 14px; width: 100%; justify-content: center; }
  .hero-visual { max-width: 320px; }
  .hero-float { font-size: 11px; padding: 8px 12px; }
  .hero-float-1 { right: -4px; top: 8%; }
  .hero-float-2 { left: -4px; }
  .hero-float-3 { right: 0; }

  .beta-stats { margin-top: -20px; }
  .stats-inner { flex-direction: column; border-radius: 16px; }
  .stat-item { padding: 16px 24px; }
  .stat-sep { width: 60px; height: 1px; }

  .showcase { padding: 48px 20px; }
  .show-text h2 { font-size: 24px; }

  .beta-cta { padding: 64px 20px; }
  .cta-content h2 { font-size: 26px; }
  .cta-btn { padding: 14px 28px; font-size: 14px; }

  .bf-grid { grid-template-columns: 1fr; }
  .beta-features { padding: 48px 20px; }

  .beta-how { padding: 48px 20px; }
  .how-grid { flex-direction: column; align-items: center; gap: 12px; }
  .how-arrow { transform: rotate(90deg); padding: 0; }

  .beta-form-section { padding: 48px 20px; }
  .bform-row { flex-direction: column; }
  .bfaq-grid { grid-template-columns: 1fr; }

  .bh-controls { gap: 6px; }
  .bh-cta-mini { padding: 6px 12px; font-size: 11px; }
  .bh-lang-btn .bhl-code { display: none; }
  .bh-lang-dropdown { right: -10px; }
  .bh-partner { display: none; }

  .bf-links { gap: 14px; }
}

/* Small phones */
@media (max-width: 380px) {
  .hero-text h1 { font-size: 28px; }
  .hero-float { display: none; }
  .bh-cta-mini { display: none; }
}

/* ═══════════════════════════════════════════════════════
   DARK MODE
   ═══════════════════════════════════════════════════════ */
html.dark {
  --bg: #1A1D23;
  --white: #252A33;
  --navy: #E2DED8;
  --navy-soft: #B8BCC5;
  --slate: #8A909A;
  --cloud: #353B45;
  --cream: #2A2D35;
  --terra-glow: rgba(212,101,74,0.15);
  --shadow: 0 4px 24px rgba(0,0,0,0.25);
}
html.dark body { background: var(--bg); color: var(--navy); }

/* Header dark */
html.dark .beta-header {
  background: rgba(37,42,51,0.92); border-bottom-color: rgba(255,255,255,0.06);
}
html.dark .bh-lang-btn { background: var(--white); color: var(--navy); }
html.dark .bh-lang-btn:hover { background: var(--terra); color: white; }
html.dark .bh-dark-toggle { background: var(--white); color: var(--slate); }
html.dark .bh-lang-dropdown { background: var(--white); border-color: var(--cloud); }
html.dark .bhld-option:hover { background: #2E333D; }
html.dark .bhld-option.active { background: rgba(212,101,74,0.15); color: var(--terra); }
html.dark .bhld-header { color: var(--slate); border-bottom-color: var(--cloud); }
html.dark .bh-cta-mini { box-shadow: 0 2px 12px rgba(212,101,74,0.3); }

/* Hero dark */
html.dark .beta-hero { background: linear-gradient(160deg, #1E2229 0%, #1A1D23 100%); }
html.dark .hero-badge { background: rgba(212,101,74,0.15); border-color: rgba(212,101,74,0.25); }
html.dark .hero-img-wrap { box-shadow: 0 24px 64px rgba(0,0,0,0.45), 0 10px 28px rgba(0,0,0,0.20); }
html.dark .hero-float { background: var(--white); box-shadow: 0 8px 32px rgba(0,0,0,0.25); }

/* Stats dark */
html.dark .stats-inner { background: var(--white); box-shadow: 0 8px 40px rgba(0,0,0,0.2); }

/* Showcase dark */
html.dark .show-img { box-shadow: 0 24px 60px rgba(0,0,0,0.40), 0 8px 24px rgba(0,0,0,0.18); }

/* CTA dark — image overlay already handles this */

/* Features dark */
html.dark .bf-card { background: var(--white); border-color: var(--cloud); }

/* How dark */
html.dark .how-num { box-shadow: 0 4px 16px rgba(212,101,74,0.2); }
html.dark .how-arrow { color: var(--cloud); }

/* Form dark */
html.dark .bform-input { background: var(--white); border-color: var(--cloud); color: var(--navy); }
html.dark .bform-input:focus { border-color: var(--terra); box-shadow: 0 0 0 3px rgba(212,101,74,0.15); }
html.dark .bform-reseller { background: rgba(92,107,79,0.12); color: #9DB88A; }
html.dark .beta-slots { background: rgba(16,185,129,0.1); color: #34D399; }
html.dark .beta-limit-warning { background: rgba(245,158,11,0.12); color: #F59E0B; }
html.dark .beta-alert-error { background: rgba(220,38,38,0.15); border-color: rgba(220,38,38,0.2); }
html.dark .beta-success { background: var(--white); border-color: var(--cloud); }

/* FAQ dark */
html.dark .bfaq-item { background: var(--white); border-color: var(--cloud); }

/* Footer dark */
html.dark .beta-footer { background: var(--white); border-top-color: var(--cloud); }

/* GDPR dark */
html.dark .beta-gdpr-card { background: rgba(255,248,240,0.04); border-color: var(--cloud); }
