/* ============================================================================
   Striker (striker-sa.com) — "Night-match broadcast" design system
   Dark sports-broadcast graphics language: near-black navy, a signature
   teal-to-mint gradient, angular scoreboard-style cuts, and stark
   black-and-white action photography as the visual anchor.
   ============================================================================ */

:root {
  /* Palette */
  --bg: #0a0e1a;
  --bg-alt: #0d1224;
  --surface: #131a2e;
  --surface-2: #182140;
  --ink: #f2f5fb;
  --muted: #93a0c2;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);

  --accent: #22e6b8;
  --accent-dark: #14a189;
  --accent-grad: linear-gradient(135deg, #22e6b8 0%, #14a189 100%);
  --live: #f97316;

  /* Shape (locked scale: sharp hero cuts, 16px cards, pill controls) */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --header-h: 76px;

  /* Type */
  --font-display: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 90px rgba(34, 230, 184, 0.22);
}

/* ── Reset ─────────────────────────────────────────────────────────────── */
* {
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
p {
  margin: 0 0 1em;
  color: var(--muted);
}
button {
  font-family: inherit;
}

.container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}
.container-narrow {
  width: min(760px, 92vw);
  margin-inline: auto;
}

/* ── Scroll reveal — gated behind html.js, never invisible without JS ───── */
html.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
html.js .reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html.js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.94rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}
.btn:active {
  transform: scale(0.97);
}
.btn-primary {
  background: var(--accent-grad);
  color: #06170f;
  box-shadow: 0 10px 30px rgba(34, 230, 184, 0.28);
}
.btn-primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 14px 36px rgba(34, 230, 184, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-lg {
  padding: 1.05rem 2.1rem;
  font-size: 1rem;
}
.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.84rem;
}
.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ── Header / Nav ─────────────────────────────────────────────────────── */
.site-header {
  direction: ltr;
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(10, 14, 26, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 26px;
  width: auto;
}
.site-nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}
.site-nav-desktop a:not(.btn) {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 0.2s ease;
}
.site-nav-desktop a:not(.btn):hover {
  color: var(--ink);
}
.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.lang-pill {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.3rem 0.55rem;
  border-radius: var(--radius-sm);
  color: var(--muted);
  border: 1px solid var(--border);
}
.lang-pill.lang-active {
  color: var(--accent);
  border-color: var(--accent);
}
a.lang-pill:hover {
  color: var(--ink);
  border-color: var(--border-strong);
}

.nav-toggle {
  display: none;
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-burger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.site-nav {
  display: none;
}

@media (max-width: 860px) {
  .site-nav-desktop {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 800;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: 1.2rem 6vw 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    transform: translateY(-110%);
    visibility: hidden;
    transition:
      transform 0.25s ease,
      visibility 0.25s ease;
  }
  .site-nav a:not(.btn),
  .site-nav .lang-switcher {
    padding: 0.65rem 0;
  }
  .site-nav a:not(.btn) {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--ink);
    border-bottom: 1px solid var(--border);
  }
  .site-nav .btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.6rem;
  }
  .site-nav .lang-switcher {
    justify-content: flex-start;
  }
  .nav-toggle:checked ~ .site-nav {
    transform: translateY(0);
    visibility: visible;
  }
}

/* ── Section rhythm ───────────────────────────────────────────────────── */
.section {
  padding: 6rem 0;
}
.section.bg-alt {
  background: var(--bg-alt);
}
.section-head {
  max-width: 620px;
  margin-bottom: 3rem;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.page-hero {
  padding: calc(var(--header-h) + 3.6rem) 0 3.2rem;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
}
.page-hero p {
  font-size: 1.05rem;
}

/* ── Hero (home) ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-top: var(--header-h);
  overflow: hidden;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(
      100deg,
      rgba(10, 14, 26, 0.95) 0%,
      rgba(10, 14, 26, 0.8) 30%,
      rgba(10, 14, 26, 0.4) 58%,
      rgba(10, 14, 26, 0.18) 100%
    ),
    linear-gradient(to top, rgba(10, 14, 26, 0.92) 0%, rgba(10, 14, 26, 0) 32%),
    radial-gradient(55% 60% at 85% 15%, rgba(34, 230, 184, 0.14), transparent 65%), url('/assets/img/hero.jpg');
  background-size: cover, cover, cover, cover;
  background-position:
    center,
    center,
    center,
    center 30%;
  background-repeat: no-repeat;
}
.hero-inner {
  position: relative;
  z-index: 1;
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 3rem 0 4rem;
}
.hero-copy {
  max-width: 620px;
}
.hero-copy h1 {
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
}
.hero-copy .accent-text {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy p.lede {
  font-size: 1.1rem;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(10, 14, 26, 0.85);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 1.3rem;
}
.hero-live-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--live);
}

@media (max-width: 940px) {
  .hero-inner {
    min-height: auto;
    padding: 2.6rem 0 3.4rem;
  }
  .hero-copy {
    max-width: none;
  }
  .hero-bg {
    background-position:
      center,
      center,
      center,
      70% 30%;
  }
}

/* ── Showcase (screens strip) ─────────────────────────────────────────── */
.showcase-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.showcase-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
}
.showcase-item img {
  width: 100%;
  height: auto;
}
.showcase-item.tall {
  grid-row: span 1;
}
@media (max-width: 760px) {
  .showcase-row {
    grid-template-columns: 1fr 1fr;
  }
  .showcase-item:first-child {
    grid-column: span 2;
  }
}

