/* ── shared.css ── Design system for handyabo.com ────────────────── */
/* Based on abovergleich.com design system — light, warm, gold accent */

:root {
  /* Brand Gold — accent-dark is main readable accent on white (WCAG AA 4.6:1) */
  --accent: #fed001;
  --accent-hover: #ffe033;
  --accent-dark: #a68600;
  --accent-text: #7a6200;
  --accent-bg: rgba(254,208,1,0.08);
  --accent-bg2: rgba(254,208,1,0.14);
  --badge: #fef9e0;
  --badge-text: #725c00;

  /* Surfaces */
  --bg: #fafaf9;
  --surface: #ffffff;
  --surface2: #f0efed;
  --border: rgba(0,0,0,0.08);
  --border2: rgba(0,0,0,0.14);

  /* Text — muted darkened for WCAG AA compliance (4.7:1 on white) */
  --text: #1c1917;
  --text2: #292524;
  --muted: #6b6560;

  /* Dark sections (footer, CTA boxes) */
  --dark: #1c1917;
  --dark2: #141210;
  --dark-text: #f5f5f4;
  --dark-muted: #b5b0ab;

  /* Semantic colors */
  --blue: #2563eb;
  --blue-bg: rgba(37,99,235,0.06);
  --teal: #0d9488;
  --teal-bg: rgba(13,148,136,0.06);
  --purple: #7c3aed;
  --purple-bg: rgba(124,58,237,0.06);
  --green: #16a34a;
  --green-bg: rgba(22,163,74,0.06);
  --red: #dc2626;
  --red-bg: rgba(220,38,38,0.06);
  --orange: #ea580c;
  --orange-bg: rgba(234,88,12,0.06);

  /* Shadows — slightly stronger for better card separation */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.1; color: var(--text); }
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.logo, .nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 20px;
  color: var(--text); text-decoration: none; letter-spacing: -.5px;
}
.logo span, .nav-logo span { color: var(--accent-dark); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 14px; font-weight: 500; transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent); color: var(--text);
  border: none; padding: 10px 22px; border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 13px; cursor: pointer;
  transition: all .2s; text-decoration: none;
}
.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(254,208,1,0.3);
}
.lang-switch {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 6px;
  border: 1px solid var(--border2); background: transparent;
  color: var(--muted) !important; font-size: 12px; font-weight: 700;
  text-decoration: none !important; transition: all .2s; letter-spacing: 0;
}
.lang-switch:hover { border-color: var(--accent-dark); color: var(--accent-dark) !important; }

/* Hamburger */
.hamburger {
  display: none; background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); margin: 5px 0;
  border-radius: 2px; transition: all .3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
  background: rgba(250,250,248,0.98); backdrop-filter: blur(16px);
  padding: 16px 20px; z-index: 999;
  flex-direction: column; gap: 0;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.mobile-menu a {
  color: var(--text); text-decoration: none;
  font-size: 16px; font-weight: 500;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }
.mobile-menu-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu-grid a {
  font-size: 14px; color: var(--muted); text-decoration: none;
  padding: 12px 0; border-bottom: none !important;
}
.mobile-menu-grid a:hover { color: var(--text); }

/* ── SECTION LABELS ── */
.section-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-dark); margin-bottom: 16px;
  text-align: center;
}
.section-headline {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800; letter-spacing: -1.5px;
  text-align: center; margin-bottom: 36px;
}
.section-sub {
  font-size: 16px; color: var(--muted); text-align: center;
  max-width: 580px; margin: 0 auto 36px; line-height: 1.7;
}

/* ── PROVIDER CARDS ── */
.provider-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px; transition: all .25s;
  position: relative; box-shadow: var(--shadow-sm);
}
.provider-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.provider-card.best { border-color: var(--accent); box-shadow: 0 4px 16px rgba(254,208,1,0.12); }
.best-badge {
  position: absolute; top: -10px; left: 24px;
  background: var(--accent); color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 11px;
  padding: 3px 12px; border-radius: 100px;
}
.best-badge.new { background: var(--blue); color: #fff; }
.provider-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--text);
}
.provider-network { font-size: 11px; color: var(--muted); margin-bottom: 16px; }
.provider-price-big {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 38px; font-weight: 800; line-height: 1; color: var(--text);
}
.provider-price-mo { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.provider-features { list-style: none; margin-bottom: 20px; }
.provider-features li {
  font-size: 13px; color: var(--text2);
  padding: 5px 0; border-bottom: 1px solid var(--border);
  display: flex; gap: 8px;
}
.provider-features li:last-child { border-bottom: none; }
.provider-features li::before { content: '\2713'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.provider-note { font-size: 11px; color: var(--muted); margin-bottom: 12px; font-style: italic; }
.provider-cta {
  display: block; text-align: center;
  background: var(--accent); color: var(--text);
  padding: 12px; border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 14px;
  text-decoration: none; transition: all .2s;
}
.provider-cta:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 16px rgba(254,208,1,0.3);
}
.provider-cta.outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border2);
}
.provider-cta.outline:hover { border-color: var(--text); background: var(--surface2); }

