:root{
  --green:#00b140;
  --red:#ff1638;
  --dark:#02070d;
  --white:#ffffff;
  --muted:#e9edf1;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html,body{
  width:100%;
  min-height:100%;
  background:#000;
  color:#fff;
  font-family:Arial,Helvetica,sans-serif;
}

body{
  overflow-x:hidden;
}

a{
  text-decoration:none;
  color:inherit;
}

/* HEADER */

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.48),
    rgba(0,0,0,.12),
    rgba(0,0,0,0)
  );
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
}

.header-inner{
  width:min(96%,1520px);
  margin:auto;
  height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* LOGO */

.logo{
  display:flex;
  align-items:center;
  gap:14px;
  flex-shrink:0;
}

.logo-mark{
  width:62px;
  height:62px;
}

.logo-mark path{
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
  stroke-width:8;
}

.logo-mark .wifi-top{
  stroke:#fff;
}

.logo-mark .wifi-mid{
  stroke:var(--red);
}

.logo-mark .wifi-low{
  stroke:var(--green);
}

.logo-mark .wifi-dot{
  fill:var(--green);
}

.logo-text strong{
  display:block;
  font-size:34px;
  line-height:.9;
  font-weight:900;
  letter-spacing:.3px;
  color:#fff;
}

.logo-text strong span{
  color:var(--green);
}

.logo-text small{
  display:block;
  margin-top:6px;
  font-size:11px;
  font-weight:900;
  letter-spacing:1px;
  color:#fff;
}

/* NAV */

.main-nav{
  display:flex;
  align-items:center;
  gap:24px;
  margin-left:auto;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
}

.main-nav>a,
.nav-item>button{
  background:none;
  border:0;
  color:#fff;
  font:inherit;
  cursor:pointer;
  padding:16px 0;
  white-space:nowrap;
}

.main-nav a:hover,
.nav-item button:hover{
  color:var(--green);
}

.nav-item{
  position:relative;
}

.dropdown{
  display:none;
  position:absolute;
  top:48px;
  left:0;
  min-width:280px;
  background:rgba(0,0,0,.90);
  border:1px solid rgba(255,255,255,.14);
  border-radius:12px;
  padding:10px;
  backdrop-filter:blur(10px);
}

.dropdown a{
  display:block;
  padding:12px 14px;
  border-radius:8px;
  text-transform:none;
  font-weight:700;
}

.dropdown a:hover{
  background:rgba(255,255,255,.06);
}

.nav-item:hover .dropdown{
  display:block;
}

.lang{
  width:40px;
  height:40px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.quote{
  background:var(--green);
  padding:14px 22px!important;
  border-radius:8px;
}

.menu-toggle{
  display:none;
}

/* HERO */

.hero{
  position:relative;
  min-height:100vh;
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.18) 0%,
      rgba(0,0,0,.08) 42%,
      rgba(0,0,0,.03) 100%
    ),
    url("/assets/images/start.png");
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
}

.hero-content{
  position:relative;
  z-index:2;
  width:min(96%,1520px);
  margin:auto;
  min-height:calc(100vh - 82px);
  padding-top:112px;
  display:grid;
  grid-template-columns:1.05fr .70fr;
  gap:60px;
  align-items:center;
}

/* LEFT HERO */

.hero-left{
  max-width:790px;
}

.hero-left h1{
  font-size:clamp(72px,7vw,128px);
  line-height:.88;
  font-weight:900;
  letter-spacing:-2px;
  text-transform:uppercase;
}

.hero-left h1 span{
  color:var(--green);
}

.hero-left h2{
  margin-top:16px;
  font-size:clamp(22px,2vw,36px);
  font-weight:900;
  line-height:1.05;
  text-transform:uppercase;
}

.hero-left>p{
  margin-top:26px;
  max-width:680px;
  font-size:20px;
  line-height:1.45;
  color:var(--muted);
}

.flag-line{
  display:flex;
  gap:8px;
  margin:28px 0 34px;
}

.flag-line span{
  width:88px;
  height:4px;
  background:#fff;
}

.flag-line span:nth-child(1){
  background:var(--green);
}

.flag-line span:nth-child(2){
  background:var(--red);
}

/* SERVICES */

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

