:root{
  --bg:#0b1220;
  --bg2:#0e1a33;
  --card:#0f1b35;
  --tint:#f6f7fb;
  --white:#ffffff;
  --text:#0d1220;
  --muted:#667085;
  --line:rgba(15, 23, 42, .10);
  --accent:#ff6a00;
  --accent2:#ffb100;
  --ok:#22c55e;

  --radius:18px;
  --shadow: 0 18px 55px rgba(0,0,0,.12);
  --shadow2: 0 10px 30px rgba(0,0,0,.10);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:#fff;
}

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

/* Topbar */
.topbar{
  background:linear-gradient(90deg, rgba(255,106,0,.10), rgba(255,177,0,.10));
  border-bottom:1px solid rgba(255,106,0,.18);
}
.topbar__inner{display:flex; align-items:center; justify-content:space-between; gap:12px; padding:10px 0}
.topbar__left{display:flex; align-items:center; gap:10px; color:#111827}
.topbar__meta{font-size:13px; color:rgba(17,24,39,.70)}
.topbar__right{display:flex; gap:12px}

.chip{
  display:inline-flex; align-items:center; gap:8px;
  background:#fff; border:1px solid rgba(17,24,39,.08);
  padding:6px 10px; border-radius:999px; font-weight:700; font-size:12px;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
}
.dot{width:8px; height:8px; border-radius:50%}
.dot--green{background:var(--ok)}
.toplink{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:700; font-size:13px; color:#111827;
  text-decoration:none;
}
.hide-sm{display:inline}
@media (max-width:560px){ .hide-sm{display:none} }

/* Nav */
.nav{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(17,24,39,.10);
}
.nav__inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:12px}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none; color:#0b1220}
.brand__mark{
  width:42px; height:42px; border-radius:14px;
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  color:#111827;
  display:grid; place-items:center;
  font-weight:900;
  box-shadow:0 12px 30px rgba(255,106,0,.25);
}
.brand__name{font-weight:900; letter-spacing:.5px}
.brand__sub{font-weight:800; font-size:12px; color:rgba(17,24,39,.65); margin-top:2px}

