/**
 * IPTV Fast: light theme, UK palette (navy, red accents, clean whites)
 */

:root {
  --uk-navy: #012169;
  --uk-navy-soft: #0f2f6b;
  --uk-red: #c8102e;
  --uk-red-hover: #a50d26;
  --bg-page: #f4f6f9;
  --bg-white: #ffffff;
  --text-primary: #1c2333;
  --text-muted: #5c6578;
  --border: #e2e8f0;
  --shadow: 0 1px 3px rgba(1, 33, 105, 0.08);
  --header-h: 4.25rem;
  --radius: 10px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-page);
  overflow-x: hidden;
}

a {
  color: var(--uk-navy-soft);
  text-decoration: none;
}

a:hover {
  color: var(--uk-red);
}

img {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  z-index: 2000;
  background: var(--uk-navy);
  color: #fff;
  border-radius: 8px;
  outline: 2px solid var(--uk-red);
}

/* --- Site shell --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--uk-navy);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.brand:hover {
  color: var(--uk-navy);
}

.brand__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--uk-navy) 0%, var(--uk-navy-soft) 100%);
  border-radius: var(--radius);
  color: #fff;
}

.brand__icon svg,
.brand__icon .brand-icon-svg {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
}


.brand__text span {
  color: var(--uk-red);
}

/* Nav desktop */
.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__link {
  display: block;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: background 0.15s, color 0.15s;
}

.nav__link:hover,
.nav__link[aria-current="page"] {
  background: rgba(1, 33, 105, 0.08);
  color: var(--uk-navy);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--uk-navy);
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: transform 0.2s;
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s;
}

.nav-toggle__bar::before {
  top: -6px;
}

.nav-toggle__bar::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 0.75rem 1.25rem 1rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.2s ease, visibility 0.2s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav__link {
    padding: 0.75rem 1rem;
  }
}

/* --- Footer --- */
.site-footer {
  position: relative;
  margin-top: auto;
  overflow: hidden;
  background: linear-gradient(168deg, #0e2a6e 0%, var(--uk-navy) 42%, #061838 100%);
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.site-footer__remote {
  --remote-opacity: 0.22;
  color: rgba(255, 255, 255, var(--remote-opacity));
  transition: filter 0.35s ease;
}

.site-footer__remote .footer-remote-svg {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer__remote::before {
  content: "";
  position: absolute;
  inset: -35% -20% -15% -20%;
  background: radial-gradient(
    ellipse 75% 65% at 50% 65%,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.06) 45%,
    transparent 72%
  );
  z-index: -1;
  pointer-events: none;
  opacity: 0.85;
}

/* Corner remotes: softer ambient (less “neon”), clearer line art */
.site-footer__remote--deco::before {
  inset: -20% -12% -6% -12%;
  background: radial-gradient(
    ellipse 66% 56% at 50% 60%,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(255, 255, 255, 0.025) 52%,
    transparent 74%
  );
  opacity: 0.55;
}

.site-footer__remote--deco {
  --remote-opacity: 0.26;
  position: absolute;
  bottom: clamp(0.75rem, 5%, 2.25rem);
  width: clamp(100px, 11vw, 168px);
  max-width: min(42vw, 168px);
  overflow: visible;
  filter: drop-shadow(0 6px 22px rgba(0, 0, 0, 0.42)) brightness(1.02);
  transform-origin: 50% 92%;
}

.site-footer__remote--deco.site-footer__remote--left {
  left: clamp(0.5rem, 4vw, 3rem);
  transform: rotate(-11deg);
}

.site-footer__remote--deco.site-footer__remote--right {
  right: clamp(0.5rem, 4vw, 3rem);
  transform: rotate(11deg) scaleX(-1);
}

/* Tight gloss on upper “face”: reads like matte plastic + glass edge, not a spotlight */
.site-footer__remote--deco::after {
  content: "";
  position: absolute;
  left: 19%;
  right: 19%;
  top: 6%;
  height: 22%;
  border-radius: 12px;
  background: linear-gradient(
    122deg,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(235, 240, 250, 0.08) 44%,
    rgba(255, 255, 255, 0.02) 64%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: soft-light;
  opacity: 0.34;
}

.site-footer__remote--deco .footer-remote-svg {
  position: relative;
  z-index: 0;
}

.site-footer__contact-stack {
  min-width: 0;
}

/* Mobile-only remotes (hidden on tablet & up); deco pair shows on larger screens */
.site-footer__remote--mob-desc,
.site-footer__remote--mob-contact {
  display: none;
  position: relative;
  flex-shrink: 0;
}

.site-footer__remote--mob-desc {
  transform-origin: 50% 30%;
}

.site-footer__remote--mob-contact {
  transform-origin: 50% 20%;
}

.site-footer__desc-block {
  min-width: 0;
}

@media (max-width: 900px) {
  .site-footer__remote--deco {
    --remote-opacity: 0.22;
    width: clamp(88px, 18vw, 130px);
    max-width: 38vw;
    bottom: clamp(0.5rem, 3%, 1.75rem);
  }

  .site-footer__remote--deco.site-footer__remote--left {
    transform: rotate(-8deg);
    left: clamp(0.25rem, 2.5vw, 1.5rem);
  }

  .site-footer__remote--deco.site-footer__remote--right {
    transform: rotate(8deg) scaleX(-1);
    right: clamp(0.25rem, 2.5vw, 1.5rem);
  }
}

@media (max-width: 640px) {
  .site-footer__inner {
    padding-bottom: 2.5rem;
  }

  /* Same size for all mobile remotes */
  .site-footer {
    --footer-mob-remote-w: min(76px, 22vw);
    --footer-mob-remote-min: 64px;
    --footer-mob-remote-opacity: 0.16;
  }

  /* Bottom-corner remotes off: 2 remotes beside description + beside Contact (same size) */
  .site-footer__deco {
    display: none;
  }

  /* Remote as transparent layer *behind* the description text (not a row below) */
  .site-footer__desc-block {
    position: relative;
    margin-top: 0;
    padding: 0.2rem 0;
  }

  .site-footer__desc-block .site-footer__desc {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
  }

  .site-footer__remote--mob-desc {
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 0;
    width: var(--footer-mob-remote-w);
    min-width: var(--footer-mob-remote-min);
    margin: 0;
    overflow: visible;
    --remote-opacity: 0.09;
    color: rgba(255, 255, 255, var(--remote-opacity));
    transform: translateY(-50%) rotate(-4deg);
    filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.18)) brightness(1.02);
    pointer-events: none;
  }

  .site-footer__remote--mob-contact {
    display: block;
    width: var(--footer-mob-remote-w);
    min-width: var(--footer-mob-remote-min);
    overflow: visible;
    --remote-opacity: var(--footer-mob-remote-opacity);
    color: rgba(255, 255, 255, var(--remote-opacity));
    transform: rotate(-4deg);
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.28)) brightness(1.02);
  }

  /* Matched to desktop deco sheen (matte + soft highlight) */
  .site-footer__remote--mob-desc .footer-remote-svg,
  .site-footer__remote--mob-contact .footer-remote-svg {
    position: relative;
    z-index: 0;
  }

  .site-footer__remote--mob-desc::after,
  .site-footer__remote--mob-contact::after {
    content: "";
    position: absolute;
    left: 19%;
    right: 19%;
    top: 6%;
    height: 22%;
    border-radius: 12px;
    background: linear-gradient(
      122deg,
      rgba(255, 255, 255, 0.22) 0%,
      rgba(235, 240, 250, 0.08) 44%,
      rgba(255, 255, 255, 0.02) 64%,
      transparent 100%
    );
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: soft-light;
    opacity: 0.3;
  }

  .site-footer__remote--mob-desc::after {
    opacity: 0.26;
  }

  .site-footer__remote--mob-desc::before,
  .site-footer__remote--mob-contact::before {
    inset: -22% -12% -6% -12%;
    background: radial-gradient(
      ellipse 66% 56% at 50% 60%,
      rgba(255, 255, 255, 0.09) 0%,
      rgba(255, 255, 255, 0.025) 52%,
      transparent 74%
    );
  }

  .site-footer__remote--mob-desc::before {
    opacity: 0.22;
  }

  .site-footer__remote--mob-contact::before {
    opacity: 0.38;
  }

  .site-footer__col--contact {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.65rem;
  }

  .site-footer__col--contact .site-footer__contact-stack {
    flex: 1;
    min-width: 0;
  }

  .site-footer__col--contact .site-footer__heading {
    margin-top: 0;
  }
}

@media (max-width: 380px) {
  .site-footer {
    --footer-mob-remote-w: min(72px, 24vw);
    --footer-mob-remote-min: 58px;
    --footer-mob-remote-opacity: 0.15;
  }

  .site-footer__col--contact {
    gap: 0.5rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .site-footer__remote--deco {
    animation: footer-remote-breathe 16s ease-in-out infinite;
  }

  .site-footer__remote--deco.site-footer__remote--right {
    animation-delay: -8s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer__remote--deco {
    animation: none;
  }
}

@keyframes footer-remote-breathe {
  0%,
  100% {
    filter: drop-shadow(0 6px 22px rgba(0, 0, 0, 0.42)) brightness(1.02);
  }
  50% {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.34)) brightness(1.05);
  }
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Logo link: no underline; hover handled on .brand__icon */
.site-footer__col--brand > a.brand:hover,
.site-footer__col--brand > a.brand:focus-visible {
  text-decoration: none;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.25rem 2rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 2rem 2.5rem;
}

@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

.site-footer__col--brand .brand {
  margin-bottom: 0.75rem;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  gap: 0.65rem;
  color: #fff;
  transition: opacity 0.2s ease;
}

/* Match header: navy gradient tile + white mark; same dimensions as .site-header .brand */
.site-footer__col--brand .brand__icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(145deg, var(--uk-navy) 0%, var(--uk-navy-soft) 100%);
  border: none;
  border-radius: var(--radius);
  color: #fff;
}

.site-footer__col--brand .brand__icon svg,
.site-footer__col--brand .brand__icon .brand-icon-svg {
  width: 24px;
  height: 24px;
}

.site-footer__col--brand .brand:hover,
.site-footer__col--brand .brand:focus-visible {
  color: #fff;
  text-decoration: none;
  opacity: 1;
}

.site-footer__col--brand .brand__text span {
  color: var(--uk-red);
}

.site-footer__desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 28rem;
}

.site-footer__heading {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__list li {
  margin-bottom: 0.5rem;
}

.site-footer__list a {
  font-size: 0.95rem;
}

.site-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}

.site-footer__contact-item svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  opacity: 0.85;
}

.site-footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

/* Main: default inner pages */
.site-main {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
  width: 100%;
}

body.page-home .site-main {
  max-width: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.page-article {
  max-width: 42rem;
}

.page-article__header {
  margin-bottom: 1.75rem;
}

.page-article__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--uk-navy);
}

.page-article__lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.page-article__body h2 {
  margin: 1.75rem 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--uk-navy);
}

.page-article__body ul,
.page-article__body ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  line-height: 1.55;
  color: var(--text-primary);
}

.page-article__body p {
  margin: 0 0 1rem;
  line-height: 1.55;
}

.page-article__body .btn {
  margin-top: 0.5rem;
}

.page-contact__crumbs {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.page-contact__crumbs a {
  color: var(--uk-navy-soft);
}

.page-contact__crumbs a:hover {
  color: var(--uk-red);
}

/* Contact page (cards + channels, matches site) */
article.page-contact {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.page-contact .page-article__title {
  position: relative;
  padding-bottom: 0.85rem;
}

.page-contact .page-article__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3rem;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--uk-navy), var(--uk-red));
}

