:root{
  --bg:#03101d;
  --bg-2:#071b2f;
  --panel:#0a1624;
  --panel-2:#0d1d31;
  --text:#f4f7fb;
  --muted:#b8c7d9;
  --line:#17314a;
  --accent:#ff3d1f;
  --accent-2:#ffb100;
  --cyan:#12c8ff;
  --shadow:0 18px 48px rgba(0,0,0,.28);
  --radius:22px;
  --max:1160px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter,Arial,Helvetica,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(18,200,255,.08), transparent 22%),
    linear-gradient(180deg, #020b16 0%, #071a2c 100%);
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin:0 auto;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:30;
  background:rgba(2,11,21,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,61,31,.3);
}

.header-inner{
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

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

.brand-mark{
  width:40px;
  height:40px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg, #0ec7ff 0%, #0a7dd6 100%);
  color:#02111f;
  font-weight:900;
}

.brand-text{
  font-size:18px;
  letter-spacing:.2px;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:26px;
  font-size:15px;
  font-weight:700;
}

.main-nav a{
  color:#e7eef8;
  opacity:.95;
}

.main-nav a:hover{
  color:var(--cyan);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:16px;
  font-weight:800;
  border:1px solid transparent;
  transition:.18s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-primary{
  background:linear-gradient(180deg, #ff4b25 0%, #d71911 100%);
  border-color:var(--accent-2);
  color:##04120a;
  box-shadow:0 12px 24px rgba(255,61,31,.22);
}

.btn-secondary{
  background:transparent;
  border-color:#1f6da8;
  color:#fff;
}

.btn-outline{
  background:transparent;
  border-color:var(--accent-2);
  color:##04120a;
}

.btn-full{
  width:100%;
}

/* HERO */
.hero{
  padding:56px 0 26px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:center;
}

.eyebrow{
  margin:0 0 10px;
  color:var(--accent-2);
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.hero h1{
  margin:0 0 18px;
  font-size:58px;
  line-height:1.02;
  letter-spacing:-.03em;
}

.hero-text{
  margin:0;
  max-width:760px;
  color:var(--muted);
  font-size:22px;
  line-height:1.65;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

.hero-points{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

.hero-points span{
  padding:10px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(10,23,39,.72);
  color:#dce8f5;
  font-size:14px;
  font-weight:700;
}

/* HERO CARD */
.hero-card{
  display:flex;
  justify-content:flex-end;
}

.hero-panel{
  width:100%;
  max-width:480px;
  background:linear-gradient(180deg, rgba(10,22,36,.96) 0%, rgba(8,18,31,.98) 100%);
  border:1px solid rgba(18,200,255,.16);
  border-radius:26px;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.panel-top{
  display:flex;
  gap:8px;
  padding:16px 18px;
  border-bottom:1px solid rgba(255,255,255,.05);
}

.panel-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#214f73;
}

.panel-body{
  padding:22px;
}

.panel-box{
  background:linear-gradient(180deg, rgba(11,29,46,.9) 0%, rgba(8,20,33,.95) 100%);
  border:1px solid var(--line);
  border-radius:18px;
  padding:20px;
}

.panel-label{
  margin:0 0 8px;
  color:var(--accent-2);
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.panel-box h3{
  margin:0;
  font-size:28px;
  line-height:1.2;
}

.panel-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:16px;
}

.stat-card{
  background:#0b1828;
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px;
}

.stat-title{
  display:block;
  color:var(--muted);
  font-size:12px;
  margin-bottom:6px;
}

.stat-card strong{
  font-size:16px;
}

.panel-flow{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-top:20px;
  flex-wrap:wrap;
}

.flow-step{
  padding:10px 14px;
  border-radius:999px;
  background:#0c1a2b;
  border:1px solid var(--line);
  font-weight:700;
}

.flow-arrow{
  color:var(--cyan);
  font-weight:900;
}

/* SECTIONS */
.section{
  padding:36px 0;
}

.section-alt{
  background:linear-gradient(180deg, rgba(7,20,34,.48) 0%, rgba(4,14,25,.18) 100%);
  border-top:1px solid rgba(255,255,255,.03);
  border-bottom:1px solid rgba(255,255,255,.03);
}

.section-head{
  margin-bottom:22px;
}

.section-head h2{
  margin:0 0 10px;
  font-size:38px;
  line-height:1.08;
}

.section-head p{
  margin:0;
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
}

/* BENEFITS */
.benefits-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.benefit-card{
  background:linear-gradient(180deg, rgba(9,21,35,.96) 0%, rgba(7,18,30,.98) 100%);
  border:1px solid var(--line);
  border-radius:22px;
  padding:22px;
  box-shadow:var(--shadow);
}

.benefit-card h3{
  margin:0 0 12px;
  font-size:24px;
}

.benefit-card p{
  margin:0;
  color:var(--muted);
  font-size:17px;
  line-height:1.75;
}

/* STEPS */
.steps-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.step-card{
  background:linear-gradient(180deg, rgba(9,21,35,.96) 0%, rgba(7,18,30,.98) 100%);
  border:1px solid var(--line);
  border-radius:22px;
  padding:24px;
  box-shadow:var(--shadow);
}

.step-number{
  display:inline-flex;
  width:46px;
  height:46px;
  border-radius:14px;
  align-items:center;
  justify-content:center;
  background:rgba(255,61,31,.14);
  color:var(--accent-2);
  font-weight:900;
  margin-bottom:14px;
}

.step-card h3{
  margin:0 0 10px;
  font-size:24px;
}

.step-card p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
  font-size:17px;
}

/* CASES */
.cases-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.case-card{
  background:linear-gradient(180deg, rgba(9,21,35,.96) 0%, rgba(7,18,30,.98) 100%);
  border:1px solid var(--line);
  border-radius:22px;
  padding:24px;
  box-shadow:var(--shadow);
}

.case-card h3{
  margin:0 0 10px;
  font-size:24px;
}

.case-card p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
  font-size:17px;
}

/* PRICING */
.pricing-box{
  display:grid;
  grid-template-columns:1fr 400px;
  gap:24px;
  align-items:center;
}

.pricing-copy h2{
  margin:0 0 12px;
  font-size:40px;
  line-height:1.06;
}

.pricing-copy p{
  margin:0;
  color:var(--muted);
  font-size:18px;
  line-height:1.75;
}

.pricing-card{
  background:linear-gradient(180deg, rgba(10,24,38,.98) 0%, rgba(8,20,33,.98) 100%);
  border:1px solid rgba(255,176,0,.26);
  border-radius:26px;
  padding:28px;
  box-shadow:var(--shadow);
}

.plan-name{
  margin:0 0 10px;
  color:var(--accent-2);
  font-size:13px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.price-line{
  display:flex;
  align-items:flex-end;
  gap:8px;
  margin-bottom:16px;
}

.price{
  font-size:58px;
  font-weight:900;
  line-height:1;
}

.price-note{
  color:var(--muted);
  font-size:18px;
  margin-bottom:8px;
}

.price-list{
  margin:0 0 24px;
  padding-left:20px;
  color:var(--muted);
}

.price-list li{
  margin-bottom:10px;
  line-height:1.6;
}

/* CTA */
.cta-section{
  padding-bottom:58px;
}

.cta-box{
  background:linear-gradient(180deg, rgba(10,24,38,.98) 0%, rgba(8,20,33,.98) 100%);
  border:1px solid rgba(18,200,255,.16);
  border-radius:28px;
  padding:34px;
  text-align:center;
  box-shadow:var(--shadow);
}

.cta-box h2{
  margin:0 0 14px;
  font-size:42px;
  line-height:1.08;
}

.cta-box p{
  margin:0 auto;
  max-width:760px;
  color:var(--muted);
  font-size:18px;
  line-height:1.8;
}

.center{
  justify-content:center;
}

.cta-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:24px;
}

/* FOOTER */
.site-footer{
  border-top:1px solid rgba(255,255,255,.05);
  background:#020c17;
}

.footer-inner{
  min-height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.footer-inner p{
  margin:6px 0 0;
  color:var(--muted);
}

.footer-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.footer-links a{
  color:var(--muted);
}

/* RESPONSIVE */
@media (max-width:1080px){
  .hero h1{font-size:48px}
  .hero-grid,
  .pricing-box{
    grid-template-columns:1fr;
  }

  .hero-card{
    justify-content:flex-start;
  }

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

  .steps-grid,
  .cases-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:760px){
  .header-inner{
    min-height:64px;
    flex-wrap:wrap;
    justify-content:center;
    padding:10px 0 14px;
  }

  .main-nav{
    width:100%;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
    font-size:14px;
  }

  .btn-outline{
    width:100%;
  }

  .hero{
    padding:34px 0 18px;
  }

  .hero h1{
    font-size:38px;
  }

  .hero-text{
    font-size:19px;
  }

  .panel-stats{
    grid-template-columns:1fr;
  }

  .benefits-grid{
    grid-template-columns:1fr;
  }

  .section-head h2,
  .pricing-copy h2,
  .cta-box h2{
    font-size:32px;
  }

  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
    padding:22px 0;
  }
}