/* === Reset & Base === */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; line-height: 1.6; color: #333; background: #fff; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* === Header === */
header { background: #0F172A; padding: 15px 24px; position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 0 rgba(255,255,255,0.04); }
nav { display: flex; justify-content: flex-start; align-items: center; max-width: 1100px; margin: 0 auto; position: relative; }
.logo { font-size: 1.35rem; font-weight: 900; color: #e94560; letter-spacing: 0.3px; text-shadow: 0 0 12px rgba(233,69,96,0.25); }

/* Nav links — dropdown menu */
.nav-links { display: none; position: absolute; top: calc(100% + 15px); right: 0; background: #0F172A; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 12px 0; flex-direction: column; gap: 0; min-width: 180px; box-shadow: 0 12px 32px rgba(0,0,0,0.5); z-index: 200; }
.nav-links.open { display: flex; }
.nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.85rem; font-weight: 500; transition: color 0.2s; letter-spacing: 0.3px; min-height: 44px; display: flex; align-items: center; padding: 12px 24px; }
.nav-links a:hover { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.04); }

/* Hamburger */
.nav-hamburger { display: flex; position: absolute; right: 0; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; padding: 8px; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.7); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === Hero — Full fold, centered search === */
.hero { background: linear-gradient(180deg, #0F172A 0%, #020617 100%); color: #fff; padding: 0 24px; min-height: calc(100vh - 54px); display: flex; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(233,69,96,0.15) 0%, transparent 70%); pointer-events: none; }

.hero-center { max-width: 620px; margin: 0 auto; position: relative; z-index: 1; }

.hero h1 { font-size: clamp(1.6rem, 4.5vw, 2.6rem); font-weight: 800; line-height: 1.35; margin-bottom: 20px; letter-spacing: -0.8px; color: rgba(255,255,255,0.95); }
.hero-underline { text-decoration: underline; text-decoration-color: #e94560; text-underline-offset: 6px; text-decoration-thickness: 3px; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.7); max-width: 540px; margin: 0 auto 36px; line-height: 1.7; font-weight: 400; }
.hero-sub .hero-highlight { color: #e94560; font-weight: 600; }

/* Search card */
.search-card { background: rgba(255,255,255,0.04); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 18px; max-width: 540px; margin: 0 auto; box-shadow: 0 10px 40px rgba(0,0,0,0.35); }
.search-box { display: flex; gap: 10px; }
.search-box input { flex: 1; padding: 14px 16px; font-size: 1rem; font-family: 'Inter', sans-serif; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; background: rgba(255,255,255,0.97); color: #0a0a16; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.search-box input:focus { border-color: #e94560; box-shadow: 0 0 0 3px rgba(233,69,96,0.12); }
.search-box input::placeholder { color: #777; font-weight: 500; text-transform: none; letter-spacing: 0; font-size: 0.85rem; }
.search-box button { padding: 14px 28px; font-size: 0.92rem; font-family: 'Inter', sans-serif; background: #ef4565; color: #fff; border: none; border-radius: 8px; cursor: pointer; font-weight: 700; white-space: nowrap; text-align: center; line-height: 1.3; letter-spacing: 0.3px; transition: background 0.2s, transform 0.1s, box-shadow 0.2s; box-shadow: 0 4px 20px rgba(239,69,101,0.35), 0 0 48px rgba(239,69,101,0.12); }
.search-box button:hover:not(:disabled) { background: #e03355; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,106,0,0.3); }
.search-box button:active:not(:disabled) { transform: translateY(0); box-shadow: 0 2px 8px rgba(233,69,96,0.2); }
.search-box button:disabled { opacity: 0.35; cursor: not-allowed; box-shadow: none; }
.search-box button.has-input:not(:disabled) { background: #ff3d5a; box-shadow: 0 4px 28px rgba(255,61,90,0.5), 0 0 64px rgba(255,61,90,0.2); transition: background 0.3s, box-shadow 0.3s, transform 0.1s; }

/* Proof points under search */
.hero-proof { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 28px; }
.hero-proof-item { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: rgba(255,255,255,0.6); font-weight: 500; letter-spacing: 0.1px; }
.hero-proof-item svg { flex-shrink: 0; }

/* Loading spinner */
.btn-loading { display: none; }
.spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: spin 0.6s linear infinite; vertical-align: middle; margin-right: 6px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Email field */
.email-field { display: none; }
.email-input { width: 100%; padding: 13px 18px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06); color: white; font-size: 0.92rem; outline: none; transition: border-color 0.2s; font-family: inherit; }

/* Marketing opt-in */
.marketing-agree { display: none; }
.marketing-label { display: flex; align-items: flex-start; gap: 8px; cursor: pointer; }
.marketing-checkbox { margin-top: 3px; }
.marketing-text { font-size: 0.75rem; color: rgba(255,255,255,0.8); line-height: 1.4; }

/* Terms checkbox */
.promo-toggle { margin-top: 12px; text-align: center; }
.promo-toggle a { font-size: 0.75rem; color: rgba(255,255,255,0.8); text-decoration: none; letter-spacing: 0.2px; min-height: 44px; display: inline-flex; align-items: center; }
.promo-toggle a:hover { color: rgba(255,255,255,0.5); }
.promo-section { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, margin 0.3s ease; margin-top: 0; }
.promo-section.visible { max-height: 60px; margin-top: 10px; }
.promo-section input { width: 100%; padding: 10px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); color: #fff; font-size: 0.85rem; font-family: inherit; letter-spacing: 1px; text-transform: uppercase; outline: none; text-align: center; min-height: 44px; }
.promo-section input::placeholder { color: rgba(255,255,255,0.2); text-transform: none; letter-spacing: 0; }
.promo-section input:focus { border-color: rgba(233,69,96,0.4); }
.terms-agree { margin-top: 14px; }
.terms-agree label { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-size: 0.75rem; color: rgba(255,255,255,0.8); min-height: 44px; }
.terms-agree input[type="checkbox"] { width: 18px; height: 18px; cursor: pointer; accent-color: #e94560; flex-shrink: 0; }
.terms-agree a { color: rgba(255,255,255,0.5); text-decoration: underline; text-underline-offset: 2px; }
.terms-agree a:hover { color: rgba(255,255,255,0.8); }

/* Error message */
.error-msg { max-width: 540px; margin: 16px auto 0; padding: 12px 18px; border-radius: 10px; font-size: 0.85rem; font-weight: 500; line-height: 1.5; display: none; text-align: left; }
.error-msg.visible { display: block; }
.error-msg.error { background: rgba(233,69,96,0.1); border: 1px solid rgba(233,69,96,0.2); color: #ff8a9e; }
.error-msg.error a { color: #ff8a9e; text-decoration: underline; }

/* === How It Works === */
.how-it-works { background: #fafafa; padding: 88px 24px; border-top: 1px solid #f0f0f0; }
.how-it-works h2 { text-align: center; font-size: 1.85rem; font-weight: 800; color: #0a0a16; margin-bottom: 52px; letter-spacing: -0.5px; }
.steps { display: flex; align-items: flex-start; justify-content: center; gap: 20px; max-width: 800px; margin: 0 auto; }
.step { text-align: center; flex: 1; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: #e94560; color: #fff; font-size: 1.1rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step h3 { font-size: 0.9rem; font-weight: 700; color: #0a0a16; margin-bottom: 6px; }
.step p { font-size: 0.8rem; color: rgba(10,10,22,0.65); line-height: 1.6; }
.step-arrow { color: #e94560; font-size: 1.4rem; margin-top: 12px; font-weight: 300; }

/* === Features (highlight section) === */
.highlight-feature { background: linear-gradient(180deg, #0F172A 0%, #020617 100%); padding: 80px 24px 0; position: relative; overflow: hidden; }
.highlight-feature::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse 50% 80% at 50% 30%, rgba(233,69,96,0.12) 0%, transparent 70%); pointer-events: none; }

/* Intro text sits on background, not in a card */
.highlight-intro { max-width: 620px; margin: 0 auto 48px; text-align: center; position: relative; z-index: 1; }
.highlight-intro h2 { font-size: 1.5rem; font-weight: 800; color: #e94560; margin-bottom: 16px; letter-spacing: -0.3px; }
.highlight-intro p { font-size: 1.08rem; color: rgba(255,255,255,0.8); line-height: 1.7; }
.highlight-intro strong { color: #fff; }

.features { padding: 0 0 80px; max-width: 1060px; margin: 0 auto; position: relative; z-index: 1; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 28px 24px; transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s; position: relative; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 2px; background: #e94560; border-radius: 2px; opacity: 0; transition: opacity 0.3s; }
.feature-card:hover { box-shadow: 0 8px 32px rgba(233,69,96,0.1); border-color: rgba(233,69,96,0.2); transform: translateY(-3px); }
.feature-card:hover::before { opacity: 1; }
.feature-icon { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; background: rgba(233,69,96,0.1); border-radius: 10px; margin-bottom: 16px; }
.feature-card h3 { font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.95); margin-bottom: 8px; letter-spacing: -0.2px; }
.feature-card p { font-size: 0.82rem; color: rgba(255,255,255,0.8); line-height: 1.7; }

/* Features CTA */
.features-cta { text-align: center; margin-top: 48px; }

/* === Pricing Section === */
.pricing-section { background: #fafafa; padding: 80px 24px; border-top: 1px solid #f0f0f0; }
.pricing-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.pricing-inner h2 { font-size: 1.85rem; font-weight: 800; color: #0a0a16; margin-bottom: 40px; letter-spacing: -0.5px; }
.pricing-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pricing-card { background: #fff; border-radius: 16px; padding: 36px 28px; text-align: left; border: 1px solid #e8e8e8; position: relative; display: flex; flex-direction: column; }
.pricing-card-premium { border-color: #e94560; box-shadow: 0 8px 40px rgba(233,69,96,0.12); }
.pricing-card-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #e94560; color: #fff; font-size: 0.72rem; font-weight: 700; padding: 4px 16px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; }
.pricing-card-header { margin-bottom: 24px; }
.pricing-card-price { font-size: 2.2rem; font-weight: 900; color: #0a0a16; line-height: 1; }
.pricing-card-premium .pricing-card-price { color: #e94560; }
.pricing-card-label { font-size: 0.82rem; color: #888; margin-top: 6px; }
.pricing-card-list { list-style: none; margin-bottom: 28px; flex: 1; }
.pricing-card-list li { font-size: 0.85rem; color: #444; padding: 6px 0; padding-left: 22px; position: relative; line-height: 1.5; }
.pricing-card-list li::before { content: '\2713'; position: absolute; left: 0; color: #e94560; font-weight: 700; font-size: 0.82rem; }
.pricing-card-premium .pricing-card-list li:first-child { font-weight: 600; color: #0a0a16; }
.pricing-card-premium .pricing-card-list li:first-child::before { content: ''; }
.pricing-card-btn { display: block; text-align: center; padding: 14px 24px; border-radius: 10px; font-size: 0.9rem; font-weight: 700; text-decoration: none; transition: background 0.2s, transform 0.1s; min-height: 48px; display: flex; align-items: center; justify-content: center; }
.pricing-card-btn-free { background: #0F172A; color: #fff; }
.pricing-card-btn-free:hover { background: #1e293b; transform: translateY(-1px); }
.pricing-card-btn-premium { background: #e94560; color: #fff; box-shadow: 0 4px 16px rgba(233,69,96,0.25); }
.pricing-card-btn-premium:hover { background: #d63050; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(233,69,96,0.35); }
.pricing-footnote { font-size: 0.75rem; color: #999; margin-top: 20px; text-align: center; }

/* === Example Report Cards === */
.example-card-section { background: #fff; padding: 80px 24px; }
.example-card-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.example-card-inner h2 { font-size: 1.5rem; font-weight: 800; color: #0a0a16; margin-bottom: 6px; letter-spacing: -0.4px; }
.example-sub { text-align: center; color: #888; font-size: 0.92rem; margin-bottom: 28px; font-weight: 500; }
.example-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.example-card { background: #0f172a; border-radius: 14px; padding: 28px 24px; text-align: left; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.example-card-title { font-size: 1rem; font-weight: 700; color: #e94560; margin-bottom: 16px; letter-spacing: -0.2px; }
.example-card-group { margin-bottom: 18px; }
.example-card-group:last-child { margin-bottom: 0; }
.example-card-label { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.example-card-item { display: flex; align-items: flex-start; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.95); line-height: 1.5; margin-bottom: 4px; }
.example-card-item .warn { color: #fbbf24; font-size: 0.78rem; }
.example-card-item .check { color: #4ade80; font-size: 0.78rem; }

/* === Testimonials === */
.testimonials-section { background: #f8f9fa; padding: 80px 24px; border-top: 1px solid #f0f0f0; }
.testimonials-inner { max-width: 1060px; margin: 0 auto; text-align: center; }
.testimonials-inner h2 { font-size: 1.5rem; font-weight: 800; color: #0a0a16; margin-bottom: 32px; letter-spacing: -0.4px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testimonial-card { background: #fff; border-radius: 14px; padding: 28px 24px; text-align: left; box-shadow: 0 2px 12px rgba(0,0,0,0.06); border: 1px solid #f0f0f0; display: flex; flex-direction: column; }
.testimonial-stars { color: #e94560; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.88rem; color: #333; line-height: 1.7; flex: 1; margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; flex-direction: column; gap: 2px; }
.testimonial-name { font-size: 0.82rem; font-weight: 700; color: #0a0a16; }
.testimonial-car { font-size: 0.72rem; color: #888; }

/* === CTA Banner === */
.cta-banner { background: linear-gradient(180deg, #0F172A 0%, #020617 100%); padding: 80px 24px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(233,69,96,0.08) 0%, transparent 60%); pointer-events: none; }
.cta-banner-inner { max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.cta-banner-inner h2 { font-size: 2.1rem; font-weight: 800; color: #fff; margin-bottom: 12px; letter-spacing: -0.5px; }
.cta-banner-inner p { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin-bottom: 36px; line-height: 1.75; }
.cta-btn { display: inline-block; background: #e94560; color: #fff; padding: 15px 40px; border-radius: 10px; text-decoration: none; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.3px; transition: background 0.2s, transform 0.1s, box-shadow 0.2s; box-shadow: 0 4px 16px rgba(233,69,96,0.25); min-height: 48px; }
.cta-btn:hover { background: #d63050; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(233,69,96,0.35); }

/* === Newsletter Banner === */
.newsletter-banner { background: #f8f9fa; padding: 40px 24px; border-top: 1px solid #f0f0f0; }
.newsletter-banner-inner { max-width: 700px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.newsletter-banner-text h3 { font-size: 1.1rem; font-weight: 800; color: #0a0a16; margin-bottom: 2px; letter-spacing: -0.2px; }
.newsletter-banner-text p { font-size: 0.82rem; color: #888; }
.signup-form { display: flex; gap: 8px; flex-shrink: 0; }
.signup-form input { padding: 11px 14px; font-size: 0.85rem; font-family: 'Inter', sans-serif; border: 1px solid #ddd; border-radius: 8px; background: #fff; color: #0a0a16; outline: none; transition: border-color 0.2s; width: 220px; }
.signup-form input::placeholder { color: #aaa; }
.signup-form input:focus { border-color: #e94560; }
.signup-form button { padding: 11px 22px; font-size: 0.82rem; font-family: 'Inter', sans-serif; font-weight: 700; background: #e94560; color: #fff; border: none; border-radius: 8px; cursor: pointer; white-space: nowrap; transition: background 0.2s, transform 0.1s; box-shadow: 0 2px 10px rgba(233,69,96,0.25); }
.signup-form button:hover { background: #d63550; transform: translateY(-1px); }

/* === Footer === */
footer { background: #0a0a16; color: rgba(255,255,255,0.5); padding: 48px 24px 36px; padding-bottom: calc(36px + env(safe-area-inset-bottom, 0px)); }
.footer-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.footer-logo { font-size: 1rem; font-weight: 800; color: #e94560; margin-bottom: 2px; letter-spacing: 0.3px; }
.footer-brand p { font-size: 0.75rem; margin-bottom: 20px; color: rgba(255,255,255,0.8); letter-spacing: 0.3px; }
.footer-links { display: flex; justify-content: center; gap: 28px; margin-bottom: 24px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.3); text-decoration: none; font-size: 0.78rem; transition: color 0.2s; letter-spacing: 0.2px; min-height: 44px; display: inline-flex; align-items: center; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer-copy p { font-size: 0.72rem; color: rgba(255,255,255,0.18); letter-spacing: 0.2px; }
.footer-disclaimer { margin-top: 6px; }
.footer-disclaimer a { color: rgba(255,255,255,0.25); }

/* === Cookie Banner === */
.cookie-banner { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: #1a1a2e; border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 24px; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; box-shadow: 0 -4px 24px rgba(0,0,0,0.4); padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px)); }
.cookie-text { color: rgba(255,255,255,0.7); font-size: 0.82rem; line-height: 1.5; margin: 0; max-width: 600px; }
.cookie-link { color: rgba(255,255,255,0.9); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn { padding: 8px 20px; border-radius: 8px; font-size: 0.8rem; font-weight: 600; cursor: pointer; font-family: inherit; min-height: 44px; min-width: 44px; }
.cookie-btn-reject { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); }
.cookie-btn-accept { background: #e94560; border: none; color: white; }

/* === Animations === */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

/* ==========================================================================
   RESPONSIVE — Tablet (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
  /* Hero */
  .hero { padding: 0 20px; min-height: calc(100vh - 54px); }
  .hero h1 br { display: none; }
  .hero-sub { font-size: 0.92rem; }

  /* Search — full width */
  .search-card { max-width: 100%; }
  .search-box { flex-direction: column; }
  .search-box input, .search-box button { width: 100%; }
  .search-box button { padding: 16px 24px; font-size: 0.95rem; }

  /* How it works */
  .how-it-works { padding: 60px 20px; }
  .how-it-works h2 { margin-bottom: 36px; }
  .steps { flex-direction: column; align-items: center; gap: 24px; }
  .step-arrow { transform: rotate(90deg); margin: 0; }

  /* Features */
  .highlight-feature { padding: 48px 20px 0; }
  .highlight-intro { margin-bottom: 32px; }
  .highlight-intro h2 { font-size: 1.3rem; }
  .highlight-intro p { font-size: 0.95rem; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .features { padding: 0 0 60px; }
  .feature-card { padding: 22px 18px; }

  /* Pricing */
  .pricing-section { padding: 60px 20px; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  /* Example cards */
  .example-cards-grid { grid-template-columns: 1fr; }
  .example-card-section { padding: 48px 20px; }

  /* Testimonials */
  .testimonials-section { padding: 48px 20px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  /* CTA banner */
  .cta-banner { padding: 60px 20px; }
  .cta-banner-inner h2 { font-size: 1.6rem; }

  /* Newsletter */
  .newsletter-banner-inner { flex-direction: column; text-align: center; gap: 16px; }
  .signup-form { width: 100%; }
  .signup-form input { width: 100%; flex: 1; }

  /* Hero proof */
  .hero-proof { gap: 16px; }
  .hero-proof-item { font-size: 0.75rem; }

  /* Cookie banner */
  .cookie-banner { flex-direction: column; padding: 16px 20px; gap: 12px; text-align: center; padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px)); }
  .cookie-text { font-size: 0.78rem; }
  .cookie-actions { justify-content: center; }
  .cookie-btn { padding: 10px 24px; }
}

/* ==========================================================================
   RESPONSIVE — Small phones (max-width: 480px)
   ========================================================================== */
@media (max-width: 480px) {
  /* Hero */
  .hero { padding: 0 16px; }
  .hero h1 { font-size: 1.5rem; }
  .hero-sub { font-size: 0.85rem; margin-bottom: 28px; }

  /* Search */
  .search-card { padding: 14px; }
  .search-box input { padding: 12px 14px; font-size: 0.95rem; letter-spacing: 1.5px; }
  .search-box input::placeholder { font-size: 0.8rem; }
  .search-box button { padding: 14px 20px; font-size: 0.88rem; }

  /* How it works */
  .how-it-works h2 { font-size: 1.4rem; }
  .step-num { width: 42px; height: 42px; font-size: 1rem; }

  /* Features */
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 20px 16px; }
  .feature-card h3 { font-size: 0.85rem; }
  .feature-card p { font-size: 0.78rem; }
  .highlight-intro h2 { font-size: 1.1rem; }
  .highlight-intro p { font-size: 0.88rem; }

  /* Pricing */
  .pricing-inner h2 { font-size: 1.4rem; }
  .pricing-card { padding: 28px 20px; }

  /* Example cards */
  .example-card { padding: 22px 18px; }
  .example-card-inner h2 { font-size: 1.25rem; }

  /* Testimonials — single column on phones */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-section { padding: 40px 16px; }

  /* CTA */
  .cta-banner-inner h2 { font-size: 1.35rem; }
  .cta-banner-inner p { font-size: 0.85rem; }
  .cta-btn { padding: 14px 32px; font-size: 0.88rem; }

  /* Footer */
  footer { padding: 36px 16px; padding-bottom: calc(36px + env(safe-area-inset-bottom, 0px)); }
  .footer-links { gap: 20px; }
  .footer-links a { font-size: 0.75rem; }

  /* Hero proof */
  .hero-proof { flex-direction: column; align-items: center; gap: 8px; }

  /* Cookie banner */
  .cookie-banner { padding: 14px 16px; padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px)); }
  .cookie-text { font-size: 0.75rem; }
  .cookie-btn { padding: 10px 20px; font-size: 0.78rem; }
}