/* Card badges & labels */
.rank-badge { display: inline-block; padding: 4px 10px; border-radius: 6px; font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.rank-1 { background: #f59e0b; }
.rank-2 { background: #94a3b8; }
.rank-3 { background: #b45309; }
.rank-4, .rank-5 { background: #374151; }
.rating-stars { font-size: 13px; color: #f59e0b; margin-top: 4px; }
.promo-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 16px; font-style: italic; }
.service-subtitle { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.datacap-badge { display: inline-block; font-size: 10px; padding: 2px 8px; border-radius: 4px; background: var(--red-bg); color: var(--red); font-weight: 600; margin-bottom: 8px; }
.promo-label { display: block; font-size: 11px; color: #f59e0b; margin-top: 2px; margin-bottom: 4px; font-weight: 600; cursor: help; }
.promo-label span { font-weight: 400; font-size: 10px; color: rgba(245,158,11,0.7); }
.lifetime-label { display: block; font-size: 11px; color: var(--green); margin-top: 2px; margin-bottom: 4px; font-weight: 600; }
.friends-info { font-size: 12px; color: var(--green); font-style: italic; margin-top: 6px; }
.friends-card { border: 2px solid var(--purple) !important; background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%); }
.friends-card .best-badge { background: var(--purple); color: #fff; }
.friends-card .friends-prices { list-style: none; padding: 0; margin: 8px 0 0; }
.friends-card .friends-prices li { font-size: 13px; color: var(--muted); margin-bottom: 4px; }
.friends-card .friends-prices li strong { color: var(--text); }
.friends-card .friends-how { font-size: 12px; color: var(--muted); margin-top: 8px; }

/* ── TABS ── */
.providers-tabs { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; }
.tab-btn {
  background: var(--surface); border: 1px solid var(--border);
  color: var(--muted); padding: 10px 20px; border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 13px;
  cursor: pointer; transition: all .2s;
}
.tab-btn:hover { border-color: var(--border2); color: var(--text); }
.tab-btn.active { background: var(--accent); color: var(--text); border-color: var(--accent); }
.tab-content { display: none; }
.tab-content.active { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; animation: fadeIn .3s ease; }

/* ── FAQ ── */
.faq-section { padding: 72px 40px; background: var(--surface); border-top: 1px solid var(--border); }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-headline { font-size: clamp(32px, 4vw, 48px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 36px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px; font-weight: 600;
  padding: 22px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color .2s;
}
.faq-q:hover { color: var(--accent-dark); }
.faq-arrow { flex-shrink: 0; transition: transform .2s; color: var(--muted); font-size: 18px; }
.faq-item.open .faq-arrow { transform: rotate(45deg); color: var(--accent-dark); }
.faq-a { font-size: 15px; color: var(--text2); line-height: 1.8; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; }
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 22px; }

/* ── PRESS BAR ── */
.press-bar {
  background: rgba(254,208,1,0.04);
  border-top: 1px solid rgba(254,208,1,0.12);
  border-bottom: 1px solid rgba(254,208,1,0.12);
  padding: 16px 24px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px; text-align: center;
}
.press-bar__row { display: flex; align-items: center; gap: 12px; flex-wrap: nowrap; justify-content: center; }
.press-bar__label { color: var(--muted); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; white-space: nowrap; margin: 0; }
.press-bar__logos { display: flex; align-items: center; gap: 16px; flex-wrap: nowrap; justify-content: center; }
.press-bar__logos a { text-decoration: none; transition: opacity .2s; opacity: 0.7; }
.press-bar__logos a:hover { opacity: 1; }
.press-bar__sep { color: var(--border2); font-size: 1.2rem; }
.press-bar__quote { color: var(--muted); font-size: 0.8rem; font-style: italic; margin: 0; }
.press-bar__quote strong { color: var(--text); font-style: normal; }

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 40px 40px; border-bottom: 1px solid var(--border); background: var(--surface2); }
.testimonials-inner { max-width: 900px; margin: 0 auto; }
.testimonials-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: var(--shadow-sm);
}
.testimonial-card p { font-size: 15px; color: var(--text2); line-height: 1.7; margin-bottom: 16px; }
.testimonial-card footer { font-size: 13px; color: var(--muted); font-style: normal; border: none; padding: 0; margin: 0; background: none; }
.testimonial-savings {
  display: inline-block; background: var(--badge);
  color: var(--badge-text); font-size: 13px; font-weight: 600;
  padding: 4px 10px; border-radius: 6px; margin-top: 8px;
}

/* ── EMAIL CAPTURE ── */
.email-section { padding: 48px 40px; text-align: center; border-top: 1px solid var(--border); }
.email-section h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 24px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.email-section p { color: var(--text2); font-size: 15px; margin-bottom: 24px; max-width: 500px; margin-left: auto; margin-right: auto; }
.email-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }
.email-form input {
  flex: 1; padding: 12px 16px; border-radius: 10px;
  border: 1px solid var(--border2); background: var(--surface);
  color: var(--text); font-size: 14px; outline: none;
}
.email-form input:focus { border-color: var(--accent-dark); }
.email-form button {
  background: var(--accent); color: var(--text); border: none;
  padding: 12px 24px; border-radius: 10px; font-weight: 700;
  font-size: 13px; cursor: pointer; white-space: nowrap; transition: all .2s;
}
.email-form button:hover { background: var(--accent-hover); }
.email-privacy { font-size: 11px; color: var(--muted); margin-top: 10px; opacity: 0.6; }

/* ── FOOTER ── */
footer {
  padding: 48px 40px 32px;
  background: var(--dark2); color: var(--dark-text);
  border-top: none;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; margin-bottom: 32px; flex-wrap: wrap;
}
.footer-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 18px; color: var(--dark-text);
}
.footer-logo span { color: var(--accent); }
.footer-note { font-size: 12px; color: var(--dark-muted); max-width: 400px; line-height: 1.6; }
.footer-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; margin-bottom: 32px;
}
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col-title {
  font-size: 13px; font-weight: 700; color: var(--dark-text);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px;
}
.footer-col a { font-size: 13px; color: var(--dark-muted); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--dark-text); }
.footer-bottom {
  font-size: 12px; color: var(--dark-muted);
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--dark); padding: 16px 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}
.cookie-banner p { font-size: 13px; color: var(--dark-text); margin: 0; max-width: 600px; line-height: 1.5; }
.cookie-banner p a { color: var(--accent); text-decoration: none; }
.cookie-banner p a:hover { text-decoration: underline; }
.cookie-btn { padding: 8px 20px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; }
.cookie-btn.accept { background: var(--green); color: #fff; }
.cookie-btn.accept:hover { background: #15803d; }
.cookie-btn.reject { background: transparent; color: var(--dark-text); border: 1px solid rgba(255,255,255,.3); }
.cookie-btn.reject:hover { border-color: #fff; }

/* ── NEWS BANNER ── */
.news-banner {
  background: linear-gradient(90deg, var(--badge), #fffde0);
  border-bottom: 1px solid var(--accent); padding: 10px 40px;
}
.news-banner-inner {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--text);
  max-width: 1200px; margin: 0 auto;
}
.news-badge {
  background: var(--accent); color: var(--text);
  font-weight: 800; font-size: 10px;
  padding: 2px 8px; border-radius: 4px; letter-spacing: .5px; flex-shrink: 0;
}

/* ── STICKY MOBILE CTA ── */
.sticky-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: rgba(250,250,248,0.97); border-top: 1px solid var(--border2);
  padding: 12px 20px; padding-bottom: calc(12px + env(safe-area-inset-bottom));
  backdrop-filter: blur(12px);
}
.sticky-cta-bar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px 20px;
  background: var(--accent); color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 16px;
  text-decoration: none; border-radius: 12px; transition: background .2s;
}
.sticky-cta-bar a:hover { background: var(--accent-hover); }

/* ── CTA SECTION ── */
.cta-section { padding: 72px 40px; text-align: center; }
.cta-inner { max-width: 560px; margin: 0 auto; }
.cta-section h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 16px; }
.cta-section p { font-size: 16px; color: var(--muted); margin-bottom: 32px; line-height: 1.7; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--text);
  padding: 16px 32px; border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 16px;
  transition: all .2s; border: none; cursor: pointer; text-decoration: none;
}
.cta-btn:hover {
  background: var(--accent-hover); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(254,208,1,0.35);
}
.cta-box {
  background: var(--dark); color: var(--dark-text); border-radius: 16px;
  padding: 32px; margin: 40px 0; text-align: center;
}
.cta-box h3 { color: var(--dark-text); font-size: 20px; margin-bottom: 8px; }
.cta-box p { color: var(--dark-muted); font-size: 14px; margin-bottom: 16px; }
.cta-box a {
  display: inline-block; background: var(--accent); color: var(--text);
  padding: 12px 28px; border-radius: 10px; font-weight: 600;
  font-size: 15px; text-decoration: none; transition: background .2s;
}
.cta-box a:hover { background: var(--accent-hover); }

