/* JOM99 — UI/UX production stylesheet (mobile-first, CWV-friendly) */

:root {
  --color-bg: #071018;
  --color-surface: #0f1c28;
  --color-ink: #f4f7fb;
  --color-muted: #9db0c4;
  --color-primary: #f2c14e;
  --color-primary-dark: #d4a017;
  --color-accent: #ffd76a;
  --color-highlight: #ffe9a8;
  --color-border: rgba(157, 176, 196, 0.22);
  --color-glass: rgba(7, 16, 24, 0.86);
  --color-hero-deep: #050d14;
  --color-footer: #040a10;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 16px 36px rgba(0, 0, 0, 0.45);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --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.5rem;
  --font-sans: "Figtree", "Segoe UI", Tahoma, sans-serif;
  --font-display: "Syne", "Arial Black", sans-serif;
  --transition: 220ms ease;
  --focus: 0 0 0 3px rgba(242, 193, 78, 0.45);
}

*,
*::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.05rem;
  line-height: 1.65;
  color: var(--color-ink);
  background-color: var(--color-bg);
  background-image:
    radial-gradient(ellipse 820px 460px at 8% -10%, rgba(242, 193, 78, 0.14), transparent 58%),
    radial-gradient(ellipse 680px 420px at 100% 12%, rgba(34, 120, 160, 0.18), transparent 55%),
    linear-gradient(180deg, #0a1620 0%, var(--color-bg) 32%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

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

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

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

: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: var(--color-ink);
  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;
}

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--color-glass);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

.site-header.is-scrolled {
  border-bottom-color: var(--color-border);
  background: rgba(21, 16, 6, 0.94);
}

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

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

.primary-nav ul a {
  display: block;
  color: var(--color-ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.94rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.primary-nav ul a:hover,
.primary-nav ul a[aria-current="true"] {
  color: var(--color-primary);
  background: rgba(242, 193, 78, 0.12);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  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: var(--color-ink);
  border-radius: 2px;
  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 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition:
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.22) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 450ms ease;
  pointer-events: none;
  z-index: 0;
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn > * {
  position: relative;
  z-index: 1;
}

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

.btn-primary {
  background: linear-gradient(180deg, #ffe9a8 0%, #f2c14e 48%, #d4a017 100%);
  color: #071018;
  border-color: #a87c28;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 8px 18px rgba(182, 139, 52, 0.35);
}

.btn-primary:hover {
  color: #071018;
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 12px 24px rgba(182, 139, 52, 0.4);
}

.btn-primary:focus-visible {
  box-shadow:
    var(--focus),
    0 8px 18px rgba(182, 139, 52, 0.35);
}

.btn-secondary {
  background: #163043;
  border-color: rgba(157, 176, 196, 0.4);
  color: var(--color-highlight);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-highlight);
  background: #163043;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.btn-lg {
  min-height: 3.35rem;
  padding-inline: 1.85rem;
  font-size: 1.02rem;
  border-radius: 14px;
}

.btn-nav {
  white-space: nowrap;
  min-height: 2.65rem;
  padding: 0.55rem 1.15rem;
  font-size: 0.9rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 4px 12px rgba(182, 139, 52, 0.3);
}

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

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

.section-header {
  max-width: 38rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.section-header h2,
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin: 0 0 var(--space-3);
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
}

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

/* ========== Hero ========== */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, #050d14 0%, #0a1620 100%);
}

.hero-visual {
  width: 100%;
  line-height: 0;
  border-bottom: 1px solid var(--color-border);
}

.hero-banner {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

.hero-copy {
  width: min(100% - 2rem, 42rem);
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 3rem) 0 clamp(2.25rem, 5vw, 3.5rem);
  text-align: center;
}

.brand-mark {
  margin: 0 0 var(--space-4);
  animation: brand-in 700ms ease both;
}

.brand-mark img {
  width: min(100%, 240px);
  height: auto;
  display: block;
  margin-inline: auto;
}

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

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 auto var(--space-3);
  font-size: clamp(1.55rem, 4.2vw, 2.55rem);
  max-width: 18ch;
  color: var(--color-ink);
  text-wrap: balance;
}

.hero-sub {
  color: var(--color-muted);
  margin: 0 auto var(--space-5);
  max-width: 34rem;
  font-size: 1.05rem;
}

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

/* ========== Trust ========== */
.trust {
  padding-block: clamp(1.35rem, 3vw, 2rem);
  background: rgba(15, 28, 40, 0.92);
  border-block: 1px solid var(--color-border);
}

.trust-stats {
  list-style: none;
  margin: 0 0 var(--space-4);
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 0;
  text-align: center;
}

