/* Amazon Self Book — Bootstrap 5 landing */

:root {
  --ink: #0f1c2e;
  --ink-2: #162a45;
  --paper: #f6f3ee;
  --paper-2: #fffdf9;
  --accent: #e8940a;
  --accent-dark: #c77800;
  --accent-soft: #fff1d6;
  --muted: #5c6b7a;
  --line: #e4ddd2;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(15, 28, 46, 0.12);
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper-2);
  overflow-x: clip;
}

/* overflow-x:clip keeps scrollbar visible while Bootstrap adds padding-right — causes white gap */
body.modal-open,
body.offcanvas-open {
  padding-right: 0 !important;
}

h1, h2, h3, h4, h5, .navbar-brand, .hero-title, .section-title {
  font-family: var(--font-display);
  font-style: normal;
  letter-spacing: -0.02em;
}

.section-pad {
  padding: 4.5rem 0;
}

.section-pad-sm {
  padding: 3.25rem 0;
}

@media (min-width: 992px) {
  .section-pad {
    padding: 6rem 0;
  }
  .section-pad-sm {
    padding: 4rem 0;
  }
}

.bg-soft { background: var(--paper); }
.bg-ink { background: linear-gradient(145deg, var(--ink) 0%, var(--ink-2) 100%); }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-sub {
  max-width: 36rem;
  color: var(--muted);
}

.text-accent { color: var(--accent) !important; }
.link-accent {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: none;
}
.link-accent:hover { color: var(--ink); }

.btn-accent {
  --bs-btn-color: #111;
  --bs-btn-bg: var(--accent);
  --bs-btn-border-color: var(--accent);
  --bs-btn-hover-color: #111;
  --bs-btn-hover-bg: #f0a31f;
  --bs-btn-hover-border-color: #f0a31f;
  --bs-btn-focus-shadow-rgb: 232, 148, 10;
  --bs-btn-active-color: #111;
  --bs-btn-active-bg: var(--accent-dark);
  --bs-btn-active-border-color: var(--accent-dark);
  font-weight: 700;
  border-radius: 999px;
}

.btn-primary {
  --bs-btn-bg: var(--ink);
  --bs-btn-border-color: var(--ink);
  --bs-btn-hover-bg: var(--ink-2);
  --bs-btn-hover-border-color: var(--ink-2);
  --bs-btn-active-bg: #0a1420;
  --bs-btn-active-border-color: #0a1420;
  border-radius: 999px;
  font-weight: 700;
}

.btn-outline-dark {
  border-radius: 999px;
  font-weight: 600;
}

.btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible,
.nav-link:focus-visible,
.accordion-button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* Topbar + nav */
.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}
.topbar-link { color: #fff; }
.topbar-link:hover { color: var(--accent); }

.site-nav {
  --bs-navbar-padding-y: 0.9rem;
  background: rgba(15, 28, 46, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}
.site-nav .nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  white-space: nowrap;
}
.site-nav .nav-link:hover,
.site-nav .nav-link:focus {
  color: #fff;
}
.site-nav-offcanvas {
  --bs-offcanvas-width: min(20rem, 88vw);
  --bs-offcanvas-bg: #0f1c2e;
  --bs-offcanvas-color: #fff;
  background: #0f1c2e !important;
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1055;
}
.site-nav-offcanvas .offcanvas-header {
  padding: 1.15rem 1.25rem;
  background: #0f1c2e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-nav-offcanvas .offcanvas-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
}
.site-nav-offcanvas .offcanvas-body {
  padding: 1rem 1.25rem 1.5rem;
  background: #0f1c2e;
}
.site-nav-mobile .nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-nav-mobile .nav-link:hover,
.site-nav-mobile .nav-link:focus {
  color: var(--accent);
}
.site-nav-mobile .nav-item:last-child .nav-link {
  border-bottom: 0;
}
.site-nav-mobile-cta {
  margin-top: 1.25rem;
  min-height: 3rem;
  font-weight: 700;
}
.offcanvas-backdrop {
  z-index: 1050;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-right: 0.45rem;
  border-radius: 0.55rem;
  background: var(--accent);
  color: #111;
  font-size: 0.78rem;
  font-weight: 800;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
}

.site-logo-full {
  display: block;
  width: 240px;
  height: auto;
  max-width: min(250px, 62vw);
}

.brand-logo {
  width: 2.15rem;
  height: 2.15rem;
  flex-shrink: 0;
  border-radius: 0.55rem;
}

.site-brand-text {
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Hero */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 14, 24, 0.88) 0%, rgba(12, 24, 42, 0.72) 48%, rgba(15, 28, 46, 0.55) 100%),
    url("../images/hero-banner.webp") center / cover no-repeat;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 50% at 18% 30%, rgba(232, 148, 10, 0.16), transparent 65%);
  pointer-events: none;
}
.hero-title {
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  font-weight: 800;
  line-height: 1.08;
  overflow-wrap: anywhere;
}
.hero-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 36rem;
}
.rating-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 0.55rem 0.9rem;
  color: #fff;
}
.rating-badge strong {
  color: var(--accent);
  font-size: 1.25rem;
}

