/* ============ RizeUp Global — styles ============ */

:root {
  --indigo: #5B4FE9;
  --indigo-dark: #4437C9;
  --ink: #171040;
  --muted: #6F6C8F;
  --faint: #8B88AA;
  --lavender: #F3F2FB;
  --lavender-deep: #E4E1F8;
  --border: #EAE8F7;
  --border-soft: #EFEDFB;
  --tint-indigo: #EEECFD;
  --tint-yellow: #FEF4DB;
  --tint-red: #FCE7E5;
  --yellow: #FDC93B;
  --yellow-dark: #F0B81F;
  --yellow-fg: #C79418;
  --red: #E8544D;
  --green: #1B9B57;
  --tint-green: #E6F7EC;
  --footer-chip: #2A2158;
  --footer-text: #A5A2C0;
  --wa: #25D366;
  --wa-dark: #1FB958;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 76px; }

body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: #ffffff;
}

a { color: var(--indigo); text-decoration: none; }
a:hover { color: var(--indigo-dark); }

h1, h2, h3, .sora { font-family: 'Sora', sans-serif; }

.container { max-width: 1200px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }

.btn-primary {
  display: inline-block;
  background: var(--indigo);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
}
.btn-primary:hover { background: var(--indigo-dark); color: #ffffff; }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--border-soft);
}
.navbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar__logo {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -.02em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 9px;
}
.navbar__logo:hover { color: var(--ink); }
.navbar__logo-img {
  width: 32px; height: 32px;
  object-fit: contain;
  display: block;
  flex: none;
}
.navbar__logo em { font-style: normal; color: var(--indigo); margin-left: .22em; }
.navbar__links { display: flex; gap: 32px; font-size: 15px; font-weight: 500; }
.navbar__links a { color: var(--muted); }
.navbar__links a:first-child { color: var(--ink); }
.navbar__links a:hover { color: var(--indigo); }
.navbar__cta {
  background: var(--indigo);
  color: #ffffff;
  border-radius: 999px;
  padding: 11px 26px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}
.navbar__cta:hover { background: var(--indigo-dark); color: #ffffff; }

/* ---------- Hero ---------- */
.hero { background: var(--lavender); overflow: hidden; position: relative; }
.hero__blob {
  position: absolute; top: -90px; left: -90px;
  width: 260px; height: 260px; border-radius: 50%;
  background: var(--lavender-deep);
}
.hero__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 32px 56px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero h1 {
  font-weight: 800;
  font-size: 58px;
  line-height: 1.08;
  margin: 0 0 20px;
}
.hero h1 em { font-style: normal; color: var(--indigo); }
.hero__lede {
  font-size: 17px; line-height: 1.65; color: var(--muted);
  margin: 0 0 30px; max-width: 480px; text-wrap: pretty;
}
.hero__actions { display: flex; align-items: center; gap: 22px; }
.hero__cta {
  background: var(--indigo); color: #ffffff;
  border-radius: 999px; padding: 15px 30px;
  font-size: 16px; font-weight: 700;
  box-shadow: 0 10px 24px rgba(91, 79, 233, .3);
}
.hero__cta:hover { background: var(--indigo-dark); color: #ffffff; }
.hero__play {
  display: flex; align-items: center; gap: 12px;
  font-weight: 700; color: var(--ink);
}
.hero__play:hover { color: var(--indigo); }
.hero__play-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px rgba(253, 201, 59, .45);
}

.hero__collage { position: relative; }
.hero__collage .dot { position: absolute; border-radius: 50%; }
.hero__collage .dot--red { top: -18px; left: 34%; width: 12px; height: 12px; background: var(--red); }
.hero__collage .dot--yellow { bottom: -14px; left: -20px; width: 10px; height: 10px; background: var(--yellow); }
.hero__collage .dot--indigo { top: 40%; right: -24px; width: 14px; height: 14px; background: var(--indigo); }
.hero__tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 150px;
  gap: 14px;
}
.hero__tiles > div { overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero__tiles img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tile--r-tl { border-radius: 75px 16px 16px 16px; }
.tile--r-tr { border-radius: 16px 75px 16px 16px; }
.tile--r-br { border-radius: 16px 16px 75px 16px; }
.tile--r-bl { border-radius: 16px 16px 16px 75px; }
.tile--circle { border-radius: 50%; }
.tile--indigo { background: var(--indigo); }
.tile--yellow { background: var(--yellow); }
.tile--red { background: var(--red); }

/* hero mini-cards */
.hero__cards {
  max-width: 1200px; margin: 0 auto;
  padding: 0 32px 20px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  position: relative;
}
.mini-card {
  background: #ffffff; border-radius: 16px;
  padding: 22px 24px;
  display: flex; gap: 16px; align-items: flex-start;
  box-shadow: 0 6px 20px rgba(23, 16, 64, .05);
}
.mini-card__icon {
  flex: none; width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.mini-card__title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 17px; }
.mini-card__desc { font-size: 13.5px; color: var(--muted); line-height: 1.5; margin-top: 3px; }
.icon-chip--indigo { background: var(--tint-indigo); }
.icon-chip--yellow { background: var(--tint-yellow); }
.icon-chip--red { background: var(--tint-red); }
.icon-chip--green { background: var(--tint-green); }

/* trust bar */
.hero__trust {
  max-width: 1200px; margin: 0 auto;
  padding: 14px 32px 40px;
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
  position: relative;
}
.hero__trust-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: #A5A2C0;
}
.hero__trust-name {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: 10px; color: var(--faint);
}

