:root {
  --bg: #0a0a0f;
  --bg-elevated: #111118;
  --bg-hover: #16161f;
  --border: #1e1e2e;
  --border-light: #2a2a3a;
  --text: #e8e8ee;
  --muted: #8a8a9a;
  --muted-dark: #666676;
  --gold: #d4a853;
  --gold-dim: rgba(212,168,83,0.1);
  --gold-glow: rgba(212,168,83,0.25);
  --success: #4ade80;
  --danger: #f87171;
  --radius: 16px;
  --radius-sm: 10px;
  --max-w: 1120px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--gold); text-decoration: none; }
a:hover { opacity: 0.86; }
button, input, select, textarea { font: inherit; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* NO-JS FALLBACK — sections visible without JS */
.section { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease; }
.section.revealed { opacity: 1; transform: translateY(0); }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,15,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 16px; position: relative; }
.nav-brand { font-weight: 900; font-size: 1.15rem; color: var(--gold); letter-spacing: -0.5px; white-space: nowrap; }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-link { color: var(--muted); font-size: 0.85rem; font-weight: 700; padding: 6px 12px; border-radius: 8px; transition: all 0.15s; white-space: nowrap; }
.nav-link:hover { color: var(--text); background: var(--bg-hover); }
.nav-cta { background: var(--gold-dim); color: var(--gold); border: 1px solid var(--gold-glow); padding: 8px 16px; border-radius: 10px; font-size: 0.82rem; font-weight: 800; transition: all 0.15s; white-space: nowrap; }
.nav-cta:hover { background: rgba(212,168,83,0.18); border-color: var(--gold); box-shadow: 0 0 20px rgba(212,168,83,0.12); }

/* MOBILE MENU */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}
.mobile-nav.open {
  max-height: 400px;
  opacity: 1;
}
.mobile-nav-link {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 24px;
  transition: all 0.15s;
}
.mobile-nav-link:hover { color: var(--text); background: var(--bg-hover); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-radius: var(--radius-sm); font-size: 0.95rem; font-weight: 800; border: 1px solid transparent; cursor: pointer; transition: all 0.2s; text-decoration: none; white-space: nowrap; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-gold { background: var(--gold-dim); color: var(--gold); border-color: var(--gold-glow); }
.btn-gold:hover { background: rgba(212,168,83,0.18); border-color: var(--gold); box-shadow: 0 0 28px rgba(212,168,83,0.18); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border-light); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.btn-ghost { background: transparent; color: var(--muted); border-color: var(--border); }
.btn-ghost:hover { color: var(--text); background: var(--bg-hover); }
.w-full { width: 100%; }
.btn-arrow { font-size: 1.2em; transition: transform 0.2s; }
.btn-gold:hover .btn-arrow { transform: translateX(3px); }

.hero { padding: 112px 0 72px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -52%; left: 50%; transform: translateX(-50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(212,168,83,0.07) 0%, transparent 70%); pointer-events: none; }
.hero .container { position: relative; }
.hero-kicker, .section-kicker { font-size: 0.74rem; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 14px; }
.hero-headline { font-size: clamp(2.45rem, 7vw, 4.4rem); font-weight: 900; line-height: 1.02; letter-spacing: -2px; margin-bottom: 22px; }
.hero-sub { font-size: clamp(1rem, 2vw, 1.22rem); color: var(--muted); max-width: 650px; margin: 0 auto 30px; line-height: 1.65; }
.hero-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 34px; }
.trust-pill { display: inline-flex; align-items: center; gap: 6px; background: var(--bg-elevated); border: 1px solid var(--border); padding: 7px 14px; border-radius: 999px; font-size: 0.82rem; font-weight: 700; color: var(--muted); }
.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.hero-note { margin-top: 18px; font-size: 0.9rem; color: var(--muted-dark); }

.section-title { font-size: clamp(1.85rem, 4vw, 2.85rem); font-weight: 900; line-height: 1.1; letter-spacing: -1px; margin-bottom: 42px; }
.section-problems { padding: 48px 0 64px; }