.form-card {
  background: var(--paper-2);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
@media (min-width: 768px) {
  .form-card { padding: 1.75rem; }
}

/* Hero lead form */
.hero-form-card {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: rgba(18, 26, 38, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 1.5rem 1.4rem 1.35rem;
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
@media (min-width: 768px) {
  .hero-form-card {
    padding: 1.75rem 1.65rem 1.5rem;
  }
}
.hero-form-glow {
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(232, 148, 10, 0.22), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-form-card > *:not(.hero-form-glow) {
  position: relative;
  z-index: 1;
}
.hero-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), #f6c15a);
  z-index: 2;
}
.hero-form-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232, 148, 10, 0.14);
  border: 1px solid rgba(232, 148, 10, 0.35);
}
.hero-form-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}
.hero-form-sub {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  line-height: 1.45;
}
.hero-form-card .lead-form .row {
  --bs-gutter-y: 0.75rem;
}
.hero-form-card .form-control,
.hero-form-card .form-select {
  background-color: rgba(8, 14, 24, 0.65);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 12px;
  min-height: 3.1rem;
  padding: 0.7rem 1rem;
  font-size: 0.98rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.hero-form-card .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.hero-form-card .form-select {
  --hero-caret: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23e8940a' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
  padding-right: 2.5rem;
  background-image: var(--hero-caret);
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 0.85rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.hero-form-card .form-select option {
  background: #1a2332;
  color: #fff;
}
.hero-form-card .form-control:hover,
.hero-form-card .form-select:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background-color: rgba(8, 14, 24, 0.8);
}
.hero-form-card .form-control:focus,
.hero-form-card .form-select:focus {
  background-color: rgba(8, 14, 24, 0.88);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(232, 148, 10, 0.2);
}
.hero-form-card .form-select:focus {
  background-image: var(--hero-caret);
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 0.85rem;
}
.hero-form-card .btn-accent {
  margin-top: 0.35rem;
  min-height: 3.2rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 28px rgba(232, 148, 10, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.hero-form-card .btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(232, 148, 10, 0.48);
}
.hero-form-card .btn-accent::after {
  content: " →";
}
.hero-form-note {
  margin-top: 0.9rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}
.hero-form-note i {
  color: var(--accent);
  margin-right: 0.25rem;
}
.hero-form-card .invalid-feedback {
  color: #ff8f8f;
}

@media (prefers-reduced-motion: reduce) {
  .hero-form-card .form-control,
  .hero-form-card .form-select,
  .hero-form-card .btn-accent {
    transition: none;
  }
  .hero-form-card .btn-accent:hover {
    transform: none;
  }
}

.form-control,
.form-select {
  border-radius: 10px;
  border-color: #d7d0c5;
  background: #fff;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(232, 148, 10, 0.18);
}

/* Distributors — Swiper continuous logo rail */
.distributors {
  background: #fff;
  padding-top: 3.5rem;
  border-top: 1px solid var(--line);
}
.distributors-head {
  max-width: 40rem;
  margin: 0 auto 2.25rem;
  padding: 0 1rem;
}
.distributors-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.distributors-sub {
  max-width: 34rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}
.distributors-rail {
  position: relative;
  background: linear-gradient(180deg, #f7f8fa 0%, #eef0f3 100%);
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 10px 28px rgba(15, 28, 46, 0.04);
  padding: 1.6rem 0;
}
.distributors-rail::before,
.distributors-rail::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4.5rem;
  z-index: 2;
  pointer-events: none;
}
.distributors-rail::before {
  left: 0;
  background: linear-gradient(90deg, #f3f4f6, transparent);
}
.distributors-rail::after {
  right: 0;
  background: linear-gradient(270deg, #f3f4f6, transparent);
}
.distributors-swiper {
  overflow: hidden;
}
.distributors-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
  align-items: center;
}
.distributors-swiper .swiper-slide {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.distributor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 64px;
  padding: 0.55rem 1.35rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(15, 28, 46, 0.06);
  transition: transform 0.25s var(--ease-out, ease), background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.distributor-logo img {
  max-height: 40px;
  max-width: 132px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.72);
  transition: filter 0.25s ease, transform 0.25s ease;
}
.distributor-logo:hover {
  background: #fff;
  border-color: rgba(232, 148, 10, 0.35);
  box-shadow: 0 8px 22px rgba(15, 28, 46, 0.08);
  transform: translateY(-3px);
}
.distributor-logo:hover img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.04);
}
@media (prefers-reduced-motion: reduce) {
  .distributor-logo,
  .distributor-logo img {
    transition: none;
  }
}
@media (max-width: 575.98px) {
  .distributors {
    padding-top: 2.75rem;
  }
  .distributors-head {
    margin-bottom: 1.5rem;
  }
  .distributors-rail {
    padding: 1.2rem 0;
  }
  .distributors-rail::before,
  .distributors-rail::after {
    width: 2rem;
  }
  .distributor-logo {
    min-width: 120px;
    height: 56px;
    padding: 0.4rem 0.9rem;
  }
}

/* Books — circular orbit (top arc = arch look) */
.books-orbit {
  --book-w: 130px;
  --book-h: 195px;
  --orbit-r: 300px;
  --orbit-n: 15;
  position: relative;
  padding-bottom: 0.5rem;
  user-select: none;
}
.books-orbit-stage {
  position: relative;
  height: 500px;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}
.books-orbit-stage.is-dragging {
  cursor: grabbing;
}
.books-orbit-ring {
  position: absolute;
  left: 50%;
  /* Push center lower so the arch sits a bit further down */
  top: calc(100% + 120px);
  width: 0;
  height: 0;
  will-change: transform;
}
.books-orbit-item {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--book-w);
  height: var(--book-h);
  margin-left: calc(var(--book-w) / -2);
  margin-top: calc(var(--book-h) * -1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(15, 28, 46, 0.22);
  /* Place on circle; no counter-rotate = natural arch tilt */
  transform: rotate(calc(var(--i) * 360deg / var(--orbit-n))) translateY(calc(var(--orbit-r) * -1));
  transform-origin: center bottom;
  backface-visibility: hidden;
  transition: box-shadow 0.25s ease, filter 0.25s ease;
}
.books-orbit-item.is-front {
  box-shadow: 0 22px 48px rgba(15, 28, 46, 0.32);
  z-index: 5;
}
.books-orbit-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.books-active-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  min-height: 1.5em;
  margin-top: -5rem;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  line-height: 1.3;
}
.books-active-title .rating {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--accent-dark);
  font-weight: 600;
  margin-left: 0;
  font-size: 0.92rem;
}