/* ── ARTICLE ── */
.article { max-width: 680px; margin: 0 auto; padding: 120px 40px 80px; }
.article-badge {
  display: inline-block; font-size: 12px; font-weight: 600;
  color: var(--accent-dark); background: rgba(254,208,1,0.15);
  padding: 4px 12px; border-radius: 20px; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: .05em;
}
.article h1 { font-size: 36px; font-weight: 800; margin-bottom: 16px; line-height: 1.15; }
.article-meta { font-size: 13px; color: var(--muted); margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.article h2 { font-size: 22px; font-weight: 700; margin-top: 48px; margin-bottom: 16px; }
.article h3 { font-size: 17px; font-weight: 600; margin-top: 32px; margin-bottom: 10px; }
.article p { font-size: 16px; color: var(--text2); line-height: 1.8; margin-bottom: 18px; }
.article ul, .article ol { margin-bottom: 18px; padding-left: 24px; }
.article li { font-size: 16px; color: var(--text2); line-height: 1.8; margin-bottom: 6px; }
.article strong { color: var(--text); }
.article a { color: var(--accent-dark); text-decoration: underline; }
.article blockquote {
  border-left: 3px solid var(--accent); margin: 24px 0;
  padding: 16px 20px; background: rgba(254,208,1,0.06); border-radius: 0 8px 8px 0;
  font-size: 15px; color: var(--text2); line-height: 1.7;
}

/* ── LEGAL PAGE ── */
.legal-page { max-width: 700px; margin: 0 auto; padding: 120px 40px 80px; }
.legal-page h1 { font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.legal-page .legal-date { font-size: 13px; color: var(--muted); margin-bottom: 40px; }
.legal-page h2 { font-size: 20px; font-weight: 700; margin-top: 40px; margin-bottom: 12px; }
.legal-page h3 { font-size: 16px; font-weight: 600; margin-top: 24px; margin-bottom: 8px; }
.legal-page p, .legal-page li { font-size: 15px; color: var(--muted); line-height: 1.8; }
.legal-page p { margin-bottom: 16px; }
.legal-page ul { margin-bottom: 16px; padding-left: 20px; }
.legal-page li { margin-bottom: 6px; }
.legal-page strong { color: var(--text); }
.legal-page a { color: var(--accent-dark); text-decoration: underline; }
.legal-page table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
.legal-page table th, .legal-page table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); color: var(--muted); }
.legal-page table th { color: var(--text); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── DATA TABLE ── */
.data-table { width: 100%; border-collapse: collapse; margin: 20px 0 24px; font-size: 14px; line-height: 1.6; }
.data-table th, .data-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); }
.data-table th { color: var(--text); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; background: rgba(0,0,0,0.02); }
.data-table td { color: var(--text2); }
.data-table .win { color: var(--green); font-weight: 600; }
.data-table .lose { color: var(--red); font-weight: 600; }
.data-table .warn { color: var(--orange); font-weight: 600; }