.page-contact__panel {
  margin: 0 0 1.5rem;
  padding: 0.25rem 0;
  background: var(--bg-white);
  border: 1px solid rgba(1, 33, 105, 0.1);
  border-radius: 14px;
  box-shadow:
    0 1px 2px rgba(1, 33, 105, 0.04),
    0 12px 32px rgba(1, 33, 105, 0.06);
}

.page-contact__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--border);
}

.page-contact__item:last-child {
  border-bottom: none;
}

.page-contact__icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-top: 0.1rem;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(145deg, var(--uk-navy-soft) 0%, var(--uk-navy) 100%);
  box-shadow: 0 4px 14px rgba(1, 33, 105, 0.22);
}

.page-contact__icon-wrap--accent {
  background: linear-gradient(145deg, #d91236 0%, var(--uk-red) 55%, var(--uk-red-hover) 100%);
  box-shadow: 0 4px 14px rgba(200, 16, 46, 0.28);
}

.page-contact__icon-wrap svg {
  display: block;
  width: 22px;
  height: 22px;
}

.page-contact__item-body {
  min-width: 0;
  flex: 1;
}

.page-contact__label {
  display: block;
  margin: 0 0 0.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.page-contact__item-body a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--uk-navy-soft);
  word-break: break-word;
}

.page-contact__item-body a:hover {
  color: var(--uk-red);
}

.page-contact__note {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-muted);
  background: linear-gradient(135deg, rgba(1, 33, 105, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.page-contact__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}

.page-contact__actions .btn {
  margin-top: 0;
}

/* --- Contact page (hero + form + aside) --- */
body.page-contact .site-main {
  max-width: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.hero.contact-hero {
  min-height: auto;
  min-height: unset;
}

.hero.contact-hero .hero__inner {
  padding-top: clamp(1.25rem, 3vw, 2rem);
  padding-bottom: clamp(2rem, 4vw, 2.75rem);
  align-content: start;
}

@media (min-width: 900px) {
  .hero.contact-hero .hero__side {
    position: relative;
    top: auto;
  }
}

.contact-split {
  max-width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.25rem, 4vw, 1.75rem) clamp(1rem, 3vw, 1.5rem);
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  box-sizing: border-box;
}

@media (min-width: 900px) {
  .contact-split {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    align-items: start;
  }
}

.contact-form-card {
  background: var(--bg-white);
  border: 1px solid rgba(1, 33, 105, 0.1);
  border-radius: 16px;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  box-shadow:
    0 1px 2px rgba(1, 33, 105, 0.04),
    0 16px 40px rgba(1, 33, 105, 0.07);
}

.contact-form-card__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--uk-navy);
}

.contact-form-card__lead {
  margin: 0 0 1.25rem;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.contact-required {
  color: var(--uk-red);
  font-weight: 700;
}

.contact-alert {
  margin: 0 0 1.15rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-alert--success {
  color: #0b4627;
  background: linear-gradient(135deg, rgba(34, 139, 34, 0.12) 0%, rgba(255, 255, 255, 0.95) 100%);
  border: 1px solid rgba(34, 139, 34, 0.28);
}

.contact-alert--error {
  color: #6b1020;
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.1) 0%, rgba(255, 255, 255, 0.98) 100%);
  border: 1px solid rgba(200, 16, 46, 0.28);
}

.contact-alert--warn {
  color: var(--uk-navy);
  background: rgba(1, 33, 105, 0.06);
  border: 1px solid var(--border);
}

.contact-alert__list {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

.contact-alert__extra {
  display: block;
  margin-top: 0.65rem;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: 0;
}

.contact-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.contact-field__label {
  display: block;
  margin: 0 0 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-field__input,
.contact-field__textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.85rem;
  font-size: 1rem;
  font-family: inherit;
  line-height: 1.45;
  color: var(--text-primary);
  background: #fff;
  border: 2px solid rgba(1, 33, 105, 0.14);
  border-radius: 10px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-field__textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-field__input:focus,
.contact-field__textarea:focus {
  outline: none;
  border-color: var(--uk-navy-soft);
  box-shadow: 0 0 0 3px rgba(1, 33, 105, 0.12);
}

.contact-field--has-error .contact-field__input,
.contact-field--has-error .contact-field__textarea {
  border-color: rgba(200, 16, 46, 0.55);
}

.contact-field__hint {
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.contact-field__error {
  margin: 0.35rem 0 0;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--uk-red);
}

.contact-field--invalid {
  border-color: rgba(200, 16, 46, 0.65) !important;
}

.contact-field .iti {
  width: 100%;
  display: block;
}

.contact-field .iti--allow-dropdown input {
  border-radius: 0 10px 10px 0 !important;
  min-height: 2.75rem;
  padding-top: 0.65rem !important;
  padding-bottom: 0.65rem !important;
}

.contact-field--has-error .iti input {
  border-color: rgba(200, 16, 46, 0.55) !important;
}

.contact-form__actions {
  margin-top: 0.25rem;
}

.contact-aside-card {
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
  border: 1px solid rgba(1, 33, 105, 0.1);
  border-radius: 16px;
  padding: 1.15rem 1rem 1.2rem;
  box-shadow: 0 8px 28px rgba(1, 33, 105, 0.06);
}

.contact-aside-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--uk-navy);
}

.contact-aside-card__lead {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.contact-aside-card .page-contact__list {
  margin: 0;
}

.contact-aside-card .page-contact__item {
  padding: 0.85rem 0.75rem;
}

.contact-page__footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  justify-content: center;
  max-width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 1.75rem) clamp(2.5rem, 5vw, 3.5rem);
  box-sizing: border-box;
}

.contact-optional {
  font-weight: 600;
  font-size: 0.78em;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text-muted);
}

/* --- Checkout page --- */
body.page-checkout .site-main {
  max-width: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.hero.checkout-hero {
  min-height: auto;
  min-height: unset;
}

.hero.checkout-hero .hero__inner {
  padding-top: clamp(1.25rem, 3vw, 2rem);
  padding-bottom: clamp(2rem, 4vw, 2.75rem);
  align-content: start;
}

@media (min-width: 900px) {
  .hero.checkout-hero .hero__side {
    position: relative;
    top: auto;
  }
}

.checkout-split {
  max-width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.25rem, 4vw, 1.75rem) clamp(1rem, 3vw, 1.5rem);
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  box-sizing: border-box;
}

@media (min-width: 900px) {
  .checkout-split {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    align-items: start;
  }
}

.checkout-form-card {
  background: var(--bg-white);
  border: 1px solid rgba(1, 33, 105, 0.1);
  border-radius: 16px;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  box-shadow:
    0 1px 2px rgba(1, 33, 105, 0.04),
    0 16px 40px rgba(1, 33, 105, 0.07);
}

.checkout-form-card__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--uk-navy);
}

.checkout-form-card__lead {
  margin: 0 0 1.25rem;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.checkout-success {
  margin: 0 0 1.15rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(34, 139, 34, 0.12) 0%, rgba(255, 255, 255, 0.98) 100%);
  border: 1px solid rgba(34, 139, 34, 0.3);
}

.checkout-success__title {
  margin: 0 0 0.35rem;
  font-weight: 800;
  color: #0b4627;
}

.checkout-success__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-primary);
}

.checkout-form.checkout-form {
  gap: 1.1rem;
}

.checkout-addon {
  padding: 1rem 1.05rem;
  border-radius: 12px;
  border: 1px dashed rgba(1, 33, 105, 0.22);
  background: linear-gradient(135deg, rgba(1, 33, 105, 0.04) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.checkout-addon__head {
  margin-bottom: 0.5rem;
}

.checkout-addon__label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--uk-navy);
}

.checkout-addon__label input {
  margin-top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--uk-red);
  flex-shrink: 0;
}

.checkout-addon__hint {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.checkout-included-note {
  margin: 0;
  padding: 0.9rem 1rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-primary);
  background: rgba(34, 139, 34, 0.08);
  border: 1px solid rgba(34, 139, 34, 0.22);
  border-radius: 12px;
}

.checkout-included-note__badge {
  display: inline-block;
  margin-right: 0.35rem;
  padding: 0.15rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #1a7a3e 0%, #228b22 100%);
  border-radius: 6px;
  vertical-align: middle;
}

.checkout-form__actions {
  margin-top: 0.35rem;
}

.checkout-disclaimer {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 36rem;
}

.checkout-summary {
  position: sticky;
  top: calc(var(--header-h, 64px) + 1rem);
  padding: 1.25rem 1.15rem 1.35rem;
  background: linear-gradient(165deg, #ffffff 0%, #f0f4fa 100%);
  border: 1px solid rgba(1, 33, 105, 0.12);
  border-radius: 16px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 36px rgba(1, 33, 105, 0.08);
}

.checkout-summary__title {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--uk-navy);
  letter-spacing: -0.02em;
}

.checkout-summary__list {
  margin: 0;
}

.checkout-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(1, 33, 105, 0.08);
  font-size: 0.92rem;
}

.checkout-summary__row:last-of-type {
  border-bottom: none;
}

.checkout-summary__row dt {
  margin: 0;
  font-weight: 600;
  color: var(--text-muted);
}

.checkout-summary__row dd {
  margin: 0;
  text-align: right;
  font-weight: 700;
  color: var(--uk-navy);
}

.checkout-summary__row--extra dd {
  color: var(--uk-red);
}

.checkout-summary__row--media-free {
  margin: 0.15rem -0.35rem 0;
  padding: 0.65rem 0.35rem;
  border-radius: 10px;
  background: rgba(34, 139, 34, 0.07);
  border-bottom: 1px solid rgba(34, 139, 34, 0.14) !important;
}

.checkout-summary__row--media-free dd {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.checkout-summary__zero {
  font-weight: 800;
  color: #14632a;
}

.checkout-summary__included-pill {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(34, 139, 34, 0.2);
  color: #0b4627;
}

.checkout-summary__row--total {
  padding-top: 0.85rem;
  margin-top: 0.25rem;
  border-top: 2px solid rgba(1, 33, 105, 0.12);
  border-bottom: none;
  font-size: 1.05rem;
}

.checkout-summary__row--total dt {
  font-weight: 800;
  color: var(--uk-navy);
}

.checkout-summary__total {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--uk-navy);
  letter-spacing: -0.02em;
}

.checkout-summary__price {
  font-weight: 800;
}

.checkout-summary__muted {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.checkout-summary__legal {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.checkout-summary__back {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--uk-navy-soft);
  text-decoration: none;
}

.checkout-summary__back:hover {
  color: var(--uk-red);
}

.checkout-page__footer {
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.checkout-submit-btn {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 0.2rem;
  text-align: center;
}

.checkout-submit-btn__price {
  font-weight: 800;
  opacity: 0.95;
}

/* Checkout: keep form visible on small screens; hide hero image on mobile */
@media (max-width: 899px) {
  .hero.checkout-hero {
    min-height: 0 !important;
  }

  .hero.checkout-hero .hero__inner {
    flex: 0 1 auto !important;
    align-content: flex-start !important;
    padding-top: clamp(0.85rem, 3vw, 1.35rem);
    padding-bottom: clamp(1rem, 3vw, 1.5rem);
    gap: clamp(0.85rem, 2.5vw, 1.25rem);
  }

  .hero.checkout-hero .hero__side {
    display: none;
  }

  .checkout-split {
    padding-top: clamp(0.35rem, 2vw, 0.75rem);
  }

  .checkout-summary {
    position: static;
    top: auto;
  }

  #checkout-form-wrap {
    scroll-margin-top: calc(var(--header-h) + 0.75rem);
  }

  .checkout-form-card {
    position: relative;
    z-index: 1;
  }
}

/* Guide page (Fire TV Stick & devices) */
.guide-section {
  margin: 0 0 1.75rem;
}

.guide-section__title {
  margin: 0 0 1rem;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--uk-navy);
}