.problems-scroll { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; margin: 0 -24px; padding-left: 24px; padding-right: 24px; scrollbar-width: none; }
.problems-scroll::-webkit-scrollbar { display: none; }
.problem-card { flex: 0 0 85%; max-width: 350px; scroll-snap-align: start; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: border-color 0.2s, transform 0.2s; }
.problem-card:hover { border-color: var(--border-light); transform: translateY(-2px); }
.problem-icon { font-size: 2rem; margin-bottom: 16px; }
.problem-title { font-size: 1.12rem; font-weight: 900; margin-bottom: 10px; }
.problem-body { font-size: 0.95rem; color: var(--muted); line-height: 1.58; }

.section-compare, .section-steps, .section-pricing { background: var(--bg-elevated); }
.compare-grid { display: grid; gap: 20px; }
.qualify-card { display: grid; gap: 20px; }
.compare-col, .qualify-card, .step-card, .price-card, .terms-box, .contact-card, .faq-item { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); }
.compare-col { padding: 30px; }
.compare-col h3, .qualify-half h3 { font-size: 1.05rem; font-weight: 900; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
.compare-before h3 { color: var(--muted); }
.compare-after h3 { color: var(--gold); }
.compare-col ul, .qualify-half ul, .price-features, .buyout-features { list-style: none; }
.compare-col li { padding: 10px 0; font-size: 0.95rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.compare-col li:last-child { border-bottom: none; }
.strike { text-decoration: line-through; color: var(--muted-dark); }
.check { color: var(--success); font-weight: 900; font-size: 1.1rem; }

.section-qualify { padding: 50px 0; }
.qualify-card { overflow: hidden; }
.qualify-half { padding: 30px; }
.qualify-half li { padding: 8px 0 8px 22px; position: relative; font-size: 0.94rem; color: var(--text); }
.qualify-half li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 900; }
.qualify-not { border-top: 1px solid var(--border); background: rgba(248,113,113,0.03); }
.qualify-not h3 { color: var(--danger); }
.qualify-not li { color: var(--muted); }
.qualify-not li::before { content: '×'; color: var(--danger); }

.steps-grid, .pricing-grid { display: grid; gap: 22px; }
.step-card, .price-card { padding: 30px; transition: border-color 0.2s, transform 0.2s; }
.step-card:hover, .price-card:hover { border-color: var(--border-light); }
.step-num { display: block; font-size: 2.4rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 16px; opacity: 0.55; }
.step-card h3 { font-size: 1.17rem; font-weight: 900; margin-bottom: 10px; }
.step-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.56; }

.feature-split { display: grid; gap: 46px; }
.feature-text { max-width: 500px; }
.feature-lead { font-size: 1.08rem; color: var(--muted); line-height: 1.65; margin-top: -22px; }
.feature-list { display: grid; gap: 14px; }
.feature-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.96rem; }
.feature-check { color: var(--gold); font-weight: 900; font-size: 1.12rem; line-height: 1; flex-shrink: 0; }

.price-card { display: flex; flex-direction: column; }
.price-popular { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), 0 16px 48px rgba(212,168,83,0.1); position: relative; }
.popular-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--bg); padding: 6px 18px; border-radius: 0 0 10px 10px; font-size: 0.7rem; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; }
.price-header { margin-bottom: 22px; }
.price-tier { display: block; font-size: 0.9rem; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.price-amount { display: block; font-size: 2.75rem; font-weight: 900; letter-spacing: -2px; line-height: 1; }
.price-note { display: block; font-size: 0.85rem; color: var(--muted); margin-top: 4px; }
.price-features { margin-bottom: 22px; flex: 1; }
.price-features li { padding: 8px 0 8px 22px; position: relative; font-size: 0.93rem; border-bottom: 1px solid var(--border); }
.price-features li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 900; }
.price-excluded { margin-bottom: 22px; }
.price-excluded p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
.price-excluded p + p { margin-top: 8px; }
.price-timeline { font-weight: 800; color: var(--text) !important; }

