/* ===== RESET ===== */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { height: 100%; }

:root{
  --bg:#07070a;
  --card:#0f1117;
  --card2:#0c0f14;
  --text:#f5f7ff;
  --muted:#b9c0d4;

  /* THEME (baru) */
  --primary:#2af1c6;     /* tombol utama */
  --primary2:#14c7a4;    /* variasi */
  --accent:#7c5cff;      /* aksen sekunder */
  --warn:#ffcc66;
  --danger:#ff3b6b;
  --good:#3dff9a;

  --stroke:rgba(255,255,255,.10);
  --stroke2:rgba(255,255,255,.14);

  --shadow:0 18px 50px rgba(0,0,0,.55);
  --radius:18px;
}

body{
  font-family:"Roboto",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:
    radial-gradient(1200px 600px at 10% 0%, rgba(42,241,198,.14), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(124,92,255,.12), transparent 60%),
    radial-gradient(800px 500px at 50% 100%, rgba(255,204,102,.10), transparent 60%),
    var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

/* ===== ORBS ===== */
.bg-orbs{ position:fixed; inset:0; pointer-events:none; z-index:0; }
.orb{
  position:absolute; border-radius:50%;
  filter:blur(40px); opacity:.55;
  animation:floaty 10s ease-in-out infinite;
}
.orb-1{ width:340px; height:340px; left:-120px; top:120px; background:rgba(42,241,198,.35); }
.orb-2{ width:320px; height:320px; right:-120px; top:40px; background:rgba(124,92,255,.30); animation-delay:-3s; }
.orb-3{ width:380px; height:380px; left:30%; bottom:-180px; background:rgba(255,204,102,.24); animation-delay:-6s; }

@keyframes floaty{
  0%,100%{ transform:translateY(0) translateX(0) scale(1); }
  50%{ transform:translateY(-18px) translateX(10px) scale(1.04); }
}

/* ===== WRAP ===== */
.page-wrap{
  position:relative; z-index:1;
  width:100%; max-width:980px;
  margin:0 auto; min-height:100vh;
}

/* ===== TOP HEADER ===== */
.top-header{
  padding:14px 16px;
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-bottom:1px solid var(--stroke);
  backdrop-filter:blur(10px);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
}
.brand{ display:flex; align-items:center; gap:12px; }
.logo-img{ width:46px; height:auto; object-fit:contain; }

.brand-name{ font-weight:900; letter-spacing:.8px; font-size:20px; }
.brand-sub{ font-size:12px; color:var(--muted); margin-top:2px; }

.header-badges{
  display:flex; gap:8px; flex-wrap:wrap; justify-content:flex-end;
}
.pill{
  font-size:11px; padding:6px 10px; border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.18);
}
.pill-green{ box-shadow:0 0 0 1px rgba(61,255,154,.15); }
.pill-primary{ box-shadow:0 0 0 1px rgba(42,241,198,.15); }

/* ===== HERO ===== */
.hero{ padding:18px 16px 10px; }
.hero-inner{ display:grid; grid-template-columns:1fr; gap:14px; }

.badge{
  display:inline-flex; align-items:center; gap:8px;
  font-size:11px; font-weight:800;
  letter-spacing:.06em; text-transform:uppercase;
  padding:7px 12px; border-radius:999px;
  border:1px solid rgba(42,241,198,.35);
  background:linear-gradient(90deg, rgba(42,241,198,.20), rgba(124,92,255,.10));
  box-shadow:0 10px 30px rgba(42,241,198,.10);
}

.hero-title{
  margin-top:10px;
  font-size:28px; line-height:1.18;
  font-weight:900; letter-spacing:.2px;
}
.hero-title span{
  background:linear-gradient(90deg, var(--primary), var(--accent), var(--warn));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.hero-subtitle{
  margin-top:10px;
  font-size:13.5px; line-height:1.75;
  color:var(--muted); max-width:56ch;
}

.hero-cta{
  margin-top:14px;
  display:flex; flex-wrap:wrap; gap:10px;
}

.hero-area-note{
  margin-top:10px; font-size:12px; opacity:.85;
}

/* ===== BUTTONS ===== */
.btn{
  position:relative;
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  text-decoration:none;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .18s ease, filter .18s ease, box-shadow .18s ease, background .18s ease;
  will-change:transform;
}

.btn-primary{
  color:#06110d;
  border-color:rgba(42,241,198,.45);
  background:linear-gradient(90deg, var(--primary2), var(--primary), var(--primary2));
  box-shadow:0 14px 40px rgba(42,241,198,.16), 0 0 0 1px rgba(42,241,198,.10);
  overflow:hidden;
}

.btn-primary:hover{ transform:translateY(-2px); filter:brightness(1.05); }
.btn-primary:active{ transform:translateY(0px) scale(.99); }

.btn-ghost{
  color:var(--text);
  border-color:var(--stroke2);
  background:rgba(0,0,0,.18);
}
.btn-ghost:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.06);
}

