/* Ligafox — league / fox light UI (mobile-first) */

:root {
  --color-bg: #0a1f45;
  --color-bg-soft: #0d2a5c;
  --color-surface: #11356e;
  --color-ink: #eef5ff;
  --color-muted: #9bb4d8;
  --color-primary: #f05a28;
  --color-primary-dark: #c94316;
  --color-teal: #3da6ff;
  --color-teal-deep: #0b4f9c;
  --color-border: rgba(157, 190, 235, 0.18);
  --color-glass: rgba(10, 31, 69, 0.92);
  --color-footer: #061229;
  --radius-sm: 6px;
  --radius-md: 10px;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --container: 1120px;
  --header-h: 4.25rem;
  --font-sans: "Figtree", "Segoe UI", Tahoma, sans-serif;
  --font-display: "Syne", "Segoe UI", Tahoma, sans-serif;
  --transition: 200ms ease;
  --focus: 0 0 0 3px rgba(61, 166, 255, 0.4);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-ink);
  background-color: var(--color-bg);
  background-image:
    linear-gradient(135deg, rgba(26, 140, 255, 0.18) 0%, transparent 42%),
    linear-gradient(320deg, rgba(8, 40, 90, 0.55) 0%, transparent 40%),
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 11px,
      rgba(157, 190, 235, 0.04) 11px,
      rgba(157, 190, 235, 0.04) 12px
    );
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  padding-bottom: env(safe-area-inset-bottom);
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

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

a {
  color: var(--color-teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--color-primary);
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 4px;
}

.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;
}

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -100px;
  z-index: 1000;
  background: #0b4f9c;
  color: #fff;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: var(--space-4);
  color: #fff;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.btn,
.nav-toggle,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color var(--transition), background var(--transition);
}

.site-header.is-scrolled {
  background: #000;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.header-inner {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand img {
  width: 152px;
  height: auto;
  display: block;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav ul a {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.primary-nav ul a:hover,
.primary-nav ul a[aria-current="true"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: transparent;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-bar {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary-dark);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

.btn-on-dark {
  background: #fff;
  color: #0a1f45;
  border-color: #fff;
}

.btn-on-dark:hover {
  background: #eaf2fc;
  color: #071830;
}

.btn-lg {
  min-height: 3.25rem;
  padding-inline: 1.75rem;
  font-size: 1.02rem;
}

.btn-nav {
  white-space: nowrap;
  min-height: 2.5rem;
  padding: 0.45rem 1rem;
  font-size: 0.88rem;
}

/* ========== Sections ========== */
section {
  padding-block: clamp(3rem, 6vw, 4.75rem);
}

.section-header {
  max-width: 34rem;
  margin-bottom: clamp(1.5rem, 3.5vw, 2.25rem);
}

.section-header h2,
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 var(--space-3);
  font-size: clamp(1.65rem, 3.6vw, 2.35rem);
}

.section-header p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  display: block;
  padding: 0;
  overflow: clip;
  background: #000;
}

.hero-media {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  line-height: 0;
  background: #000;
}

.hero-media > a {
  display: block;
  width: 100%;
  line-height: 0;
}

.hero-media-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  aspect-ratio: 1024 / 576;
}

.hero-media::after {
  display: none;
}

.hero-panel {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.75rem) 0 clamp(2.25rem, 5vw, 3.25rem);
  color: #fff;
}

.hero-brand {
  margin: 0 0 var(--space-3);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 7vw, 4rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: #fff;
  animation: brand-rise 800ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 var(--space-4);
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  max-width: 22ch;
  color: #fff;
}

.hero-sub {
  margin: 0 0 var(--space-5);
  max-width: 36rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

@keyframes brand-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ========== Benefits ========== */
.benefits {
  background: var(--color-bg-soft);
}

.benefit-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--color-border);
}

.benefit-rail li {
  display: grid;
  gap: 0.35rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--color-border);
  transition: padding-left 220ms ease;
}

.benefit-rail li:hover {
  padding-left: 0.5rem;
}

.benefit-rail h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.benefit-rail p {
  margin: 0;
  color: var(--color-muted);
  max-width: 40rem;
}

@media (min-width: 720px) {
  .benefit-rail {
    grid-template-columns: 1fr 1fr;
    column-gap: 2.5rem;
  }
}