.section-buyout { padding-top: 48px; }
.buyout-card { background: var(--bg-elevated); border: 1px solid var(--gold); border-radius: var(--radius); padding: 44px 28px; position: relative; overflow: hidden; }
.buyout-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.buyout-content { max-width: 640px; margin: 0 auto; text-align: center; }
.buyout-lead { font-size: 1.05rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.buyout-price { margin: 30px 0; }
.buyout-amount { display: block; font-size: 3.2rem; font-weight: 900; letter-spacing: -3px; line-height: 1; color: var(--gold); }
.buyout-label { display: block; font-size: 0.86rem; color: var(--muted); margin-top: 6px; text-transform: uppercase; letter-spacing: 2px; font-weight: 800; }
.buyout-features { display: grid; gap: 12px; max-width: 420px; margin: 0 auto 30px; text-align: left; }
.buyout-features li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; }

.section-terms { padding: 40px 0; }
.terms-box { background: var(--bg-elevated); padding: 28px; text-align: center; }
.terms-title { font-size: 0.8rem; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); margin-bottom: 10px; }
.terms-body { font-size: 0.92rem; color: var(--muted); line-height: 1.62; max-width: 760px; margin: 0 auto; }

.faq-list { max-width: 740px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { overflow: hidden; transition: border-color 0.2s; }
.faq-item:hover { border-color: var(--border-light); }
.faq-item summary { padding: 20px 24px; font-weight: 800; font-size: 1rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color 0.15s; }
.faq-item summary:hover { color: var(--gold); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; font-weight: 500; color: var(--muted); flex-shrink: 0; }
.faq-item[open] summary::after { content: '−'; color: var(--gold); }
.faq-item p { padding: 0 24px 20px; color: var(--muted); font-size: 0.95rem; line-height: 1.62; }

.section-contact { padding: 60px 0 100px; }
.contact-card { max-width: 660px; margin: 0 auto; background: var(--bg-elevated); padding: 42px; }
.contact-lead { font-size: 1.05rem; color: var(--muted); line-height: 1.65; margin: -20px 0 30px; }
.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-size: 0.78rem; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.form-field input, .form-field select, .form-field textarea { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 14px; color: var(--text); font-size: 1rem; outline: none; transition: border-color 0.15s; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold); }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--muted-dark); }
.form-field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a8a9a' stroke-width='3'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-field select option { background: var(--bg); color: var(--text); }
.form-terms { font-size: 0.78rem; color: var(--muted); text-align: center; }
.contact-direct { text-align: center; margin-top: 24px; font-size: 0.9rem; color: var(--muted); }
.contact-direct a { font-weight: 800; }

.site-footer { border-top: 1px solid var(--border); padding: 38px 0; text-align: center; }
.site-footer p { font-size: 0.84rem; color: var(--muted); }
.footer-legal { margin-top: 8px; font-size: 0.75rem !important; }
.footer-legal a { color: var(--muted); margin: 0 6px; }
.footer-legal a:hover { color: var(--gold); }

.modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.25s; -webkit-transform: translateZ(0); }
.modal.active { opacity: 1; pointer-events: auto; }
.modal-backdrop { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.92); }
.modal-content { position: absolute; top: 50%; left: 50%; width: 92%; max-width: 1100px; max-height: 90vh; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius); overflow-y: auto; transform: translate(-50%, -50%) scale(0.95); -webkit-transform: translate(-50%, -50%) scale(0.95); transition: transform 0.25s; display: flex; flex-direction: column; }
.modal.active .modal-content { transform: translate(-50%, -50%) scale(1); -webkit-transform: translate(-50%, -50%) scale(1); }
.modal-close { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,0.72); border: 1px solid rgba(255,255,255,0.18); color: #fff; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; cursor: pointer; z-index: 10; -webkit-tap-highlight-color: transparent; }
.modal-body { padding: 0; }

.legal-body { max-width: 740px; margin: 0 auto; padding: 110px 24px 80px; line-height: 1.72; color: var(--text); }
.legal-body h1 { font-size: 2rem; margin-bottom: 1rem; }
.legal-body h2 { font-size: 1.2rem; margin-top: 2.25rem; margin-bottom: 0.85rem; color: var(--gold); }
.legal-body p, .legal-body li { margin-bottom: 0.9rem; font-size: 0.96rem; color: var(--muted); }
.legal-body ul { margin-bottom: 1rem; padding-left: 1.25rem; color: var(--muted); }
.legal-date { font-size: 0.82rem !important; color: var(--muted-dark) !important; margin-bottom: 2.5rem !important; }

