:root {
  --ink: #102529;
  --muted: #53676a;
  --paper: #fcfaf5;
  --soft: #ecf4f1;
  --soft-2: #f7eee5;
  --line: #d4e1dc;
  --brand: #0e6d72;
  --brand-dark: #092f35;
  --brand-strong: #083f45;
  --accent: #ec6b4a;
  --accent-2: #f2b84b;
  --mint: #9ed8c2;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(11, 35, 39, 0.14);
  --shadow-soft: 0 12px 32px rgba(11, 35, 39, 0.07);
  --radius: 18px;
  --radius-sm: 12px;
  --shell: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 124px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

::selection {
  color: var(--white);
  background: var(--brand);
}

button,
input,
textarea {
  font: inherit;
}

.shell {
  width: min(100% - 48px, var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 15;
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.compact,
.site-header.is-scrolled {
  background: rgba(252, 250, 245, 0.94);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(12, 32, 35, 0.08);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--accent));
  font-size: 0.86rem;
  letter-spacing: 0;
  box-shadow: 0 12px 28px rgba(12, 86, 90, 0.22);
}

.brand-name {
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}

.nav-menu {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.compact .nav-menu,
.is-scrolled .nav-menu {
  background: var(--white);
  border-color: var(--line);
}

.nav-menu a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 650;
  color: currentColor;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a[aria-current="page"] {
  background: rgba(14, 109, 114, 0.12);
  outline: none;
}

.nav-action,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 750;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.nav-action {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(236, 107, 74, 0.22);
}

.nav-action:hover,
.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(236, 107, 74, 0.25);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.button.light {
  color: var(--brand-dark);
  background: var(--white);
  border-color: var(--white);
}

.button.outline,
.button.plan-button {
  color: var(--brand-dark);
  border-color: var(--brand);
  background: transparent;
}

.price-card.featured .button.plan-button {
  color: var(--white);
  background: var(--brand);
  border-color: var(--brand);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid currentColor;
  border-radius: var(--radius-sm);
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--brand-dark);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 21, 24, 0.97) 0%, rgba(6, 21, 24, 0.84) 42%, rgba(6, 21, 24, 0.3) 76%),
    linear-gradient(0deg, rgba(6, 21, 24, 0.88) 0%, rgba(6, 21, 24, 0.08) 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 164px 0 58px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero h1 {
  margin: 0;
  max-width: 670px;
  font-size: clamp(3.8rem, 6vw, 5.3rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.hero-copy {
  margin: 24px 0 0;
  max-width: 610px;
  font-size: 1.28rem;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 670px);
  margin: 68px 0 0;
}

.hero-stats div {
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.hero-stats dt {
  margin: 0;
  font-size: 1.62rem;
  line-height: 1;
  font-weight: 850;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.assurance-bar {
  color: var(--ink);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 26px 0;
}

.assurance-grid div {
  display: grid;
  gap: 6px;
  padding: 0 24px;
  border-right: 1px solid var(--line);
}

.assurance-grid div:first-child {
  padding-left: 0;
}

.assurance-grid div:last-child {
  padding-right: 0;
  border-right: 0;
}

.assurance-grid strong {
  color: var(--brand-dark);
  font-size: 0.97rem;
}

.assurance-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 96px 0;
}

.intro-band {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.intro-grid,
.feature-layout,
.faq-layout,
.contact-grid,
.setup-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: start;
}

.intro-grid h2,
.section-heading h2,
.setup-grid h2,
.faq-layout h2,
.contact-grid h2,
.page-hero h1,
.policy-page h1,
.not-found h1 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.intro-copy,
.intro-grid p:last-child,
.section-heading p,
.contact-grid p,
.page-hero p,
.guide-note p,
.policy-page p,
.not-found p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-copy {
  display: grid;
  gap: 16px;
}

.intro-copy p {
  margin: 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.section-heading p {
  margin-top: 16px;
}

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

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

.price-card,
.device-tile,
.feature-list article,
.contact-card,
.guide-note,
.guide-step,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.price-card {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.price-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: rgba(14, 109, 114, 0.22);
}

.price-card:hover {
  border-color: rgba(14, 109, 114, 0.3);
  box-shadow: 0 22px 46px rgba(11, 35, 39, 0.11);
  transform: translateY(-5px);
}

.price-card.featured {
  border-color: rgba(14, 109, 114, 0.38);
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}

.price-card.featured::before {
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.price-card.featured:hover {
  transform: translateY(-14px);
}

.plan-name {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0;
  font-size: 1.8rem;
  letter-spacing: 0;
}

.price {
  margin: 16px 0 22px;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 900;
}

.tier-card {
  min-height: 562px;
  padding: 24px 20px 20px;
}

.tier-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.tier-heading .plan-name {
  margin: 0;
}

.tier-badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: var(--soft);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tier-badge.adult {
  color: #8d2a27;
  background: #ffe5df;
}

.tier-badge.quality {
  color: var(--white);
  background: var(--brand);
}

.tier-card h3 {
  min-height: 60px;
  font-size: 1.44rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.tier-note {
  min-height: 22px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
}

.catalog-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  margin-bottom: 20px;
  padding: 14px 8px;
  border-radius: var(--radius-sm);
  background: var(--soft);
}

.catalog-stats span {
  display: grid;
  gap: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.catalog-stats strong {
  color: var(--brand-dark);
  font-size: 1rem;
  line-height: 1.1;
}

.term-prices {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.term-prices div {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
}

.term-prices strong {
  color: var(--ink);
  font-size: 1.2rem;
}

.term-prices .best-term {
  border-color: rgba(14, 109, 114, 0.38);
  color: var(--brand-dark);
  background: var(--soft);
}

.tier-card.premium {
  background: linear-gradient(180deg, #ffffff, #f1f8f5);
}

.tier-card.ultra::before {
  background: linear-gradient(90deg, #082e34, var(--brand), var(--accent-2));
}

.adult-notice {
  max-width: 930px;
  margin: 40px auto 0;
  padding: 15px 20px;
  border: 1px solid #f1d7cc;
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: #fff8f5;
  font-size: 0.94rem;
}

.adult-notice strong {
  color: var(--ink);
}

.reseller-prompt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding: 28px 32px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(120deg, var(--brand-dark), var(--brand));
}

.reseller-prompt .section-kicker {
  margin-bottom: 8px;
}

.reseller-prompt h3 {
  margin: 0 0 6px;
  font-size: 1.5rem;
}

.reseller-prompt p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.price-card ul,
.contact-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.price-card li,
.contact-card li {
  position: relative;
  padding-left: 24px;
}

.price-card li::before,
.contact-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.plan-button {
  margin-top: auto;
}

.feature-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(9, 47, 53, 0.98), rgba(14, 109, 114, 0.94)),
    var(--brand-dark);
}

.feature-band .section-heading p,
.feature-band .feature-list p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article {
  min-height: 148px;
  padding: 22px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  transition: background 180ms ease, border-color 180ms ease;
}

.feature-list article:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-2);
  font-weight: 850;
}

.feature-list h3,
.device-tile h3,
.contact-card h2,
.guide-note h2,
.guide-step h2 {
  margin: 0 0 10px;
  font-size: 1.24rem;
  letter-spacing: 0;
}

.feature-list p,
.device-tile p,
.contact-card p,
.guide-step p {
  margin: 0;
  color: var(--muted);
}

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

.device-tile {
  min-height: 224px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease;
}

.device-tile:hover {
  border-color: rgba(14, 109, 114, 0.3);
  transform: translateY(-3px);
}

.device-tile span {
  display: inline-grid;
  min-width: 54px;
  min-height: 38px;
  place-items: center;
  margin-bottom: 24px;
  padding: 0 10px;
  border-radius: var(--radius);
  color: var(--brand-dark);
  background: var(--soft);
  font-size: 0.78rem;
  font-weight: 900;
}

.device-guide-section {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

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

.device-guide-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.device-guide-card:hover,
.device-guide-card:focus-visible {
  border-color: rgba(14, 109, 114, 0.34);
  box-shadow: 0 18px 38px rgba(11, 35, 39, 0.11);
  transform: translateY(-4px);
  outline: none;
}

.device-guide-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.device-guide-body {
  display: grid;
  align-content: start;
  gap: 10px;
  flex: 1;
  padding: 22px;
}

.device-guide-body .section-kicker {
  margin-bottom: 0;
}

.device-guide-body h3 {
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.2;
}

.device-guide-body p {
  margin: 0;
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
  color: var(--brand);
  font-weight: 800;
}

.card-link::after {
  content: ">";
  margin-left: 8px;
}

.setup-strip {
  background: var(--soft-2);
  border-top: 1px solid #eadccc;
  border-bottom: 1px solid #eadccc;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 58px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.steps span,
.guide-step span {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--brand);
  color: var(--white);
  font-weight: 850;
}

.text-link {
  align-self: end;
  justify-self: start;
  color: var(--brand);
  font-weight: 850;
  border-bottom: 2px solid var(--brand);
}

.seo-hub {
  background: var(--white);
}

.content-toc {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 38px;
}

.content-toc a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--brand-dark);
  background: var(--soft);
  font-weight: 800;
  text-align: center;
}

.content-toc a:hover,
.content-toc a:focus-visible {
  color: var(--white);
  background: var(--brand);
  outline: none;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 38px;
  align-items: start;
}

.seo-article {
  display: grid;
  gap: 34px;
}

.seo-article section {
  scroll-margin-top: 104px;
}

.seo-article h3 {
  margin: 0 0 16px;
  font-size: 2rem;
  line-height: 1.14;
  letter-spacing: 0;
}

.seo-article p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

.seo-article p:last-child {
  margin-bottom: 0;
}

.seo-article a:not(.button),
.resource-grid a strong {
  color: var(--brand);
}

.content-image {
  margin: 8px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.content-image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.content-image figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.resource-grid a {
  min-height: 132px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.resource-grid a:hover,
.resource-grid a:focus-visible {
  border-color: rgba(14, 109, 114, 0.42);
  box-shadow: 0 10px 24px rgba(16, 33, 37, 0.08);
  outline: none;
}

.resource-grid span {
  color: var(--muted);
}

.seo-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
}

.sidebar-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.sidebar-card.trust-card {
  border-color: rgba(14, 109, 114, 0.24);
  background: linear-gradient(145deg, #ecf5f2, #fcfaf5);
}

.sidebar-card h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

.sidebar-card p {
  margin: 0;
  color: var(--muted);
}

.sidebar-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.sidebar-card .button {
  width: 100%;
  margin-top: 18px;
}

.faq-section {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  cursor: pointer;
  font-weight: 800;
}

.faq-list summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--white);
  background: var(--brand);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-panel {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(9, 47, 53, 0.98), rgba(14, 109, 114, 0.9)),
    var(--brand-dark);
}

.contact-panel .contact-grid {
  align-items: center;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer {
  padding: 54px 0 26px;
  color: rgba(255, 255, 255, 0.78);
  background: #081b1f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  color: var(--white);
}

.footer-grid p {
  max-width: 520px;
  margin: 16px 0 0;
}

.footer-grid nav {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 10px 26px;
}

.footer-grid a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  font-size: 0.92rem;
}

.footer-bottom p {
  margin: 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 156px 0 76px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(9, 47, 53, 0.98), rgba(14, 109, 114, 0.84)),
    var(--brand-dark);
}

.page-hero::after {
  position: absolute;
  top: -160px;
  right: -100px;
  width: 500px;
  height: 500px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(158, 216, 194, 0.18), transparent 66%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.page-hero-inner > p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.page-hero-actions .button.secondary {
  color: var(--white);
}

.reseller-hero .page-hero-inner {
  max-width: 900px;
}

.reseller-overview {
  background: var(--paper);
}

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

.partner-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.partner-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--brand);
  font-weight: 850;
}

.partner-card h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.partner-card p {
  margin: 0;
  color: var(--muted);
}

.reseller-pricing-section {
  border-block: 1px solid #eadccc;
  background: var(--soft-2);
}

.reseller-pricing-layout,
.standards-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 56px;
}

