:root{
  --bg: #0b0f12;
  --panel: #0f151a;
  --panel2:#0d1216;
  --text:#eaf2f7;
  --muted:#b7c7d4;
  --line: rgba(255,255,255,.10);

  --accent:#ff8a3d;
  --accent2:#ffcc66;

  --radius: 18px;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --max: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 20% -10%, rgba(255,138,61,.18), transparent 60%),
              radial-gradient(900px 600px at 90% 10%, rgba(255,204,102,.14), transparent 55%),
              var(--bg);
  color:var(--text);
}

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

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

.nowrap{ white-space:nowrap; }

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:10;
  background: rgba(11,15,18,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-mark{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background: linear-gradient(135deg, rgba(255,138,61,.35), rgba(255,204,102,.22));
  border:1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
}
.brand-text strong{
  display:block;
  font-size:16px;
  letter-spacing:.2px;
}
.brand-text small{
  display:block;
  font-size:12px;
  color:var(--muted);
  margin-top:2px;
}

.top-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  font-size:13px;
}
.chip.outline{
  background: transparent;
}
.chip:hover{
  text-decoration:none;
  border-color: rgba(255,255,255,.22);
}

/* Hero */
.hero{
  position:relative;
  padding:54px 0 10px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:stretch;
}
.kicker{
  color: var(--accent2);
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
  margin:0 0 10px;
}
.hero h1{
  margin:0 0 14px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height:1.08;
}
.lead{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
  max-width: 62ch;
}
.hero-cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 16px 0 16px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-weight:700;
  font-size:14px;
  letter-spacing:.2px;
}
.btn:hover{ text-decoration:none; border-color: rgba(255,255,255,.25); }
.btn.primary{
  border-color: rgba(255,138,61,.55);
  background: linear-gradient(135deg, rgba(255,138,61,.92), rgba(255,204,102,.72));
  color:#1b1209;
  box-shadow: 0 18px 40px rgba(255,138,61,.15);
}
.btn.ghost{
  background: transparent;
}
.btn.wide{ width:100%; }

.trust{
  list-style:none;
  padding:0;
  margin: 18px 0 0;
  display:grid;
  gap:10px;
  color:var(--muted);
  font-size:14px;
}
.trust li{
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.dot{
  width:10px; height:10px;
  border-radius:50%;
  margin-top:5px;
  background: radial-gradient(circle at 30% 30%, var(--accent2), var(--accent));
  box-shadow: 0 0 0 3px rgba(255,138,61,.12);
}

.hero-card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(700px 340px at 20% 10%, rgba(255,138,61,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-card-inner{
  padding:18px;
}
.badge{
  display:inline-flex;
  padding:8px 10px;
  border-radius:999px;
  font-size:12px;
  background: rgba(0,0,0,.28);
  border:1px solid rgba(255,255,255,.12);
  color: var(--accent2);
}
.hero-card h2{
  margin:12px 0 8px;
  font-size:20px;
}
.hero-card p{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.55;
}
.mini-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  margin-top:12px;
}
.mini{
  padding:12px;
  border-radius:14px;
  background: rgba(0,0,0,.20);
  border:1px solid rgba(255,255,255,.10);
}
.mini strong{ display:block; font-size:14px; }
.mini span{ display:block; color:var(--muted); font-size:12px; margin-top:3px; }

.hero-wave{
  height:36px;
  margin-top:26px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.06));
  border-top:1px solid rgba(255,255,255,.08);
}

/* Sections */
.section{ padding:54px 0; }
.section.alt{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section-head h2{
  margin:0 0 8px;
  font-size:28px;
}
.section-head p{
  margin:0 0 22px;
  color:var(--muted);
  line-height:1.6;
  max-width: 70ch;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  box-shadow: 0 14px 38px rgba(0,0,0,.35);
  padding:18px;
}
.card-icon{
  width:44px; height:44px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  font-size:20px;
}
.card h3{ margin:12px 0 8px; font-size:18px; }
.card p{ margin:0 0 12px; color:var(--muted); line-height:1.6; }
.card-list{
  margin:0;
  padding-left: 18px;
  color: var(--muted);
  display:grid;
  gap:8px;
  font-size:14px;
}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:start;
}
.lead2{
  color:var(--muted);
  line-height:1.7;
  margin: 10px 0 16px;
}
.tel{
  color: var(--accent2);
  font-weight:800;
}
.note{
  border-radius: var(--radius);
  border:1px dashed rgba(255,255,255,.18);
  background: rgba(0,0,0,.18);
  padding:14px;
  color: var(--muted);
  line-height:1.6;
}
.contact-card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  box-shadow: var(--shadow);
  padding:18px;
}
.contact-card h3{ margin:0 0 6px; }
.contact-card p{ margin:0 0 12px; color:var(--muted); line-height:1.6; }
.contact-card hr{
  border:0;
  border-top:1px solid rgba(255,255,255,.10);
  margin:14px 0;
}
.small{ font-size:12.5px; color: rgba(234,242,247,.72); }

/* End CTA */
.end-cta{
  padding:54px 0 74px;
}
.end-inner{
  border-radius: calc(var(--radius) + 6px);
  border:1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(700px 300px at 10% 40%, rgba(255,138,61,.22), transparent 60%),
    radial-gradient(700px 300px at 90% 10%, rgba(255,204,102,.16), transparent 55%),
    rgba(0,0,0,.18);
  box-shadow: var(--shadow);
  padding:22px;
  text-align:center;
}
.end-inner h2{ margin:0 0 8px; font-size:26px; }
.end-inner p{ margin:0 0 18px; color:var(--muted); line-height:1.6; }
.end-buttons{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
}

/* Footer */
.site-footer{
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.20);
  padding:22px 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.footer-inner p{ margin:0; color: rgba(234,242,247,.78); }

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 520px){
  .container{ width: calc(100% - 28px); }
  .btn{ width:100%; }
  .top-actions{ width:100%; justify-content:flex-start; }
}
