/* =========================================================
   Wristbandsales — Salik recharge & UAE mobile top-up
   BEM stylesheet | Theme: Warm Desert Editorial
   Fonts: Fraunces (display serif) + DM Sans (body)
   ========================================================= */

:root {
  --bg: #FBF7F1;          /* warm cream / sand */
  --surface: #FFFFFF;     /* card surface */
  --text: #241B14;        /* espresso text */
  --terracotta: #C75D3C;  /* primary accent */
  --terracotta-2: #A8472B;/* deeper terracotta (hover) */
  --amber: #DA9A3E;       /* warm amber / gold secondary */
  --clay: #7C6F60;        /* olive / clay muted */
  --border: #E7DCCB;      /* warm hairline border */
  --highlight: #F3E9DA;   /* soft highlight */
  --espresso: #221913;    /* deep footer */

  /* semantic aliases (kept so every prior selector still resolves cleanly) */
  --primary: var(--text);
  --accent: var(--terracotta);
  --accent-2: var(--terracotta);
  --muted: var(--clay);
  --white: var(--surface);
  --light: var(--highlight);
  --dark: var(--espresso);

  --radius: 6px;
  --radius-sm: 4px;
  --shadow: 0 4px 14px rgba(36, 27, 20, 0.06);
  --shadow-lg: 0 14px 34px rgba(36, 27, 20, 0.12);
  --transition: 0.3s cubic-bezier(.2,.7,.2,1);
}

/* -------- Reset & base ---------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 600;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* -------- Utilities ------------------------------------- */
.u-text-center { text-align: center; }
.u-mt-1 { margin-top: 8px; }
.u-mt-2 { margin-top: 16px; }
.u-mt-3 { margin-top: 24px; }
.u-mt-4 { margin-top: 32px; }
.u-mt-5 { margin-top: 48px; }
.u-hidden { display: none !important; }

/* -------- Container ------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* -------- Buttons --------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), color var(--transition),
              border-color var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--terracotta); color: #FBF7F1; border-color: var(--terracotta); }
.btn--primary:hover { background: var(--terracotta-2); border-color: var(--terracotta-2); color: #FBF7F1; box-shadow: var(--shadow); }
.btn--outline {
  background: transparent;
  border-color: var(--terracotta);
  color: var(--terracotta);
}
.btn--outline:hover { background: var(--terracotta); color: #FBF7F1; }
.btn--light {
  background: var(--bg);
  color: var(--text);
  border-color: var(--bg);
}
.btn--light:hover { background: var(--highlight); border-color: var(--highlight); }

/* -------- Header ---------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 241, 0.9);
  backdrop-filter: saturate(120%) blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.header.is-scrolled {
  box-shadow: var(--shadow);
  border-bottom-color: var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.header__logo {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text);
}
.header__logo-accent { color: var(--terracotta); }

.header__menu {
  display: flex;
  list-style: none;
  gap: 32px;
}
.header__menu-item { display: inline-block; }
.header__menu-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  padding: 6px 0;
  position: relative;
  transition: color var(--transition);
}
.header__menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width var(--transition);
}
.header__menu-link:hover { color: var(--terracotta); }
.header__menu-link:hover::after { width: 100%; }
.header__menu-link--active { color: var(--terracotta); }
.header__menu-link--active::after { width: 100%; }

.header__cta { display: inline-flex; }

.header__burger {
  display: none;
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.header__burger-bar {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 0;
  transition: transform var(--transition), opacity var(--transition);
}
.header__burger.is-open .header__burger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__burger.is-open .header__burger-bar:nth-child(2) { opacity: 0; }
.header__burger.is-open .header__burger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* -------- Hero (light cream editorial) ------------------ */
.hero {
  background:
    radial-gradient(circle at 85% 10%, rgba(218, 154, 62, 0.14), transparent 55%),
    linear-gradient(165deg, #FDFAF4 0%, #F3E9DA 100%);
  color: var(--text);
  padding: 110px 0 120px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(199, 93, 60, 0.10), transparent 70%);
  top: -200px;
  right: -160px;
  border-radius: 50%;
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; max-width: 800px; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 28px;
}
.hero__eyebrow::before {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--terracotta);
}
.hero__title {
  font-family: 'Fraunces', serif;
  font-size: 68px;
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -1.2px;
  margin-bottom: 24px;
}
.hero__title-accent { color: var(--terracotta); font-style: italic; }
.hero__text {
  font-size: 18px;
  line-height: 1.75;
  color: var(--clay);
  margin-bottom: 32px;
  max-width: 620px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

.hero--compact { padding: 78px 0 84px; }
.hero--compact .hero__title { font-size: 50px; }

/* -------- Sections -------------------------------------- */
.section { padding: 96px 0; }
.section--white { background: var(--surface); }
.section--light { background: var(--highlight); }
.section--dark {
  background: var(--espresso);
  color: #F3E9DA;
}

.section__head { max-width: 720px; margin: 0 0 60px; text-align: left; }
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 18px;
}
.section__eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--terracotta);
}
.section__title {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  line-height: 1.12;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: -0.8px;
}
.section--dark .section__title { color: #FBF7F1; }
.section__text {
  font-size: 17px;
  color: var(--clay);
  line-height: 1.8;
}
.section--dark .section__text { color: rgba(243, 233, 218, 0.82); }

/* -------- Stats ----------------------------------------- */
.stats {
  background: var(--highlight);
  color: var(--text);
  padding: 78px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: left;
}
.stats__item {
  padding: 8px 36px;
  border-right: 1px solid var(--border);
}
.stats__item:first-child { padding-left: 0; }
.stats__item:last-child { border-right: none; }
.stats__number {
  font-family: 'Fraunces', serif;
  font-size: 60px;
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -1.5px;
}
.stats__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 600;
}

