:root{
  --bg0:#070A12;
  --bg1:#0B1221;
  --text:#EAF0FF;
  --muted:rgba(234,240,255,.74);
  --muted2:rgba(234,240,255,.60);
  --accent:#2EE6A6;
  --accent2:#66A3FF;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --stroke:rgba(255,255,255,.12);
  --radius:18px;
  --radius2:26px;
  --container:1120px;
  --ring:0 0 0 4px rgba(46,230,166,.18);
  --shadow:0 18px 60px rgba(0,0,0,.45);
  --shadow2:0 10px 36px rgba(0,0,0,.35);
  --font:ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{ box-sizing:border-box; }
html:focus-within{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font);
  background:
    radial-gradient(900px 500px at 12% 0%, rgba(102,163,255,.25), transparent 55%),
    radial-gradient(900px 500px at 88% 6%, rgba(46,230,166,.18), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  color:var(--text);
}

a{ color:inherit; text-decoration:none; }

.container{ width:min(var(--container), calc(100% - 40px)); margin:0 auto; }

.skip-link{ position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden; }
.skip-link:focus{
  left:16px; top:16px; width:auto; height:auto;
  padding:10px 12px;
  background:rgba(0,0,0,.7);
  border:1px solid var(--stroke);
  border-radius:12px;
  z-index:9999;
}

.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:blur(10px);
  background:rgba(7,10,18,.55);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand-mark{
  width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center;
  background:linear-gradient(180deg, rgba(102,163,255,.18), rgba(46,230,166,.10));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 14px 40px rgba(0,0,0,.25);
  overflow:hidden;
}
.brand-logo{
  width:28px;
  height:28px;
  object-fit:contain;
  display:block;
  filter:drop-shadow(0 8px 18px rgba(0,0,0,.35));
}
.brand-mark.small{ width:36px; height:36px; border-radius:12px; }
.brand-mark.small .brand-logo{ width:22px; height:22px; }
.brand-name{ font-weight:820; letter-spacing:.2px; }

.brand-sub{ color:var(--muted2); font-size:12px; margin-top:-2px; }

.nav{ position:relative; }
.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
}
.nav-toggle span{ display:block; width:18px; height:2px; background:var(--text); margin:4px auto; border-radius:2px; }

.nav-menu{ display:flex; gap:18px; align-items:center; margin:0; padding:0; list-style:none; }
.nav-menu a{
  color:rgba(234,240,255,.86);
  font-weight:800;
  font-size:15px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  transition:transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.nav-menu a:hover{
  color:var(--text);
  background:rgba(255,255,255,.07);
  border-color:rgba(46,230,166,.35);
  box-shadow:0 0 0 4px rgba(46,230,166,.12);
  transform:translateY(-1px);
}
.nav-menu a:focus{ outline:none; box-shadow:var(--ring); }
.nav-cta a{
  background:linear-gradient(135deg, rgba(46,230,166,.22), rgba(102,163,255,.22));
  border-color:rgba(46,230,166,.35) !important;
  color:var(--text) !important;
}
.nav-cta a:hover{
  background:linear-gradient(135deg, rgba(46,230,166,.30), rgba(102,163,255,.26));
}


.hero{ position:relative; overflow:hidden; padding:34px 0 10px; }
.hero-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:42px; align-items:start; }
.hero-copy{ padding:18px 0; }
.pill{
  display:inline-flex; gap:10px; align-items:center;
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  border-radius:999px;
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}
.accent{ color:var(--accent); }
.lead{ color:var(--muted); font-size:16px; line-height:1.65; margin:14px 0 18px; font-weight:650; }

h1{
  font-size:clamp(30px, 3.4vw, 46px);
  line-height:1.08;
  margin:12px 0 10px;
  letter-spacing:-0.5px;
}

.hero-bullets{ margin:18px 0; padding-left:18px; color:var(--muted); }
.hero-bullets li{ margin:10px 0; font-weight:620; }
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:16px; }

.hero-compact-benefits{

  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:10px 0 14px;
}

.hero-chip{
  flex:0 0 auto;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:800;
  font-size:13px;
  letter-spacing:.1px;
}

