/* ═══════════════════════════════════════════════════════════════
   REWARDS & INCENTIVES — Premium Design v6 (Polish Pass)
   CSS Grid + Flexbox | Inter | Navy #1a2a4a | Gold #c9a961
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --navy:    #1a2a4a;
  --navy-dk: #0c1829;
  --gold:    #c9a961;
  --gold-dk: #a8852e;
  --gold-lt: #e8d08a;
  --white:   #ffffff;
  --off:     #f4f4f2;
  --border:  #e0e0dc;
  --muted:   #5a5a54;
  --text:    #1e1e1c;
  --max:     1240px;
  --radius:  10px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 28px rgba(0,0,0,.1); }

.navbar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-right: auto;
}
.logo-icon svg { display: block; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-size: .82rem;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.2;
}
.logo-tagline {
  font-size: .52rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .2em;
  margin-top: 2px;
}

/* Nav links */
.navbar__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar__links a {
  font-size: .7rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 8px 14px;
  border-radius: 5px;
  position: relative;
  transition: color .2s;
  white-space: nowrap;
}
.navbar__links a:hover { color: var(--gold); }
.navbar__links a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

/* Support button */
.btn-support {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white) !important;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 11px 20px;
  border-radius: 6px;
  margin-left: 8px;
  transition: background .2s, transform .15s;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(26,42,74,.22);
}
.btn-support:hover { background: var(--navy-dk); transform: translateY(-1px); }

/* Mobile toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 2px solid var(--navy);
  border-radius: 5px;
  padding: 7px 9px;
}
.navbar__toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--navy);
  border-radius: 1px;
}

/* ══════════════════════════════════════════
   HERO — Split layout (matches approved mockup)
══════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 420px;
  height: auto;
  max-height: none;
  overflow: hidden;
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 52px 48px 72px;
  background: #ffffff;
}

.hero__eyebrow {
  font-size: .68rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .28em;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

/* ── Hero Headline ── */
.hero__h1 {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: -.03em;
  margin-bottom: 22px;
}

/* ── Hero Redemption Form: wider, more padding, more dominant ── */
.hero__form {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 22px;
  max-width: 420px;
  background: #fff;
  border: 1px solid rgba(26,42,74,.12);
  border-radius: 8px;
  box-shadow: 0 8px 36px rgba(26,42,74,.15), 0 2px 6px rgba(26,42,74,.07);
  overflow: hidden;
}
.hero__form-header {
  background: var(--navy);
  padding: 13px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__form-header i {
  color: var(--gold);
  font-size: .95rem;
}
.hero__form-header span {
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.hero__form-body {
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.hero__form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.hero__form-field label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero__form-field label i {
  color: var(--gold);
  font-size: .75rem;
}
.hero__form-field input {
  width: 100%;
  height: 46px;
  padding: 0 16px;
  border: 1.5px solid #d0d7e3;
  border-radius: 6px;
  font-size: .95rem;
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: #f7f9fc;
  transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none;
}
.hero__form-field input::placeholder {
  color: #a8b0be;
  font-weight: 400;
}
.hero__form-field input:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201,169,97,.18);
}
.hero__form-submit {
  width: 100%;
  height: 52px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .11em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 5px 18px rgba(201,169,97,.42);
  margin-top: 2px;
}
.hero__form-submit:hover {
  background: #b8943f;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201,169,97,.55);
}
.hero__form-note {
  font-size: .71rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding-top: 2px;
}
.hero__form-note i { color: var(--gold); }

/* Hero trust row */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.hero__trust span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .73rem;
  font-weight: 600;
  color: var(--muted);
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid var(--border);
}
.hero__trust span:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.hero__trust i { color: var(--gold); }

/* Hero right — full-bleed photo */
.hero__right {
  position: relative;
  overflow: hidden;
}
.hero__right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.06) saturate(1.18) contrast(1.04);
}
/* Soft shadow bleed from photo into white left side — matches reference */
.hero__right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(250, 251, 252, 1.0)  0%,
    rgba(250, 251, 252, 0.85) 8%,
    rgba(255, 255, 255, 0.55) 22%,
    rgba(255, 255, 255, 0.15) 38%,
    rgba(255, 255, 255, 0)    52%
  );
  pointer-events: none;
  z-index: 1;
}