/* ABOUT SECTION */
.section-about { background: var(--bg-elevated); }
.about-split { display: grid; gap: 34px; align-items: center; }
.about-photo { display: flex; justify-content: center; }
.about-logo { width: 100%; max-width: 280px; height: auto; display: block; margin: 0 auto; filter: drop-shadow(0 4px 24px rgba(212,168,83,0.25)); border-radius: 24px; }
.about-body { color: var(--muted); font-size: 1.03rem; line-height: 1.7; margin-bottom: 14px; }

/* LEAD SECTION */
.section-lead { background: var(--bg-elevated); }
.lead-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 42px 26px; max-width: 660px; margin: 0 auto; text-align: center; }
.lead-body { color: var(--muted); font-size: 1.03rem; line-height: 1.7; margin: -18px 0 26px; }
.lead-form { display: flex; flex-direction: column; gap: 12px; max-width: 420px; margin: 0 auto; }
.lead-form input { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 13px 14px; color: var(--text); outline: none; }
.lead-form input:focus { border-color: var(--gold); }
.lead-note, .lead-thanks { margin-top: 12px; color: var(--muted); font-size: 0.82rem; }

/* SOCIAL SECTION */
.section-social { background: var(--bg); }
.social-grid { display: grid; gap: 18px; }
.social-card { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; text-align: center; }
.social-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--gold-dim); border: 1px solid var(--gold-glow); color: var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-weight: 900; }
.social-card p { color: var(--text); font-size: 0.95rem; line-height: 1.6; margin-bottom: 12px; }
.social-card span { color: var(--muted); font-size: 0.75rem; font-weight: 900; text-transform: uppercase; letter-spacing: 1.3px; }

