
:root{
  --brand:#b7334a;
  --brand2:#d64b66;
  --brand3:#f0a3b2;
  --ink:#1b1c20;
  --muted:#6b7280;
  --bg:#ffffff;
  --panel:#ffffff;
  --soft:#f7f1f3;
  --ring: rgba(183, 51, 74, .25);
  --shadow: 0 18px 45px rgba(16,24,40,.12);
  --shadow2: 0 10px 30px rgba(16,24,40,.10);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background:var(--bg);
  scroll-behavior:smooth;
}

.container{
  width:min(1120px, 92%);
  margin:0 auto;
}

/* Header */
.header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  background:rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand__logo{height:62px; width:auto}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav a{
  text-decoration:none;
  color:rgba(27,28,32,.85);
  font-weight:500;
  font-size:14px;
  padding:10px 10px;
  border-radius: 12px;
  transition: .2s ease;
}
.nav a:hover{background: rgba(183,51,74,.08); color:var(--brand)}
.nav__cta{
  background: var(--brand);
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(183,51,74,.22);
}
.nav__cta:hover{background: var(--brand2) !important}

/* Mobile menu button */
.menuBtn{
  display:none;
  width:44px;height:44px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  box-shadow: 0 10px 22px rgba(16,24,40,.08);
  cursor:pointer;
}
.menuBtn span{
  display:block;
  height:2px;
  width:18px;
  background:rgba(27,28,32,.75);
  margin:4px auto;
  border-radius:10px;
}