/* ---------- Services ---------- */
.services { max-width: 1200px; margin: 0 auto; padding: 90px 32px 40px; }
.section-title {
  font-weight: 800; font-size: 40px; text-align: center; margin: 0 0 14px;
}
.section-title em { font-style: normal; color: var(--indigo); }
.section-sub {
  text-align: center; color: var(--muted); font-size: 16px; line-height: 1.6;
  max-width: 560px; margin: 0 auto 48px; text-wrap: pretty;
}
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  border: 1px solid var(--border); border-radius: 18px;
  padding: 28px; background: #ffffff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.service-card:hover { border-color: var(--indigo); box-shadow: 0 14px 30px rgba(91, 79, 233, .12); }
.service-card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-card__title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 19px; margin-bottom: 8px; }
.service-card__desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ---------- Stats split ---------- */
.stats {
  max-width: 1200px; margin: 0 auto;
  padding: 70px 32px;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center;
}
.stats__visual { position: relative; height: 440px; }
.stats__arch {
  position: absolute; inset: 36px 24px 0 24px;
  background: var(--indigo);
  border-radius: 190px 190px 24px 24px;
}
.stats__photo {
  position: absolute; inset: 0;
  border-radius: 190px 190px 24px 24px;
  overflow: hidden;
}
.stats__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.stats__visual .dot { position: absolute; border-radius: 50%; }
.stats__visual .dot--yellow { top: 16px; right: 6px; width: 14px; height: 14px; background: var(--yellow); }
.stats__visual .dot--red { bottom: 24px; left: -8px; width: 11px; height: 11px; background: var(--red); }
.stats h2 { font-weight: 800; font-size: 40px; margin: 0 0 16px; }
.stats h2 em { font-style: normal; color: var(--indigo); }
.stats__lede { color: var(--muted); font-size: 16px; line-height: 1.65; margin: 0 0 26px; text-wrap: pretty; }
.stats__cta { margin-bottom: 38px; }
.stats__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 32px; }
.stat { display: flex; align-items: center; gap: 14px; }
.stat__badge {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.stat__num { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 22px; line-height: 1; }
.stat__label { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ---------- Destinations ---------- */
.destinations { background: var(--indigo); padding: 80px 0 90px; }
.destinations h2 {
  font-weight: 800; font-size: 40px; color: #ffffff;
  text-align: center; margin: 0 0 12px;
}
.destinations__sub {
  color: #CBC6F6; text-align: center; font-size: 16px;
  margin: 0 auto 44px; max-width: 520px; line-height: 1.6;
}
.destinations__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.dest-card {
  background: #ffffff; border-radius: 18px; padding: 12px;
  display: flex; flex-direction: column;
}
.dest-card__photo {
  height: 150px; border-radius: 12px; overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
}
.dest-card__photo--my { background: linear-gradient(135deg, #EEECFD, #D9D4FA); }
.dest-card__photo--au { background: linear-gradient(135deg, #FEF4DB, #FCE5AE); }
.dest-card__photo--us { background: linear-gradient(135deg, #FCE7E5, #F8CBC7); }
.dest-card__photo--eu { background: linear-gradient(135deg, #E6F7EC, #C6EDD6); }
.dest-card__body {
  padding: 16px 10px 10px;
  display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.dest-card__badge {
  align-self: flex-start;
  background: var(--tint-green); color: var(--green);
  font-size: 11.5px; font-weight: 700;
  border-radius: 999px; padding: 4px 12px;
}
.dest-card__name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 20px; }
.dest-card__stat { font-size: 13px; color: var(--muted); line-height: 1.5; flex: 1; }
.dest-card__cta {
  align-self: flex-start;
  background: var(--yellow); color: var(--ink);
  border-radius: 999px; padding: 9px 20px;
  font-size: 13.5px; font-weight: 700;
}
.dest-card__cta:hover { background: var(--yellow-dark); color: var(--ink); }

/* ---------- Tracker split ---------- */
.tracker {
  max-width: 1200px; margin: 0 auto;
  padding: 90px 32px;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center;
}
.tracker h2 { font-weight: 800; font-size: 40px; margin: 0 0 16px; }
.tracker h2 em { font-style: normal; color: var(--indigo); }
.tracker__lede { color: var(--muted); font-size: 16px; line-height: 1.65; margin: 0 0 28px; text-wrap: pretty; }
.tracker__points { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.tracker__point { display: flex; gap: 14px; align-items: center; }
.tracker__point-icon {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.tracker__point span:last-child { font-size: 15px; font-weight: 500; }
.tracker__visual { position: relative; }
.tracker__backdrop {
  position: absolute; inset: 24px -18px -18px 24px;
  background: var(--yellow);
  border-radius: 24px 24px 24px 120px;
}
.tracker__card {
  position: relative;
  background: #ffffff; border-radius: 20px;
  box-shadow: 0 24px 50px rgba(23, 16, 64, .14);
  padding: 24px; border: 1px solid var(--border-soft);
}
.tracker__card-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.tracker__card-title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 17px; }
.pill { font-size: 12px; font-weight: 700; border-radius: 999px; padding: 4px 12px; }
.pill--green { color: var(--green); background: var(--tint-green); }
.pill--yellow { color: var(--yellow-fg); background: var(--tint-yellow); }
.pill--sm { font-size: 11.5px; }
.tracker__rows { display: flex; flex-direction: column; gap: 12px; }
.tracker__row {
  border: 1px solid var(--border); border-radius: 14px;
  padding: 14px 16px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.tracker__row--block { display: block; }
.tracker__row-name { font-weight: 700; font-size: 14px; }
.tracker__row-meta { font-size: 12px; color: var(--muted); }
.tracker__progress-head { display: flex; justify-content: space-between; margin-bottom: 10px; }
.tracker__progress-count { font-size: 12.5px; font-weight: 700; color: var(--indigo); }
.tracker__bar { height: 8px; border-radius: 999px; background: var(--tint-indigo); }
.tracker__bar-fill { width: 78%; height: 100%; border-radius: 999px; background: var(--indigo); }
.tracker__msg { display: flex; gap: 10px; align-items: center; justify-content: flex-start; padding: 12px 16px; }
.tracker__avatar {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  background: var(--indigo); color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
}
.tracker__msg-text { font-size: 13px; color: var(--muted); }
.tracker__msg-text b { color: var(--ink); }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--lavender); padding: 80px 0; }
.testimonials__inner {
  max-width: 900px; margin: 0 auto; padding: 0 32px;
  text-align: center; position: relative;
}
.testimonials__inner .dot { position: absolute; border-radius: 50%; }
.testimonials__inner .dot--indigo { top: 10px; left: 8%; width: 11px; height: 11px; background: var(--indigo); }
.testimonials__inner .dot--yellow { top: 120px; right: 6%; width: 12px; height: 12px; background: var(--yellow); }
.testimonials__inner .dot--red { bottom: 40px; left: 12%; width: 9px; height: 9px; background: var(--red); }
.testimonials__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 36px;
}
.testimonials__head h2 { font-weight: 800; font-size: 38px; margin: 0; text-align: left; }
.testimonials__nav { display: flex; gap: 10px; }
.testimonials__nav button {
  width: 42px; height: 42px; border-radius: 50%;
  font-size: 17px; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.testimonials__nav .prev {
  border: 2px solid var(--indigo); background: #ffffff; color: var(--indigo);
}
.testimonials__nav .prev:hover { background: var(--tint-indigo); }
.testimonials__nav .next { border: none; background: var(--indigo); color: #ffffff; }
.testimonials__nav .next:hover { background: var(--indigo-dark); }
.testimonials__avatars {
  display: flex; justify-content: center; align-items: flex-end;
  gap: 14px; margin-bottom: 34px; height: 124px;
}
.t-avatar {
  flex: none; width: 56px; height: 56px;
  border-radius: 50%; padding: 3px;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(23, 16, 64, .08);
  transition: all .35s ease;
  cursor: pointer;
  border: none;
}
.t-avatar--lift { margin-bottom: 20px; }
.t-avatar--drop { margin-bottom: 4px; }
.t-avatar.active {
  width: 104px; height: 104px; padding: 4px;
  background: var(--yellow);
  box-shadow: 0 12px 28px rgba(23, 16, 64, .18);
  margin-bottom: 0;
}
.t-avatar__face {
  width: 100%; height: 100%; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 16px;
  color: #ffffff;
  overflow: hidden;
  background: var(--lavender-deep);
}
.t-avatar__face img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 22%;
  display: block;
}
.t-avatar.active .t-avatar__face { font-size: 26px; }
.testimonials__quote {
  font-size: 20px; line-height: 1.65; font-weight: 500;
  margin: 0 auto 18px; max-width: 680px; text-wrap: pretty;
}
.testimonials__name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px; }
.testimonials__role { font-size: 13.5px; color: var(--muted); margin-top: 2px; }
.testimonials__note {
  margin-top: 22px; display: inline-block;
  font-size: 12px; color: var(--faint);
  border: 1px dashed #C9C5E8; border-radius: 999px; padding: 6px 16px;
}

/* ---------- Lead magnet ---------- */
.lead { max-width: 1200px; margin: 0 auto; padding: 80px 32px; }
.lead__banner {
  background: var(--indigo);
  border-radius: 120px 32px 120px 32px;
  padding: 56px 64px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center;
  position: relative; overflow: hidden;
}
.lead__banner .blob { position: absolute; border-radius: 50%; }
.lead__banner .blob--yellow { top: -40px; right: 16%; width: 110px; height: 110px; background: var(--yellow); opacity: .9; }
.lead__banner .blob--purple { bottom: -50px; left: -30px; width: 140px; height: 140px; background: #6C4AC9; }
.lead__copy { position: relative; }
.lead__copy h2 {
  font-weight: 800; font-size: 36px; color: #ffffff;
  margin: 0 0 10px; line-height: 1.15;
}
.lead__copy p { color: #CBC6F6; font-size: 15px; margin: 0; line-height: 1.6; }
.lead__cta { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.lead__btn {
  display: inline-block; background: var(--yellow); color: var(--ink);
  border-radius: 999px; padding: 15px 32px; font-size: 16px; font-weight: 700;
  box-shadow: 0 10px 24px rgba(253, 201, 59, .3);
}
.lead__btn:hover { background: var(--yellow-dark); color: var(--ink); }
.lead__note { color: #CBC6F6; font-size: 13.5px; }
.lead__form { position: relative; display: flex; flex-direction: column; gap: 12px; }
.lead__form select {
  border: none; border-radius: 999px;
  padding: 14px 22px; font-size: 14.5px;
  font-family: 'DM Sans', sans-serif;
  background: #ffffff; color: var(--ink);
  cursor: pointer;
}
.lead__row { display: flex; gap: 10px; }
.lead__row input {
  flex: 1; min-width: 0; border: none; border-radius: 999px;
  padding: 14px 22px; font-size: 14.5px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
}
.lead__row button {
  flex: none;
  background: var(--yellow); color: var(--ink);
  border: none; border-radius: 999px;
  padding: 14px 24px; font-size: 14.5px; font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
}
.lead__row button:hover { background: var(--yellow-dark); }

/* ---------- FAQ ---------- */
.faq { max-width: 840px; margin: 0 auto; padding: 20px 32px 90px; }
.faq .section-sub { margin-bottom: 40px; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border); border-radius: 16px;
  background: #ffffff; overflow: hidden;
}
.faq-item__q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 22px;
  background: none; border: none; cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
}
.faq-item__q span:first-child { font-weight: 700; font-size: 15.5px; color: var(--ink); }
.faq-item__sym {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--tint-indigo); color: var(--indigo);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 700;
}
.faq-item.open .faq-item__sym { background: var(--indigo); color: #ffffff; }
.faq-item__a {
  display: none;
  padding: 0 22px 20px;
  font-size: 14.5px; color: var(--muted); line-height: 1.65;
}
.faq-item.open .faq-item__a { display: block; }

/* ---------- Contact ---------- */
.contact { background: var(--lavender); padding: 80px 0; }
.contact .section-sub { margin-bottom: 46px; }
.contact__grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 36px; align-items: start;
}
.contact__channels { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  background: #ffffff; border-radius: 16px;
  padding: 18px 22px;
  display: flex; gap: 14px; align-items: center;
  color: var(--ink);
  transition: box-shadow .2s ease;
}
.contact-card--top { align-items: flex-start; }
a.contact-card:hover { box-shadow: 0 10px 24px rgba(23, 16, 64, .08); color: var(--ink); }
.contact-card__icon {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.contact-card__title { font-weight: 700; font-size: 15px; }
.contact-card__meta { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.contact-card--top .contact-card__title { margin-bottom: 4px; }

.contact__form {
  background: #ffffff; border-radius: 20px;
  padding: 32px;
  box-shadow: 0 12px 32px rgba(23, 16, 64, .06);
}
.contact__form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px;
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  border: 1px solid var(--border); border-radius: 12px;
  padding: 13px 16px; font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  outline: none;
  background: #ffffff;
  width: 100%;
}
.contact__form select { margin-bottom: 16px; }
.contact__form textarea { resize: vertical; margin-bottom: 18px; }
.contact__form button {
  width: 100%;
  background: var(--indigo); color: #ffffff;
  border: none; border-radius: 999px;
  padding: 15px; font-size: 15px; font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
}
.contact__form button:hover { background: var(--indigo-dark); }

/* ---------- Form status messages ---------- */
.form-status {
  margin: 12px 0 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--red);
  min-height: 1em;
}
.form-status--ok { color: var(--green); }
.form-status--ondark { color: #FFD9D6; }
.form-status--ondark:empty { display: none; }
.form-status:empty { margin: 0; min-height: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #ffffff; padding: 64px 0 0; }
.footer__grid {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px;
}
.footer__logo { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 22px; margin-bottom: 14px; }
.footer__logo em { font-style: normal; color: var(--yellow); }
.footer__about {
  font-size: 13.5px; color: var(--footer-text); line-height: 1.65;
  margin: 0 0 20px; max-width: 260px;
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--footer-chip);
  display: flex; align-items: center; justify-content: center;
  color: #ffffff; font-size: 14px; font-weight: 700;
}
.footer__social a:hover { background: var(--indigo); color: #ffffff; }
.footer__col-title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 16px; margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; }
.footer__links a { color: var(--footer-text); }
.footer__links a:hover { color: var(--yellow); }
.footer__links span { color: var(--footer-text); line-height: 1.6; }
.footer__bar {
  border-top: 1px solid var(--footer-chip);
  margin-top: 48px; padding: 20px 32px;
  text-align: center; font-size: 13px; color: var(--footer-text);
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .4);
}
.wa-float:hover { background: var(--wa-dark); }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .hero h1 { font-size: 44px; }
  .hero__grid { gap: 36px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .destinations__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats, .tracker { gap: 40px; }
}

@media (max-width: 820px) {
  .navbar__links { display: none; }
  .hero__grid { grid-template-columns: 1fr; padding-top: 48px; }
  .hero__cards { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; padding: 48px 32px; }
  .stats__visual { height: 360px; max-width: 420px; margin: 0 auto; width: 100%; }
  .tracker { grid-template-columns: 1fr; padding: 60px 32px; }
  .tracker__backdrop { inset: 24px 0 -14px 24px; }
  .lead__banner {
    grid-template-columns: 1fr;
    border-radius: 60px 24px 60px 24px;
    padding: 40px 32px;
  }
  .contact__grid { grid-template-columns: 1fr; }
  .testimonials__head { flex-direction: column; gap: 18px; align-items: flex-start; }
  .section-title, .stats h2, .tracker h2, .destinations h2 { font-size: 32px; }
  .testimonials__head h2 { font-size: 30px; }
}

@media (max-width: 560px) {
  .container, .services, .lead, .faq, .hero__grid, .hero__cards, .hero__trust,
  .stats, .tracker { padding-left: 20px; padding-right: 20px; }
  .navbar__inner { padding: 14px 20px; }
  .hero h1 { font-size: 36px; }
  .hero__actions { flex-wrap: wrap; }
  .hero__tiles { grid-auto-rows: 110px; gap: 10px; }
  .services__grid, .destinations__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .contact__form-row { grid-template-columns: 1fr; }
  .lead__row { flex-direction: column; }
  .testimonials__avatars { gap: 8px; height: 110px; }
  .t-avatar { width: 44px; height: 44px; }
  .t-avatar.active { width: 88px; height: 88px; }
  .navbar__cta { padding: 9px 18px; font-size: 14px; }
  .navbar__logo { font-size: 20px; }
}
