:root{
  --ink:#211020;
  --muted:#725a6d;
  --pink:#ec2b73;
  --pink2:#ff6fa4;
  --plum:#3a062c;
  --berry:#8f0d45;
  --line:#ffd4e4;
  --soft:#fff3f8;
  --white:#fff;
  --shadow:0 24px 60px rgba(142,18,75,.12);
  --radius:28px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  color:var(--ink);
  background:linear-gradient(180deg,#fff 0%,#fff7fb 100%);
  font-size:17px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit}
img{max-width:100%;display:block}
.container{width:min(1180px,calc(100% - 40px));margin:0 auto}

/* HEADER */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}
.nav{
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
.brand img{width:238px;height:auto}
.main-nav{display:flex;gap:28px;font-weight:800;color:#4d3045}
.main-nav a{text-decoration:none}
.main-nav a:hover{color:var(--pink)}
.nav-actions{display:flex;align-items:center;gap:14px}
.email-pill{
  display:inline-flex;align-items:center;
  min-height:48px;
  padding:0 18px;
  border:1px solid var(--line);
  border-radius:999px;
  text-decoration:none;
  color:var(--pink);
  font-weight:800;
  background:#fff;
}
.menu-toggle{display:none;border:0;background:transparent;font-size:32px;color:var(--ink);cursor:pointer}

/* BUTTONS */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:54px;
  border-radius:999px;
  padding:14px 24px;
  font-weight:900;
  text-decoration:none;
  border:0;
  cursor:pointer;
  font-size:16px;
}
.btn-small{min-height:48px;padding:12px 20px}
.btn-primary{
  background:linear-gradient(135deg,var(--pink),#d20f62);
  color:#fff;
  box-shadow:0 16px 30px rgba(236,43,115,.25);
}
.btn-outline{
  background:#fff;
  color:var(--pink);
  border:1.5px solid var(--line);
}
.btn-dark{
  background:linear-gradient(135deg,var(--plum),#13000d);
  color:#fff;
}

/* HERO */
.hero{
  position:relative;
  overflow:hidden;
  padding:62px 0 44px;
  background:
    radial-gradient(circle at 80% 30%,rgba(255,111,164,.25),transparent 34%),
    linear-gradient(90deg,#fff 0%,#fff8fb 52%,#ffeaf3 100%);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.03fr .97fr;
  gap:38px;
  align-items:center;
}
.badge{
  display:inline-flex;
  width:max-content;
  max-width:100%;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--pink);
  font-weight:900;
  margin:0 0 18px;
}
.hero h1{
  font-size:clamp(44px,5.7vw,74px);
  line-height:1.03;
  letter-spacing:-.055em;
  margin:0 0 18px;
}
.hero h1 span{
  color:var(--pink);
}
.lead{
  max-width:610px;
  color:#5e4558;
  font-size:21px;
  margin:0 0 28px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:0 0 28px;
}
.trust-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  max-width:780px;
}
.trust-row div{
  display:grid;
  gap:4px;
  border-left:3px solid #ffd4e4;
  padding-left:14px;
}
.trust-row b{color:#321728}
.trust-row small{color:var(--muted)}

/* PHONE MOCKUP */
.phone-stage{
  position:relative;
  min-height:530px;
}
.heart-bg{
  position:absolute;
  right:80px;top:70px;
  font-size:240px;
  color:rgba(236,43,115,.10);
  line-height:1;
}
.phone{
  position:absolute;
  background:#111;
  border:10px solid #171015;
  border-radius:42px;
  box-shadow:0 26px 50px rgba(60,7,38,.22);
  overflow:hidden;
}
.phone-top{
  width:92px;height:12px;border-radius:999px;
  background:#161016;margin:16px auto 10px;
}
.phone-content{
  background:#fff;
  height:100%;
  border-radius:24px 24px 0 0;
  padding:18px;
}
.phone-front{
  width:270px;height:500px;
  left:70px;top:0;
  z-index:3;
  transform:rotate(2deg);
}
.phone-back{
  width:240px;height:470px;
  right:70px;top:38px;
  z-index:2;
  transform:rotate(8deg);
}
.phone-title{font-weight:900;margin-bottom:12px}
.profile-card{
  position:relative;height:330px;border-radius:24px;overflow:hidden;background:#350b22;color:#fff;
}
.avatar-art{
  position:absolute;inset:0;
  background:
    radial-gradient(circle at 50% 25%,#c68b77 0 16%,transparent 17%),
    radial-gradient(circle at 45% 23%,#4b251a 0 25%,transparent 26%),
    linear-gradient(160deg,#2b130f,#7b3246 58%,#13010b);
}
.profile-gradient{position:absolute;inset:0;background:linear-gradient(180deg,transparent 34%,rgba(0,0,0,.75) 100%)}
.profile-text{position:absolute;left:18px;right:18px;bottom:18px}
.profile-text strong{font-size:24px;display:block}.profile-text span{color:#ff497f}
.profile-text small{display:block;color:#ffe3ec}.profile-text p{font-size:13px;margin:6px 0}
.tags{display:flex;gap:6px;flex-wrap:wrap}.tags em{font-style:normal;background:rgba(255,255,255,.18);padding:5px 8px;border-radius:999px;font-size:12px}
.phone-buttons{display:flex;justify-content:center;gap:14px;margin-top:14px}.phone-buttons button{width:48px;height:48px;border-radius:50%;border:0;background:#fff;box-shadow:0 8px 18px rgba(0,0,0,.12);font-size:22px}.phone-buttons .love{background:#ffe5ef;color:var(--pink)}
.msg{display:grid;grid-template-columns:36px 1fr;column-gap:10px;padding:10px 0;border-bottom:1px solid #f1dce5}
.msg span{grid-row:1/3;width:36px;height:36px;border-radius:50%;background:linear-gradient(135deg,#fdb2c9,#7f1745)}
.msg b{font-size:14px}.msg small{color:var(--muted);font-size:12px}

/* BENEFITS & CARDS */
.benefits{padding:0 0 28px;background:#fff}
.benefit-grid{
  margin-top:-16px;
  position:relative;z-index:4;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border:1px solid var(--line);
  border-radius:24px;
  background:#fff;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.benefit-grid article{
  padding:22px;
  display:grid;
  grid-template-columns:48px 1fr;
  column-gap:14px;
  border-right:1px solid #ffe2eb;
}
.benefit-grid article:last-child{border-right:0}
.benefit-grid span{
  grid-row:1/3;
  display:grid;place-items:center;
  width:48px;height:48px;border-radius:16px;
  background:#fff1f6;color:var(--pink);font-size:24px;
}
.benefit-grid h3{margin:0 0 4px;font-size:19px}.benefit-grid p{margin:0;color:var(--muted);font-size:14px}

.section{padding:62px 0}
.section-head{max-width:720px;margin-bottom:30px}
.section-head h2{font-size:clamp(34px,4vw,54px);line-height:1.1;letter-spacing:-.04em;margin:0 0 12px}
.section-head p{color:var(--muted);font-size:19px}
.cards{display:grid;gap:20px}.four{grid-template-columns:repeat(4,1fr)}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  padding:28px;
  box-shadow:0 18px 46px rgba(112,20,65,.06);
}
.card span{
  display:grid;place-items:center;
  width:58px;height:58px;border-radius:20px;background:#fff1f6;color:var(--pink);font-size:26px;margin-bottom:18px;
}
.card h3{font-size:23px;margin:0 0 10px}.card p{color:var(--muted);margin:0}

/* SECURITY */
.security{
  background:linear-gradient(180deg,#fff,#fff7fb);
}
.security-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:34px;
  align-items:center;
}
.security h2{font-size:clamp(34px,4vw,52px);line-height:1.1;letter-spacing:-.04em;margin:0 0 14px}
.security p{color:var(--muted);font-size:19px}
.security-panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  padding:28px;
  box-shadow:var(--shadow);
}
.security-panel h3{font-size:28px;margin:0 0 18px}
.security-list{display:grid;gap:12px}
.security-list p{
  margin:0;
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  color:#4c3046;
}

/* PREMIUM */
.premium-grid{
  display:grid;
  grid-template-columns:1fr .82fr;
  gap:34px;
  align-items:center;
}
.premium h2{font-size:clamp(34px,4vw,52px);line-height:1.1;letter-spacing:-.04em;margin:0 0 14px}
.premium p,.premium li{color:var(--muted);font-size:18px}
.price-card{
  position:relative;
  overflow:hidden;
  border-radius:34px;
  padding:34px;
  color:#fff;
  min-height:330px;
  background:
    radial-gradient(circle at 78% 18%,rgba(255,255,255,.18),transparent 24%),
    linear-gradient(135deg,#5e072e,#e01365);
  box-shadow:0 24px 60px rgba(148,0,65,.20);
}
.price-card:after{
  content:"◆";
  position:absolute;
  right:34px;top:70px;
  font-size:120px;color:rgba(255,255,255,.20);
}
.price-card p{color:#ffe5ef}.price-card h3{font-size:54px;margin:4px 0 14px;color:#fff}
.vip{position:absolute;right:28px;top:18px;color:rgba(255,255,255,.20);font-size:70px;font-weight:900}

/* CONTACT */
.contact-band{padding:54px 0;background:#fff}
.contact-card{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:28px;
  align-items:center;
  padding:34px;
  border-radius:34px;
  color:#fff;
  background:
    radial-gradient(circle at 88% 54%,rgba(255,255,255,.2),transparent 23%),
    linear-gradient(135deg,#520324,#e01365);
  box-shadow:0 24px 60px rgba(148,0,65,.18);
}
.mail-icon{display:grid;place-items:center;width:74px;height:74px;border-radius:24px;background:rgba(255,255,255,.16);font-size:34px;margin-bottom:16px}
.contact-card h2{font-size:clamp(34px,4vw,52px);line-height:1.1;margin:0 0 12px;color:#fff}
.contact-card p{color:#ffeaf2}
.contact-box{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.25);
  border-radius:26px;
  padding:24px;
  display:grid;
  gap:14px;
}
.contact-box label{display:grid;gap:8px;font-weight:800;color:#fff}
.contact-box input,.contact-box textarea{
  width:100%;
  border:0;
  border-radius:16px;
  padding:14px 16px;
  font:inherit;
  color:var(--ink);
}
.hp{position:absolute;left:-9999px}
.form-note{margin:0;font-size:14px}.form-note a{color:#fff;font-weight:900}

/* FOOTER */
.footer{padding:28px 0;background:#fff}
.footer-row{display:flex;align-items:center;justify-content:space-between;gap:18px;color:#9b788f;font-size:14px}
.footer nav{display:flex;gap:18px}
.footer a{text-decoration:none;color:#8b6580}

/* RESPONSIVE */
@media(max-width:980px){
  .main-nav,.nav-actions{display:none}
  .menu-toggle{display:block}
  .main-nav.open{
    display:flex;position:absolute;left:16px;right:16px;top:86px;background:#fff;border:1px solid var(--line);border-radius:22px;box-shadow:var(--shadow);padding:14px;flex-direction:column
  }
  .hero-grid,.security-grid,.premium-grid,.contact-card{grid-template-columns:1fr}
  .phone-stage{min-height:500px}
  .phone-front{left:12%;}.phone-back{right:8%}
  .benefit-grid,.four{grid-template-columns:1fr 1fr}
}
@media(max-width:620px){
  .container{width:min(100% - 28px,1180px)}
  .brand img{width:210px}
  .hero{padding:40px 0}
  .hero h1{font-size:40px}
  .hero-actions{display:grid}
  .btn{width:100%}
  .trust-row,.benefit-grid,.four{grid-template-columns:1fr}
  .benefit-grid article{border-right:0;border-bottom:1px solid var(--line)}
  .phone-stage{display:none}
  .footer-row{display:grid;text-align:center;justify-content:center}
  .footer nav{justify-content:center;flex-wrap:wrap}
}