/* ══════════════════════════════════════════
   TRUST BAR — Major credibility section
══════════════════════════════════════════ */
.trust-bar {
  background: var(--navy-dk);
  border-top: 3px solid var(--gold);
}
.trust-bar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-bar__item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 36px 28px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.trust-bar__item:first-child { padding-left: 0; }
.trust-bar__item:last-child  { border-right: none; }
.trust-bar__icon {
  font-size: 2.4rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  filter: drop-shadow(0 2px 10px rgba(201,169,97,.5));
}
.trust-bar__item strong {
  display: block;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.trust-bar__item span {
  display: block;
  font-size: .78rem;
  color: rgba(255,255,255,.52);
  line-height: 1.55;
}

/* ══════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════ */
.section { padding: 80px 0; }
.section--white   { background: var(--white); }
.section--offwhite { background: var(--off); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--dark    { background: var(--navy-dk); }

.section__head { text-align: center; margin-bottom: 52px; }
.section__title {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .09em;
  line-height: 1;
}
.section__title--light { color: var(--white); }
.section__rule {
  width: 52px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ══════════════════════════════════════════
   HOW IT WORKS — Steps
══════════════════════════════════════════ */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.step {
  flex: 0 0 240px;
  text-align: center;
  padding: 40px 32px 36px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  transition: box-shadow .25s, transform .25s;
}
.step:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,.12);
  transform: translateY(-5px);
}
.step__num {
  width: 48px; height: 48px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-size: 1.15rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(201,169,97,.42);
}
.step__icon { font-size: 2.4rem; color: var(--navy); margin-bottom: 16px; }
.step__title {
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--navy);
  margin-bottom: 10px;
}
.step__desc { font-size: .85rem; color: var(--muted); line-height: 1.7; }
.step__arrow {
  font-size: 1.1rem;
  color: #ccc;
  padding: 0 22px;
  padding-top: 40px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   CATEGORIES — 6 column grid
══════════════════════════════════════════ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.cat-tile {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4.2;
  box-shadow: 0 8px 28px rgba(0,0,0,.5);
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
}
.cat-tile:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0,0,0,.65);
}
.cat-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
  filter: brightness(.78) saturate(1.25) contrast(1.08);
}
.cat-tile:hover img {
  transform: scale(1.08);
  filter: brightness(.88) saturate(1.35) contrast(1.1);
}
.cat-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4, 8, 22, .97) 0%,
    rgba(4, 8, 22, .52) 38%,
    rgba(4, 8, 22, .04) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 10px 20px;
  text-align: center;
}
.cat-tile__icon {
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.55));
}
.cat-tile__name {
  display: block;
  font-size: .72rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .14em;
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
}

/* ══════════════════════════════════════════
   WHY CHOOSE — 4 col, icon left
══════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.why-item__icon {
  width: 58px; height: 58px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 18px rgba(26,42,74,.25);
}
.why-item__icon i { font-size: 1.65rem; color: var(--gold); }
.why-item__body h4 {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--navy);
  margin-bottom: 9px;
  line-height: 1.35;
}
.why-item__body p { font-size: .85rem; color: var(--muted); line-height: 1.7; }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials {
  display: flex;
  align-items: center;
  gap: 22px;
}
.testimonials__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  flex: 1;
}
.testimonials__nav {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .88rem;
  transition: all .2s;
  box-shadow: 0 2px 10px rgba(0,0,0,.07);
}
.testimonials__nav:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }

.t-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 4px 18px rgba(0,0,0,.07);
  transition: box-shadow .25s, transform .25s;
  position: relative;
}
.t-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  transform: translateY(-4px);
}
/* Large quote mark */
.t-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 22px;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold);
  font-family: Georgia, serif;
  opacity: .55;
}
.t-card__stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; margin-bottom: 18px; }
.t-card__quote {
  font-size: .9rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.78;
  margin-bottom: 20px;
  padding-top: 8px;
}
.t-card__author strong { display: block; font-size: .87rem; font-weight: 700; color: var(--navy); }
.t-card__author span  { font-size: .78rem; color: var(--muted); }

/* ══════════════════════════════════════════
   FAQ + NEED HELP — 2 columns
══════════════════════════════════════════ */
.faq-help {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: start;
}

/* FAQ */
.faq__title, .help__title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 8px;
}
.faq__rule {
  width: 46px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 26px;
}
.faq__item {
  border: 1.5px solid var(--border);
  border-radius: 7px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq__item:hover { border-color: rgba(201,169,97,.5); }
.faq__item--open  { border-color: var(--gold); }
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 17px 20px;
  background: none;
  border: none;
  gap: 12px;
  text-align: left;
  transition: background .15s;
}
.faq__q:hover { background: #f9f9f7; }
.faq__q span {
  font-size: .87rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}
.faq__plus {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .72rem;
  color: var(--navy);
  transition: all .22s;
}
.faq__item--open .faq__plus {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: rotate(45deg);
}
.faq__a {
  display: none;
  padding: 14px 20px 18px;
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.72;
  border-top: 1px solid var(--border);
}
.faq__item--open .faq__a { display: block; }
.faq__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 18px;
  transition: gap .2s, color .2s;
}
.faq__more:hover { color: var(--gold-dk); gap: 13px; }

