:root{
  /* Light, clean palette */
  --bg1:#f6f8ff;
  --bg2:#f3f7fb;
  --surface: rgba(255,255,255,.88);
  --card:#ffffff;
  --text:#0b1220;
  --muted:#56627a;
  --line: rgba(10,20,40,.10);

  /* Brand accents */
  --accent:#2dd4ff;
  --accent2:#8b5cf6;
  --ok:#10b981;

  /* Shadows + radius */
  --shadow: 0 18px 60px rgba(10,20,40,.10);
  --shadow2: 0 10px 30px rgba(10,20,40,.08);
  --radius:18px;
  --radius2:26px;
  --max:1120px;
}

*{ box-sizing:border-box }
html,body{ height:100% }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:
    radial-gradient(900px 520px at 10% 0%, rgba(45,212,255,.22), transparent 55%),
    radial-gradient(900px 520px at 90% 0%, rgba(139,92,246,.18), transparent 55%),
    linear-gradient(180deg, var(--bg1) 0%, var(--bg2) 100%);
  color: var(--text);
  line-height:1.5;
}

a{ color:inherit; text-decoration:none }
img{ max-width:100%; display:block }
b{ font-weight:900 }
.wrap{ max-width:var(--max); margin:0 auto; padding:0 20px }

.muted{ color: var(--muted) }
.small{ font-size:13px }
.tiny{ font-size:12px }
.mtop{ margin-top:10px }

/* Pill */
.pill{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.75);
  border-radius:999px;
  color: var(--muted);
  font-size:13px;
  backdrop-filter: blur(10px);
}
.dot{
  width:8px; height:8px; border-radius:999px;
  background:linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow:0 0 0 4px rgba(45,212,255,.18);
}

/* NAV */
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.75);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:900; letter-spacing:.2px;
}
.logo{
  width:34px; height:34px; border-radius:12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 12px 28px rgba(45,212,255,.18);
}
.nav-links{
  display:flex; gap:18px; align-items:center;
  color: var(--muted);
  font-weight:800;
}
.nav-links a{ padding:10px 10px; border-radius:12px }
.nav-links a:hover{ background: rgba(10,20,40,.04); color: var(--text) }
.nav-cta{ display:flex; gap:10px; align-items:center }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid rgba(10,20,40,.12);
  background: rgba(255,255,255,.90);
  color: var(--text);
  font-weight:900;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
  box-shadow: 0 6px 18px rgba(10,20,40,.06);
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,1);
  border-color: rgba(10,20,40,.16);
  box-shadow: 0 10px 26px rgba(10,20,40,.08);
}
.btn.primary{
  border:none;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#06101f;
  box-shadow: 0 16px 40px rgba(45,212,255,.18);
}
.btn.primary:hover{ transform: translateY(-1px) scale(1.01) }
.btn.full{ width:100% }

.menu-btn{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(10,20,40,.12);
  background: rgba(255,255,255,.90);
  cursor:pointer;
  padding:10px;
}
.menu-btn span{
  display:block;
  height:2px;
  margin:6px 0;
  background: rgba(10,20,40,.72);
  border-radius:2px;
}

/* Mobile panel */
.mobile-panel{
  display:none;
  border-top:1px solid var(--line);
  background: rgba(255,255,255,.92);
}
.mobile-links{ padding:14px 0 18px; display:grid; gap:10px }
.m-link{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(10,20,40,.10);
  background: rgba(10,20,40,.02);
  color: var(--text);
  font-weight:900;
}
.m-link:hover{ background: rgba(10,20,40,.04) }
.mobile-actions{ display:grid; gap:10px; margin-top:8px }

/* HERO */
.hero{ padding:48px 0 22px }
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:24px;
  align-items:stretch;
}
.h1{
  font-size: clamp(34px, 4.5vw, 56px);
  line-height:1.05;
  margin:14px 0 12px;
  letter-spacing:-.8px;
}
.sub{
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 18px);
  max-width: 56ch;
  margin:0 0 22px;
}
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin:14px 0 18px }

.mini{
  display:flex; gap:14px; flex-wrap:wrap;
  color: var(--muted); font-size:14px;
  margin-top:10px;
}
.mini span{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border:1px solid rgba(10,20,40,.10);
  background: rgba(255,255,255,.75);
  border-radius:999px;
}
.check{
  width:18px; height:18px; border-radius:999px;
  background: rgba(16,185,129,.14);
  display:grid; place-items:center;
  border:1px solid rgba(16,185,129,.35);
  color: var(--ok);
  font-weight:900;
  font-size:12px;
  flex:0 0 auto;
}