.btn-wide{ width:100%; }

.btn-shine{
  position:absolute; inset:-2px;
  background:linear-gradient(120deg, transparent 0%, rgba(255,255,255,.38) 15%, transparent 30%);
  transform:translateX(-120%);
  opacity:.7;
}
.btn-primary:hover .btn-shine{ animation:shine 1.2s ease; }

@keyframes shine{
  0%{ transform:translateX(-120%); }
  100%{ transform:translateX(120%); }
}

.btn-pulse{ animation:softPulse 2.2s ease-in-out infinite; }
@keyframes softPulse{
  0%,100%{ box-shadow:0 14px 40px rgba(42,241,198,.16), 0 0 0 1px rgba(42,241,198,.10); }
  50%{ box-shadow:0 18px 56px rgba(42,241,198,.24), 0 0 0 1px rgba(42,241,198,.18); }
}

/* ===== HERO CARD ===== */
.hero-card{
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.18));
  box-shadow:var(--shadow);
  overflow:hidden;
}
.hero-card-top{ padding:14px 14px 10px; border-bottom:1px solid var(--stroke); }
.hero-card-title{ font-weight:900; font-size:14px; }
.hero-card-sub{ margin-top:2px; font-size:12px; color:var(--muted); }

.hero-media img{
  width:100%; height:auto; max-height:280px;
  object-fit:cover; display:block;
}
.hero-card-bottom{ padding:12px 14px 14px; }

.promo-img{
  margin-top:12px;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.18);
  box-shadow:var(--shadow);
}
.promo-img img{ width:100%; height:auto; display:block; }

/* ===== SECTIONS ===== */
.section{ padding:18px 16px; border-top:1px solid var(--stroke); }
.section-dark{ background:rgba(0,0,0,.10); }
.section-gradient{
  background:
    radial-gradient(800px 420px at 20% 0%, rgba(124,92,255,.10), transparent 60%),
    radial-gradient(900px 480px at 80% 20%, rgba(42,241,198,.10), transparent 65%),
    rgba(0,0,0,.08);
}
.section-cta{
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(42,241,198,.10), transparent 60%),
    rgba(0,0,0,.10);
}
.section-title{
  font-size:16px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.section-title.center{ text-align:center; }
.section-text{
  margin-top:8px;
  font-size:13px;
  line-height:1.75;
  color:var(--muted);
}

/* ===== CARDS ===== */
.card-grid{ margin-top:12px; display:grid; grid-template-columns:1fr; gap:12px; }
.card{
  padding:14px 14px 12px;
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.18));
  box-shadow:var(--shadow);
  transition:transform .18s ease, border-color .18s ease;
}
.card:hover{ transform:translateY(-3px); border-color:rgba(255,255,255,.18); }
.card-ico{
  width:42px; height:42px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(0,0,0,.22);
  border:1px solid var(--stroke);
  margin-bottom:10px;
}
.card h3{ font-size:14px; font-weight:900; }
.card p{ margin-top:6px; font-size:12.5px; color:var(--muted); line-height:1.65; }

/* ===== VIDEO ===== */
.video-wrapper{
  margin-top:12px;
  position:relative;
  width:100%;
  padding-top:56.25%;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--stroke);
  background:#000;
  box-shadow:var(--shadow);
  cursor:pointer;
}
.video-wrapper img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  opacity:.92;
  transform:scale(1.02);
}
.play-btn{
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:74px; height:74px;
  border-radius:50%;
  background:rgba(255,255,255,.86);
  box-shadow:0 18px 50px rgba(0,0,0,.55);
}
.play-btn::after{
  content:"";
  position:absolute; top:50%; left:50%;
  transform:translate(-38%,-50%);
  width:0; height:0;
  border-left:22px solid var(--danger);
  border-top:14px solid transparent;
  border-bottom:14px solid transparent;
}
.video-wrapper:hover .play-btn{ transform:translate(-50%,-50%) scale(1.04); }

