/* ==========================================================================
   Abonnement IPTV — Design éditorial (papier chaud + encre + vermillon)
   ========================================================================== */

:root {
  --paper: #f4efe6;
  --paper-2: #ebe4d6;
  --ink: #161410;
  --muted: #5e574c;
  --line: rgba(22, 20, 16, 0.12);
  --red: #d63a24;
  --red-dark: #b42d1b;
  --cream: #fffaf2;
  --night: #12100c;
  --night-2: #1c1914;
  --gold: #c9a227;
  --whatsapp: #1faa55;
  --header-h: 112px;
  --max: 1120px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  background: var(--red);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}
.skip-link:focus { top: 12px; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red);
  margin: 0 0 10px;
}

.lede {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.65;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 12px;
}

h1 { font-size: clamp(2.35rem, 7vw, 4.4rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.55rem); }
h3 { font-size: 1.2rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-line {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-ghost-light {
  background: transparent;
  border: 1px solid rgba(244, 239, 230, 0.25);
  color: #f4efe6;
}

/* Promo */
.promo-bar {
  background: var(--ink);
  color: #efe8dc;
  font-size: 0.88rem;
  text-align: center;
  padding: 9px 16px;
}
.promo-bar a { color: #ffd56a; text-decoration: underline; margin-left: 8px; }
.countdown {
  display: inline-block;
  margin-left: 8px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: #ffd56a;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: var(--night);
  border-bottom: 1px solid rgba(244, 239, 230, 0.12);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  display: block;
  height: 92px;
  width: auto;
}
.site-footer .logo {
  margin-bottom: 14px;
}
.site-footer .logo img {
  height: 118px;
}
.nav { display: none; gap: 22px; }
.nav a { color: #cfc6b6; font-size: 0.94rem; font-weight: 500; }
.nav a:hover { color: #fff; }
.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(244, 239, 230, 0.18);
  background: var(--night-2);
  color: #fff;
  cursor: pointer;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 16px 18px;
  background: var(--night);
  border-bottom: 1px solid rgba(244, 239, 230, 0.12);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a { padding: 10px 4px; font-weight: 600; color: #efe8dc; }

/* Hero — titres centrés, stats en bandeau */
.hero {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 36px;
}
.hero-copy h1 { margin-bottom: 18px; }
.hero-copy h1::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  background: var(--red);
  margin: 20px auto 0;
  border-radius: 99px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 24px 0 16px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  color: var(--muted);
  font-size: 0.9rem;
}
.hero-panel {
  background: var(--night);
  color: #f4efe6;
  border-radius: 24px;
  padding: 22px 28px;
  display: grid;
  gap: 18px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-panel::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #d63a24;
  opacity: 0.4;
}
.hero-panel p { position: relative; z-index: 1; margin: 0; color: #cfc6b6; }
.hero-panel strong { font-family: var(--serif); font-size: 1.65rem; color: #fff; display: block; margin-top: 4px; }
.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stats span { display: block; font-size: 0.75rem; color: #b7ae9f; }
.hero-stats b { font-size: 1.15rem; }

/* Trust ribbon */
.trust-ribbon {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
  padding: 14px 0;
}
.ribbon-track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-size: 0.92rem;
  font-weight: 600;
}
.ribbon-track span { white-space: nowrap; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

section { padding: 88px 0; }
.band-night { background: var(--night); color: var(--paper); }
.band-night .lede,
.band-night .muted { color: #b7ae9f; }
.band-cream { background: var(--cream); }

.section-intro {
  display: grid;
  gap: 12px;
  margin: 0 auto 48px;
  max-width: 720px;
  text-align: center;
  justify-items: center;
}
.section-intro h2::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  background: var(--red);
  margin: 16px auto 0;
  border-radius: 99px;
}
.band-night .section-intro h2::after { background: #e8c56a; }

/* Offres — cartes avec sélecteur d’écrans */
.pricing-grid {
  display: grid;
  gap: 16px;
}

.price-card {
  background: var(--night-2);
  border: 1px solid rgba(244, 239, 230, 0.1);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.price-card--featured {
  background: var(--cream);
  color: var(--ink);
  border: 0;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.price-card-header {
  padding: 22px 22px 8px;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 7.4rem;
}

.price-card-header h3 {
  font-family: var(--sans);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  margin: 0 0 6px;
  line-height: 1.2;
}

.price-card .ribbon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--red);
  color: #fff;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.ribbon--ghost {
  visibility: hidden;
}

.price-bonus-inline {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--red);
  min-height: 1.4em;
  line-height: 1.4;
}

.price-bonus-inline--standard {
  color: #b7ae9f;
  font-weight: 500;
}

.price-card--featured .price-bonus-inline--standard,
.price-card--featured .screen-picker-label {
  color: var(--muted);
}

.price-card-body {
  padding: 8px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.screen-picker {
  min-height: 11.5rem;
}

.screen-picker-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8d8578;
  margin-bottom: 8px;
}

.screen-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.screen-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(244, 239, 230, 0.16);
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 0.82rem;
  min-height: 3.55rem;
}

.price-card--featured .screen-option {
  border-color: var(--line);
  background: #fff;
}

.screen-option-price {
  font-weight: 700;
  font-size: 0.9rem;
}

.screen-option.is-active {
  border-color: var(--red);
  background: rgba(214, 58, 36, 0.14);
}

.price-card--featured .screen-option.is-active {
  background: #fde8e3;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin: 18px 0 14px;
  min-height: 3.4rem;
}

.price-old {
  color: #8d8578;
  text-decoration: line-through;
  font-size: 1.05rem;
  min-width: 3.4rem;
}

.price-old.is-hidden {
  visibility: hidden;
}

.pricing-grid.is-hidden { display: none; }

.server-switch-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 36px;
}

.server-switch-caption {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #b7ae9f;
}

.server-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--night-2);
  border: 1px solid rgba(244, 239, 230, 0.14);
  border-radius: 999px;
  padding: 4px;
  min-width: 280px;
}

.server-switch button {
  border: 0;
  background: transparent;
  color: #cfc6b6;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.server-switch button.is-active {
  background: var(--cream);
  color: var(--ink);
}

.server-switch button[data-server-tab="premium"].is-active {
  background: var(--red);
  color: #fff;
}

.server-switch-hint {
  margin: 0;
  color: #b7ae9f;
  font-size: 0.9rem;
  max-width: 42ch;
}

.price-current {
  font-family: var(--serif);
  font-size: 2.6rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-currency {
  font-size: 1.2rem;
  margin-right: 4px;
}

.features-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  flex: 1;
  color: #cfc6b6;
}

.price-card--featured .features-list { color: var(--muted); }

.features-list li {
  padding: 6px 0 6px 18px;
  position: relative;
  font-size: 0.94rem;
  line-height: 1.4;
  min-height: 1.85em;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
}

.btn-subscribe {
  width: 100%;
  background: var(--red);
  color: #fff;
  border-radius: 999px;
}

.price-card--featured .btn-subscribe {
  background: var(--ink);
}

.price-card .guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 12px 0 0;
  font-size: 0.78rem;
  color: #8d8578;
}

.price-card--featured .guarantee { color: var(--muted); }

/* Timeline */
.steps {
  display: grid;
  gap: 20px;
  counter-reset: s;
  max-width: 980px;
  margin: 0 auto;
}
.step {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
  padding: 8px 12px 12px;
  position: relative;
}
.step:not(:last-child)::before { display: none; }
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  font-weight: 700;
  margin: 0 auto;
}
.step p { margin: 0; color: var(--muted); max-width: 28ch; }

/* Bento expérience */
.bento {
  display: grid;
  gap: 12px;
}
.tile {
  background: var(--paper-2);
  border-radius: 22px;
  padding: 22px;
}
.tile-dark {
  background: var(--night);
  color: var(--paper);
  min-height: 200px;
}
.tile-dark p { color: #cfc6b6; }
.compat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}
.compat-row div {
  background: var(--cream);
  color: var(--ink);
  border-radius: 14px;
  padding: 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

.programs {
  display: grid;
  gap: 10px;
}
.prog {
  border-radius: 18px;
  padding: 20px;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.prog h3 { margin: 0 0 4px; }
.prog p { margin: 0; font-size: 0.9rem; }
.p1 { background: #2a2118; color: #f4efe6; }
.p2 { background: #d63a24; color: #fff; }
.p3 { background: #1f3a32; color: #e8f4ef; }
.p4 { background: #3a2a18; color: #f4efe6; }
.p5 { background: #243044; color: #e8eef6; }
.p6 { background: #4a3a28; color: #f4efe6; }

/* Why — three large */
.why-grid { display: grid; gap: 18px; }
.why-item { padding-bottom: 18px; border-bottom: 1px solid var(--line); text-align: center; }
.why-item p { margin: 0 auto; color: var(--muted); max-width: 32ch; }

.prose {
  color: var(--muted);
  max-width: 68ch;
  margin: 0 auto;
  text-align: left;
}
.prose p { margin: 0 0 16px; }

.reviews { display: grid; gap: 14px; }
.quote {
  background: var(--cream);
  border-radius: 22px;
  padding: 28px 22px;
  text-align: center;
}
.quote p { font-family: var(--serif); font-size: 1.2rem; line-height: 1.4; margin: 0 0 16px; }
.quote footer {
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.verified { color: var(--red); font-weight: 700; }

.split { display: grid; gap: 14px; }
.panel {
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
}
.panel-red { background: var(--red); color: #fff; }
.panel-red p { color: rgba(255,255,255,0.88); max-width: 42ch; margin-left: auto; margin-right: auto; }
.panel-ink { background: var(--night); color: var(--paper); }
.panel-ink p, .panel-ink dd { color: #cfc6b6; }
.panel dt { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: #8d8578; }
.panel dd { margin: 0 0 12px; font-weight: 700; color: #fff; }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 16px 0;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: inherit;
}
.faq-item .answer { display: none; padding: 0 0 16px; color: var(--muted); }
.faq-item.is-open .answer { display: block; }
.faq-item .answer strong { color: var(--ink); }

.keyword-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: -12px auto 32px;
  max-width: 820px;
}
.keyword-row span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}

.snippet {
  max-width: 820px;
  margin: 0 auto 36px;
  background: var(--night);
  color: #efe8dc;
  border-radius: 24px;
  padding: 28px 28px 32px;
  box-shadow: 0 18px 40px rgba(18, 16, 12, 0.18);
}
.snippet-label {
  margin: 0 0 10px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #e8c56a;
}
.snippet h3 {
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin-bottom: 14px;
}
.snippet p {
  margin: 0;
  line-height: 1.65;
  color: #cfc6b6;
  max-width: none;
}
.snippet strong { color: #fff; }

.article-toc {
  max-width: 820px;
  margin: 0 auto 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 24px 22px;
}
.article-toc p {
  margin: 0 0 10px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--red);
}
.article-toc ol {
  margin: 0;
  padding-left: 1.2em;
  color: var(--ink);
}
.article-toc li { margin: 6px 0; }
.article-toc a { font-weight: 600; }
.article-toc a:hover { color: var(--red); }

.article-body {
  max-width: 68ch;
  margin: 0 auto;
  color: var(--muted);
  text-align: left;
}
.article-body h3 {
  color: var(--ink);
  margin: 36px 0 12px;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
}
.article-body h3::before {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  background: var(--red);
  border-radius: 99px;
  margin-bottom: 12px;
}
.article-body p { margin: 0 0 16px; }
.article-body ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
.article-body li {
  position: relative;
  padding: 8px 0 8px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.article-body li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.article-body strong { color: var(--ink); }

.article-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 44px;
}

footer.site-footer {
  background: var(--night);
  color: #cfc6b6;
  padding: 48px 0 110px;
  border-top: 0;
}
.footer-grid { display: grid; gap: 28px; }
.site-footer h3 { color: #fff; font-family: var(--sans); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a:hover { color: #fff; }
.copyright { margin-top: 28px; font-size: 0.85rem; text-align: center; }

.float-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 84px;
  z-index: 50;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(31, 170, 85, 0.35);
}
.back-top {
  position: fixed;
  left: 16px;
  bottom: 84px;
  z-index: 50;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream);
  cursor: pointer;
  display: none;
  place-items: center;
}
.back-top.is-visible { display: grid; }
.mobile-cta-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 45;
  display: flex;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(244, 239, 230, 0.96);
  border-top: 1px solid var(--line);
}
.mobile-cta-bar .btn { flex: 1; }

/* Checkout popup */
.checkout-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px 16px calc(20px + env(safe-area-inset-bottom));
  background: rgba(18, 16, 12, 0.62);
  overflow-y: auto;
}
.checkout-overlay[hidden] { display: none; }
.checkout-dialog {
  position: relative;
  width: min(100%, 440px);
  background: var(--cream);
  color: var(--ink);
  border-radius: 22px;
  padding: 28px 24px 24px;
  box-shadow: 0 24px 60px rgba(18, 16, 12, 0.35);
}
.checkout-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.checkout-dialog h2 { margin-bottom: 8px; }
.checkout-summary {
  margin: 0 0 20px;
  padding: 12px 14px;
  background: var(--paper-2);
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}
.checkout-summary strong { color: var(--ink); }
.checkout-field {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  font-weight: 600;
}
.checkout-field input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  background: #fff;
  color: var(--ink);
}
.checkout-field input:focus {
  outline: 2px solid var(--red);
  outline-offset: 1px;
}
.checkout-error {
  margin: 0 0 12px;
  color: var(--red-dark);
  font-size: 0.88rem;
}
.checkout-submit { width: 100%; margin-top: 4px; }
body.checkout-open { overflow: hidden; }

@media (max-width: 767px) {
  :root { --header-h: 92px; }
  .header-inner > .btn { display: none; }
  .logo img { height: 72px; }
  .site-footer .logo img { height: 96px; }
}

@media (min-width: 768px) {
  .nav { display: flex; }
  .menu-toggle, .mobile-cta-bar { display: none; }
  .hero-panel {
    grid-template-columns: 0.9fr 1.1fr;
    text-align: left;
    align-items: center;
    padding: 28px 36px;
  }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: 1.1fr 0.9fr; }
  .programs { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .why-item { border: 0; padding: 0; }
  .reviews { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .float-whatsapp, .back-top { bottom: 22px; }
  footer.site-footer { padding-bottom: 48px; }
}

@media (min-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .reviews { grid-template-columns: repeat(4, 1fr); }
  .programs { grid-template-columns: 1.3fr 1fr 1fr; }
  .prog.wide { grid-row: span 2; min-height: 230px; }
}