/* ── TIP BOX ── */
.tip-box { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 20px 24px; margin: 24px 0; }
.tip-box-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.tip-box p { font-size: 14px; margin-bottom: 8px; }
.tip-box p:last-child { margin-bottom: 0; }

/* ── UTILITIES ── */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link {
  position: absolute; top: -48px; left: 16px;
  padding: 10px 16px; background: var(--accent); color: var(--text);
  font-weight: 700; font-size: 14px; border-radius: 0 0 8px 8px;
  z-index: 9999; text-decoration: none; transition: top .15s;
}
.skip-link:focus { top: 0; outline: 2px solid var(--accent-hover); outline-offset: 2px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; flex-direction: column; justify-content: center; }
  .nav-cta { display: none; }

  .faq-section, .providers-section, .email-section { padding: 48px 20px; }
  .tab-content.active { grid-template-columns: 1fr; }

  footer { padding: 40px 20px 32px; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }

  .testimonials-items { grid-template-columns: 1fr; }
  .testimonials-section { padding: 24px 20px; }

  .sticky-cta-bar { display: block; }
  body { padding-bottom: 80px; }

  .press-bar { padding: 12px 16px; overflow: hidden; }
  .press-bar__row { gap: 8px; }
  .press-bar__logos { gap: 8px; }
  .press-bar__logos img { height: 16px !important; }

  .email-form { flex-direction: column; }
  .news-banner { padding: 10px 16px; }
  .news-banner-inner { font-size: 12px; }

  .article { padding: 100px 20px 60px; }
  .article h1 { font-size: 28px; }
  .article h2 { font-size: 20px; }
  .legal-page { padding: 100px 20px 60px; }
  .legal-page h1 { font-size: 26px; }
  .legal-page h2 { font-size: 18px; }
  .legal-page table { font-size: 13px; }
  .legal-page table th, .legal-page table td { padding: 8px 6px; }
  .data-table { font-size: 12px; }
  .data-table th, .data-table td { padding: 8px 6px; }
  .cta-section { padding: 48px 20px; }
}

@media (max-width: 480px) {
  .deals-grid { grid-template-columns: 1fr; }
}