/* ===== FORM ===== */
.cta-form{
  padding:14px;
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.18));
  box-shadow:var(--shadow);
}
.form-row{ margin-bottom:10px; }
.form-row label{
  display:block;
  font-size:11px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:rgba(255,255,255,.86);
  margin-bottom:6px;
}
input, select, textarea{
  width:100%;
  padding:11px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.25);
  color:var(--text);
  font-size:13px;
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
textarea{ min-height:88px; resize:vertical; }
input:focus, select:focus, textarea:focus{
  border-color:rgba(42,241,198,.45);
  box-shadow:0 0 0 4px rgba(42,241,198,.12);
  transform:translateY(-1px);
}
.btn-submit{ width:100%; margin-top:6px; }

/* ===== ABOUT ===== */
.about-wrap{ margin-top:12px; display:grid; grid-template-columns:1fr; gap:12px; }
.about-card{
  padding:14px;
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.18));
  box-shadow:var(--shadow);
}
.about-badge{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  border:1px solid rgba(42,241,198,.25);
  background:rgba(42,241,198,.08);
  color:rgba(255,255,255,.92);
  margin-bottom:10px;
}
.about-badge-2{
  border-color:rgba(61,255,154,.25);
  background:rgba(61,255,154,.08);
}
.about-title{ font-size:14px; font-weight:900; margin-bottom:8px; }
.about-text{ font-size:13px; line-height:1.75; color:var(--muted); }

.about-owner{
  margin-top:12px;
  display:flex; gap:10px;
  align-items:center;
  padding:10px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.18);
}
.owner-ico{
  width:38px; height:38px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(0,0,0,.25);
  border:1px solid var(--stroke);
}
.owner-label{
  font-size:11px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.06em;
}
.owner-name{ font-weight:900; margin-top:2px; }

.about-list{
  margin-top:10px;
  padding-left:18px;
  color:var(--muted);
  line-height:1.7;
  font-size:13px;
}
.about-list li{ margin-bottom:6px; }
.about-note{
  margin-top:10px;
  font-size:12.5px;
  line-height:1.7;
  color:rgba(255,255,255,.86);
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(124,92,255,.20);
  background:rgba(124,92,255,.08);
}

/* ===== FAQ ===== */
.faq-wrap{ margin-top:12px; display:flex; flex-direction:column; gap:10px; }
.faq-item{
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.18);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.faq-q{
  width:100%;
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
  padding:12px 12px;
  background:transparent;
  border:none;
  color:var(--text);
  cursor:pointer;
  text-align:left;
  font-weight:900;
  font-size:13px;
  letter-spacing:.2px;
}
.faq-q:hover{ background:rgba(255,255,255,.04); }
.faq-arrow{
  width:34px; height:34px;
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.22);
  transition:transform .2s ease;
}
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
  border-top:1px solid var(--stroke);
}
.faq-a p{
  padding:12px 12px;
  font-size:12.5px;
  line-height:1.75;
  color:var(--muted);
}
.faq-item.is-open .faq-a{ max-height:220px; }
.faq-item.is-open .faq-arrow{ transform:rotate(180deg); }

/* ===== PRICE ===== */
.price-grid{ margin-top:12px; display:grid; grid-template-columns:1fr; gap:12px; }
.price-cardx{
  padding:14px;
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.18));
  box-shadow:var(--shadow);
  transition:transform .18s ease, border-color .18s ease;
}
.price-cardx:hover{ transform:translateY(-3px); border-color:rgba(255,255,255,.18); }
.price-top{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px; margin-bottom:10px;
}
.price-title{ font-weight:900; font-size:14px; }
.price-badge{
  font-size:11px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(124,92,255,.22);
  background:rgba(124,92,255,.10);
}
.price-from{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(42,241,198,.18);
  background:rgba(42,241,198,.06);
  margin-bottom:10px;
}
.price-from-label{
  font-size:11px;
  color:rgba(255,255,255,.85);
  text-transform:uppercase;
  letter-spacing:.06em;
  font-weight:800;
}
.price-from-value{
  margin-top:4px;
  font-size:22px;
  font-weight:900;
  color:var(--primary);
}
.price-desc{ font-size:12.5px; line-height:1.65; color:var(--muted); margin-bottom:12px; }
.price-note-box{
  margin-top:14px;
  padding:14px;
  border-radius:var(--radius);
  border:1px solid rgba(42,241,198,.18);
  background:rgba(42,241,198,.06);
  box-shadow:var(--shadow);
}
.price-note-title{ font-weight:900; margin-bottom:6px; }
.price-note-text{ font-size:12.5px; line-height:1.7; color:rgba(255,255,255,.86); }
.price-extra-list{
  margin-top:10px;
  padding-left:18px;
  color:var(--muted);
  line-height:1.7;
  font-size:12.5px;
}
.price-extra-list li{ margin-bottom:6px; }
.price-cta{
  margin-top:14px;
  padding:14px;
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.18);
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  gap:10px;
}
.price-cta-text{ font-size:12.5px; line-height:1.7; color:rgba(255,255,255,.86); }