.guide-section__title--sm {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}

.guide-panel {
  padding: 1.15rem 1.2rem 1.25rem;
  background: var(--bg-white);
  border: 1px solid rgba(1, 33, 105, 0.1);
  border-radius: 14px;
  box-shadow:
    0 1px 2px rgba(1, 33, 105, 0.04),
    0 12px 32px rgba(1, 33, 105, 0.06);
}

.guide-steps {
  margin: 0;
  padding-left: 1.25rem;
}

.guide-steps__item {
  margin: 0 0 1.1rem;
  padding-left: 0.25rem;
}

.guide-steps__item:last-child {
  margin-bottom: 0;
}

.guide-steps__text {
  margin: 0 0 0.65rem;
  line-height: 1.58;
  color: var(--text-primary);
}

.guide-steps__text:last-child {
  margin-bottom: 0;
}

.guide-steps__text a {
  color: var(--uk-navy-soft);
  font-weight: 600;
}

.guide-steps__text a:hover {
  color: var(--uk-red);
}

.guide-steps__video-actions {
  margin: 0 0 0.75rem;
}

.guide-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #0a0a12;
  margin: 0.35rem 0 0;
}

.guide-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.guide-code {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 1.08em;
  font-weight: 700;
  padding: 0.12em 0.4em;
  background: rgba(1, 33, 105, 0.07);
  border-radius: 6px;
  color: var(--uk-navy);
}

.guide-section--muted {
  padding: 1rem 1.15rem 1.1rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(1, 33, 105, 0.04) 0%, rgba(255, 255, 255, 0.96) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.guide-more {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.58;
  color: var(--text-muted);
}

.guide-more a {
  color: var(--uk-navy-soft);
  font-weight: 600;
}

.guide-more a:hover {
  color: var(--uk-red);
}

.guide-back {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-top: 0.25rem;
}

.guide-page__content {
  max-width: 46rem;
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.25rem, 4vw, 1.75rem) clamp(2.5rem, 5vw, 3rem);
  box-sizing: border-box;
}

.guide-anchor {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.guide-device-bar {
  background: linear-gradient(180deg, #eef2f8 0%, #f4f7fb 100%);
  border-bottom: 1px solid var(--border);
}

.guide-device-bar__inner {
  max-width: min(1200px, 100%);
  margin: 0 auto;
  padding: 1rem 1.25rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
  box-sizing: border-box;
}

@media (min-width: 700px) {
  .guide-device-bar__inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
  }
}

.guide-device-bar__label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}

.guide-device-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  justify-content: center;
  align-items: center;
}

.guide-device-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.15rem;
  min-height: 2.65rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--uk-navy);
  background: var(--bg-white);
  border: 2px solid rgba(1, 33, 105, 0.14);
  border-radius: 999px;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 1px 3px rgba(1, 33, 105, 0.06);
}

.guide-device-btn:hover {
  border-color: var(--uk-navy-soft);
  color: var(--uk-red);
  box-shadow: 0 4px 14px rgba(1, 33, 105, 0.1);
}

.guide-device-btn:focus-visible {
  outline: 2px solid var(--uk-navy);
  outline-offset: 3px;
}

.guide-device-btn--primary {
  border-color: rgba(200, 16, 46, 0.35);
  background: linear-gradient(180deg, #fff 0%, #fff8f9 100%);
}

.guide-device-btn--primary:hover {
  border-color: var(--uk-red);
}

/* Guide: one device at a time (see assets/js/guide-device-picker.js) */
.guide-empty-state {
  display: none;
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 3vw, 1.5rem);
  margin-bottom: 0.35rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(1, 33, 105, 0.07) 0%, rgba(255, 255, 255, 0.97) 50%, #f4f7fc 100%);
  border: 1px solid rgba(1, 33, 105, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 12px 40px rgba(1, 33, 105, 0.08);
}

.guide-empty-state__icon {
  margin: 0 0 0.85rem;
  font-size: 2.35rem;
  line-height: 1;
}

.guide-empty-state__title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.2rem, 2.4vw, 1.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--uk-navy);
}

.guide-empty-state__text {
  margin: 0 auto;
  max-width: 26rem;
  font-size: 0.96rem;
  line-height: 1.58;
  color: var(--text-muted);
}

.guide-page--interactive .guide-panel-block {
  display: none;
}

.guide-page--interactive .guide-panel-block.is-active {
  display: block;
  animation: guide-panel-in 0.38s ease;
}

@keyframes guide-panel-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .guide-page--interactive .guide-panel-block.is-active {
    animation: none;
  }
}

.guide-page--interactive:not(.guide-page--has-selection) .guide-empty-state {
  display: block;
}

.guide-page--interactive .guide-device-btn.is-active {
  border-color: rgba(200, 16, 46, 0.42);
  background: linear-gradient(180deg, #fff 0%, #fff8f9 100%);
  color: var(--uk-navy);
  box-shadow: 0 4px 18px rgba(1, 33, 105, 0.12);
}

.guide-placeholder {
  margin: 0;
  padding: 1.25rem 1.2rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
  background: rgba(1, 33, 105, 0.04);
  border-radius: var(--radius);
  border: 1px dashed var(--border);
}

/* --- About page (home-style: full-width main, hero, why-cards, imagery, FAQ) --- */
body.page-about .site-main,
body.page-faq .site-main,
body.page-guide .site-main,
body.page-blog .site-main,
body.page-404 .site-main {
  max-width: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* --- Global 404 (ErrorDocument) --- */
.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.error-page__nav {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(1, 33, 105, 0.1);
}

.error-page__nav-title {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.error-page__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.35rem;
}

.error-page__links a {
  font-weight: 600;
  color: var(--uk-navy-soft);
  text-decoration: none;
}

.error-page__links a:hover {
  color: var(--uk-red);
  text-decoration: underline;
}

.hero.about-hero,
.hero.faq-hero,
.hero.guide-hero {
  min-height: auto;
  min-height: unset;
}

.hero.about-hero .hero__inner,
.hero.faq-hero .hero__inner,
.hero.guide-hero .hero__inner {
  padding-top: clamp(1.25rem, 3vw, 2rem);
  padding-bottom: clamp(2rem, 4vw, 2.75rem);
  align-content: start;
}

@media (min-width: 900px) {
  .hero.about-hero .hero__side,
  .hero.faq-hero .hero__side,
  .hero.guide-hero .hero__side {
    position: relative;
    top: auto;
  }
}

.about-hero__proof {
  margin: 1.15rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(1, 33, 105, 0.1);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--uk-navy);
  letter-spacing: 0.01em;
}

.about-pillars .why__grid {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .about-pillars .why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .about-pillars .why__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.about-split {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
}

.about-split--alt {
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}

.about-split__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(2.25rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 1.75rem);
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: center;
  box-sizing: border-box;
}

@media (min-width: 900px) {
  .about-split__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
  }

  .about-split--reverse .about-split__figure {
    order: 2;
  }

  .about-split--reverse .about-split__copy {
    order: 1;
  }
}

.about-split__figure {
  margin: 0;
}

.about-split__visual .hero__photo-shell {
  transform: none;
}

.about-split__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--uk-navy);
}

.about-split__title::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 3px;
  margin-top: 0.65rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--uk-navy), var(--uk-red));
}

.about-split__copy p {
  margin: 0 0 1rem;
  line-height: 1.65;
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.6vw, 1.03rem);
}

.about-split__copy p:last-child {
  margin-bottom: 0;
}

.about-split__copy a {
  color: var(--uk-navy-soft);
  font-weight: 600;
}

.about-split__copy a:hover {
  color: var(--uk-red);
}

.about-offer-band {
  background: linear-gradient(180deg, #f0f3f9 0%, #e8ecf4 100%);
  border-top: 1px solid var(--border);
}

.about-offer-band__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(2.25rem, 5vw, 3.25rem) clamp(1.25rem, 4vw, 1.75rem);
  box-sizing: border-box;
}

.about-offer-band__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.3rem, 2.6vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--uk-navy);
}

.about-offer-band__title::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin: 0.85rem auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--uk-navy), var(--uk-red));
}

.about-offer-band__list {
  margin: 0;
  padding: 1.15rem 1.25rem 1.2rem;
  list-style: none;
  background: var(--bg-white);
  border: 1px solid rgba(1, 33, 105, 0.1);
  border-radius: 14px;
  box-shadow:
    0 1px 2px rgba(1, 33, 105, 0.04),
    0 12px 32px rgba(1, 33, 105, 0.06);
}

.about-offer-band__list li {
  position: relative;
  padding: 0.6rem 0 0.6rem 1.5rem;
  line-height: 1.55;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
  font-size: clamp(0.92rem, 1.5vw, 1rem);
}

.about-offer-band__list li:last-child {
  border-bottom: none;
}

.about-offer-band__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--uk-red);
}

/* --- FAQ page --- */
.faq-page__section {
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 50%, #f0f3f9 100%);
  border-top: 1px solid var(--border);
}

.faq-page__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(2.25rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 1.75rem);
  box-sizing: border-box;
}

.faq-page__header {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2rem;
}

.faq-page__subtitle {
  margin: 0;
  font-size: clamp(0.95rem, 1.7vw, 1.05rem);
  line-height: 1.6;
  color: var(--text-muted);
}

.faq-page__grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

details.faq-card {
  margin: 0;
  padding: 1rem 1.15rem 1.05rem;
  background: var(--bg-white);
  border: 1px solid rgba(1, 33, 105, 0.1);
  border-radius: 14px;
  border-left: 4px solid var(--uk-red);
  box-shadow:
    0 1px 2px rgba(1, 33, 105, 0.04),
    0 12px 32px rgba(1, 33, 105, 0.06);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

details.faq-card[open] {
  border-color: rgba(1, 33, 105, 0.14);
  box-shadow:
    0 2px 4px rgba(1, 33, 105, 0.06),
    0 18px 40px rgba(1, 33, 105, 0.09);
}

details.faq-card:hover:not([open]) {
  border-color: rgba(1, 33, 105, 0.13);
}

summary.faq-card__summary {
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

summary.faq-card__summary::-webkit-details-marker {
  display: none;
}

summary.faq-card__summary::marker {
  content: "";
}

summary.faq-card__summary:focus {
  outline: none;
}

summary.faq-card__summary:focus-visible {
  outline: 2px solid var(--uk-navy);
  outline-offset: 3px;
  border-radius: 8px;
}

.faq-card__q {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: clamp(1.02rem, 2vw, 1.12rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--uk-navy);
  text-align: left;
}

.faq-card__chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-top: 0.05rem;
  border-radius: 50%;
  color: var(--uk-navy);
  background: rgba(1, 33, 105, 0.07);
  transition: background 0.2s ease, color 0.2s ease;
}

details.faq-card[open] .faq-card__chevron {
  background: rgba(200, 16, 46, 0.12);
  color: var(--uk-red);
}

.faq-card__chevron svg {
  display: block;
  transition: transform 0.28s ease;
}

details.faq-card[open] .faq-card__chevron svg {
  transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
  .faq-card__chevron svg {
    transition: none;
  }
}

details.faq-card .faq-card__a {
  margin: 0;
  padding-top: 0.9rem;
  margin-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-size: clamp(0.92rem, 1.5vw, 1rem);
  line-height: 1.62;
  color: var(--text-muted);
}

details.faq-card .faq-card__a p {
  margin: 0 0 0.65rem;
}

details.faq-card .faq-card__a p:last-child {
  margin-bottom: 0;
}

details.faq-card .faq-card__a a {
  color: var(--uk-navy-soft);
  font-weight: 600;
}

details.faq-card .faq-card__a a:hover {
  color: var(--uk-red);
}

/* --- Legal / Privacy & Terms pages --- */
body.page-privacy .site-main,
body.page-terms .site-main,
body.page-refund .site-main {
  max-width: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.legal-page__section {
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 50%, #f0f3f9 100%);
  border-top: 1px solid var(--border);
}

.legal-page__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(2.25rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 1.75rem);
  box-sizing: border-box;
}

.legal-page__header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1.75rem;
}

