:root{
  --bg:#050816;
  --surface:#0B122B;
  --text:#EAF0FF;
  --muted:#9FB1D1;
  --brand:#3B82F6;
  --brand2:#F97316;
  --accent:#22C55E;
  --line:rgba(255,255,255,.10);
  --white:#FFFFFF;
  --shadow:0 16px 40px rgba(2, 8, 30, 0.35);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family: "Segoe UI", "Avenir Next", "Helvetica Neue", sans-serif;
  background: radial-gradient(1200px 700px at 20% -20%, rgba(59,130,246,.15), transparent 60%), var(--bg);
  color:var(--text);
  line-height:1.6;
}
img{max-width:100%;display:block;border-radius:18px}
a{text-decoration:none;color:inherit}
ul{list-style:none}

.container{width:min(1160px,92vw);margin-inline:auto}
.section{padding:4.5rem 0}
.section-title{font-size:clamp(1.7rem,3vw,2.4rem);line-height:1.2;margin-bottom:.9rem}
.section-sub{color:var(--muted);max-width:70ch;margin-bottom:2rem}
.badge{display:inline-flex;padding:.35rem .7rem;border:1px solid var(--line);border-radius:999px;color:var(--muted);font-size:.83rem}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.45rem;
  height:44px;
  padding:10px 14px;
  font-size:14px;
  border-radius:12px;
  border:1px solid transparent;
  font-weight:600;
  transition:.25s ease;
}
.btn-primary{background:linear-gradient(135deg,var(--brand),#1d4ed8);color:var(--white)}
.btn-primary:hover{transform:translateY(-1px);box-shadow:var(--shadow)}
.btn-outline{border-color:var(--line);color:var(--text);background:rgba(255,255,255,.03)}
.btn-outline:hover{border-color:rgba(255,255,255,.3);background:rgba(255,255,255,.06)}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter:blur(12px);
  background:rgba(5,8,22,.74);
  border-bottom:1px solid var(--line);
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:72px;
  gap:1rem;
}
.logo{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  font-weight:700;
  letter-spacing:.2px;
  white-space:nowrap;
}
.logo svg{width:20px;height:20px;flex:0 0 auto}
.desktop-nav{display:flex;align-items:center;gap:1.35rem}
.desktop-nav a{color:var(--muted);font-weight:500;font-size:.95rem}
.desktop-nav a.active,.desktop-nav a:hover{color:var(--white)}
.header-cta{display:inline-flex}
.menu-toggle{
  display:none;
  border:1px solid var(--line);
  background:transparent;
  color:var(--text);
  width:42px;
  height:42px;
  border-radius:11px;
  align-items:center;
  justify-content:center;
}
.menu-toggle svg{width:20px;height:20px}

.mobile-menu{
  max-height:0;
  overflow:hidden;
  transition:max-height .28s ease;
  border-top:1px solid transparent;
}
.mobile-menu.open{
  max-height:320px;
  border-top:1px solid var(--line);
}
.mobile-menu-inner{display:grid;gap:.55rem;padding:1rem 0 1.2rem}
.mobile-menu a{padding:.65rem .25rem;color:var(--muted);font-weight:500}
.mobile-menu a.active,.mobile-menu a:hover{color:var(--white)}
.mobile-menu .btn{margin-top:.4rem;width:fit-content}

.hero{
  width:100%;
  padding-top:4rem;
  padding-bottom:6rem;
  position:relative;
  overflow:hidden;
}
.hero::before,
.hero::after{
  content:"";
  position:absolute;
  inset:auto auto 8% -8%;
  width:320px;
  height:320px;
  background:radial-gradient(circle, rgba(249,115,22,.18), transparent 65%);
  pointer-events:none;
}
.hero::after{
  inset:8% -8% auto auto;
  background:radial-gradient(circle, rgba(59,130,246,.22), transparent 62%);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:2rem;
  align-items:center;
}
.hero-copy h1{font-size:clamp(2rem,4.8vw,3.4rem);line-height:1.1;margin:.9rem 0 1rem}
.hero-copy p{font-size:1.05rem;color:var(--muted);max-width:60ch}
.hero-actions{display:flex;gap:.8rem;flex-wrap:wrap;margin:1.7rem 0 1.2rem}
.trust-chips{display:flex;gap:.6rem;flex-wrap:wrap}
.trust-chip{padding:.45rem .75rem;border:1px solid var(--line);border-radius:999px;color:var(--muted);font-size:.82rem;background:rgba(255,255,255,.02)}
.hero-media{
  background:linear-gradient(140deg, rgba(59,130,246,.25), rgba(249,115,22,.15));
  border:1px solid var(--line);
  border-radius:26px;
  padding:1rem;
  box-shadow:var(--shadow);
}
.hero-media img{width:100%;height:420px;object-fit:cover}
.stats-strip{
  position:relative;
  margin-top:-2.8rem;
  z-index:2;
}
.stats-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:.9rem;
}
.stat-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:16px;
  padding:1rem;
}
.stat-card strong{font-size:1.4rem;display:block}
.stat-card span{font-size:.9rem;color:var(--muted)}