@media (min-width: 768px) {
  .books-orbit {
    --book-w: 150px;
    --book-h: 225px;
    --orbit-r: 310px;
  }
}

@media (min-width: 1200px) {
  .books-orbit {
    --book-w: 160px;
    --book-h: 240px;
    --orbit-r: 330px;
  }
}

@media (max-width: 575.98px) {
  .books-orbit {
    --book-w: 100px;
    --book-h: 150px;
    --orbit-r: 280px;
  }
  .books-active-title {
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .books-orbit-ring {
    /* JS will freeze rotation */
  }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.about-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-media-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.7rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23111' d='M6.5 11.2 3.3 8l1-1 2.2 2.2 4.4-4.4 1 1z'/%3E%3C/svg%3E") center / 70% no-repeat;
}

.before-after {
  position: relative;
  max-width: 380px;
  margin-inline: auto;
}
.ba-label {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ba-after-label { background: rgba(232, 148, 10, 0.25); color: var(--accent); }
.ba-media {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}
.ba-media a {
  display: block;
  cursor: zoom-in;
}
.ba-media img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.ba-media a:hover img {
  transform: scale(1.02);
  opacity: 0.95;
}
.ba-before {
  border: 1px dashed rgba(255, 255, 255, 0.25);
}
.ba-after {
  border: 1px solid rgba(232, 148, 10, 0.45);
}

.service-tile {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.service-tile:hover {
  transform: none;
  box-shadow: none;
}
/* Share your story */
.share-media {
  position: relative;
}
.share-media-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  object-position: left center;
}
.share-copy {
  max-width: 34rem;
}
.share-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 0.85rem;
  line-height: 1.15;
}
.share-lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 1.75rem;
}
.share-list {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}
.share-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.share-dot {
  flex: 0 0 auto;
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}
.share-item-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--ink);
}
.share-list p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* Earn more section */
.earn-collage {
  height: 100%;
  min-height: 360px;
}
.earn-collage-img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}
.earn-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.earn-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid transparent;
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  box-shadow: 0 8px 24px rgba(15, 28, 46, 0.05);
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.earn-card:hover {
  border-left-color: var(--accent);
  box-shadow: 0 14px 36px rgba(15, 28, 46, 0.12);
  transform: translateY(-2px);
}
.earn-card-icon {
  flex: 0 0 auto;
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 1.15rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.earn-card:hover .earn-card-icon {
  background: var(--accent);
  color: #111;
}
.earn-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.25rem;
}
.earn-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--ink);
}
.earn-card-text {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 0.45rem;
}
.earn-card-link {
  color: #0f766e;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.earn-card-link:hover {
  color: var(--ink);
}
@media (prefers-reduced-motion: reduce) {
  .earn-card,
  .earn-card-icon,
  .earn-card-link {
    transition: none;
  }
  .earn-card:hover {
    transform: none;
  }
}
.link-ink {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}
.link-ink:hover {
  color: var(--accent-dark);
}

.format-tile,
.earn-tile,
.why-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.format-tile:hover,
.earn-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.service-icon {
  position: relative;
  width: 4.5rem;
  height: 4.5rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  color: var(--ink);
  font-size: 1.75rem;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}
