/* ===================== Section styles ===================== */
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 44px; }
.sec-head--center { flex-direction: column; align-items: center; text-align: center; margin-bottom: 50px; }
.sec-title { font-size: clamp(28px, 3.4vw, 40px); }

/* ---------- HERO ---------- */
.hero { padding: 64px 0 72px; background:
  radial-gradient(900px 420px at 88% -8%, var(--brand-soft), transparent 70%); }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero--center .hero__inner { grid-template-columns: 1fr; max-width: 820px; text-align: center; justify-items: center; }
.hero__rating { margin-bottom: 22px; }
.hero__title { font-size: clamp(40px, 6vw, 66px); font-weight: 800; }
.hero__title .hl { color: var(--brand); }
.hero__lead { font-size: 19px; color: var(--muted); margin: 22px 0 30px; max-width: 540px; }
.hero--center .hero__lead { margin-inline: auto; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero--center .hero__cta { justify-content: center; }
.hero__points { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 26px; }
.hero__points span { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14.5px; color: var(--ink); }
.hero__pay { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; font-size: 13px; color: var(--muted); font-weight: 500; }
.hero__media { position: relative; }
.hero__img { box-shadow: var(--shadow-lg); }
.hero__float { position: absolute; left: -22px; bottom: 26px; padding: 16px 20px; border-radius: 16px; box-shadow: var(--shadow-lg); }
.hero__floatTop { display: flex; align-items: center; gap: 8px; font-family: var(--head); font-weight: 700; font-size: 13px; color: var(--navy); }
.hero__floatNum { font-family: var(--head); font-weight: 800; font-size: 26px; color: var(--brand); margin-top: 4px; }
.hero__floatNum span { font-size: 13px; color: var(--muted); font-weight: 600; }

/* ---------- TRUST BAR ---------- */
.trustbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.trustbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.tstat { padding: 34px 16px; text-align: center; border-right: 1px solid var(--line); }
.tstat:last-child { border-right: 0; }
.tstat__num { font-family: var(--head); font-weight: 800; font-size: 34px; color: var(--brand); letter-spacing: -.02em; }
.tstat__label { font-family: var(--head); font-weight: 700; color: var(--navy); margin-top: 4px; font-size: 15px; }
.tstat__sub { font-size: 13px; color: var(--faint); margin-top: 2px; }

/* ---------- SERVICES ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc { overflow: hidden; display: flex; flex-direction: column; transition: transform .18s, box-shadow .18s; }
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.svc .ph { border-radius: 0; border: 0; border-bottom: 1px solid var(--line); }
.svc__body { padding: 24px; position: relative; }
.svc__tag { position: absolute; top: -14px; left: 24px; background: var(--brand); color: #fff; font-family: var(--head); font-weight: 700; font-size: 11.5px; letter-spacing: .04em; padding: 5px 12px; border-radius: 999px; }
.svc__body h3 { font-size: 21px; margin-bottom: 9px; }
.svc__link { background: none; border: 0; color: var(--brand); font-family: var(--head); font-weight: 700; font-size: 14.5px; display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; padding: 0; }
.svc__link:hover { gap: 11px; }

/* ---------- REASONS ---------- */
.reason-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.reason { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.reason__ic { width: 46px; height: 46px; border-radius: 13px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; margin-bottom: 16px; }
.reason h4 { font-size: 18px; margin-bottom: 8px; }

/* ---------- REVIEWS ---------- */
.rev-bar { display: flex; align-items: center; gap: 18px; padding: 18px 24px; margin-bottom: 26px; flex-wrap: wrap; }
.rev-bar__l { display: flex; align-items: center; gap: 9px; font-family: var(--head); font-weight: 800; color: var(--navy); font-size: 17px; }
.rev-bar__score { color: var(--muted); font-size: 14.5px; }
.rev-bar__score b { color: var(--navy); }
.rev-bar__btn { margin-left: auto; }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rev { padding: 22px; }
.rev__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rev__av { width: 42px; height: 42px; border-radius: 50%; color: #fff; display: grid; place-items: center; font-family: var(--head); font-weight: 800; font-size: 17px; flex: none; }
.rev__name { font-family: var(--head); font-weight: 700; color: var(--navy); font-size: 15px; }
.rev__date { font-size: 12.5px; color: var(--faint); }
.rev__g { margin-left: auto; opacity: .9; }
.rev__text { color: var(--muted); font-size: 14.5px; margin-top: 10px; }

/* ---------- STEPS ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); position: relative; }
.step-card__n { width: 46px; height: 46px; border-radius: 13px; background: var(--brand); color: #fff; display: grid; place-items: center; font-family: var(--head); font-weight: 800; font-size: 20px; margin-bottom: 18px; }
.step-card h4 { font-size: 19px; margin-bottom: 9px; }

/* ---------- FAQ ---------- */
.faq-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }
.faq-aside { position: sticky; top: 100px; }

/* ---------- CTA BAND ---------- */
.ctaband { background: linear-gradient(150deg, var(--navy), var(--brand-press)); color: #fff; padding: 64px 0; }
.ctaband__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.ctaband h2 { color: #fff; font-size: clamp(26px, 3vw, 38px); }
.ctaband p { color: #c7d6ea; font-size: 18px; margin-top: 10px; max-width: 460px; }
.ctaband__btns { display: flex; gap: 14px; flex-wrap: wrap; }
.ctaband__pay { font-size: 13px !important; color: #8aaac8 !important; margin-top: 8px !important; }

/* ---------- PAGE HERO (subpages) ---------- */
.page-hero { padding: 58px 0 56px; background: radial-gradient(800px 360px at 90% -20%, var(--brand-soft), transparent 70%); border-bottom: 1px solid var(--line); }
.page-hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.page-hero__title { font-size: clamp(36px, 5vw, 56px); }

/* ---------- FEATURES ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feat { padding: 28px; }
.feat__ic { width: 50px; height: 50px; border-radius: 14px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; margin-bottom: 18px; }
.feat h3 { font-size: 18px; margin-bottom: 8px; }

/* ---------- CONTACT ---------- */
.contact-list { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.contact-list__item { display: flex; align-items: center; gap: 14px; }
.contact-list__ic { width: 46px; height: 46px; border-radius: 13px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; flex: none; }
.contact-list__item b { font-family: var(--head); color: var(--navy); display: block; font-size: 15px; }
.contact-list__item span { color: var(--muted); font-size: 14.5px; }
.contact-form { padding: 30px; }
.contact-form h3 { font-size: 22px; }
.field { margin-bottom: 14px; }
.field label { font-family: var(--head); font-weight: 700; font-size: 13.5px; color: var(--navy); display: block; margin-bottom: 7px; }
.field input, .field textarea { width: 100%; border: 1.5px solid var(--line-strong); border-radius: 11px; padding: 12px 14px; font-family: var(--body); font-size: 15px; color: var(--ink); resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }
.field2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-sent { text-align: center; padding: 20px 0; }
.contact-sent__ic { width: 60px; height: 60px; border-radius: 50%; background: color-mix(in oklab, var(--ok) 14%, #fff); color: var(--ok); display: grid; place-items: center; margin: 0 auto 18px; }
.contact-sent h3 { margin-bottom: 8px; }
.contact-sent .btn { margin-top: 20px; }

@media (max-width: 980px) {
  .hero__inner, .page-hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__media { order: -1; }
  .svc-grid, .reason-grid, .rev-grid, .steps, .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .trustbar__grid { grid-template-columns: repeat(2, 1fr); }
  .tstat:nth-child(2) { border-right: 0; }
  .tstat { border-bottom: 1px solid var(--line); }
  .faq-wrap { grid-template-columns: 1fr; gap: 28px; }
  .faq-aside { position: static; }
}
@media (max-width: 620px) {
  .svc-grid, .reason-grid, .rev-grid, .steps, .feat-grid, .trustbar__grid { grid-template-columns: 1fr; }
  .field2 { grid-template-columns: 1fr; }
  .tstat { border-right: 0; }
  /* keep the floating hero badge inside the viewport on phones */
  .hero__float { left: 12px; right: 12px; bottom: 14px; }
  .hero__title { font-size: clamp(34px, 11vw, 46px); }
  .hero, .page-hero { padding-top: 40px; }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 30px; }
  .ctaband__inner { flex-direction: column; align-items: flex-start; }
  .rev-bar__btn { margin-left: 0; }
}


/* ---------- REVIEWS MARQUEE ---------- */
.rev-marquee {
  overflow: hidden;
  padding: 28px 0 44px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.rev-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: rev-scroll 36s linear infinite;
}
.rev-track:hover { animation-play-state: paused; }
@keyframes rev-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.rev--mq {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px;
}
.rev--mq .rev__head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rev--mq .rev__name {
  font-family: var(--head);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}
