:root{
  --bg:#f6f8fb;
  --surface:#ffffff;
  --ink:#101828;
  --muted:#667085;
  --line:#dbe4ef;
  --accent:#f97316;
  --navy:#0b1b33;
  --navy-2:#14325f;
  --soft:#fff4ea;
  --teal:#16a3a1;
  --shadow:0 16px 44px rgba(11,27,51,.08);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:Manrope,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}

.clean-wrap{
  width:min(100% - 40px,1240px);
  margin-inline:auto;
}

.clean-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.94);
  border-bottom:1px solid rgba(219,228,239,.82);
  backdrop-filter:blur(16px);
}

.clean-header-inner{
  width:min(100% - 40px,1240px);
  margin-inline:auto;
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.clean-logo{
  display:flex;
  align-items:center;
  min-width:170px;
}

.clean-logo img{
  max-width:176px;
  max-height:48px;
  object-fit:contain;
}

.clean-logo strong{
  color:var(--navy);
  font-weight:900;
  font-size:22px;
}

.clean-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  flex:1;
}

.clean-nav > a,
.clean-dropdown > a{
  min-height:42px;
  display:inline-flex;
  align-items:center;
  padding:0 12px;
  border-radius:8px;
  color:#344054;
  font-size:14px;
  font-weight:800;
}

.clean-nav > a:hover,
.clean-nav > a.is-active,
.clean-dropdown > a:hover,
.clean-dropdown > a.is-active{
  background:var(--soft);
  color:var(--navy);
}

.clean-dropdown{
  position:relative;
}

.clean-dropdown-menu{
  position:absolute;
  top:46px;
  left:0;
  width:260px;
  padding:8px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  box-shadow:var(--shadow);
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:.18s ease;
}

.clean-dropdown:hover .clean-dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.clean-dropdown-menu a{
  display:block;
  padding:11px 12px;
  border-radius:8px;
  color:#344054;
  font-size:14px;
  font-weight:750;
}

.clean-dropdown-menu a:hover{
  background:#f8fafc;
  color:var(--accent);
}

.clean-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.clean-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:8px;
  border:1px solid transparent;
  background:var(--accent);
  color:#fff;
  font-size:14px;
  font-weight:900;
  transition:.2s ease;
}

.clean-btn:hover{
  transform:translateY(-2px);
  color:#fff;
  background:#ea580c;
}

.clean-btn.large{
  min-height:52px;
  padding:0 22px;
  font-size:15px;
}

.clean-btn.light{
  background:#fff;
  color:var(--navy);
}

.clean-link{
  display:inline-flex;
  align-items:center;
  min-height:46px;
  color:var(--navy);
  font-weight:900;
}

.clean-menu-btn{
  display:none;
  width:44px;
  height:44px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
}

.clean-menu-btn span{
  width:20px;
  height:2px;
  background:var(--navy);
}

.clean-main{
  min-height:65vh;
}

.clean-hero{
  padding:88px 0 72px;
  background:#fff;
  border-bottom:1px solid var(--line);
}

.clean-hero-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:48px;
  align-items:center;
}

.clean-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
  color:var(--accent);
  font-size:13px;
  font-weight:900;
  letter-spacing:0;
  text-transform:uppercase;
}

.clean-kicker::before{
  content:"";
  width:30px;
  height:2px;
  background:var(--accent);
}

.clean-hero h1,
.clean-page-hero h1{
  margin:0;
  max-width:820px;
  color:var(--navy);
  font-size:68px;
  line-height:1.02;
  letter-spacing:0;
  font-weight:900;
}

.clean-hero p,
.clean-page-hero p{
  max-width:680px;
  margin:22px 0 0;
  color:var(--muted);
  font-size:18px;
  line-height:1.72;
}

.clean-hero-buttons{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  margin-top:30px;
}

.clean-visual{
  display:grid;
  gap:14px;
}

.hero-image{
  width:100%;
  min-height:420px;
  max-height:520px;
  object-fit:cover;
  border:1px solid var(--line);
  border-radius:8px;
  box-shadow:var(--shadow);
}

.hero-proof-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}

.hero-proof-item{
  min-height:155px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
}

.hero-proof-item img{
  width:100%;
  height:120px;
  object-fit:contain;
}

.hero-proof-item span{
  color:#d0d5dd;
  font-size:52px;
  font-weight:900;
}

