/* ── Google Font ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Variables — Blue theme matching upsell.com ──────────── */
:root {
  --brand:        #1C64F2;
  --brand-hover:  #1A56DB;
  --brand-light:  #76A9FA;
  --brand-50:     #EBF5FF;
  --brand-100:    #C3DDFD;
  --brand-200:    #A4CAFE;
  --dark:         #111928;
  --gray-700:     #374151;
  --gray-500:     #6B7280;
  --gray-300:     #D1D5DB;
  --gray-200:     #E5E7EB;
  --gray-100:     #F3F4F6;
  --gray-50:      #F9FAFB;
  --white:        #FFFFFF;
  --amber:        #FBBF24;
  --red:          #EF4444;
  --green:        #22C55E;
  --radius:       12px;
  --radius-lg:    18px;
  --radius-sm:    8px;
  --shadow:       0 2px 16px rgba(0,0,0,.07);
  --shadow-lg:    0 8px 40px rgba(0,0,0,.12);
  --transition:   .18s ease;
  --max-w:        1100px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Container ───────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* ── Typography ──────────────────────────────────────────── */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.12; letter-spacing: -.03em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; line-height: 1.2; letter-spacing: -.02em; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p  { color: var(--gray-700); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 28px; border-radius: var(--radius);
  font-size: .95rem; font-weight: 700; transition: var(--transition);
  white-space: nowrap; cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background: var(--brand); color: var(--white); border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-hover); border-color: var(--brand-hover); box-shadow: 0 4px 14px rgba(28,100,242,.35); }
.btn-outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn-outline:hover { background: var(--brand); color: var(--white); }
.btn-white { background: var(--white); color: var(--brand); border-color: var(--white); }
.btn-white:hover { background: var(--brand-50); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 9px 20px; font-size: .875rem; border-radius: var(--radius-sm); }
.btn-full { width: 100%; }