/* ===== FOOTER ===== */
.footer-wrap{
  padding:18px 16px 26px;
  border-top:1px solid var(--stroke);
  background:rgba(0,0,0,.16);
}
.footer-inner{ max-width:980px; margin:0 auto; }
.footer-brand{ display:flex; gap:10px; align-items:center; margin-bottom:12px; }
.footer-title{ font-weight:900; }
.footer-sub{ font-size:12px; color:var(--muted); margin-top:2px; }

.footer-cols{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  margin-top:10px;
}
.footer-col{
  padding:12px;
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.18);
}
.footer-head{ font-weight:900; margin-bottom:8px; }
.footer-link{
  font-size:12px;
  color:var(--muted);
  margin-bottom:6px;
  line-height:1.5;
}
.footer-link a{
  color:var(--text);
  text-decoration:none;
  border-bottom:1px dashed rgba(255,255,255,.25);
}
.footer-a{
  display:block;
  font-size:12px;
  color:var(--muted);
  text-decoration:none;
  margin-bottom:6px;
}
.footer-a:hover{ color:var(--text); }

.footer-copy{
  margin-top:14px;
  font-size:11px;
  color:rgba(255,255,255,.55);
  text-align:center;
}

/* ===== FIXED CTA ===== */
.fixed-action-wrap{
  position:fixed;
  bottom:14px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:9999;
}
.btn-fixed{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 16px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  font-size:13px;
  border:1px solid var(--stroke2);
  box-shadow:0 16px 40px rgba(0,0,0,.45);
  transition:transform .18s ease, filter .18s ease;
}
.btn-fixed-wa{
  background:linear-gradient(90deg, var(--primary2), var(--primary), var(--primary2));
  color:#06110d;
  border-color:rgba(42,241,198,.45);
}
.btn-fixed-call{ background:rgba(0,0,0,.28); color:var(--text); }
.btn-fixed:hover{ transform:translateY(-2px); filter:brightness(1.04); }

/* ping */
.ping{
  position:absolute;
  right:-6px; top:-6px;
  width:12px; height:12px;
  border-radius:50%;
  background:var(--good);
  box-shadow:0 0 0 0 rgba(61,255,154,.35);
  animation:ping 1.6s infinite;
}
@keyframes ping{
  0%{ box-shadow:0 0 0 0 rgba(61,255,154,.35); }
  70%{ box-shadow:0 0 0 14px rgba(61,255,154,0); }
  100%{ box-shadow:0 0 0 0 rgba(61,255,154,0); }
}

/* reveal */
.reveal{
  opacity:0;
  transform:translateY(14px);
  transition:opacity .65s ease, transform .65s ease;
}
.reveal.is-visible{ opacity:1; transform:translateY(0); }

/* ===== RESPONSIVE ===== */
@media (min-width: 820px){
  .hero-inner{ grid-template-columns:1.15fr .85fr; align-items:start; }
  .card-grid{ grid-template-columns:repeat(2,1fr); }
  .footer-cols{ grid-template-columns:repeat(3,1fr); }
  .about-wrap{ grid-template-columns:1fr 1fr; }
  .price-grid{ grid-template-columns:repeat(3,1fr); }
}

@media (max-width: 420px){
  .fixed-action-wrap{ width:100%; justify-content:center; }
  .btn-fixed{ padding:12px 14px; font-size:12px; }
  .hero-title{ font-size:26px; }
}
/* ===== RESET ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

:root {
    --bg: #07070a;
    --card: #0f1117;
    --card2: #0c0f14;
    --text: #f5f7ff;
    --muted: #b9c0d4;

    /* THEME (baru) */
    --primary: #2af1c6;
    /* tombol utama */
    --primary2: #14c7a4;
    /* variasi */
    --accent: #7c5cff;
    /* aksen sekunder */
    --warn: #ffcc66;
    --danger: #ff3b6b;
    --good: #3dff9a;

    --stroke: rgba(255, 255, 255, .10);
    --stroke2: rgba(255, 255, 255, .14);

    --shadow: 0 18px 50px rgba(0, 0, 0, .55);
    --radius: 18px;
}

