/* =========================================================
   Partsofmusic — Salik recharge & UAE mobile top-up
   BEM stylesheet | Theme: Bold Neo Playful
   Palette: cool near-white + deep indigo/violet + electric lime
   Fonts: Space Grotesk (display) + Inter (body)
   ========================================================= */

:root {
  --primary: #4c1d95;       /* deep indigo/violet */
  --primary-2: #6d28d9;     /* violet */
  --accent: #a3e635;        /* electric lime */
  --accent-2: #84cc16;      /* lime deep */
  --light: #ecebf5;         /* cool light panel */
  --dark: #2e1065;          /* deep indigo (footer/dark) */
  --text: #18181b;          /* graphite */
  --muted: #6b7280;         /* cool gray */
  --white: #ffffff;
  --bg: #f4f4f7;            /* cool near-white page bg */
  --border: #e4e4ec;        /* light cool border */
  --highlight: #f1eefb;     /* pale violet wash */

  --radius: 26px;
  --radius-sm: 16px;
  --shadow: 0 10px 0 rgba(76, 29, 149, 0.10);
  --shadow-lg: 14px 18px 0 rgba(76, 29, 149, 0.16);
  --shadow-soft: 0 18px 44px rgba(76, 29, 149, 0.14);
  --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: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
}

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 22px;
}

/* -------- Buttons --------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 34px;
  border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: 2.5px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), color var(--transition),
              border-color var(--transition);
}
.btn:hover { transform: translateY(-3px); }
.btn--primary {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--dark);
  box-shadow: 4px 5px 0 var(--dark);
}
.btn--primary:hover {
  background: var(--primary-2);
  color: var(--accent);
  box-shadow: 6px 8px 0 var(--dark);
}
.btn--outline {
  background: transparent;
  border-color: var(--primary-2);
  color: var(--primary-2);
}
.btn--outline:hover {
  background: var(--primary-2);
  color: var(--white);
  box-shadow: 6px 8px 0 var(--accent);
}
.btn--light {
  background: var(--white);
  color: var(--primary);
  border-color: var(--accent);
  box-shadow: 4px 5px 0 var(--accent);
}
.btn--light:hover {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--dark);
}

/* -------- Header ---------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 244, 247, 0.88);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 2px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.header.is-scrolled {
  box-shadow: 0 6px 24px rgba(76, 29, 149, 0.10);
  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: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.6px;
  color: var(--primary);
}
.header__logo-accent { color: var(--primary-2); }

.header__menu {
  display: flex;
  list-style: none;
  gap: 30px;
}
.header__menu-item { display: inline-block; }
.header__menu-link {
  font-weight: 600;
  font-size: 15px;
  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: 3px;
  border-radius: 3px;
  background: var(--accent);
  transition: width var(--transition);
}
.header__menu-link:hover { color: var(--primary-2); }
.header__menu-link:hover::after { width: 100%; }
.header__menu-link--active { color: var(--primary-2); }
.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: 26px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: transform var(--transition), opacity var(--transition);
}
.header__burger.is-open .header__burger-bar:nth-child(1) {
  transform: translateY(8px) 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(-8px) rotate(-45deg);
}

/* -------- Hero ------------------------------------------ */
.hero {
  background:
    linear-gradient(210deg, var(--primary-2) 0%, var(--primary) 48%, var(--dark) 100%);
  color: var(--white);
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(163, 230, 53, 0.55), transparent 68%);
  top: -180px;
  left: -160px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(6px);
}
.hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.65), transparent 66%);
  bottom: -240px;
  right: -180px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(8px);
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}
.hero__eyebrow {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--accent);
  padding: 9px 20px;
  border: 2.5px solid var(--dark);
  border-radius: 999px;
  margin-bottom: 26px;
  box-shadow: 3px 4px 0 rgba(0,0,0,0.25);
}
.hero__title {
  font-size: 62px;
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero__title-accent { color: var(--accent); }
.hero__text {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.94;
  margin-bottom: 22px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 14px;
}

.hero--compact { padding: 90px 0 96px; }
.hero--compact .hero__title { font-size: 48px; }

/* -------- Sections -------------------------------------- */
.section { padding: 100px 0; }
.section--white { background: var(--bg); }
.section--light { background: var(--light); }
.section--dark {
  background: var(--dark);
  color: var(--white);
}

.section__head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section__eyebrow {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--accent);
  padding: 7px 18px;
  border-radius: 999px;
  border: 2.5px solid var(--primary);
  margin-bottom: 20px;
}
.section__title {
  font-size: 44px;
  line-height: 1.12;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.section--dark .section__title { color: var(--white); }
.section__text {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
}
.section--dark .section__text { color: rgba(255, 255, 255, 0.80); }

/* -------- Stats ----------------------------------------- */
.stats {
  background: var(--primary);
  color: var(--white);
  padding: 84px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats__item {
  padding: 32px 18px;
  background: var(--dark);
  border: 2.5px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: 6px 7px 0 rgba(0, 0, 0, 0.22);
}
.stats__number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -1.5px;
}
.stats__label {
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

/* -------- Cards ----------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 3px solid var(--primary-2);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition),
              border-color var(--transition);
}
.card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-2);
  box-shadow: 16px 22px 0 rgba(132, 204, 22, 0.30);
}
.card__image {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-bottom: 3px solid var(--primary-2);
  transition: border-color var(--transition);
}
.card:hover .card__image { border-color: var(--accent-2); }
.card__body { padding: 30px 28px 34px; }
.card__title {
  font-size: 23px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}
.card__text {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.75;
}

/* -------- Pills (networks) ------------------------------ */
.pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.pill {
  padding: 15px 32px;
  border-radius: 999px;
  background: var(--white);
  border: 3px solid var(--primary-2);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--primary);
  box-shadow: 4px 5px 0 rgba(76, 29, 149, 0.18);
  transition: border-color var(--transition), color var(--transition),
              transform var(--transition), background var(--transition),
              box-shadow var(--transition);
}
.pill:hover {
  border-color: var(--dark);
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-4px);
  box-shadow: 6px 8px 0 var(--primary);
}

