/* Lawrence AI - Landing Page Styles
   "The Sovereign Insight" — Dark premium aesthetic
   Only loaded by: landing.html */

/* ===== ANIMATIONS ===== */
@keyframes textShimmer { to { background-position: 200% center; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ctaPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(169, 199, 255, 0.4); } 50% { box-shadow: 0 0 0 12px rgba(169, 199, 255, 0); } }
@keyframes scanline { 0% { top: 0; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { top: 100%; opacity: 0; } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes priceSwitch { 0% { opacity: 0; transform: translateY(-8px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes pulseHighlight { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
@keyframes aurora1 { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(15vw, 15vh) scale(1.3) rotate(10deg); } }
@keyframes aurora2 { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(-15vw, -10vh) scale(1.2) rotate(-10deg); } }
@keyframes aurora3 { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(10vw, -15vh) scale(1.4) rotate(5deg); } }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
@keyframes liquidA { 0% { transform: translate(0%, 0%) scale(1); } 33% { transform: translate(30%, -20%) scale(1.2); } 66% { transform: translate(-20%, 30%) scale(0.9); } 100% { transform: translate(0%, 0%) scale(1); } }
@keyframes liquidB { 0% { transform: translate(0%, 0%) scale(1); } 33% { transform: translate(-30%, 20%) scale(1.1); } 66% { transform: translate(20%, -30%) scale(1.3); } 100% { transform: translate(0%, 0%) scale(1); } }
@keyframes liquidC { 0% { transform: translate(0%, 0%) scale(1.1); } 33% { transform: translate(20%, 25%) scale(0.9); } 66% { transform: translate(-25%, -15%) scale(1.2); } 100% { transform: translate(0%, 0%) scale(1.1); } }
@keyframes liquidD { 0% { transform: translate(0%, 0%) scale(1); } 50% { transform: translate(-15%, -20%) scale(1.15); } 100% { transform: translate(0%, 0%) scale(1); } }

.animate-on-scroll { opacity: 0; transform: translateY(24px); }
.animate-on-scroll.visible { animation: fadeInUp 0.8s var(--easing) forwards; }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; width: 100%; z-index: 100; transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease; padding: 16px 0; background: transparent; }
.navbar.scrolled { background: rgba(15, 19, 31, 0.75); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4); padding: 12px 0; }

.navbar-inner { display: flex; align-items: center; justify-content: space-between; }
.navbar-brand { display: flex; align-items: center; gap: 10px; z-index: 101; }
.navbar-logo { height: 28px; width: auto; filter: brightness(0) invert(1); }
.navbar-brand-text { font-family: 'Manrope', sans-serif; font-size: 20px; color: #fff; transition: color 0.3s; }

.navbar-links { display: flex; gap: 32px; }
.navbar-links a { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7); transition: color 0.2s; text-transform: uppercase; letter-spacing: 0.1em; }
.navbar-links a:hover { color: var(--brand-light); }

.navbar-actions { display: flex; align-items: center; gap: 20px; }
.navbar-login { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.8); transition: color 0.3s; }
.navbar-login:hover { color: #fff; }

.lang-toggle { display: flex; background: rgba(255,255,255,0.05); border-radius: var(--radius-pill); padding: 2px; border: 1px solid rgba(255,255,255,0.1); }
.lang-toggle button { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: var(--radius-pill); color: rgba(255,255,255,0.5); transition: all 0.2s; }
.lang-toggle button.active { background: rgba(255,255,255,0.15); color: #fff; }

/* Scrolled state — stays dark */
.navbar.scrolled .navbar-brand-text,
.navbar.scrolled .navbar-links a,
.navbar.scrolled .navbar-login { color: rgba(255,255,255,0.8); }
.navbar.scrolled .navbar-links a:hover,
.navbar.scrolled .navbar-login:hover { color: #fff; }
.navbar.scrolled .lang-toggle { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.navbar.scrolled .lang-toggle button { color: rgba(255,255,255,0.5); }
.navbar.scrolled .lang-toggle button.active { color: #fff; background: rgba(255,255,255,0.15); }

.navbar-toggle { display: none; flex-direction: column; gap: 5px; z-index: 101; }
.navbar-toggle span { width: 24px; height: 2px; background: #fff; transition: 0.3s; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--surface-base); overflow: hidden; padding-top: 80px; }

.aurora-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.aurora-blob { position: absolute; filter: blur(80px); opacity: 0.5; border-radius: 50%; will-change: transform; }
.aurora-1 { width: 60vw; height: 60vh; background: rgba(0, 41, 87, 0.6); top: -10%; left: -10%; animation: aurora1 15s infinite alternate ease-in-out; }
.aurora-2 { width: 50vw; height: 50vh; background: rgba(58, 144, 255, 0.15); bottom: -20%; right: -10%; animation: aurora2 18s infinite alternate ease-in-out; }
.aurora-3 { width: 40vw; height: 50vh; background: rgba(89, 216, 222, 0.1); top: 30%; left: 40%; animation: aurora3 20s infinite alternate ease-in-out; }



.hero-inner { position: relative; z-index: 10; max-width: 1200px; pointer-events: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-text { text-align: left; }

/* Cyan label */
.hero-label { font-family: 'Inter', sans-serif; color: var(--tertiary); letter-spacing: 0.4em; text-transform: uppercase; font-size: 11px; font-weight: 600; margin-bottom: 32px; }

/* Editorial headline: Newsreader light italic + bold */
.hero-title { font-size: clamp(44px, 8vw, 96px); line-height: 0.95; margin-bottom: 32px; }
.hero-title-light { font-family: 'Newsreader', Georgia, serif; font-weight: 300; font-style: italic; color: var(--text-primary); }
.hero-title-bold { font-family: 'Newsreader', Georgia, serif; font-weight: 800; font-style: normal; color: var(--text-primary); }

.hero-subtitle { font-family: 'Newsreader', serif; color: var(--text-secondary); font-size: clamp(16px, 2.5vw, 20px); margin-bottom: 40px; line-height: 1.6; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }
.hero-cta .btn { border-radius: var(--radius-pill); padding: 16px 40px; font-family: 'Manrope', sans-serif; font-size: 15px; }
.btn-hero-primary { background: var(--brand-light); color: #003063; font-weight: 800; transition: all 0.3s; }
.btn-hero-primary:hover { box-shadow: 0 0 30px rgba(169, 199, 255, 0.4); transform: translateY(-2px); }
.hero-proof { font-family: 'Inter', sans-serif; color: var(--text-tertiary); font-size: 13px; letter-spacing: 0.02em; }

/* ===== HERO DEMO (Microsoft Word Dark Mode Contract Annotation) ===== */
.hero-demo { border-radius: 12px; overflow: hidden; position: relative; background: #0a0a1a; border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04); contain: layout style paint; }
.hero-demo::before { content: ''; position: absolute; inset: 0; z-index: 0; background: #0a0a1a; }
.hero-demo .liquid-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; opacity: 0.7; }
.hero-demo .liquid-blob { position: absolute; border-radius: 50%; will-change: transform; filter: blur(40px); }
.hero-demo .liquid-blob-1 { width: 60%; height: 60%; top: -10%; left: -10%; background: radial-gradient(circle, rgba(26, 95, 180, 0.8), transparent 70%); animation: liquidA 8s ease-in-out infinite; }
.hero-demo .liquid-blob-2 { width: 50%; height: 50%; bottom: -15%; right: -10%; background: radial-gradient(circle, rgba(98, 160, 234, 0.6), transparent 70%); animation: liquidB 10s ease-in-out infinite; }
.hero-demo .liquid-blob-3 { width: 45%; height: 55%; top: 30%; left: 50%; background: radial-gradient(circle, rgba(53, 132, 228, 0.5), transparent 70%); animation: liquidC 12s ease-in-out infinite; }
.hero-demo .liquid-blob-4 { width: 40%; height: 40%; top: 10%; right: 20%; background: radial-gradient(circle, rgba(89, 216, 222, 0.4), transparent 70%); animation: liquidD 9s ease-in-out infinite; }

/* Animation pause when hero is off-screen */
.hero-paused .aurora-blob,
.hero-paused .liquid-blob { animation-play-state: paused; }

/* Word dark mode title bar */
.hero-demo-header { display: flex; align-items: center; justify-content: space-between; padding: 5px 4px 5px 8px; background: rgba(13, 59, 122, 0.85); position: relative; z-index: 1; }
.hero-demo-titlebar-left { display: flex; align-items: center; gap: 8px; min-width: 0; }
.hero-demo-word-icon { width: 18px; height: 18px; background: #ffffff; color: #1a5fb4; font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; border-radius: 2px; flex-shrink: 0; }
.hero-demo-filename { font-family: 'Segoe UI', 'Inter', sans-serif; font-size: 11px; color: rgba(255, 255, 255, 0.9); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-demo-titlebar-right { display: flex; align-items: center; flex-shrink: 0; }
.hero-demo-winbtn { width: 28px; height: 20px; display: flex; align-items: center; justify-content: center; font-size: 11px; color: rgba(255, 255, 255, 0.8); }
.hero-demo-winbtn-close { font-size: 13px; }

/* Word dark mode ribbon */
.hero-demo-ribbon { display: flex; align-items: center; padding: 0 8px; background: rgba(30, 30, 40, 0.8); border-bottom: 1px solid rgba(255, 255, 255, 0.06); font-family: 'Segoe UI', 'Inter', sans-serif; font-size: 10px; color: #a0a0a0; overflow: hidden; position: relative; z-index: 1; }
.hero-demo-ribbon span { padding: 5px 8px; white-space: nowrap; }
.hero-demo-ribbon-active { color: #6cb2f7; font-weight: 600; border-bottom: 2px solid #6cb2f7; margin-bottom: -1px; }

/* Dark document page */
.hero-demo-body { position: relative; padding: 28px 32px 24px; background: rgba(15, 15, 25, 0.4); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 6px; margin: 6px 10px 10px; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); z-index: 1; }

/* Scan line */
.hero-demo-scan { position: absolute; top: 0; left: 0; right: 0; height: 40px; background: linear-gradient(to bottom, transparent, rgba(108, 178, 247, 0.05), rgba(108, 178, 247, 0.15)); border-bottom: 2px solid #6cb2f7; pointer-events: none; z-index: 2; opacity: 0; transition: opacity 0.3s; }
.hero-demo-scan.active { opacity: 1; animation: heroScanline 1.5s ease-in-out forwards; }
@keyframes heroScanline { 0% { top: 0; } 100% { top: calc(100% - 40px); } }

/* Clause text */
.hero-demo-clause { font-family: 'Newsreader', Georgia, serif; font-size: 15px; line-height: 1.8; color: #d4d4d4; margin-bottom: 20px; }

/* Inline highlights — hidden by default */
.hero-hl { transition: all 0.4s ease; border-radius: 2px; padding: 1px 2px; }
.hero-hl-original { transition: opacity 0.4s ease; }
.hero-hl-fix { display: none; color: #4ec9b0; font-weight: 600; }

.hero-hl-red.active { background: rgba(255, 100, 100, 0.15); border-bottom: 2px solid #f48282; color: #f48282; font-weight: 600; }
.hero-hl-yellow.active { background: rgba(255, 200, 60, 0.12); border-bottom: 2px solid #e0c04a; color: #e0c04a; font-weight: 600; }

/* Corrected state: strikethrough old, show new */
.hero-hl.corrected { background: rgba(78, 201, 176, 0.1); border-bottom: 2px solid #4ec9b0; }
.hero-hl.corrected .hero-hl-original { text-decoration: line-through; opacity: 0.4; }
.hero-hl.corrected .hero-hl-fix { display: inline; margin-left: 4px; }

/* Findings list */
.hero-demo-findings { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }

.hero-finding { display: flex; align-items: center; gap: 10px; padding: 8px 12px; border-radius: var(--radius-md); opacity: 0; transform: translateY(8px); transition: opacity 0.4s ease, transform 0.4s ease; }
.hero-finding.active { opacity: 1; transform: translateY(0); }

.hero-finding-red { background: rgba(244, 130, 130, 0.1); border: 1px solid rgba(244, 130, 130, 0.2); }
.hero-finding-yellow { background: rgba(224, 192, 74, 0.08); border: 1px solid rgba(224, 192, 74, 0.18); }

.hero-finding-badge { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; flex-shrink: 0; }
.hero-badge-red { background: rgba(244, 130, 130, 0.15); color: #f48282; }
.hero-badge-yellow { background: rgba(224, 192, 74, 0.12); color: #e0c04a; }

.hero-finding-text { display: flex; flex-direction: column; gap: 1px; }
.hero-finding-text strong { font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 700; color: #e8e8e8; }
.hero-finding-text span { font-family: 'Inter', sans-serif; font-size: 11px; color: #999999; }

/* Suggestion bar */
.hero-suggestion { padding: 12px 16px; border-radius: var(--radius-md); background: rgba(78, 201, 176, 0.06); border: 1px solid rgba(78, 201, 176, 0.18); opacity: 0; transform: translateY(8px); transition: opacity 0.5s ease, transform 0.5s ease; }
.hero-suggestion.active { opacity: 1; transform: translateY(0); }

.hero-suggestion-header { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.hero-suggestion-icon { width: 20px; height: 20px; border-radius: 50%; background: rgba(78, 201, 176, 0.12); color: #4ec9b0; font-size: 11px; display: flex; align-items: center; justify-content: center; }
.hero-suggestion-header strong { font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 700; color: #4ec9b0; }
.hero-suggestion p { font-family: 'Newsreader', serif; font-size: 13px; color: #b0b0b0; line-height: 1.5; margin: 0; }
.hero-suggestion p strong { color: #4ec9b0; }

/* Mobile */
@media (max-width: 768px) {
    .hero-demo-body { padding: 20px 16px 16px; margin: 4px 6px 6px; }
    .hero-demo-clause { font-size: 14px; }
    .hero-demo-ribbon span { padding: 4px 5px; font-size: 9px; }
    .hero-demo-winbtn { width: 22px; height: 18px; font-size: 10px; }
    .hero-demo-winbtn-close { font-size: 12px; }
    .hero-demo-word-icon { width: 15px; height: 15px; font-size: 9px; }
    .hero-demo-filename { font-size: 10px; }
}

/* ===== TRUST STRIP ===== */
.trust-strip { background: var(--surface-container-low); padding: 48px 0; position: relative; z-index: 10; }
.trust-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.trust-metric-value { font-family: 'Manrope', sans-serif; font-size: 36px; font-weight: 800; color: var(--brand-light); line-height: 1; margin-bottom: 8px; }
.trust-metric-label { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--text-secondary); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; }

/* ===== LOGO STRIP ===== */
.logo-strip { background: var(--surface-base); padding: 40px 0 32px; text-align: center; }
.logo-strip-label { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 24px; }
.logo-strip-logos { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.logo-placeholder { font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 700; color: var(--text-tertiary); opacity: 0.5; letter-spacing: 0.05em; }
.logo-strip-note { font-family: 'Inter', sans-serif; font-size: 11px; color: var(--text-tertiary); opacity: 0.4; margin-top: 16px; font-style: italic; }

/* Trust metric extras */
.trust-metric-small { font-size: 16px; font-weight: 400; opacity: 0.6; }
.trust-metric-arrow { color: var(--tertiary); margin: 0 4px; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--surface-container); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { padding: 32px; border-radius: var(--radius-lg); display: flex; flex-direction: column; justify-content: space-between; }
.testimonial-quote { font-family: 'Newsreader', serif; font-size: 16px; font-style: italic; color: var(--text-body); line-height: 1.6; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gradient-brand); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.testimonial-name { font-family: 'Manrope', sans-serif; font-weight: 600; color: var(--text-primary); font-size: 14px; }
.testimonial-role { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--text-tertiary); }

/* ===== VIDEO PLACEHOLDER ===== */
.video-section { background: var(--surface-container-low); }
.video-container { position: relative; max-width: 800px; margin: 0 auto; aspect-ratio: 16/9; background: #000; border: 1px solid var(--border-default); border-radius: var(--radius-xl); overflow: hidden; cursor: pointer; }
.video-container video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0, 0, 0, 0.4); transition: opacity 0.3s; }
.video-overlay.hidden { opacity: 0; pointer-events: none; }
.video-container:hover .video-overlay:not(.hidden) { background: rgba(0, 0, 0, 0.3); }
.video-play-btn { width: 72px; height: 72px; border-radius: 50%; background: var(--gradient-brand); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(58, 144, 255, 0.3); transition: transform 0.2s; }
.video-play-btn svg { width: 32px; height: 32px; margin-left: 4px; }
.video-container:hover .video-play-btn { transform: scale(1.08); }

/* ===== COMPARISON TABLE ===== */
.comparison-section { background: var(--surface-base); }
.comparison-table { max-width: 900px; margin: 0 auto; border: 1px solid var(--border-default); border-radius: var(--radius-lg); overflow: hidden; }
.comparison-header, .comparison-row { display: grid; grid-template-columns: 2fr 1.2fr 1fr 1.2fr; }
.comparison-header { background: var(--surface-container-high); }
.comparison-header > div { padding: 16px 20px; font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 700; color: var(--text-primary); text-align: center; }
.comparison-feature-col { text-align: left !important; font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text-body); }
.comparison-row { border-top: 1px solid var(--border-default); }
.comparison-row > div { padding: 14px 20px; font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text-secondary); text-align: center; display: flex; align-items: center; justify-content: center; }
.comparison-row .comparison-feature-col { justify-content: flex-start; color: var(--text-body); font-weight: 500; }
.comparison-col-highlight { background: rgba(169, 199, 255, 0.05); color: var(--brand-light) !important; font-weight: 600 !important; }
.comparison-check { color: var(--tertiary) !important; font-size: 18px; }
.comparison-cross { color: var(--danger-red) !important; font-size: 18px; opacity: 0.6; }
.comparison-muted { opacity: 0.5; }

/* ===== FEATURE VISUAL CARDS ===== */
.feature-visual-card { padding: 12px; border-radius: var(--radius-sm); margin-bottom: 12px; font-family: 'Inter', sans-serif; font-size: 12px; }
.feature-visual-card:last-child { margin-bottom: 0; }
.feature-visual-card strong { display: block; margin-bottom: 4px; }
.feature-visual-red { background: rgba(147, 0, 10, 0.3); border-left: 3px solid var(--danger-red); color: var(--danger-red); }
.feature-visual-green { background: rgba(89, 216, 222, 0.1); border-left: 3px solid var(--tertiary); color: var(--tertiary); }

/* ===== LEAD CAPTURE ===== */
.lead-capture { background: var(--surface-container-low); }
.lead-capture-card { padding: 48px; border-radius: var(--radius-xl); display: flex; align-items: center; gap: 48px; }
.lead-capture-text { flex: 1; }
.lead-capture-text h3 { font-family: 'Newsreader', serif; font-size: 22px; font-weight: 600; font-style: italic; color: var(--text-primary); margin-bottom: 8px; }
.lead-capture-desc { font-family: 'Newsreader', serif; font-size: 15px; color: var(--text-secondary); }
.lead-capture-form { display: flex; gap: 12px; flex-shrink: 0; }
.lead-capture-input { padding: 12px 16px; background: var(--surface-container-highest); border: none; border-bottom: 2px solid transparent; border-radius: var(--radius-md); font-family: 'Newsreader', serif; font-size: 15px; color: var(--text-primary); width: 260px; transition: border-color 0.2s; }
.lead-capture-input::placeholder { color: var(--text-tertiary); }
.lead-capture-input:focus { outline: none; border-bottom-color: var(--tertiary); }

/* ===== FINAL CTA (improved) ===== */
.final-cta-title { font-family: 'Manrope', sans-serif; font-size: 36px; color: var(--text-primary); }
.final-cta-subtitle { font-family: 'Newsreader', serif; font-size: 18px; color: var(--text-secondary); margin-top: 16px; }

/* ===== COOKIE CONSENT ===== */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 95; background: var(--surface-container-high); border-top: 1px solid var(--border-default); padding: 16px 24px; padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px)); display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; font-family: 'Inter', sans-serif; font-size: 13px; color: var(--text-secondary); }
.cookie-banner a { color: var(--brand-light); text-decoration: underline; }

/* ===== GLOW CARDS + 3D TILT ===== */
.glow-card { position: relative; overflow: hidden; background: var(--glass-bg); backdrop-filter: blur(var(--glass-blur)); -webkit-backdrop-filter: blur(var(--glass-blur)); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-card); transform-style: preserve-3d; transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease; will-change: transform; }
.glow-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(169, 199, 255, 0.06), transparent 40%); z-index: 0; opacity: 0; transition: opacity 0.3s ease; pointer-events: none; }
.glow-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-card-hover); z-index: 20; }
.glow-card:hover::before { opacity: 1; }
.glow-card > * { position: relative; z-index: 1; transform: translateZ(20px); }

/* ===== FEATURES — BENTO BOX ===== */
.features { background: var(--surface-container); padding-top: 32px; }
.features-bento { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

.bento-wide { grid-column: span 2; display: flex; align-items: center; gap: 40px; }
.bento-wide .feature-content { flex: 1; }
.bento-wide .feature-visual { flex: 1; background: var(--surface-container-low); border-radius: var(--radius-md); padding: 24px; height: 100%; display: flex; flex-direction: column; justify-content: center; }

.bento-square { grid-column: span 1; }

.feature-pillar-icon { width: 48px; height: 48px; border-radius: var(--radius-md); background: rgba(169, 199, 255, 0.1); color: var(--brand-light); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.feature-pillar-icon svg { width: 24px; height: 24px; stroke-width: 2; }
.feature-pillar-title { color: var(--text-primary); margin-bottom: 12px; }
.feature-pillar-desc { font-family: 'Newsreader', serif; color: var(--text-secondary); font-size: 15px; margin-bottom: 24px; }
.feature-list li { position: relative; padding-left: 28px; margin-bottom: 12px; font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text-body); }
.feature-list li::before { content: '\2713'; position: absolute; left: 0; top: 0; color: var(--tertiary); font-weight: bold; }


/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--surface-container); }
.steps-container { position: relative; padding: 24px 0; }
.step-progress-track { position: absolute; top: 48px; left: 16%; right: 16%; height: 2px; background: var(--surface-container-highest); z-index: 0; overflow: hidden; }
.step-progress-fill { position: absolute; top: 0; left: 0; height: 100%; width: var(--scroll-progress, 0%); background: var(--brand-medium); transition: width 0.1s linear; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; z-index: 1; }
.step { position: relative; text-align: center; }
.step-number { width: 48px; height: 48px; background: var(--gradient-brand); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Manrope', sans-serif; font-size: 20px; font-weight: 700; margin: 0 auto 24px auto; box-shadow: 0 0 0 8px var(--surface-container); transition: transform 0.3s ease; }
.step-title { font-family: 'Manrope', sans-serif; color: var(--text-primary); margin-bottom: 12px; }
.step-desc { font-family: 'Newsreader', serif; font-size: 15px; color: var(--text-secondary); }

/* ===== PRICING ===== */
.pricing { background: var(--surface-container-lowest); }

/* Segmented pill toggle */
.pricing-trial-note { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--text-tertiary); text-align: center; margin: 16px 0 32px; }
.pricing-toggle-pill { display: flex; width: fit-content; margin: 0 auto 0; position: relative; background: var(--surface-container-high); border-radius: var(--radius-pill); padding: 4px; }
.pricing-pill-option { position: relative; z-index: 1; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; color: var(--text-tertiary); padding: 10px 28px; border-radius: var(--radius-pill); transition: color 0.3s; cursor: pointer; display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.pricing-pill-option.active { color: var(--text-primary); font-weight: 600; }
.pricing-pill-badge { font-size: 11px; font-weight: 700; color: var(--tertiary); background: rgba(89, 216, 222, 0.12); padding: 2px 8px; border-radius: var(--radius-pill); }
.pricing-pill-option.active .pricing-pill-badge { background: rgba(89, 216, 222, 0.2); }
.pricing-pill-slider { position: absolute; top: 4px; left: 4px; height: calc(100% - 8px); border-radius: var(--radius-pill); background: var(--surface-container-lowest); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); transition: transform 0.3s var(--easing), width 0.3s var(--easing); z-index: 0; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; align-items: stretch; margin-top: 16px; margin-bottom: 32px; background: var(--border-default); border: 1px solid var(--border-default); border-radius: 2rem; overflow: visible; position: relative; }

.pricing-card { background: var(--surface-base); padding: 48px 32px; transform-style: flat; transition: background 0.3s ease; border: none; border-radius: 0; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; display: flex; flex-direction: column; }
.pricing-card:first-child { border-radius: 2rem 0 0 2rem; }
.pricing-card:last-child { border-radius: 0 2rem 2rem 0; }
.pricing-card:hover { background: var(--surface-container); }
.pricing-card .btn { width: 100%; margin-top: auto; }

.pricing-card-name { font-family: 'Newsreader', serif; font-size: 32px; font-weight: 300; font-style: italic; color: var(--text-primary); margin-bottom: 4px; text-align: center; }
.pricing-card-desc { font-family: 'Newsreader', serif; font-size: 14px; margin-bottom: 12px; min-height: auto; text-align: center; background: linear-gradient(135deg, #c9a84c, #f0d67b, #c9a84c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pricing-card-price { margin-bottom: 24px; display: flex; align-items: baseline; justify-content: center; }
.pricing-card-currency { font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 600; color: var(--text-secondary); margin-right: 4px; }
.pricing-card-amount { font-family: 'Manrope', sans-serif; font-size: 36px; font-weight: 800; color: var(--text-primary); line-height: 1; }
.pricing-card-period { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text-tertiary); margin-left: 4px; }
.pricing-card-original { display: none; font-family: 'Manrope', sans-serif; font-size: 22px; font-weight: 500; color: var(--text-tertiary); text-decoration: line-through; margin-right: 8px; opacity: 0.5; }
.pricing-card-savings { display: none; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; color: var(--tertiary); background: rgba(89, 216, 222, 0.08); padding: 4px 12px; border-radius: var(--radius-pill); margin-bottom: 16px; width: fit-content; margin-left: auto; margin-right: auto; }
.pricing-card-teaser { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--tertiary); margin-bottom: 16px; opacity: 0.8; text-align: center; }

/* Annual pricing active state: show strikethrough + savings, hide teaser */
.pricing-annual .pricing-card-original { display: inline; }
.pricing-annual .pricing-card-savings { display: block; }
.pricing-annual .pricing-card-teaser { display: none; }
.pricing-card-features { margin-bottom: 32px; padding-top: 24px; }
.pricing-card-features-top { min-height: 100px; margin-bottom: 0; }
.pricing-card-divider { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--brand-light); font-weight: 500; padding: 16px 0 0 24px; margin-bottom: 0; border-top: 1px solid rgba(255, 255, 255, 0.06); position: relative; }
.pricing-card-divider::before { content: '\2713'; position: absolute; left: 0; color: var(--brand-light); font-weight: bold; }
.pricing-card-divider + .pricing-card-features { padding-top: 16px; }
.pricing-card-features li { font-family: 'Inter', sans-serif; font-size: 14px; margin-bottom: 16px; padding-left: 24px; position: relative; color: var(--text-secondary); }
.pricing-card-features li::before { content: '\2713'; position: absolute; left: 0; color: var(--brand-light); font-weight: bold; }

.pricing-card.featured { background: var(--surface-container-low); padding: 48px 32px; overflow: visible; position: relative; }
.pricing-card.featured::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-brand); }
.pricing-card.featured::before { display: none; }
.pricing-card.featured .pricing-card-name { font-weight: 600; }
.pricing-card.featured .pricing-card-features li { color: var(--text-primary); }

.pricing-card-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); font-family: 'Inter', sans-serif; background: var(--brand-light); color: #003063; font-size: 11px; font-weight: 700; padding: 6px 16px; border-radius: var(--radius-pill); text-transform: uppercase; letter-spacing: 0.1em; z-index: 2; }

.pricing-trust { text-align: center; font-family: 'Newsreader', serif; font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; }
.pricing-badges { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.trust-badge { display: inline-flex; align-items: center; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500; color: var(--text-secondary); background: var(--surface-container); padding: 6px 12px; border-radius: var(--radius-sm); border: 1px solid var(--border-default); }

/* ===== FAQ ===== */
.faq { background: var(--surface-base); }
.faq-grid { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-default); }
.faq-question { width: 100%; text-align: left; padding: 24px 0; font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 600; color: var(--text-primary); display: flex; justify-content: space-between; align-items: center; transition: color 0.2s; }
.faq-question:hover { color: var(--brand-light); }
.faq-icon { width: 20px; height: 20px; position: relative; transition: transform 0.3s ease; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--text-secondary); transition: 0.3s; }
.faq-icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq-icon::after { top: 0; left: 9px; width: 2px; height: 20px; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--easing); }
.faq-answer-inner { padding-bottom: 24px; font-family: 'Newsreader', serif; color: var(--text-secondary); font-size: 15px; line-height: 1.7; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: var(--brand-light); }

/* ===== FINAL CTA ===== */
.final-cta { position: relative; background: var(--surface-container-low); overflow: hidden; }
.final-cta-bg { position: absolute; inset: 0; pointer-events: none; opacity: 0.3; }
.final-cta-buttons { display: flex; justify-content: center; gap: 16px; margin-top: 40px; }
.final-cta h2 { color: var(--text-primary); }
.final-cta p { color: var(--text-secondary); }

/* ===== FOOTER ===== */
.footer { background: var(--surface-container-lowest); color: var(--text-tertiary); padding: 64px 0 32px; font-family: 'Newsreader', serif; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand img { height: 24px; filter: brightness(0) invert(1); }
.footer-brand-name { font-family: 'Manrope', sans-serif; font-size: 18px; color: var(--text-primary); }
.footer-heading { font-family: 'Inter', sans-serif; color: var(--text-primary); font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 24px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-tertiary); transition: color 0.2s; }
.footer-links a:hover { color: var(--text-primary); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 32px; border-top: 1px solid var(--border-default); color: var(--text-tertiary); font-family: 'Inter', sans-serif; font-size: 12px; }

/* ===== FLOATING COMPONENTS ===== */
.mobile-cta-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 80; background: rgba(15, 19, 31, 0.95); backdrop-filter: blur(20px); padding: 12px 24px; padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px)); border-top: 1px solid var(--border-default); display: none; transform: translateY(100%); transition: transform 0.3s ease; }
.mobile-cta-bar.visible { transform: translateY(0); }
.mobile-cta-bar .btn { width: 100%; }

/* ===== CONTACT MODAL ===== */
.contact-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 200; display: none; align-items: center; justify-content: center; backdrop-filter: blur(8px); }
.contact-overlay.open { display: flex; }
.contact-modal { background: var(--surface-container); border: 1px solid var(--border-default); border-radius: var(--radius-xl); padding: 40px; max-width: 480px; width: 90%; position: relative; box-shadow: 0 25px 50px rgba(0,0,0,0.5); animation: fadeInUp 0.3s var(--easing); }
.contact-modal h2 { font-family: 'Manrope', sans-serif; font-size: 24px; color: var(--text-primary); margin-bottom: 8px; }
.contact-modal p { font-family: 'Newsreader', serif; font-size: 15px; color: var(--text-secondary); margin-bottom: 24px; }
.contact-modal-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--text-secondary); font-size: 20px; transition: background 0.2s; }
.contact-modal-close:hover { background: var(--surface-container-high); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; color: var(--text-primary); display: flex; flex-direction: column; gap: 6px; }
.contact-form input, .contact-form textarea { padding: 10px 14px; background: var(--surface-container-highest); border: none; border-bottom: 2px solid transparent; border-radius: var(--radius-md); font-size: 15px; font-family: 'Newsreader', serif; color: var(--text-primary); transition: border-color 0.2s; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-tertiary); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-bottom-color: var(--tertiary); }
.contact-form textarea { resize: vertical; min-height: 80px; }
.contact-form .btn { margin-top: 8px; }

/* ===== REGISTRATION MODAL ===== */
.register-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 200; display: none; align-items: center; justify-content: center; backdrop-filter: blur(8px); }
.register-overlay.open { display: flex; }
.register-modal { background: var(--surface-container); border: 1px solid var(--border-default); border-radius: var(--radius-xl); padding: 40px; max-width: 460px; width: 90%; max-height: 90vh; overflow-y: auto; position: relative; box-shadow: 0 25px 50px rgba(0,0,0,0.5); animation: fadeInUp 0.3s var(--easing); }
.register-modal h2 { font-family: 'Manrope', sans-serif; font-size: 24px; color: var(--text-primary); margin-bottom: 8px; }
.register-modal p { font-family: 'Newsreader', serif; font-size: 15px; color: var(--text-secondary); margin-bottom: 20px; }

