:root{
  --bg:#594645;
  --card:#0f1119;
  --text:#f4f6ff;
  --muted:rgba(244,246,255,.72);
  --muted2:rgba(244,246,255,.55);
  --a:#ff6a00;
  --b:#ff2d55;
  --c:#6c5ce7;
  --radius:18px;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --shadow2: 0 10px 30px rgba(0,0,0,.35);
  --max:1180px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1200px 800px at 8% 10%, rgba(255,106,0,.25), transparent 60%),
    radial-gradient(900px 700px at 92% 8%, rgba(108,92,231,.22), transparent 55%),
    radial-gradient(900px 900px at 65% 85%, rgba(255,45,85,.16), transparent 55%),
    var(--bg);
  overflow-x:hidden;
}
a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
.container{max-width:var(--max); margin:0 auto; padding:0 22px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:14px 18px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-weight:700;
  box-shadow: var(--shadow2);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  cursor:pointer;
  user-select:none;
}
.btn:hover{transform: translateY(-1px); background:rgba(255,255,255,.09); border-color:rgba(255,255,255,.18)}
.btn.primary{border:0; background: linear-gradient(135deg, var(--a), var(--b) 50%, var(--c));}
.btn.primary:hover{filter:saturate(1.05) brightness(1.02)}
.btn.small{padding:10px 14px; border-radius:12px; font-weight:700}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(15,17,25,.55);
  color:var(--muted);
  font-weight:650;
  font-size:13px;
}
.dot{
  width:10px; height:10px; border-radius:50%;
  background: linear-gradient(135deg, var(--a), var(--b), var(--c));
  box-shadow: 0 0 0 6px rgba(255,255,255,.04);
}
header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(7,8,12,.82), rgba(7,8,12,.35));
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:14px 0;}
.brand{display:flex; align-items:center; gap:12px}
.brand img{width:190px; height:auto}
.navlinks{display:flex; align-items:center; gap:18px;}
.navlinks a{
  color:var(--muted);
  font-weight:650;
  padding:10px 12px;
  border-radius:12px;
  transition: background .15s ease, color .15s ease;
}
.navlinks a:hover{background:rgba(255,255,255,.06); color:var(--text)}
.hamburger{display:none}
.hero{padding:64px 0 28px;}
.heroGrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:34px;
  align-items:center;
}
.h1{
  font-size: clamp(36px, 4.2vw, 60px);
  line-height:1.03;
  letter-spacing:-0.03em;
  margin:14px 0 14px;
}
.lead{font-size:18px; line-height:1.6; color:var(--muted); margin:0 0 20px;}
.ctaRow{display:flex; gap:12px; flex-wrap:wrap; align-items:center}
.subRow{display:flex; gap:16px; align-items:center; flex-wrap:wrap; color:var(--muted2); font-size:14px; margin-top:14px}
.subRow .pill{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  padding:8px 10px;
  border-radius:999px;
  display:inline-flex; gap:8px; align-items:center;
}
.heroCard{
  border:1px solid rgba(255,255,255,.10);
  border-radius:26px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  padding:18px;
  position:relative;
  overflow:hidden;
}
.heroCard:before{
  content:"";
  position:absolute; inset:-80px -120px auto auto;
  width:280px; height:280px;
  background: radial-gradient(circle at 30% 30%, rgba(255,106,0,.50), rgba(255,45,85,.22), transparent 70%);
  transform: rotate(18deg);
}
.phones{display:grid; grid-template-columns: 1fr 1fr; gap:14px; position:relative; z-index:1;}
.phone{
  border-radius:28px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(15,17,25,.55);
  overflow:hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  transform: translateY(0);
  transition: transform .25s ease;
}

.phone img {
  display: block;
  margin: 0 auto;
}