/* ========== About ========== */
.about {
  padding-top: 0;
  background: var(--color-surface);
}

.about-split {
  display: grid;
  gap: 0;
}

.about-copy {
  width: min(100% - 2rem, 36rem);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.75rem) 0;
}

.about-copy > p {
  margin: 0 0 1rem;
  color: var(--color-muted);
}

.about-media {
  background: var(--color-teal-deep);
  min-height: 280px;
}

.eeat-box {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-teal);
  background: rgba(8, 40, 90, 0.35);
}

.eeat-box p {
  margin: 0 0 0.55rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.eeat-box p:last-child {
  margin-bottom: 0;
}

.eeat-box strong {
  color: var(--color-ink);
}

.eeat-meta {
  font-size: 0.85rem !important;
  color: var(--color-teal) !important;
}

.about-media figure {
  margin: 0;
  height: 100%;
}

.about-media figure > a {
  display: block;
  height: 100%;
  line-height: 0;
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

@media (min-width: 900px) {
  .about-split {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
  }

  .about-copy {
    width: auto;
    max-width: 36rem;
    margin: 0;
    margin-left: max(1rem, calc((100% - var(--container)) / 2));
    padding-block: clamp(3.5rem, 7vw, 5.5rem);
    padding-right: 2rem;
  }

  .about-media {
    min-height: 100%;
  }
}

/* ========== Data tables ========== */
.tables {
  background: var(--color-bg-soft);
}

.table-block {
  margin-top: 2rem;
}

.table-block h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.8vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(61, 166, 255, 0.35);
  border-radius: var(--radius-md);
  background: rgba(6, 18, 41, 0.55);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.table-scroll:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.data-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.95rem;
}

.data-table caption {
  caption-side: top;
  padding: 0.8rem 1rem;
  text-align: left;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  background: rgba(61, 166, 255, 0.16);
  border-bottom: 1px solid rgba(61, 166, 255, 0.28);
}

.data-table th,
.data-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid rgba(157, 190, 235, 0.16);
  border-right: 1px solid rgba(157, 190, 235, 0.12);
}

.data-table th:last-child,
.data-table td:last-child {
  border-right: 0;
}

.data-table thead th {
  background: #0b4f9c;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  border-bottom: 1px solid rgba(126, 208, 255, 0.35);
}

.data-table tbody th {
  font-weight: 700;
  color: #fff;
  width: auto;
  background: rgba(17, 53, 110, 0.35);
}

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

.data-table tbody tr:nth-child(even) td,
.data-table tbody tr:nth-child(even) th {
  background: rgba(61, 166, 255, 0.06);
}

.data-table tbody tr:hover td,
.data-table tbody tr:hover th {
  background: rgba(61, 166, 255, 0.12);
}

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

@media (max-width: 700px) {
  .data-table {
    min-width: 0;
    table-layout: auto;
    font-size: 0.88rem;
  }

  .data-table th,
  .data-table td {
    padding: 0.7rem 0.75rem;
  }
}

/* ========== Features ========== */
.features {
  background: var(--color-bg);
}

.features-layout {
  display: grid;
  gap: 1.5rem;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.feature-list li {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--color-border);
  align-items: start;
}

.feature-index {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-teal);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.feature-list h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
}

.feature-list p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.98rem;
}

@media (min-width: 900px) {
  .features-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
    align-items: start;
  }

  .features-layout .section-header {
    position: sticky;
    top: calc(var(--header-h) + 1.25rem);
    margin-bottom: 0;
  }

  .feature-list {
    column-count: 1;
  }
}

/* ========== Stats ========== */
.stats {
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  background: var(--color-teal);
  color: #fff;
}

.stats-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 1.25rem;
}