/* GUARANTEE */
.guarantee-strip { background: var(--bg-hover); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px; display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.guarantee-icon { color: var(--success); font-size: 1.35rem; font-weight: 900; line-height: 1; }
.guarantee-strip p { color: var(--muted); font-size: 0.84rem; line-height: 1.45; margin: 0; }

/* FORM SUCCESS */
.form-success { text-align: center; padding: 28px 10px; }
.form-success h3 { color: var(--gold); font-size: 1.5rem; margin-bottom: 8px; }
.form-success p { color: var(--muted); line-height: 1.6; }
button:disabled { opacity: 0.65; cursor: wait; }

/* CHAT WIDGET */
.chat-widget { z-index: 150; font-family: var(--font); }
.chat-toggle { position: fixed; bottom: 20px; right: 20px; display: flex; align-items: center; gap: 10px; background: var(--gold); color: var(--bg); border: none; padding: 14px 20px; border-radius: 999px; font-size: 0.9rem; font-weight: 900; cursor: pointer; box-shadow: 0 8px 32px rgba(212,168,83,0.32); transition: transform 0.2s, box-shadow 0.2s; z-index: 150; }
.chat-toggle:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(212,168,83,0.42); }
.chat-toggle.hidden { display: none; }
.chat-window { position: fixed; bottom: 20px; right: 20px; width: 360px; max-width: calc(100vw - 40px); height: 520px; max-height: calc(100vh - 100px); background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius); display: flex; flex-direction: column; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.52); opacity: 0; transform: translateY(20px) scale(0.95); pointer-events: none; transition: opacity 0.22s ease, transform 0.22s ease; z-index: 150; }
.chat-window.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.chat-header { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--border); background: var(--bg); }
.chat-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--gold); color: var(--bg); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 900; flex-shrink: 0; }
.chat-info { flex: 1; min-width: 0; }
.chat-name { font-size: 0.95rem; font-weight: 900; margin: 0; color: var(--text); }
.chat-status { font-size: 0.75rem; color: var(--muted); margin: 2px 0 0; display: flex; align-items: center; gap: 6px; }
.status-dot { width: 7px; height: 7px; background: var(--success); border-radius: 50%; display: inline-block; }
.chat-close { background: var(--bg-hover); border: 1px solid var(--border); color: var(--muted); width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; cursor: pointer; transition: all 0.15s; flex-shrink: 0; }
.chat-close:hover { color: var(--text); border-color: var(--border-light); }
.chat-messages { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.chat-msg { max-width: 88%; padding: 12px 15px; border-radius: 14px; font-size: 0.9rem; line-height: 1.5; animation: msgIn 0.22s ease; }
@keyframes msgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.chat-msg.bot { align-self: flex-start; background: var(--bg-hover); border: 1px solid var(--border); color: var(--text); border-bottom-left-radius: 4px; }
.chat-msg.user { align-self: flex-end; background: var(--gold-dim); border: 1px solid var(--gold-glow); color: var(--gold); border-bottom-right-radius: 4px; }
.chat-msg p { margin: 0; }
.chat-msg a { font-weight: 800; text-decoration: underline; }
.chat-suggestions { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.chat-suggestions button { background: var(--bg); border: 1px solid var(--border); color: var(--muted); padding: 6px 11px; border-radius: 8px; font-size: 0.8rem; font-weight: 800; cursor: pointer; transition: all 0.15s; }
.chat-suggestions button:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.chat-input-wrap { display: flex; gap: 10px; padding: 14px 16px; border-top: 1px solid var(--border); background: var(--bg); }
.chat-input-wrap input { flex: 1; background: var(--bg-hover); border: 1px solid var(--border); border-radius: 10px; padding: 10px 14px; color: var(--text); font-family: var(--font); font-size: 1rem; outline: none; min-width: 0; }
.chat-input-wrap input:focus { border-color: var(--gold); }
.chat-input-wrap input::placeholder { color: var(--muted); }
.chat-send { width: 42px; height: 42px; background: var(--gold); border: none; border-radius: 10px; color: var(--bg); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.15s; flex-shrink: 0; }
.chat-send:hover { transform: scale(1.05); }
.typing-msg p { opacity: 0.72; font-style: italic; }
.invoice-btn { margin-top: 8px; }

/* THEME SECTION */
.theme-section-lead { max-width: 720px; margin: -24px auto 28px; color: var(--muted); text-align: center; line-height: 1.65; font-size: 1rem; }
.theme-trust-strip { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 0 0 30px; }
.theme-trust-strip span { padding: 8px 14px; border-radius: 999px; background: var(--bg-elevated); border: 1px solid var(--border); color: var(--muted); font-size: 0.82rem; font-weight: 800; }
.theme-grid { display: grid; gap: 24px; }
.theme-card { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 22px; overflow: hidden; transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.theme-card:hover { transform: translateY(-4px); border-color: var(--gold-glow); box-shadow: 0 20px 46px rgba(0,0,0,0.3); }
.theme-card.selected { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), 0 18px 42px rgba(212,168,83,0.15); }
.theme-shot-btn { display: block; width: 100%; border: 0; padding: 0; background: #07070b; cursor: pointer; }
.theme-shot { width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: center; display: block; transition: transform 0.24s ease, opacity 0.24s ease; }
.theme-card:hover .theme-shot { transform: scale(1.018); opacity: 0.96; }
.theme-info { padding: 20px; }
.theme-info h4 { font-size: 1.22rem; font-weight: 900; margin: 0.12rem 0 0.35rem; }
.theme-best { color: var(--gold); font-size: 0.76rem; font-weight: 900; letter-spacing: 0.7px; text-transform: uppercase; }
.theme-copy { color: var(--muted); font-size: 0.92rem; line-height: 1.58; margin-bottom: 14px; }
.theme-mini-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.theme-mini-list span { border: 1px solid var(--border); background: var(--bg); color: var(--muted); border-radius: 999px; padding: 6px 10px; font-size: 0.74rem; font-weight: 800; }
.theme-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.theme-preview-btn, .theme-use-btn { padding: 12px 14px; border-radius: 12px; font-size: 0.88rem; font-weight: 900; cursor: pointer; transition: all 0.16s ease; border: none; }
.theme-preview-btn { background: transparent; color: var(--text); border: 1px solid var(--border-light); }
.theme-preview-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.theme-use-btn { color: var(--gold); border: 1px solid var(--gold-glow); background: var(--gold-dim); }
.theme-use-btn:hover { border-color: var(--gold); background: rgba(212,168,83,0.18); }

/* MODAL THEME PREVIEW */
.theme-modal-showcase { background: var(--bg); display: flex; align-items: center; justify-content: center; padding: 24px; }
.theme-modal-image { max-width: 100%; max-height: 70vh; width: auto; height: auto; object-fit: contain; display: block; border-radius: 12px; }
.theme-modal-copy { padding: 24px 28px 28px; }
.theme-modal-best { color: var(--gold); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.7px; text-transform: uppercase; margin-bottom: 8px; }
.theme-modal-copy h3 { font-size: 1.5rem; font-weight: 900; margin-bottom: 8px; }
.theme-modal-bullets { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; list-style: none; padding: 0; margin: 0 0 20px; }
.theme-modal-bullets li { color: var(--muted); background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 9px 11px; font-size: 0.84rem; font-weight: 800; }
.theme-modal-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* DESKTOP */
@media (min-width: 768px) {
  .container { padding: 0 32px; }
  .hero { padding: 135px 0 95px; }
  .hero-actions { flex-direction: row; justify-content: center; }
  .problems-scroll { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; overflow: visible; }
  .problem-card { flex: none; max-width: none; }
  .steps-grid, .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .feature-split { grid-template-columns: 1fr 1fr; align-items: center; }
  .price-popular { transform: scale(1.03); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .buyout-card { padding: 60px 48px; }
  .compare-grid, .qualify-card { grid-template-columns: 1fr 1fr; }
  .qualify-not { border-top: none; border-left: 1px solid var(--border); }
  .about-split { grid-template-columns: 220px 1fr; gap: 64px; }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .lead-form { flex-direction: row; }
  .lead-form input { flex: 1; }
  .theme-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .theme-card:first-child { grid-column: 1 / -1; }
  .theme-card:first-child .theme-shot { aspect-ratio: 21/9; }
  .modal-content { max-width: min(1120px, 96vw); }
}

/* MOBILE */
@media (max-width: 767px) {
  .mobile-menu-btn { display: flex; }
  .nav-links { display: none; }
  .nav-cta { font-size: 0.76rem; padding: 7px 12px; }
  .hero { padding: 76px 0 58px; }
  .section { padding: 58px 0; }
  .section-title { margin-bottom: 30px; }
  .price-amount { font-size: 2.25rem; }
  .buyout-amount { font-size: 2.75rem; }
  .modal-content { width: 100%; height: 100%; max-width: 100%; max-height: 100%; border-radius: 0; top: 0; left: 0; transform: scale(0.95); -webkit-transform: scale(0.95); }
  .modal.active .modal-content { transform: scale(1); -webkit-transform: scale(1); }
  .theme-modal-showcase { padding: 16px; height: 65vh; display: flex; align-items: center; justify-content: center; }
  .theme-modal-image { max-height: 100%; max-width: 100%; width: auto; height: auto; }
  .theme-modal-copy { padding: 16px 20px 24px; }
  .theme-modal-bullets { grid-template-columns: 1fr; }
  .contact-card { padding: 28px; }
  .btn { white-space: normal; }
  .theme-section-lead { text-align: left; margin-top: -16px; }
  .theme-grid { gap: 18px; }
  .theme-shot { aspect-ratio: 4/3; }
  .theme-actions { grid-template-columns: 1fr; }
  .theme-modal-bullets { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-logo { max-width: 220px; }
  .chat-toggle { position: fixed; bottom: 12px; right: 12px; padding: 14px; border-radius: 50%; }
  .chat-window { position: fixed; bottom: 12px; right: 12px; width: calc(100vw - 24px); height: 420px; }
  .chat-toggle-text { display: none; }
}

/* SCROLL HINT */
.scroll-hint { text-align: center; color: var(--muted-dark); font-size: 0.78rem; font-weight: 700; margin-top: 14px; letter-spacing: 1px; display: none; }
@media (max-width: 767px) { .scroll-hint { display: block; } }

/* iOS SAFE AREA */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .chat-toggle { bottom: calc(20px + env(safe-area-inset-bottom)); right: calc(20px + env(safe-area-inset-right)); }
  .chat-window { bottom: calc(20px + env(safe-area-inset-bottom)); right: calc(20px + env(safe-area-inset-right)); }
}
@media (max-width: 767px) and (padding-bottom: env(safe-area-inset-bottom)) {
  .chat-toggle { bottom: calc(12px + env(safe-area-inset-bottom)); right: calc(12px + env(safe-area-inset-right)); }
  .chat-window { bottom: calc(12px + env(safe-area-inset-bottom)); right: calc(12px + env(safe-area-inset-right)); }
  .modal-content { height: calc(100% - env(safe-area-inset-bottom) - env(safe-area-inset-top)); max-height: calc(100% - env(safe-area-inset-bottom) - env(safe-area-inset-top)); }
}
/* STICKY BOTTOM CTA BAR — MOBILE ONLY */
.sticky-cta {
  display: none;
}
@media (max-width: 767px) {
  .sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: rgba(10,10,15,0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    gap: 10px;
    align-items: center;
    justify-content: center;
  }
  .sticky-cta .btn {
    flex: 1;
    padding: 14px 16px;
    font-size: 0.9rem;
    white-space: nowrap;
  }
  .sticky-cta .btn-ghost {
    flex: 0 0 auto;
    padding: 14px;
  }
  /* Add bottom padding to body so content isn't hidden behind sticky bar */
  body {
    padding-bottom: 70px;
  }
}

/* v38 — stripe live safari sticky cta final overrides */
body { padding-bottom: 0; }
.mobile-menu-btn { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.mobile-nav { display: flex; flex-direction: column; max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.35s ease, opacity 0.25s ease; }
.mobile-nav.open { max-height: 400px; opacity: 1; }
.modal { position: fixed; inset: 0; z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.25s ease; -webkit-transform: translateZ(0); }
.modal.active { opacity: 1; pointer-events: auto; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.92); backdrop-filter: none; -webkit-backdrop-filter: none; }
.modal-content { position: absolute; top: 50%; left: 50%; width: 92%; max-width: 1100px; max-height: 90vh; overflow-y: auto; transform: translate(-50%, -50%) scale(0.95); -webkit-transform: translate(-50%, -50%) scale(0.95); }
.modal.active .modal-content { transform: translate(-50%, -50%) scale(1); -webkit-transform: translate(-50%, -50%) scale(1); }
.sticky-cta { display: none; }
@media (max-width: 767px) {
  body { padding-bottom: calc(78px + env(safe-area-inset-bottom)); }
  .sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 190; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(10,10,15,0.96); border-top: 1px solid var(--border); box-shadow: 0 -12px 32px rgba(0,0,0,0.36); }
  .sticky-cta-main, .sticky-cta-ghost { min-height: 46px; border-radius: 12px; font-weight: 900; font-size: 0.9rem; display: inline-flex; align-items: center; justify-content: center; text-align: center; text-decoration: none; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
  .sticky-cta-main { background: var(--gold); color: var(--bg); border: 1px solid var(--gold); cursor: pointer; }
  .sticky-cta-ghost { background: transparent; color: var(--text); border: 1px solid var(--border-light); }
  .modal { padding: 0; }
  .modal-content { width: 100%; height: 100%; max-height: 100%; border-radius: 0; border-left: 0; border-right: 0; }
  .modal-close { width: 46px; height: 46px; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
}

/* v44 — mobile problem section only */
@media (max-width: 767px) {
  .section-problems {
    padding: 46px 0 50px;
    overflow: hidden;
  }

  .section-problems .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .section-problems .section-kicker {
    margin-bottom: 12px;
  }

  .section-problems .section-title {
    font-size: clamp(2.05rem, 10vw, 2.7rem);
    line-height: 1.08;
    letter-spacing: -1.2px;
    margin-bottom: 24px;
    max-width: 340px;
  }

  .problems-scroll {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    overflow: visible;
    scroll-snap-type: none;
    margin: 0;
    padding: 0;
  }

  .problem-card {
    width: 100%;
    max-width: none;
    flex: none;
    padding: 22px;
    border-radius: 18px;
    background: rgba(17,17,24,0.88);
  }

  .problem-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .problem-title {
    font-size: 1.08rem;
    margin-bottom: 8px;
  }

  .problem-body {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .scroll-hint {
    display: none !important;
  }
}