.phone:nth-child(2){transform: translateY(18px)}
.heroCard:hover .phone:nth-child(1){transform: translateY(-6px)}
.heroCard:hover .phone:nth-child(2){transform: translateY(26px)}
.phoneHeader{display:flex; align-items:center; justify-content:space-between; padding:10px 12px; border-bottom:1px solid rgba(255,255,255,.10);}
.miniDots{display:flex; gap:6px}
.miniDots span{width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,.18)}
.phoneHeader small{color:var(--muted2); font-weight:650}
.phone img{width:80%; height:auto}
.section{padding:48px 0}
.sectionHead{display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom:18px;}
.sectionHead h2{margin:0; font-size: clamp(24px, 2.6vw, 36px); letter-spacing:-0.02em;}
.sectionHead p{margin:0; color:var(--muted); line-height:1.6}
.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;}
.card{
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  background: rgba(15,17,25,.60);
  padding:18px;
  box-shadow: var(--shadow2);
}
.card h3{margin:10px 0 8px; font-size:18px}
.card p{margin:0; color:var(--muted); line-height:1.6}
.icon{
  width:44px; height:44px;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(255,106,0,.28), rgba(255,45,85,.22), rgba(108,92,231,.18));
  border:1px solid rgba(255,255,255,.12);
  display:grid; place-items:center;
}
.icon svg{width:22px; height:22px; fill:rgba(255,255,255,.9)}

.split {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr; /* content slightly wider */
  gap: 60px;
  align-items: center;
}

.kpiRow{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px; margin-top:14px}
.kpi{padding:14px; border-radius:16px; border:1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.03);}
.kpi b{font-size:20px}
.kpi div{color:var(--muted2); font-weight:650; margin-top:6px}
.quote{display:flex; gap:12px; align-items:flex-start; padding:18px; border-radius:18px; border:1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.03);}
.avatar{
  width:44px; height:44px; border-radius:14px;
  background: linear-gradient(135deg, rgba(255,106,0,.26), rgba(255,45,85,.20), rgba(108,92,231,.18));
  border:1px solid rgba(255,255,255,.12);
  display:grid; place-items:center;
  font-weight:900;
}
.quote p{margin:0; color:var(--muted); line-height:1.6}
.quote small{color:var(--muted2); font-weight:650}
.faq{display:grid; grid-template-columns: 1fr 1fr; gap:12px;}
details{border:1px solid rgba(255,255,255,.10); background: rgba(15,17,25,.55); border-radius:16px; padding:14px 14px;}
summary{cursor:pointer; list-style:none; font-weight:600;}
summary::-webkit-details-marker{display:none}
details p{color:var(--muted); margin:10px 0 0; line-height:1.6}
.cta{
  border:1px solid rgba(255,255,255,.10);
  border-radius:26px;
  background:
    radial-gradient(700px 300px at 15% 30%, rgba(255,106,0,.22), transparent 60%),
    radial-gradient(600px 260px at 85% 20%, rgba(108,92,231,.20), transparent 55%),
    rgba(15,17,25,.65);
  padding:22px;
  box-shadow: var(--shadow);
  display:flex; align-items:center; justify-content:space-between; gap:14px;
}
.cta h3{margin:0; font-size:22px}
.cta p{margin:6px 0 0; color:var(--muted); line-height:1.6; max-width:64ch}
.footer{padding:26px 0 40px; color:var(--muted2); border-top:1px solid rgba(255,255,255,.08);}
.footerGrid{display:grid; grid-template-columns: 1.4fr .8fr .8fr; gap:14px; padding-top:22px;}
.footer a{color:var(--muted); font-weight:650}
.footer a:hover{color:var(--text)}
small.mono{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}
@media (max-width: 980px){
  .heroGrid, .split{grid-template-columns: 1fr; }
  .phones{grid-template-columns: 1fr 1fr}
  .grid3{grid-template-columns: 1fr}
  .faq{grid-template-columns: 1fr}
  .footerGrid{grid-template-columns: 1fr; }
  .navlinks{display:none}
  .hamburger{display:inline-flex}
  .brand img{width:170px}
}
@media (max-width: 520px){
  .phones{grid-template-columns: 1fr}
  .phone:nth-child(2){transform:none}
  .heroCard:hover .phone:nth-child(2){transform:none}
}
