:root {
  --bg: #fff8ea;
  --surface: #ffffff;
  --surface-soft: #fff1d1;
  --text: #1f2937;
  --muted: #5b6472;
  --brand: #f4a300;
  --brand-light: #f7cd5b;
  --brand-dark: #cc7f00;
  --accent: #125d2f;
  --line: #f1ddba;
  --shadow: 0 16px 36px rgba(36, 26, 5, 0.11);
  --header-offset: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(circle at top right, #ffe6a8 0%, #fff8ea 30%, #fff8ea 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3 {
  margin: 0 0 0.6rem;
  line-height: 1.15;
  font-family: "Sora", "Trebuchet MS", sans-serif;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(255, 248, 234, 0.88);
  border-bottom: 1px solid rgba(241, 221, 186, 0.8);
}

.topbar__inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-family: "Sora", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}

.brand__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffbe2f 0%, #f37f1b 100%);
  box-shadow: 0 0 0 3px rgba(244, 163, 0, 0.15);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fffdf6;
  border-radius: 10px;
  width: 42px;
  height: 42px;
  padding: 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #172132;
  transition: transform 0.22s ease, opacity 0.22s ease;
  content: "";
}

.nav-toggle__bar {
  position: relative;
}

.nav-toggle__bar::before {
  position: absolute;
  left: 0;
  transform: translateY(-6px);
}

.nav-toggle__bar::after {
  position: absolute;
  left: 0;
  transform: translateY(6px);
}

.topbar.is-menu-open .nav-toggle__bar {
  background: transparent;
}

.topbar.is-menu-open .nav-toggle__bar::before {
  transform: translateY(0) rotate(45deg);
}

.topbar.is-menu-open .nav-toggle__bar::after {
  transform: translateY(0) rotate(-45deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav a:hover {
  color: var(--accent);
}

.nav .nav__order {
  color: #1b1303;
  background: var(--brand);
  box-shadow: 0 6px 16px rgba(244, 163, 0, 0.32);
}

.nav .nav__order:hover {
  color: #1b1303;
  background: var(--brand-light);
}

.is-disabled-link,
.is-disabled-link:hover {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.55;
  filter: grayscale(0.18);
  transform: none;
  box-shadow: none;
}

.nav a.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #1a6f3a 0%, #125d2f 100%);
  box-shadow: 0 6px 14px rgba(18, 93, 47, 0.28);
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(22, 30, 43, 0.8) 0%, rgba(22, 30, 43, 0.35) 45%, rgba(22, 30, 43, 0.1) 100%),
    url("./assets/images/background-mango.jpeg");
  background-size: cover;
  background-position: center;
}

.hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 4rem 0;
  max-width: 960px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--accent);
}

.hero .eyebrow {
  color: #ffd97e;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.9rem);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  padding: 0.78rem 1.1rem;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.btn--primary {
  background: var(--brand);
  color: #1b1303;
  box-shadow: 0 8px 20px rgba(244, 163, 0, 0.35);
}

.btn--primary:hover {
  background: var(--brand-light);
}

.btn--active-tone {
  color: #ffffff;
  background: linear-gradient(135deg, #1a6f3a 0%, #125d2f 100%);
  box-shadow: 0 6px 14px rgba(18, 93, 47, 0.28);
}

.btn--active-tone:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #21884a 0%, #186b38 100%);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.74);
  color: #fff;
}

/* Inline small button — sits flush with surrounding text */
.btn.sm {
  display: inline-flex;
  vertical-align: middle;
  padding: 0.2rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 6px;
  line-height: 1.4;
  transform: translateY(-1px);
}

.section {
  padding: 5rem 0;
}

section[id] {
  scroll-margin-top: calc(var(--header-offset) + 8px);
}