.hero-chip:hover{
  border-color:rgba(46,230,166,.30);
  background:rgba(46,230,166,.10);
  color:var(--text);
}

/* Pricing annual revenue note */
.price-ann-one{
  margin-top:8px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:750;
  font-size:13px;
  line-height:1.4;
}

.hero-note{
  margin-top:14px;
  color:var(--muted2);
  font-size:13px;
  line-height:1.5;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  padding:12px 14px;
  border-radius:16px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  font-weight:780;
  font-size:14px;
  border:1px solid rgba(255,255,255,.12);
  transition:transform .15s ease, background .2s ease, border-color .2s ease;
}
.btn:focus{ outline:none; box-shadow:var(--ring); }
.btn:active{ transform:translateY(1px); }

.btn-primary{ background:linear-gradient(135deg, rgba(46,230,166,.95), rgba(102,163,255,.75)); border-color:rgba(255,255,255,.14); color:#04120B; }
.btn-primary:hover{ background:linear-gradient(135deg, rgba(46,230,166,1), rgba(102,163,255,.9)); }

.btn-ghost{ background:rgba(255,255,255,.05); color:var(--text); }
.btn-ghost:hover{ background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.18); }

.hero-card{
  position:relative;
  border-radius:var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(800px 360px at 0% 0%, rgba(102,163,255,.18), transparent 55%),
    radial-gradient(700px 320px at 100% 0%, rgba(46,230,166,.15), transparent 50%),
    rgba(255,255,255,.04);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.hero-card::after{
  content:"";
  position:absolute; inset:-2px;
  background:linear-gradient(120deg, rgba(46,230,166,.25), transparent 40%, rgba(102,163,255,.22));
  opacity:.35;
  pointer-events:none;
}
.hero-card-top{ position:relative; z-index:1; padding:18px 18px 0; }
.hero-card-title{ font-weight:900; letter-spacing:.2px; }
.hero-card-sub{ color:var(--muted2); margin-top:6px; font-size:13px; font-weight:650; }

.stat-grid{ position:relative; z-index:1; padding:14px 26px 4px; display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.stat{ border-radius:16px; border:1px solid rgba(255,255,255,.10); background:rgba(255,255,255,.04); padding:14px; }
.stat-num{ font-size:18px; font-weight:980; color:var(--accent2); }
.stat-label{ color:var(--muted2); margin-top:6px; font-size:13px; line-height:1.35; font-weight:650; }

.hero-card-bottom{ position:relative; z-index:1; padding:10px 26px 18px; }
.checklist{ display:grid; gap:10px; margin-top:8px; }
.check{ display:flex; align-items:flex-start; gap:10px; color:var(--muted); font-weight:650; }
.check-icon{
  width:22px; height:22px;
  display:grid; place-items:center;
  background:rgba(46,230,166,.16);
  border:1px solid rgba(46,230,166,.25);
  border-radius:8px;
  color:var(--accent);
  font-weight:900;
}
.trust{ margin-top:14px; display:flex; gap:10px; flex-wrap:wrap; }
.trust-badge{ padding:10px 12px; border-radius:14px; border:1px solid rgba(255,255,255,.10); background:rgba(255,255,255,.04); color:var(--muted); font-weight:720; font-size:13px; }

.hero-shape{
  position:absolute; inset:auto -120px -140px auto;
  width:420px; height:420px;
  background:
    radial-gradient(circle at 30% 30%, rgba(46,230,166,.35), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(102,163,255,.28), transparent 55%);
  opacity:.7;
  pointer-events:none;
}

.section{ padding:56px 0; }
.section-alt{
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(102,163,255,.10), transparent 55%),
    rgba(255,255,255,.00);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section-header{ margin-bottom:22px; }
.section-header h2{ margin:0; font-size:clamp(24px, 2.3vw, 32px); letter-spacing:-0.3px; }
.section-header p{ margin:10px 0 0; color:var(--muted); line-height:1.6; font-weight:630; }

.feature-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:14px; }
.feature{ border-radius:var(--radius); border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.04); padding:18px; box-shadow:var(--shadow2); }
.feature .icon{ width:44px; height:44px; display:grid; place-items:center; border-radius:16px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.10); color:var(--accent2); margin-bottom:12px; font-size:20px; }
.feature h3{ margin:0 0 10px; font-size:16px; letter-spacing:-0.1px; }
.feature p{ margin:0; color:var(--muted); line-height:1.6; font-weight:620; }