body {
    font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(1200px 600px at 10% 0%, rgba(42, 241, 198, .14), transparent 60%),
        radial-gradient(900px 500px at 90% 10%, rgba(124, 92, 255, .12), transparent 60%),
        radial-gradient(800px 500px at 50% 100%, rgba(255, 204, 102, .10), transparent 60%),
        var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

/* ===== ORBS ===== */
.bg-orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: .55;
    animation: floaty 10s ease-in-out infinite;
}

.orb-1 {
    width: 340px;
    height: 340px;
    left: -120px;
    top: 120px;
    background: rgba(42, 241, 198, .35);
}

.orb-2 {
    width: 320px;
    height: 320px;
    right: -120px;
    top: 40px;
    background: rgba(124, 92, 255, .30);
    animation-delay: -3s;
}

.orb-3 {
    width: 380px;
    height: 380px;
    left: 30%;
    bottom: -180px;
    background: rgba(255, 204, 102, .24);
    animation-delay: -6s;
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
    }

    50% {
        transform: translateY(-18px) translateX(10px) scale(1.04);
    }
}

/* ===== WRAP ===== */
.page-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    min-height: 100vh;
}

/* ===== TOP HEADER ===== */
.top-header {
    padding: 14px 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    border-bottom: 1px solid var(--stroke);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 46px;
    height: auto;
    object-fit: contain;
}

.brand-name {
    font-weight: 900;
    letter-spacing: .8px;
    font-size: 20px;
}

.brand-sub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.header-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.pill {
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--stroke);
    background: rgba(0, 0, 0, .18);
}

.pill-green {
    box-shadow: 0 0 0 1px rgba(61, 255, 154, .15);
}

.pill-primary {
    box-shadow: 0 0 0 1px rgba(42, 241, 198, .15);
}

/* ===== HERO ===== */
.hero {
    padding: 18px 16px 10px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(42, 241, 198, .35);
    background: linear-gradient(90deg, rgba(42, 241, 198, .20), rgba(124, 92, 255, .10));
    box-shadow: 0 10px 30px rgba(42, 241, 198, .10);
}

.hero-title {
    margin-top: 10px;
    font-size: 28px;
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: .2px;
}

.hero-title span {
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--warn));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    margin-top: 10px;
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--muted);
    max-width: 56ch;
}

.hero-cta {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-area-note {
    margin-top: 10px;
    font-size: 12px;
    opacity: .85;
}

/* ===== BUTTONS ===== */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, filter .18s ease, box-shadow .18s ease, background .18s ease;
    will-change: transform;
}

.btn-primary {
    color: #06110d;
    border-color: rgba(42, 241, 198, .45);
    background: linear-gradient(90deg, var(--primary2), var(--primary), var(--primary2));
    box-shadow: 0 14px 40px rgba(42, 241, 198, .16), 0 0 0 1px rgba(42, 241, 198, .10);
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.btn-primary:active {
    transform: translateY(0px) scale(.99);
}

.btn-ghost {
    color: var(--text);
    border-color: var(--stroke2);
    background: rgba(0, 0, 0, .18);
}

.btn-ghost:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .06);
}

.btn-wide {
    width: 100%;
}

.btn-shine {
    position: absolute;
    inset: -2px;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .38) 15%, transparent 30%);
    transform: translateX(-120%);
    opacity: .7;
}

.btn-primary:hover .btn-shine {
    animation: shine 1.2s ease;
}

@keyframes shine {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(120%);
    }
}

.btn-pulse {
    animation: softPulse 2.2s ease-in-out infinite;
}

@keyframes softPulse {

    0%,
    100% {
        box-shadow: 0 14px 40px rgba(42, 241, 198, .16), 0 0 0 1px rgba(42, 241, 198, .10);
    }

    50% {
        box-shadow: 0 18px 56px rgba(42, 241, 198, .24), 0 0 0 1px rgba(42, 241, 198, .18);
    }
}