.reseller-pricing-layout h2,
.standards-layout h2 {
  margin: 0 0 16px;
  font-size: 2.8rem;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.reseller-pricing-layout > div:first-child > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.reseller-pricing-placeholder {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.reseller-pricing-placeholder .status-label {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: var(--soft);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reseller-pricing-placeholder h3 {
  margin: 0 0 10px;
  font-size: 1.55rem;
}

.reseller-pricing-placeholder > p:not(.status-label) {
  margin: 0 0 24px;
  color: var(--muted);
}

.reseller-standards {
  background: var(--white);
}

.standards-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.standards-list li {
  position: relative;
  padding: 18px 18px 18px 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: var(--paper);
}

.standards-list li::before {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 12px;
  height: 12px;
  content: "";
  border-radius: 50%;
  background: var(--brand);
}

.guide-hero {
  padding-bottom: 72px;
}

.guide-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(380px, 1fr);
  align-items: center;
  gap: 52px;
}

.guide-hero-copy h1 {
  font-size: clamp(2.85rem, 4vw, 3.7rem);
}

.guide-hero-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.guide-hero-image {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.guide-hero-image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

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

.guide-fact {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.guide-fact strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guide-fact p {
  margin: 0;
  color: var(--muted);
}

.guide-details {
  background: var(--soft-2);
  border-block: 1px solid #eadccc;
}

.guide-related {
  background: var(--white);
}

.guide-disclaimer {
  margin: 34px 0 0;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
}

.guide-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 28px;
  align-items: start;
}

.guide-note {
  position: sticky;
  top: 104px;
  padding: 24px;
}

.guide-note .button {
  width: 100%;
  margin-top: 24px;
}

.guide-content {
  display: grid;
  gap: 16px;
}

.guide-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px 18px;
  padding: 24px;
}

.guide-step p {
  grid-column: 2;
}

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

.contact-card {
  min-height: 300px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.contact-card .button {
  margin-top: 24px;
}

.contact-card.primary-card {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(145deg, var(--brand-dark), var(--brand));
}

.contact-card.primary-card p {
  color: rgba(255, 255, 255, 0.76);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  font-weight: 650;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.policy-main {
  padding: 132px 0 86px;
}

.policy-page {
  max-width: 820px;
}

.policy-page .breadcrumbs {
  color: var(--muted);
}

.policy-page .breadcrumbs a:hover {
  color: var(--brand);
}

.policy-page h1 {
  margin-bottom: 10px;
}

.policy-date {
  margin-bottom: 42px;
}

.policy-page h2 {
  margin: 32px 0 10px;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.policy-page a {
  color: var(--brand);
  font-weight: 750;
}

.not-found {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 80px 0;
}

@media (max-width: 1160px) and (min-width: 981px) {
  .pricing-grid.tier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tier-card.featured,
  .tier-card.featured:hover {
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav {
    min-height: 70px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    inset: 70px 16px auto;
    display: none;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border-radius: var(--radius);
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    border-radius: var(--radius);
  }

  .nav-action {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero h1 {
    font-size: 4.1rem;
  }

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

  .assurance-grid div:nth-child(2) {
    padding-right: 0;
    border-right: 0;
  }

  .assurance-grid div:nth-child(3) {
    padding-left: 0;
  }

  .intro-grid,
  .feature-layout,
  .faq-layout,
  .contact-grid,
  .setup-grid,
  .guide-layout,
  .article-layout,
  .guide-hero-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .content-toc {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid,
  .contact-page-grid,
  .partner-grid,
  .device-guide-grid,
  .guide-facts {
    grid-template-columns: 1fr;
  }

  .guide-hero-image {
    max-width: 720px;
  }

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

  .price-card.featured,
  .price-card.featured:hover {
    transform: none;
  }

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

  .guide-note {
    position: static;
  }

  .seo-sidebar {
    position: static;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .reseller-prompt {
    align-items: start;
    flex-direction: column;
  }

  .reseller-pricing-layout,
  .standards-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, var(--shell));
  }

  .hero {
    min-height: 650px;
  }

  .hero-media img {
    object-position: 66% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 21, 24, 0.96) 0%, rgba(6, 21, 24, 0.82) 54%, rgba(6, 21, 24, 0.42) 100%),
      linear-gradient(0deg, rgba(6, 21, 24, 0.84) 0%, rgba(6, 21, 24, 0.1) 58%);
  }

  .hero-content {
    padding: 104px 0 30px;
  }

  .hero h1,
  .intro-grid h2,
  .section-heading h2,
  .setup-grid h2,
  .faq-layout h2,
  .contact-grid h2,
  .page-hero h1,
  .policy-page h1,
  .not-found h1 {
    font-size: 2.45rem;
    line-height: 1.08;
  }

  .hero-copy {
    font-size: 1.06rem;
    margin-top: 16px;
  }

  .hero-actions,
  .page-hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 28px;
  }

  .hero-stats div {
    min-height: 78px;
    padding: 12px;
  }

  .hero-stats dt {
    font-size: 1.35rem;
  }

  .hero-stats dd {
    margin-top: 6px;
    font-size: 0.82rem;
    line-height: 1.2;
  }

  .section {
    padding: 64px 0;
  }

  .assurance-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px 0;
  }

  .assurance-grid div,
  .assurance-grid div:first-child,
  .assurance-grid div:nth-child(3),
  .assurance-grid div:last-child {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .assurance-grid div:last-child {
    border-bottom: 0;
  }

  .pricing-grid,
  .device-grid,
  .content-toc,
  .resource-grid {
    grid-template-columns: 1fr;
  }

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

  .seo-article h3 {
    font-size: 1.65rem;
  }

  .price-card,
  .device-tile,
  .contact-card,
  .guide-note,
  .guide-step {
    padding: 20px;
  }

  .tier-card {
    min-height: auto;
  }

  .contact-card {
    min-height: auto;
  }

  .reseller-prompt,
  .reseller-pricing-placeholder,
  .partner-card,
  .device-guide-body,
  .guide-fact {
    padding: 20px;
  }

  .reseller-pricing-layout h2,
  .standards-layout h2 {
    font-size: 2.45rem;
  }

  .setup-grid {
    gap: 24px;
  }

  .guide-step {
    grid-template-columns: 1fr;
  }

  .guide-step p {
    grid-column: auto;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer-grid nav {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 124px 0 58px;
  }

  .policy-main {
    padding: 112px 0 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
}

/* ============================================================
   StreamFlex 2026 expansion — promo bar, World Cup, sports,
   channels, free trial, reviews/trust signals
   ============================================================ */

.promo-banner {
  position: fixed;
  inset: 0 0 auto;
  z-index: 18;
  color: var(--white);
  background: linear-gradient(90deg, var(--accent), #d8492c 60%, var(--brand));
  font-size: 0.92rem;
}

.promo-banner .shell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 44px;
  padding: 7px 0;
  text-align: center;
  flex-wrap: nowrap;
}

/* When a promo bar is present, drop the fixed header just below it */
body.has-promo .site-header {
  top: 44px;
}

.promo-banner strong {
  font-weight: 850;
  letter-spacing: 0.01em;
}

.promo-banner a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-weight: 800;
}

.promo-banner a:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Hero trial chip */
.hero-trial {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(158, 216, 194, 0.5);
  background: rgba(158, 216, 194, 0.14);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-trial b {
  color: var(--accent-2);
}

/* World Cup band */
.worldcup-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(242, 184, 75, 0.22), transparent 52%),
    linear-gradient(135deg, #06181b, #0b3b41 64%, #0e6d72);
}

.worldcup-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.worldcup-band h2 {
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.worldcup-band p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.worldcup-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(242, 184, 75, 0.16);
  border: 1px solid rgba(242, 184, 75, 0.5);
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: min(100%, 440px);
  margin: 26px 0 30px;
}

.countdown div {
  padding: 16px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  text-align: center;
}

.countdown b {
  display: block;
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  color: var(--white);
}

.countdown span {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

.worldcup-card {
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.worldcup-card h3 {
  margin: 0 0 16px;
  font-size: 1.3rem;
}

.worldcup-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.worldcup-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.84);
}

.worldcup-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-2);
  font-weight: 900;
}

.worldcup-card .button {
  width: 100%;
}

/* Sports / content showcase */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.sport-tile {
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease;
}

.sport-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 109, 114, 0.3);
}

.sport-tile strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.12rem;
  color: var(--brand-dark);
}