.trust-stats li {
  flex: 1 1 10rem;
  padding: 0.35rem 1.1rem;
  border-right: 1px solid var(--color-border);
}

.trust-stats li:last-child {
  border-right: 0;
}

.trust-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  color: var(--color-primary);
  line-height: 1.15;
  margin-bottom: 0.25rem;
}

.trust-stats span {
  color: var(--color-muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.partner-logos {
  list-style: none;
  margin: 0;
  padding: var(--space-3) 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.1rem;
  align-items: center;
  border-top: 1px solid var(--color-border);
}

.partner-logos img {
  opacity: 0.72;
  transition: opacity var(--transition), transform var(--transition);
  filter: grayscale(0.2);
}

.partner-logos img:hover {
  opacity: 1;
  transform: translateY(-1px);
  filter: none;
}

/* ========== Benefits ========== */
.benefit-rail {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--color-border);
}

.benefit-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--color-border);
}

.benefit-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--color-primary);
  letter-spacing: 0.04em;
  line-height: 1;
  padding-top: 0.15rem;
}

.benefit-row h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.benefit-row p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.96rem;
  max-width: 46rem;
}

/* ========== About ========== */
.about {
  background:
    linear-gradient(90deg, rgba(15, 28, 40, 0.65), transparent 55%),
    linear-gradient(180deg, transparent, rgba(15, 28, 40, 0.5) 20%, rgba(15, 28, 40, 0.5) 80%, transparent);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.about-copy .section-header {
  max-width: none;
  margin-bottom: var(--space-4);
}

.about-copy p {
  color: var(--color-muted);
  margin: 0 0 var(--space-3);
  line-height: 1.65;
}

.about-copy > p:last-child {
  margin-bottom: 0;
}

.about-media {
  width: 100%;
  max-width: none;
  margin: 0;
}

.about-media figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  border-bottom: 3px solid var(--color-primary);
  background: transparent;
}

.about-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-media figcaption {
  margin: 0;
  padding: 0.75rem 0 0;
  border-top: 0;
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--color-muted);
}

/* ========== Stats ========== */
.stats {
  background:
    radial-gradient(600px 280px at 20% 0%, rgba(242, 193, 78, 0.2), transparent 60%),
    linear-gradient(155deg, #0f0c05 0%, #163043 78%);
  color: #fff;
}

.stats .section-header h2,
.stats .section-header p {
  color: #fff;
}

.stats .section-header p {
  opacity: 0.88;
}

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

.stat-card {
  text-align: center;
  padding: 1.4rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: var(--space-2);
  color: #fff;
}

.stat-card span {
  opacity: 0.88;
  font-size: 0.92rem;
}

/* ========== How it works ========== */
.how {
  background:
    radial-gradient(640px 280px at 0% 100%, rgba(242, 193, 78, 0.08), transparent 55%),
    linear-gradient(180deg, #071018 0%, #071018 100%);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 2.15rem;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(157, 176, 196, 0.45) 15%, rgba(157, 176, 196, 0.45) 85%, transparent);
  z-index: 0;
  pointer-events: none;
}

.step {
  position: relative;
  z-index: 1;
  background: transparent;
  border: 0;
  border-top: 3px solid var(--color-primary);
  border-radius: 0;
  padding: 1.35rem 0.5rem 0.5rem;
  text-align: left;
  transition: transform var(--transition);
}

.step:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 193, 78, 0.45);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.step-number {
  position: relative;
  top: auto;
  right: auto;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.95rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #ffe9a8, #f2c14e);
  color: #071018;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 6px 14px rgba(182, 139, 52, 0.35);
}

.step .step h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
}

.step p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

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

/* ========== Why / Features background rhythm ========== */
.benefits {
  background: transparent;
}

.features {
  background:
    radial-gradient(700px 320px at 100% 0%, rgba(242, 193, 78, 0.1), transparent 55%),
    linear-gradient(180deg, #071018 0%, #071018 55%, #1f1808 100%);
}

.section-header-center {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--color-border);
}

.feature-item {
  position: relative;
  padding: 1.35rem 1.1rem 1.35rem 0;
  border-bottom: 1px solid var(--color-border);
  background: transparent;
}

.feature-item:nth-child(odd) {
  padding-right: 1.35rem;
  border-right: 1px solid var(--color-border);
}

.feature-item:nth-child(even) {
  padding-left: 1.35rem;
}

.feature-index {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  line-height: 1;
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}

.feature-item p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.why {
  background:
    radial-gradient(560px 260px at 100% 50%, rgba(242, 193, 78, 0.16), transparent 60%),
    linear-gradient(165deg, #0f0c05 0%, #163043 72%);
  color: #fff;
}

.why .section-header h2,
.why .section-header p {
  color: #fff;
}

.why .section-header p {
  opacity: 0.9;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.5rem;
  max-width: 52rem;
  margin-inline: auto;
}

.why-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 0.9rem;
  align-items: start;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: #fff;
}