/* ===== HERO CARD ===== */
.hero-card {
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(0, 0, 0, .18));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-card-top {
    padding: 14px 14px 10px;
    border-bottom: 1px solid var(--stroke);
}

.hero-card-title {
    font-weight: 900;
    font-size: 14px;
}

.hero-card-sub {
    margin-top: 2px;
    font-size: 12px;
    color: var(--muted);
}

.hero-media img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: cover;
    display: block;
}

.hero-card-bottom {
    padding: 12px 14px 14px;
}

.promo-img {
    margin-top: 12px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--stroke);
    background: rgba(0, 0, 0, .18);
    box-shadow: var(--shadow);
}

.promo-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== SECTIONS ===== */
.section {
    padding: 18px 16px;
    border-top: 1px solid var(--stroke);
}

.section-dark {
    background: rgba(0, 0, 0, .10);
}

.section-gradient {
    background:
        radial-gradient(800px 420px at 20% 0%, rgba(124, 92, 255, .10), transparent 60%),
        radial-gradient(900px 480px at 80% 20%, rgba(42, 241, 198, .10), transparent 65%),
        rgba(0, 0, 0, .08);
}

.section-cta {
    background:
        radial-gradient(900px 500px at 50% 0%, rgba(42, 241, 198, .10), transparent 60%),
        rgba(0, 0, 0, .10);
}

.section-title {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.section-title.center {
    text-align: center;
}

.section-text {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.75;
    color: var(--muted);
}

/* ===== CARDS ===== */
.card-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.card {
    padding: 14px 14px 12px;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(0, 0, 0, .18));
    box-shadow: var(--shadow);
    transition: transform .18s ease, border-color .18s ease;
}

.card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, .18);
}

.card-ico {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .22);
    border: 1px solid var(--stroke);
    margin-bottom: 10px;
}

.card h3 {
    font-size: 14px;
    font-weight: 900;
}

.card p {
    margin-top: 6px;
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.65;
}

/* ===== VIDEO ===== */
.video-wrapper {
    margin-top: 12px;
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--stroke);
    background: #000;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.video-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .92;
    transform: scale(1.02);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .55);
}

.play-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-38%, -50%);
    width: 0;
    height: 0;
    border-left: 22px solid var(--danger);
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
}

.video-wrapper:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.04);
}

/* ===== FORM ===== */
.cta-form {
    padding: 14px;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(0, 0, 0, .18));
    box-shadow: var(--shadow);
}

.form-row {
    margin-bottom: 10px;
}

.form-row label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .86);
    margin-bottom: 6px;
}

input,
select,
textarea {
    width: 100%;
    padding: 11px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .25);
    color: var(--text);
    font-size: 13px;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

textarea {
    min-height: 88px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(42, 241, 198, .45);
    box-shadow: 0 0 0 4px rgba(42, 241, 198, .12);
    transform: translateY(-1px);
}

.btn-submit {
    width: 100%;
    margin-top: 6px;
}

/* ===== ABOUT ===== */
.about-wrap {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.about-card {
    padding: 14px;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(0, 0, 0, .18));
    box-shadow: var(--shadow);
}

.about-badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    border: 1px solid rgba(42, 241, 198, .25);
    background: rgba(42, 241, 198, .08);
    color: rgba(255, 255, 255, .92);
    margin-bottom: 10px;
}

.about-badge-2 {
    border-color: rgba(61, 255, 154, .25);
    background: rgba(61, 255, 154, .08);
}

.about-title {
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 8px;
}

.about-text {
    font-size: 13px;
    line-height: 1.75;
    color: var(--muted);
}

.about-owner {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid var(--stroke);
    background: rgba(0, 0, 0, .18);
}

.owner-ico {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .25);
    border: 1px solid var(--stroke);
}

.owner-label {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.owner-name {
    font-weight: 900;
    margin-top: 2px;
}

.about-list {
    margin-top: 10px;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 13px;
}

.about-list li {
    margin-bottom: 6px;
}

.about-note {
    margin-top: 10px;
    font-size: 12.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .86);
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(124, 92, 255, .20);
    background: rgba(124, 92, 255, .08);
}

/* ===== FAQ ===== */
.faq-wrap {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background: rgba(0, 0, 0, .18);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 12px;
    background: transparent;
    border: none;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: .2px;
}

.faq-q:hover {
    background: rgba(255, 255, 255, .04);
}