.menu{display:flex; align-items:center; gap:18px}
.menu a{
  color:rgba(17,24,39,.78);
  text-decoration:none;
  font-weight:800;
  font-size:13px;
  letter-spacing:.3px;
}
.menu a:hover{color:#111827}

.nav__actions{display:flex; align-items:center; gap:10px}
.hide-md{display:inline-flex}
@media (max-width:900px){ .hide-md{display:none} }

.burger{
  width:44px; height:44px; border-radius:14px;
  border:1px solid rgba(17,24,39,.12);
  background:#fff;
  display:none;
  align-items:center; justify-content:center;
  gap:6px;
  padding:10px;
}
.burger span{display:block; height:2px; width:100%; background:#111827; border-radius:2px}

@media (max-width:900px){
  .burger{display:flex}
  .menu{
    position:absolute; left:0; right:0; top:100%;
    background:#fff;
    border-bottom:1px solid rgba(17,24,39,.10);
    padding:14px 16px;
    display:none;
    flex-direction:column; align-items:stretch;
    gap:10px;
  }
  .menu--open{display:flex}
  .btn--menu{width:100%; justify-content:center}
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px;
  border-radius:999px;
  font-weight:900;
  text-decoration:none;
  border:1px solid transparent;
  cursor:pointer;
  transition:.2s ease;
  user-select:none;
}
.btn--primary{
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  color:#111827;
  box-shadow:0 14px 38px rgba(255,106,0,.20);
}
.btn--primary:hover{transform:translateY(-1px)}
.btn--ghost{
  background:#fff;
  border-color:rgba(17,24,39,.14);
  color:#111827;
}
.btn--ghost:hover{border-color:rgba(17,24,39,.26)}
.btn--lg{padding:14px 18px; font-size:15px}
.btn--full{width:100%}

/* Hero */
.hero{position:relative; background:linear-gradient(180deg, #0b1220, #0e1a33)}
.hero__bg{
  position:absolute; inset:0;
  background:
    radial-gradient(800px 400px at 20% 10%, rgba(255,106,0,.28), transparent 60%),
    radial-gradient(700px 350px at 90% 30%, rgba(255,177,0,.18), transparent 60%),
    radial-gradient(900px 500px at 50% 100%, rgba(255,255,255,.08), transparent 55%);
  opacity:.95;
  pointer-events:none;
}
.hero__inner{
  position:relative;
  padding:54px 0 56px;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:26px;
  color:#fff;
}
@media (max-width:980px){
  .hero__inner{grid-template-columns:1fr; padding:44px 0 48px}
}

.badge{
  display:inline-flex; align-items:center; gap:10px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  padding:10px 12px;
  border-radius:999px;
  font-weight:800;
  color:rgba(255,255,255,.92);
  width:fit-content;
}

.hero h1{
  margin:18px 0 12px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height:1.04;
  letter-spacing:-.5px;
}
.accent{
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  margin:0 0 18px;
  color:rgba(255,255,255,.80);
  font-weight:650;
  line-height:1.55;
  max-width:60ch;
}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:8px}
.hero__trust{
  display:flex; gap:14px; flex-wrap:wrap;
  margin-top:22px;
}
.trust{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  padding:12px 14px;
  border-radius:16px;
  min-width:150px;
}
.trust__num{font-size:22px; font-weight:950}
.trust__txt{font-size:12px; color:rgba(255,255,255,.74); margin-top:4px}

/* Panel */
.hero__panel{display:flex; flex-direction:column; gap:12px}
.panel{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius);
  box-shadow: var(--shadow2);
  overflow:hidden;
}
.panel__head{padding:16px 16px 0}
.panel__title{font-weight:950; font-size:16px}
.panel__hint{color:rgba(255,255,255,.72); font-size:12px; margin-top:4px}

.form{padding:14px 16px 16px; display:grid; gap:12px}
.field{display:grid; gap:6px}
.field span{font-size:12px; color:rgba(255,255,255,.80); font-weight:800}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(11,18,32,.55);
  color:#fff;
  outline:none;
}
input::placeholder, textarea::placeholder{color:rgba(255,255,255,.45)}
textarea{resize:vertical}
.form__fine{margin:0; font-size:11px; color:rgba(255,255,255,.65); line-height:1.45}

.panel--mini{padding:14px 16px}
.minirow{display:flex; gap:12px; align-items:flex-start; padding:10px 0}
.minirow + .minirow{border-top:1px solid rgba(255,255,255,.12)}
.minirow__title{font-weight:950}
.minirow__text{color:rgba(255,255,255,.74); font-size:12px; margin-top:3px}

/* Sections */
.section{padding:72px 0}
.section--white{background:#fff}
.section--tint{background:var(--tint)}
.section__head{margin-bottom:22px}
.kicker{
  text-transform:uppercase;
  letter-spacing:2px;
  font-weight:950;
  font-size:12px;
  color:rgba(255,106,0,.90);
}
.section h2{
  margin:10px 0 8px;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing:-.4px;
}
.sub{margin:0; color:var(--muted); font-weight:650; line-height:1.55; max-width:75ch}

/* Cards */
.grid{display:grid; gap:16px}
.cards{grid-template-columns: repeat(3, 1fr)}
@media (max-width:980px){ .cards{grid-template-columns:repeat(2, 1fr)} }
@media (max-width:620px){ .cards{grid-template-columns:1fr} }

.card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  background:#fff;
  box-shadow:0 10px 30px rgba(17,24,39,.06);
  transition:.2s ease;
}
.card:hover{transform:translateY(-2px); box-shadow:0 18px 48px rgba(17,24,39,.10)}
.card__icon{
  width:54px; height:54px; border-radius:18px;
  display:grid; place-items:center;
  background:linear-gradient(135deg, rgba(255,106,0,.18), rgba(255,177,0,.18));
  border:1px solid rgba(255,106,0,.22);
  margin-bottom:12px;
}
.card h3{margin:0 0 6px; font-size:16px}
.card p{margin:0 0 14px; color:var(--muted); line-height:1.6; font-weight:600}
.card__meta{display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap}
.pill{
  display:inline-flex; align-items:center;
  font-size:12px; font-weight:900;
  padding:6px 10px; border-radius:999px;
  background:rgba(17,24,39,.06);
  border:1px solid rgba(17,24,39,.08);
}
.link{
  font-weight:950; color:#111827; text-decoration:none;
}
.link:hover{color:var(--accent)}

/* CTA Band */
.ctaBand{
  margin-top:18px;
  border-radius:24px;
  padding:18px;
  display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
  background:linear-gradient(135deg, rgba(255,106,0,.10), rgba(255,177,0,.10));
  border:1px solid rgba(255,106,0,.18);
}
.ctaBand__text h3{margin:0 0 4px}
.ctaBand__text p{margin:0; color:rgba(17,24,39,.70); font-weight:650}
.ctaBand__actions{display:flex; gap:10px; flex-wrap:wrap}

/* Brands */
.brandcloud{
  display:flex; flex-wrap:wrap; gap:10px;
}
.brandchip{
  padding:10px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  font-weight:950;
  letter-spacing:.8px;
  color:rgba(17,24,39,.70);
}
.note{
  margin-top:16px;
  display:flex; gap:10px; align-items:flex-start;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px;
  color:rgba(17,24,39,.75);
  font-weight:650;
}

/* Testimonials */
.quotes{grid-template-columns:repeat(3,1fr)}
@media (max-width:980px){ .quotes{grid-template-columns:repeat(2,1fr)} }
@media (max-width:620px){ .quotes{grid-template-columns:1fr} }

.quote{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  padding:18px;
  box-shadow:0 10px 30px rgba(17,24,39,.06);
}
.quote blockquote{
  margin:0 0 14px;
  color:rgba(17,24,39,.78);
  font-weight:650;
  line-height:1.6;
}
.quote figcaption{
  display:flex; align-items:center; gap:10px;
}
.avatar{
  width:38px; height:38px; border-radius:14px;
  background:linear-gradient(135deg, rgba(255,106,0,.18), rgba(255,177,0,.18));
  border:1px solid rgba(255,106,0,.22);
  display:grid; place-items:center;
  font-weight:950;
}
.quote__name{font-weight:950}
.quote__meta{font-size:12px; color:rgba(17,24,39,.55); font-weight:700}
.stars{margin-left:auto; color:#f59e0b; letter-spacing:1px}

/* FAQ */
.accordion{display:grid; gap:10px}
.acc{
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  overflow:hidden;
}
.acc summary{
  list-style:none;
  cursor:pointer;
  padding:14px 14px;
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  font-weight:950;
}
.acc summary::-webkit-details-marker{display:none}
.acc__body{
  padding:0 14px 14px;
  color:rgba(17,24,39,.70);
  font-weight:650;
  line-height:1.6;
}

/* Contact */
.contactGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
@media (max-width:900px){ .contactGrid{grid-template-columns:1fr} }

.contactCard, .mapCard{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:0 10px 30px rgba(17,24,39,.06);
  padding:18px;
}
.contactCard h3{margin:0 0 12px}
.contactRow{display:flex; gap:12px; align-items:flex-start; padding:12px 0}
.contactRow + .contactRow{border-top:1px solid var(--line)}
.label{font-size:12px; color:rgba(17,24,39,.55); font-weight:900; text-transform:uppercase; letter-spacing:1px}
.value{font-weight:750; color:rgba(17,24,39,.82); margin-top:4px}
.value a{color:#111827; text-decoration:none; font-weight:950}
.value a:hover{color:var(--accent)}
.contactActions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.contactFine{margin-top:14px; display:flex; gap:10px; color:rgba(17,24,39,.60); font-weight:650; font-size:12px}

.mapTop{display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:12px}
.mapTitle{font-weight:950}
.mapSub{font-size:12px; color:rgba(17,24,39,.55); font-weight:700}
.mapFake{
  height:360px;
  border-radius:18px;
  border:1px dashed rgba(17,24,39,.20);
  background:linear-gradient(135deg, rgba(17,24,39,.04), rgba(255,106,0,.06));
  display:grid; place-items:center;
}
.mapFake__inner{display:flex; align-items:center; gap:12px; color:rgba(17,24,39,.70); font-weight:850}
.mapFake__t{font-weight:950}
.mapFake__s{font-size:12px; color:rgba(17,24,39,.55); font-weight:700}

/* Footer */
.footer{
  background:#0b1220;
  color:rgba(255,255,255,.72);
  padding:28px 0;
}
.footer__inner{
  display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
}
.footer__brand{font-weight:950; color:#fff}
.footer__meta{font-size:12px; margin-top:4px}
.footer__links{display:flex; gap:12px; flex-wrap:wrap}
.footer__links a{color:rgba(255,255,255,.72); text-decoration:none; font-weight:850; font-size:13px}
.footer__links a:hover{color:#fff}
.footer__copy{font-size:12px}

/* Icons (pure CSS + inline SVG placeholder sizing) */
.icon{width:18px; height:18px; display:inline-block}
.i-arrow::before{content:"➜"}
.i-plus::before{content:"+"}
.i-info::before{content:"i"}
.i-lock::before{content:"🔒"}
.i-send::before{content:"✉"}
.i-map::before{content:"🗺"}
.i-clock::before{content:"⏱"}
.i-pin::before{content:"📍"}
.i-mail::before{content:"✉"}
.i-phone::before{content:"📞"}
.i-wa::before{content:"💬"}
.i-shield::before{content:"🛡"}