.cards-3,.cards-4,.cards-6,.tiles-6{display:grid;gap:1rem}
.cards-6{grid-template-columns:repeat(3,1fr)}
.tiles-6{grid-template-columns:repeat(3,1fr)}
.cards-4{grid-template-columns:repeat(4,1fr)}
.cards-3{grid-template-columns:repeat(3,1fr)}
.card, .tile{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:18px;
  padding:1.2rem;
}
.card h3,.tile h3{font-size:1.1rem;margin:.35rem 0 .55rem}
.card p,.tile p{color:var(--muted);font-size:.95rem}
.icon{
  width:42px;height:42px;border-radius:12px;display:grid;place-items:center;
  background:rgba(59,130,246,.12);color:var(--brand)
}
.tile{position:relative;overflow:hidden}
.tile::after{content:"";position:absolute;inset:auto -20% -40% auto;width:130px;height:130px;background:radial-gradient(circle,rgba(59,130,246,.17),transparent 70%)}

.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.step{
  padding:1.1rem;
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(255,255,255,.02);
}
.step small{color:var(--brand2);font-weight:600;display:block;margin-bottom:.4rem}

.testimonial{background:rgba(255,255,255,.03)}
.faq-list{display:grid;gap:.8rem}
.faq-item{border:1px solid var(--line);border-radius:14px;background:var(--surface)}
.faq-q{
  width:100%;
  text-align:left;
  background:transparent;
  color:var(--text);
  border:0;
  padding:1rem 1.1rem;
  font-size:1rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.faq-a{padding:0 1.1rem 1rem;color:var(--muted);display:none}
.faq-item.open .faq-a{display:block}

.cta-band{
  border:1px solid var(--line);
  border-radius:20px;
  background:linear-gradient(120deg, rgba(59,130,246,.2), rgba(249,115,22,.12));
  padding:2rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
}

.inner-hero{padding:3.5rem 0 2.3rem}
.inner-hero h1{font-size:clamp(1.9rem,4vw,3rem);line-height:1.15;margin:.8rem 0}
.alt-sections{display:grid;gap:1rem}
.service-row{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:20px;
  padding:1.1rem;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1.1rem;
  align-items:center;
}
.service-row:nth-child(even) .service-copy{order:2}
.service-row:nth-child(even) .service-media{order:1}
.service-media img{height:260px;object-fit:cover}
.service-copy h3{font-size:1.35rem;margin-bottom:.55rem}
.service-copy p{color:var(--muted);margin-bottom:.7rem}
.service-copy ul{display:grid;gap:.35rem}
.service-copy li{color:var(--muted);font-size:.93rem}

.solution-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem}
.solution-card{border:1px solid var(--line);border-radius:18px;background:var(--surface);padding:1rem}
.solution-card img{height:220px;object-fit:cover;margin-bottom:.8rem}
.solution-card p{color:var(--muted)}
.finder{
  margin-top:2rem;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.03);
  padding:1.1rem;
}
.finder-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:.8rem}
.finder label{display:block;font-size:.88rem;color:var(--muted);margin-bottom:.3rem}
.finder select{
  width:100%;
  background:var(--surface);
  border:1px solid var(--line);
  color:var(--text);
  border-radius:12px;
  padding:.65rem .7rem;
}
.finder-result{margin-top:.9rem;color:var(--muted)}