.sport-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Channel name chips */
.channel-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.channel-chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--brand-dark);
  font-size: 0.9rem;
  font-weight: 750;
}

/* Free trial band */
.trial-band {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 50%, rgba(242, 184, 75, 0.18), transparent 46%),
    linear-gradient(120deg, var(--brand-dark), var(--brand));
}

.trial-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

.trial-layout h2 {
  margin: 0 0 14px;
  font-size: clamp(2.1rem, 3.4vw, 2.9rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.trial-layout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.trial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

/* Reviews / trust */
.reviews-section {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 28px;
  margin-bottom: 40px;
  text-align: center;
}

.trust-strip .stars {
  color: var(--accent-2);
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.trust-strip strong {
  color: var(--brand-dark);
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.review-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.review-card .stars {
  color: var(--accent-2);
  font-size: 1.05rem;
  letter-spacing: 2px;
}

.review-card p {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
}

.review-card .reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.review-card .reviewer b {
  color: var(--brand-dark);
}

.review-avatar {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--accent));
  font-weight: 850;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .worldcup-layout,
  .trial-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .trial-actions {
    justify-content: flex-start;
  }

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

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

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

  .countdown {
    gap: 8px;
  }

  .countdown div {
    padding: 12px 4px;
  }

  .countdown b {
    font-size: 1.5rem;
  }

  .trial-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* ---- Promo bar responsive offsets (keeps the menu fully clear) ---- */
@media (max-width: 980px) {
  body.has-promo .nav-menu {
    top: 114px;
  }
}

@media (max-width: 680px) {
  .promo-banner {
    font-size: 0.82rem;
  }
  .promo-banner .shell {
    gap: 10px;
  }
  .promo-banner .shell span {
    display: none;
  }
  body.has-promo .hero-content {
    padding-top: 140px;
  }
  body.has-promo .page-hero {
    padding-top: 150px;
  }
  body.has-promo .nav-menu {
    top: 110px;
  }
}

/* Multi-device / connections callout */
.device-options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding: 26px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #ecf5f2, #fcfaf5);
  box-shadow: var(--shadow-soft);
}

.device-options .section-kicker {
  margin-bottom: 6px;
}

.device-options h3 {
  margin: 0 0 6px;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
}

.device-options p {
  margin: 0;
  max-width: 540px;
  color: var(--muted);
}

.device-options-pick {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.device-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--brand);
  color: var(--brand-dark);
  background: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
}

.device-options-pick .button {
  width: 100%;
  margin-top: 4px;
}

@media (max-width: 680px) {
  .device-options {
    padding: 22px 20px;
  }
}

/* ---- Internationalization: language switcher + RTL ---- */
.lang-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--brand-dark);
  font-size: 0.85rem;
  font-weight: 750;
}