/* Categorized Features */
.feature-categories{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:18px 0 6px;
}
.cat-btn{
  border-radius:999px;
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:850;
  font-size:13px;
  cursor:pointer;
  transition:.2s ease;
}
.cat-btn:hover{ border-color:rgba(46,230,166,.30); background:rgba(46,230,166,.10); color:var(--text); }
.cat-btn.active{ border-color:rgba(46,230,166,.45); background:rgba(46,230,166,.14); color:var(--text); box-shadow:0 0 0 4px rgba(46,230,166,.08); }

.cat-panel{ margin-top:14px; }

/* Premium Features grid (24 cards in 4×6) */
.premium-wrap{
  margin-top:26px;
  border-radius:var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(46,230,166,.18), transparent 55%),
    radial-gradient(900px 420px at 100% 10%, rgba(102,163,255,.14), transparent 55%),
    rgba(255,255,255,.03);
  padding:20px 18px;
  box-shadow:var(--shadow2);
}
.premium-head{ display:flex; gap:14px; align-items:flex-start; justify-content:space-between; }

.premium-grid{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:12px;
}
.p-card{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  padding:14px;
  min-height:92px;
  display:grid;
  align-content:start;
  gap:8px;
}
.p-ico{ font-size:22px; line-height:1; }
.p-title{ font-weight:900; letter-spacing:-.1px; font-size:13px; line-height:1.25; color:var(--text); }
.p-badge{
  width:max-content;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(46,230,166,.25);
  background:rgba(46,230,166,.12);
  color:var(--accent);
  font-weight:950;
  font-size:12px;
}

@media (max-width: 980px){
  .premium-grid{ grid-template-columns:repeat(2, 1fr); }
  .premium-head{ flex-direction:column; }
}
@media (max-width: 640px){
  .premium-grid{ grid-template-columns:1fr; }
}


.section-kicker{ color:var(--accent); font-weight:820; letter-spacing:.2px; font-size:13px; text-transform:uppercase; }

.tracking-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; align-items:start; }
.tracking-copy h2{ margin:10px 0 10px; font-size:clamp(26px, 2.7vw, 36px); }
.tracking-copy p{ margin:0 0 16px; color:var(--muted); font-weight:640; line-height:1.65; }

.timeline{ display:grid; gap:12px; margin-top:18px; }
.step{ display:grid; grid-template-columns:44px 1fr; gap:12px; align-items:flex-start; padding:14px; border-radius:var(--radius); border:1px solid rgba(255,255,255,.10); background:rgba(255,255,255,.04); }
.step-dot{ width:44px; height:44px; display:grid; place-items:center; border-radius:16px; background:rgba(46,230,166,.12); border:1px solid rgba(46,230,166,.25); color:var(--accent); font-weight:980; }
.step-body h3{ margin:0 0 6px; font-size:15px; }
.step-body p{ margin:0; color:var(--muted); line-height:1.6; font-weight:620; }

.callout{ margin-top:16px; padding:14px; border-radius:var(--radius); border:1px solid rgba(255,255,255,.10); background:rgba(255,255,255,.04); color:var(--muted); line-height:1.6; font-weight:650; }

.tracking-panel{ border-radius:var(--radius2); border:1px solid rgba(255,255,255,.12); background:
  radial-gradient(800px 360px at 0% 0%, rgba(46,230,166,.16), transparent 55%),
  radial-gradient(700px 320px at 100% 0%, rgba(102,163,255,.14), transparent 50%),
  rgba(255,255,255,.04);
  box-shadow:var(--shadow2); padding:18px 26px;
}
.panel-title{ font-weight:900; }
.panel-sub{ color:var(--muted2); margin-top:6px; font-size:13px; font-weight:650; }