/* -------- Cards ----------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-top: 3px solid var(--terracotta);
  overflow: hidden;
  box-shadow: none;
  transition: transform var(--transition), box-shadow var(--transition),
              border-top-color var(--transition);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-top-color: var(--amber); }
.card__image {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 0;
}
.card__body { padding: 30px 28px 34px; }
.card__title {
  font-family: 'Fraunces', serif;
  font-size: 23px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}
.card__text {
  color: var(--clay);
  font-size: 15.5px;
  line-height: 1.75;
}

/* -------- Pills (networks) ------------------------------ */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pill {
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.4px;
  color: var(--text);
  transition: border-color var(--transition), color var(--transition),
              transform var(--transition), background var(--transition);
}
.pill:hover {
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: #FBF7F1;
  transform: translateY(-3px);
}

/* -------- Steps (3-step / how it works short) ----------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: left;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  background: var(--highlight);
  border: 1px solid var(--terracotta);
  color: var(--terracotta);
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 22px;
}
.step__title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.step__text {
  color: var(--clay);
  font-size: 15px;
  line-height: 1.7;
}

/* -------- Payment grid ---------------------------------- */
.payments {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.payment {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  text-align: center;
  min-height: 84px;
  transition: border-color var(--transition), transform var(--transition),
              background var(--transition);
}
.payment:hover {
  border-color: var(--terracotta);
  background: var(--highlight);
  transform: translateY(-3px);
}

/* -------- Testimonials ---------------------------------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: none;
  border-top: 3px solid var(--amber);
  display: flex;
  flex-direction: column;
}
.testimonial__stars {
  color: var(--amber);
  font-size: 17px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial__quote {
  font-family: 'Fraunces', serif;
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 22px;
  flex-grow: 1;
  font-size: 18px;
}
.testimonial__author {
  font-weight: 700;
  color: var(--text);
  font-size: 15px;
}
.testimonial__location {
  font-size: 13px;
  color: var(--clay);
  margin-top: 2px;
}

/* -------- CTA banner (warm terracotta) ------------------ */
.cta-banner {
  background:
    radial-gradient(circle at 82% 18%, rgba(218, 154, 62, 0.34), transparent 58%),
    linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-2) 100%);
  color: #FBF7F1;
  border-radius: var(--radius);
  padding: 72px 54px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(251, 247, 241, 0.12), transparent 70%);
  bottom: -160px;
  left: -120px;
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner__title {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 14px;
  position: relative;
  letter-spacing: -0.6px;
}
.cta-banner__text {
  font-size: 17px;
  opacity: 0.94;
  margin-bottom: 30px;
  position: relative;
}
.cta-banner__actions {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

/* -------- Mission (split, image on RIGHT) --------------- */
.mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.mission__image {
  width: 100%;
  border-radius: var(--radius);
  height: 480px;
  object-fit: cover;
  order: 2;                       /* image moved to opposite side */
  position: relative;
  box-shadow: -22px 22px 0 0 var(--highlight); /* offset framing */
}
.mission__title {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.14;
  letter-spacing: -0.6px;
}
.mission__text {
  font-size: 17px;
  color: var(--clay);
  line-height: 1.8;
  margin-bottom: 16px;
}
.mission__list { list-style: none; margin-top: 24px; }
.mission__list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  color: var(--text);
  font-weight: 500;
}
.mission__list-item::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: var(--radius-sm);
  background: var(--terracotta);
  color: #FBF7F1;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 3px;
}