.service-card{
  min-height:182px;
  padding:16px 12px;
  text-align:center;
  border-right:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.03);
}

.service-card:last-child{
  border-right:0;
}

.service-svg{
  width:54px;
  height:54px;
  margin:0 auto 12px;
}

.service-svg svg{
  width:100%;
  height:100%;
  display:block;
}

.service-svg svg path,
.service-svg svg circle{
  fill:none;
  stroke:currentColor;
  stroke-width:4;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.service-svg svg circle[fill="currentColor"]{
  fill:currentColor;
  stroke:none;
}

.green{
  color:var(--green);
}

.red{
  color:var(--red);
}

.service-card strong{
  display:block;
  min-height:38px;
  font-size:14px;
  line-height:1.2;
  font-weight:900;
  text-transform:uppercase;
}

.service-card p{
  margin-top:10px;
  font-size:13px;
  line-height:1.45;
  color:#f4f4f4;
}

.consult-btn{
  display:inline-block;
  margin-top:26px;
  background:var(--green);
  padding:18px 30px;
  border-radius:8px;
  font-size:15px;
  font-weight:900;
  text-transform:uppercase;
}

.note{
  margin-top:18px!important;
  font-size:15px!important;
  color:#fff!important;
}

/* RIGHT PANEL */

.industry-panel{
  width:min(100%,430px);
  justify-self:center;
  background:rgba(0,0,0,.24);
  border:1px solid rgba(255,255,255,.18);
  border-radius:14px;
  padding:28px;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.industry-panel h3{
  color:var(--green);
  font-size:18px;
  font-weight:900;
  text-transform:uppercase;
}

.industry-panel h4{
  margin-top:6px;
  margin-bottom:14px;
  font-size:18px;
  text-transform:uppercase;
}

.industry-panel a{
  display:block;
  position:relative;
  padding:16px 34px 16px 0;
  border-top:1px solid rgba(255,255,255,.14);
}

.industry-panel strong{
  display:block;
  font-size:14px;
  font-weight:900;
  text-transform:uppercase;
}

.industry-panel span{
  display:block;
  margin-top:6px;
  font-size:14px;
  line-height:1.45;
  color:#ededed;
}

.industry-panel em{
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  font-style:normal;
  font-size:34px;
}

/* TRUST BAR */

.trust-bar{
  position:relative;
  z-index:3;
  width:100%;
  min-height:84px;

  background:rgba(8,12,18,.22);

  border-top:1px solid rgba(255,255,255,.10);

  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);

  display:grid;
  grid-template-columns:repeat(5,1fr);
}

.trust-item{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding:10px 14px;
  border-right:1px solid rgba(255,255,255,.10);
}

.trust-item:last-child{
  border-right:0;
}

.trust-svg{
  width:34px;
  height:34px;
  flex-shrink:0;
}

.trust-svg svg{
  width:100%;
  height:100%;
  display:block;
}

.trust-svg svg path,
.trust-svg svg circle{
  fill:none;
  stroke:currentColor;
  stroke-width:4;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.trust-item strong{
  display:block;
  font-size:15px;
  line-height:1;
  font-weight:900;
  text-transform:uppercase;
}

.trust-item span{
  display:block;
  margin-top:4px;
  font-size:11px;
  line-height:1;
  font-weight:900;
  color:currentColor;
  text-transform:uppercase;
}

.trust-item small{
  display:block;
  margin-top:6px;
  font-size:10px;
  color:#d9d9d9;
}

/* MOBILE */

@media(max-width:1199px){

  .hero-content{
    grid-template-columns:1fr;
    gap:30px;
  }

  .services{
    grid-template-columns:repeat(2,1fr);
  }

  .trust-bar{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){

  .menu-toggle{
    display:block;
    background:none;
    border:0;
    color:#fff;
    font-size:30px;
  }

  .main-nav{
    display:none;
  }

  .hero-content{
    display:block;
    width:90%;
  }

  .hero-left h1{
    font-size:48px;
  }

  .hero-left h2{
    font-size:20px;
  }

  .hero-left>p{
    font-size:16px;
  }

  .services{
    grid-template-columns:1fr;
  }

  .industry-panel{
    width:100%;
    margin-top:26px;
  }

  .trust-bar{
    grid-template-columns:1fr;
  }
}