/* Step indicator */
.register-steps { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 28px; }
.register-step { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; color: var(--text-tertiary); background: var(--surface-container-high); transition: all 0.2s; }
.register-step.active { background: var(--brand-medium); color: #fff; }
.register-step.done { background: var(--tertiary); color: var(--surface-base); }
.register-step-line { width: 40px; height: 2px; background: var(--surface-container-high); }

/* Screens */
.register-screen { display: none; }
.register-screen.active { display: block; animation: fadeInUp 0.25s var(--easing); }

/* Form elements (reuse contact form patterns) */
.register-modal label { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; color: var(--text-primary); display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.register-modal label span { font-size: 13px; font-weight: 500; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.05em; }
.register-required { color: var(--danger-red); text-transform: none; letter-spacing: 0; }
.register-modal input[type="email"],
.register-modal input[type="text"],
.register-modal input[type="password"] { padding: 10px 14px; background: var(--surface-container-highest); border: none; border-bottom: 2px solid transparent; border-radius: var(--radius-md); font-size: 15px; font-family: 'Inter', sans-serif; color: var(--text-primary); transition: border-color 0.2s; outline: none; box-sizing: border-box; height: 40px; width: 100%; }
.register-modal input:focus { border-bottom-color: var(--tertiary); }
.register-modal input::placeholder { color: var(--text-tertiary); }
.register-modal select { padding: 10px 14px; background: var(--surface-container-highest); border: none; border-bottom: 2px solid transparent; border-radius: var(--radius-md); font-size: 15px; font-family: 'Inter', sans-serif; color: var(--text-primary); transition: border-color 0.2s; outline: none; width: 100%; box-sizing: border-box; height: 40px; appearance: none; -webkit-appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23616879' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.register-modal select:focus { border-bottom-color: var(--tertiary); }
.register-modal select option { background: #313442; color: #dfe2f3; }

.register-btn { width: 100%; justify-content: center; margin-top: 4px; }
.register-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.register-form-row label { margin-bottom: 0; }

/* Error */
.register-error { background: rgba(147, 0, 10, 0.2); border: 1px solid rgba(255, 180, 171, 0.3); border-radius: var(--radius-md); padding: 10px 14px; color: var(--danger-red); font-family: 'Inter', sans-serif; font-size: 14px; margin-bottom: 16px; }

/* Email display on OTP screen */
.register-email-display { font-family: 'Inter', sans-serif !important; font-weight: 600 !important; color: var(--brand-light) !important; font-size: 14px !important; margin-bottom: 24px !important; }

/* OTP inputs */
.register-otp-inputs { display: flex; gap: 8px; justify-content: center; margin-bottom: 20px; }
.register-otp-digit { width: 48px; height: 56px; text-align: center; font-family: 'Manrope', sans-serif; font-size: 24px; font-weight: 700; color: var(--text-primary); background: var(--surface-container-highest); border: 2px solid var(--border-default); border-radius: var(--radius-md); outline: none; transition: border-color 0.2s; }
.register-otp-digit:focus { border-color: var(--tertiary); }

/* Password toggle */
.register-password-wrapper { position: relative; }
.register-password-wrapper input { padding-right: 40px; }
.register-password-toggle { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); background: none; border: none; padding: 4px; cursor: pointer; color: var(--text-tertiary); display: flex; align-items: center; justify-content: center; transition: color 0.2s; }
.register-password-toggle:hover { color: var(--text-secondary); }

/* Password requirements */
.register-password-reqs { display: flex; flex-wrap: wrap; gap: 6px 14px; margin-bottom: 12px; }
.register-password-reqs .req { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--text-tertiary); transition: color 0.2s; }
.register-password-reqs .req.met { color: var(--tertiary); }
.register-password-reqs .req.met::before { content: '\2713 '; }

/* Consent checkbox */
.register-consent { flex-direction: row !important; align-items: flex-start !important; gap: 10px !important; }
.register-consent input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--brand-medium); flex-shrink: 0; }
.register-consent span { font-size: 13px !important; text-transform: none !important; letter-spacing: 0 !important; color: var(--text-secondary) !important; line-height: 1.4; }
.register-consent a { color: var(--brand-light); text-decoration: none; }
.register-consent a:hover { text-decoration: underline; }