.service-icon-glow {
  position: absolute;
  inset: 0.2rem;
  border-radius: 50%;
  background: rgba(232, 148, 10, 0.2);
  transform: none;
  z-index: 0;
}
.service-icon i {
  position: relative;
  z-index: 1;
}
.service-sub {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.35;
}
.services-slider-wrap {
  position: relative;
  padding: 0 2.75rem;
}
.services-nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 5;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(15, 28, 46, 0.08);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.services-nav:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
}
.services-nav:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.services-prev { left: 0; }
.services-next { right: 0; }
.services-swiper {
  padding-top: 0.75rem;
  padding-bottom: 2.5rem;
  overflow: hidden;
}
.services-swiper .swiper-slide {
  height: auto;
  overflow: visible;
}
.services-swiper .service-tile {
  padding-top: 0.35rem;
  padding-right: 0.25rem;
  overflow: visible;
}
/* Press logos rail — orange distribute-style strip */
.press-rail {
  background: var(--accent);
  padding: 1.15rem 0;
  overflow: hidden;
}
.press-swiper {
  overflow: hidden;
}
.press-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
  align-items: center;
}
.press-swiper .swiper-slide {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.press-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 44px;
  padding: 0 0.35rem;
}
.press-logo img {
  max-height: 36px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.92;
}

.services-pagination {
  position: relative !important;
  margin-top: 1.25rem;
  bottom: 0 !important;
}
.services-pagination .swiper-pagination-bullet {
  width: 0.55rem;
  height: 0.55rem;
  background: #c9c2b6;
  opacity: 1;
}
.services-pagination .swiper-pagination-bullet-active {
  background: var(--accent);
  width: 1.4rem;
  border-radius: 999px;
}

@media (max-width: 575.98px) {
  .services-slider-wrap {
    padding: 0 2.25rem;
  }
  .services-nav {
    width: 2.25rem;
    height: 2.25rem;
  }
}
.format-ico {
  width: auto;
  height: auto;
  background: none;
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
  display: inline-block;
  color: var(--accent-dark);
}

.awaits-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.awaits-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 22, 38, 0.88) 0%, rgba(15, 28, 46, 0.92) 100%),
    url("../images/awaits-bg.webp") center / cover no-repeat;
  z-index: 0;
}
.awaits-section > .container {
  z-index: 1;
}

.await-tile {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(4px);
}
.await-tile i {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.why-tile i {
  font-size: 1.7rem;
  color: var(--accent-dark);
  margin-bottom: 0.7rem;
  display: inline-block;
}

/* Process timeline */
.process-section {
  position: relative;
  overflow: hidden;
  background: #1c2128;
}
.process-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 33, 40, 0.9) 0%, rgba(32, 38, 46, 0.92) 100%),
    url("../images/process-bg.avif") center / cover no-repeat;
  z-index: 0;
}
.process-section > .container {
  z-index: 1;
}
.process-timeline {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 0.5rem 0 1rem;
}
.process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: var(--accent);
  opacity: 0.85;
}
.process-item {
  position: relative;
  width: 50%;
  padding: 0 2rem 2rem;
}
.process-item:last-child {
  padding-bottom: 0.25rem;
}
.process-left {
  left: 0;
  text-align: left;
  padding-right: 2.75rem;
}
.process-right {
  left: 50%;
  text-align: right;
  padding-left: 2.75rem;
}
.process-marker {
  position: absolute;
  top: 1.35rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(232, 148, 10, 0.25);
  z-index: 2;
}
.process-left .process-marker {
  right: -7px;
}
.process-right .process-marker {
  left: -7px;
}
.process-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1.15rem 1.25rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.process-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(232, 148, 10, 0.45);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}
.process-card-top {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}
.process-left .process-card-top {
  flex-direction: row;
}
.process-right .process-card-top {
  flex-direction: row-reverse;
}
.process-icon {
  flex: 0 0 auto;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(232, 148, 10, 0.45);
  color: var(--accent);
  font-size: 1.1rem;
  background: transparent;
}
.process-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: baseline;
}
.process-right .process-card-title {
  flex-direction: row-reverse;
  justify-content: flex-start;
}
.process-num {
  color: var(--accent);
  font-weight: 800;
}
.process-card-text {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.5;
}
.process-link {
  display: inline-block;
  margin-top: 0.65rem;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}
.process-link:hover {
  color: #fff;
}
.process-cta {
  max-width: 40rem;
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}
.process-cta-section {
  background: #1c2128;
}
.process-cta-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.45rem;
}
.process-cta-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.1rem;
}