/* -------- Flow (How it works extended, image on RIGHT) -- */
.flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.flow__image {
  width: 100%;
  border-radius: var(--radius);
  height: 560px;
  object-fit: cover;
  order: 2;                       /* moved to opposite side */
  box-shadow: -22px 22px 0 0 var(--highlight);
}
.flow__list { list-style: none; }
.flow__item {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.flow__item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.flow__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: var(--text);
  color: var(--amber);
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  flex-shrink: 0;
}
.flow__title {
  font-family: 'Fraunces', serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.flow__text {
  font-size: 15.5px;
  color: var(--clay);
  line-height: 1.7;
}

/* -------- FAQ accordion --------------------------------- */
.faq { max-width: 900px; margin: 0 auto; }
.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  background: var(--surface);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.faq__item.is-open {
  box-shadow: var(--shadow);
  border-color: var(--terracotta);
}
.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}
.faq__icon {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  background: var(--highlight);
  border: 1px solid var(--terracotta);
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}
.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
  background: var(--terracotta);
  color: #FBF7F1;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
  color: var(--clay);
  line-height: 1.8;
  font-size: 15.5px;
}
.faq__item.is-open .faq__answer { max-height: 400px; padding: 0 28px 24px; }

/* -------- Contact grid ---------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 48px;
  align-items: start;
}
.contact-info {
  background:
    radial-gradient(circle at 75% 0%, rgba(218, 154, 62, 0.22), transparent 60%),
    linear-gradient(160deg, var(--espresso) 0%, #15100B 100%);
  color: #F3E9DA;
  padding: 46px 40px;
  border-radius: var(--radius);
}
.contact-info__title {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}
.contact-info__list { list-style: none; }
.contact-info__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(243, 233, 218, 0.14);
}
.contact-info__item:last-child { border-bottom: none; }
.contact-info__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
}
.contact-info__value {
  font-size: 15.5px;
  color: rgba(243, 233, 218, 0.94);
  transition: color var(--transition);
}
.contact-info__value:hover { color: var(--amber); }

/* -------- Form ------------------------------------------ */
.form {
  background: var(--surface);
  padding: 46px 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.form__title {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}
.form__group { margin-bottom: 20px; }
.form__label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 8px;
}
.form__input,
.form__textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), background var(--transition);
}
.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  background: var(--surface);
}
.form__textarea { min-height: 150px; resize: vertical; }
.form__submit { width: 100%; margin-top: 8px; }