.legal-page__lead {
  margin: 0.75rem 0 0;
  font-size: clamp(0.95rem, 1.7vw, 1.05rem);
  line-height: 1.65;
  color: var(--text-muted);
}

.legal-page__domain {
  font-family: ui-monospace, monospace;
  font-size: 0.92em;
  color: var(--uk-navy-soft);
}

.legal-toc {
  margin: 0 0 2rem;
  padding: 1.1rem 1.2rem 1.15rem;
  background: var(--bg-white);
  border: 1px solid rgba(1, 33, 105, 0.1);
  border-radius: 14px;
  border-left: 4px solid var(--uk-navy);
  box-shadow:
    0 1px 2px rgba(1, 33, 105, 0.04),
    0 10px 28px rgba(1, 33, 105, 0.06);
}

.legal-toc__label {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--uk-navy);
}

.legal-toc__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
}

.legal-toc__list a {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--uk-navy-soft);
  text-decoration: none;
  background: rgba(1, 33, 105, 0.06);
  border-radius: 999px;
  border: 1px solid rgba(1, 33, 105, 0.1);
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

.legal-toc__list a:hover {
  color: var(--uk-red);
  background: rgba(200, 16, 46, 0.08);
  border-color: rgba(200, 16, 46, 0.22);
}

.legal-prose {
  font-size: clamp(0.94rem, 1.5vw, 1.02rem);
  line-height: 1.65;
  color: var(--text-muted);
}

.legal-section {
  scroll-margin-top: 5.5rem;
  margin-bottom: 2.25rem;
  padding-bottom: 0.25rem;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--uk-navy);
}

.legal-section__intro {
  margin: 0 0 1rem;
}

.legal-prose p {
  margin: 0 0 0.85rem;
}

.legal-prose p:last-child {
  margin-bottom: 0;
}

.legal-prose a {
  color: var(--uk-navy-soft);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.legal-prose a:hover {
  color: var(--uk-red);
}

.legal-list {
  margin: 0.5rem 0 0.85rem;
  padding-left: 1.15rem;
}

.legal-list li {
  margin-bottom: 0.5rem;
}

.legal-list li:last-child {
  margin-bottom: 0;
}

.legal-list--tight {
  margin-top: 0.35rem;
}

.legal-list--tight li {
  margin-bottom: 0.4rem;
}

.legal-callout {
  margin: 1.25rem 0;
  padding: 1.15rem 1.2rem 1.2rem;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.legal-callout__title {
  margin: 0 0 0.65rem;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--uk-navy);
}

.legal-callout p {
  margin: 0 0 0.65rem;
}

.legal-callout p:last-child {
  margin-bottom: 0;
}

.legal-callout .legal-list {
  margin-bottom: 0;
}

.legal-callout--success {
  background: linear-gradient(135deg, rgba(34, 139, 34, 0.09) 0%, rgba(255, 255, 255, 0.98) 100%);
  border-color: rgba(34, 139, 34, 0.28);
  border-left: 4px solid #228b22;
}

.legal-callout--muted {
  background: linear-gradient(135deg, rgba(1, 33, 105, 0.05) 0%, #ffffff 100%);
  border-color: rgba(1, 33, 105, 0.12);
  border-left: 4px solid var(--uk-navy);
}

.legal-callout--accent {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(255, 255, 255, 0.98) 100%);
  border-color: rgba(37, 99, 235, 0.22);
  border-left: 4px solid #2563eb;
}

.legal-page__cta .subscribe-cta__text {
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.legal-page__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Home: Hero (light layout + photo) --- */
.hero {
  position: relative;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  min-height: 100vh;
  min-height: 100dvh;
  background: #f4f7fb;
  border-bottom: 1px solid var(--border);
}

@media (max-height: 760px) and (min-width: 900px) {
  .hero {
    min-height: auto;
    padding-bottom: 0.5rem;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 88% 18%, rgba(1, 33, 105, 0.07) 0%, transparent 52%),
    radial-gradient(ellipse 55% 50% at 8% 88%, rgba(200, 16, 46, 0.05) 0%, transparent 48%);
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__bg {
    animation: hero-bg-drift 28s ease-in-out infinite alternate;
  }
}

@keyframes hero-bg-drift {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.94;
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: start;
  align-content: center;
  min-height: 0;
  width: 100%;
  max-width: min(1200px, 100%);
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 3rem) clamp(1rem, 3vw, 1.5rem) clamp(2rem, 5vw, 3.5rem);
  box-sizing: border-box;
}

.hero__copy {
  min-width: 0;
}

.hero__side {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  min-width: 0;
  width: 100%;
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.92fr);
    column-gap: clamp(1.5rem, 3vw, 2.75rem);
    row-gap: clamp(1.25rem, 2.5vw, 2rem);
    align-items: start;
  }

  .hero__side {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
    align-self: start;
  }
}

@media (min-width: 900px) and (max-height: 720px) {
  .hero__side {
    position: static;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 42%);
    column-gap: clamp(1.25rem, 2.5vw, 2rem);
    padding-left: clamp(1rem, 2vw, 1.5rem);
    padding-right: clamp(1rem, 2vw, 1.5rem);
  }

  .hero__title {
    font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  }
}

.hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__flash {
  margin: 0 0 1.25rem;
  max-width: 100%;
}

.hero__flash-inner {
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero__flash-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  margin-bottom: 0.5rem;
}

.hero__flash-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  background: var(--uk-red);
}

.hero__flash-icon {
  flex-shrink: 0;
  opacity: 0.95;
}

.hero__flash-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--uk-navy-soft);
  padding: 0.22rem 0.5rem;
  border-radius: 6px;
  background: rgba(1, 33, 105, 0.06);
  border: 1px solid rgba(1, 33, 105, 0.1);
}

.hero__flash-title {
  margin: 0 0 0.35rem;
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--uk-navy);
}

.hero__flash-sub {
  margin: 0 0 0.8rem;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.hero__flash-count {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.hero__flash-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 3rem;
  padding: 0.42rem 0.3rem 0.38rem;
  border-radius: 8px;
  background: var(--bg-page);
  border: 1px solid var(--border);
}

.hero__flash-num {
  font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", Consolas, monospace;
  font-size: 1.32rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  color: var(--uk-navy);
}

.hero__flash-unit-label {
  margin-top: 0.12rem;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__flash-sep {
  align-self: center;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--uk-red);
  opacity: 0.55;
  padding-bottom: 0.45rem;
}

/* Flash card CTA: navy (secondary) so it does not compete with red “View plans” */
.hero__flash-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.68rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.93rem;
  text-decoration: none;
  color: #fff !important;
  background: var(--uk-navy);
  border: 2px solid var(--uk-navy);
  box-shadow: 0 2px 12px rgba(1, 33, 105, 0.22);
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.hero__flash-cta:hover {
  background: var(--uk-navy-soft);
  border-color: var(--uk-navy-soft);
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(1, 33, 105, 0.28);
  transform: translateY(-1px);
}

.hero__flash-cta:focus-visible {
  outline: 2px solid var(--uk-red);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .hero__flash-cta:hover {
    transform: none;
  }
}

.hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  text-wrap: balance;
  max-width: 36rem;
}

.hero__title-part {
  color: var(--uk-navy);
  display: inline;
}

.hero__title-accent {
  color: var(--uk-red);
  display: block;
  margin-top: 0.18em;
  margin-left: 0;
}

@media (min-width: 640px) {
  .hero__title-accent {
    display: inline;
    margin-top: 0;
    margin-left: 0.12em;
  }
}

@media (max-width: 480px) {
  .hero__title {
    max-width: none;
    font-size: clamp(1.45rem, 5.2vw, 1.85rem);
  }
}

.hero__lead {
  margin: 0 0 0.65rem;
  font-size: clamp(1.02rem, 2vw, 1.12rem);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 32rem;
}

.hero__lead--promo {
  margin: 0 0 1.1rem;
  font-weight: 700;
  font-size: clamp(0.95rem, 1.85vw, 1.05rem);
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: var(--uk-navy);
}

.hero__highlights {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--uk-navy);
}

.hero__highlights li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero__highlights li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--uk-red);
  flex-shrink: 0;
  opacity: 0.9;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin: 0 0 1.25rem;
}

.hero__trust-head {
  margin-bottom: 0.65rem;
}

.hero__trust-heading {
  margin: 0 0 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__trust-stats {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--uk-navy);
  letter-spacing: 0.01em;
}

.hero__trust {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(1, 33, 105, 0.1);
  width: 100%;
  max-width: none;
}

@media (min-width: 900px) {
  .hero__trust {
    padding-top: 0.85rem;
    text-align: left;
  }
}

.hero__trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.25;
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background: var(--uk-red);
  color: #fff;
  border-color: var(--uk-red);
  box-shadow: 0 2px 12px rgba(200, 16, 46, 0.28);
}

.btn--primary:hover {
  background: var(--uk-red-hover);
  border-color: var(--uk-red-hover);
  color: #fff;
}

.btn--ghost {
  background: var(--bg-white);
  color: var(--uk-navy);
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: var(--uk-navy-soft);
  color: var(--uk-red);
}

.btn:focus-visible {
  outline: 2px solid var(--uk-navy);
  outline-offset: 2px;
}

.btn--primary:focus-visible {
  outline-color: #fff;
  box-shadow: 0 0 0 3px rgba(1, 33, 105, 0.45);
}

.btn--lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  min-width: 11rem;
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  min-width: 0;
  width: 100%;
  max-width: 11rem;
}

