:root{
  --pink:#FC5198;
  --pink-dark:#ec1f75;
  --pink-light:#fff0f6;
  --black:#111111;
  --gray:#555;
  --line:#ffd1e3;
  --white:#fff;
  --shadow:0 24px 70px rgba(252,81,152,.18);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Poppins,system-ui,-apple-system,Segoe UI,sans-serif;
  color:var(--black);
  background:
    radial-gradient(circle at top right, #ffdceb 0 22%, transparent 38%),
    linear-gradient(180deg,#fff 0%,#fff7fb 100%);
}
a{text-decoration:none;color:inherit}
img{max-width:100%}

.header{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
  padding:22px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  line-height:.9;
}
.brand-icon{
  display:grid;
  place-items:center;
  width:54px;
  height:54px;
  border-radius:16px;
  background:linear-gradient(135deg,var(--pink),var(--pink-dark));
  color:white;
  font-size:32px;
  box-shadow:0 10px 28px rgba(252,81,152,.28);
}
.brand strong{display:block;font-size:34px}
.brand em{
  display:block;
  color:var(--pink);
  font-family:Caveat,cursive;
  font-size:34px;
  font-style:normal;
}
.nav{display:flex;gap:30px;font-weight:700;font-size:14px}
.nav a:hover{color:var(--pink)}
.btn{
  border:0;
  border-radius:18px;
  padding:18px 28px;
  background:linear-gradient(135deg,var(--pink),var(--pink-dark));
  color:#fff;
  font-weight:900;
  text-transform:uppercase;
  cursor:pointer;
  box-shadow:0 14px 30px rgba(252,81,152,.28);
}
.btn:hover{transform:translateY(-1px)}
.btn-small{padding:14px 24px;border-radius:14px;font-size:14px}

.hero{
  width:min(1180px, calc(100% - 32px));
  margin:46px auto 34px;
  display:grid;
  grid-template-columns:1.02fr .98fr;
  align-items:center;
  gap:38px;
}
.eyebrow{
  display:inline-flex;
  padding:8px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--pink-dark);
  font-weight:800;
  font-size:13px;
  text-transform:uppercase;
}
h1{
  margin:20px 0 18px;
  max-width:690px;
  font-size:clamp(42px,6vw,76px);
  line-height:.98;
  letter-spacing:-.05em;
}
h1 span{color:var(--pink);display:block}
.hero p{
  color:var(--gray);
  font-size:19px;
  line-height:1.6;
  max-width:560px;
}
.checklist{
  list-style:none;
  padding:0;
  margin:24px 0;
  display:grid;
  gap:12px;
  color:#333;
  font-size:17px;
}
.checklist li::before{
  content:"✓";
  display:inline-grid;
  place-items:center;
  width:24px;
  height:24px;
  margin-right:10px;
  border-radius:50%;
  color:white;
  background:var(--pink);
  font-weight:900;
}
.lead-form{
  display:flex;
  width:min(520px,100%);
  padding:8px;
  border:1px solid var(--line);
  border-radius:22px;
  background:white;
  box-shadow:var(--shadow);
}
.lead-form input{
  flex:1;
  min-width:0;
  border:0;
  outline:0;
  padding:0 18px;
  font:inherit;
  background:transparent;
}
.safe{display:block;margin-top:14px;color:#666}

.hero-visual{
  position:relative;
  min-height:610px;
  display:grid;
  place-items:center;
}
.phone{
  width:min(370px,86vw);
  min-height:570px;
  padding:18px;
  border:10px solid #111;
  border-radius:44px;
  background:#f8f1ea;
  box-shadow:0 35px 80px rgba(0,0,0,.22);
  transform:rotate(7deg);
}
.phone-top{width:100px;height:18px;border-radius:0 0 14px 14px;background:#111;margin:-18px auto 12px}
.chat-head{
  margin:-2px -2px 16px;
  padding:18px;
  border-radius:28px 28px 14px 14px;
  background:linear-gradient(135deg,var(--pink),var(--pink-dark));
  color:white;
  font-weight:800;
}
.chat-head span{display:block;font-size:12px;font-weight:500;opacity:.9}
.message{
  background:white;
  border-radius:16px;
  padding:16px;
  margin-bottom:14px;
  box-shadow:0 8px 18px rgba(0,0,0,.08);
}
.message p{font-size:14px;margin:8px 0 12px;color:#333}
.coupon{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:10px 12px;
  margin:8px 0;
  border-radius:10px;
  background:#fff0f6;
}
.coupon b{
  background:var(--pink);
  color:white;
  padding:8px 10px;
  border-radius:8px;
}
.bag{
  position:absolute;
  right:5%;
  bottom:42px;
  width:210px;
  height:210px;
  display:grid;
  place-items:center;
  border-radius:34px;
  background:linear-gradient(135deg,var(--pink),var(--pink-dark));
  color:white;
  font-size:110px;
  box-shadow:var(--shadow);
}
.badge{
  position:absolute;
  right:8%;
  top:80px;
  width:142px;
  height:142px;
  display:grid;
  place-items:center;
  text-align:center;
  border-radius:50%;
  background:var(--pink);
  color:white;
  font-weight:900;
  text-transform:uppercase;
  transform:rotate(-9deg);
}

.benefits{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto 52px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:0;
  background:white;
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.benefits article{
  padding:32px 24px;
  text-align:center;
  border-right:1px solid var(--line);
}
.benefits article:last-child{border-right:0}
.benefits span{font-size:34px}
.benefits h3,.steps h3{margin:12px 0 8px;text-transform:uppercase;font-size:16px}
.benefits p,.steps p,.testimonials p,.cta-box p{color:#555;line-height:1.55;margin:0}

.steps{
  width:min(1000px, calc(100% - 32px));
  margin:70px auto;
  text-align:center;
}
h2{font-size:clamp(30px,4vw,44px);letter-spacing:-.04em;margin:0 0 30px}
.step-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.step-grid article{
  padding:28px 20px;
  background:white;
  border:1px solid var(--line);
  border-radius:24px;
}
.step-grid b{
  display:inline-grid;
  place-items:center;
  width:44px;
  height:44px;
  border-radius:50%;
  color:white;
  background:var(--pink);
}

.proof-cta{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto 36px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
  align-items:stretch;
}
.testimonials,.cta-box{
  padding:34px;
  border-radius:28px;
}
.testimonials{background:#fff;border:1px solid var(--line)}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.cards article{
  background:#fff7fb;
  border:1px solid var(--line);
  border-radius:20px;
  padding:20px;
}
.cards strong{display:block;margin-top:12px}
.cards span{color:var(--pink)}
.cta-box{
  background:linear-gradient(135deg,var(--pink),var(--pink-dark));
  color:white;
}
.cta-box p,.cta-box small{color:white}
.lead-form.dark{box-shadow:none;margin:22px 0}
.btn-dark{background:#111;box-shadow:none}

.footer{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:var(--pink);
  color:white;
  font-weight:800;
  text-align:center;
}
.footer span{padding:24px 14px;border-right:1px solid rgba(255,255,255,.35)}

@media (max-width: 920px){
  .nav{display:none}
  .hero{grid-template-columns:1fr;margin-top:24px}
  .hero-visual{min-height:520px}
  .benefits{grid-template-columns:repeat(2,1fr)}
  .benefits article{border-bottom:1px solid var(--line)}
  .step-grid,.proof-cta{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .footer{grid-template-columns:1fr 1fr}
}

@media (max-width: 560px){
  .header{padding:16px 0}
  .brand strong{font-size:28px}
  .brand em{font-size:28px}
  .header .btn-small{display:none}
  .hero{gap:12px}
  h1{font-size:44px}
  .hero p{font-size:16px}
  .lead-form{flex-direction:column;gap:8px}
  .lead-form input{padding:16px}
  .btn{width:100%}
  .hero-visual{min-height:430px;overflow:hidden}
  .phone{width:300px;min-height:450px;border-width:8px;transform:rotate(3deg)}
  .bag{width:132px;height:132px;font-size:72px;right:0;bottom:20px}
  .badge{width:106px;height:106px;font-size:13px;right:0;top:22px}
  .benefits{grid-template-columns:1fr}
  .benefits article{border-right:0}
  .step-grid{gap:14px}
  .testimonials,.cta-box{padding:24px}
  .footer{grid-template-columns:1fr}
}