/* Footer links */
.register-footer { text-align: center; margin-top: 20px; font-family: 'Inter', sans-serif; font-size: 13px; color: var(--text-tertiary); }
.register-footer a { color: var(--brand-light); text-decoration: none; margin-left: 4px; }
.register-footer a:hover { text-decoration: underline; }
.register-link { background: none; border: none; color: var(--text-secondary); font-family: 'Inter', sans-serif; font-size: 13px; cursor: pointer; padding: 0; }
.register-link:hover { color: var(--brand-light); }
.register-link:disabled { opacity: 0.5; cursor: not-allowed; }

/* Spinner reuse */
.register-modal .account-spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid var(--text-tertiary); border-top-color: #fff; border-radius: 50%; animation: accountSpin 0.6s linear infinite; }
@keyframes accountSpin { to { transform: rotate(360deg); } }

@media (max-width: 480px) {
    .register-modal { padding: 28px 20px; }
    .register-form-row { grid-template-columns: 1fr; }
    .register-otp-digit { width: 40px; height: 48px; font-size: 20px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .pricing-card.featured { padding: 40px 32px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .aurora-blob, .liquid-blob { animation: none; }
    .hero-demo-scan.active { animation: none; opacity: 1; top: calc(100% - 40px); }
    .animate-on-scroll { opacity: 1; transform: none; }
    .animate-on-scroll.visible { animation-duration: 0.01ms; }
}

@media (max-width: 768px) {
    .section { padding: 56px 0; }
    .hero { padding-top: 100px; }
    .hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .hero-text { text-align: center; }
    .hero-title { font-size: clamp(32px, 8vw, 96px); }
    .hero-cta { justify-content: center; flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .navbar-links, .navbar-login, .navbar .btn-primary { display: none; }
    .navbar-toggle { display: flex; }
    .aurora-bg { display: none; }
    .trust-metrics { grid-template-columns: 1fr 1fr; }

    .xray-reveal { opacity: 1; -webkit-mask-image: none; mask-image: none; background: transparent; }
    .xray-content { filter: blur(3px); opacity: 0.3; }
    .xray-reveal .hl-red, .xray-reveal .hl-yellow { animation: pulseHighlight 2s ease-in-out infinite; }

    .features-bento { grid-template-columns: 1fr; }
    .bento-wide { grid-column: span 1; flex-direction: column; gap: 24px; }
    .bento-square { grid-column: span 1; }

    .steps-container { padding: 0; }
    .step-progress-track { top: 0; bottom: 0; left: 24px; width: 2px; height: auto; right: auto; }
    .step-progress-fill { width: 100%; height: var(--scroll-progress, 0%); transition: height 0.1s linear; }
    .steps { grid-template-columns: 1fr; padding-left: 64px; text-align: left; }
    .step-number { margin: 0 0 16px 0; position: absolute; left: -64px; top: 0; box-shadow: 0 0 0 8px var(--surface-container); }

    .pricing-grid { grid-template-columns: 1fr; gap: 2px; border-radius: var(--radius-xl); }
    .pricing-card:first-child { border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
    .pricing-card:last-child { border-radius: 0 0 var(--radius-xl) var(--radius-xl); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .comparison-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .comparison-header, .comparison-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; font-size: 12px; min-width: 420px; }
    .comparison-header > div, .comparison-row > div { padding: 10px 8px; }
    .lead-capture-card { flex-direction: column; padding: 32px; gap: 24px; }
    .lead-capture-form { width: 100%; flex-direction: column; }
    .lead-capture-input { width: 100%; }
    .logo-strip-logos { gap: 24px; }
    .logo-placeholder { font-size: 13px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer { padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px)); }
    .mobile-cta-bar { display: block; }
    .final-cta-buttons { flex-direction: column; }
}

@media (max-width: 480px) {
    .pricing-pill-option { padding: 8px 16px; font-size: 13px; }
    .pricing-pill-badge { font-size: 10px; padding: 2px 6px; }
    .trust-metrics { gap: 16px; }
    .trust-metric-value { font-size: 28px; }
    .trust-metric-label { font-size: 11px; }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    animation: none;
}
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7); }
}
@media (max-width: 480px) {
    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
    .whatsapp-float svg { width: 24px; height: 24px; }
}