/* Need Help */
.help__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.help__item:last-of-type { border-bottom: none; }
.help__icon {
  width: 50px; height: 50px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(26,42,74,.22);
}
.help__icon i { font-size: 1.35rem; color: var(--gold); }
.help__item h4 {
  font-size: .86rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.help__item p { font-size: .8rem; color: var(--muted); line-height: 1.6; }
.help__photo {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 22px;
  box-shadow: 0 8px 28px rgba(0,0,0,.14);
}
.help__photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--navy-dk);
  border-top: 3px solid var(--gold);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.8fr;
  gap: 52px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  text-align: left;
}
.footer__brand-name {
  font-size: .85rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.2;
}
.footer__brand-sub {
  font-size: .52rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
}
.footer__desc { font-size: .8rem; color: rgba(255,255,255,.44); line-height: 1.72; max-width: 250px; text-align: left;}
.footer__col-title {
  font-size: .64rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 18px;
  text-align: left;
}
.footer__links li { margin-bottom: 10px; text-align: left;}
.footer__links a { font-size: .82rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer__links a:hover { color: var(--gold); }
.footer__contact {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
  text-align: left;

}
.footer__contact i { color: var(--gold); font-size: .8rem; width: 14px; flex-shrink: 0; margin-top: 2px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.09);
  margin-top: 52px;
  padding: 18px 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .73rem;
  color: rgba(255,255,255,.3);
}
.footer__legal { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer__legal a { color: rgba(255,255,255,.3); transition: color .2s; font-size: .73rem; }
.footer__legal a:hover { color: var(--gold); }
.footer__sep { color: rgba(255,255,255,.15); }
.footer__secure { display: flex; align-items: center; gap: 6px; }
.footer__secure i { color: var(--gold); }

/* ══════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero__left { padding: 44px 40px 44px 48px; }
  .hero__h1 { font-size: 2.4rem; }
  .hero__form { max-width: 100%; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .trust-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .trust-bar__item:nth-child(2) { border-right: none; }
  .trust-bar__item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.07); }
  .faq-help { grid-template-columns: 1fr 360px; gap: 48px; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero__left { padding: 44px 36px; background: var(--white); }
  .hero__right { height: 340px; position: relative; }
  .hero__right img { position: absolute; }
  .hero__h1 { font-size: 2.3rem; }
  .steps { flex-direction: column; align-items: center; }
  .step__arrow { display: none; }
  .step { width: 100%; max-width: 340px; }
  .testimonials__track { grid-template-columns: 1fr; }
  .faq-help { grid-template-columns: 1fr; gap: 52px; }
  .navbar__links { display: none; }
  .navbar__toggle { display: flex; }
  .navbar__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--border);
    padding: 16px 48px 20px;
    gap: 4px;
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
    z-index: 999;
  }
  .navbar__links.open .btn-support { margin-left: 0; margin-top: 8px; width: fit-content; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .navbar__inner { padding: 0 20px; }
  .trust-bar__inner { padding: 0 20px; grid-template-columns: 1fr; }
  .trust-bar__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: 24px 0; }
  .trust-bar__item:last-child { border-bottom: none; }
  .hero__left { padding: 36px 20px; background: var(--white); }
  .hero__h1 { font-size: 1.9rem; }
  .hero__right { height: 260px; }
  .hero__trust { flex-direction: column; gap: 8px; }
  .hero__trust span { border-right: none; padding-right: 0; margin-right: 0; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }
  .section { padding: 56px 0; }
}


.error-msg {
    color: #e63f6a;
    font-weight: 700;
    text-transform:capitalize;
}

.modal-dialog-lg {
    min-width: 850px;
}
.modal-dialog-md {
    min-width: 650px;
}
.modal-content {
    position: relative;
    border-radius: 8px;
    padding: 6px 0;
    box-shadow: 0 10px 55px 0 rgba(0, 0, 0, .2);
    border: 0;
}
.popup-body {
    padding: 30px 35px;
}
.popup-body .popup_scroll {
    max-height: 450px;
    overflow-x: hidden;
    overflow-y: auto;
}
.popup-title {
    color: #253992;
    font-weight: 500;
    padding-right: 40px;
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
}
.modal-close {
    top: -20px;
    right: -20px;
    position: absolute;
    display: inline-block;
}
.modal-close .ti {
    font-size: 26px;
    height: 44px;
    width: 44px;
    line-height: 44px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    color: #818899;
    text-shadow: none;
    display: block;
    transition: .4s;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, .3);
}
.modal-dialog-lg ul {
    padding-left: 15px;
}
.modal-dialog-lg h4 {
    text-transform: uppercase;
    padding-bottom: 15px;
    color: #34b894;
    font-size: 20px;
}
.modal-dialog-lg h5 {
    padding-top: 15px;
    font-size: 16px;
}
.modal-dialog-lg .text {
    line-height: 26px;
}
.testimonial-page, .business_bg, .login_bg, .privacy {
  margin-top:0px;
}