@media (max-width: 767.98px) {
  .process-timeline::before {
    left: 12px;
  }
  .process-item,
  .process-left,
  .process-right {
    width: 100%;
    left: 0;
    text-align: left;
    padding: 0 0 1.5rem 2.25rem;
  }
  .process-left .process-marker,
  .process-right .process-marker {
    left: 5px;
    right: auto;
  }
  .process-left .process-card-top,
  .process-right .process-card-top {
    flex-direction: row;
  }
  .process-right .process-card-title {
    flex-direction: row;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-card {
    transition: none;
  }
  .process-card:hover {
    transform: none;
  }
}

/* FAQ */
.faq-section {
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(232, 148, 10, 0.08), transparent 55%),
    var(--paper-2);
}
.faq-intro {
  position: sticky;
  top: 5.5rem;
}
.faq-intro-text {
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 22rem;
}
.faq-help {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.15rem 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(15, 28, 46, 0.05);
}
.faq-help-icon {
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 1.15rem;
}
.faq-help-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.faq-help-text {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border: 1px solid var(--line) !important;
  border-radius: 14px !important;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15, 28, 46, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:has(.accordion-button:not(.collapsed)) {
  border-color: rgba(232, 148, 10, 0.45) !important;
  box-shadow: 0 12px 30px rgba(15, 28, 46, 0.08);
}
.faq-accordion .accordion-button {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.35;
  color: var(--ink);
  box-shadow: none !important;
  background: transparent;
  gap: 0.85rem;
  padding: 1.05rem 1.15rem;
  align-items: flex-start;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--ink);
  background: rgba(232, 148, 10, 0.06);
}
.faq-accordion .accordion-button::after {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: auto;
  margin-top: 0.05rem;
  background-color: var(--accent-soft);
  border-radius: 50%;
  border: 1px solid rgba(232, 148, 10, 0.35);
  background-size: 0.7rem;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23c77800' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  background-color: var(--accent);
  border-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
}
.faq-num {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--accent-dark);
  line-height: 1.5;
  min-width: 1.6rem;
}
.faq-q {
  flex: 1 1 auto;
  min-width: 0;
  padding-right: 0.5rem;
  text-align: left;
}
.faq-a {
  color: var(--muted);
  padding: 0 1.15rem 1.15rem 3.6rem;
  line-height: 1.6;
}
.faq-accordion .accordion-item {
  border: 0;
  background: transparent;
}

@media (max-width: 991.98px) {
  .faq-intro {
    position: static;
  }
}

@media (max-width: 575.98px) {
  .faq-a {
    padding-left: 1.15rem;
  }
  .faq-accordion .accordion-button {
    font-size: 0.98rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item,
  .faq-accordion .accordion-button::after {
    transition: none;
  }
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 65% 55% at 100% 0%, rgba(232, 148, 10, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(15, 28, 46, 0.04), transparent 50%),
    var(--paper);
}
.contact-intro {
  position: sticky;
  top: 5.5rem;
}
.contact-lead {
  color: var(--muted);
  margin-bottom: 1.75rem;
  max-width: 26rem;
}
.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}
.contact-meta li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 0;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-meta li:hover {
  border-color: rgba(232, 148, 10, 0.4);
  box-shadow: 0 8px 22px rgba(15, 28, 46, 0.06);
}
.contact-meta-icon {
  flex: 0 0 auto;
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 1.05rem;
}
.contact-meta-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.15rem;
}
.contact-meta-value {
  display: block;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.4;
}
.contact-meta a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}
.contact-meta a:hover { color: var(--accent-dark); }
.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.contact-whatsapp i {
  color: #25d366;
  font-size: 1.15rem;
}
.contact-whatsapp:hover {
  color: var(--ink);
  border-color: rgba(37, 211, 102, 0.45);
  box-shadow: 0 8px 20px rgba(15, 28, 46, 0.07);
}
.contact-form-card {
  position: relative;
  background: #fff;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 28, 46, 0.08);
  box-shadow: 0 22px 50px rgba(15, 28, 46, 0.1);
}
.contact-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
  z-index: 1;
}
.contact-form-head {
  padding: 1.45rem 1.35rem 1.2rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(232, 148, 10, 0.07) 0%, transparent 100%);
}
@media (min-width: 768px) {
  .contact-form-head {
    padding: 1.75rem 1.85rem 1.35rem;
  }
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.contact-form-sub {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}
.contact-form-card .lead-form {
  padding: 1.35rem 1.35rem 1.45rem;
}
@media (min-width: 768px) {
  .contact-form-card .lead-form {
    padding: 1.55rem 1.85rem 1.85rem;
  }
}
.contact-field-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 1.5px solid var(--line);
  background: var(--paper-2);
  border-radius: 12px;
  min-height: 3.15rem;
  padding: 0.7rem 1rem;
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.contact-form-card textarea.form-control {
  min-height: 7rem;
  resize: vertical;
  padding-top: 0.85rem;
}
.contact-form-card .form-control::placeholder,
.contact-form-card .form-select:invalid,
.contact-form-card .form-select option[value=""] {
  color: #8a97a5;
}
.contact-form-card .form-control:hover,
.contact-form-card .form-select:hover {
  border-color: #d0c7b8;
  background: #fff;
}
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(232, 148, 10, 0.16);
}
.contact-form-card .contact-submit {
  margin-top: 0.35rem;
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(232, 148, 10, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.contact-form-card .contact-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(232, 148, 10, 0.4);
}
.contact-form-note {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

@media (max-width: 991.98px) {
  .contact-intro {
    position: static;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-meta li,
  .contact-whatsapp,
  .contact-form-card .form-control,
  .contact-form-card .form-select,
  .contact-form-card .contact-submit {
    transition: none;
  }
  .contact-form-card .contact-submit:hover {
    transform: none;
  }
}

.earnings-ticker {
  background: var(--accent);
  color: #111;
  overflow: hidden;
  padding: 0.7rem 0;
  font-weight: 700;
  font-size: 0.92rem;
}
.ticker-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0c1624 0%, #080f18 100%);
  color: rgba(255, 255, 255, 0.72);
  padding: 3.5rem 0 1.75rem;
}
.footer-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 12% 0%, rgba(232, 148, 10, 0.12), transparent 55%),
    radial-gradient(ellipse 40% 35% at 88% 100%, rgba(232, 148, 10, 0.08), transparent 50%);
  pointer-events: none;
}
.site-footer > .container {
  z-index: 1;
}
.footer-main {
  align-items: flex-start;
}
.footer-brand {
  padding-right: 0.5rem;
}
.footer-tagline {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}
.footer-about {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.footer-contact li:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(232, 148, 10, 0.3);
}
.footer-contact-icon {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(232, 148, 10, 0.14);
  color: var(--accent);
  font-size: 0.95rem;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.footer-contact a:hover {
  color: var(--accent);
}
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}
.footer-actions .btn-accent {
  font-weight: 700;
  padding: 0.55rem 1.15rem;
}
.footer-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer-whatsapp-link i {
  color: #25d366;
  font-size: 1.05rem;
}
.footer-whatsapp-link:hover {
  color: #fff;
  border-color: rgba(37, 211, 102, 0.45);
}
.footer-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.footer-highlight {
  padding: 1rem 1rem 1.05rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.footer-highlight:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(232, 148, 10, 0.35);
  transform: translateY(-2px);
}
.footer-highlight-icon {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.55rem;
  border-radius: 8px;
  background: rgba(232, 148, 10, 0.12);
  color: var(--accent);
  font-size: 1rem;
}
.footer-highlight-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.footer-highlight-text {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
}
.footer-heading {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(232, 148, 10, 0.35);
  display: inline-block;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  transition: color 0.15s ease, padding-left 0.15s ease;
}
.footer-links a:hover {
  color: var(--accent);
  padding-left: 0.25rem;
}
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.15s ease;
}
.footer-legal a:hover {
  color: var(--accent);
}
.footer-legal a:not(:last-child)::after {
  content: "·";
  margin-left: 1.25rem;
  color: rgba(255, 255, 255, 0.25);
  pointer-events: none;
}
.footer-copy {
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}
.footer-disclaimer {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
  font-size: 0.76rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 991.98px) {
  .footer-highlights {
    margin-top: 0.5rem;
  }
}

