/* ============================================
   COLLAB AI LEASING ASSISTANT — STYLESHEET
   Brand: #00BFA5 (teal) | #25D366 (WA green) | #151718 (dark) | #F8F6F2 (warm white)
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #00BFA5;
  --primary-dark: #00A896;
  --wa-green: #25D366;
  --wa-dark: #128C7E;
  --dark: #151718;
  --dark2: #1C1F20;
  --dark3: #222628;
  --warm-white: #F8F6F2;
  --muted: #8A8F94;
  --border: rgba(255,255,255,0.08);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 16px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--dark); color: var(--warm-white); line-height: 1.6; overflow-x: hidden; }

/* ---- UTILITIES ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--wa-green) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s; }
.fade-in-delay.visible { opacity: 1; transform: translateY(0); }

/* ---- BUTTONS ---- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 15px; cursor: pointer; text-decoration: none; transition: all 0.2s ease; white-space: nowrap; border: none; }
.btn-primary { background: var(--primary); color: #fff; border: 2px solid var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,191,165,0.35); }
.btn-outline { background: transparent; color: var(--warm-white); border: 2px solid rgba(255,255,255,0.2); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); }
.btn-wa { background: var(--wa-green); color: #fff; border: 2px solid var(--wa-green); }
.btn-wa:hover { background: #1da750; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.btn-full { width: 100%; justify-content: center; }

/* ---- NAV ---- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background 0.3s ease; }
.nav.scrolled { background: rgba(21,23,24,0.92); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1160px; margin: 0 auto; padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 4px; text-decoration: none; }
.nav-logo-img { height: 0.72em; width: auto; display: block; } /* ~11.5px = cap height of 16px "L" */
.logo-text { font-size: 16px; color: var(--warm-white); font-weight: 600; }
.logo-text strong { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--warm-white); }
.nav-cta { background: var(--primary) !important; color: #fff !important; padding: 10px 20px; border-radius: 8px; font-size: 13px !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--warm-white); border-radius: 2px; transition: all 0.3s; }

/* ---- HERO ---- */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 24px 80px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero-orb-1 { width: 500px; height: 500px; background: rgba(0,191,165,0.15); top: -100px; right: 0; }
.hero-orb-2 { width: 400px; height: 400px; background: rgba(37,211,102,0.1); bottom: 0; left: -100px; }
.hero-orb-3 { width: 300px; height: 300px; background: rgba(0,168,150,0.08); top: 40%; right: 20%; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 60px 60px; }
.hero > * { position: relative; z-index: 1; }
.hero-inner { width: 100%; max-width: 1160px; margin: 0 auto; display: flex; align-items: center; gap: 60px; }
.hero-content { flex: 1; max-width: 620px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,191,165,0.1); border: 1px solid rgba(0,191,165,0.25); border-radius: 100px; padding: 6px 16px; font-size: 12px; color: var(--primary); letter-spacing: 0.5px; margin-bottom: 28px; font-weight: 600; }
.badge-dot { width: 6px; height: 6px; background: var(--wa-green); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }
.hero-title { font-size: clamp(40px, 6vw, 68px); font-weight: 900; line-height: 1.05; letter-spacing: -2px; margin-bottom: 16px; }
.hero-tagline { font-size: 18px; color: var(--primary); font-style: italic; font-weight: 500; margin-bottom: 20px; }
.hero-subtitle { font-size: 17px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
.hero-promise { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 8px; padding: 10px 16px; font-size: 13px; color: var(--warm-white); margin-bottom: 36px; font-weight: 600; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); }
.trust-badge .check { color: var(--wa-green); font-weight: bold; }

