:root{
  --primary:#0075ba;
  --primary-dark:#005e95;
  --secondary:#ff6a00;
  --black:#1f2024;
  --white:#ffffff;
  --muted:#667085;
  --line:#e6eef5;
  --soft:#f4f8fb;
  --green:#16a34a;
  --radius:22px;
  --shadow:0 20px 60px rgba(13,42,74,.12);
  --font:"Helvetica World","Helvetica Now Display","Helvetica Neue",Arial,sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  color:var(--black);
  background:var(--white);
  overflow-x:hidden;
  line-height:1.6;
}
body.menu-open{overflow:hidden}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{
  width:min(1160px, calc(100% - 40px));
  margin:0 auto;
}
.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;height:1px;overflow:hidden;
}
.skip-link:focus{
  left:16px;top:16px;width:auto;height:auto;
  z-index:9999;
  background:var(--black);color:var(--white);
  padding:12px 16px;border-radius:10px;
}
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(230,238,245,.82);
}
.header-inner{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand{display:inline-flex;align-items:center;gap:12px}
.brand img{width:96px;height:auto}
.nav-wrap{
  display:flex;
  align-items:center;
  gap:22px;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:20px;
  color:#344054;
  font-size:15px;
  font-weight:700;
}
.nav-links a:hover{color:var(--primary)}
.lang-switch{
  display:flex;
  align-items:center;
  gap:4px;
  background:var(--soft);
  border:1px solid var(--line);
  border-radius:999px;
  padding:4px;
}
.lang-switch a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  min-height:34px;
  border-radius:999px;
  font-size:13px;
  color:#475467;
  font-weight:800;
}
.lang-switch a.active{
  background:var(--primary);
  color:var(--white);
  box-shadow:0 8px 20px rgba(0,117,186,.18);
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:48px;
  padding:13px 20px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:850;
  letter-spacing:-.01em;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  cursor:pointer;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  background:var(--secondary);
  color:var(--white);
  box-shadow:0 14px 30px rgba(255,106,0,.25);
}
.btn-primary:hover{background:#e75f00}
.btn-secondary{
  color:var(--primary);
  background:#fff;
  border-color:#b9d8ed;
}
.btn-secondary:hover{
  border-color:var(--primary);
  box-shadow:0 12px 25px rgba(0,117,186,.12);
}
.btn-light{
  background:var(--white);
  color:var(--primary);
}
.btn-outline-light{
  border-color:rgba(255,255,255,.45);
  color:var(--white);
  background:rgba(255,255,255,.08);
}
.mobile-toggle{
  display:none;
  border:0;
  background:var(--soft);
  width:46px;height:46px;
  border-radius:14px;
  cursor:pointer;
  position:relative;
}
.mobile-toggle span{
  display:block;
  width:22px;height:2px;
  background:var(--primary);
  margin:5px auto;
  transition:.2s ease;
}
body.menu-open .mobile-toggle span:nth-child(1){transform:translateY(7px) rotate(45deg)}
body.menu-open .mobile-toggle span:nth-child(2){opacity:0}
body.menu-open .mobile-toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.hero{
  position:relative;
  background:
    radial-gradient(circle at 88% 12%, rgba(255,106,0,.13), transparent 26%),
    radial-gradient(circle at 6% 16%, rgba(0,117,186,.16), transparent 30%),
    linear-gradient(180deg, #f8fbfd 0%, #ffffff 100%);
  padding:74px 0 36px;
  overflow:hidden;
}
.hero:before{
  content:"";
  position:absolute;
  inset:auto -120px -160px auto;
  width:460px;height:460px;
  border-radius:999px;
  background:rgba(0,117,186,.08);
  z-index:0;
}
.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:54px;
  align-items:center;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(0,117,186,.09);
  color:var(--primary);
  font-size:13px;
  font-weight:850;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.eyebrow:before{
  content:"";
  width:8px;height:8px;border-radius:50%;
  background:var(--secondary);
}
h1,h2,h3,p{margin-top:0}
h1{
  margin:20px 0 18px;
  font-size:clamp(42px, 5vw, 72px);
  line-height:.98;
  letter-spacing:-.06em;
}
.lead{
  font-size:clamp(18px, 2vw, 22px);
  color:#475467;
  max-width:660px;
  margin-bottom:28px;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
}
.hero-visual{
  position:relative;
}
.hero-card{
  overflow:hidden;
  border-radius:32px;
  background:var(--white);
  box-shadow:var(--shadow);
  border:1px solid rgba(230,238,245,.85);
}
.hero-card img{
  width:100%;
  aspect-ratio:1.1/1;
  object-fit:cover;
}
.hero-badge{
  position:absolute;
  left:-22px;
  bottom:34px;
  width:min(310px, 74%);
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:18px;
  box-shadow:0 22px 60px rgba(0,0,0,.14);
}
.hero-badge strong{
  display:block;
  color:var(--primary);
  font-size:28px;
  line-height:1;
  margin-bottom:6px;
}
.hero-badge span{font-size:14px;color:#475467;font-weight:700}
.stats-strip{
  position:relative;
  z-index:2;
  margin-top:54px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.stat-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:22px 20px;
  box-shadow:0 12px 36px rgba(13,42,74,.06);
}
.stat-card strong{
  display:block;
  font-size:30px;
  line-height:1;
  color:var(--primary);
  letter-spacing:-.04em;
  margin-bottom:8px;
}
.stat-card span{font-size:14px;color:#475467;font-weight:700}
.section{
  padding:86px 0;
}
.section-soft{
  background:var(--soft);
}
.section-dark{
  color:var(--white);
  background:
    radial-gradient(circle at 14% 10%, rgba(255,106,0,.25), transparent 26%),
    linear-gradient(135deg, #063753 0%, #005e95 100%);
}
.section-head{
  max-width:760px;
  margin-bottom:38px;
}
.section-head.center{
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}
.kicker{
  color:var(--secondary);
  font-weight:900;
  text-transform:uppercase;
  font-size:13px;
  letter-spacing:.08em;
  margin-bottom:10px;
}
h2{
  font-size:clamp(30px, 3.5vw, 48px);
  line-height:1.08;
  letter-spacing:-.045em;
  margin-bottom:14px;
}
.section-head p{
  color:#667085;
  font-size:18px;
  margin:0;
}
.section-dark .section-head p{color:rgba(255,255,255,.78)}
.context-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:32px;
  align-items:stretch;
}
.context-panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:34px;
  box-shadow:var(--shadow);
}
.context-panel p:last-child{margin-bottom:0}
.check-list{
  display:grid;
  gap:16px;
}
.check-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
}
.icon-dot{
  flex:0 0 28px;
  width:28px;height:28px;
  border-radius:50%;
  background:rgba(22,163,74,.12);
  color:var(--green);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
}
.card-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:0 12px 34px rgba(13,42,74,.06);
}
.card-icon{
  width:48px;height:48px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,117,186,.1);
  color:var(--primary);
  font-size:24px;
  margin-bottom:18px;
}
.card h3{
  font-size:20px;
  line-height:1.18;
  margin-bottom:10px;
  letter-spacing:-.025em;
}
.card p{color:#667085;margin-bottom:0}
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:center;
}
.image-card{
  overflow:hidden;
  border-radius:30px;
  box-shadow:var(--shadow);
  border:1px solid rgba(230,238,245,.85);
  background:#fff;
}
.image-card img{width:100%;height:100%;object-fit:cover}
.models{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.model-card{
  padding:26px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.1);
}
.model-card span{
  display:inline-flex;
  width:36px;height:36px;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:var(--secondary);
  font-weight:900;
  margin-bottom:16px;
}
.model-card h3{margin-bottom:10px}
.model-card p{color:rgba(255,255,255,.78);margin-bottom:0}
.process{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  counter-reset:process;
}
.process-step{
  position:relative;
  padding:26px;
  border-radius:var(--radius);
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 12px 34px rgba(13,42,74,.06);
}
.process-step:before{
  counter-increment:process;
  content:counter(process);
  display:flex;
  align-items:center;
  justify-content:center;
  width:42px;height:42px;
  border-radius:14px;
  background:var(--primary);
  color:#fff;
  font-weight:900;
  margin-bottom:18px;
}
.process-step h3{font-size:19px;margin-bottom:8px}
.process-step p{color:#667085;margin:0}
.case-box{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:30px;
  align-items:center;
  background:#fff;
  border:1px solid var(--line);
  border-radius:32px;
  padding:18px;
  box-shadow:var(--shadow);
}
.case-content{padding:18px 20px}
.case-meta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--primary);
  background:rgba(0,117,186,.09);
  border-radius:999px;
  padding:8px 12px;
  font-weight:900;
  font-size:13px;
  margin-bottom:16px;
}
.case-list{
  list-style:none;
  padding:0;margin:18px 0 0;
  display:grid;gap:10px;
}
.case-list li{
  display:flex;
  gap:10px;
  color:#475467;
}
.case-list li:before{
  content:"✓";
  color:var(--green);
  font-weight:900;
}
.numbers-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.number-card{
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.16);
  border-radius:var(--radius);
  padding:24px;
}
.number-card strong{
  display:block;
  font-size:38px;
  letter-spacing:-.045em;
  line-height:1;
  color:#fff;
  margin-bottom:8px;
}
.number-card span{color:rgba(255,255,255,.78);font-weight:700}
.faq{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.faq-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  overflow:hidden;
}
.faq-question{
  width:100%;
  border:0;
  background:#fff;
  padding:20px 22px;
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:center;
  font-weight:900;
  font-size:16px;
  text-align:left;
  cursor:pointer;
  color:var(--black);
}
.faq-question span:last-child{
  color:var(--primary);
  font-size:22px;
  line-height:1;
  transition:.2s ease;
}
.faq-item.open .faq-question span:last-child{transform:rotate(45deg)}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}
.faq-answer p{
  margin:0;
  padding:0 22px 20px;
  color:#667085;
}
.final-cta{
  background:
    radial-gradient(circle at 85% 15%, rgba(255,106,0,.18), transparent 24%),
    linear-gradient(135deg, var(--primary) 0%, #063753 100%);
  color:#fff;
  border-radius:36px;
  padding:54px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:28px;
  align-items:center;
  overflow:hidden;
  position:relative;
}
.final-cta:after{
  content:"";
  position:absolute;
  width:260px;height:260px;
  right:-80px;bottom:-120px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
}
.final-cta > *{position:relative;z-index:1}
.final-cta h2{margin-bottom:12px}
.final-cta p{color:rgba(255,255,255,.8);font-size:18px;margin-bottom:0}
.site-footer{
  background:#0d2230;
  color:#fff;
  padding:54px 0 28px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr .8fr .8fr;
  gap:30px;
  align-items:start;
}
.footer-logo{width:174px;margin-bottom:16px}
.footer-text{color:rgba(255,255,255,.72);max-width:430px}
.footer-title{font-weight:900;margin-bottom:12px}
.footer-links{display:grid;gap:10px;color:rgba(255,255,255,.76)}
.footer-links a:hover{color:#fff}
.footer-bottom{
  margin-top:34px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:rgba(255,255,255,.58);
  font-size:14px;
}

.two-col .card-grid{grid-template-columns:repeat(2,1fr)}

@media (max-width: 1060px){
  .nav-links{display:none}
  .mobile-toggle{display:block}
  .nav-wrap{
    position:fixed;
    inset:76px 0 auto 0;
    background:#fff;
    border-bottom:1px solid var(--line);
    box-shadow:0 22px 50px rgba(13,42,74,.14);
    padding:20px;
    display:none;
    flex-direction:column;
    align-items:stretch;
  }
  body.menu-open .nav-wrap{display:flex}
  .nav-wrap .nav-links{
    display:grid;
    gap:4px;
  }
  .nav-links a{
    display:block;
    padding:14px 4px;
    border-bottom:1px solid var(--line);
  }
  .lang-switch{align-self:flex-start}
  .nav-wrap .btn{width:100%}
  .hero-grid,.context-grid,.two-col,.case-box{grid-template-columns:1fr}
  .hero{padding-top:54px}
  .hero-badge{left:18px;bottom:18px}
  .stats-strip,.card-grid,.process,.numbers-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 720px){
  .container{width:min(100% - 28px, 1160px)}
  .brand img{width:90px}
  .header-inner{min-height:70px}
  .nav-wrap{inset:70px 0 auto 0}
  .hero{padding:42px 0 28px}
  h1{font-size:42px}
  .lead{font-size:17px}
  .hero-actions .btn{width:100%}
  .hero-badge{position:static;width:auto;margin:14px 0 0}
  .stats-strip,.card-grid,.models,.process,.numbers-grid,.faq{grid-template-columns:1fr}
  .section{padding:62px 0}
  .context-panel,.card,.model-card,.process-step{padding:22px}
  .case-box{padding:12px;border-radius:24px}
  .case-content{padding:14px 6px}
  .final-cta{
    padding:34px 22px;
    grid-template-columns:1fr;
    border-radius:26px;
  }
  .final-cta .btn{width:100%}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column}
}