:root {
  --blue-950: #0f2f73;
  --blue-900: #184da7;
  --blue-850: #1f5ac0;
  --blue-800: #2b69d6;
  --blue-100: #edf4ff;
  --yellow: #ffcf41;
  --green: #25d366;
  --green-dark: #15b24f;
  --text: #101827;
  --muted: #556171;
  --white: #ffffff;
  --surface: #f5f8ff;
  --line: rgba(20, 57, 122, 0.10);
  --shadow: 0 18px 50px rgba(7, 24, 59, 0.16);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.45;
}
a { text-decoration: none; }
img { display: block; width: 100%; height: auto; }
.container { width: min(1120px, calc(100% - 20px)); margin: 0 auto; }
.compact-container { width: min(840px, calc(100% - 20px)); }
.section { padding: 40px 0; }
.center { text-align: center; }

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--blue-900) 0%, var(--blue-950) 100%);
  color: #fff;
  padding: 18px 0 22px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(255,255,255,0.18), transparent 26%),
    radial-gradient(circle at 85% 15%, rgba(255,255,255,0.12), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
  pointer-events: none;
}
.hero-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 26px;
  align-items: center;
}
.hero-logo { width: 68px; margin-bottom: 10px; }
.hero-kicker {
  margin: 0 0 8px;
  color: #d7e4ff;
  font-weight: 800;
  letter-spacing: .18em;
  font-size: 11px;
}
.hero h1 {
  margin: 0;
  font-size: clamp(30px, 5vw, 64px);
  line-height: .97;
  font-weight: 900;
}
.hero h1 span { color: var(--yellow); }
.hero-text {
  margin: 12px 0 0;
  color: #eef4ff;
  font-size: clamp(14px, 2vw, 18px);
  max-width: 640px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.hero-badges span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 12px;
  font-weight: 800;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  min-height: 50px;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
  box-shadow: 0 14px 32px rgba(21, 178, 79, 0.28);
}
.btn-outline {
  color: #fff;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
}
.pulse { animation: pulse 1.9s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 14px 32px rgba(21, 178, 79, 0.28); }
  50% { box-shadow: 0 16px 38px rgba(21, 178, 79, 0.42); }
}

.hero-slider {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
}
.slides { position: relative; aspect-ratio: 4 / 5; }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .55s ease;
}
.slide.active { opacity: 1; }
.slide img { height: 100%; object-fit: cover; }
.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
}
.dot.active { background: #fff; width: 24px; }

.impact-strip {
  background: linear-gradient(180deg, #f5f8ff 0%, #edf4ff 100%);
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.impact-lead {
  margin: 0;
  font-size: clamp(20px, 3.2vw, 34px);
  font-weight: 900;
  line-height: 1.02;
  text-align: center;
}
.impact-sub {
  margin: 10px 0 0;
  text-align: center;
  color: #244160;
  font-weight: 600;
}
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}
.bullet-list li {
  position: relative;
  padding-left: 24px;
  font-weight: 600;
  color: #223247;
}
.bullet-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #21b55b;
  font-weight: 900;
}
.aggressive li { font-size: 14px; }

.section-head h2,
.mini-story h2,
.cta-box h2 {
  margin: 0;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.05;
  font-weight: 900;
}
.mobile-tight h2 { max-width: 680px; margin: 0 auto; }

.testimonials { padding-top: 28px; }
.testimonial-slider { overflow-x: auto; padding-bottom: 6px; }
.testi-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 1fr);
  gap: 12px;
}
.testi-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.06);
}