/* WHATSAPP MOCKUP */
.hero-mockup { flex: 1; max-width: 380px; }
.wa-phone { background: var(--dark2); border: 1px solid var(--border); border-radius: 24px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04); }
.wa-header { background: #1a1a2e; padding: 14px 18px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.wa-back { color: var(--primary); font-size: 18px; }
.wa-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--wa-green)); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.wa-contact { flex: 1; }
.wa-contact-name { font-size: 14px; font-weight: 700; color: var(--warm-white); }
.wa-status { font-size: 11px; color: var(--wa-green); }
.wa-body { padding: 16px; background: #0d1117; display: flex; flex-direction: column; gap: 10px; min-height: 280px; }
.wa-msg { max-width: 80%; }
.wa-msg-ai { align-self: flex-start; }
.wa-msg-user { align-self: flex-end; }
.wa-bubble-ai { background: var(--dark3); border-radius: 0 12px 12px 12px; padding: 10px 14px; font-size: 13px; color: var(--warm-white); line-height: 1.5; border: 1px solid var(--border); }
.wa-bubble-user { background: rgba(0,191,165,0.18); border-radius: 12px 0 12px 12px; padding: 10px 14px; font-size: 13px; color: var(--warm-white); line-height: 1.5; border: 1px solid rgba(0,191,165,0.25); text-align: right; }
.wa-time { font-size: 10px; color: var(--muted); margin-top: 4px; text-align: right; }
.wa-typing { display: flex; gap: 4px; align-items: center; padding: 10px 14px; background: var(--dark3); border-radius: 0 12px 12px 12px; width: fit-content; border: 1px solid var(--border); }
.wa-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--muted); animation: bounce 1.2s infinite; }
.wa-typing span:nth-child(2) { animation-delay: 0.2s; }
.wa-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-7px); } }

/* ---- STATS BAR ---- */
.stats-bar { background: var(--dark2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 20px 16px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: clamp(28px,3.5vw,42px); font-weight: 900; letter-spacing: -1.5px; margin-bottom: 4px; }
.stat-label { font-size: 13px; color: var(--muted); line-height: 1.4; }

/* ---- SECTION SHARED ---- */
.section { padding: 100px 0; }
.section-alt { background: var(--dark2); }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; }
.section-title { font-size: clamp(30px, 4vw, 48px); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 16px; }
.section-sub { font-size: 16px; color: var(--muted); max-width: 560px; line-height: 1.7; margin-bottom: 56px; }