.why-item .why-check {
  grid-row: 1 / span 2;
  margin: 0.15rem 0 0;
}

.why-item h3 {
  color: #fff;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.why-item p {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  line-height: 1.55;
}

.why-check {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffe9a8, #f2c14e);
  color: #071018;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1;
}

/* ========== Testimonials ========== */
.testimonials {
  background:
    radial-gradient(700px 300px at 0% 0%, rgba(242, 193, 78, 0.08), transparent 55%),
    linear-gradient(180deg, #071018 0%, #071018 100%);
}

.testimonial-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(16.5rem, 20rem);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.75rem;
  -webkit-overflow-scrolling: touch;
}

.testimonial-rail > .testimonial {
  scroll-snap-align: start;
}

.testimonial {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.25rem 1.15rem 1.15rem;
  border: 0;
  border-left: 3px solid var(--color-primary);
  background: rgba(15, 28, 40, 0.9);
  position: relative;
  border-radius: 0;
}

.testimonial:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.quote-mark {
  margin: 0;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.7;
  color: rgba(242, 193, 78, 0.3);
  font-weight: 700;
}

.quote-text {
  margin: 0.35rem 0 1.15rem;
  color: var(--color-ink);
  font-size: 1rem;
  line-height: 1.55;
  flex: 1 1 auto;
}

.testimonial header {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px dashed var(--color-border);
}

.testimonial header img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(157, 176, 196, 0.35);
}

.testimonial .role {
  margin: 0;
  font-size: 0.82rem;
  color: var(--color-muted);
}

.testimonial .rating {
  margin: 0.15rem 0 0;
  color: #ffcc00;
  letter-spacing: 0.04em;
  font-size: 0.86rem;
}

.testimonial h3 {
  margin: 0;
  font-size: 0.98rem;
}

/* ========== FAQ ========== */
.faq {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  max-width: none;
}

.faq-item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item h3 {
  margin: 0;
  font-size: 1rem;
}

.faq-trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1rem 1.15rem;
  font: inherit;
  font-weight: 600;
  color: var(--color-ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-3);
  transition: background var(--transition);
}

.faq-trigger:hover {
  background: rgba(242, 193, 78, 0.08);
}

.faq-trigger::after {
  content: "+";
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(242, 193, 78, 0.16);
  color: var(--color-primary);
  font-size: 1.1rem;
  line-height: 1;
}

.faq-trigger[aria-expanded="true"]::after {
  content: "−";
}

.faq-panel {
  padding: 0 1.15rem 1.05rem;
}

.faq-panel p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.96rem;
}