@media (max-width: 575.98px) {
  .footer-highlights {
    grid-template-columns: 1fr;
  }
  .footer-legal {
    justify-content: flex-start;
  }
  .footer-legal a:not(:last-child)::after {
    display: none;
  }
  .footer-copy,
  .footer-disclaimer {
    text-align: left;
  }
  .footer-bottom {
    margin-top: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-contact li,
  .footer-highlight,
  .footer-links a {
    transition: none;
  }
  .footer-highlight:hover {
    transform: none;
  }
}

.whatsapp-float {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.55rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 1040;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.06);
}

/* Signup modal */
.signup-modal .modal-dialog {
  max-width: 460px;
}
.signup-modal-content {
  position: relative;
  background: #1a2332;
  border: 0;
  border-radius: 16px;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.signup-modal-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
}
.signup-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  opacity: 0.85;
}
.signup-modal-close:hover {
  opacity: 1;
}
.signup-modal-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.signup-modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 0.4rem;
  padding-right: 1.5rem;
}
.signup-modal-lead {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  margin-bottom: 1.35rem;
}
.signup-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.4rem;
}
.signup-label .req {
  color: #ff5c5c;
}
.signup-input,
.signup-modal .form-control,
.signup-modal .form-select {
  background-color: #121a26;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  min-height: 3rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.signup-modal .form-control::placeholder {
  color: rgba(255, 255, 255, 0.38);
}
.signup-modal textarea.form-control {
  min-height: 5.5rem;
  resize: vertical;
}
.signup-modal .form-select {
  --signup-caret: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23e8940a' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
  padding-right: 2.5rem;
  background-color: #121a26;
  background-image: var(--signup-caret);
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 0.85rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.signup-modal .form-select option {
  background: #1a2332;
  color: #fff;
}
.signup-input:hover,
.signup-modal .form-control:hover,
.signup-modal .form-select:hover {
  border-color: rgba(255, 255, 255, 0.22);
}
.signup-input:focus,
.signup-modal .form-control:focus,
.signup-modal .form-select:focus {
  background-color: #121a26;
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(232, 148, 10, 0.22);
}
.signup-modal .form-select:focus {
  background-image: var(--signup-caret);
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 0.85rem;
}
.signup-submit {
  border-radius: 10px !important;
  font-weight: 800;
  color: #111 !important;
  min-height: 3.15rem;
  box-shadow: 0 10px 24px rgba(232, 148, 10, 0.3);
}
.signup-submit:hover {
  box-shadow: 0 12px 28px rgba(232, 148, 10, 0.38);
}
.signup-modal .invalid-feedback {
  color: #ff8f8f;
}
.signup-modal-note {
  margin-top: 0.85rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Thank you */
.thank-page {
  background: var(--paper-2);
}

.thank-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(15, 28, 46, 0.97) 0%, rgba(22, 42, 69, 0.94) 100%),
    url("../images/hero-banner.webp") center / cover no-repeat;
  color: #fff;
}