.trust-chip {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  min-width: min(100%, 220px);
  flex: 1 1 200px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

a.trust-chip--link:hover {
  border-color: rgba(1, 33, 105, 0.25);
  box-shadow: 0 4px 16px rgba(1, 33, 105, 0.1);
  color: inherit;
}

a.trust-chip--link:focus-visible {
  outline: 2px solid var(--uk-navy);
  outline-offset: 2px;
}

.trust-chip--tp .trust-chip__icon--tp {
  color: #00b67a;
}

.trust-chip__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.trust-chip__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.trust-chip__stars {
  display: flex;
  gap: 0.12rem;
  color: #f5a623;
}

.trust-chip__stars--green {
  color: #00b67a;
}

.stars-inline {
  display: inline-flex;
  gap: 0.1rem;
  align-items: center;
}

.trust-chip__hint {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.trust-chip--compact {
  min-width: 0;
  flex: 0 1 auto;
  padding: 0.55rem 0.85rem;
  gap: 0.5rem;
  align-items: center;
}

.trust-chip--compact .trust-chip__body {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.trust-chip--compact .trust-chip__name {
  font-size: 0.85rem;
}

.trust-chip--compact .trust-chip__hint {
  font-size: 0.68rem;
}

.trust-chip--hero {
  min-width: 0;
  flex: 0 1 auto;
  padding: 0.5rem 0.8rem;
  gap: 0.5rem;
  align-items: center;
}

.trust-chip--hero .trust-chip__body {
  flex-direction: row;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.trust-chip--hero .trust-chip__name {
  font-size: 0.82rem;
}

.hero__side .hero__visual {
  margin: 0;
  width: 100%;
  max-width: 520px;
  align-self: center;
}

@media (min-width: 900px) {
  .hero__side .hero__visual {
    max-width: none;
    align-self: stretch;
  }
}

.hero__photo-shell {
  position: relative;
  padding: 3px;
  border-radius: 1.35rem;
  background: linear-gradient(
    138deg,
    rgba(1, 33, 105, 0.2) 0%,
    rgba(1, 33, 105, 0.05) 42%,
    rgba(200, 16, 46, 0.16) 100%
  );
  box-shadow:
    0 32px 60px rgba(1, 33, 105, 0.12),
    0 0 0 1px rgba(1, 33, 105, 0.07),
    0 2px 0 rgba(255, 255, 255, 0.88) inset;
}

.hero__photo-frame {
  position: relative;
  border-radius: calc(1.35rem - 3px);
  overflow: hidden;
  background: linear-gradient(180deg, #eef2f8 0%, #e2e8f0 100%);
  aspect-ratio: 16 / 9;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.hero__photo-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__photo-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.35),
    inset 0 -20px 40px rgba(1, 33, 105, 0.06);
  pointer-events: none;
  z-index: 1;
}

@media (min-width: 900px) {
  .hero__photo-shell {
    transform: rotate(-1.35deg);
  }
}

.hero__photo {
  display: block;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 639px) {
  .hero__inner {
    padding: 1.5rem 1rem 2rem;
    gap: 1.25rem;
  }

  .hero__eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }

  .hero__flash {
    margin-bottom: 1.1rem;
    max-width: none;
  }

  .hero__flash-inner {
    padding: 0.9rem 1rem 1rem;
  }

  .hero__flash-num {
    font-size: 1.18rem;
  }

  .hero__lead {
    max-width: none;
    margin-bottom: 0.55rem;
  }

  .hero__lead--promo {
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }

  .hero__highlights {
    margin-bottom: 1.15rem;
    gap: 0.4rem 0.85rem;
    font-size: 0.72rem;
  }

  .hero__actions {
    margin-bottom: 1rem;
  }

  .hero__actions .btn--lg {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .hero__trust {
    padding-top: 1.1rem;
    margin-top: 0.15rem;
    text-align: center;
  }

  .hero__trust-head {
    text-align: center;
  }

  .hero__trust-list {
    flex-direction: column;
    align-items: center;
  }

  .trust-chip--hero {
    justify-content: center;
  }

  .hero__photo-shell {
    transform: none;
  }
}

/* --- Home: Why choose us --- */
.why {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 45%, #f0f3f9 100%);
  border-top: 1px solid var(--border);
}

.why__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(2.75rem, 5vw, 4rem) clamp(1.25rem, 4vw, 1.75rem) clamp(3rem, 5vw, 4.25rem);
  box-sizing: border-box;
}

.why__header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
}

.why__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--uk-navy);
}

.why__intro {
  margin: 0;
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  line-height: 1.6;
  color: var(--text-muted);
}

.why__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.1rem, 2.5vw, 1.5rem);
}

@media (min-width: 640px) {
  .why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1000px) {
  .why__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.why-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 0;
  margin: 0;
  padding: clamp(1.35rem, 2.5vw, 1.65rem);
  background: var(--bg-white);
  border: 1px solid rgba(1, 33, 105, 0.08);
  border-radius: 14px;
  box-shadow:
    0 1px 2px rgba(1, 33, 105, 0.04),
    0 12px 32px rgba(1, 33, 105, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.why-card:hover {
  border-color: rgba(1, 33, 105, 0.14);
  box-shadow:
    0 2px 4px rgba(1, 33, 105, 0.06),
    0 18px 40px rgba(1, 33, 105, 0.09);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .why-card:hover {
    transform: none;
  }
}

.why-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
}

.why-card__icon--navy {
  background: linear-gradient(145deg, var(--uk-navy-soft) 0%, var(--uk-navy) 100%);
  box-shadow: 0 4px 14px rgba(1, 33, 105, 0.28);
}

.why-card__icon--red {
  background: linear-gradient(145deg, #d91236 0%, var(--uk-red) 55%, var(--uk-red-hover) 100%);
  box-shadow: 0 4px 14px rgba(200, 16, 46, 0.3);
}

.why-card__title {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--uk-navy);
}

.why-card__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* --- Home: Supported devices --- */
.devices {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
  background: var(--bg-white);
  border-top: none;
  border-bottom: 1px solid var(--border);
}

.devices__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(2.5rem, 4.5vw, 3.5rem) clamp(1.25rem, 4vw, 1.75rem);
  box-sizing: border-box;
}

.devices__header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto clamp(1.75rem, 3.5vw, 2.5rem);
}

.devices__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--uk-navy);
}

.devices__intro {
  margin: 0;
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  line-height: 1.6;
  color: var(--text-muted);
}

.devices__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.15rem);
}

@media (min-width: 640px) {
  .devices__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .devices__grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

.devices-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
  margin: 0;
  padding: clamp(1rem, 2vw, 1.25rem) clamp(0.65rem, 1.2vw, 0.85rem);
  background: var(--bg-white);
  border: 1px solid rgba(1, 33, 105, 0.08);
  border-radius: 14px;
  box-shadow:
    0 1px 2px rgba(1, 33, 105, 0.04),
    0 8px 24px rgba(1, 33, 105, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.devices-card:hover {
  border-color: rgba(1, 33, 105, 0.14);
  box-shadow:
    0 2px 4px rgba(1, 33, 105, 0.06),
    0 14px 32px rgba(1, 33, 105, 0.08);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .devices-card:hover {
    transform: none;
  }
}

.devices-card .why-card__icon.devices-card__icon {
  margin-bottom: 0.65rem;
}

.devices-card__title {
  margin: 0 0 0.35rem;
  font-size: clamp(0.82rem, 1.35vw, 0.95rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--uk-navy);
}

.devices-card__meta {
  margin: 0;
  font-size: clamp(0.68rem, 1.1vw, 0.78rem);
  line-height: 1.4;
  color: var(--text-muted);
}

/* --- Home: Media players (app tiles + Others) --- */
.media-players {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(1, 33, 105, 0.05) 0%, transparent 55%),
    linear-gradient(180deg, #f4f7fc 0%, #ffffff 42%);
  border-top: none;
  border-bottom: 1px solid var(--border);
}

.media-players__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(2.75rem, 5vw, 3.75rem) clamp(1.25rem, 4vw, 1.75rem);
  box-sizing: border-box;
}

.media-players__header {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto clamp(2rem, 3.5vw, 2.75rem);
}

.media-players__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--uk-red);
}

.media-players__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--uk-navy);
}

.media-players__intro {
  margin: 0;
  font-size: clamp(0.95rem, 1.75vw, 1.06rem);
  line-height: 1.65;
  color: var(--text-muted);
}

.media-players__intro strong {
  color: var(--uk-navy);
  font-weight: 700;
}

.media-players__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(5.75rem, 1fr));
  gap: 0.65rem;
  align-items: stretch;
}

@media (min-width: 400px) {
  .media-players__grid {
    grid-template-columns: repeat(auto-fill, minmax(6.25rem, 1fr));
    gap: 0.75rem;
  }
}

@media (min-width: 900px) {
  .media-players__grid {
    gap: 0.85rem;
  }
}

.media-players__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  min-width: 0;
  margin: 0;
  padding: 0.55rem 0.35rem 0.6rem;
  min-height: 8.15rem;
  background: var(--bg-white);
  border: 1px solid rgba(1, 33, 105, 0.07);
  border-radius: 12px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 1px 2px rgba(1, 33, 105, 0.04),
    0 6px 18px rgba(1, 33, 105, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.media-players__card:hover {
  border-color: rgba(1, 33, 105, 0.14);
  box-shadow:
    0 2px 4px rgba(1, 33, 105, 0.06),
    0 14px 32px rgba(1, 33, 105, 0.08);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .media-players__card:hover {
    transform: none;
  }
}

.media-players__thumb-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 4.25rem;
  margin-bottom: 0.35rem;
  width: 100%;
}

.media-players__thumb {
  width: 4rem;
  height: 4rem;
  border-radius: 11px;
  background: #fff;
  border: 1px solid rgba(1, 33, 105, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

.media-players__thumb--logo {
  padding: 0.2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.media-players__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.media-players__thumb--mono {
  background: linear-gradient(155deg, #eef2f8 0%, #dfe6f2 100%);
  border-color: rgba(1, 33, 105, 0.1);
  color: var(--uk-navy);
}

.media-players__mono {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  opacity: 0.88;
}

.media-players__thumb--icon {
  background: transparent;
  border: none;
  width: auto;
  height: auto;
  min-height: 0;
}

.media-players .media-players__thumb--icon .why-card__icon {
  margin-bottom: 0;
  width: 44px;
  height: 44px;
}

.media-players .media-players__thumb--icon .why-card__icon svg {
  width: 22px;
  height: 22px;
}

.media-players__name {
  margin: 0;
  width: 100%;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--uk-navy);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
  max-height: 2.4em;
}

@media (min-width: 480px) {
  .media-players__name {
    font-size: 0.72rem;
  }
}

/* --- Home: SEO block (card grid on tablet+; like .why-card rhythm) --- */
.seo-topics {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 45%, #f0f3f9 100%);
  border-top: 1px solid var(--border);
}

.seo-topics__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(2.75rem, 5vw, 4rem) clamp(1.25rem, 4vw, 1.75rem) clamp(3rem, 5vw, 4.25rem);
  box-sizing: border-box;
}

.seo-topics__header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
}

.seo-topics__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--uk-navy);
}

.seo-topics__title::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 3px;
  margin: 1rem auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--uk-navy), var(--uk-red));
}

.seo-topics__intro {
  margin: 1.25rem 0 0;
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  line-height: 1.65;
  color: var(--text-muted);
}

.seo-topics__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2.5vw, 1.35rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .seo-topics__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.1rem, 2.5vw, 1.5rem);
  }
}

.seo-topics__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg-white);
  border: 1px solid rgba(1, 33, 105, 0.1);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 36px rgba(1, 33, 105, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.seo-topics__card:hover {
  transform: translateY(-3px);
  border-color: rgba(1, 33, 105, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 18px 44px rgba(1, 33, 105, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .seo-topics__card {
    transition: none;
  }

  .seo-topics__card:hover {
    transform: none;
  }
}

.seo-topics__figure {
  margin: 0;
  flex-shrink: 0;
}

.seo-topics__photo {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: rgba(1, 33, 105, 0.06);
  aspect-ratio: 4 / 3;
  border: none;
  border-bottom: 1px solid rgba(1, 33, 105, 0.08);
  box-shadow: none;
}

.seo-topics__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.seo-topics__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.001);
  transition: transform 0.45s ease;
}

.seo-topics__card:hover .seo-topics__img {
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .seo-topics__img {
    transition: none;
  }

  .seo-topics__card:hover .seo-topics__img {
    transform: none;
  }
}

.seo-topics__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(1rem, 2.2vw, 1.2rem) clamp(1rem, 2vw, 1.15rem) clamp(1.1rem, 2.2vw, 1.35rem);
  min-height: 0;
}

@media (max-width: 639px) {
  .seo-topics__copy {
    text-align: center;
  }
}

.seo-topics__h {
  margin: 0 0 0.55rem;
  font-size: clamp(1.02rem, 1.9vw, 1.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.28;
  color: var(--uk-navy);
}

.seo-topics__h::before {
  content: "";
  display: block;
  width: 2.25rem;
  height: 3px;
  margin-bottom: 0.5rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--uk-red), rgba(200, 16, 46, 0.35));
}

@media (max-width: 639px) {
  .seo-topics__h::before {
    margin-left: auto;
    margin-right: auto;
  }
}