/* Hero */
.hero{
  position:relative;
  padding: 170px 0 110px;
  overflow:visible;
  background: radial-gradient(900px 450px at 10% 15%, rgba(214,75,102,.25), transparent 70%),
              radial-gradient(700px 350px at 90% 20%, rgba(183,51,74,.18), transparent 60%),
              linear-gradient(180deg, #fff, #fff 40%, #fff);
}
.hero__bg{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(120deg, rgba(183,51,74,.06), rgba(214,75,102,.04)),
    url("https://images.unsplash.com/photo-1556228578-0d85b1a4d571?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  opacity:.14;
  pointer-events:none;
}
.hero__content{
  position:relative;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items: start;
  margin-bottom: 35px;
}
.pill{
  display:inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(183,51,74,.10);
  color: var(--brand);
  font-weight: 600;
  font-size: 12px;
  letter-spacing:.2px;
}
.hero h1{
  margin: 14px 0 10px;
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.1;
}
.hero p{
  margin:0;
  color: rgba(27,28,32,.78);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 54ch;
}
.hero__actions{
  display:flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: .2s ease;
  cursor:pointer;
}
.btn--primary{
  background: var(--brand);
  color:#fff;
  box-shadow: 0 14px 34px rgba(183,51,74,.25);
}
.btn--primary:hover{transform: translateY(-1px); background: var(--brand2);}
.btn--ghost{
  background: rgba(255,255,255,.85);
  border-color: rgba(183,51,74,.18);
  color: var(--brand);
}
.btn--ghost:hover{background: rgba(183,51,74,.06);}
.btn--soft{
  background: rgba(183,51,74,.10);
  color: var(--brand);
  border-color: rgba(183,51,74,.10);
}
.btn--small{padding:10px 14px; font-size: 13px}

.hero__trust{
  display:grid;
  gap: 12px;
  margin-top: 18px;
  max-width: 620px;
}
.trustItem{
  display:flex;
  gap: 12px;
  padding: 14px 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 14px 35px rgba(16,24,40,.06);
}
.trustIcon{
  width: 38px; height: 38px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(183,51,74,.10);
  color: var(--brand);
  font-weight: 800;
}
.trustTitle{font-weight:700; font-size: 14px}
.trustText{color: var(--muted); font-size: 13px; margin-top: 2px}

.hero__right{
  display:grid;
  gap: 14px;
}
.heroCard{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.heroCard__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 10px;
}
.badge{
  background: rgba(183,51,74,.10);
  color: var(--brand);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
}
.miniSteps{display:flex; gap:6px}
.dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: rgba(27,28,32,.18);
}
.dot.on{background: var(--brand)}
.heroCard h3{margin: 6px 0 6px; font-size: 18px}
.heroCard p{margin:0; color: rgba(27,28,32,.72); line-height: 1.6; font-size: 13.8px}
.heroCard__actions{display:flex; gap: 10px; margin-top: 12px; flex-wrap:wrap}
.heroCard__note{margin-top: 12px; font-size: 12px; color: rgba(107,114,128,.92)}

.stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.stat{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 18px;
  padding: 14px 12px;
  text-align:center;
  box-shadow: var(--shadow2);
}
.stat__num{font-weight: 800; font-size: 20px; color: var(--brand)}
.stat__label{font-size: 12px; color: rgba(27,28,32,.70)}

.wave{
  position:absolute;
  left:0; right:0;
  width: 100%;
  height: 140px;
  pointer-events:none;
}
.wave--top{bottom:-1px}
.wave--bottom{top:-1px}

/* Sections */
.section{
  padding: 86px 0;
}
.section--alt{background: var(--soft);}
.sectionHead{
  text-align:center;
  margin-bottom: 26px;
}
h2{
  margin:0;
  font-size: clamp(24px, 2.4vw, 34px);
}
.lead{
  margin: 10px auto 0;
  max-width: 72ch;
  color: rgba(27,28,32,.72);
  line-height: 1.75;
  font-size: 15px;
}
.twoCol{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.bullets{display:grid; gap: 12px; margin-top: 18px}
.bullet{
  display:flex;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(15,23,42,.06);
  background: #fff;
  box-shadow: 0 14px 34px rgba(16,24,40,.06);
}
.bullet__icon{
  width:40px;height:40px;border-radius: 14px;
  display:grid;place-items:center;
  background: rgba(183,51,74,.10);
}
.bullet__title{font-weight: 700; font-size: 14px}
.bullet__text{color: var(--muted); font-size: 13px; margin-top: 2px}

.glass{
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(183,51,74,.18);
  background: radial-gradient(600px 220px at 10% 10%, rgba(183,51,74,.12), transparent 55%),
              radial-gradient(600px 260px at 90% 20%, rgba(214,75,102,.12), transparent 55%),
              rgba(255,255,255,.72);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.glass__title{font-weight: 800; color: rgba(27,28,32,.88); margin-bottom: 12px}
.glass__grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.miniCard{
  border-radius: 18px;
  padding: 14px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,23,42,.06);
}
.miniCard__h{font-weight: 800; color: var(--brand)}
.miniCard__p{margin-top: 4px; color: rgba(27,28,32,.72); font-size: 13px; line-height: 1.6}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.card{
  border-radius: 22px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: var(--shadow2);
}
.card__icon{
  width: 48px; height: 48px;
  border-radius: 18px;
  display:grid; place-items:center;
  background: rgba(183,51,74,.10);
  font-size: 22px;
}
.card h3{margin: 12px 0 8px}
.card p{margin:0; color: rgba(27,28,32,.72); line-height: 1.7; font-size: 14px}
.card ul{margin: 12px 0 0; padding-left: 18px; color: rgba(27,28,32,.75); line-height: 1.8; font-size: 13.5px}

.ctaStrip{
  margin-top: 22px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(120deg, rgba(183,51,74,.12), rgba(214,75,102,.10));
  border: 1px solid rgba(183,51,74,.16);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.ctaStrip__title{font-weight: 800}
.ctaStrip__text{color: rgba(27,28,32,.72); font-size: 13.5px; margin-top: 2px}

.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.step{
  background: #fff;
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 22px;
  padding: 16px;
  box-shadow: var(--shadow2);
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.step__num{
  width: 38px; height: 38px;
  border-radius: 16px;
  background: rgba(183,51,74,.10);
  color: var(--brand);
  display:grid;place-items:center;
  font-weight: 900;
}
.step__title{font-weight: 800}
.step__text{color: rgba(27,28,32,.72); font-size: 13px; margin-top: 2px; line-height: 1.6}

/* Slider */
.slider{
  position:relative;
  margin-top: 18px;
  border-radius: 22px;
  overflow:visible;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: var(--shadow);
  background: #fff;
}
.sliderTrack{
  display:flex;
  transition: transform .45s ease;
}
.slide{
  min-width: 100%;
  position:relative;
}
.slide img{
  width:100%;
  height: 360px;
  object-fit: cover;
  display:block;
}
.slideCaption{
  position:absolute;
  left: 16px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(15,23,42,.06);
}
.capTitle{font-weight: 800; color: var(--brand)}
.capText{color: rgba(27,28,32,.72); font-size: 13px; margin-top: 2px}
.sliderBtn{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(10px);
  cursor:pointer;
  box-shadow: 0 14px 26px rgba(16,24,40,.10);
  font-size: 26px;
  color: rgba(27,28,32,.80);
}
.sliderBtn:hover{background:#fff}
.sliderBtn.prev{left: 12px}
.sliderBtn.next{right: 12px}

/* Masonry */
.masonry{
  margin-top: 18px;
  columns: 3 220px;
  column-gap: 14px;
}
.masonry img{
  width:100%;
  border-radius: 18px;
  margin: 0 0 14px;
  display:block;
  break-inside: avoid;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 12px 26px rgba(16,24,40,.06);
}

/* Testimonials */
.testimonials{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.testimonial{
  background: #fff;
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 22px;
  padding: 16px;
  box-shadow: var(--shadow2);
}
.quote{
  width: 36px; height: 36px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(183,51,74,.10);
  color: var(--brand);
  font-weight: 900;
}
.testimonial p{margin: 10px 0 10px; color: rgba(27,28,32,.72); line-height: 1.7; font-size: 13.5px}
.who{font-weight: 700; color: rgba(27,28,32,.82); font-size: 12.8px}

/* FAQ */
.faq{
  max-width: 860px;
  margin: 18px auto 0;
  display:grid;
  gap: 10px;
}
.faqItem{
  background: #fff;
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 18px;
  padding: 12px 14px;
  box-shadow: 0 12px 26px rgba(16,24,40,.06);
}
.faqItem summary{
  cursor:pointer;
  font-weight: 700;
  color: rgba(27,28,32,.88);
}
.faqBody{
  margin-top: 10px;
  color: rgba(27,28,32,.70);
  line-height: 1.7;
  font-size: 13.5px;
}

/* Contact */
.contactGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:start;
}
.contactCards{display:grid; gap: 10px; margin-top: 14px}
.contactCard{
  display:flex;
  gap: 12px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: var(--shadow2);
}
.contactCard__icon{
  width: 44px; height: 44px;
  border-radius: 18px;
  display:grid; place-items:center;
  background: rgba(183,51,74,.10);
}
.contactCard__title{font-weight: 800}
.contactCard__text{color: rgba(27,28,32,.72); font-size: 13.5px; margin-top: 2px}

.form{
  background: #fff;
  border-radius: 24px;
  padding: 18px;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: var(--shadow);
}
.formRow{display:flex; flex-direction:column; gap: 6px; margin-bottom: 12px}
label{font-weight: 700; font-size: 13px; color: rgba(27,28,32,.86)}
input, textarea{
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.14);
  font-family: inherit;
  font-size: 14px;
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(183,51,74,.55);
  box-shadow: 0 0 0 5px var(--ring);
}
.formHint{
  margin: 10px 0 0;
  color: rgba(107,114,128,.92);
  font-size: 12px;
  line-height: 1.5;
}

/* Footer */
.footer{
  background: #0f0f12;
  color: rgba(255,255,255,.85);
  padding: 26px 0;
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer__logo{height: 38px; width:auto; filter: brightness(1.05) contrast(1.05)}
.footer__text{color: rgba(255,255,255,.70); font-size: 13px; margin-top: 6px}
.footer__links{display:flex; gap: 14px; flex-wrap: wrap}
.footer__links a{color: rgba(255,255,255,.76); text-decoration:none}
.footer__links a:hover{color: #fff}
.footer__small{color: rgba(255,255,255,.55); font-size: 12px}

/* WhatsApp floating */
.wa{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 2000;
  background: #1fbf64;
  color: #fff;
  text-decoration:none;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 18px 35px rgba(0,0,0,.22);
}
.wa:hover{transform: translateY(-1px)}

/* Responsive */
@media (max-width: 980px){
  .hero__content{grid-template-columns: 1fr}
  .twoCol{grid-template-columns: 1fr}
  .cards{grid-template-columns: 1fr}
  .steps{grid-template-columns: 1fr 1fr}
  .testimonials{grid-template-columns: 1fr}
  .contactGrid{grid-template-columns: 1fr}
  .stats{grid-template-columns: repeat(3,1fr)}
  .nav{
    position: absolute;
    top: 68px;
    right: 4%;
    left: 4%;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(15,23,42,.06);
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow2);
    display:none;
    flex-direction: column;
    align-items: stretch;
  }
  .nav a{padding: 12px 12px; font-size: 14px}
  .menuBtn{display:block}
  .nav.open{display:flex}
}


/* --- HERO ALIGNMENT FIX --- */
.hero__right {
  margin-top: 50px;
}

@media (max-width: 980px){
  .hero__right{
    margin-top: 25px;
  }
}
