:root{
  --bg: #FFFFFF;
  --surface: rgba(15, 23, 42, 0.03);
  --surface2: rgba(15, 23, 42, 0.05);
  --text: #0F172A;
  --muted: rgba(15,23,42,.68);
  --border: rgba(15,23,42,.10);
  --shadow: 0 18px 60px rgba(2,6,23,.10);
  --radius: 18px;
  --radius2: 24px;
  --accent: #16A34A;
  --accent2: #0EA5E9;
  --ring: rgba(14,165,233,.22);
  --container: 1120px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 500px at 10% -10%, rgba(14,165,233,.14), transparent 60%),
              radial-gradient(900px 420px at 95% 0%, rgba(22,163,74,.14), transparent 55%),
              var(--bg);
}

a{ color: inherit; text-decoration: none; }
.container{ width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }

.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.72);
  border-bottom: 1px solid var(--border);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
  gap: 12px;
}
.brand{ display:flex; align-items:center; gap: 10px; }
.brand img{ height: 34px; width:auto; } /* legacy */
.nav{ display:flex; gap: 18px; font-weight: 700; color: rgba(15,23,42,.80); }
.nav a{ opacity: .9; }
.nav a:hover{ opacity: 1; }
.actions{ display:flex; gap: 10px; align-items:center; }

.btn{
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  font-weight: 900;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.7);
}
.btn:hover{ box-shadow: 0 10px 26px rgba(2,6,23,.10); transform: translateY(-1px); }
.btn--primary{
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}
.btn--ghost{
  background: rgba(15,23,42,.04);
}
.badgeRow{ display:flex; flex-wrap:wrap; gap: 8px; margin-bottom: 14px; }
.badge{
  display:inline-flex; align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.65);
  color: rgba(15,23,42,.80);
  font-weight: 800;
  font-size: 12.5px;
}

.hero{ padding: 44px 0 24px; }
.heroGrid{
  display:grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 18px;
  align-items: start;
}
.h1{
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0;
}
.lead{
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 62ch;
}
.heroBullets{
  margin-top: 14px;
  display:grid;
  gap: 10px;
}
.bullet{
  display:flex; gap: 10px; align-items:flex-start;
  color: rgba(15,23,42,.86);
  font-weight: 700;
}
.bullet .dot{
  margin-top: 2px;
  width: 22px; height: 22px;
  border-radius: 8px;
  background: rgba(22,163,74,.10);
  border: 1px solid rgba(22,163,74,.22);
  display:flex; align-items:center; justify-content:center;
  color: var(--accent);
  font-weight: 1000;
}

.heroMedia{
  margin-top: 18px;
  border-radius: var(--radius2);
  background: rgba(255,255,255,.65);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.heroMedia__tabs{
  display:flex;
  gap: 6px;
  padding: 10px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.70);
}
.segBtn{
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(15,23,42,.03);
  font-weight: 900;
  cursor:pointer;
}
.segBtn.is-active{
  border-color: rgba(14,165,233,.34);
  box-shadow: 0 0 0 4px var(--ring);
  background: rgba(14,165,233,.08);
}
.heroMedia__body{
  position: relative;
  aspect-ratio: 16/9;
  background: #0B1220;
}
.heroMedia__body iframe,
.heroMedia__body img{
  width:100%; height:100%; border:0;
  object-fit: contain;
}
.heroMedia__hint{
  padding: 10px 12px;
  color: rgba(15,23,42,.70);
  font-size: 13px;
  font-weight: 700;
  background: rgba(255,255,255,.70);
}

.leadCard{
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow);
  padding: 14px;
  position: sticky;
  top: 84px;
}
.leadCard__title{
  font-weight: 1000;
  letter-spacing: -0.01em;
  font-size: 16px;
}
.leadCard__sub{ margin-top: 6px; color: var(--muted); font-size: 13.5px; line-height: 1.45; }
.field{ margin-top: 10px; display:grid; gap: 6px; }
.label{ font-weight: 900; font-size: 12px; color: rgba(15,23,42,.80); }
.input, select{
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.78);
  padding: 0 12px;
  outline: none;
  font-weight: 800;
  color: rgba(15,23,42,.92);
}
.input:focus, select:focus{
  border-color: rgba(14,165,233,.42);
  box-shadow: 0 0 0 4px var(--ring);
}
.leadCard__cta{
  margin-top: 12px;
  width: 100%;
}
.micro{ margin-top: 10px; font-size: 12px; color: rgba(15,23,42,.62); line-height: 1.4; }