/* Hero preview card */
.hero-card{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(10,20,40,.10);
  background: rgba(255,255,255,.75);
  box-shadow: var(--shadow);
  position:relative;
  min-height: 420px;
}
.hero-card::after{
  content:"";
  position:absolute; inset:0;
  /* Light overlay to keep readability without darkening too much */
  background:
    radial-gradient(900px 520px at 80% 20%, rgba(45,212,255,.16), transparent 55%),
    radial-gradient(700px 520px at 20% 90%, rgba(139,92,246,.14), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.55));
  pointer-events:none;
}
.hero-photo{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  filter:saturate(1.08) contrast(1.02);
  transform:scale(1.02);
}
.overlay{
  position:absolute; inset:auto 16px 16px 16px;
  display:grid;
  gap:12px;
  z-index:2;
}

/* KPI + mock blocks */
.kpis{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.kpi{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(10,20,40,.10);
  border-radius: 16px;
  padding:12px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow2);
}
.kpi .t{ color: var(--muted); font-size:12px }
.kpi .v{ font-size:18px; font-weight:900; margin-top:2px }
.kpi .v small{ font-size:12px; color: var(--muted); font-weight:900 }

.mock{
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(10,20,40,.10);
  border-radius: 18px;
  padding:14px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow2);
}
.mock-top{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:900;
  background: rgba(45,212,255,.14);
  border:1px solid rgba(45,212,255,.28);
  color: var(--text);
  padding:8px 10px;
  border-radius:999px;
  font-size:13px;
}

.chips{ display:flex; gap:8px; flex-wrap:wrap; color: var(--muted) }
.chip{
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(10,20,40,.10);
  background: rgba(10,20,40,.02);
  font-size:13px;
  font-weight:900;
  cursor:pointer;
}
.chip:hover{ background: rgba(10,20,40,.04) }
.chip.is-active{
  background: rgba(45,212,255,.16);
  border-color: rgba(45,212,255,.32);
  color: var(--text);
}

.slots{ display:grid; gap:10px; margin-top:10px }
.slot{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding:10px 12px;
  border:1px solid rgba(10,20,40,.10);
  background: rgba(255,255,255,.72);
  border-radius:14px;
}
.slot b{ font-size:14px }
.slot small{ color: var(--muted); font-weight:900 }
.slot-cta{
  padding:8px 10px;
  border-radius:12px;
  background: linear-gradient(135deg, rgba(45,212,255,.95), rgba(139,92,246,.95));
  color:#06101f;
  border:none;
  font-weight:900;
  cursor:pointer;
}

/* Sections */
.section{ padding:54px 0 }
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:18px;
  margin-bottom:18px;
}
.section-head h2{
  margin:0;
  font-size: clamp(22px, 2.5vw, 34px);
  letter-spacing:-.3px;
}
.section-head p{ margin:0; max-width:60ch; color: var(--muted) }

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  background: rgba(255,255,255,.85);
  border:1px solid rgba(10,20,40,.10);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow2);
}
.card h3{ margin:10px 0 6px; font-size:16px }
.card p{ margin:0; color: var(--muted) }
.icon{
  width:42px; height:42px;
  border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(45,212,255,.18), rgba(139,92,246,.14));
  border:1px solid rgba(10,20,40,.10);
}

/* Split layout */
.split{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:center;
}
.split.reverse{ grid-template-columns: .95fr 1.05fr }
.split.reverse .split-text{ order:2 }
.split.reverse .split-media{ order:1 }

.steps{
  margin:14px 0 0;
  padding-left:18px;
  color: var(--muted);
  font-weight:800;
}
.steps li{ margin:10px 0 }
.cta-row{ display:flex; gap:12px; flex-wrap:wrap; margin-top:18px }