/* ---- DIFFERENTIATOR CARDS ---- */
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.diff-card { background: var(--dark3); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: border-color 0.2s, transform 0.2s; }
.diff-card:hover { border-color: rgba(0,191,165,0.3); transform: translateY(-3px); }
.diff-icon { font-size: 28px; margin-bottom: 14px; }
.diff-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.diff-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ---- BENEFITS GRID ---- */
.benefits-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.benefit-card { background: var(--dark3); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 20px; transition: border-color 0.2s, transform 0.2s; }
.benefit-card:hover { border-color: rgba(0,191,165,0.3); transform: translateY(-3px); }
.benefit-icon { font-size: 26px; margin-bottom: 12px; }
.benefit-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.benefit-card p { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ---- 12-STAGE JOURNEY DEMO ---- */
.journey-section { padding: 100px 0; }
.journey-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.journey-tab { display: flex; align-items: center; gap: 6px; background: var(--dark3); border: 1px solid var(--border); border-radius: 100px; padding: 8px 14px; font-size: 12px; font-weight: 600; color: var(--muted); cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.journey-tab:hover { border-color: rgba(0,191,165,0.4); color: var(--warm-white); }
.journey-tab.active { background: rgba(0,191,165,0.15); border-color: var(--primary); color: var(--primary); }
.journey-tab .tab-num { background: var(--dark2); width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; }
.journey-tab.active .tab-num { background: var(--primary); color: #000; }
.journey-tab.featured { border-color: rgba(255,200,0,0.4); color: #ffd700; }
.journey-tab.featured.active { background: rgba(255,200,0,0.1); border-color: #ffd700; }
.journey-nav-btn { background: var(--dark3); border: 1px solid var(--border); color: var(--muted); border-radius: 50%; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 14px; flex-shrink: 0; transition: all 0.2s; }
.journey-nav-btn:hover:not(:disabled) { border-color: var(--primary); color: var(--primary); }
.journey-nav-btn:disabled { opacity: 0.3; cursor: default; }

.journey-demo { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* Left panel */
.journey-info { background: var(--dark2); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.stage-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.stage-num-badge { background: rgba(0,191,165,0.15); border: 1px solid rgba(0,191,165,0.3); border-radius: 10px; padding: 8px 14px; font-size: 12px; font-weight: 700; color: var(--primary); white-space: nowrap; }
.stage-title { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }
.info-block { margin-bottom: 20px; }
.info-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.info-text { font-size: 14px; color: var(--warm-white); line-height: 1.6; }
.info-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.info-list li { font-size: 14px; color: var(--warm-white); line-height: 1.5; display: flex; align-items: flex-start; gap: 8px; }
.info-list li::before { content: "✓"; color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Right panel - WhatsApp chat */
.journey-chat { background: #0d1117; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.chat-header { background: var(--wa-dark); padding: 14px 18px; display: flex; align-items: center; gap: 12px; }
.chat-header-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--wa-green)); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.chat-header-info { flex: 1; }
.chat-header-name { font-size: 14px; font-weight: 700; color: #fff; }
.chat-header-status { font-size: 11px; color: rgba(255,255,255,0.6); }
.chat-messages { padding: 16px; min-height: 280px; max-height: 360px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; }
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--dark3); border-radius: 2px; }
.msg-row { display: flex; gap: 8px; }
.msg-row.msg-user { flex-direction: row-reverse; }
.msg-bubble { max-width: 75%; padding: 9px 13px; border-radius: 8px; font-size: 13px; line-height: 1.5; }
.msg-ai { background: var(--dark2); color: var(--warm-white); border-radius: 0 8px 8px 8px; }
.msg-user .msg-bubble { background: rgba(0,100,84,0.7); color: #fff; border-radius: 8px 0 8px 8px; }
.msg-time { font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 3px; display: block; }
.msg-typing { display: flex; gap: 4px; align-items: center; padding: 9px 13px; background: var(--dark2); border-radius: 0 8px 8px 8px; width: fit-content; }
.msg-typing span { width: 5px; height: 5px; border-radius: 50%; background: var(--muted); animation: bounce 1.2s infinite; }
.msg-typing span:nth-child(2) { animation-delay: 0.15s; }
.msg-typing span:nth-child(3) { animation-delay: 0.3s; }
.chat-date-divider { text-align: center; font-size: 11px; color: var(--muted); background: rgba(255,255,255,0.05); border-radius: 100px; padding: 3px 10px; align-self: center; }
.journey-progress { padding: 12px 16px; border-top: 1px solid var(--border); background: var(--dark3); display: flex; align-items: center; gap: 8px; }
.progress-bar { flex: 1; height: 4px; background: var(--dark2); border-radius: 2px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--wa-green)); border-radius: 2px; transition: width 0.4s ease; }
.progress-label { font-size: 11px; color: var(--muted); white-space: nowrap; }

/* ---- COMPARISON TABLE ---- */
.comparison-wrap { overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th { padding: 16px 20px; text-align: left; font-size: 13px; font-weight: 700; border-bottom: 1px solid var(--border); }
.comparison-table th:first-child { width: 35%; }
.comparison-table th.collab-col { color: var(--primary); }
.comparison-table td { padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 14px; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .feature-name { color: var(--muted); font-size: 13px; }
.check-yes { color: var(--wa-green); font-weight: 700; }
.check-no { color: rgba(255,255,255,0.2); }
.check-partial { color: #ffa500; }
.collab-col { background: rgba(0,191,165,0.04); }

/* ---- SWEEPSTAKES FORM ---- */
.form-section { padding: 100px 0; background: var(--dark2); }
.form-container { max-width: 680px; margin: 0 auto; }
.prize-card { background: linear-gradient(135deg, rgba(0,191,165,0.12), rgba(37,211,102,0.08)); border: 1px solid rgba(0,191,165,0.3); border-radius: var(--radius); padding: 24px; margin-bottom: 36px; }
.prize-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--primary); color: #000; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 12px; }
.prize-title { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.prize-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
.prize-features { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.prize-feat { font-size: 12px; background: rgba(255,255,255,0.06); border: 1px solid var(--border); border-radius: 100px; padding: 4px 12px; color: var(--warm-white); }
.form-card { background: var(--dark3); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row-full { margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--warm-white); }
.form-group .optional { color: var(--muted); font-weight: 400; font-size: 11px; }
.form-group input, .form-group select { background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; color: var(--warm-white); font-size: 14px; font-family: var(--font); outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus { border-color: var(--primary); background: rgba(0,191,165,0.05); }
.form-group input::placeholder { color: var(--muted); }
.form-group select option { background: var(--dark3); }
.form-group.error input, .form-group.error select { border-color: #e74c3c; }
.form-error-msg { font-size: 12px; color: #e74c3c; margin-top: 2px; display: none; }
.form-group.error .form-error-msg { display: block; }
.form-checkboxes { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.form-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--primary); flex-shrink: 0; margin-top: 2px; cursor: pointer; }
.form-check-text { font-size: 13px; color: var(--muted); line-height: 1.5; }
.form-check-text a { color: var(--primary); text-decoration: none; }
.form-check-text a:hover { text-decoration: underline; }
.cf-turnstile-wrap { margin: 20px 0; display: flex; justify-content: center; }
.no-purchase { font-size: 12px; color: var(--muted); text-align: center; margin-top: 14px; }
.form-submit-btn { background: var(--primary); color: #fff; border: none; border-radius: 10px; padding: 16px 32px; font-size: 16px; font-weight: 700; cursor: pointer; width: 100%; transition: all 0.2s; font-family: var(--font); margin-top: 4px; }
.form-submit-btn:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,191,165,0.35); }
.form-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-success { text-align: center; padding: 40px 20px; display: none; }
.form-success.show { display: block; }
.form-card.hidden { display: none; }
.success-icon { font-size: 48px; margin-bottom: 16px; }
.success-title { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.success-desc { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ---- PRIVACY TRUST ---- */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trust-card { background: var(--dark3); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; text-align: center; }
.trust-card-icon { font-size: 32px; margin-bottom: 14px; }
.trust-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.trust-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ---- CONTACT ---- */
.contact-card { background: var(--dark3); border: 1px solid rgba(0,191,165,0.2); border-radius: var(--radius); padding: 36px; max-width: 480px; margin: 0 auto; text-align: center; }
.contact-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.contact-card p { font-size: 15px; color: var(--muted); margin-bottom: 20px; }
.contact-email { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,191,165,0.1); border: 1px solid rgba(0,191,165,0.3); border-radius: 8px; padding: 12px 20px; font-size: 15px; color: var(--primary); text-decoration: none; font-weight: 600; transition: all 0.2s; }
.contact-email:hover { background: rgba(0,191,165,0.2); }
.social-icons { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 24px; }
.social-icon { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; color: var(--muted); transition: color 0.2s, transform 0.2s; }
.social-icon svg { width: 22px; height: 22px; }
.social-icon:hover { color: var(--warm-white); transform: translateY(-2px); }

/* ---- FOOTER ---- */
.footer { padding: 60px 0 32px; border-top: 1px solid var(--border); }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; margin-bottom: 40px; flex-wrap: wrap; }
.footer-brand p { font-size: 14px; color: var(--muted); margin-top: 12px; max-width: 280px; line-height: 1.6; }
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--warm-white); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; flex-direction: column; gap: 8px; }
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-disclaimer { font-size: 11px !important; opacity: 0.6; line-height: 1.5; }

/* ---- LEGAL PAGES ---- */
.legal-page { padding: 120px 0 80px; }
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h1 { font-size: 38px; font-weight: 900; letter-spacing: -1.5px; margin-bottom: 8px; }
.legal-content .updated { font-size: 13px; color: var(--muted); margin-bottom: 40px; }
.legal-content h2 { font-size: 20px; font-weight: 700; margin: 36px 0 12px; color: var(--primary); }
.legal-content h3 { font-size: 16px; font-weight: 700; margin: 24px 0 8px; }
.legal-content p { font-size: 15px; color: rgba(248,246,242,0.8); line-height: 1.7; margin-bottom: 14px; }
.legal-content ul, .legal-content ol { padding-left: 20px; margin-bottom: 14px; }
.legal-content li { font-size: 15px; color: rgba(248,246,242,0.8); line-height: 1.7; margin-bottom: 6px; }
.legal-back { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); text-decoration: none; font-size: 14px; margin-bottom: 32px; transition: gap 0.2s; }
.legal-back:hover { gap: 10px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-promise { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-mockup { max-width: 320px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-demo { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-top { flex-direction: column; }
}
@media (max-width: 640px) {
  .diff-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-tabs { gap: 6px; }
  .journey-tab { font-size: 11px; padding: 6px 10px; }
  .footer-links { flex-direction: column; gap: 12px; }
}