.clean-metric-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.clean-device{
  border:1px solid var(--line);
  border-radius:8px;
  background:#f8fafc;
  padding:16px;
  box-shadow:var(--shadow);
}

.device-top{
  height:58px;
  border-radius:8px;
  background:var(--navy);
  margin-bottom:14px;
}

.device-body{
  min-height:330px;
  border-radius:8px;
  background:#fff;
  border:1px solid var(--line);
  padding:20px;
}

.line{
  height:14px;
  border-radius:8px;
  background:#e7edf5;
  margin-bottom:12px;
}

.line.long{width:82%}
.line.short{width:56%}
.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin:24px 0;
}
.stats div{
  height:96px;
  border-radius:8px;
  background:var(--soft);
  border:1px solid #ffd8b8;
}
.panel{
  height:130px;
  border-radius:8px;
  background:linear-gradient(135deg,var(--navy),var(--accent));
}

.floating-card{
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  padding:18px;
  box-shadow:var(--shadow);
}

.floating-card strong{
  display:block;
  margin:6px 0;
  color:var(--navy);
  font-size:32px;
  line-height:1;
}

.floating-card span,
.floating-card small{
  color:var(--muted);
  font-weight:800;
}

.clean-marquee{
  overflow:hidden;
  background:var(--navy);
  color:#fff;
}

.clean-marquee-track{
  display:flex;
  width:max-content;
  animation:asv-marquee 26s linear infinite;
}

.clean-marquee-group{
  display:flex;
  align-items:center;
}

.clean-marquee span{
  display:inline-flex;
  align-items:center;
  min-height:70px;
  padding:0 28px;
  color:rgba(255,255,255,.76);
  font-weight:900;
}

@keyframes asv-marquee{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

.clean-section{
  padding:84px 0;
}

.clean-section-head{
  max-width:820px;
  margin-bottom:38px;
}

.clean-section-head h2{
  margin:0;
  color:var(--navy);
  font-size:44px;
  line-height:1.08;
  letter-spacing:0;
  font-weight:900;
}

.clean-section-head p{
  max-width:680px;
  margin:16px 0 0;
  color:var(--muted);
  font-size:17px;
  line-height:1.7;
}

.clean-services{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.clean-card{
  position:relative;
  min-height:270px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  padding:24px;
  box-shadow:var(--shadow);
  transition:.2s ease;
}

.clean-card:hover{
  transform:translateY(-5px);
  border-color:#ffc08f;
}

.clean-card .card-number{
  display:inline-flex;
  min-height:30px;
  align-items:center;
  padding:0 10px;
  border-radius:8px;
  background:var(--soft);
  color:var(--accent);
  font-size:13px;
  font-weight:900;
}

.clean-card h3{
  margin:58px 0 12px;
  color:var(--navy);
  font-size:25px;
  line-height:1.18;
  letter-spacing:0;
}

.clean-card p{
  color:var(--muted);
  line-height:1.65;
}

.clean-card b{
  position:absolute;
  top:22px;
  right:22px;
  color:var(--accent);
}

.clean-dark{
  background:var(--navy);
  color:#fff;
}

.clean-dark .clean-section-head h2,
.clean-dark .clean-section-head p,
.clean-dark .clean-project h3{
  color:#fff;
}

.clean-dark .clean-section-head p{
  color:rgba(255,255,255,.72);
}

.clean-projects,
.reference-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.clean-project{
  color:#fff;
}

.project-img{
  height:330px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:8px;
  overflow:hidden;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px;
  margin-bottom:16px;
}

.project-img img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.project-img span{
  color:#d0d5dd;
  font-size:72px;
  font-weight:900;
}

.clean-project small{
  color:#fbbf24;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}

.clean-project h3{
  margin:8px 0 0;
  font-size:21px;
  line-height:1.24;
  letter-spacing:0;
}

.asv-project-service-badges{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin-top:12px;
}

.asv-project-service-badges span{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 9px;
  border-radius:8px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.13);
  color:rgba(255,255,255,.78);
  font-size:12px;
  font-weight:850;
}

.clean-cta-section{
  padding:84px 0;
}

.clean-big-cta{
  min-height:330px;
  border-radius:8px;
  background:linear-gradient(135deg,var(--navy),var(--navy-2));
  color:#fff;
  padding:48px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
}

.clean-big-cta span{
  color:#fed7aa;
  font-weight:900;
}

.clean-big-cta h2{
  max-width:760px;
  margin:14px 0 28px;
  font-size:44px;
  line-height:1.1;
  letter-spacing:0;
  font-weight:900;
}

.clean-page-hero{
  padding:82px 0 70px;
  background:#fff;
  border-bottom:1px solid var(--line);
}

.clean-two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  align-items:stretch;
}

.clean-content-card,
.clean-form-card,
.clean-detail-content,
.clean-side-card,
.clean-mini-card,
.clean-stat-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:8px;
  padding:30px;
  box-shadow:var(--shadow);
}