.list{
  margin:14px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.list li{
  display:flex; gap:10px; align-items:flex-start;
  padding:10px 12px;
  border:1px solid rgba(10,20,40,.10);
  background: rgba(255,255,255,.75);
  border-radius:14px;
  color: var(--text);
  font-weight:900;
}

/* Photos */
.photo-card{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(10,20,40,.10);
  background: rgba(255,255,255,.85);
  box-shadow: var(--shadow);
}
.photo-card img{ width:100%; height:340px; object-fit:cover }
.photo-caption{
  display:flex; justify-content:space-between; gap:12px;
  padding:12px 14px;
  background: rgba(255,255,255,.92);
  border-top:1px solid rgba(10,20,40,.08);
}

/* Pricing */
.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.price-card{
  position:relative;
  background: rgba(255,255,255,.88);
  border:1px solid rgba(10,20,40,.10);
  border-radius: var(--radius2);
  padding:18px;
  box-shadow: var(--shadow2);
}
.price-card h3{ margin:0 0 6px }
.price-card p{ color: var(--muted) }
.price-card ul{
  margin:14px 0 16px;
  padding-left:18px;
  color: var(--muted);
  font-weight:800;
}
.price{
  display:flex; align-items:baseline; gap:8px;
  margin:10px 0 0;
}
.price b{ font-size:42px; letter-spacing:-1px }
.price span{ font-weight:900; color: var(--text) }

.price-card.highlight{
  border-color: rgba(45,212,255,.35);
  box-shadow: 0 22px 70px rgba(45,212,255,.14);
}
.tag{
  position:absolute; top:14px; right:14px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(45,212,255,.16);
  border:1px solid rgba(45,212,255,.35);
  font-weight:900;
  font-size:12px;
}

/* Proof */
.proof{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
  align-items:center;
}
.proof-stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:14px;
}
.stat{
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(10,20,40,.10);
  background: rgba(255,255,255,.75);
  box-shadow: var(--shadow2);
}
.stat b{ font-size:28px }
.soft{
  border-radius: var(--radius2);
  border:1px solid rgba(10,20,40,.10);
  box-shadow: var(--shadow);
  height: 320px;
  width:100%;
  object-fit:cover;
}

/* FAQ */
.faq{ display:grid; gap:10px }
.faq-item{
  border-radius:16px;
  border:1px solid rgba(10,20,40,.10);
  background: rgba(255,255,255,.78);
  padding:12px 14px;
  box-shadow: var(--shadow2);
}
.faq-item summary{
  cursor:pointer;
  font-weight:900;
}
.faq-item p{ margin:10px 0 0; color: var(--muted) }

/* Contact */
.contact-card{
  border-radius: var(--radius2);
  border:1px solid rgba(10,20,40,.10);
  background: rgba(255,255,255,.88);
  padding:18px;
  box-shadow: var(--shadow);
}
.form{ margin-top:14px; display:grid; gap:12px }
.form label{ display:grid; gap:6px; font-weight:900 }
.form input{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(10,20,40,.12);
  background: rgba(255,255,255,.92);
  color: var(--text);
  outline:none;
}
.form input:focus{
  border-color: rgba(45,212,255,.45);
  box-shadow: 0 0 0 4px rgba(45,212,255,.18);
}
.row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}

/* Footer */
.footer{
  padding:26px 0;
  border-top:1px solid var(--line);
  background: rgba(255,255,255,.70);
  backdrop-filter: blur(10px);
}
.footer-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; flex-wrap:wrap;
}
.footer-links{
  display:flex; gap:14px;
  color: var(--muted);
  font-weight:900;
}
.footer-links a{ padding:8px 10px; border-radius:12px }
.footer-links a:hover{ background: rgba(10,20,40,.04); color: var(--text) }

/* Toast */
.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 999;
  min-width: min(520px, calc(100vw - 24px));
  padding: 12px 14px;
  border-radius: 16px;
  border:1px solid rgba(10,20,40,.12);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  display:none;
  font-weight:900;
}
.toast.show{ display:block; animation: pop .16s ease-out }
@keyframes pop{
  from{ transform:translateX(-50%) translateY(8px); opacity:.0 }
  to{ transform:translateX(-50%) translateY(0); opacity:1 }
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-card{ min-height: 460px; }
  .grid-3{ grid-template-columns: 1fr; }
  .split, .proof{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }
}

@media (max-width: 860px){
  .nav-links{ display:none; }
  .menu-btn{ display:inline-block; }
  .mobile-panel.is-open{ display:block; }
}

@media (max-width: 640px){
  .row{ grid-template-columns: 1fr; }
  .photo-card img{ height: 280px; }
  .soft{ height: 260px; }
}