.alert-list{ list-style:none; padding:0; margin:14px 0 16px; display:grid; gap:12px; }
.alert-list li{ display:grid; grid-template-columns:88px 1fr; gap:12px; align-items:start; padding:12px; border-radius:16px; border:1px solid rgba(255,255,255,.10); background:rgba(255,255,255,.04); }

.badge{ display:inline-flex; align-items:center; justify-content:center; padding:8px 10px; border-radius:14px; border:1px solid rgba(255,255,255,.12); font-weight:980; letter-spacing:.2px; }
.badge-ok{ color:var(--accent); background:rgba(46,230,166,.12); border-color:rgba(46,230,166,.22); }
.badge-warn{ color:#FFD166; background:rgba(255,209,102,.12); border-color:rgba(255,209,102,.22); }
.badge-sec{ color:#8BE9FF; background:rgba(139,233,255,.12); border-color:rgba(139,233,255,.22); }
.badge-info{ color:#B3C7FF; background:rgba(179,199,255,.12); border-color:rgba(179,199,255,.22); }

.alert-title{ font-weight:850; }
.alert-desc{ color:var(--muted); margin-top:6px; line-height:1.6; font-weight:620; }

.panel-actions{ display:flex; gap:12px; flex-wrap:wrap; }

.pricing-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:14px; }
.price-card{ border-radius:var(--radius2); border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.04); padding:18px; box-shadow:var(--shadow2); display:flex; flex-direction:column; gap:14px; }
.price-card.featured{ background:
  radial-gradient(900px 380px at 20% 0%, rgba(46,230,166,.20), transparent 55%),
  radial-gradient(900px 380px at 90% 10%, rgba(102,163,255,.18), transparent 55%),
  rgba(255,255,255,.04);
  border-color:rgba(46,230,166,.22);
}

.price-top .price-tag,
.price-top .price-tag-alt{
  display:inline-flex; padding:8px 10px; border-radius:999px;
  font-weight:980; font-size:12px; letter-spacing:.2px;
  margin-bottom:10px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--muted);
}
.price-card.featured .price-tag{ color:var(--accent); background:rgba(46,230,166,.12); border-color:rgba(46,230,166,.22); }
.price-tag-alt{ color:#B3C7FF; background:rgba(179,199,255,.10); border-color:rgba(179,199,255,.20); }

.price-top h3{ margin:0; font-size:18px; letter-spacing:-0.2px; }
.price-sub{ color:var(--muted2); margin:8px 0 0; font-weight:650; line-height:1.45; font-size:13px; }

.price-amount{ display:flex; align-items:baseline; gap:10px; }
.currency{ color:var(--muted2); font-weight:850; }
.amount{ font-size:38px; font-weight:980; letter-spacing:-1px; color:var(--text); }

.price-list{ list-style:none; padding:0; margin:0; display:grid; gap:10px; }
.price-list li{ color:var(--muted); font-weight:650; line-height:1.5; padding-left:0; }

.pricing-compare{ margin-top:18px; }
.compare-box{ border-radius:var(--radius2); border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.03); padding:18px; box-shadow:var(--shadow2); }
.compare-title{ font-weight:900; }
.compare-grid{ margin-top:12px; display:grid; grid-template-columns:repeat(3, 1fr); gap:12px; }
.compare-item{ border-radius:16px; border:1px solid rgba(255,255,255,.10); background:rgba(255,255,255,.04); padding:14px; }
.compare-name{ font-weight:900; }
.compare-desc{ margin-top:6px; color:var(--muted); line-height:1.6; font-weight:620; font-size:13px; }

.faq{ display:grid; gap:12px; }
.faq-item{ border-radius:var(--radius2); border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.04); padding:0 16px; box-shadow:var(--shadow2); }
.faq-item summary{ cursor:pointer; padding:16px 0; list-style:none; display:flex; align-items:center; justify-content:space-between; font-weight:850; }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item p{ margin:0 0 16px; color:var(--muted); line-height:1.7; font-weight:620; padding-right:6px; }
.chev{ color:var(--accent2); font-weight:980; }