.thank-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(232, 148, 10, 0.22), transparent 70%);
  pointer-events: none;
}

.thank-hero .container {
  position: relative;
  z-index: 1;
}

.thank-success-badge {
  display: inline-grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(31, 157, 85, 0.18);
  border: 2px solid rgba(31, 157, 85, 0.45);
  color: #5fe09a;
  font-size: 2rem;
  line-height: 1;
}

.thank-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.thank-lead {
  max-width: 38rem;
  margin-inline: auto;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.thank-hero-actions {
  margin-top: 1.75rem;
}

.thank-hero-note {
  margin-top: 1rem;
  max-width: 32rem;
  margin-inline: auto;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

.thank-hero-note a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.thank-hero-note a:hover {
  text-decoration: underline;
}

.thank-body {
  position: relative;
  padding: 0 0 4.5rem;
  margin-top: -3.5rem;
}

.thank-grid {
  position: relative;
  z-index: 2;
}

.thank-panel,
.thank-sidebar {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 22px 60px rgba(15, 28, 46, 0.1);
  padding: 1.75rem 1.5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .thank-panel,
  .thank-sidebar {
    padding: 2rem 2rem 2.15rem;
  }
}

.thank-sidebar-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.thank-panel-head {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.thank-panel-icon {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 1.15rem;
}

.thank-panel-icon-dark {
  background: rgba(15, 28, 46, 0.08);
  color: var(--ink);
}

.thank-panel-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.thank-panel-sub {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.thank-steps {
  display: grid;
  gap: 0;
}

.thank-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: stretch;
}

.thank-step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.15rem;
}

.thank-step-num {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #111;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(232, 148, 10, 0.28);
}

.thank-step-line {
  flex: 1;
  width: 2px;
  min-height: 1.5rem;
  margin: 0.45rem 0;
  background: linear-gradient(180deg, rgba(232, 148, 10, 0.55), rgba(232, 148, 10, 0.12));
  border-radius: 999px;
}

.thank-step-body {
  position: relative;
  padding: 0.95rem 1rem 1.35rem;
  margin-bottom: 0.75rem;
  background: var(--paper);
  border: 1px solid rgba(228, 221, 210, 0.9);
  border-radius: 0.9rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.thank-step-body:hover {
  border-color: rgba(232, 148, 10, 0.35);
  box-shadow: 0 10px 24px rgba(15, 28, 46, 0.06);
  transform: translateY(-1px);
}

.thank-step-last .thank-step-body {
  margin-bottom: 0;
}

.thank-step-icon {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.55rem;
  border-radius: 0.55rem;
  background: #fff;
  color: var(--accent-dark);
  font-size: 0.95rem;
  border: 1px solid var(--line);
}

.thank-step-title {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.thank-step-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.thank-response-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.thank-response-badge i {
  font-size: 0.95rem;
}

.thank-contact-list {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.thank-contact-card {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  padding: 0.85rem 0.95rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  transition: border-color 180ms ease, background 180ms ease;
}

.thank-contact-card:hover {
  border-color: rgba(232, 148, 10, 0.35);
  background: #fff;
}

.thank-contact-icon {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
  background: #fff;
  color: var(--accent-dark);
  font-size: 1.05rem;
  border: 1px solid var(--line);
}

.thank-contact-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.1rem;
}

.thank-contact-value {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  line-height: 1.4;
  word-break: break-word;
}

a.thank-contact-value:hover {
  color: var(--accent-dark);
}

.thank-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(37, 211, 102, 0.35);
  background: rgba(37, 211, 102, 0.08);
  color: #128c47;
  font-weight: 700;
}

.thank-whatsapp-btn:hover {
  background: rgba(37, 211, 102, 0.14);
  border-color: rgba(37, 211, 102, 0.55);
  color: #0f7038;
}

.thank-whatsapp-btn i {
  font-size: 1.1rem;
}

@media (max-width: 991.98px) {
  .thank-body {
    margin-top: -2rem;
    padding-bottom: 3.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-step-body,
  .thank-contact-card {
    transition: none;
  }

  .thank-step-body:hover {
    transform: none;
  }
}

.thank-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.thank-icon {
  font-size: 3rem;
  color: #1f9d55;
  line-height: 1;
}

/* 404 */
.error-page {
  background: var(--paper-2);
}

.error-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(15, 28, 46, 0.97) 0%, rgba(22, 42, 69, 0.94) 100%),
    url("../images/hero-banner.webp") center / cover no-repeat;
  color: #fff;
}

.error-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(232, 148, 10, 0.22), transparent 70%);
  pointer-events: none;
}

