:root {
  --bg: #101417;
  --bg-soft: #151b20;
  --surface: rgba(255,255,255,0.05);
  --surface-2: rgba(255,255,255,0.08);
  --line: rgba(255,255,255,0.10);
  --text: #f5f7fa;
  --muted: #b9c4ce;
  --orange: #F6851F;
  --teal: #1E9680;
  --green: #2C9C48;
  --red: #CA2127;
  --container: 1180px;
  --radius: 24px;
  --radius-sm: 18px;
  --shadow: 0 24px 70px rgba(0,0,0,.32);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,sans-serif;
  color:var(--text);
  background:#0b0b0b;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(var(--container), calc(100% - 32px));margin:0 auto}
.site-header{
  position:sticky;top:0;z-index:40;
  background:rgba(16,20,23,.8);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}
.nav{min-height:82px;display:flex;align-items:center;justify-content:space-between;gap:18px}
.brand{display:inline-flex;align-items:center;gap:12px;font-weight:800;letter-spacing:.08em;font-size:.95rem}
.brand img{width:48px}
.menu{display:flex;align-items:center;gap:24px}
.menu a,.footer-links a,.subnav a{color:var(--muted);transition:.2s ease}
.menu a:hover,.footer-links a:hover,.subnav a:hover,.menu a.active,.subnav a.active{color:var(--orange)}
.menu-toggle{display:none;width:46px;height:46px;border-radius:14px;border:1px solid var(--line);background:rgba(255,255,255,.04);align-items:center;justify-content:center;flex-direction:column;gap:5px;cursor:pointer}
.menu-toggle span{width:18px;height:2px;background:var(--text);border-radius:8px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  line-height:1;
  border-radius:999px;
  padding:14px 22px;
  font-weight:700;
  transition:transform .2s ease, box-shadow .2s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  color:#000;
  padding:12px 22px;
  background:var(--orange);
  box-shadow:0 16px 36px rgba(246,133,31,.28);
  min-height:48px;
  white-space:nowrap;
}
.btn-secondary{border:1px solid var(--line);background:rgba(255,255,255,.03)}
.nav-cta{white-space:nowrap}
.hero{padding:50px 0 56px}
.hero-grid,.grid-2,.cards-2,.cards-3,.contact-grid,.intro-grid{display:grid;gap:28px}
.hero-grid{grid-template-columns:1.08fr .92fr;align-items:center}
.intro-grid,.grid-2,.contact-grid{grid-template-columns:1fr 1fr}
.cards-1{grid-template-columns:repeat(1,1fr)}
.cards-2{grid-template-columns:repeat(2,1fr)}
.cards-3{grid-template-columns:repeat(3,1fr)}
.eyebrow{margin:0 0 18px;color:var(--orange);text-transform:uppercase;letter-spacing:.17em;font-size:.78rem;font-weight:800}
h1{margin:0 0 18px;font-size:clamp(2.8rem,5vw,5.1rem);line-height:.96;letter-spacing:-.04em}
h2{margin:0 0 14px;font-size:clamp(1.9rem,3vw,3.2rem);line-height:1.04;letter-spacing:-.03em}
h3{margin:0 0 10px;font-size:1.16rem}
p,li{line-height:1.72;color:var(--text)}
p2,li{line-height:1;color:var(--text)}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin:30px 0 24px}
.hero-points,.chips{display:flex;flex-wrap:wrap;gap:10px}
.hero-points span,.chip,.kpi,.subnav a{display:inline-flex;align-items:center;padding:10px 14px;border-radius:999px;border:1px solid var(--line);background:rgba(255,255,255,.04);font-size:.92rem}
.subnav{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}
.glass-card,.card,.step,.cta-box,.stat,.faq-item,.contact-card,.timeline-item,.info-card{
  background:linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.03));
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  border-radius:var(--radius);
}
.hero-banner{
  padding:20px 0;
}

.hero-banner img{
  width:1300px;
  height:250px;
  object-fit:cover;
  display:block;
  border-radius:24px;
}
.hero-panel{padding:34px;position:relative;min-height:420px}
.orb{position:absolute;border-radius:999px;filter:blur(28px);opacity:.45;pointer-events:none}
.orb-orange{width:180px;height:180px;background:rgba(243,154,31,.35);top:-10px;right:30px}
.orb-green{width:170px;height:170px;background:rgba(33,167,144,.3);bottom:10px;left:20px}
.panel-list,.check-list{display:grid;gap:12px;margin-top:20px}
.panel-list div,.check-list li{padding-left:18px;position:relative}
.panel-list div::before,.check-list li::before{content:"";width:8px;height:8px;border-radius:50%;background:var(--orange);position:absolute;left:0;top:.45em}
.card-title{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:18px;
  min-height:64px;
}