/* ── Why-us strip (angular banner) ───────────────────────────────────── */
.why-us {
  position: relative;
  background: linear-gradient(120deg, var(--surface) 0%, var(--bg-alt) 100%);
  clip-path: polygon(0 3.5%, 100% 0, 100% 96.5%, 0 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem 2rem;
}
.why-item {
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
}
.why-item .num {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent);
  font-size: 0.85rem;
}
.why-item h3 {
  font-size: 1.05rem;
  margin: 0.5rem 0 0.4rem;
}
.why-item p {
  font-size: 0.92rem;
  margin: 0;
}
@media (max-width: 760px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 500px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Feature cards ────────────────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}
.feature-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}
.feature-ico {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(34, 230, 184, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.feature-ico svg {
  width: 22px;
  height: 22px;
}
.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.feature-card p {
  font-size: 0.92rem;
  margin: 0;
}
@media (max-width: 860px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Split sections (media + copy) ───────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.split-copy .btn {
  margin-top: 0.6rem;
}
@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}

/* ── Steps ────────────────────────────────────────────────────────────── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
}
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  color: #06170f;
  background: var(--accent-grad);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.step h3 {
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
}
.step p {
  font-size: 0.9rem;
  margin: 0;
}
@media (max-width: 760px) {
  .steps-row {
    grid-template-columns: 1fr;
  }
}

/* ── Pricing cards ────────────────────────────────────────────────────── */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}
.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-grad);
}
.plan-operator {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}
.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.price-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--ink);
  margin: 0;
}
.price-freq {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}
.plan-trial {
  font-size: 0.84rem;
  color: var(--accent);
}
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.plan-features li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  background: var(--accent);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.plan-unsub {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}
.plan-unsub a {
  color: var(--accent);
}
[dir='rtl'] .plan-features li {
  padding-left: 0;
  padding-right: 1.4rem;
}
[dir='rtl'] .plan-features li::before {
  left: auto;
  right: 0;
  transform: scaleX(-1);
}

/* ── CTA banner ───────────────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  text-align: center;
  padding: 5.5rem 0;
  background: linear-gradient(120deg, var(--surface), var(--bg-alt));
  clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 96%);
}
.cta-banner h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
}
.cta-banner .btn {
  margin-top: 0.5rem;
}

/* ── Fan / lifestyle CTA strip ────────────────────────────────────────── */
.fan-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: center;
}
.fan-section img {
  max-height: 420px;
  margin-inline: auto;
}
.fan-copy .btn {
  margin-top: 0.6rem;
}
@media (max-width: 860px) {
  .fan-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .fan-section img {
    order: -1;
  }
}

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.3rem 1.3rem;
}
.faq-item summary {
  cursor: pointer;
  padding: 1.05rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-body {
  padding: 0 0 1.15rem;
  font-size: 0.93rem;
  color: var(--muted);
}
.faq-body p {
  margin: 0;
  color: inherit;
}

/* ── Values / vision (about) ─────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.value-card {
  border-top: 2px solid var(--accent);
  padding-top: 1.2rem;
}
.value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.value-card p {
  font-size: 0.92rem;
  margin: 0;
}
@media (max-width: 760px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}
.vision-panel {
  background: linear-gradient(120deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.6rem;
  text-align: center;
}
.vision-panel h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}
.vision-panel-copy {
  width: min(60ch, 100%);
  margin-inline: auto;
}
.vision-panel-copy p {
  font-size: 1.02rem;
}

/* ── Contact cards / care block ──────────────────────────────────────── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-bottom: 3rem;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.contact-card p {
  font-size: 0.9rem;
}
.contact-card a {
  color: var(--accent);
  font-weight: 600;
}
.contact-hours {
  color: var(--ink);
  font-weight: 600;
}
@media (max-width: 760px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

/* ── Forms (contact + signin) ─────────────────────────────────────────── */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.4rem;
}
.form-card.narrow {
  max-width: 460px;
  margin-inline: auto;
}
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.4rem;
}
.form-group {
  margin-bottom: 1.1rem;
}
.contact-form h3,
.form-card h3 {
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.signin-card button,
.form-card button {
  margin-top: 0.5rem;
}
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--ink);
  margin-bottom: 0.45rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.8rem 0.95rem;
  transition: border-color 0.2s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #5c6790;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(34, 230, 184, 0.16);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.error-msg,