.stats-rail strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stats-rail span {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 800px) {
  .stats-rail {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========== How ========== */
.how {
  background: var(--color-bg-soft);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  counter-reset: none;
}

.steps li {
  padding-top: 0.25rem;
  border-top: 3px solid var(--color-ink);
}

.step-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 0.65rem;
}

.steps h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

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

.how-cta {
  margin: 2rem 0 0;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

/* ========== Why ========== */
.why {
  background: var(--color-surface);
}

.why-layout {
  display: grid;
  gap: 1.25rem;
}

.why .table-scroll {
  width: 100%;
  max-width: 100%;
}

.why .data-table {
  min-width: 0;
  table-layout: fixed;
}

.why .data-table col.col-no { width: 4.25rem; }
.why .data-table col.col-alasan { width: 34%; }
.why .data-table col.col-keunggulan { width: auto; }

.why .data-table tbody td:first-child {
  width: 4.25rem;
  color: var(--color-teal);
  font-weight: 800;
  font-family: var(--font-display);
  text-align: center;
  background: rgba(61, 166, 255, 0.08);
}

.why .data-table tbody th {
  width: 34%;
  color: #fff;
}

.why .data-table tbody td:last-child {
  color: rgba(238, 245, 255, 0.86);
  line-height: 1.5;
}

@media (max-width: 640px) {
  .why .data-table,
  .why .data-table thead,
  .why .data-table tbody,
  .why .data-table tr,
  .why .data-table th,
  .why .data-table td {
    display: block;
    width: 100%;
  }

  .why .data-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .why .data-table caption {
    display: block;
  }

  .why .data-table tbody tr {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(157, 190, 235, 0.18);
  }

  .why .data-table tbody tr:nth-child(even) {
    background: rgba(61, 166, 255, 0.06);
  }

  .why .data-table tbody td,
  .why .data-table tbody th {
    border: 0;
    padding: 0.2rem 0;
    background: transparent !important;
    width: 100% !important;
    text-align: left;
  }

  .why .data-table tbody td:first-child {
    color: var(--color-teal);
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
  }

  .why .data-table tbody td:first-child::before {
    content: "No ";
    font-weight: 600;
    color: var(--color-muted);
  }

  .why .data-table tbody th {
    font-size: 1.02rem;
    margin-bottom: 0.25rem;
  }

  .why .data-table tbody td:last-child {
    color: var(--color-muted);
  }
}

/* ========== Testimonials ========== */
.testimonials {
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(61, 166, 255, 0.18), transparent 55%),
    linear-gradient(180deg, #071830 0%, var(--color-bg) 100%);
  overflow: clip;
}

.testimonials-layout {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.testimonials-header {
  max-width: 36rem;
  margin-bottom: 0;
}

.testimonials-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-teal);
}

.quote-featured {
  margin: 0;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid rgba(61, 166, 255, 0.35);
  border-left: 4px solid var(--color-teal);
  background:
    linear-gradient(135deg, rgba(17, 53, 110, 0.95) 0%, rgba(10, 31, 69, 0.9) 100%);
  position: relative;
}

.quote-featured::before {
  content: "“";
  position: absolute;
  top: 0.35rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 7rem);
  line-height: 1;
  color: rgba(61, 166, 255, 0.22);
  pointer-events: none;
}

.quote-featured p {
  margin: 0 0 1.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
  max-width: 28ch;
  position: relative;
  z-index: 1;
}

.quote-featured footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  position: relative;
  z-index: 1;
}

.quote-featured img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-teal);
}

.quote-featured cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.98rem;
  color: #fff;
}

.quote-featured span {
  display: block;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 0.15rem;
}

.quote-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 280px);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-teal) transparent;
}

.quote-strip::-webkit-scrollbar {
  height: 6px;
}

.quote-strip::-webkit-scrollbar-thumb {
  background: rgba(61, 166, 255, 0.45);
  border-radius: 999px;
}

.quote-strip blockquote {
  margin: 0;
  padding: 1.15rem 1.15rem 1.15rem 1.25rem;
  scroll-snap-align: start;
  border-top: 1px solid rgba(61, 166, 255, 0.28);
  background: rgba(17, 53, 110, 0.55);
}

.quote-strip blockquote p {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--color-ink);
  font-weight: 500;
}

.quote-strip footer {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.quote-strip img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
}

.quote-strip cite {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--color-muted);
  font-weight: 600;
}

@media (min-width: 900px) {
  .testimonials-layout {
    grid-template-columns: 0.9fr 1.1fr;
    grid-template-areas:
      "header featured"
      "strip strip";
    align-items: end;
    column-gap: 2.5rem;
  }

  .testimonials-header {
    grid-area: header;
  }

  .quote-featured {
    grid-area: featured;
  }

  .quote-strip {
    grid-area: strip;
    display: grid;
    grid-auto-flow: unset;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    grid-auto-columns: unset;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }
}

/* ========== FAQ ========== */
.faq {
  background: var(--color-bg-soft);
}