.about-layout{display:grid;grid-template-columns:1.05fr .95fr;gap:1rem;align-items:center}
.about-layout p{color:var(--muted)}
.timeline{border-left:2px solid var(--line);padding-left:1rem;display:grid;gap:1rem}
.timeline .point{position:relative}
.timeline .point::before{content:"";position:absolute;left:-1.42rem;top:.35rem;width:12px;height:12px;border-radius:50%;background:var(--brand)}

.contact-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:1rem}
.form-card,.info-card{background:var(--surface);border:1px solid var(--line);border-radius:18px;padding:1.1rem}
.form-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:.75rem}
.field{display:grid;gap:.35rem}
.field.full{grid-column:1/-1}
.field label{font-size:.88rem;color:var(--muted)}
.field input,.field select,.field textarea{
  width:100%;
  background:rgba(255,255,255,.02);
  color:var(--text);
  border:1px solid var(--line);
  border-radius:12px;
  padding:.7rem .75rem;
}
.field textarea{min-height:130px;resize:vertical}
.error{font-size:.8rem;color:#fca5a5;min-height:1em}
.next-steps{display:grid;gap:.7rem;margin-top:1rem}
.next-step{border:1px solid var(--line);border-radius:12px;padding:.8rem}
.next-step p{color:var(--muted);font-size:.92rem}

.toast{
  position:fixed;
  right:1rem;
  bottom:1rem;
  padding:.8rem 1rem;
  border-radius:12px;
  border:1px solid rgba(34,197,94,.4);
  background:rgba(34,197,94,.12);
  color:#ccffd9;
  display:none;
  z-index:1200;
}
.toast.show{display:block}

.scroll-top{
  position:fixed;
  right:1rem;
  bottom:1rem;
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid var(--line);
  background:var(--surface);
  color:var(--white);
  display:none;
}
.scroll-top.show{display:grid;place-items:center}

.site-footer{border-top:1px solid var(--line);margin-top:4rem}
.footer-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;padding:2.2rem 0}
.footer-col h4{font-size:1rem;margin-bottom:.6rem}
.footer-col a,.footer-col p{display:block;color:var(--muted);font-size:.92rem;padding:.18rem 0}
.socials{display:flex;gap:.55rem;margin-top:.5rem}
.socials a{
  width:34px;height:34px;border:1px solid var(--line);border-radius:10px;
  display:grid;place-items:center;color:var(--muted)
}
.socials a:hover{color:var(--white);border-color:rgba(255,255,255,.3)}
.legal{border-top:1px solid var(--line);padding:1rem 0;color:var(--muted);font-size:.86rem;text-align:center}

:focus-visible{outline:2px solid var(--brand2);outline-offset:2px}

@media (max-width:980px){
  .desktop-nav,.header-cta{display:none}
  .menu-toggle{display:inline-flex}
  .hero-grid,.about-layout,.contact-grid{grid-template-columns:1fr}
  .stats-grid,.cards-6,.tiles-6,.cards-4,.cards-3,.steps,.finder-grid,.solution-grid,.footer-grid,.service-row,.form-grid{grid-template-columns:1fr}
  .service-row:nth-child(even) .service-copy,.service-row:nth-child(even) .service-media{order:unset}
}

@media (max-width:480px){
  .btn{height:40px;padding:8px 12px;font-size:13px;border-radius:12px}
  .nav-wrap{min-height:66px}
  .logo{font-size:.95rem;max-width:74vw;overflow:hidden;text-overflow:ellipsis}
  .hero{padding-top:3rem}
}

@media (prefers-reduced-motion: reduce){
  *{animation:none!important;transition:none!important;scroll-behavior:auto!important}
}