.seo-topics__p {
  margin: 0;
  font-size: clamp(0.88rem, 1.5vw, 0.98rem);
  line-height: 1.65;
  color: var(--text-muted);
}

/* --- Home: Subscribe CTA (centered card, not full-bleed) --- */
.subscribe-cta {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 2.75rem) clamp(1rem, 4vw, 1.75rem) clamp(2.5rem, 5vw, 3.5rem);
  max-width: 1200px;
  box-sizing: border-box;
  background: var(--bg-page);
}

.subscribe-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 2.75rem) clamp(1.35rem, 4vw, 2rem);
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, #0a2a6e 0%, var(--uk-navy) 42%, #061838 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 20px 50px rgba(1, 33, 105, 0.18),
    0 4px 16px rgba(0, 0, 0, 0.12);
}

.subscribe-cta__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 55% at 50% 0%, rgba(200, 16, 46, 0.2) 0%, transparent 55%);
  pointer-events: none;
}

.subscribe-cta__inner > * {
  position: relative;
  z-index: 1;
}

.subscribe-cta__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #fff;
  text-wrap: balance;
}

.subscribe-cta__text {
  margin: 0 0 1.5rem;
  font-size: clamp(0.95rem, 1.85vw, 1.06rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.subscribe-cta__btn {
  box-shadow: 0 4px 24px rgba(200, 16, 46, 0.45);
}

.subscribe-cta__btn:hover {
  box-shadow: 0 6px 28px rgba(200, 16, 46, 0.55);
}

/* --- Home: Channel categories (horizontal scroll) --- */
.channel-cats {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.channel-cats__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(2.25rem, 4vw, 3rem) 1.25rem clamp(2.5rem, 4vw, 3.25rem);
  box-sizing: border-box;
}

.channel-cats__header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(1.25rem, 2.5vw, 1.65rem);
}

.channel-cats__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-wrap: balance;
}

.channel-cats__title-line {
  color: var(--uk-navy);
  display: inline;
}

.channel-cats__title-accent {
  color: var(--uk-red);
  display: block;
  margin-top: 0.18em;
  margin-left: 0;
}

@media (min-width: 640px) {
  .channel-cats__title-accent {
    display: inline;
    margin-top: 0;
    margin-left: 0.12em;
  }
}

.channel-cats__intro {
  margin: 0;
  font-size: clamp(0.92rem, 1.6vw, 1.02rem);
  line-height: 1.55;
  color: var(--text-muted);
}

.channel-cats__slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto;
  align-items: start;
  column-gap: clamp(0.35rem, 2vw, 0.65rem);
  margin-top: 0.15rem;
}

.channel-cats__center {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-width: 0;
  padding-bottom: 0.15rem;
}

.channel-cats__btn {
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(1, 33, 105, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: var(--uk-navy);
  box-shadow:
    0 1px 2px rgba(1, 33, 105, 0.06),
    0 4px 12px rgba(1, 33, 105, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  cursor: pointer;
  flex-shrink: 0;
  align-self: center;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.channel-cats__btn:hover {
  border-color: rgba(200, 16, 46, 0.35);
  color: var(--uk-red);
  box-shadow:
    0 2px 4px rgba(1, 33, 105, 0.06),
    0 8px 22px rgba(1, 33, 105, 0.12);
}

.channel-cats__btn:active {
  transform: scale(0.96);
}

.channel-cats__btn:focus-visible {
  outline: 2px solid var(--uk-navy);
  outline-offset: 2px;
}

.channel-cats__btn--prev {
  grid-column: 1;
}

.channel-cats__btn--next {
  grid-column: 3;
}

.slider-nav__ic {
  display: block;
  flex-shrink: 0;
}

.channel-cats__viewport {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 0.2rem 0 0;
}

/* Carousel dots - one per card, shows position & total */
.slider-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  row-gap: 0.5rem;
  padding: 0.15rem 0 0;
  margin: 0;
  min-height: 1.5rem;
  list-style: none;
}

.slider-dots__btn {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(1, 33, 105, 0.18);
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 0 0 6px transparent;
}

.slider-dots__btn:hover {
  background: rgba(1, 33, 105, 0.35);
}

.slider-dots__btn:focus-visible {
  outline: 2px solid var(--uk-navy);
  outline-offset: 3px;
}

.slider-dots__btn[aria-current="true"] {
  background: var(--uk-red);
  transform: scale(1.2);
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.15);
}

@media (prefers-reduced-motion: reduce) {
  .channel-cats__btn:active,
  .vod-row__btn:active {
    transform: none;
  }

  .slider-dots__btn[aria-current="true"] {
    transform: none;
  }
}

@media (min-width: 900px) {
  .slider-dots__btn {
    width: 8px;
    height: 8px;
  }

  .slider-dots {
    gap: 0.5rem;
    padding-top: 0.25rem;
  }
}

.channel-cats__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: clamp(0.85rem, 2vw, 1.15rem);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.channel-cats__track::-webkit-scrollbar {
  display: none;
}

.channel-cat-card {
  flex: 0 0 min(280px, calc(100vw - 7.25rem));
  scroll-snap-align: start;
  margin: 0;
  padding: 1.35rem 1.2rem 1.4rem;
  background: var(--bg-page);
  border: 1px solid rgba(1, 33, 105, 0.1);
  border-radius: 14px;
  box-shadow:
    0 1px 2px rgba(1, 33, 105, 0.04),
    0 12px 32px rgba(1, 33, 105, 0.07);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.channel-cat-card:hover {
  border-color: rgba(1, 33, 105, 0.16);
  box-shadow:
    0 4px 12px rgba(1, 33, 105, 0.08),
    0 18px 40px rgba(1, 33, 105, 0.1);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .channel-cat-card:hover {
    transform: none;
  }

  .channel-cats__track {
    scroll-behavior: auto;
  }
}

.channel-cat-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
}

.channel-cat-card__icon--navy {
  background: linear-gradient(145deg, var(--uk-navy-soft) 0%, var(--uk-navy) 100%);
  box-shadow: 0 6px 18px rgba(1, 33, 105, 0.28);
}

.channel-cat-card__icon--red {
  background: linear-gradient(145deg, #d91236 0%, var(--uk-red) 55%, var(--uk-red-hover) 100%);
  box-shadow: 0 6px 18px rgba(200, 16, 46, 0.28);
}

.channel-cat-card__title {
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--uk-navy);
}

.channel-cat-card__text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .channel-cat-card {
    flex: 0 0 268px;
  }
}

@media (min-width: 1000px) {
  .channel-cat-card {
    flex: 0 0 252px;
  }
}

/* --- Home: VOD row (movies & series slider) --- */
.vod-row {
  background: var(--bg-page);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.vod-row__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(2.25rem, 4vw, 3rem) 1.25rem clamp(2.5rem, 4vw, 3.25rem);
  box-sizing: border-box;
}

.vod-row__header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(1.25rem, 2.5vw, 1.65rem);
}

.vod-row__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-wrap: balance;
}

.vod-row__title-line {
  color: var(--uk-navy);
  display: inline;
}

.vod-row__title-accent {
  color: var(--uk-red);
  display: block;
  margin-top: 0.18em;
  margin-left: 0;
}

@media (min-width: 640px) {
  .vod-row__title-accent {
    display: inline;
    margin-top: 0;
    margin-left: 0.12em;
  }
}

.vod-row__intro {
  margin: 0;
  font-size: clamp(0.92rem, 1.6vw, 1.02rem);
  line-height: 1.55;
  color: var(--text-muted);
}

.vod-row__slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto;
  align-items: start;
  column-gap: clamp(0.35rem, 2vw, 0.65rem);
  margin-top: 0.15rem;
}

.vod-row__center {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-width: 0;
  padding-bottom: 0.15rem;
}

.vod-row__btn {
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(1, 33, 105, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: var(--uk-navy);
  box-shadow:
    0 1px 2px rgba(1, 33, 105, 0.06),
    0 4px 12px rgba(1, 33, 105, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  cursor: pointer;
  flex-shrink: 0;
  align-self: center;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.vod-row__btn:hover {
  border-color: rgba(200, 16, 46, 0.35);
  color: var(--uk-red);
  box-shadow:
    0 2px 4px rgba(1, 33, 105, 0.06),
    0 8px 22px rgba(1, 33, 105, 0.12);
}

.vod-row__btn:active {
  transform: scale(0.96);
}

.vod-row__btn:focus-visible {
  outline: 2px solid var(--uk-navy);
  outline-offset: 2px;
}

.vod-row__btn--prev {
  grid-column: 1;
}

.vod-row__btn--next {
  grid-column: 3;
}

.vod-row__viewport {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 0.2rem 0 0;
}

.vod-row__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: clamp(0.85rem, 2vw, 1.15rem);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.vod-row__track::-webkit-scrollbar {
  display: none;
}

.vod-card {
  flex: 0 0 min(168px, calc(100vw - 7.75rem));
  scroll-snap-align: start;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  transition: transform 0.2s ease;
}

.vod-card:hover {
  transform: translateY(-3px);
}

@media (prefers-reduced-motion: reduce) {
  .vod-card:hover {
    transform: none;
  }

  .vod-row__track {
    scroll-behavior: auto;
  }
}

/* Portrait poster / file-cover style (CSS-only artwork) */
.vod-card__cover {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 11px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(20, 30, 50, 0.35);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    inset 0 2px 1px rgba(255, 255, 255, 0.1),
    0 4px 8px rgba(1, 33, 105, 0.12),
    0 16px 40px rgba(1, 33, 105, 0.22);
}

.vod-card__art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.vod-card__gloss {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    128deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0) 38%,
    rgba(255, 255, 255, 0) 62%,
    rgba(0, 0, 0, 0.08) 100%
  );
  mix-blend-mode: soft-light;
}

.vod-card__badge {
  position: absolute;
  top: 0.45rem;
  left: 0.45rem;
  z-index: 3;
  padding: 0.28rem 0.55rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  border-radius: 6px;
  color: #fff;
  background: rgba(1, 17, 41, 0.82);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.28);
}

.vod-card__year {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  z-index: 3;
  padding: 0.26rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  border-radius: 6px;
  color: #fff;
  background: rgba(0, 0, 0, 0.58);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.vod-card__cover-foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 1.35rem 0.5rem 0.45rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.55) 38%, rgba(0, 0, 0, 0.88) 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.vod-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #fff;
  font-size: 0.8rem;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.vod-card__star-ic {
  flex-shrink: 0;
  color: #f5a623;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.35));
}