/* -------- Footer (deep espresso + gold) ----------------- */
.footer {
  background: var(--espresso);
  color: rgba(243, 233, 218, 0.74);
  padding: 80px 0 30px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--amber), var(--terracotta));
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer__brand {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 700;
  color: #FBF7F1;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.footer__brand-accent { color: var(--amber); }
.footer__about {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(243, 233, 218, 0.62);
}
.footer__col-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.footer__list { list-style: none; }
.footer__list-item { margin-bottom: 11px; font-size: 14.5px; }
.footer__list-item a { transition: color var(--transition); }
.footer__list-item a:hover { color: var(--amber); }
.footer__copyright {
  border-top: 1px solid rgba(243, 233, 218, 0.1);
  padding-top: 26px;
  text-align: center;
  font-size: 13px;
  color: rgba(243, 233, 218, 0.5);
}

/* -------- Legal pages ----------------------------------- */
.legal { max-width: 880px; margin: 0 auto; }
.legal__updated {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--terracotta);
  background: var(--highlight);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-weight: 700;
}
.legal__title {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.12;
  letter-spacing: -1px;
}
.legal__intro {
  font-size: 17px;
  color: var(--clay);
  line-height: 1.8;
  margin-bottom: 40px;
}
.legal__section { margin-bottom: 38px; }
.legal__heading {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
  margin-top: 30px;
  letter-spacing: -0.3px;
}
.legal__subheading {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  margin-top: 22px;
}
.legal__paragraph {
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 14px;
  font-size: 15.5px;
}
.legal__list {
  margin: 0 0 18px 22px;
  color: var(--text);
}
.legal__list-item { line-height: 1.85; margin-bottom: 7px; font-size: 15.5px; }

/* -------- Reveal animations ----------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-revealed { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }
.reveal--delay-3 { transition-delay: 0.36s; }

/* -------- Toast ----------------------------------------- */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--espresso);
  color: #FBF7F1;
  padding: 18px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition);
  font-weight: 600;
  font-size: 14.5px;
  border-left: 3px solid var(--amber);
}
.toast.is-visible { opacity: 1; transform: none; }

/* -------- Cookie banner --------------------------------- */
.cookie {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 540px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 24px 26px;
  z-index: 150;
  display: none;
}
.cookie.is-visible { display: block; }
.cookie__text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 14px;
}
.cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie__btn {
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.cookie__btn--accept { background: var(--terracotta); color: #FBF7F1; border-color: var(--terracotta); }
.cookie__btn--accept:hover { background: var(--terracotta-2); border-color: var(--terracotta-2); }
.cookie__btn--decline { background: var(--bg); color: var(--text); border-color: var(--border); }
.cookie__btn--decline:hover { background: var(--highlight); }

/* -------- Mobile --------------------------------------- */
@media (max-width: 760px) {
  .header__inner { padding: 14px 0; }
  .header__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 22px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
  }
  .header__menu.is-open { display: flex; }
  .header__menu-item { border-bottom: 1px solid var(--border); }
  .header__menu-item:last-child { border-bottom: none; }
  .header__menu-link {
    display: block;
    padding: 14px 0;
  }
  .header__menu-link::after { display: none; }
  .header__cta { display: none; }
  .header__burger { display: flex; }

  .hero { padding: 70px 0 78px; }
  .hero__title { font-size: 42px; }
  .hero--compact .hero__title { font-size: 38px; }
  .hero__text { font-size: 16px; }

  .section { padding: 64px 0; }
  .section__title { font-size: 32px; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stats__number { font-size: 44px; }
  .stats__item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
  }
  .stats__item:first-child { padding-top: 0; }
  .stats__item:nth-child(odd) { padding-right: 18px; }
  .stats__item:nth-child(even) { padding-left: 18px; border-left: 1px solid var(--border); }
  .stats__item:nth-last-child(-n+2) { border-bottom: none; }

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

  .payments { grid-template-columns: repeat(2, 1fr); }

  .mission,
  .flow { grid-template-columns: 1fr; gap: 38px; }
  .mission__image { height: 300px; order: -1; box-shadow: -14px 14px 0 0 var(--highlight); }
  .flow__image { height: 340px; order: -1; box-shadow: -14px 14px 0 0 var(--highlight); }

  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-info,
  .form { padding: 32px 26px; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand-col { grid-column: span 2; }

  .cta-banner { padding: 50px 26px; }
  .cta-banner__title { font-size: 30px; }

  .legal__title { font-size: 34px; }
}

@media (max-width: 380px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand-col { grid-column: span 1; }
  .pill { padding: 12px 22px; font-size: 13px; }
}