.lang-switch a:hover,
.lang-switch a[aria-current="true"] {
  color: var(--white);
  background: var(--brand);
  border-color: var(--brand);
}

.region-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
}

.region-cloud a {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--brand-dark);
  font-size: 0.9rem;
  font-weight: 750;
}

.region-cloud a:hover {
  color: var(--white);
  background: var(--brand);
  border-color: var(--brand);
}

/* Right-to-left (Arabic) */
[dir="rtl"] body,
body[dir="rtl"] {
  direction: rtl;
}

[dir="rtl"] .breadcrumbs,
[dir="rtl"] .hero-actions,
[dir="rtl"] .page-hero-actions,
[dir="rtl"] .lang-switch,
[dir="rtl"] .channel-cloud {
  flex-direction: row-reverse;
}

[dir="rtl"] .nav-action,
[dir="rtl"] .price-card li,
[dir="rtl"] .worldcup-card li {
  text-align: right;
}

[dir="rtl"] .price-card li,
[dir="rtl"] .worldcup-card li {
  padding-left: 0;
  padding-right: 24px;
}

[dir="rtl"] .price-card li::before {
  left: auto;
  right: 0;
}

[dir="rtl"] .worldcup-card li::before {
  left: auto;
  right: 0;
}

/* Long-form SEO content block (country/language pages) */
.longform { background: var(--white); }
.longform .shell { max-width: 860px; }
.longform h2 { margin: 34px 0 12px; font-size: 1.9rem; line-height: 1.12; letter-spacing: -0.03em; }
.longform h2:first-of-type { margin-top: 0; }
.longform h3 { margin: 26px 0 10px; font-size: 1.3rem; letter-spacing: 0; }
.longform p { margin: 0 0 16px; color: var(--muted); font-size: 1.05rem; }
.longform a:not(.button) { color: var(--brand); font-weight: 650; }
.longform ul { margin: 0 0 16px; padding-left: 22px; color: var(--muted); }
.longform li { margin-bottom: 8px; }
[dir="rtl"] .longform ul { padding-left: 0; padding-right: 22px; }

