:root {
  --accent: #e01020;
  --accent2: #ff3a3a;
  --accent-light: #ffe4e4;
  --gold: #f59e0b;
  --green: #10b981;
  --green-light: #d1fae5;
  --red: #e01020;
  --bg2: #f8f9fc;
  --bg3: #f1f3f9;
  --text: #0f0e17;
  --text2: #4b5563;
  --text3: #9ca3af;
  --border: #e5e7eb;
  --border2: #d1d5db;
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #fff; color: var(--text); overflow-x: hidden; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.logo { font-weight: 800; font-size: 1.4rem; color: var(--text); text-decoration: none; letter-spacing: -0.03em; }
.logo span { background: linear-gradient(135deg, var(--accent), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-cta { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; font-weight: 600; font-size: 0.88rem; padding: 0.55rem 1.4rem; border-radius: 999px; text-decoration: none; transition: opacity 0.2s; white-space: nowrap; }
.nav-cta:hover { opacity: 0.85; }

/* ── HERO ── */
.hero-section-bg { background: linear-gradient(160deg, #fff0f0 0%, #fff5f5 50%, #fff0f0 100%); padding-top: 80px; }
.hero { max-width: 1100px; margin: 0 auto; padding: 6rem 2.5rem 5rem; display: flex; flex-direction: column; align-items: flex-start; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.65rem; background: linear-gradient(135deg, #e01020, #ff3a3a); color: #fff; font-size: 0.82rem; font-weight: 600; padding: 0.45rem 1.1rem 0.45rem 0.55rem; border-radius: 999px; margin-bottom: 2rem; }
.hero-badge-icon { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }
.hero h1 { font-size: clamp(2rem, 5.5vw, 4.6rem); font-weight: 800; max-width: 820px; letter-spacing: -0.04em; margin-bottom: 1.5rem; color: #1a0000; line-height: 1.1; }
.grad-iptv { background: linear-gradient(90deg, #e01020 0%, #ff3a3a 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.grad-nl { background: linear-gradient(90deg, #e01020 0%, #ff3a3a 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { max-width: 560px; color: #555; font-size: 1.05rem; line-height: 1.8; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; font-weight: 700; font-size: 1rem; padding: 0.85rem 2rem; border-radius: 999px; text-decoration: none; transition: all 0.2s; display: inline-flex; align-items: center; gap: 0.5rem; box-shadow: 0 4px 20px rgba(224,16,32,0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(224,16,32,0.4); }
.btn-secondary { background: #fff; color: #333; font-size: 1rem; font-weight: 500; padding: 0.85rem 2rem; border-radius: 999px; text-decoration: none; border: 1.5px solid var(--border2); transition: all 0.2s; }
.btn-secondary:hover { background: var(--bg3); }

/* ── TICKER ── */
.ticker-wrap { overflow: hidden; padding: 2.5rem 0; background: var(--bg2); }
.ticker { display: flex; align-items: center; gap: 1.25rem; width: max-content; animation: ticker 40s linear infinite; }
.ticker:hover { animation-play-state: paused; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-card { background: #fff; border: 1.5px solid var(--border); border-radius: 18px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); padding: 1.1rem 1.5rem; display: flex; align-items: center; justify-content: center; width: 190px; height: 110px; flex-shrink: 0; transition: all 0.2s; }
.ticker-card:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(224,16,32,0.12); transform: translateY(-2px); }
.ticker-logo { height: 90px; width: auto; max-width: 170px; object-fit: contain; flex-shrink: 0; }
.ticker-sep { display: none; }

/* ── STATS ── */
.stats-bar { display: flex; flex-wrap: wrap; background: var(--bg2); border-bottom: 1px solid var(--border); }
.stat-item { flex: 1 1 160px; padding: 1.75rem 1.5rem; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--text); }
.stat-num span { background: linear-gradient(135deg, var(--accent), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.82rem; color: var(--text2); margin-top: 0.25rem; font-weight: 500; }

/* ── SECTIONS ── */
section { padding: 6rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-tag { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); font-weight: 700; margin-bottom: 0.75rem; }
.section-title { font-size: clamp(1.6rem, 3.5vw, 2.7rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem; color: var(--text); }
.section-sub { color: var(--text2); font-size: 1rem; max-width: 560px; line-height: 1.75; }

/* ── MOVIES STRIP ── */
.movies-bg { background: var(--bg2); }
.movies-strip-wrap { overflow: hidden; margin-top: 3rem; }
.movies-strip { display: flex; gap: 14px; width: max-content; animation: strip 50s linear infinite; }
.movies-strip:hover { animation-play-state: paused; }
@keyframes strip { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.movie-card { width: 130px; height: 195px; border-radius: 12px; overflow: hidden; flex-shrink: 0; box-shadow: 0 2px 12px rgba(0,0,0,0.12); background: var(--bg3); transition: transform 0.2s; }
.movie-card:hover { transform: scale(1.04); }
.movie-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── SPORTS GRID ── */
.sport-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; margin-top: 3rem; }
.sport-card { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 1.25rem 1rem; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; transition: all 0.2s; cursor: default; }
.sport-card:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(224,16,32,0.1); transform: translateY(-2px); }
.sport-card img { width: 100px; height: 80px; object-fit: contain; }
.sport-card-name { font-size: 0.78rem; font-weight: 600; color: var(--text2); text-align: center; }

/* ── DEVICES GRID ── */
.devices-bg { background: var(--bg2); }
.devices-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 3rem; }
.device-item { background: #fff; border: 1.5px solid var(--border); border-radius: 18px; padding: 1.5rem 1rem; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; transition: all 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.device-item:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(224,16,32,0.12); transform: translateY(-2px); }
.device-item img { width: 110px; height: 60px; object-fit: contain; }
.device-name { font-size: 0.82rem; color: var(--text2); text-align: center; font-weight: 600; }

/* ── PRICING ── */
.pricing-bg { background: var(--bg2); }
.countdown-bar { background: #fff5f5; border: 1px solid #fecaca; border-radius: 12px; padding: 1rem 1.5rem; display: flex; align-items: center; gap: 1rem; margin: 2rem 0 3rem; flex-wrap: wrap; }
.countdown-label { color: var(--red); font-weight: 700; font-size: 0.9rem; }
.timer-display { font-size: 1.4rem; font-weight: 800; color: var(--red); letter-spacing: 0.05em; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.plan-card { background: #fff; border: 1.5px solid var(--border); border-radius: 20px; padding: 2rem; position: relative; transition: transform 0.25s, box-shadow 0.25s; }
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan-card.featured { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(224,16,32,0.1); }
.plan-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.3rem 1rem; border-radius: 999px; white-space: nowrap; }
.save-badge { display: inline-block; background: var(--green-light); color: var(--green); font-size: 0.72rem; font-weight: 700; padding: 0.25rem 0.65rem; border-radius: 6px; margin-bottom: 0.75rem; letter-spacing: 0.04em; }
.plan-name { font-size: 0.82rem; font-weight: 700; color: var(--text2); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.plan-price { font-size: 3rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: var(--text); }
.plan-price sup { font-size: 1.2rem; vertical-align: super; }
.plan-period { font-size: 0.88rem; color: var(--text2); margin-top: 0.25rem; margin-bottom: 0.25rem; }
.plan-old-price { font-size: 0.88rem; color: var(--text3); text-decoration: line-through; margin-bottom: 0.25rem; }
.plan-per-month { font-size: 0.82rem; color: var(--accent); font-weight: 600; margin-bottom: 1.5rem; }
.plan-divider { border: none; border-top: 1px solid var(--border); margin: 1.25rem 0; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.75rem; }
.plan-features li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--text2); }
.plan-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.plan-btn { display: block; width: 100%; text-align: center; padding: 0.9rem; border-radius: 12px; font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: all 0.2s; }
.plan-btn-grad { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; box-shadow: 0 4px 15px rgba(224,16,32,0.3); }
.plan-btn-grad:hover { opacity: 0.88; }
.plan-btn-outline { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }
.plan-btn-outline:hover { background: var(--accent-light); }
.plan-note { text-align: center; font-size: 0.78rem; color: var(--text3); margin-top: 0.75rem; }
.plan-btn-white { background: rgba(255,255,255,0.25); color: #fff; font-weight: 700; border: 2px solid rgba(255,255,255,0.5); border-radius: 999px; }
.plan-btn-white:hover { background: rgba(255,255,255,0.35); }
.gold-plan { background: linear-gradient(160deg, #b00010 0%, #e01020 45%, #ff3a3a 80%, #ff5533 100%) !important; border: none !important; box-shadow: 0 12px 40px rgba(180,0,16,0.5) !important; }
.gold-plan .plan-badge { background: #fff; color: #e01020; font-weight: 800; }
.save-badge-white { background: rgba(255,255,255,0.2) !important; color: #fff !important; letter-spacing: 0.06em; }
.gold-plan .plan-features li::before { color: rgba(255,255,255,0.7); }
.pay-img { height: 36px; width: auto; max-width: 80px; object-fit: contain; background: #fff; border-radius: 6px; padding: 4px 8px; border: 1px solid rgba(255,255,255,0.15); }
.trust-strip { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--border); }
.trust-item { text-align: center; }
.trust-num { font-size: 1.6rem; font-weight: 800; background: linear-gradient(135deg, var(--accent), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.trust-label { font-size: 0.8rem; color: var(--text2); margin-top: 0.2rem; font-weight: 500; }

/* ── WHY ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.why-card { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 1.75rem; transition: box-shadow 0.2s, border-color 0.2s; }
.why-card:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(224,16,32,0.08); }
.why-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.why-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.why-card p { color: var(--text2); font-size: 0.9rem; line-height: 1.65; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; margin-top: 3rem; border: 1.5px solid var(--border); border-radius: 16px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; background: #fff; border: none; cursor: pointer; padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center; font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--text); text-align: left; transition: background 0.15s; gap: 1rem; }
.faq-q:hover { background: var(--bg3); }
.faq-q .arrow { color: var(--accent); font-size: 1.1rem; transition: transform 0.2s; flex-shrink: 0; }
.faq-q.open .arrow { transform: rotate(45deg); }
.faq-a { background: var(--bg2); padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; }
.faq-a.open { max-height: 200px; padding: 1rem 1.5rem; }
.faq-a p { color: var(--text2); font-size: 0.9rem; line-height: 1.75; }

/* ── REVIEWS ── */
.reviews-bg { background: var(--bg2); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.review-card { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 1.5rem; transition: box-shadow 0.2s; }
.review-card:hover { box-shadow: var(--shadow-md); }
.review-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 0.05em; margin-bottom: 1rem; }
.review-text { color: var(--text2); font-size: 0.9rem; line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent2)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.78rem; color: #fff; flex-shrink: 0; }
.review-name { font-weight: 600; font-size: 0.88rem; color: var(--text); }
.review-role { font-size: 0.78rem; color: var(--text3); }

/* ── CTA ── */
.cta-section { padding: 6rem 2rem; background: var(--bg2); }
.cta-box { max-width: 700px; margin: 0 auto; text-align: center; background: linear-gradient(160deg, #fff0f0 0%, #fff0f0 100%); border: 1.5px solid rgba(224,16,32,0.2); border-radius: 24px; padding: 4rem 2.5rem; }
.cta-box h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1rem; color: var(--text); }
.cta-box p { color: var(--text2); margin-bottom: 2rem; }
.guarantee-pill { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--green-light); color: var(--green); font-size: 0.82rem; font-weight: 600; padding: 0.5rem 1rem; border-radius: 999px; margin-top: 1.5rem; }

/* ── FOOTER ── */
footer { background: #0f0e17; padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { font-weight: 800; font-size: 1.3rem; color: #fff; text-decoration: none; letter-spacing: -0.03em; }
.footer-logo span { background: linear-gradient(135deg, var(--accent), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-brand p { color: #9ca3af; font-size: 0.9rem; margin: 0.75rem 0 1rem; max-width: 300px; line-height: 1.65; }
.footer-whatsapp { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(16,185,129,0.12); color: #34d399; border: 1px solid rgba(16,185,129,0.25); font-size: 0.85rem; font-weight: 600; padding: 0.5rem 1rem; border-radius: 8px; text-decoration: none; }
.footer-col h5 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #fff; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { color: #9ca3af; text-decoration: none; font-size: 0.88rem; transition: color 0.15s; }
.footer-col ul li a:hover { color: #fff; }
.payment-icons { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.pay-badge { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 0.35rem 0.7rem; font-size: 0.78rem; font-weight: 700; color: #ccc; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.82rem; color: #6b7280; }

/* ════════════════════════════════════
   TABLET — max 1024px
════════════════════════════════════ */
@media (max-width: 1024px) {
  .devices-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ════════════════════════════════════
   MOBILE — max 768px
════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  nav { padding: 0.9rem 1.25rem; }
  .logo { font-size: 1.2rem; }
  .nav-cta { font-size: 0.8rem; padding: 0.45rem 1rem; }

  /* Hero */
  .hero { padding: 3.5rem 1.25rem 3rem; }
  .hero h1 { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .hero p { font-size: 0.95rem; }
  .hero-btns { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; text-align: center; padding: 0.9rem 1.5rem; }

  /* Ticker */
  .ticker-card { width: 120px; height: 72px; padding: 0.65rem 0.85rem; border-radius: 12px; }
  .ticker-logo { height: 44px; max-width: 100px; }
  .ticker { gap: 0.75rem; }
  .ticker-wrap { padding: 1.25rem 0; }

  /* Stats */
  .stats-bar { display: grid; grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 1.25rem 1rem; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-item:last-child { grid-column: 1 / -1; border-bottom: none; }
  .stat-num { font-size: 1.6rem; }

  /* Sections */
  section { padding: 3.5rem 1.25rem; }
  .cta-section { padding: 3.5rem 1.25rem; }
  .section-title { font-size: clamp(1.4rem, 6vw, 2rem); }

  /* Movies */
  .movie-card { width: 100px; height: 150px; }

  /* Sports */
  .sport-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sport-card { padding: 1rem 0.75rem; }
  .sport-card img { width: 80px; height: 64px; }

  /* Devices */
  .devices-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .device-item { padding: 1.1rem 0.75rem; border-radius: 14px; }
  .device-item img { width: 80px; height: 44px; }
  .device-name { font-size: 0.75rem; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }
  .countdown-bar { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .trust-strip { gap: 1.5rem; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-q { font-size: 0.88rem; padding: 1rem 1.25rem; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-box { padding: 2.5rem 1.5rem; border-radius: 18px; }
  .guarantee-pill { font-size: 0.75rem; text-align: center; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: unset; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ════════════════════════════════════
   SMALL MOBILE — max 480px
════════════════════════════════════ */
@media (max-width: 480px) {
  nav { padding: 0.75rem 1rem; }
  .hero { padding: 3rem 1rem 2.5rem; }
  .hero h1 { font-size: clamp(1.6rem, 9vw, 2.2rem); }
  .hero-badge { font-size: 0.75rem; }

  /* Stats: single column on very small screens */
  .stats-bar { grid-template-columns: 1fr 1fr; }

  /* Sports 3 cols on small */
  .sport-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .sport-card { padding: 0.75rem 0.5rem; }
  .sport-card img { width: 60px; height: 48px; }
  .sport-card-name { font-size: 0.68rem; }

  /* Devices 3 cols on small */
  .devices-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .device-item { padding: 0.85rem 0.5rem; border-radius: 12px; }
  .device-item img { width: 60px; height: 36px; }
  .device-name { font-size: 0.68rem; }

  /* Movies smaller */
  .movie-card { width: 85px; height: 128px; }

  /* Ticker even smaller */
  .ticker-card { width: 100px; height: 62px; padding: 0.5rem 0.65rem; border-radius: 10px; }
  .ticker-logo { height: 36px; max-width: 80px; }
  .ticker { gap: 0.6rem; }

  section { padding: 3rem 1rem; }
  .cta-section { padding: 3rem 1rem; }
  .cta-box { padding: 2rem 1.25rem; }
  footer { padding: 3rem 1rem 1.5rem; }
}