.contact-grid{ display:grid; grid-template-columns:1fr 1.1fr; gap:18px; align-items:start; }
.contact-highlights{ display:grid; grid-template-columns:repeat(3, 1fr); gap:12px; margin-top:16px; }
.highlight{ border-radius:16px; border:1px solid rgba(255,255,255,.10); background:rgba(255,255,255,.04); padding:14px; }
.highlight-title{ font-weight:900; }
.highlight-desc{ margin-top:6px; color:var(--muted); font-weight:620; line-height:1.6; font-size:13px; }
.contact-cta{ display:flex; gap:12px; flex-wrap:wrap; margin-top:16px; }

.form-card{ border-radius:var(--radius2); border:1px solid rgba(255,255,255,.12); background:
  radial-gradient(800px 360px at 0% 0%, rgba(102,163,255,.10), transparent 55%),
  rgba(255,255,255,.04);
  box-shadow:var(--shadow2);
  padding:18px;
}

form{ display:grid; gap:14px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
label{ display:grid; gap:8px; color:var(--muted2); font-weight:650; font-size:13px; }
input, select, textarea{
  width:100%;
  border-radius:14px;
  padding:12px 12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{ box-shadow:var(--ring); border-color:rgba(46,230,166,.35); }

.form-actions{ display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.form-note{ color:var(--muted2); font-size:13px; }

.direct-links{ margin-top:16px; padding-top:16px; border-top:1px solid rgba(255,255,255,.10); }
.direct-title{ font-weight:900; margin-bottom:10px; }
.direct-buttons{ display:flex; gap:12px; flex-wrap:wrap; }
.direct-hint{ margin-top:10px; color:var(--muted); font-weight:620; line-height:1.6; font-size:13px; }

.form-ghost{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  padding:14px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}
.ghost-title{ font-weight:900; color:var(--text); }
.ghost-list{ margin-top:8px; color:var(--muted); font-weight:650; line-height:1.7; font-size:13px; }

.site-footer{ padding:28px 0; border-top:1px solid rgba(255,255,255,.06); background:rgba(7,10,18,.35); }
.footer-inner{ display:grid; grid-template-columns:1.2fr .8fr 1fr; gap:18px; align-items:start; }
.footer-title{ font-weight:900; }
.footer-sub{ margin-top:6px; color:var(--muted); font-weight:620; line-height:1.6; font-size:13px; }
.footer-links{ display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-end; }
.footer-links a{ color:var(--muted); font-weight:700; padding:8px 10px; border-radius:12px; border:1px solid rgba(255,255,255,.10); background:rgba(255,255,255,.03); }
.footer-links a:hover{ color:var(--text); background:rgba(255,255,255,.06); }
.footer-copy{ color:var(--muted); font-weight:620; line-height:1.6; font-size:13px; }

/* Responsive */
@media (max-width: 980px){
  .hero-grid, .tracking-grid, .contact-grid{ grid-template-columns:1fr; }
  .feature-grid{ grid-template-columns:repeat(2, 1fr); }
  .pricing-grid{ grid-template-columns:1fr; }
  .compare-grid{ grid-template-columns:1fr; }
  .footer-inner{ grid-template-columns:1fr; }
  .footer-links{ justify-content:flex-start; }

  .features-two-col{ grid-template-columns:1fr; }
  .features-right{ justify-content:flex-start; }
}
@media (max-width: 640px){
  .nav-toggle{ display:block; }
  .nav-menu{ display:none; position:absolute; right:0; top:60px; flex-direction:column; background:rgba(7,10,18,.75); border:1px solid rgba(255,255,255,.12); padding:14px; border-radius:16px; width:220px; }
  .nav-menu.open{ display:flex; }
  .feature-grid{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  .contact-highlights{ grid-template-columns:1fr; }
}

/* HERO VIDEO */
.hero-video{
  padding: 0 0 46px;
}
.video-wrap{
  position: relative;
  height: 420px;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow2);
  background: rgba(255,255,255,.04);
}
.features-media{
  margin: 10px 0 0;
}

.features-two-col{
  display:grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  align-items:start;
}

.features-left{ min-width:0; }

.features-right{ min-width:0; display:flex; justify-content:flex-end; }

.features-media{
  width:100%;
  display:flex;
  justify-content:flex-end;
}

.features-media-card{
  width: 100%;
  max-width: 520px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
}

.features-media-img{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain; /* prevents cropping */
}

/* ensure the image has a stable box (so contain works predictably) */
.features-media-card{
  height:320px;
  max-width:640px;
  margin:0; /* no extra centering tweaks */
}



@media (max-width: 980px){
  .features-media-img{ max-height: 260px; }
}

@media (max-width: 640px){
  .features-media-img{ max-height: 200px; }
}

.hero-video-el{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display:block;
  filter: saturate(1.05) contrast(1.02);
}
.video-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(7,10,18,.85) 0%, rgba(7,10,18,.35) 50%, rgba(7,10,18,.75) 100%),
    radial-gradient(700px 300px at 20% 10%, rgba(46,230,166,.20), transparent 60%);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding: 26px;
  gap: 10px;
}
.video-overlay-title{
  font-weight: 950;
  font-size: 22px;
  letter-spacing: -.2px;
}
.video-overlay-sub{
  color: rgba(234,240,255,.78);
  font-weight: 650;
  line-height: 1.5;
  font-size: 14px;
}
.video-overlay .btn-video{
  margin-top: 6px;
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
}
.video-overlay .btn-video:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(46,230,166,.35);
}