.card-title h3{
  margin:0;
  line-height:1.15;
}
.section{padding:40px 0}
.section-light{background:linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,.01))}
.logo-band{padding:0 0 18px}
.logo-band-inner{text-align:center;padding:18px 24px;border-top:1px solid var(--line);border-bottom:1px solid var(--line);color:var(--muted)}
.card,.step,.stat,.timeline-item,.info-card,.contact-card{padding:28px}
.icon{
  width:48px;
  height:48px;
  min-width:48px;
  min-height:48px;
  border-radius:16px;
  background:var(--orange);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
  flex-shrink:0;
}

.icon::after{
  content:"";
  width:22px;
  height:22px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--orange),var(--teal));
}

.icon-green::after{
  background:linear-gradient(135deg,var(--orange),var(--green));
}

.icon-red::after{
  background:linear-gradient(135deg,var(--orange),var(--red));
}
.section-heading{max-width:760px;margin-bottom:28px}
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.step strong{font-size:2rem;color:var(--orange);display:block;margin-bottom:18px}
.kpi-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:24px}
.kpi{justify-content:center;font-weight:700;color:var(--text);padding:16px;border-radius:20px}
.cta-box{padding:34px;display:flex;align-items:center;justify-content:space-between;gap:20px}
.site-footer{padding:22px 0 34px;border-top:1px solid var(--line);background:rgba(0,0,0,.12)}
.footer-top{display:flex;justify-content:space-between;gap:24px;align-items:flex-start}
.footer-brand{margin-bottom:12px}
.footer-links{display:grid;gap:10px}
.muted{color:var(--muted)}
.page-hero{padding:72px 0 26px}
.page-hero h1{font-size:clamp(2.4rem,4vw,4.2rem)}
.page-hero p{max-width:800px}
.timeline{display:grid;gap:18px}
.contact-link{font-size:1.12rem;font-weight:700;color:var(--text);word-break:break-word}
.contact-link:hover{color:var(--orange)}
.contact-label{color:var(--orange);text-transform:uppercase;letter-spacing:.15em;font-size:.75rem;font-weight:700;margin-bottom:6px}
.faq-grid{display:grid;gap:16px}
.faq-item{padding:22px 24px}
.faq-item summary{cursor:pointer;font-weight:700;color:var(--text)}
.faq-item p{margin:14px 0 0}
.legal p, .legal li{max-width:920px}
.reveal{opacity:0;transform:translateY(18px);transition:opacity .6s ease, transform .6s ease}
.reveal.visible{opacity:1;transform:none}
.delay-1{transition-delay:.08s}.delay-2{transition-delay:.16s}
@media (max-width: 980px){
  .hero-grid,.intro-grid,.grid-2,.contact-grid,.steps,.cards-3,.cards-2,.kpi-grid,.footer-top{grid-template-columns:1fr}
  .menu-toggle{display:flex}
  .menu{display:none;position:absolute;left:16px;right:16px;top:82px;padding:18px;border-radius:22px;border:1px solid var(--line);background:#12171b;box-shadow:var(--shadow);flex-direction:column;align-items:flex-start}
  .menu.open{display:flex}
  .nav-cta{display:none}
}
@media (max-width: 640px){
  .hero{padding-top:72px}
  .card,.step,.stat,.timeline-item,.info-card,.contact-card,.hero-panel,.cta-box{padding:22px}
  .cta-box{align-items:flex-start;flex-direction:column}
  .brand span{font-size:.86rem}
}
.legal-line{
  margin:0;
}
.legal-name{
  font-size:1.4rem;
  font-weight:800;
  letter-spacing:.04em;
}
.legal-Info{
  margin-top:0;
  margin-bottom:4px;
}
.legal-address{
  font-size:1.1rem;
  font-weight:600;
  letter-spacing:.04em;
}
.client-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.client-tile{
  display:flex;
  align-items:flex-start;
  gap:20px;
  padding:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.03));
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  border-radius:var(--radius);
}
.client-logo{
  width:88px;
  height:88px;
  min-width:88px;
  border-radius:20px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px;
  overflow:hidden;
}
.client-logo img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}
.client-meta h3{
  margin:0 0 6px;
}
.client-domain{
  margin:0 0 10px;
  color:var(--orange);
  font-size:.9rem;
  font-weight:700;
  letter-spacing:.03em;
  text-transform:uppercase;
}
.client-meta p:last-child{
  margin-bottom:0;
}
@media (max-width: 980px){
  .client-grid{
    grid-template-columns:1fr;
  }
}
@media (max-width: 640px){
  .client-tile{
    flex-direction:column;
  }
  .client-logo{
    width:72px;
    height:72px;
    min-width:72px;
  }
}