.clean-content-card h2,
.clean-detail-content h2{
  margin:0 0 16px;
  color:var(--navy);
  font-size:34px;
  line-height:1.12;
  letter-spacing:0;
  font-weight:900;
}

.clean-content-card p,
.clean-detail-content p{
  color:var(--muted);
  line-height:1.76;
}

.clean-form-card{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.clean-form-card input,
.clean-form-card textarea,
.clean-form-card select{
  width:100%;
  min-height:52px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  padding:0 14px;
  color:var(--ink);
  font:inherit;
}

.clean-form-card textarea{
  min-height:150px;
  padding-top:14px;
  resize:vertical;
}

.captcha-box{
  display:grid;
  gap:8px;
  padding:14px;
  border:1px solid #ffd8b8;
  border-radius:8px;
  background:var(--soft);
}

.captcha-box label{
  color:var(--navy);
  font-size:14px;
  font-weight:900;
}

.captcha-box input{
  background:#fff;
  border-color:#ffc08f;
}

.clean-alert{
  padding:14px;
  border-radius:8px;
  font-weight:850;
}
.clean-alert.success{background:#ecfdf3;color:#027a48}
.clean-alert.error{background:#fff1f3;color:#b42318}

.clean-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:22px;
}

.clean-meta span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  color:var(--navy);
  font-size:14px;
  font-weight:850;
}

.clean-offer-points,
.clean-contact-list{
  display:grid;
  gap:10px;
  margin-top:22px;
}

.clean-offer-points div,
.clean-contact-list div{
  border:1px solid var(--line);
  border-radius:8px;
  padding:16px;
  background:#f8fafc;
}

.clean-offer-points strong{
  display:inline-grid;
  place-items:center;
  width:28px;
  height:28px;
  margin-right:10px;
  border-radius:8px;
  background:var(--accent);
  color:#fff;
}

.clean-contact-list strong{
  display:block;
  margin-bottom:4px;
  color:var(--navy);
}

.clean-contact-list span{
  color:var(--muted);
}

.clean-stat-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.clean-stat-card strong,
.clean-mini-card span{
  color:var(--accent);
  font-weight:900;
}

.clean-stat-card h3,
.clean-mini-card h3{
  margin:26px 0 8px;
  color:var(--navy);
  font-size:24px;
  letter-spacing:0;
}

.clean-stat-card p,
.clean-mini-card p{
  color:var(--muted);
  line-height:1.65;
}

.clean-detail-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 340px;
  gap:22px;
  align-items:start;
}

.clean-detail-content{
  font-size:17px;
  line-height:1.8;
}

.clean-detail-content h3{
  color:var(--navy);
  font-size:26px;
  letter-spacing:0;
}

.clean-detail-sidebar{
  position:sticky;
  top:96px;
  display:grid;
  gap:14px;
}

.clean-side-links{
  display:grid;
  gap:8px;
  margin-top:14px;
}

.clean-side-links a{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:12px;
  border-radius:8px;
  background:#f8fafc;
  color:var(--navy);
  font-weight:850;
}

.clean-related-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.client-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.client-card{
  min-height:150px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  padding:20px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  gap:12px;
  box-shadow:var(--shadow);
}

.client-card img{
  width:100%;
  height:70px;
  object-fit:contain;
}

.client-card strong{
  color:var(--navy);
  font-size:20px;
  font-weight:900;
}

.client-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
}

.clean-soft{
  background:#fff;
}

.clean-filter-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 30px;
}

.clean-filter-tabs button{
  min-height:42px;
  padding:0 14px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:8px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-weight:850;
  cursor:pointer;
}

.clean-filter-tabs button.active,
.clean-filter-tabs button:hover{
  background:#fff;
  color:var(--navy);
}

.clean-project.hidden{display:none}