.section--soft {
  background: linear-gradient(180deg, #fffefb 0%, #fff6e0 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section__head {
  margin-bottom: 1.2rem;
}

/* FAQ section — constrain both header and items to the same width so left edges align */
#faq .section__head,
.faq {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.carousel {
  position: relative;
  isolation: isolate;
}

.carousel__viewport {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f4f6f8;
  display: flex;
  align-items: center;
}

.carousel__track {
  display: flex;
  width: 100%;
  transition: transform 0.62s cubic-bezier(0.22, 0.7, 0.2, 1);
  will-change: transform;
}

.carousel__slide {
  min-width: 100%;
  margin: 0;
  position: relative;
}

.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #f4f6f8;
}

.carousel__slide figcaption {
  position: absolute;
  left: 0.55rem;
  bottom: 0.55rem;
  margin: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.28rem 0.55rem;
  border-radius: 8px;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  font-size: 1.2rem;
  line-height: 1;
  color: #fff;
  background: rgba(19, 27, 44, 0.7);
  cursor: pointer;
}

.carousel__btn:hover {
  background: rgba(19, 27, 44, 0.92);
}

.carousel__btn--prev {
  left: 10px;
}

.carousel__btn--next {
  right: 10px;
}

.card__body {
  padding: 1rem;
}

.card__body p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.bullet-list {
  margin: 0;
  padding-left: 1.1rem;
}

.media img {
  width: 100%;
  border-radius: 16px;
  min-height: 280px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.policy {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.legal-stack {
  display: grid;
  gap: 1rem;
}

.policy__subhead {
  margin-bottom: 0.75rem;
}

.policy ol {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.policy__note {
  margin-bottom: 0;
  font-weight: 600;
  color: #874f00;
}

.policy-links {
  font-weight: 700;
}

.policy-links a {
  color: var(--accent);
}

.footer {
  background: #131b2c;
  color: #eff3f8;
  padding: 2rem 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer a {
  color: #ffd97e;
  font-weight: 700;
}

.footer address {
  font-style: normal;
}

.footer__payments {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.footer__payments-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffd97e;
}

.footer__payments-tiles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.footer__payment-tile {
  min-width: 66px;
  height: 42px;
  padding: 0.4rem 0.55rem;
  border-radius: 3px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(16, 16, 16, 0.08);
}

.footer__payment-logo {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* FAQ */
.faq {
  max-width: 740px;
  margin: 0 auto;
}

.faq__item {
  border-top: 1px solid var(--line);
  padding: 1.25rem 0;
}

.faq__item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq__item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.faq__item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4a5568;
}

.faq__item a:not(.btn) {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1440px) {
  .container {
    width: min(1260px, 90vw);
  }

  .cards {
    gap: 1.2rem;
  }

  .section {
    padding: 5.4rem 0;
  }
}

@media (max-width: 1280px) {
  .container {
    width: min(1100px, 94vw);
  }

  .footer__inner {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .footer__payments-logos {
    gap: 0.7rem;
  }
}

@media (max-width: 1200px) {
  .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero {
    min-height: 76vh;
  }

  .section {
    padding: 4.5rem 0;
  }
}

@media (max-width: 980px) {
  .topbar__inner {
    min-height: 64px;
    align-items: center;
    row-gap: 0.7rem;
  }

  .brand {
    font-size: 0.98rem;
    max-width: calc(100% - 58px);
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 22px rgba(36, 26, 5, 0.11);
  }

  .nav a {
    display: block;
    width: 100%;
    font-size: 0.9rem;
    padding: 0.48rem 0.62rem;
    white-space: normal;
    flex: 1 1 auto;
    border-radius: 10px;
  }

  .topbar.is-menu-open .nav {
    display: flex;
  }

  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 4rem 0;
  }

  .media img {
    min-height: 230px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1120px, 94vw);
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 64vh;
  }

  .hero__content {
    padding: 3.2rem 0;
  }

  .card__body {
    padding: 0.9rem;
  }
}

@media (max-width: 700px) {
  .topbar__inner {
    min-height: 60px;
  }

  .brand {
    font-size: 0.9rem;
  }

  .hero {
    min-height: 70vh;
  }

  .section {
    padding: 3.6rem 0;
  }

  .hero__cta {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .btn.sm {
    width: auto;
    display: inline-flex;
  }

  .policy {
    padding: 1.15rem;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(1120px, 95vw);
  }

  .hero__content {
    padding: 2.8rem 0;
  }

  h1 {
    font-size: clamp(1.7rem, 9vw, 2.2rem);
  }

  .brand {
    font-size: 0.84rem;
  }

  .nav a {
    font-size: 0.84rem;
  }

  .footer__payments-tiles {
    gap: 0.45rem;
    font-size: clamp(1.35rem, 6vw, 1.75rem);
  }
  .footer__payment-tile {
    min-width: 62px;
    height: 40px;
    padding: 0.35rem 0.48rem;
  }
}

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

  .reveal,
  .carousel__track {
    transition: none;
  }
}