.reasons { background: #fff; }
.reason-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(16, 24, 39, 0.06);
  border-radius: 24px;
  padding: 18px;
  margin-top: 14px;
}
.reason-copy h3 {
  margin: 0;
  font-size: clamp(21px, 3vw, 34px);
  line-height: 1.06;
  font-weight: 900;
}
.reason-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 500;
}
.reason-image img {
  border-radius: 18px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.mini-story {
  background: linear-gradient(180deg, #0f357f 0%, #1d58bc 100%);
  color: #fff;
}
.mini-story p {
  margin: 12px 0 0;
  color: #f1f6ff;
  font-size: 16px;
  font-weight: 500;
}

.promo-section {
  background: linear-gradient(180deg, #f5f8ff 0%, #edf4ff 100%);
}
.promo-card {
  background: linear-gradient(180deg, #1b4eaa 0%, #113579 100%);
  color: #fff;
  border-radius: 24px;
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.promo-card h2 {
  margin: 0;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 900;
}
.promo-card p {
  margin: 10px auto 0;
  max-width: 640px;
  color: #ebf2ff;
  font-weight: 600;
}
.promo-image {
  margin-top: 16px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.24);
}

.trust-section { background: #fff; }
.trust-image {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.order-process { background: #f7faff; }
.process-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.process-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 8px 22px rgba(17,24,39,0.04);
}
.process-box strong {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue-900);
  color: #fff;
  margin-bottom: 10px;
}
.process-box span {
  display: block;
  font-weight: 700;
  color: #1f3046;
}

.cta-section {
  background: linear-gradient(180deg, #1b4eaa 0%, #113579 100%);
  color: #fff;
  padding-bottom: 64px;
}
.cta-box {
  text-align: center;
}
.cta-box p {
  margin: 12px auto 0;
  color: #eef4ff;
  max-width: 720px;
  font-weight: 600;
}
.arrows-wrap {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 24px;
}
.arrow {
  font-size: 52px;
  line-height: 1;
  color: #ff3232;
  text-shadow: 0 3px 8px rgba(0,0,0,0.20);
  display: inline-block;
}
.arrow-left { animation: bounceArrow 1.2s infinite; transform: rotate(20deg); }
.arrow-center { animation: bounceArrow 1.2s .15s infinite; }
.arrow-right { animation: bounceArrow 1.2s .3s infinite; transform: rotate(-20deg); }
@keyframes bounceArrow {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(10px) scale(1.06); }
}
.big-cta {
  margin-top: 8px;
  min-height: 58px;
  padding: 16px 24px;
  font-size: 18px;
  width: min(100%, 420px);
}
.cta-note {
  margin-top: 10px !important;
  font-size: 13px;
  color: #d8e4ff !important;
}

.sticky-wa {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 16px 34px rgba(21, 178, 79, 0.35);
}

@media (max-width: 900px) {
  .hero-wrap,
  .reason-block,
  .process-boxes {
    grid-template-columns: 1fr;
  }
  .hero { padding-bottom: 16px; }
  .hero-wrap { gap: 16px; }
  .hero-copy { order: 1; }
  .hero-slider { order: 2; }
  .slides { aspect-ratio: 4 / 4.9; }
  .reason-block { padding: 14px; }
  .process-boxes { gap: 10px; }
}

@media (max-width: 640px) {
  .section { padding: 28px 0; }
  .hero {
    padding: 10px 0 12px;
  }
  .container { width: min(100% - 10px, 100% - 10px); }
  .compact-container { width: min(100% - 10px, 100% - 10px); }
  .hero-logo { width: 56px; margin: 0 auto 8px; }
  .hero-copy { text-align: center; }
  .hero-kicker { font-size: 10px; }
  .hero h1 { font-size: 29px; }
  .hero-text { font-size: 14px; }
  .hero-badges { justify-content: center; gap: 6px; }
  .hero-badges span { font-size: 11px; padding: 7px 10px; }
  .hero-cta-row { gap: 8px; }
  .btn { width: 100%; min-height: 48px; }
  .slides { aspect-ratio: 4 / 5.2; }
  .slider-dots { bottom: 8px; }

  .impact-strip { padding: 14px 0; }
  .impact-lead { font-size: 24px; }
  .impact-sub { font-size: 13px; margin-top: 8px; }
  .bullet-list { gap: 8px; margin-top: 12px; }
  .bullet-list li { font-size: 13px; padding-left: 22px; }

  .section-head h2, .mini-story h2, .cta-box h2 { font-size: 19px; }
  .testi-track { grid-auto-columns: 88%; gap: 10px; }

  .reason-copy h3 {
    font-size: 17px;
  }
  .reason-copy p {
    font-size: 13px;
    margin-top: 10px;
  }
  .reason-image img { aspect-ratio: 4 / 4.2; }

  .mini-story p,
  .promo-card p,
  .cta-box p {
    font-size: 13px;
  }
  .promo-card { padding: 16px 12px; border-radius: 18px; }
  .promo-card h2 { font-size: 20px; }
  .process-box { padding: 14px; }
  .process-box span { font-size: 13px; }
  .arrows-wrap { gap: 16px; margin-top: 14px; }
  .arrow { font-size: 42px; }
  .big-cta { font-size: 16px; }
  .sticky-wa { right: 10px; bottom: 10px; min-height: 44px; font-size: 13px; }
}