.clean-empty-projects{
  border:1px solid rgba(255,255,255,.16);
  border-radius:8px;
  padding:24px;
  color:#fff;
}

.asv-home-project-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin:-8px 0 24px;
}

.asv-home-project-controls{
  display:flex;
  gap:10px;
}

.asv-home-project-btn,
.asv-home-project-all{
  min-height:44px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:8px;
  background:rgba(255,255,255,.08);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
}

.asv-home-project-all{padding:0 16px}
.asv-home-project-btn{width:44px;font-size:24px;cursor:pointer}

.asv-home-project-slider{
  display:flex;
  gap:16px;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-snap-type:x mandatory;
  padding-bottom:16px;
  scrollbar-width:none;
}

.asv-home-project-slider::-webkit-scrollbar{display:none}
.asv-home-project-slide{
  flex:0 0 calc((100% - 48px) / 4);
  min-width:250px;
  scroll-snap-align:start;
}

.clean-footer{
  background:#071326;
  color:#fff;
  padding:54px 0 24px;
}

.clean-footer-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr .9fr;
  gap:28px;
  align-items:start;
}

.clean-footer-brand img{
  max-height:70px;
  object-fit:contain;
  background:#fff;
  border-radius:8px;
  padding:8px;
}

.clean-footer-brand p,
.clean-footer-contact span{
  color:rgba(255,255,255,.72);
  line-height:1.7;
}

.clean-footer-links{
  display:grid;
  gap:10px;
}

.clean-footer-links a{
  color:rgba(255,255,255,.78);
  font-weight:800;
}

.clean-footer-links a:hover{color:#fff}

.clean-footer-contact{
  display:grid;
  gap:8px;
}

.clean-footer-socials{
  display:flex;
  gap:8px;
  margin-top:8px;
}

.clean-footer-socials a{
  width:38px;
  height:38px;
  border-radius:8px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.08);
}

.clean-footer-bottom{
  margin-top:34px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.64);
}

@media(max-width:1100px){
  .clean-nav{display:none}
  .clean-menu-btn{display:flex}
  .clean-nav.mobile-open{
    position:absolute;
    left:20px;
    right:20px;
    top:78px;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:4px;
    padding:10px;
    border:1px solid var(--line);
    border-radius:8px;
    background:#fff;
    box-shadow:var(--shadow);
  }
  .clean-nav.mobile-open .clean-dropdown-menu{
    position:static;
    width:100%;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none;
    display:none;
    margin-top:4px;
  }
  .clean-nav.mobile-open .clean-dropdown.open .clean-dropdown-menu{display:block}
  .clean-hero-grid,
  .clean-two-col,
  .clean-detail-layout,
  .clean-footer-grid{grid-template-columns:1fr}
  .clean-services{grid-template-columns:repeat(2,1fr)}
  .clean-projects,
  .reference-grid,
  .client-grid{grid-template-columns:repeat(2,1fr)}
  .asv-home-project-slide{flex-basis:calc((100% - 16px) / 2)}
  .clean-detail-sidebar{position:static}
}

@media(max-width:760px){
  .clean-wrap,
  .clean-header-inner{width:min(100% - 28px,1240px)}
  .clean-header-inner{min-height:68px}
  .clean-logo img{max-height:38px;max-width:140px}
  .clean-actions .clean-btn{display:none}
  .clean-hero{padding:58px 0 48px}
  .clean-hero h1,
  .clean-page-hero h1{font-size:38px}
  .clean-hero p,
  .clean-page-hero p{font-size:16px}
  .clean-visual{display:none}
  .clean-section,
  .clean-cta-section{padding:56px 0}
  .clean-section-head h2,
  .clean-big-cta h2{font-size:32px}
  .clean-services,
  .clean-projects,
  .reference-grid,
  .client-grid,
  .clean-stat-grid,
  .clean-related-grid{grid-template-columns:1fr}
  .clean-metric-row{grid-template-columns:1fr}
  .clean-card{min-height:230px}
  .project-img{height:260px}
  .asv-home-project-toolbar{align-items:flex-start;flex-direction:column}
  .asv-home-project-slide{flex-basis:84%;min-width:230px}
  .clean-big-cta{padding:30px;min-height:280px}
  .clean-content-card,
  .clean-form-card,
  .clean-detail-content,
  .clean-side-card,
  .clean-mini-card,
  .clean-stat-card{padding:22px}
}
