/* ============================================================
   HERO + BENEFITS STRIP + COUNTER
   ============================================================ */

/* ---- Hero ------------------------------------------------- */
.hero {
  position: relative;
  padding-block: 56px 72px;
  background: radial-gradient(120% 90% at 85% 0%, var(--surface-2) 0%, rgba(234,241,251,0) 55%);
  overflow: hidden;
}
@media (min-width: 860px) { .hero { padding-block: 70px 90px; } }

.hero__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 860px) {
  .hero__grid {
    grid-template-columns: 1.04fr .96fr;
    gap: 56px;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  border-radius: 999px;
  padding: 8px 8px 8px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
}
.hero__badge b { color: var(--blue); }
.hero__badge .stars {
  display: inline-flex;
  gap: 2px;
  background: var(--surface);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--gold);
  letter-spacing: 1px;
  font-size: 11px;
}

.hero h1 {
  font-size: clamp(34px, 7vw, 64px);
  font-weight: 800;
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--blue), #3a7fd0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: clamp(16px, 2.5vw, 19px);
  color: var(--muted);
  margin-top: 20px;
  max-width: 36em;
  line-height: 1.6;
}
.hero__cta {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.hero__trust {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero__trust div { display: flex; flex-direction: column; }
.hero__trust b {
  font-family: "Sora", sans-serif;
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.hero__trust span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}
@media (min-width: 600px) {
  .hero__trust { gap: 34px; }
  .hero__trust span { font-size: 13.5px; }
}

.hero__visual { position: relative; }
.hero__photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}
@media (min-width: 860px) {
  .hero__photo { aspect-ratio: 4/5; }
}
@media (max-width: 859px) {
  .hero__photo { aspect-ratio: 16/12; }
}

.hero__float {
  display: none;
  position: absolute;
  bottom: 40px;
  width: 240px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  border: 1px solid var(--line);
}
@media (min-width: 860px) {
  .hero__float {
    display: block;
    left: -34px;
    width: 270px;
  }
}
.hero__float h4 {
  font-family: "Sora", sans-serif;
  font-size: 15px;
  margin-bottom: 14px;
}
.hero__float .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
}
.hero__float .row span { color: var(--muted); }
.hero__float .total {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.hero__float .total b {
  font-family: "Sora", sans-serif;
  font-size: 24px;
  color: var(--blue);
}

.hero__chip-brands {
  display: none;
  position: absolute;
  top: 26px;
  right: -10px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  flex-direction: column;
  gap: 4px;
  border: 1px solid var(--line);
}
@media (min-width: 980px) { .hero__chip-brands { display: flex; } }
.hero__chip-brands span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__chip-brands b {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  color: var(--ink);
}

/* ---- Benefits strip --------------------------------------- */
.bstrip {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border-block: 1px solid var(--line);
  padding-block: 36px;
}
.bstrip__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 16px;
}
@media (min-width: 600px) {
  .bstrip__row { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) {
  .bstrip__row { grid-template-columns: repeat(6, 1fr); gap: 24px; }
}
.bstrip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.bstrip__item img { width: 44px; height: 44px; }
@media (min-width: 600px) { .bstrip__item img { width: 48px; height: 48px; } }
.bstrip__item b {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-2);
  line-height: 1.3;
  max-width: 16ch;
}

/* ---- Counter --------------------------------------------- */
.counter { background: var(--ink); color: #fff; }
.counter__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 20px;
}
@media (min-width: 760px) {
  .counter__grid { grid-template-columns: repeat(4, 1fr); gap: 30px; }
}
.counter__item {
  position: relative;
  padding-left: 22px;
}
.counter__item::before {
  content: "";
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(var(--blue), #3a7fd0);
}
.counter__num {
  font-family: "Sora", sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
}
.counter__num small {
  font-size: .45em;
  color: #7fa8da;
  margin-left: 4px;
}
.counter__label {
  color: #aebfd6;
  font-size: 14px;
  margin-top: 8px;
  font-weight: 600;
}
@media (min-width: 600px) { .counter__label { font-size: 15px; } }