.error-hero .container {
  position: relative;
  z-index: 1;
}

.error-code {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: clamp(5rem, 16vw, 8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.12);
  user-select: none;
}

.error-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.error-lead {
  max-width: 38rem;
  margin-inline: auto;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.error-body {
  position: relative;
  padding: 0 0 4.5rem;
  margin-top: -3rem;
}

.error-link-card {
  display: block;
  height: 100%;
  padding: 1.5rem 1.35rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 18px 50px rgba(15, 28, 46, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.error-link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 148, 10, 0.35);
  box-shadow: 0 22px 60px rgba(15, 28, 46, 0.12);
  color: inherit;
}

.error-link-icon {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: rgba(232, 148, 10, 0.12);
  color: var(--accent);
  font-size: 1.25rem;
}

.error-link-title {
  margin-bottom: 0.45rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.error-link-text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

/* Legal pages */
.legal-page {
  background: var(--paper-2);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(15, 28, 46, 0.97) 0%, rgba(22, 42, 69, 0.94) 100%),
    url("../images/hero-banner.webp") center / cover no-repeat;
  color: #fff;
  padding-bottom: 2rem;
}

.legal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(232, 148, 10, 0.2), transparent 70%);
  pointer-events: none;
}

.legal-hero .container {
  position: relative;
  z-index: 1;
}

.legal-hero-badge {
  display: inline-grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(232, 148, 10, 0.16);
  border: 2px solid rgba(232, 148, 10, 0.4);
  color: var(--accent);
  font-size: 1.65rem;
  line-height: 1;
}

.legal-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 0 4.5rem;
}

.legal-title {
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.legal-intro {
  max-width: 38rem;
  margin-inline: auto;
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.legal-updated-badge {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 600;
}

.legal-document {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 22px 60px rgba(15, 28, 46, 0.08);
  padding: 1.75rem 1.5rem;
  overflow: hidden;
}

.legal-doc-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
}

@media (min-width: 768px) {
  .legal-document {
    padding: 2.25rem 2.5rem 2.5rem;
  }
}

.legal-document h2 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 0.85rem;
  padding-top: 2.25rem;
  letter-spacing: -0.02em;
  border-top: 1px solid var(--line);
  scroll-margin-top: 6rem;
}

.legal-document h2:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.legal-document h2 + p,
.legal-document h2 + ul {
  margin-top: 0;
}

.legal-document p,
.legal-document li {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.96rem;
}

.legal-document p {
  margin-bottom: 1rem;
}

.legal-document p:last-child {
  margin-bottom: 0;
}

.legal-document ul {
  margin: 0 0 1rem;
  padding-left: 0;
  list-style: none;
}

.legal-document ul li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.55rem;
}

.legal-document ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

.legal-document a {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: none;
}

.legal-document a:hover {
  text-decoration: underline;
}

.legal-contact-box {
  margin-top: 2.25rem;
  padding: 1.35rem 1.25rem;
  border-radius: 0.9rem;
  background: linear-gradient(145deg, var(--paper) 0%, #fff 100%);
  border: 1px solid var(--line);
}

.legal-contact-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.legal-contact-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.legal-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--muted);
  margin: 0;
  padding: 0;
}

.legal-contact-list li::before {
  display: none;
}

.legal-contact-list i {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--accent-dark);
}

.legal-sidebar {
  display: grid;
  gap: 1rem;
}

@media (min-width: 992px) {
  .legal-sidebar {
    position: sticky;
    top: 6rem;
  }
}

.legal-sidebar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.2rem;
}

.legal-sidebar-help {
  background: linear-gradient(145deg, #fff 0%, var(--paper) 100%);
}

.legal-sidebar-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

.legal-sidebar-text {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.legal-toc ol {
  display: grid;
  gap: 0.35rem;
  max-height: 18rem;
  overflow: auto;
  padding-right: 0.25rem;
}

.legal-toc a {
  display: block;
  padding: 0.4rem 0.55rem;
  border-radius: 0.55rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.legal-toc a:hover {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

@media (max-width: 991.98px) {
  .legal-content {
    padding: 2rem 0 3.5rem;
  }

  .legal-document h2 {
    padding-top: 1.75rem;
  }

  .legal-sidebar {
    order: -1;
  }

  .legal-toc ol {
    max-height: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .book-track,
  .ticker-track {
    animation: none;
  }
  .service-tile,
  .format-tile,
  .earn-tile,
  .whatsapp-float {
    transition: none;
  }
}

@media (max-width: 575.98px) {
  .section-pad { padding: 3.25rem 0; }
  .hero { min-height: auto; padding-top: 3rem; padding-bottom: 3rem; }
  .btn-lg { font-size: 1rem; }
}