@media (max-width: 640px){
  .hero-video{ padding-bottom: 30px; }
  .video-wrap{ height: 320px; }
  .video-overlay{ padding: 18px; }
  .video-overlay-title{ font-size: 18px; }
}

/* Floating WhatsApp Button */
.wa-fab{

  position:fixed;
  right:18px;
  bottom:22px;
  width:56px;
  height:56px;
  border-radius:999px;
  background:#25D366;
  display:grid;
  place-items:center;
  box-shadow:0 14px 34px rgba(0,0,0,.35);
  z-index:1000;
  transform:translateZ(0);
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.wa-fab:hover{
  transform:scale(1.06);
  box-shadow:0 18px 44px rgba(0,0,0,.45), 0 0 0 6px rgba(37,211,102,.18);
}
.wa-fab:focus-visible{ outline:none; box-shadow:0 0 0 4px rgba(37,211,102,.35), 0 18px 44px rgba(0,0,0,.45); }

.wa-icon{ display:grid; place-items:center; }

.wa-tooltip{
  position:absolute;
  right:72px;
  bottom:10px;
  background:rgba(0,0,0,.75);
  border:1px solid rgba(255,255,255,.14);
  color:rgba(255,255,255,.95);
  padding:10px 12px;
  border-radius:14px;
  font-size:13px;
  font-weight:760;
  line-height:1.25;
  white-space:nowrap;
  opacity:0;
  pointer-events:none;
  transform:translateY(6px);
  transition:opacity .15s ease, transform .15s ease;
}
.wa-tooltip::after{
  content:"";
  position:absolute;
  right:-7px;
  bottom:18px;
  width:12px;
  height:12px;
  background:rgba(0,0,0,.75);
  border-right:1px solid rgba(255,255,255,.14);
  border-bottom:1px solid rgba(255,255,255,.14);
  transform:rotate(-45deg);
}

.wa-fab:hover .wa-tooltip{ opacity:1; transform:translateY(0); }

/* Bubble */
.wa-bubble{
  position:fixed;
  right:94px;
  bottom:84px;
  padding:10px 12px;
  border-radius:18px;
  background:rgba(7,10,18,.72);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(234,240,255,.95);
  font-weight:820;
  font-size:13px;
  box-shadow:0 14px 34px rgba(0,0,0,.30);
  z-index:999;
  opacity:0;
  pointer-events:none;
  transform:translateY(6px) scale(.98);
}
.wa-bubble.show{
  opacity:1;
  transform:translateY(0) scale(1);
}

@media (max-width: 640px){
  .wa-fab{ right:14px; bottom:16px; width:52px; height:52px; }
  .wa-tooltip{ right:66px; bottom:8px; font-size:12px; }
  .wa-bubble{ right:86px; bottom:78px; }
}

@media (prefers-reduced-motion: reduce){
  .wa-fab, .wa-fab:hover{ transition:none; }
}