/* ── Badge ───────────────────────────────────────────────── */
.badge {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  font-size: .75rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
}
.badge-brand  { background: var(--brand-100); color: #1E429F; }
.badge-amber  { background: #FEF3C7; color: #92400E; }
.badge-blue   { background: #DBEAFE; color: #1E40AF; }
.badge-green  { background: #DCFCE7; color: #166534; }
.badge-red    { background: #FEE2E2; color: #991B1B; }
.badge-purple { background: #EDE9FE; color: #5B21B6; }
.badge-orange { background: #FFEDD5; color: #9A3412; }
.badge-gray   { background: var(--gray-100); color: var(--gray-700); }

/* ── Stars ───────────────────────────────────────────────── */
.stars { color: var(--amber); font-size: 1.1rem; letter-spacing: 1px; }
.stars-sm { font-size: .9rem; }
.rating-row { display: flex; align-items: center; gap: 8px; }
.rating-num { font-weight: 700; font-size: 1rem; color: var(--dark); }
.rating-count { color: var(--gray-500); font-size: .85rem; }

/* ── Disclosure ──────────────────────────────────────────── */
.disclosure-box {
  background: #FFFBEB; border: 1px solid #FDE68A;
  border-radius: var(--radius-sm); padding: 12px 16px;
  font-size: .83rem; color: #92400E; display: flex; gap: 8px; margin-bottom: 24px;
}
.disclosure-box a { text-decoration: underline; }

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.site-logo img { height: 36px; width: auto; }
.nav-links { display: none; align-items: center; gap: 28px; }
.nav-links a { font-weight: 600; font-size: .9rem; color: var(--gray-700); transition: color var(--transition); }
.nav-links a:hover { color: var(--brand); }
.hamburger { display: flex; flex-direction: column; gap: 5px; padding: 6px; border-radius: var(--radius-sm); transition: background var(--transition); }
.hamburger:hover { background: var(--gray-100); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
.mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 12px 20px 16px; border-top: 1px solid var(--gray-100); }
.mobile-menu a { font-weight: 600; padding: 10px 12px; border-radius: var(--radius-sm); color: var(--gray-700); transition: background var(--transition); }
.mobile-menu a:hover { background: var(--gray-50); color: var(--brand); }
.mobile-menu .btn-primary { margin-top: 6px; text-align: center; }
.mobile-menu.open { display: flex; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background: #111928; color: #9CA3AF; padding: 56px 0 28px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 32px; margin-bottom: 48px; }
.footer-brand img { filter: brightness(0) invert(1); opacity: .75; height: 32px; }
.footer-brand p { margin-top: 12px; font-size: .875rem; line-height: 1.6; }
.footer-brand .aff-note { margin-top: 10px; font-size: .78rem; }
.footer-brand .aff-note a { text-decoration: underline; color: #9CA3AF; }
.footer-col h4 { color: #F9FAFB; font-size: .875rem; margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: .875rem; transition: color var(--transition); }
.footer-col ul a:hover { color: #F9FAFB; }
.footer-col ul a.brand-link { color: var(--brand-light); }
.footer-bottom { border-top: 1px solid #1F2A37; padding-top: 20px; display: flex; flex-direction: column; gap: 8px; font-size: .78rem; }

/* ── Hero ────────────────────────────────────────────────── */
.hero { background: linear-gradient(160deg, var(--brand-50) 0%, var(--white) 70%); padding: 64px 0 48px; text-align: center; }
.hero .eyebrow { display: inline-block; background: var(--brand-100); color: #1E429F; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; margin-bottom: 20px; }
.hero h1 { max-width: 780px; margin: 0 auto; }
.hero h1 span { color: var(--brand); }
.hero .subtext { max-width: 560px; margin: 18px auto 0; font-size: 1.1rem; color: var(--gray-500); line-height: 1.65; }
.hero-btns { display: flex; flex-direction: column; gap: 12px; align-items: center; margin-top: 28px; }
.trust-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 32px; margin-top: 36px; }
.trust-bar span { font-size: .85rem; font-weight: 600; color: var(--gray-500); display: flex; align-items: center; gap: 6px; }

/* ── Section ─────────────────────────────────────────────── */
.section { padding: 64px 0; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.section-header h2 { font-size: 1.6rem; }
.section-header a { color: var(--brand); font-weight: 700; font-size: .9rem; }
.section-header a:hover { text-decoration: underline; }

/* ── Featured Card ───────────────────────────────────────── */
.featured-card {
  background: linear-gradient(var(--white), var(--white)) padding-box,
              linear-gradient(135deg, var(--brand), var(--brand-light)) border-box;
  border: 2px solid transparent; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-lg);
}
.featured-inner { display: flex; flex-direction: column; gap: 20px; }
.featured-icon-col { display: flex; align-items: flex-start; gap: 16px; }
.app-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; }
.app-icon-lg { width: 64px; height: 64px; font-size: 2rem; border-radius: 16px; }
.featured-meta .badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.featured-meta h3 { font-size: 1.5rem; margin-bottom: 6px; }
.featured-meta p { font-size: .95rem; color: var(--gray-500); margin-top: 10px; line-height: 1.6; }
.highlight-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.pill { background: var(--brand-50); color: #1E429F; border: 1px solid var(--brand-100); border-radius: 999px; padding: 4px 12px; font-size: .78rem; font-weight: 700; }
.featured-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }

/* ── Review Grid ─────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.review-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 20px; transition: box-shadow var(--transition), border-color var(--transition); display: flex; flex-direction: column; }
.review-card:hover { box-shadow: var(--shadow); border-color: var(--brand-200); }
.card-top { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 12px; }
.card-body { flex: 1; font-size: .9rem; color: var(--gray-500); line-height: 1.55; }
.card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--gray-100); }
.card-footer .read-time { font-size: .8rem; color: var(--gray-500); }
.card-footer .read-more { color: var(--brand); font-weight: 700; font-size: .875rem; transition: transform var(--transition); }
.review-card:hover .read-more { transform: translateX(3px); }

/* ── Quiz Banner ─────────────────────────────────────────── */
.quiz-banner { background: linear-gradient(135deg, #1C64F2 0%, #1A56DB 100%); border-radius: var(--radius-lg); padding: 48px 28px; text-align: center; color: var(--white); }
.quiz-banner .eyebrow { background: rgba(255,255,255,.2); color: rgba(255,255,255,.95); margin-bottom: 16px; }
.quiz-banner h2 { color: var(--white); font-size: clamp(1.4rem, 3vw, 2rem); }
.quiz-banner p { color: rgba(255,255,255,.8); max-width: 480px; margin: 12px auto 24px; }

/* ── About ───────────────────────────────────────────────── */
.about-section { display: flex; flex-direction: column; gap: 40px; }
.about-text .eyebrow { color: var(--brand); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px; }
.about-text h2 { margin-bottom: 14px; }
.about-text p { font-size: .95rem; line-height: 1.7; margin-bottom: 12px; }
.about-text a { color: var(--brand); font-weight: 700; font-size: .9rem; }
.about-text a:hover { text-decoration: underline; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat-card { background: var(--brand-50); border-radius: var(--radius); padding: 20px; text-align: center; }
.stat-card .num { font-size: 2rem; font-weight: 900; color: var(--brand); }
.stat-card .label { font-size: .85rem; color: var(--gray-500); font-weight: 600; margin-top: 4px; }

/* ── Blog / Page Hero ────────────────────────────────────── */
.page-hero { background: var(--brand-50); padding: 48px 0 40px; text-align: center; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero p { max-width: 520px; margin: 12px auto 0; color: var(--gray-500); }
.cat-pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 28px 0; }
.cat-pill { padding: 7px 18px; border-radius: 999px; font-size: .85rem; font-weight: 600; border: 1.5px solid var(--gray-300); color: var(--gray-700); background: var(--white); cursor: pointer; transition: var(--transition); }
.cat-pill.active, .cat-pill:hover { background: var(--brand); border-color: var(--brand); color: var(--white); }

/* ── Review Page ─────────────────────────────────────────── */
.review-layout { display: flex; flex-direction: column; gap: 32px; padding: 32px 0 64px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--gray-500); margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb span { color: var(--gray-300); }

.review-header { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 20px; }
.review-meta { flex: 1; }
.review-meta .badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.review-meta h1 { font-size: clamp(1.4rem, 3vw, 2rem); }
.review-meta .meta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 10px; align-items: center; }
.review-meta .meta-row span { font-size: .83rem; color: var(--gray-500); }

.review-intro { border-left: 4px solid var(--brand); padding-left: 18px; font-size: 1.05rem; color: var(--gray-700); line-height: 1.7; margin-bottom: 28px; }

.score-card { background: linear-gradient(135deg, var(--brand-50), #EBF5FF); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 28px; display: flex; flex-direction: column; gap: 18px; }
.score-num { font-size: 3.5rem; font-weight: 900; color: var(--brand); line-height: 1; }
.score-label { font-size: .8rem; color: var(--gray-500); margin-top: 2px; }
.score-highlights { display: flex; flex-direction: column; gap: 6px; }
.score-highlights li { font-size: .9rem; color: var(--gray-700); display: flex; align-items: center; gap: 8px; }
.score-highlights li::before { content: "✓"; color: var(--brand); font-weight: 800; }

.review-body p { margin-bottom: 18px; font-size: .975rem; line-height: 1.75; color: var(--gray-700); }

.pros-cons { display: grid; grid-template-columns: 1fr; gap: 16px; margin: 28px 0; }
.pros-box { background: #F0FDF4; border: 1px solid #BBF7D0; border-radius: var(--radius); padding: 20px; }
.cons-box { background: #FFF1F2; border: 1px solid #FECDD3; border-radius: var(--radius); padding: 20px; }
.pros-box h3 { color: #166534; margin-bottom: 12px; font-size: 1rem; }
.cons-box h3 { color: #9F1239; margin-bottom: 12px; font-size: 1rem; }
.pros-box li { font-size: .88rem; padding: 4px 0; display: flex; gap: 8px; color: #166534; }
.cons-box li { font-size: .88rem; padding: 4px 0; display: flex; gap: 8px; color: #9F1239; }
.pros-box li::before { content: "+"; font-weight: 800; flex-shrink: 0; }
.cons-box li::before { content: "−"; font-weight: 800; flex-shrink: 0; }

.pricing-section h2 { font-size: 1.4rem; margin-bottom: 18px; }
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 32px; }
.plan-card { border: 1.5px solid var(--gray-200); border-radius: var(--radius); padding: 20px; background: var(--white); }
.plan-card.featured { border-color: var(--brand); background: var(--brand-50); box-shadow: var(--shadow); }
.plan-card.featured .popular-badge { display: inline-block; background: var(--brand); color: var(--white); font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; margin-bottom: 8px; }
.plan-card .plan-name { font-weight: 700; color: var(--dark); }
.plan-card .plan-price { font-size: 1.6rem; font-weight: 900; color: var(--brand); margin: 4px 0; }
.plan-card ul { margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.plan-card li { font-size: .83rem; color: var(--gray-700); display: flex; gap: 6px; }
.plan-card li::before { content: "✓"; color: var(--green); font-weight: 800; flex-shrink: 0; }

.best-for-box { background: #111928; color: var(--white); border-radius: var(--radius); padding: 20px; margin-bottom: 28px; }
.best-for-box .label { color: var(--brand-light); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }
.best-for-box p { color: #E5E7EB; font-size: .95rem; }

.cta-box { background: var(--brand-50); border: 1.5px solid var(--brand-100); border-radius: var(--radius-lg); padding: 28px; text-align: center; margin-bottom: 32px; }
.cta-box h3 { margin-bottom: 8px; }
.cta-box p { font-size: .9rem; color: var(--gray-500); margin-bottom: 18px; }
.cta-box small { display: block; color: var(--gray-500); font-size: .78rem; margin-top: 10px; }

/* ── Sidebar ─────────────────────────────────────────────── */
.review-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 20px; }
.sidebar-card h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-500); margin-bottom: 14px; }
.sidebar-row { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; border-bottom: 1px solid var(--gray-100); font-size: .875rem; }
.sidebar-row:last-child { border-bottom: none; }
.sidebar-row .key { color: var(--gray-500); }
.sidebar-row .val { font-weight: 700; }
.sidebar-quiz { background: linear-gradient(135deg, #1C64F2 0%, #1A56DB 100%); border-radius: var(--radius); padding: 20px; color: var(--white); }
.sidebar-quiz h4 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.sidebar-quiz p { color: rgba(255,255,255,.8); font-size: .875rem; margin-bottom: 14px; }
.sidebar-quiz .btn { background: var(--white); color: var(--brand); border-color: var(--white); }
.sidebar-quiz .btn:hover { background: var(--brand-50); }

/* ── Related ─────────────────────────────────────────────── */
.related-section { padding-top: 48px; border-top: 1px solid var(--gray-200); }
.related-section h2 { font-size: 1.4rem; margin-bottom: 20px; }

/* ── Quiz Page ───────────────────────────────────────────── */
.quiz-page { min-height: 80vh; background: linear-gradient(160deg, var(--brand-50) 0%, var(--white) 70%); display: flex; align-items: flex-start; justify-content: center; padding: 48px 20px 64px; }
.quiz-wrap { width: 100%; max-width: 620px; }
.quiz-progress-bar-wrap { margin-bottom: 28px; }
.quiz-progress-meta { display: flex; justify-content: space-between; font-size: .8rem; color: var(--gray-500); font-weight: 600; margin-bottom: 8px; }
.quiz-progress-bg { height: 6px; background: var(--gray-200); border-radius: 99px; overflow: hidden; }
.quiz-progress-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--brand), var(--brand-light)); transition: width .4s ease; }

.quiz-screen { animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.quiz-intro { text-align: center; }
.quiz-intro h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 12px; }
.quiz-intro p { color: var(--gray-500); max-width: 440px; margin: 0 auto 28px; font-size: 1rem; }
.quiz-meta-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 28px; }
.quiz-meta-badges span { font-size: .85rem; font-weight: 600; color: var(--gray-500); }

.quiz-q-emoji { font-size: 2.5rem; text-align: center; margin-bottom: 12px; }
.quiz-question h2 { text-align: center; font-size: clamp(1.2rem, 3vw, 1.6rem); margin-bottom: 24px; }
.quiz-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.quiz-option { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius); padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; transition: var(--transition); text-align: left; width: 100%; }
.quiz-option:hover { border-color: var(--brand-light); background: var(--brand-50); }
.quiz-option.selected { border-color: var(--brand); background: var(--brand-50); box-shadow: 0 0 0 3px rgba(28,100,242,.1); }
.quiz-option-text strong { display: block; font-size: .95rem; font-weight: 700; color: var(--dark); }
.quiz-option-text span { font-size: .82rem; color: var(--gray-500); }
.quiz-radio { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--gray-300); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.quiz-option.selected .quiz-radio { border-color: var(--brand); background: var(--brand); }
.quiz-option.selected .quiz-radio::after { content: ''; width: 7px; height: 7px; background: var(--white); border-radius: 50%; }
.quiz-nav { display: flex; gap: 10px; }
.quiz-nav .btn { flex: 1; }
.btn-back { background: transparent; color: var(--gray-700); border: 2px solid var(--gray-200); }
.btn-back:hover { border-color: var(--gray-400); background: var(--gray-50); }
.btn-next-q { background: var(--brand); color: var(--white); border: 2px solid var(--brand); }
.btn-next-q:hover { background: var(--brand-hover); border-color: var(--brand-hover); }
.btn-next-q:disabled { background: var(--gray-200); border-color: var(--gray-200); color: var(--gray-500); cursor: not-allowed; }

.quiz-result { text-align: center; }
.score-circle { position: relative; width: 110px; height: 110px; margin: 0 auto 20px; }
.score-circle svg { transform: rotate(-90deg); }
.score-circle .score-text { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 900; color: var(--brand); }
.quiz-result h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); margin-bottom: 6px; }
.quiz-result .subtitle { color: var(--brand); font-weight: 700; margin-bottom: 16px; }
.result-reason { background: var(--brand-50); border: 1px solid var(--brand-100); border-radius: var(--radius); padding: 18px; text-align: left; margin-bottom: 20px; }
.result-reason p { font-size: .9rem; color: var(--gray-700); line-height: 1.65; }
.result-reason .benefit { color: var(--brand); font-weight: 700; font-size: .9rem; margin-top: 10px; }
.result-app-card { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 22px; text-align: left; margin-bottom: 16px; box-shadow: var(--shadow); }
.result-app-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.result-app-header .label { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-500); }
.result-app-header h3 { font-size: 1.3rem; font-weight: 900; }
.result-features { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.result-features li { font-size: .875rem; color: var(--gray-700); display: flex; gap: 8px; }
.result-features li::before { content: "✓"; color: var(--brand); font-weight: 800; }

/* ── Legal ───────────────────────────────────────────────── */
.legal-page { max-width: 780px; margin: 0 auto; padding: 48px 20px 80px; }
.legal-page h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 6px; }
.legal-page .updated { color: var(--gray-500); font-size: .85rem; margin-bottom: 36px; }
.legal-notice { background: var(--brand-50); border: 1.5px solid var(--brand-100); border-radius: var(--radius); padding: 18px 20px; margin-bottom: 32px; }
.legal-notice h4 { color: var(--brand); margin-bottom: 6px; }
.legal-notice p { font-size: .9rem; color: var(--gray-700); }
.legal-section { margin-bottom: 36px; }
.legal-section h2 { font-size: 1.2rem; color: var(--dark); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--brand-100); }
.legal-section p { font-size: .9rem; color: var(--gray-700); line-height: 1.75; margin-bottom: 10px; }
.legal-section ul { display: flex; flex-direction: column; gap: 8px; padding-left: 4px; }
.legal-section ul li { font-size: .9rem; color: var(--gray-700); display: flex; gap: 10px; }
.legal-section ul li::before { content: "•"; color: var(--brand); flex-shrink: 0; }
.legal-section a { color: var(--brand); text-decoration: underline; }
.legal-section code { background: var(--gray-100); padding: 2px 6px; border-radius: 4px; font-size: .85rem; }
.cookie-block { border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 18px; margin-bottom: 14px; }
.cookie-block-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.cookie-block h3 { font-size: 1rem; }
.aff-list { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 10px; }
.aff-list li { font-size: .875rem; color: var(--gray-700); display: flex; gap: 6px; align-items: center; }
.aff-list li::before { content: "→"; color: var(--brand); }

/* ── Contact Page ────────────────────────────────────────── */
.contact-page { max-width: 680px; margin: 0 auto; padding: 64px 20px 80px; text-align: center; }
.contact-page h1 { margin-bottom: 16px; }
.contact-page .lead { font-size: 1.1rem; color: var(--gray-500); line-height: 1.7; max-width: 520px; margin: 0 auto 32px; }
.contact-email-card { background: var(--brand-50); border: 2px solid var(--brand-100); border-radius: var(--radius-lg); padding: 32px; display: inline-block; margin-top: 8px; }
.contact-email-card .label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--brand); margin-bottom: 8px; }
.contact-email-card a { font-size: 1.3rem; font-weight: 800; color: var(--dark); }
.contact-email-card a:hover { color: var(--brand); }

/* ── Responsive ──────────────────────────────────────────── */
@media (min-width: 640px) {
  .hero-btns { flex-direction: row; justify-content: center; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .pros-cons { grid-template-columns: 1fr 1fr; }
  .score-card { flex-direction: row; align-items: center; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .reviews-grid { grid-template-columns: 1fr 1fr 1fr; }
  .featured-inner { flex-direction: row; }
  .featured-icon-col { flex-direction: column; }
  .featured-btns { flex-direction: row; }
  .about-section { flex-direction: row; align-items: center; gap: 60px; }
  .about-text { flex: 1; }
  .stats-grid { flex-shrink: 0; width: 340px; }
  .review-layout { flex-direction: row; align-items: flex-start; }
  .review-main { flex: 1; min-width: 0; }
  .review-sidebar { width: 280px; flex-shrink: 0; position: sticky; top: 84px; }
}
@media (min-width: 1024px) {
  .review-sidebar { width: 300px; }
}