.faq-arrow {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--stroke);
    background: rgba(0, 0, 0, .22);
    transition: transform .2s ease;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
    border-top: 1px solid var(--stroke);
}

.faq-a p {
    padding: 12px 12px;
    font-size: 12.5px;
    line-height: 1.75;
    color: var(--muted);
}

.faq-item.is-open .faq-a {
    max-height: 220px;
}

.faq-item.is-open .faq-arrow {
    transform: rotate(180deg);
}

/* ===== PRICE ===== */
.price-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.price-cardx {
    padding: 14px;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(0, 0, 0, .18));
    box-shadow: var(--shadow);
    transition: transform .18s ease, border-color .18s ease;
}

.price-cardx:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, .18);
}

.price-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.price-title {
    font-weight: 900;
    font-size: 14px;
}

.price-badge {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(124, 92, 255, .22);
    background: rgba(124, 92, 255, .10);
}

.price-from {
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(42, 241, 198, .18);
    background: rgba(42, 241, 198, .06);
    margin-bottom: 10px;
}

.price-from-label {
    font-size: 11px;
    color: rgba(255, 255, 255, .85);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 800;
}

.price-from-value {
    margin-top: 4px;
    font-size: 22px;
    font-weight: 900;
    color: var(--primary);
}

.price-desc {
    font-size: 12.5px;
    line-height: 1.65;
    color: var(--muted);
    margin-bottom: 12px;
}

.price-note-box {
    margin-top: 14px;
    padding: 14px;
    border-radius: var(--radius);
    border: 1px solid rgba(42, 241, 198, .18);
    background: rgba(42, 241, 198, .06);
    box-shadow: var(--shadow);
}

.price-note-title {
    font-weight: 900;
    margin-bottom: 6px;
}

.price-note-text {
    font-size: 12.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .86);
}

.price-extra-list {
    margin-top: 10px;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 12.5px;
}

.price-extra-list li {
    margin-bottom: 6px;
}

.price-cta {
    margin-top: 14px;
    padding: 14px;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background: rgba(0, 0, 0, .18);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-cta-text {
    font-size: 12.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .86);
}

/* ===== FOOTER ===== */
.footer-wrap {
    padding: 18px 16px 26px;
    border-top: 1px solid var(--stroke);
    background: rgba(0, 0, 0, .16);
}

.footer-inner {
    max-width: 980px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.footer-title {
    font-weight: 900;
}

.footer-sub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.footer-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 10px;
}

.footer-col {
    padding: 12px;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    background: rgba(0, 0, 0, .18);
}

.footer-head {
    font-weight: 900;
    margin-bottom: 8px;
}

.footer-link {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 6px;
    line-height: 1.5;
}

.footer-link a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, .25);
}

.footer-a {
    display: block;
    font-size: 12px;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 6px;
}

.footer-a:hover {
    color: var(--text);
}

.footer-copy {
    margin-top: 14px;
    font-size: 11px;
    color: rgba(255, 255, 255, .55);
    text-align: center;
}

/* ===== FIXED CTA ===== */
.fixed-action-wrap {
    position: fixed;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 9999;
}

.btn-fixed {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    font-size: 13px;
    border: 1px solid var(--stroke2);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
    transition: transform .18s ease, filter .18s ease;
}

.btn-fixed-wa {
    background: linear-gradient(90deg, var(--primary2), var(--primary), var(--primary2));
    color: #06110d;
    border-color: rgba(42, 241, 198, .45);
}

.btn-fixed-call {
    background: rgba(0, 0, 0, .28);
    color: var(--text);
}

.btn-fixed:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
}

/* ping */
.ping {
    position: absolute;
    right: -6px;
    top: -6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--good);
    box-shadow: 0 0 0 0 rgba(61, 255, 154, .35);
    animation: ping 1.6s infinite;
}

@keyframes ping {
    0% {
        box-shadow: 0 0 0 0 rgba(61, 255, 154, .35);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(61, 255, 154, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(61, 255, 154, 0);
    }
}

/* reveal */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 820px) {
    .hero-inner {
        grid-template-columns: 1.15fr .85fr;
        align-items: start;
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-cols {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-wrap {
        grid-template-columns: 1fr 1fr;
    }

    .price-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 420px) {
    .fixed-action-wrap {
        width: 100%;
        justify-content: center;
    }

    .btn-fixed {
        padding: 12px 14px;
        font-size: 12px;
    }

    .hero-title {
        font-size: 26px;
    }
}