.section{ padding: 44px 0; }
.sectionHead{
  display:flex; align-items:flex-end; justify-content:space-between; gap: 16px;
  margin-bottom: 16px;
}
.h2{ margin:0; font-size: 28px; letter-spacing:-0.02em; }
.muted{ color: var(--muted); }
.grid3{ display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.card{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.72);
  box-shadow: 0 16px 40px rgba(2,6,23,.08);
  padding: 14px;
}
.cardTitle{ font-weight: 1000; letter-spacing:-0.01em; margin-bottom: 6px; }
.cardText{ color: var(--muted); line-height: 1.5; font-size: 14px; }

.videoGrid{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.videoCard{ padding: 12px; }
.ratio{
  width:100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(15,23,42,.12);
  background: #0B1220;
}
.ratio iframe{ width:100%; height:100%; border:0; }
.videoMeta{ display:flex; justify-content:space-between; align-items:center; gap:12px; margin-bottom: 8px; }
.pill{ font-size: 12px; font-weight: 1000; padding: 6px 10px; border-radius:999px; background: rgba(22,163,74,.10); border: 1px solid rgba(22,163,74,.22); color: rgba(15,23,42,.78); }

.filters{ display:flex; gap: 8px; flex-wrap:wrap; margin-bottom: 12px; }
.filterBtn{
  height: 36px; padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(15,23,42,.03);
  font-weight: 900; cursor:pointer;
}
.filterBtn.is-active{
  background: rgba(14,165,233,.10);
  border-color: rgba(14,165,233,.30);
}
.galleryGrid{ display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.shot{
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.70);
  overflow:hidden;
  box-shadow: 0 14px 40px rgba(2,6,23,.08);
  cursor:pointer;
  transition: transform .12s ease;
}
.shot:hover{ transform: translateY(-2px); }
.shot img{ width:100%; height: 128px; object-fit: cover; display:block; background:#0B1220; }
.shotCap{ padding: 10px; }
.shotTitle{ font-weight: 1000; font-size: 13px; line-height: 1.25; }
.shotTag{ margin-top: 6px; font-size: 12px; color: rgba(15,23,42,.62); font-weight: 900; }

.modal{
  position: fixed; inset: 0;
  background: rgba(2,6,23,.60);
  display:none; align-items:center; justify-content:center;
  padding: 18px;
  z-index: 80;
}
.modal.is-open{ display:flex; }
.modalCard{
  width: min(1100px, 100%);
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 30px 120px rgba(2,6,23,.38);
  overflow:hidden;
}
.modalTop{
  display:flex; align-items:center; justify-content:space-between; gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(15,23,42,.10);
}
.modalTitle{ font-weight: 1000; }
.modalClose{
  height: 38px; width: 38px; border-radius: 12px;
  border: 1px solid rgba(15,23,42,.14);
  background: rgba(15,23,42,.04);
  cursor:pointer;
}
.modalBody{ background: #0B1220; }
.modalBody img{ width:100%; height: min(72vh, 680px); object-fit: contain; display:block; }

.faq{ display:grid; gap: 10px; }
.faqItem{ border-radius: 16px; border: 1px solid var(--border); background: rgba(255,255,255,.72); padding: 12px 14px; }
.faqQ{ font-weight: 1000; }
.faqA{ margin-top: 6px; color: var(--muted); line-height: 1.55; font-size: 14px; }

.footer{
  padding: 26px 0 34px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,.60);
}
.footerGrid{
  display:flex; justify-content:space-between; gap: 14px; flex-wrap:wrap;
}
.small{ font-size: 13px; color: var(--muted); line-height:1.45; }

.wabubble{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display:flex; align-items:center; gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.85);
  box-shadow: 0 18px 60px rgba(2,6,23,.16);
  font-weight: 1000;
}
.wabubble__dot{
  width: 12px; height: 12px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(22,163,74,.14);
}

@media (max-width: 980px){
  .heroGrid{ grid-template-columns: 1fr; }
  .leadCard{ position: relative; top:auto; }
  .nav{ display:none; }
  .galleryGrid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid3{ grid-template-columns: 1fr; }
  .videoGrid{ grid-template-columns: 1fr; }
}
@media (max-width: 520px){
  .container{ width: calc(100% - 28px); }
  .hero{ padding-top: 34px; }
  .h2{ font-size: 24px; }
  .shot img{ height: 122px; }
}

/* Pricing promo */
.priceBox{
  margin-top: 12px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.12);
  background: linear-gradient(135deg, rgba(16,185,129,.10), rgba(14,165,233,.08));
  padding: 12px;
}
.priceBox__label{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-weight: 1000;
  font-size: 12px;
  letter-spacing: -0.01em;
  color: rgba(15,23,42,.82);
  margin-bottom: 8px;
}
.priceBox__row{
  display:flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.priceOld{
  font-weight: 900;
  color: rgba(15,23,42,.55);
  text-decoration: line-through;
}
.priceArrow{
  font-weight: 1000;
  color: rgba(15,23,42,.55);
}
.priceNew{
  font-weight: 1100;
  letter-spacing: -0.02em;
  font-size: 24px;
  color: rgba(15,23,42,.96);
}
.priceNew span{ font-size: 14px; font-weight: 1000; margin-right: 4px; color: rgba(15,23,42,.72); }
.priceNew small{ font-size: 12px; font-weight: 900; color: rgba(15,23,42,.66); }
.priceBox__note{
  margin-top: 8px;
  font-size: 12px;
  color: rgba(15,23,42,.68);
  line-height: 1.35;
}


/* Promo line (v19) */
.promoLine{
  margin-top: 12px;
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.10);
  background: linear-gradient(135deg, rgba(16,185,129,.12), rgba(14,165,233,.10));

  box-shadow: 0 16px 40px rgba(2,6,23,.08);
}
.promoTag{
  font-size: 11.5px;
  font-weight: 1100;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.72);
  color: rgba(15,23,42,.82);
}
.promoOld{
  font-weight: 1000;
  color: rgba(15,23,42,.55);
  text-decoration: line-through;
}
.promoArrow{ font-weight: 1100; color: rgba(15,23,42,.55); }
.promoNew{
  font-weight: 1200;
  letter-spacing: -0.02em;
  font-size: 20px;
  color: rgba(15,23,42,.92);
}
.promoPer{ font-size: 12px; font-weight: 1000; color: rgba(15,23,42,.62); margin-left: 3px; }
.promoSave{ font-size: 12px; color: rgba(15,23,42,.68); }