/* -------- Steps (3-step / how it works short) ----------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step {
  background: var(--white);
  border: 3px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 30px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition),
              border-color var(--transition);
}
.step:hover {
  transform: translateY(-6px);
  border-color: var(--primary-2);
  box-shadow: 10px 12px 0 rgba(109, 40, 217, 0.18);
}
.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 22px;
  background: var(--primary-2);
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 22px;
  border: 2.5px solid var(--dark);
  box-shadow: 4px 5px 0 var(--accent);
}
.step__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.step__text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* -------- Payment grid ---------------------------------- */
.payments {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.payment {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  background: var(--white);
  border: 2.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  min-height: 86px;
  transition: border-color var(--transition), transform var(--transition),
              background var(--transition), color var(--transition);
}
.payment:hover {
  border-color: var(--primary-2);
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-4px);
}

/* -------- Testimonials ---------------------------------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--primary-2);
  display: flex;
  flex-direction: column;
}
.testimonial__stars {
  color: var(--accent-2);
  font-size: 19px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial__quote {
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 22px;
  flex-grow: 1;
  font-size: 15.5px;
}
.testimonial__author {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 15.5px;
}
.testimonial__location {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

/* -------- CTA banner ------------------------------------ */
.cta-banner {
  background:
    linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 55%, var(--dark) 100%);
  color: var(--white);
  border-radius: 32px;
  border: 3px solid var(--accent);
  padding: 74px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.cta-banner::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(163, 230, 53, 0.30), transparent 70%);
  bottom: -200px;
  left: -150px;
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
  top: -160px;
  right: -120px;
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
  letter-spacing: -1px;
}
.cta-banner__text {
  font-size: 17px;
  opacity: 0.94;
  margin-bottom: 30px;
  position: relative;
}
.cta-banner__actions {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

/* -------- Mission (split) ------------------------------- */
.mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.mission__image {
  width: 100%;
  border-radius: var(--radius);
  border: 4px solid var(--primary-2);
  box-shadow: 16px 18px 0 var(--accent);
  height: 480px;
  object-fit: cover;
  order: 2;            /* image to the RIGHT (opposite of original left) */
}
.mission__title {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
  line-height: 1.14;
  letter-spacing: -1px;
}
.mission__text {
  font-size: 17px;
  color: var(--muted);
  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: 28px;
  height: 28px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--dark);
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
  border: 2px solid var(--dark);
}