.vod-card__score {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.vod-card__score-max {
  font-weight: 600;
  font-size: 0.72em;
  opacity: 0.88;
}

/* Action: speed lines + warm impact glow */
.vod-card__cover--action-1 {
  background:
    radial-gradient(ellipse 95% 70% at 70% 85%, rgba(255, 95, 40, 0.55) 0%, transparent 58%),
    linear-gradient(168deg, #050a18 0%, #0c1a42 40%, #152a6e 100%);
}

.vod-card__cover--action-1 .vod-card__art {
  background:
    repeating-linear-gradient(
      -32deg,
      transparent 0,
      transparent 14px,
      rgba(255, 120, 60, 0.09) 14px,
      rgba(255, 120, 60, 0.09) 16px
    ),
    linear-gradient(180deg, transparent 55%, rgba(200, 16, 46, 0.22) 100%);
  mix-blend-mode: screen;
  opacity: 0.95;
}

.vod-card__cover--action-2 {
  background:
    radial-gradient(ellipse 80% 60% at 20% 75%, rgba(60, 180, 255, 0.35) 0%, transparent 55%),
    linear-gradient(195deg, #0a1628 0%, #122a48 45%, #1a1a24 100%);
}

.vod-card__cover--action-2 .vod-card__art {
  background:
    repeating-linear-gradient(
      38deg,
      transparent,
      transparent 18px,
      rgba(255, 255, 255, 0.04) 18px,
      rgba(255, 255, 255, 0.04) 19px
    ),
    radial-gradient(circle at 85% 35%, rgba(255, 60, 40, 0.25), transparent 45%);
}

/* Comedy / Funny: bright, bubbly, warm */
.vod-card__cover--comedy-1 {
  background: linear-gradient(145deg, #ffd54a 0%, #ff9f1a 42%, #f57c00 100%);
}

.vod-card__cover--comedy-1 .vod-card__art {
  background:
    radial-gradient(circle at 18% 35%, rgba(255, 255, 255, 0.55) 0%, transparent 28%),
    radial-gradient(circle at 78% 55%, rgba(255, 255, 255, 0.35) 0%, transparent 32%),
    radial-gradient(circle at 50% 80%, rgba(255, 200, 80, 0.4) 0%, transparent 40%);
  mix-blend-mode: soft-light;
}

.vod-card__cover--comedy-2 {
  background: linear-gradient(155deg, #ff8fb1 0%, #e85d8c 50%, #c2185b 100%);
}

.vod-card__cover--comedy-2 .vod-card__art {
  background:
    radial-gradient(circle at 25% 70%, rgba(255, 255, 255, 0.45) 0%, transparent 25%),
    radial-gradient(circle at 70% 25%, rgba(255, 255, 255, 0.3) 0%, transparent 30%);
  mix-blend-mode: overlay;
  opacity: 0.9;
}

/* Series: cinematic bars + moody grade */
.vod-card__cover--series-1 {
  background: linear-gradient(180deg, #1a0f2e 0%, #2d1f4a 48%, #12081f 100%);
}

.vod-card__cover--series-1 .vod-card__art {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 12%, transparent 88%, rgba(0, 0, 0, 0.5) 100%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 3px,
      rgba(255, 255, 255, 0.04) 3px,
      rgba(255, 255, 255, 0.04) 4px
    );
  opacity: 0.85;
}

.vod-card__cover--series-2 {
  background: linear-gradient(165deg, #0d1f2d 0%, #163c52 50%, #0a1218 100%);
}

.vod-card__cover--series-2 .vod-card__art {
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(100, 200, 255, 0.15), transparent 50%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 22%);
}

/* TV Show: studio lights + stage */
.vod-card__cover--tv-1 {
  background: linear-gradient(185deg, #1e1040 0%, #3d2a6b 40%, #12082a 100%);
}

.vod-card__cover--tv-1 .vod-card__art {
  background:
    radial-gradient(ellipse 70% 55% at 50% -5%, rgba(255, 255, 255, 0.35) 0%, transparent 55%),
    radial-gradient(circle at 30% 100%, rgba(200, 80, 255, 0.2), transparent 45%),
    radial-gradient(circle at 70% 100%, rgba(80, 150, 255, 0.2), transparent 45%);
}

.vod-card__cover--tv-2 {
  background: linear-gradient(175deg, #0a2818 0%, #1a4d32 45%, #061208 100%);
}

.vod-card__cover--tv-2 .vod-card__art {
  background:
    radial-gradient(ellipse 90% 50% at 50% 0%, rgba(255, 255, 220, 0.2) 0%, transparent 45%),
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 50%, transparent 100%);
}

.vod-card__title {
  margin: 0.55rem 0 0.18rem;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--uk-navy);
}

.vod-card__meta {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--text-muted);
  font-weight: 500;
}

@media (min-width: 640px) {
  .vod-card {
    flex: 0 0 182px;
  }
}

@media (min-width: 1000px) {
  .vod-card {
    flex: 0 0 196px;
  }
}

/* --- Home: Customer reviews (WhatsApp screenshots, horizontal scroll) --- */
.reviews-strip {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: 100%;
  overflow-x: hidden;
}

.reviews-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(2.25rem, 4vw, 3rem) max(1rem, env(safe-area-inset-left, 0px)) clamp(2.5rem, 4vw, 3.25rem)
    max(1rem, env(safe-area-inset-right, 0px));
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  overflow-x: hidden;
}

.reviews-strip__header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(1.25rem, 2.5vw, 1.65rem);
}

.reviews-strip__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--uk-navy);
}

.reviews-strip__intro {
  margin: 0;
  font-size: clamp(0.92rem, 1.6vw, 1.02rem);
  line-height: 1.55;
  color: var(--text-muted);
}

.reviews-strip__icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: 0 0 1rem;
}

.reviews-strip__ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
}

.reviews-strip__ic--wa {
  color: #fff;
  background: linear-gradient(145deg, #2fe06d 0%, #25d366 45%, #128c7e 100%);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.reviews-strip__ic--star {
  color: #fff;
  background: linear-gradient(145deg, var(--uk-navy-soft) 0%, var(--uk-navy) 100%);
  box-shadow: 0 6px 18px rgba(1, 33, 105, 0.28);
}

.reviews-strip__empty {
  margin: 0.5rem auto 0;
  max-width: 32rem;
  padding: 1.15rem 1.25rem;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
  background: #f4f7fb;
  border: 1px dashed rgba(1, 33, 105, 0.15);
  border-radius: 12px;
}

.reviews-strip__code {
  font-size: 0.82em;
  font-family: ui-monospace, monospace;
  word-break: break-all;
  color: var(--uk-navy-soft);
}

.reviews-strip__slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto;
  align-items: start;
  column-gap: clamp(0.35rem, 2vw, 0.65rem);
  margin-top: 0.15rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.reviews-strip__center {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-width: 0;
  padding-bottom: 0.15rem;
}

.reviews-strip__btn {
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(1, 33, 105, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: var(--uk-navy);
  box-shadow:
    0 1px 2px rgba(1, 33, 105, 0.06),
    0 4px 12px rgba(1, 33, 105, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  cursor: pointer;
  flex-shrink: 0;
  align-self: center;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.reviews-strip__btn:hover {
  border-color: rgba(200, 16, 46, 0.35);
  color: var(--uk-red);
  box-shadow:
    0 2px 4px rgba(1, 33, 105, 0.06),
    0 8px 22px rgba(1, 33, 105, 0.12);
}

.reviews-strip__btn:active {
  transform: scale(0.96);
}

.reviews-strip__btn:focus-visible {
  outline: 2px solid var(--uk-navy);
  outline-offset: 2px;
}

.reviews-strip__btn--prev {
  grid-column: 1;
}

.reviews-strip__btn--next {
  grid-column: 3;
}

.reviews-strip__viewport {
  position: relative;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  padding: 0.2rem 0 0;
  overflow: hidden;
}

.reviews-strip__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: clamp(0.85rem, 2vw, 1.15rem);
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-x;
}

.reviews-strip__track::-webkit-scrollbar {
  display: none;
}

.reviews-strip__item {
  flex: 0 0 240px;
  min-width: 0;
  scroll-snap-align: start;
  margin: 0;
}

.reviews-strip__figure {
  margin: 0;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #0f172a;
  border: 1px solid rgba(1, 33, 105, 0.12);
  box-shadow:
    0 2px 8px rgba(1, 33, 105, 0.08),
    0 16px 40px rgba(1, 33, 105, 0.1);
}

.reviews-strip__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(70vh, 640px);
  object-fit: contain;
}

@media (min-width: 640px) {
  .reviews-strip__item {
    flex: 0 0 260px;
  }
}

@media (min-width: 1000px) {
  .reviews-strip__item {
    flex: 0 0 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-strip__btn:active {
    transform: none;
  }

  .reviews-strip__track {
    scroll-behavior: auto;
  }
}

/* --- Home: Pricing --- */
.pricing {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
  background: var(--bg-page);
}

.pricing__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(2.75rem, 5vw, 4rem) 1.25rem clamp(2.5rem, 5vw, 3.5rem);
}

.pricing__header {
  margin-bottom: 1.75rem;
  text-align: center;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.pricing__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--uk-navy);
}

.pricing__intro {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Comparison table - desktop (professional) */
.pricing-table-wrap {
  max-width: 1040px;
  margin: 0 auto;
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 14px;
  background: var(--bg-white);
  border: 1px solid rgba(1, 33, 105, 0.09);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 1px 2px rgba(1, 33, 105, 0.04),
    0 24px 56px rgba(1, 33, 105, 0.08);
}

.pricing-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: 0.875rem;
  font-variant-numeric: tabular-nums;
}

.pricing-table thead th {
  padding: 1.5rem 1rem 1.45rem;
  vertical-align: top;
  border-bottom: 2px solid rgba(1, 33, 105, 0.1);
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.pricing-table__corner {
  width: 34%;
  min-width: 11rem;
  text-align: left;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
  vertical-align: bottom;
  padding-bottom: 1.5rem;
  padding-left: 1.25rem;
}

.pricing-table__plan {
  position: relative;
  width: 22%;
  min-width: 7.5rem;
  text-align: center;
  font-weight: 400;
}

.pricing-table__plan--mid {
  background: linear-gradient(180deg, #eef2f7 0%, #e8edf4 100%);
  box-shadow: inset 1px 0 0 rgba(1, 33, 105, 0.07), inset -1px 0 0 rgba(1, 33, 105, 0.07);
}

.pricing-table__plan--best {
  background: linear-gradient(180deg, #fff5f5 0%, #fff0f0 100%);
  box-shadow: inset 0 0 0 1px rgba(200, 16, 46, 0.14);
}

.pricing-table__badge {
  display: block;
  margin: 0 auto 0.55rem;
  padding: 0.25rem 0.6rem;
  width: fit-content;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--uk-navy-soft);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(1, 33, 105, 0.08);
  border-radius: 6px;
}

.pricing-table__badge--best {
  color: #fff;
  background: var(--uk-red);
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(200, 16, 46, 0.25);
}

.pricing-table__duration {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--uk-navy-soft);
  margin-bottom: 0.4rem;
}

.pricing-table__price {
  display: block;
  font-size: clamp(1.75rem, 2.8vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--uk-navy);
}

.pricing-table__pound {
  font-size: 0.52em;
  font-weight: 800;
  vertical-align: super;
  margin-right: 0.04em;
}

.pricing-table__per {
  display: block;
  margin: 0.4rem 0 1rem;
  font-size: 0.76rem;
  color: #64748b;
  font-weight: 500;
}

.pricing-table__btn {
  margin: 0 auto;
}

.pricing-table tbody th {
  text-align: left;
  padding: 0.82rem 1rem 0.82rem 1.25rem;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #334155;
  border-bottom: 1px solid rgba(1, 33, 105, 0.07);
  background: var(--bg-white);
  transition: background 0.15s ease;
}

.pricing-table__feature {
  font-weight: 600;
  font-size: 0.84375rem;
  letter-spacing: -0.01em;
  color: var(--uk-navy);
}

.pricing-table tbody td {
  text-align: center;
  padding: 0.82rem 0.65rem;
  border-bottom: 1px solid rgba(1, 33, 105, 0.07);
  vertical-align: middle;
  transition: background 0.15s ease;
}

.pricing-table tbody tr:hover th {
  background: rgba(248, 250, 252, 0.98);
}

.pricing-table tbody tr:hover td:nth-child(2) {
  background: rgba(248, 250, 252, 0.98);
}

.pricing-table tbody tr:hover td:nth-child(3) {
  background: rgba(226, 232, 240, 0.55);
}

.pricing-table tbody tr:hover td:nth-child(4) {
  background: rgba(254, 242, 242, 0.65);
}

.pricing-table tbody tr:last-child th,
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody td:nth-child(3) {
  box-shadow: inset 1px 0 0 rgba(1, 33, 105, 0.06), inset -1px 0 0 rgba(1, 33, 105, 0.06);
  background: rgba(241, 245, 249, 0.65);
}

.pricing-table tbody td:nth-child(4) {
  box-shadow: inset 0 0 0 1px rgba(200, 16, 46, 0.08);
  background: rgba(255, 250, 250, 0.75);
}

.pricing-table tbody tr:nth-child(even) th {
  background: #fafbfc;
}

.pricing-table tbody tr:nth-child(even) td:nth-child(2) {
  background: #fafbfc;
}

.pricing-table tbody tr:nth-child(even) td:nth-child(3) {
  background: rgba(236, 242, 249, 0.85);
}

.pricing-table tbody tr:nth-child(even) td:nth-child(4) {
  background: rgba(255, 248, 248, 0.9);
}

.pricing-table__yes-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 7px;
  background: rgba(22, 101, 52, 0.11);
  color: #15803d;
  vertical-align: middle;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.pricing-table__yes {
  display: block;
}

.pricing-table__no-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 7px;
  vertical-align: middle;
}

.pricing-table__no-wrap--dash {
  background: #f1f5f9;
  color: #cbd5e1;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.2);
}

.pricing-table__em {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  color: #94a3b8;
}

.pricing-table__no-wrap--x {
  background: linear-gradient(145deg, #fef2f2 0%, #fce8e8 100%);
  color: #b91c1c;
  box-shadow: inset 0 0 0 1px rgba(200, 16, 46, 0.12);
}

.pricing-table__x {
  display: block;
  opacity: 0.88;
}

.pricing-table__free {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, #d32f3f 0%, var(--uk-red) 100%);
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(200, 16, 46, 0.25);
}

/* Mobile: plan cards (desktop keeps table above) */
.pricing-mobile {
  display: none;
}

.pricing-mcard {
  position: relative;
  padding: 1.35rem 1.2rem 1.2rem;
  background: var(--bg-white);
  border: 1px solid rgba(1, 33, 105, 0.08);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(1, 33, 105, 0.05), 0 16px 40px rgba(1, 33, 105, 0.07);
}

.pricing-mcard--tagged {
  padding-top: 2.75rem;
}

.pricing-mcard--best {
  border-color: rgba(200, 16, 46, 0.18);
  box-shadow: 0 2px 8px rgba(200, 16, 46, 0.06), 0 18px 44px rgba(1, 33, 105, 0.08);
}

.pricing-mcard__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: 0;
  padding: 0.22rem 0.55rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--uk-navy-soft);
  background: #e8edf4;
  border-radius: 4px;
}