/* ---- 18+ age gate (adult page only) ---- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(6, 21, 24, 0.92);
  backdrop-filter: blur(8px);
}
.age-gate-card {
  width: min(100%, 460px);
  padding: 34px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow);
}
.age-gate-badge {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 999px;
  color: var(--white);
  background: #8d2a27;
  font-weight: 900;
  font-size: 1.2rem;
}
.age-gate-card h2 { margin: 0 0 10px; font-size: 1.5rem; letter-spacing: 0; }
.age-gate-card p { margin: 0 0 22px; color: var(--muted); font-size: 0.98rem; }
.age-gate-actions { display: grid; gap: 10px; }
.age-gate-actions .button { width: 100%; }
.age-gate-fine { margin: 18px 0 0; font-size: 0.78rem; color: var(--muted); }

.adult-hero { background: linear-gradient(135deg, #2a0f10, #6a1f1c 60%, var(--brand-dark)); }
.tier-badge.adult-lg {
  display: inline-flex; min-height: 30px; align-items: center; padding: 0 14px;
  border-radius: 999px; color: #ffd9d2; background: rgba(141,42,39,0.5);
  border: 1px solid rgba(255,150,140,0.4); font-size: 0.8rem; font-weight: 850;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.adult-tier-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.adult-tier { padding: 26px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft); }
.adult-tier h3 { margin: 0 0 6px; font-size: 1.3rem; }
.adult-tier .big { font-size: 2rem; font-weight: 900; color: var(--brand-dark); margin: 8px 0 2px; }
.adult-tier .big-sub { color: var(--muted); font-size: 0.88rem; margin-bottom: 14px; }
.adult-tier ul { margin: 0; padding-left: 20px; color: var(--muted); display: grid; gap: 8px; font-size: 0.95rem; }
@media (max-width: 780px){ .adult-tier-grid { grid-template-columns: 1fr; } }

/* ---- Taller, more visible adult hero (image-forward) ---- */
.adult-hero {
  min-height: 640px;
  display: flex;
  align-items: center;
  padding-top: 132px;
  padding-bottom: 64px;
}
.adult-hero .hero-media img {
  object-position: center 16%;
}
/* lighter overlay: dark behind left text, image revealed on the right */
.adult-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(6,21,24,0.92) 0%, rgba(6,21,24,0.66) 34%, rgba(6,21,24,0.18) 70%, rgba(6,21,24,0) 100%),
    linear-gradient(0deg, rgba(6,21,24,0.6) 0%, rgba(6,21,24,0) 42%);
}
.adult-hero .page-hero-inner { position: relative; z-index: 1; }

@media (max-width: 980px) {
  .adult-hero { min-height: 560px; }
}
@media (max-width: 680px) {
  .adult-hero {
    min-height: 600px;
    padding-top: 124px;
    align-items: flex-start;
  }
  /* phone: text spans full width at top, so darken top, reveal image lower */
  .adult-hero .hero-overlay {
    background: linear-gradient(180deg, rgba(6,21,24,0.92) 0%, rgba(6,21,24,0.72) 30%, rgba(6,21,24,0.34) 64%, rgba(6,21,24,0.12) 100%);
  }
  .adult-hero .hero-media img { object-position: center 14%; }
}