/* -------- Flow (How it works extended) ------------------ */
.flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.flow__image {
  width: 100%;
  border-radius: var(--radius);
  border: 4px solid var(--accent-2);
  box-shadow: -16px 18px 0 var(--primary-2);
  height: 560px;
  object-fit: cover;
  order: 2;            /* image to the RIGHT (opposite of original left) */
}
.flow__list { list-style: none; }
.flow__item {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 2px dashed 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: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--accent);
  color: var(--dark);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 21px;
  font-weight: 700;
  flex-shrink: 0;
  border: 2.5px solid var(--dark);
}
.flow__title {
  font-size: 21px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.flow__text {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.7;
}

/* -------- FAQ accordion --------------------------------- */
.faq { max-width: 900px; margin: 0 auto; }
.faq__item {
  border: 3px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  background: var(--white);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.faq__item.is-open {
  box-shadow: 8px 10px 0 rgba(109, 40, 217, 0.16);
  border-color: var(--primary-2);
}
.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}
.faq__icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: var(--accent);
  border: 2.5px solid var(--dark);
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  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(--primary-2);
  color: var(--accent);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
  color: var(--muted);
  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:
    linear-gradient(165deg, var(--primary) 0%, var(--primary-2) 55%, var(--dark) 100%);
  color: var(--white);
  padding: 46px 40px;
  border-radius: var(--radius);
  border: 3px solid var(--accent);
  box-shadow: 12px 14px 0 var(--primary-2);
}
.contact-info__title {
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.contact-info__list { list-style: none; }
.contact-info__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.contact-info__item:last-child { border-bottom: none; }
.contact-info__label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.contact-info__value {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.94);
}
.contact-info__value:hover { color: var(--accent); }

/* -------- Form ------------------------------------------ */
.form {
  background: var(--white);
  padding: 46px 40px;
  border-radius: var(--radius);
  border: 3px solid var(--primary-2);
  box-shadow: var(--shadow-lg);
}
.form__title {
  font-size: 25px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.form__group { margin-bottom: 20px; }
.form__label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}
.form__input,
.form__textarea {
  width: 100%;
  padding: 15px 18px;
  border: 2.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), background var(--transition),
              box-shadow var(--transition);
}
.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--primary-2);
  background: var(--highlight);
  box-shadow: 4px 5px 0 var(--accent);
}
.form__textarea { min-height: 150px; resize: vertical; }
.form__submit { width: 100%; margin-top: 8px; }

/* -------- Footer ---------------------------------------- */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.80);
  padding: 84px 0 32px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--primary-2), var(--accent));
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer__brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.footer__brand-accent { color: var(--accent); }
.footer__about {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.70);
}
.footer__col-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer__list { list-style: none; }
.footer__list-item { margin-bottom: 11px; font-size: 14.5px; }
.footer__list-item a:hover { color: var(--accent); }
.footer__copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 26px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
}

/* -------- Legal pages ----------------------------------- */
.legal { max-width: 880px; margin: 0 auto; }
.legal__updated {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--accent);
  padding: 8px 18px;
  border-radius: 999px;
  border: 2.5px solid var(--primary);
  margin-bottom: 24px;
  font-weight: 700;
}
.legal__title {
  font-size: 46px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.14;
  letter-spacing: -1.4px;
}
.legal__intro {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 40px;
}
.legal__section { margin-bottom: 38px; }
.legal__heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  margin-top: 30px;
  letter-spacing: -0.5px;
}
.legal__subheading {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  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(--primary);
  color: var(--white);
  padding: 18px 26px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  z-index: 200;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition);
  font-weight: 600;
  font-size: 14.5px;
  border: 2.5px solid var(--accent);
}
.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(--white);
  border: 3px solid var(--primary-2);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  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: 12px 22px;
  border-radius: 999px;
  border: 2.5px solid transparent;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition);
}
.cookie__btn--accept {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--dark);
}
.cookie__btn--accept:hover { background: var(--primary-2); color: var(--accent); }
.cookie__btn--decline { background: var(--light); color: var(--text); }
.cookie__btn--decline:hover { background: var(--border); }

/* -------- Mobile --------------------------------------- */
@media (max-width: 760px) {
  .header__inner { padding: 14px 0; }
  .header__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 22px 22px;
    border-bottom: 2px solid var(--border);
    box-shadow: 0 12px 28px rgba(76, 29, 149, 0.14);
    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: 76px 0 86px; }
  .hero__title { font-size: 38px; }
  .hero__text { font-size: 16px; }

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

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .stats__number { font-size: 38px; }
  .stats__item { padding: 24px 14px; }

  .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; }
  .flow__image { height: 340px; order: -1; }

  .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: 32px; }
}

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