.errorMsg {
  display: none;
  color: #ff6b6b;
  font-size: 0.82rem;
  margin-top: 0.35rem;
}
.form-success,
.successMsg {
  display: none;
  color: var(--accent);
  font-weight: 600;
  margin-top: 1rem;
  font-size: 0.92rem;
}
.form-msg {
  font-size: 0.9rem;
  margin-top: 1rem;
}
.form-msg.ok {
  color: var(--accent);
  font-weight: 600;
}
.form-msg.err {
  color: #ff6b6b;
}
.form-disclaimer {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 1rem;
}

.signin-wrap {
  padding: calc(var(--header-h) + 3.5rem) 0 5rem;
}
.signin-card {
  text-align: center;
}
.signin-card p {
  font-size: 0.95rem;
}

/* ── Not found ────────────────────────────────────────────────────────── */
.not-found {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 0 3rem;
}
.big-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5rem, 16vw, 9rem);
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.not-found h1 {
  font-size: 1.6rem;
}
.not-found .btn {
  margin-top: 1.3rem;
}

/* ── Legal pages ──────────────────────────────────────────────────────── */
.legals-wrap {
  padding: 3.5rem 0;
}
.legals {
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 5rem;
}
.legals .container {
  width: min(840px, 92vw);
  margin-inline: auto;
}
.legals h1 {
  display: none;
}
.legals h6 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin: 2rem 0 0.5rem;
}
.legals p {
  margin-bottom: 0.85rem;
  line-height: 1.75;
  color: var(--muted);
}
.legals ul {
  margin: 0.5rem 0 1rem;
  padding-inline-start: 1.2rem;
  list-style: disc;
}
.legals li {
  margin-bottom: 0.4rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ── Unsubscribe / opt-out box ───────────────────────────────────────── */
.optout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}
.optout-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
}
.optout-card h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.optout-sms {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.optout-keyword {
  font-family: 'DM Sans', monospace;
  font-weight: 700;
  background: var(--bg-alt);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.9rem;
  letter-spacing: 0.03em;
  color: var(--accent);
}
.optout-arrow {
  color: var(--muted);
}
.optout-dest {
  font-family: 'DM Sans', monospace;
  font-weight: 700;
  background: var(--bg-alt);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.9rem;
  color: var(--ink);
}
.optout-link {
  color: var(--accent);
  font-weight: 600;
  word-break: break-word;
}
.optout-notes {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.optout-notes li {
  font-size: 0.86rem;
  color: var(--muted);
  position: relative;
  padding-left: 1.3rem;
}
.optout-notes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
}
[dir='rtl'] .optout-notes li {
  padding-left: 0;
  padding-right: 1.3rem;
}
[dir='rtl'] .optout-notes li::before {
  left: auto;
  right: 0;
}

.refund-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.refund-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  font-size: 0.92rem;
  color: var(--muted);
  position: relative;
  padding-left: 2.2rem;
}
.refund-list li::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 1.2rem;
  width: 8px;
  height: 8px;
  background: var(--accent);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
[dir='rtl'] .refund-list li {
  padding-left: 1.2rem;
  padding-right: 2.2rem;
}
[dir='rtl'] .refund-list li::before {
  left: auto;
  right: 1rem;
  transform: scaleX(-1);
}

/* ── Footer ───────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 4rem 0 1.6rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo img {
  height: 24px;
  margin-bottom: 1rem;
}
.footer-brand-copy {
  width: min(32ch, 100%);
}
.footer-brand-copy p {
  font-size: 0.9rem;
}
.footer-entity {
  font-size: 0.84rem;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.8;
}
.footer-entity a {
  color: var(--accent);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 1rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-col a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s ease;
}
.footer-col a:hover {
  color: var(--accent);
}
.footer-lang {
  display: flex;
  gap: 0.4rem;
  margin-top: 1rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  border-top: 1px solid var(--border);
  padding-top: 1.6rem;
  font-size: 0.82rem;
  color: var(--muted);
}
@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ── RTL rules ────────────────────────────────────────────────────────── */
[dir='rtl'] body {
  font-family: 'DM Sans', 'Tajawal', sans-serif;
}
[dir='rtl'] .form-group input[type='text'],
[dir='rtl'] .form-group textarea {
  direction: rtl;
  text-align: right;
}
[dir='rtl'] .form-group input[type='email'],
[dir='rtl'] .form-group input[type='tel'] {
  direction: ltr;
  text-align: left;
}
[dir='rtl'] .form-group label {
  text-align: right;
}
[dir='rtl'] .phone-row {
  direction: ltr;
}
[dir='rtl'] .signin-card .form-group label {
  text-align: center;
}
[dir='rtl'] .why-us,
[dir='rtl'] .cta-banner {
  clip-path: polygon(100% 3.5%, 0 0, 0 96.5%, 100% 100%);
}
[dir='rtl'] .hero-visual-frame {
  clip-path: polygon(91% 0%, 0% 0%, 9% 100%, 100% 100%);
}

@media (max-width: 760px) {
  .section {
    padding: 4.2rem 0;
  }
}