.pricing-mcard__badge--best {
  color: #fff;
  background: var(--uk-red);
}

.pricing-mcard__head {
  text-align: center;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(1, 33, 105, 0.08);
}

.pricing-mcard__duration {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--uk-navy-soft);
}

.pricing-mcard__price {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--uk-navy);
}

.pricing-mcard__pound {
  font-size: 0.55em;
  font-weight: 800;
  vertical-align: super;
  margin-right: 0.04em;
}

.pricing-mcard__per {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-mcard__cta {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  justify-content: center;
}

.pricing-mcard__list {
  list-style: none;
  margin: 0;
  padding: 0.65rem 0.65rem 0.55rem;
  background: #f4f7fb;
  border-radius: 12px;
  border: 1px solid rgba(1, 33, 105, 0.06);
}

.pricing-mcard__row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.48rem 0;
  border-bottom: 1px solid rgba(1, 33, 105, 0.06);
  font-size: 0.84rem;
  line-height: 1.4;
}

.pricing-mcard__row:last-child {
  border-bottom: none;
  padding-bottom: 0.15rem;
}

.pricing-mcard__status {
  flex-shrink: 0;
  width: 1.75rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.06rem;
}

/* "Included" pill is wider than check column - keep it from overlapping the label */
.pricing-mcard__row--included .pricing-mcard__status,
.pricing-mcard__status:has(.pricing-mcard__tick-wrap--free) {
  width: auto;
  flex: 0 0 auto;
  justify-content: flex-start;
}

.pricing-mcard__tick-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 7px;
  background: rgba(22, 101, 52, 0.12);
}

.pricing-mcard__tick-wrap--empty {
  background: #e8edf3;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.25);
}

.pricing-mcard__tick-wrap--x {
  background: linear-gradient(145deg, #fef2f2 0%, #fce8e8 100%);
  box-shadow: inset 0 0 0 1px rgba(200, 16, 46, 0.12);
  color: #b91c1c;
}

.pricing-mcard__x {
  display: block;
}

.pricing-mcard__tick-wrap--free {
  width: auto;
  height: auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.pricing-mcard__yes {
  color: #166534;
}

.pricing-mcard__dash {
  color: #94a3b8;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
}

.pricing-mcard__label {
  flex: 1;
  min-width: 0;
  color: var(--uk-navy);
  font-weight: 600;
  font-size: 0.855rem;
  letter-spacing: -0.015em;
  text-align: left;
}

.pricing-mcard__free {
  display: inline-block;
  padding: 0.2rem 0.45rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--uk-red);
  border-radius: 5px;
}

@media (max-width: 899px) {
  .pricing-table-wrap--desktop {
    display: none;
  }

  .pricing__inner {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
    padding-bottom: max(2.25rem, env(safe-area-inset-bottom, 0px));
  }

  .pricing__header {
    margin-bottom: 1.5rem;
    max-width: none;
  }

  .pricing__title {
    font-size: clamp(1.25rem, 4.2vw, 1.65rem);
    line-height: 1.2;
    padding-inline: 0.15rem;
  }

  .pricing__intro {
    font-size: 0.9rem;
    line-height: 1.58;
    max-width: 36rem;
    margin-inline: auto;
  }

  .pricing-mobile {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(0.95rem, 3vw, 1.2rem);
    max-width: min(26rem, 100%);
    margin: 0 auto;
    width: 100%;
  }

  .pricing-mcard {
    padding: clamp(1.1rem, 3.2vw, 1.35rem) clamp(0.95rem, 3.5vw, 1.2rem)
      clamp(1rem, 2.8vw, 1.2rem);
    border-radius: 14px;
    width: 100%;
    min-width: 0;
  }

  .pricing-mcard--tagged {
    padding-top: clamp(2.5rem, 7vw, 2.75rem);
  }

  .pricing-mcard__badge {
    top: 0.85rem;
    right: 0.85rem;
    max-width: calc(100% - 1.7rem);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .pricing-mcard__head {
    padding-bottom: 0.85rem;
    margin-bottom: 0.85rem;
  }

  .pricing-mcard__duration {
    font-size: 0.74rem;
  }

  .pricing-mcard__price {
    font-size: clamp(1.65rem, 9vw, 2rem);
  }

  .pricing-mcard__per {
    font-size: 0.78rem;
  }

  .pricing-mcard__cta {
    min-height: 2.75rem;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .pricing-mcard__list {
    padding: 0.55rem clamp(0.45rem, 2vw, 0.65rem) 0.5rem;
  }

  .pricing-mcard__row {
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 0;
    font-size: 0.8125rem;
    line-height: 1.38;
  }

  .pricing-mcard__status {
    align-self: center;
    padding-top: 0;
    width: 1.65rem;
  }

  .pricing-mcard__row--included .pricing-mcard__status,
  .pricing-mcard__status:has(.pricing-mcard__tick-wrap--free) {
    width: auto;
  }

  /* Do not force 1:1 box on the "Included" pill - it overrides --free and causes overlap */
  .pricing-mcard__tick-wrap:not(.pricing-mcard__tick-wrap--free) {
    width: 1.55rem;
    height: 1.55rem;
    flex-shrink: 0;
  }

  .pricing-mcard__label {
    font-size: 0.8125rem;
    line-height: 1.42;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .pricing-mcard__tick-wrap--free .pricing-mcard__free {
    font-size: 0.62rem;
    padding: 0.18rem 0.4rem;
  }
}

@media (max-width: 420px) {
  .pricing__inner {
    padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
  }

  .pricing__intro {
    font-size: 0.875rem;
  }

  .pricing-mobile {
    gap: 0.9rem;
  }

  .pricing-mcard__list {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    border-radius: 10px;
  }

  .pricing-mcard__row {
    gap: 0.55rem;
    font-size: 0.78rem;
  }

  .pricing-mcard__label {
    font-size: 0.78rem;
  }
}

@media (min-width: 900px) {
  .pricing-mobile {
    display: none !important;
  }

  .pricing-table-wrap {
    min-width: 0;
  }

  .pricing-table {
    min-width: 0;
  }

  .pricing-table thead th:first-child,
  .pricing-table tbody th:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    box-shadow: 6px 0 12px -6px rgba(1, 33, 105, 0.12);
  }

  .pricing-table tbody th:first-child {
    z-index: 1;
  }
}

/* --- Home: How to order (reuses .why-card / .why__grid from “Why choose us”) --- */
.how-order {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 45%, #f0f3f9 100%);
  border-top: 1px solid var(--border);
}

/* Tablet: centred 2×2; laptop: centred row of four (still responsive) */
@media (min-width: 640px) and (max-width: 999px) {
  .how-order .why__grid.how-order__grid {
    grid-template-columns: repeat(2, minmax(0, 20rem));
    justify-content: center;
    width: 100%;
  }
}

@media (min-width: 1000px) {
  .how-order .why__grid.how-order__grid {
    grid-template-columns: repeat(4, minmax(0, 14.75rem));
    justify-content: center;
    width: 100%;
  }
}

.how-order .why-card__text a {
  font-weight: 700;
  color: var(--uk-navy-soft);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.how-order .why-card__text a:hover {
  color: var(--uk-red);
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg {
    animation: none;
  }
}

/* --- Blog (listing + articles) --- */
.blog-page {
  flex: 1;
}

.blog-list-section {
  padding: clamp(1.5rem, 4vw, 2.75rem) 1.25rem 3rem;
  background: linear-gradient(180deg, #f6f8fc 0%, #f0f3f9 100%);
  border-top: 1px solid var(--border);
}

.blog-list-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.blog-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.blog-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.blog-card:hover {
  box-shadow: 0 8px 28px rgba(1, 33, 105, 0.12);
  transform: translateY(-2px);
}

.blog-card__media {
  display: block;
  aspect-ratio: 1200 / 675;
  overflow: hidden;
  background: #e8ecf3;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card__body {
  padding: 1.1rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.blog-card__meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.blog-card__title {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.blog-card__title a {
  color: var(--uk-navy);
  text-decoration: none;
}

.blog-card__title a:hover {
  color: var(--uk-red);
}

.blog-card__excerpt {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.blog-card__more {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--uk-red);
  margin-top: 0.25rem;
}

.blog-card__more:hover {
  text-decoration: underline;
}

.blog-page--article {
  padding-bottom: 3rem;
}

.blog-article {
  max-width: 46rem;
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 2rem) 1.25rem 0;
}

.blog-breadcrumb {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.blog-breadcrumb a {
  font-weight: 600;
}

.blog-article__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.45rem, 3.5vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--uk-navy);
}

.blog-article__meta {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.blog-article__figure {
  margin: 0 0 1.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.blog-article__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.blog-article__prose {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-primary);
}

.blog-article__prose h2 {
  margin: 1.75rem 0 0.65rem;
  font-size: 1.2rem;
  color: var(--uk-navy);
  letter-spacing: -0.02em;
}

.blog-article__prose p {
  margin: 0 0 1rem;
}

.blog-article__prose ul {
  margin: 0 0 1rem 1.1rem;
  padding: 0;
}

.blog-article__prose li {
  margin-bottom: 0.4rem;
}

.blog-article__prose a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.blog-article__footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.blog-article__footer p {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