.faq-layout {
  display: grid;
  gap: 1.25rem;
}

.faq .table-scroll {
  width: 100%;
  max-width: 100%;
}

.faq .data-table {
  min-width: 0;
  table-layout: fixed;
}

.faq .data-table col.col-no { width: 4.25rem; }
.faq .data-table col.col-q { width: 32%; }
.faq .data-table col.col-a { width: auto; }

.faq .data-table tbody td:first-child {
  width: 4.25rem;
  color: var(--color-teal);
  font-weight: 800;
  font-family: var(--font-display);
  text-align: center;
  background: rgba(61, 166, 255, 0.08);
}

.faq .data-table tbody th {
  color: #fff;
  line-height: 1.35;
}

.faq .data-table tbody td:last-child {
  color: rgba(238, 245, 255, 0.86);
  line-height: 1.5;
}

@media (max-width: 640px) {
  .faq .data-table,
  .faq .data-table thead,
  .faq .data-table tbody,
  .faq .data-table tr,
  .faq .data-table th,
  .faq .data-table td {
    display: block;
    width: 100%;
  }

  .faq .data-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .faq .data-table caption {
    display: block;
  }

  .faq .data-table tbody tr {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(157, 190, 235, 0.18);
  }

  .faq .data-table tbody tr:nth-child(even) {
    background: rgba(61, 166, 255, 0.06);
  }

  .faq .data-table tbody td,
  .faq .data-table tbody th {
    border: 0;
    padding: 0.2rem 0;
    background: transparent !important;
    width: 100% !important;
    text-align: left;
  }

  .faq .data-table tbody td:first-child {
    color: var(--color-teal);
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
  }

  .faq .data-table tbody td:first-child::before {
    content: "No ";
    font-weight: 600;
    color: var(--color-muted);
  }

  .faq .data-table tbody th {
    font-size: 1.02rem;
    margin-bottom: 0.25rem;
  }

  .faq .data-table tbody td:last-child {
    color: var(--color-muted);
  }
}

/* ========== CTA ========== */
.cta-band {
  background:
    linear-gradient(135deg, var(--color-teal-deep) 0%, var(--color-teal) 55%, #4db0ff 100%);
  color: #fff;
  padding-block: clamp(3.25rem, 7vw, 5rem);
}

.cta-inner {
  text-align: left;
  max-width: 36rem;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.08rem;
}

/* ========== Footer ========== */
.site-footer {
  background: var(--color-footer);
  color: rgba(255, 255, 255, 0.75);
  padding: 0;
  text-align: center;
}

.footer-top {
  padding-block: 2.5rem 1.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand .brand {
  display: inline-flex;
  justify-content: center;
}

.footer-brand .brand img {
  width: 120px;
  margin-bottom: 1rem;
  filter: brightness(1.05);
}

.footer-brand p {
  margin: 0 auto;
  max-width: 36rem;
  font-size: 0.95rem;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
  align-items: center;
  padding-block: 1rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom small {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ========== Back to top ========== */
.back-to-top {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 90;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  color: var(--color-ink);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(16, 35, 31, 0.12);
  transition: background var(--transition), transform var(--transition);
}

.back-to-top:hover {
  background: var(--color-teal);
  color: #fff;
  transform: translateY(-2px);
}

/* ========== Reveal motion ========== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ========== Mobile nav ========== */
@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .brand img {
    width: min(132px, 42vw);
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 1rem 1.25rem calc(1.25rem + env(safe-area-inset-bottom));
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

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

  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-nav ul a {
    padding: 0.85rem 0.5rem;
    min-height: 2.75rem;
  }

  .btn-nav {
    width: 100%;
    min-height: 3rem;
  }

  .hero-brand {
    font-size: clamp(2.1rem, 12vw, 3rem);
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .cta-inner .btn {
    width: 100%;
  }

  .quote-strip {
    grid-auto-columns: minmax(220px, 78vw);
    margin-inline: -0.25rem;
    padding-inline: 0.25rem;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .header-inner {
    width: min(100% - 1.25rem, var(--container));
  }

  .hero-panel {
    width: min(100% - 1.25rem, var(--container));
  }

  .btn {
    padding-inline: 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-brand {
    animation: none !important;
  }

  .btn,
  .btn:hover,
  .btn:active {
    transition: none;
    transform: none;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