/* Mobile compact + badges scroll (v19) */
@media (max-width: 520px){
  .topbar__inner{ padding: 10px 0; }
  .brand img{ height: 30px; }
  .btn{ height: 40px; padding: 0 14px; }
  .badgeRow{ flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; margin-bottom: 12px; }
  .badgeRow::-webkit-scrollbar{ height: 6px; }
  .badgeRow::-webkit-scrollbar-thumb{ background: rgba(15,23,42,.10); border-radius: 999px; }
  .badge{ white-space: nowrap; }
  .hero{ padding: 30px 0 18px; }
  .lead{ font-size: 15.5px; }
  .promoLine{ gap: 8px; padding: 10px; }
  .promoNew{ font-size: 17px; }
}


/* WhatsApp bubble: avoid covering media (v19) */
.wabubble{
  transition: transform .18s ease, opacity .18s ease;
}
.wabubble.is-hidden,
.wabubble.is-softHidden{
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}
@media (max-width: 520px){
  .wabubble{
    right: 14px;
    bottom: 14px;
    padding: 12px;
    width: 54px;
    height: 54px;
    justify-content: center;
    border-radius: 999px;
    gap: 0;
  }
  .wabubble__label{ display:none; }
  .wabubble__dot{
    width: 14px; height: 14px;
    box-shadow: 0 0 0 7px rgba(22,163,74,.14);
  }
}


/* Slogan + price pill (v20) */
.sloganPill{
  margin-top: 10px;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.72);
  color: rgba(15,23,42,.86);
  font-weight: 1100;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 30px rgba(2,6,23,.08);
}
.sloganPill::before{
  content: "🛠️";
  font-size: 14px;
  transform: translateY(-.5px);
}
.btnPrice{
  margin-left: 10px;
  font-size: 12px;
  font-weight: 1100;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.14);
  color: rgba(255,255,255,.95);
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 520px){
  .btnPrice{ display:none; }
  .sloganPill{ font-size: 13px; padding: 8px 12px; }
}


/* Brand logo/text (v22) */
.brand__logo{
  height: 38px;
  width: 38px;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 22px rgba(2,6,23,.14));
}
.brand__text{
  font-weight: 1100;
  letter-spacing: -0.02em;
  color: rgba(15,23,42,.92);
  line-height: 1.0;
  font-size: 15px;
}
@media (max-width: 520px){
  .brand__logo{ height: 34px; width: 34px; }
  .brand__text{ font-size: 14px; }
}


/* Brand logo image (v23) */
.brand__logo{
  height: 42px;
  width: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,.55);
  padding: 6px;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 14px 30px rgba(2,6,23,.14);
  object-fit: contain;
}
@media (max-width: 520px){
  .brand__logo{
    height: 38px;
    width: 38px;
    border-radius: 12px;
    padding: 6px;
  }
}


/* Install section (v26) */
.installGrid{ margin-top: 6px; }
.steps{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.steps li{ margin: 6px 0; }
.tipLine{ margin-top: 10px; }
.pillLink{ color: inherit; text-decoration: none; }
.pillLink:hover{ text-decoration: underline; }
@media (max-width: 980px){
  .installGrid{ grid-template-columns: 1fr; }
}