/* ========== CTA ========== */
.cta-band {
  background:
    radial-gradient(500px 240px at 80% 20%, rgba(255, 138, 0, 0.2), transparent 60%),
    linear-gradient(125deg, #163043 0%, #d4a017 48%, #f2c14e 100%);
  color: #fff;
  text-align: center;
}

.cta-inner {
  max-width: 38rem;
}

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

.cta-band p {
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 var(--space-5);
  font-size: 1.05rem;
}

.cta-band .btn-primary {
  background: linear-gradient(180deg, #ff9a2e 0%, #ff8a00 45%, #d64500 100%);
  color: #fff;
  border-color: #c43f00;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.cta-band .btn-primary:hover {
  background: #ff9a2e;
  color: #fff;
  filter: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

/* ========== Contact ========== */
.contact {
  padding-top: clamp(2.75rem, 5vw, 3.75rem);
}

.contact-grid {
  display: grid;
  gap: var(--space-6);
  align-items: start;
}

.contact address {
  font-style: normal;
  color: var(--color-muted);
  margin-top: var(--space-4);
}

.contact address p {
  margin: 0 0 0.55rem;
}

.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  display: grid;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.9rem;
  font: inherit;
  background: var(--color-surface);
  color: var(--color-ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field input:hover,
.form-field textarea:hover {
  border-color: rgba(242, 193, 78, 0.5);
}

.form-field input:focus-visible,
.form-field textarea:focus-visible {
  border-color: var(--color-accent);
}

/* ========== Footer ========== */
.site-footer {
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(242, 193, 78, 0.14), transparent 55%),
    var(--color-footer);
  color: #e8d9a8;
  padding-block: clamp(2.5rem, 4.5vw, 3.25rem) 0;
}

.site-footer a {
  color: #c4a462;
}

.site-footer a:hover {
  color: #fff;
}

.footer-top {
  display: flex;
  justify-content: center;
  padding-bottom: clamp(2rem, 3.5vw, 2.75rem);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  max-width: 36rem;
  width: 100%;
}

.footer-brand .brand img {
  width: 180px;
  height: auto;
  display: block;
}

.footer-brand p {
  margin: 0;
  max-width: 38ch;
  color: #c4a462;
  font-size: 0.94rem;
  line-height: 1.65;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 1.1rem;
  background: rgba(0, 0, 0, 0.18);
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 1.25rem;
  text-align: center;
}

.copyright,
.footer-note {
  margin: 0;
  color: #8a7340;
  font-size: 0.86rem;
  line-height: 1.4;
}

/* ========== Back to top ========== */
.back-to-top {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 0;
  background: var(--color-primary);
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 90;
  transition: background var(--transition), transform var(--transition);
}

.back-to-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

/* ========== Reveal ========== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

/* ========== Responsive ========== */
@media (min-width: 960px) {
  .about-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 3.5vw, 3rem);
    align-items: start;
  }

  .about-media {
    max-width: none;
    margin-inline: 0;
    justify-self: stretch;
  }

  .contact-grid {
    grid-template-columns: 0.95fr 1.15fr;
    gap: 2.5rem;
  }
}

@media (max-width: 1024px) {
  .steps,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-copy {
    width: min(100% - 1.5rem, 42rem);
    padding-block: 1.5rem 2rem;
    text-align: left;
  }

  .brand-mark img {
    margin-inline: 0;
    width: min(100%, 200px);
  }

  .hero h1 {
    margin-inline: 0;
    max-width: none;
  }

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

  .trust-stats li {
    border-right: 0;
    flex: 1 1 100%;
    text-align: left;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--color-border);
  }

  .trust-stats li:last-child {
    border-bottom: 0;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .feature-item:nth-child(odd),
  .feature-item:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
  }

  .why-list {
    grid-template-columns: 1fr;
  }

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

  :root {
    --header-h: 4.25rem;
  }

  .site-header {
    padding-top: env(safe-area-inset-top);
    height: calc(var(--header-h) + env(safe-area-inset-top));
  }

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

  .primary-nav {
    position: fixed;
    inset: calc(var(--header-h) + env(safe-area-inset-top)) 0 auto 0;
    display: grid;
    gap: 0.85rem;
    padding: 1rem max(1rem, env(safe-area-inset-right)) 1.15rem max(1rem, env(safe-area-inset-left));
    background: rgba(7, 16, 24, 0.98);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
    max-height: calc(100dvh - var(--header-h) - env(safe-area-inset-top));
    overflow-y: auto;
  }

  .primary-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

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

  .primary-nav ul a {
    padding: 0.85rem 0.9rem;
    min-height: 44px;
  }

  .btn-nav {
    width: 100%;
    min-height: 48px;
  }

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

  .hero {
    min-height: 0;
  }

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

  .hero h1 {
    max-width: none;
    font-size: clamp(1.35rem, 6.2vw, 1.85rem);
  }

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

  .brand-mark img {
    width: min(100%, 220px);
  }

  .trust-stats {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .trust-stats li {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0.85rem;
    text-align: left;
    padding: 0.75rem 0.25rem;
    border-bottom: 1px solid var(--color-border);
  }

  .trust-stats li:last-child {
    border-bottom: 0;
  }

  .trust-stats strong {
    margin: 0;
    min-width: 5.5rem;
  }

  .partner-logos {
    gap: 0.55rem 0.75rem;
  }

  .partner-logos img {
    width: 110px;
    height: auto;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 0.35rem;
  }
}

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

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  section {
    padding-block: 2.75rem;
  }

  .section-header h2,
  .cta-band h2 {
    font-size: clamp(1.35rem, 6vw, 1.7rem);
  }

  .testimonial {
    padding: 1.1rem;
  }
}

@media (max-width: 390px) {
  :root {
    --header-h: 3.85rem;
  }

  body {
    font-size: 1rem;
  }

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

  .brand img {
    width: min(118px, 34vw);
  }

  .brand-mark img {
    width: min(100%, 180px);
  }

  

  .hero h1 {
    font-size: clamp(1.22rem, 6.8vw, 1.45rem);
  }

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

  

  .partner-logos img {
    width: 96px;
  }

  .footer-brand .brand img {
    width: 150px;
  }

  .btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
  }
}

@media (max-width: 320px) {
  .container,
  .header-inner {
    width: min(100% - 0.9rem, var(--container));
  }

  .brand img {
    width: 100px;
  }

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

  .trust-stats strong {
    min-width: 4.5rem;
    font-size: 1.15rem;
  }
}
