:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: rgba(17, 17, 17, 0.9);
  --panel-strong: rgba(17, 17, 17, 0.96);
  --line: #222222;
  --line-soft: rgba(34, 34, 34, 0.85);
  --text: #ffffff;
  --muted: #9e9e9e;
  --green: #00c853;
  --green-dark: #009640;
  --red: #e53935;
  --red-dark: #8f1518;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 4%, rgba(0, 200, 83, 0.13), transparent 22%),
    radial-gradient(circle at 88% 8%, rgba(229, 57, 53, 0.12), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, #0d0d0d 100%);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.offer-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 40px;
  padding: 0 18px;
  background: linear-gradient(90deg, #008a38 0%, #0ba845 34%, #fff 47%, #fff 63%, #ee101b 76%, #cf0b14 100%);
  color: #fff;
  font-size: 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.offer-bar strong,
.offer-bar > span,
.offer-bar b {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
}

.offer-bar strong {
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
}

.offer-bar > span {
  color: #080908;
}

.offer-bar b {
  min-height: 28px;
  margin-left: 12px;
  padding: 0 18px;
  border-radius: 6px;
  background: rgba(127, 0, 0, 0.38);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.flame {
  display: inline-block;
  width: auto;
  height: auto;
  margin-right: 4px;
  background: none;
  transform: none;
  vertical-align: -2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  padding: 0 clamp(24px, 4vw, 64px);
  background: rgba(5, 7, 6, 0.86);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.4px;
}

.brand strong::first-letter {
  color: var(--green);
}

.brand em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.tv-logo {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 40px;
  border: 5px solid transparent;
  border-radius: 12px;
  background:
    linear-gradient(#030504, #030504) padding-box,
    conic-gradient(
      from 210deg,
      #00c853 0deg 118deg,
      #f8f8f8 118deg 214deg,
      #e53935 214deg 292deg,
      #f8f8f8 292deg 328deg,
      #00c853 328deg 360deg
    )
    border-box;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.72),
    0 0 24px rgba(0, 200, 83, 0.28);
}

.tv-logo::before,
.tv-logo::after {
  position: absolute;
  content: "";
  z-index: 1;
  top: -2px;
  height: 5px;
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.18);
}

.tv-logo::before {
  left: 0;
  width: 24px;
  background: linear-gradient(90deg, #ffffff, #dfe4e1);
  transform: rotate(42deg);
  transform-origin: right center;
}

.tv-logo::after {
  left: 24px;
  width: 24px;
  background: linear-gradient(90deg, #dce6df, #00c853);
  transform: rotate(-42deg);
  transform-origin: left center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 38px;
  color: #f2f4f2;
  font-size: 13px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 31px 0;
}

.nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 2px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a:first-child::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.header-actions .header-cta {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.header-actions .header-cta .btn-icon {
  width: 15px;
  height: 15px;
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-weight: 900;
}

.lang span {
  width: 18px;
  height: 12px;
  border-radius: 2px;
  background: linear-gradient(90deg, #129447 0 33%, #fff 33% 66%, #df2634 66%);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 18px 36px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.btn-arrow {
  display: inline-block;
  font-size: 20px;
  line-height: 1;
  transform: translateY(-1px);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.btn-outline {
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
}

.btn-red-outline {
  border: 2px solid var(--red);
  background: transparent;
  color: #fff;
}

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 5, 4, 0.94) 0%, rgba(3, 5, 4, 0.78) 34%, rgba(3, 5, 4, 0.24) 74%),
    linear-gradient(0deg, rgba(3, 5, 4, 1) 0%, rgba(3, 5, 4, 0) 26%),
    url("assets/hero-italia-iptv.webp") center right / cover no-repeat;
  filter: saturate(1.08) contrast(1.06);
}

.hero::before {
  position: absolute;
  inset: auto 0 -1px;
  z-index: -1;
  height: 120px;
  content: "";
  background: linear-gradient(0deg, var(--bg), transparent);
}

.hero-inner {
  width: min(1260px, calc(100% - 48px));
  min-height: 560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(610px, 100%);
  padding: 48px 0 86px;
}

.hero h1,
.section-title h2,
.referral h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.05;
  text-wrap: balance;
}

.hero h1 span,
.section-title span,
.referral span {
  color: var(--green);
}

.hero h1 span {
  background: linear-gradient(90deg, var(--green), #fff 48%, var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 560px;
  margin: 26px 0 22px;
  color: #f3f6f3;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 32px;
}

.hero-pills span {
  position: relative;
  padding-left: 24px;
  color: #f7fbf8;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.hero-pills span::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  content: "✓";
  font-size: 10px;
  line-height: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}

.hero small {
  color: #ccd4d0;
  font-size: 13px;
}

.stats-panel,
.section-panel,
.referral,
.final-cta {
  width: min(1260px, calc(100% - 48px));
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 9px;
  background:
    radial-gradient(circle at 10% 0%, rgba(23, 200, 91, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: -48px;
  position: relative;
  z-index: 4;
  overflow: hidden;
}

.stats-panel article {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 112px;
  padding: 26px 34px;
  border-right: 1px solid var(--line);
}

.stats-panel article:last-child {
  border-right: 0;
}

.stats-panel strong {
  display: block;
  font-size: 28px;
  font-family: var(--font-heading);
  font-weight: 800;
}

.stats-panel small,
.devices-grid small,
.plan-card small,
.steps-grid small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.icon,
.device-icon,
.step-icon,
.ref-icon,
.gift-icon {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--green);
  filter: drop-shadow(0 0 18px rgba(23, 200, 91, 0.28));
}

.icon {
  width: 58px;
  height: 58px;
  padding: 4px;
}

.section-panel {
  margin-top: 30px;
  padding: 30px 34px;
}

.section-title {
  margin-bottom: 28px;
  text-align: center;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.section-title .red,
.red {
  color: var(--red);
}

.devices-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 18px;
}

.devices-grid article {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 112px;
  text-align: center;
}

.devices-grid strong {
  font-size: 15px;
}

.device-icon {
  width: 62px;
  height: 62px;
  padding: 4px;
}

.pricing {
  padding-inline: 8px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.plan-card {
  position: relative;
  padding: 30px 24px 22px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(16, 18, 17, 0.92);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.plan-card.featured {
  border-color: var(--green);
  box-shadow: 0 0 30px rgba(0, 200, 83, 0.35);
}

.plan-card.best {
  border-color: var(--red);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 148px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.badge.green {
  background: var(--green);
}

.badge.red {
  background: var(--red);
}

.mobile-badge {
  display: none;
}

.plan-card h3 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.price {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2px;
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
}

.price span {
  margin-top: 8px;
  font-size: 27px;
}

.price sup {
  margin-top: 9px;
  font-size: 28px;
}

.plan-card > small {
  display: block;
  margin-bottom: 28px;
  text-align: center;
}

.plan-card ul {
  display: grid;
  gap: 9px;
  width: fit-content;
  max-width: 100%;
  min-height: 278px;
  margin: 0 auto 24px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.plan-card li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 950;
}

.plan-card.best li::before {
  color: var(--red);
}

.plan-card .btn {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border-width: 2px;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  box-shadow: none;
}

.plan-card .btn-green {
  background: transparent;
  border-color: var(--green);
  color: #ffffff;
}

.plan-card .btn-icon {
  width: 16px;
  height: 16px;
}

.payment-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.payment-note span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.payment-note span::before {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: var(--green);
  content: "✓";
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.payment-note .secure::before {
  color: #d7d739;
}

.payment-note .instant::before,
.payment-note .guarantee::before {
  color: var(--green);
}

.reviews,
.steps {
  margin-top: 30px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.review-grid figure {
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.stars {
  margin-bottom: 12px;
  color: var(--green);
  letter-spacing: 2px;
}

.review-grid blockquote {
  min-height: 72px;
  margin: 0 0 18px;
  color: #f4f7f5;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.review-grid figcaption {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 10px;
  align-items: center;
}

.review-grid figcaption span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #efc19d, #79513e);
  color: #fff;
  font-size: 13px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.review-grid figcaption strong,
.review-grid figcaption small {
  display: block;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.slider-dots button {
  position: relative;
  width: 28px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 160ms ease, opacity 160ms ease;
}

.slider-dots button::before {
  position: absolute;
  left: 5px;
  right: 5px;
  top: 7px;
  height: 4px;
  border-radius: 999px;
  background: var(--green);
  content: "";
}

.slider-dots button:hover,
.slider-dots button.active {
  transform: scaleX(1.18);
}

.slider-dots button:nth-child(2)::before {
  background: #ffffff;
}

.slider-dots button:nth-child(3)::before {
  background: var(--red);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.steps-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 14px;
  align-items: center;
}

.steps-grid article:not(:last-child)::after {
  position: absolute;
  right: -18px;
  top: 50%;
  width: 28px;
  height: 0;
  border-top: 3px dotted rgba(255, 255, 255, 0.55);
  content: "";
}

.steps-grid b {
  position: absolute;
  left: -9px;
  top: -8px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #050706;
  border: 3px solid currentColor;
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.steps-grid article:nth-child(2) b {
  color: #fff;
}

.steps-grid article:nth-child(3) b {
  color: var(--red);
}

.step-icon {
  width: 68px;
  height: 68px;
  padding: 16px;
  border-radius: 50%;
  color: var(--green);
  background: rgba(23, 200, 91, 0.2);
  border: 3px solid currentColor;
}

.steps-grid article:nth-child(2) .step-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.steps-grid article:nth-child(3) .step-icon {
  color: var(--red);
  background: rgba(241, 40, 47, 0.17);
}

.steps-grid strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.steps-grid small {
  display: block;
  max-width: 280px;
  font-size: 14px;
  line-height: 1.55;
}

.referral {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr 1.2fr auto 90px;
  align-items: center;
  gap: 26px;
  margin-top: 30px;
  padding: 28px 40px;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(23, 200, 91, 0.54), rgba(8, 9, 8, 0.55) 42%, rgba(241, 40, 47, 0.54)),
    url("assets/hero-italia-iptv.webp") center bottom / cover;
}

.referral::before,
.final-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.34);
}

.referral > *,
.final-cta > * {
  position: relative;
  z-index: 2;
}

.ref-icon,
.gift-icon {
  width: 78px;
  height: 78px;
  padding: 16px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 3px solid currentColor;
}

.gift-icon {
  color: #fff;
  border-color: #fff;
  box-shadow: 0 0 44px rgba(241, 40, 47, 0.55);
}

.referral h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.referral h2 span {
  color: var(--red);
}

.referral p {
  margin: 0;
  color: #fff;
  line-height: 1.5;
}

.referral p strong {
  color: var(--red);
  text-transform: uppercase;
}

.faq {
  width: min(1260px, calc(100% - 48px));
  margin: 28px auto 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.faq-grid > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
}

.faq-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 54px;
  padding: 0 20px;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.025);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.faq-item b {
  color: #fff;
  transition: transform 180ms ease;
}

.faq-panel {
  display: none;
  padding: 0 20px 18px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  line-height: 1.6;
}

.faq-panel p {
  margin: 0;
}

.faq-item[aria-expanded="true"] + .faq-panel {
  display: block;
}

.faq-item[aria-expanded="true"] b {
  transform: rotate(180deg);
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  margin-top: 26px;
  padding: 42px 138px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 17% 55%, rgba(0, 200, 83, 0.72) 0%, rgba(0, 200, 83, 0.22) 30%, transparent 58%),
    radial-gradient(ellipse at 86% 48%, rgba(229, 57, 53, 0.78) 0%, rgba(229, 57, 53, 0.24) 32%, transparent 60%),
    linear-gradient(116deg, transparent 18%, rgba(255, 255, 255, 0.34) 42%, rgba(255, 255, 255, 0.08) 50%, transparent 66%),
    linear-gradient(155deg, rgba(0, 200, 83, 0.38) 0%, rgba(13, 13, 13, 0.88) 41%, rgba(255, 255, 255, 0.12) 52%, rgba(229, 57, 53, 0.42) 100%),
    #0d0d0d;
}

.final-cta::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(ellipse at 16% 84%, rgba(0, 200, 83, 0.36), transparent 34%),
    radial-gradient(ellipse at 85% 18%, rgba(229, 57, 53, 0.34), transparent 36%),
    linear-gradient(170deg, transparent 0 34%, rgba(255, 255, 255, 0.08) 42%, transparent 56%);
  filter: blur(1px);
  opacity: 0.95;
}

.final-cta h2 {
  max-width: 660px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.final-cta h2 span {
  color: var(--red);
}

.final-cta p {
  max-width: 650px;
  margin: 14px 0 0;
  line-height: 1.55;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.9fr 1.1fr;
  gap: 58px;
  width: min(1260px, calc(100% - 48px));
  margin: 34px auto 0;
  padding: 0 0 28px;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 7px;
}

.site-footer .brand {
  margin-bottom: 16px;
  color: #fff;
}

.site-footer .brand strong,
.site-footer .brand em {
  color: #fff;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a,
.socials span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0d4e2b;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.contact-link::before {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 200, 83, 0.16);
  color: var(--green);
  content: attr(data-icon);
  font-size: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1;
  flex: 0 0 auto;
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1260px, calc(100% - 48px));
  margin: 0 auto;
  padding: 16px 0;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 12px;
}

.page-main {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 48px;
}

.page-hero {
  margin-bottom: 32px;
  text-align: center;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.page-hero h1 span {
  color: var(--green);
}

.page-hero p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.page-card,
.page-panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 200, 83, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: var(--shadow);
}

.page-card {
  padding: 28px;
}

.page-card h2,
.page-card h3,
.page-panel h2 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.page-card p,
.page-card li,
.page-panel p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.page-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-card li {
  position: relative;
  padding-left: 22px;
}

.page-card li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
}

.pricing-cards-page {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-cards-page .page-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.pricing-cards-page .page-card p {
  margin: 0;
}

.pricing-cards-page .btn {
  width: 100%;
  min-height: 46px;
  margin-top: 8px;
  padding: 0 16px;
  font-size: 13px;
  white-space: nowrap;
}

.pricing-table-section,
.seo-copy {
  margin-top: 22px;
}

.pricing-table-section > p,
.seo-copy p {
  margin: 0 0 22px;
}

.seo-copy h2:not(:first-child) {
  margin-top: 28px;
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.pricing-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

.pricing-table th,
.pricing-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line-soft);
  color: #f4f7f5;
  font-size: 15px;
  line-height: 1.45;
}

.pricing-table thead th {
  background: rgba(0, 200, 83, 0.12);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.pricing-table tbody th {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
}

.pricing-table tbody tr:last-child th,
.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-table td {
  color: var(--muted);
}

.blog-card-link {
  display: block;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.blog-card-link:hover {
  border-color: rgba(0, 200, 83, 0.6);
  box-shadow: 0 0 30px rgba(0, 200, 83, 0.18);
  transform: translateY(-3px);
}

.blog-card-link span {
  display: inline-flex;
  margin-top: 14px;
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.page-panel {
  padding: 34px;
}

.page-panel + .page-panel {
  margin-top: 18px;
}

.page-faq {
  width: min(980px, 100%);
}

.article-page {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: #fff;
}

.breadcrumbs strong {
  color: var(--green);
  font-weight: 600;
}

.article-page article {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 200, 83, 0.12), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(229, 57, 53, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: var(--shadow);
}

.seo-article {
  width: min(980px, calc(100% - 48px));
}

.article-featured,
.article-figure {
  margin: 30px 0;
}

.article-featured img,
.article-figure img {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #050505;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.38);
}

.article-featured figcaption,
.article-figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.toc-box,
.related-posts,
.faq-section {
  margin: 34px 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 200, 83, 0.08), transparent 30%),
    rgba(255, 255, 255, 0.025);
}

.toc-box h2,
.related-posts h2,
.faq-section h2 {
  margin-top: 0;
}

.toc-box ol,
.related-posts ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
}

.toc-box a,
.related-posts a {
  color: #fff;
  font-weight: 700;
}

.related-posts li span {
  display: block;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.faq-section article {
  padding: 18px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-section article + article {
  border-top: 1px solid var(--line-soft);
}

.faq-section h3 {
  margin: 0 0 8px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.3;
}

.article-kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.article-page h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

.article-lead {
  margin: 22px 0 34px;
  color: #f4f7f5;
  font-size: 20px;
  line-height: 1.7;
}

.article-page h2 {
  margin: 34px 0 12px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.article-page p,
.article-page li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.article-page ul {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.article-page li {
  position: relative;
  padding-left: 25px;
}

.article-page li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.article-cta {
  margin-top: 38px;
  padding: 28px;
  border: 1px solid rgba(0, 200, 83, 0.42);
  border-radius: 12px;
  background:
    linear-gradient(105deg, rgba(0, 200, 83, 0.18), rgba(229, 57, 53, 0.12)),
    rgba(5, 5, 5, 0.58);
}

.article-cta h2 {
  margin-top: 0;
}

.article-cta p {
  margin-bottom: 20px;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: block;
  }

  .nav,
  .header-actions {
    display: none;
  }

  .nav.is-open {
    position: absolute;
    top: 82px;
    left: 24px;
    right: 24px;
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #070908;
    box-shadow: var(--shadow);
  }

  .nav.is-open a {
    padding: 18px;
    border-bottom: 1px solid var(--line-soft);
  }

  .nav.is-open a::after {
    display: none;
  }

  .stats-panel,
  .pricing-grid,
  .review-grid,
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-cards-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-panel article:nth-child(2) {
    border-right: 0;
  }

  .stats-panel article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .devices-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .referral {
    grid-template-columns: 80px 1fr;
  }

  .referral p,
  .referral .btn,
  .gift-icon {
    grid-column: 2;
  }

  .final-cta {
    padding: 38px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .offer-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 6px;
    min-height: 92px;
    padding: 10px 14px;
    background: linear-gradient(90deg, #008a38 0%, #078d3c 38%, #c80c13 100%);
    color: #fff;
    line-height: 1.35;
  }

  .offer-bar::before {
    width: 100%;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    content: "🔥 Offerta speciale! 30% di sconto";
  }

  .offer-bar strong,
  .offer-bar > span,
  .offer-bar b {
    min-height: auto;
    padding: 0;
    color: #fff;
  }

  .offer-bar strong {
    display: none;
  }

  .offer-bar > span {
    width: 100%;
    justify-content: center;
    font-size: 12px;
    white-space: nowrap;
    font-size: 0;
  }

  .offer-bar > span::before {
    font-size: 12px;
    content: "su tutti i piani - solo per poco tempo!";
  }

  .offer-bar b {
    width: auto;
    min-height: 30px;
    justify-content: center;
    gap: 8px;
    margin: 2px auto 0;
    padding: 0 14px;
    background: rgba(185, 10, 16, 0.94);
    white-space: nowrap;
  }

  .offer-bar b span {
    white-space: nowrap;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    min-height: 76px;
    padding-inline: 18px;
  }

  .brand {
    gap: 10px;
  }

  .tv-logo {
    width: 38px;
    height: 31px;
  }

  .brand strong {
    font-size: 23px;
  }

  .brand em {
    font-size: 9px;
    letter-spacing: 1.1px;
  }

  .header-actions {
    order: 2;
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .lang {
    min-height: 36px;
    padding: 0 10px;
  }

  .nav-toggle {
    order: 3;
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 710px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(3, 5, 4, 0.98) 0%, rgba(3, 5, 4, 0.88) 42%, rgba(3, 5, 4, 0.4) 59%, rgba(3, 5, 4, 0.1) 74%, rgba(3, 5, 4, 1) 100%),
      url("assets/hero-italia-iptv.webp") 50% calc(100% - 18px) / auto 60% no-repeat;
  }

  .hero-inner {
    min-height: 710px;
    width: min(100% - 40px, 1260px);
    align-items: flex-start;
    justify-content: center;
  }

  .hero-copy {
    width: 100%;
    padding: 76px 0 0;
    text-align: center;
  }

  .hero h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.05;
  }

  .hero p {
    max-width: 320px;
    margin: 24px auto 20px;
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 12px;
    width: min(320px, 100%);
    margin: 0 auto 28px;
    text-align: left;
  }

  .hero-pills span {
    font-size: 14px;
    white-space: nowrap;
  }

  .hero-actions {
    display: grid;
    width: min(286px, 100%);
    margin-inline: auto;
    gap: 10px;
  }

  .hero-actions .btn,
  .final-cta .btn {
    width: 100%;
  }

  .hero small {
    display: block;
    max-width: 290px;
    margin: 12px auto 0;
    color: #d6ded9;
    line-height: 1.5;
  }

  .stats-panel,
  .pricing-grid,
  .review-grid,
  .steps-grid,
  .faq-grid,
  .final-cta,
  .site-footer,
  .copyright {
    grid-template-columns: 1fr;
  }

  .stats-panel,
  .section-panel,
  .faq,
  .referral,
  .final-cta,
  .site-footer,
  .copyright {
    width: calc(100% - 32px);
  }

  .stats-panel {
    margin-top: 18px;
  }

  .stats-panel article {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    min-height: 104px;
    justify-content: stretch;
    padding: 20px 56px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-panel article > div {
    min-width: 0;
    text-align: left;
  }

  .stats-panel strong {
    font-size: 24px;
  }

  .icon {
    width: 52px;
    height: 52px;
    justify-self: center;
  }

  .stats-panel article:last-child {
    border-bottom: 0;
  }

  .devices-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
  }

  .device-panel .section-title h2 {
    max-width: 300px;
    margin: 0 auto;
    font-size: 28px;
    line-height: 1.12;
  }

  .section-title h2,
  .referral h2 {
    font-size: 26px;
    line-height: 1.2;
  }

  .devices-grid article {
    min-height: 126px;
  }

  .device-icon {
    width: 56px;
    height: 56px;
  }

  .section-panel {
    margin-top: 24px;
    padding: 28px 18px;
  }

  .pricing {
    padding-inline: 0;
  }

  .pricing .section-title {
    margin-bottom: 26px;
  }

  .pricing .section-title h2 {
    max-width: 300px;
    margin: 0 auto;
    font-size: 28px;
    line-height: 1.2;
  }

  .plan-card {
    padding: 34px 26px 22px;
  }

  .mobile-badge {
    display: block;
  }

  .plan-card:first-child {
    border-color: rgba(23, 200, 91, 0.95);
    box-shadow: 0 22px 70px rgba(23, 200, 91, 0.18);
  }

  .plan-card.featured {
    border-color: var(--line);
    box-shadow: var(--shadow);
  }

  .plan-card.featured .badge {
    display: none;
  }

  .plan-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .price {
    font-size: 42px;
  }

  .plan-card > small {
    margin-bottom: 26px;
  }

  .plan-card ul {
    width: fit-content;
    max-width: 100%;
    min-height: auto;
    margin-inline: auto;
    margin-bottom: 24px;
    gap: 10px;
  }

  .plan-card li {
    padding-left: 25px;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.35;
  }

  .payment-note {
    display: grid;
    gap: 8px;
    justify-content: center;
    text-align: center;
    font-size: 14px;
  }

  .reviews .section-title h2 {
    max-width: 260px;
    margin: 0 auto;
    font-size: 28px;
    line-height: 1.2;
  }

  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .review-grid figure {
    padding: 14px;
  }

  .review-grid blockquote {
    min-height: 92px;
    font-size: 10px;
  }

  .review-grid figcaption {
    grid-template-columns: 34px 1fr;
  }

  .review-grid figcaption span {
    width: 34px;
    height: 34px;
    font-size: 10px;
  }

  .review-grid figcaption strong,
  .review-grid figcaption small {
    font-size: 10px;
  }

  .steps {
    padding: 24px 12px 22px;
  }

  .steps .section-title {
    margin-bottom: 22px;
  }

  .steps .section-title h2 {
    max-width: 240px;
    margin: 0 auto;
    font-size: 23px;
    line-height: 1.15;
  }

  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .steps-grid article {
    position: relative;
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: start;
    gap: 7px;
    text-align: center;
  }

  .steps-grid article:not(:last-child)::after {
    display: none;
  }

  .step-icon {
    width: 64px;
    height: 64px;
    padding: 15px;
  }

  .steps-grid b {
    left: calc(50% + 14px);
    top: -3px;
    width: 22px;
    height: 22px;
    font-size: 12px;
  }

  .steps-grid strong {
    min-height: 28px;
    margin: 0;
    font-size: 9px;
    line-height: 1.25;
  }

  .steps-grid small {
    max-width: 92px;
    font-size: 8px;
    line-height: 1.45;
  }

  .referral {
    grid-template-columns: 54px 1fr 54px;
    gap: 12px;
    padding: 20px 18px;
    text-align: center;
  }

  .ref-icon,
  .gift-icon {
    width: 54px;
    height: 54px;
    padding: 11px;
    margin: 0 auto;
  }

  .ref-icon {
    grid-column: 1;
    grid-row: 1;
  }

  .referral h2 {
    grid-column: 2;
    grid-row: 1;
    font-size: 24px;
    line-height: 1.18;
  }

  .referral p {
    grid-column: 1 / -1;
    max-width: 260px;
    margin: 2px auto 0;
    font-size: 15px;
  }

  .referral p,
  .referral .btn,
  .gift-icon {
    grid-column: auto;
  }

  .referral p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .gift-icon {
    grid-column: 3;
    grid-row: 1;
  }

  .referral .btn {
    grid-column: 1 / -1;
    grid-row: 3;
    width: min(260px, 100%);
    min-height: 44px;
    margin: 0 auto;
    padding: 0 18px;
    font-size: 13px;
  }

  .final-cta {
    min-height: 430px;
    padding: 54px 28px;
    text-align: center;
    background:
      radial-gradient(ellipse at 18% 38%, rgba(0, 200, 83, 0.72), transparent 48%),
      radial-gradient(ellipse at 88% 42%, rgba(229, 57, 53, 0.76), transparent 50%),
      linear-gradient(126deg, transparent 6%, rgba(255, 255, 255, 0.26) 44%, rgba(255, 255, 255, 0.08) 53%, transparent 70%),
      linear-gradient(155deg, rgba(0, 200, 83, 0.38) 0%, rgba(13, 13, 13, 0.78) 42%, rgba(229, 57, 53, 0.42) 100%),
      #0d0d0d;
  }

  .final-cta h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .final-cta p {
    margin-inline: auto;
    font-size: 16px;
    line-height: 1.65;
  }

  .final-cta .btn {
    width: min(280px, 100%);
    margin: 18px auto 0;
  }

  .site-footer {
    gap: 36px;
    padding-top: 30px;
    text-align: center;
  }

  .site-footer .brand {
    justify-content: center;
  }

  .site-footer p {
    max-width: 270px;
    margin-inline: auto;
  }

  .socials {
    justify-content: center;
  }

  .site-footer > div:not(:first-child) {
    justify-items: start;
    width: min(260px, 100%);
    margin: 0 auto;
    text-align: left;
  }

  .copyright {
    display: grid;
    text-align: center;
  }

  .page-main {
    width: calc(100% - 32px);
    padding: 48px 0 32px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .page-grid,
  .page-faq .faq-grid {
    grid-template-columns: 1fr;
  }

  .pricing-cards-page {
    grid-template-columns: 1fr;
  }

  .pricing-table-section,
  .seo-copy {
    margin-top: 18px;
  }

  .page-card,
  .page-panel {
    padding: 22px;
  }

  .article-page {
    width: calc(100% - 32px);
    padding: 42px 0;
  }

  .seo-article {
    width: calc(100% - 32px);
  }

  .article-page article {
    padding: 24px;
  }

  .article-page h1 {
    font-size: 34px;
  }

  .article-lead {
    font-size: 17px;
  }

  .article-page h2 {
    font-size: 23px;
  }

  .article-page p,
  .article-page li {
    font-size: 16px;
  }

  .article-cta .btn {
    width: 100%;
    padding-inline: 18px;
  }

  .toc-box,
  .related-posts,
  .faq-section {
    padding: 20px;
  }

  .article-featured,
  .article-figure {
    margin: 24px 0;
  }
}


.seo-content-band,
.authority-links,
.faq-seo-section {
  width: min(1320px, calc(100% - 48px));
  margin: 48px auto;
  padding: 32px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.seo-content-band h2,
.authority-links h2,
.faq-seo-section h2 {
  margin-top: 0;
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.2;
}

.seo-content-band a,
.authority-links a,
.page-card a:not(.btn) {
  color: var(--green);
  font-weight: 700;
}

.not-found {
  min-height: 420px;
}

@media (max-width: 700px) {
  .seo-content-band,
  .authority-links,
  .faq-seo-section {
    width: min(100% - 28px, 520px);
    margin: 28px auto;
    padding: 22px;
  }
}
