:root{
  --bg: #07111f;
  --bg-soft: #0b1728;
  --card: rgba(14, 27, 46, 0.88);
  --card-solid: #0f1d31;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.14);
  --text: #f4f7fb;
  --muted: #a8b3c2;
  --muted-2: #8896a8;
  --primary: #4ca4ff;
  --primary-strong: #1c7bf2;
  --accent: #8fd0ff;
  --white: #ffffff;
  --success: #79d0a3;
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
  --radius: 22px;
  --radius-sm: 16px;
  --max: 1220px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(76,164,255,0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(143,208,255,0.08), transparent 20%),
    linear-gradient(180deg, #07111f 0%, #091523 30%, #06101d 100%);
  color: var(--text);
  line-height: 1.6;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:min(92%, var(--max));
  margin:0 auto;
}

.topbar{
  background: rgba(255,255,255,0.03);
  border-bottom:1px solid var(--line);
  backdrop-filter: blur(10px);
}

.topbar-content{
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  color:var(--muted);
  font-size:13px;
}

.topbar-right a{
  color:var(--accent);
  font-weight:600;
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(7,17,31,0.82);
  backdrop-filter: blur(14px);
  border-bottom:1px solid var(--line);
}

.nav{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand-mark{
  width:46px;
  height:46px;
  border-radius:14px;
  background: linear-gradient(135deg, var(--primary), #82cbff);
  color:#04111f;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 10px 30px rgba(76,164,255,0.28);
}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.15;
}

.brand-text strong{
  font-size:16px;
  color:var(--white);
}

.brand-text span{
  font-size:12px;
  color:var(--muted);
}

.desktop-nav{
  display:flex;
  align-items:center;
  gap:26px;
}

.desktop-nav a{
  color:var(--muted);
  font-size:15px;
  transition:0.25s ease;
}

.desktop-nav a:hover{
  color:var(--white);
}

.nav-btn{
  padding:12px 18px;
  border:1px solid rgba(255,255,255,0.1);
  border-radius:999px;
  color:var(--white) !important;
  background: rgba(255,255,255,0.04);
}

.menu-toggle{
  display:none;
  background:none;
  border:none;
  color:#fff;
  font-size:28px;
  cursor:pointer;
}

.mobile-nav{
  display:none;
  border-top:1px solid var(--line);
  background: rgba(7,17,31,0.96);
}

.mobile-nav a{
  display:block;
  padding:14px 4%;
  border-bottom:1px solid var(--line);
  color:var(--muted);
}

.mobile-nav.active{
  display:block;
}

.hero{
  position:relative;
  padding:90px 0 70px;
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(7,17,31,0.92) 0%, rgba(7,17,31,0.78) 45%, rgba(7,17,31,0.64) 100%),
    url("https://images.unsplash.com/photo-1554224154-26032ffc0d07?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  z-index:0;
  transform: scale(1.03);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to bottom, rgba(4,10,18,0.18), rgba(4,10,18,0.65)),
    radial-gradient(circle at 20% 20%, rgba(76,164,255,0.14), transparent 30%);
  z-index:1;
}

.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap:44px;
  align-items:center;
  min-height:720px;
}

.eyebrow{
  display:inline-flex;
  padding:9px 14px;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:999px;
  color:var(--accent);
  background: rgba(255,255,255,0.03);
  font-size:12px;
  letter-spacing:1.4px;
  margin-bottom:24px;
}

.hero-copy h1{
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height:1.05;
  max-width:820px;
  letter-spacing:-0.03em;
  margin-bottom:24px;
}

.hero-copy p{
  max-width:720px;
  font-size:18px;
  color:#d8e0ea;
  margin-bottom:28px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:34px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:14px;
  font-weight:700;
  transition:0.25s ease;
  cursor:pointer;
}

.btn-primary{
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color:#fff;
  box-shadow: 0 18px 45px rgba(28,123,242,0.35);
}

.btn-primary:hover{
  transform: translateY(-2px);
}

.btn-secondary{
  border:1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  color:#fff;
}

.btn-secondary:hover{
  background: rgba(255,255,255,0.08);
}

.btn-light{
  background: #fff;
  color: #07111f;
  font-weight:800;
}

.hero-points{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}

.hero-point{
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:18px;
  padding:18px;
  backdrop-filter: blur(10px);
}

.hero-point strong{
  display:block;
  margin-bottom:8px;
  font-size:15px;
}

.hero-point span{
  color:var(--muted);
  font-size:14px;
}

.hero-card{
  display:flex;
  justify-content:flex-end;
}

.info-panel{
  width:100%;
  max-width:430px;
  background: rgba(10, 22, 39, 0.82);
  border:1px solid rgba(255,255,255,0.09);
  border-radius:28px;
  padding:24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-header{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-size:13px;
  margin-bottom:18px;
}

.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(121,208,163,0.12);
}

.metric-card{
  border-radius:20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border:1px solid rgba(255,255,255,0.08);
  padding:22px;
  margin-bottom:18px;
}

.metric-card small{
  color:var(--muted);
}

.metric-card h3{
  font-size:44px;
  line-height:1;
  margin:8px 0 10px;
}

.metric-card p{
  color:var(--muted);
  font-size:14px;
}

.panel-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
  margin-bottom:16px;
}

.mini-card{
  border-radius:16px;
  background: rgba(255,255,255,0.035);
  border:1px solid rgba(255,255,255,0.07);
  padding:16px;
}

.mini-card small{
  display:block;
  color:var(--muted-2);
  margin-bottom:6px;
}

.mini-card strong{
  font-size:15px;
}

.panel-note{
  padding:16px 18px;
  border-radius:16px;
  background: rgba(76,164,255,0.08);
  border:1px solid rgba(76,164,255,0.18);
  color:#d9e9ff;
  font-size:14px;
}

.trust-strip{
  padding:22px 0 30px;
}

.trust-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:18px;
}

.trust-item{
  border:1px solid var(--line);
  background: rgba(255,255,255,0.025);
  border-radius:18px;
  padding:22px;
}

.trust-item h3{
  font-size:18px;
  margin-bottom:8px;
}

.trust-item p{
  color:var(--muted);
  font-size:14px;
}

.section{
  padding:110px 0;
}

.section-heading,
.section-center{
  margin-bottom:34px;
}

.section-center{
  text-align:center;
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
  margin-bottom:42px;
}

.section-tag{
  display:inline-block;
  margin-bottom:14px;
  color:var(--accent);
  font-size:12px;
  font-weight:700;
  letter-spacing:1.5px;
}

.light-tag{
  color:#dceeff;
}

.section h2{
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height:1.1;
  letter-spacing:-0.03em;
  margin-bottom:14px;
}

.section-text{
  color:var(--muted);
  font-size:17px;
}

.section-grid{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap:40px;
  align-items:start;
}

.about-content p{
  color:var(--muted);
  margin-bottom:18px;
  font-size:16px;
}

.about-highlights{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
  margin-top:22px;
}

.highlight{
  background: rgba(255,255,255,0.03);
  border:1px solid var(--line);
  border-radius:18px;
  padding:20px;
}

.highlight h4{
  margin-bottom:8px;
  font-size:17px;
}

.highlight p{
  margin:0;
  font-size:14px;
}

.cards-4{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:18px;
}

.card{
  border-radius:22px;
  padding:26px;
}

.glass-card{
  background: rgba(255,255,255,0.03);
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}

.glass-card h3{
  margin-bottom:12px;
  font-size:20px;
}

.glass-card p{
  color:var(--muted);
}

.services-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:22px;
}

.service-card{
  position:relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.025));
  border:1px solid var(--line);
  border-radius:24px;
  padding:26px;
  min-height:100%;
  overflow:hidden;
}

.service-card::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.service-number{
  font-size:13px;
  color:var(--accent);
  font-weight:800;
  letter-spacing:1.5px;
  margin-bottom:12px;
}

.service-card h3{
  font-size:22px;
  margin-bottom:12px;
  line-height:1.2;
}

.service-card p{
  color:var(--muted);
  margin-bottom:16px;
}

.service-card ul{
  list-style:none;
}

.service-card li{
  color:#d6e0ea;
  font-size:14px;
  padding:9px 0;
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.service-card li:last-child{
  border-bottom:none;
}

.stats-section{
  padding-top:20px;
}

.stats-box{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:18px;
  background: linear-gradient(180deg, rgba(76,164,255,0.08), rgba(255,255,255,0.02));
  border:1px solid rgba(255,255,255,0.08);
  border-radius:28px;
  padding:28px;
}

.stat-item{
  background: rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:20px;
  padding:24px;
  text-align:center;
}

.stat-item h3{
  font-size:42px;
  margin-bottom:8px;
}

.stat-item p{
  color:var(--muted);
  font-size:14px;
}

.why-grid{
  display:grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap:28px;
  align-items:start;
}

.why-grid p{
  color:var(--muted);
}

.why-list{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:18px;
}

.why-item{
  padding:24px;
  border-radius:20px;
  border:1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.why-item h4{
  margin-bottom:10px;
  font-size:18px;
}

.why-item p{
  font-size:14px;
}

.sector-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:18px;
}

.sector-card{
  padding:24px;
  border-radius:18px;
  border:1px solid var(--line);
  background: rgba(255,255,255,0.03);
  text-align:center;
  font-weight:600;
  color:#e9f0f8;
}

.timeline{
  display:grid;
  gap:20px;
}

.timeline-item{
  display:grid;
  grid-template-columns: 90px 1fr;
  gap:18px;
  align-items:start;
}

.timeline-step{
  width:64px;
  height:64px;
  border-radius:18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color:#fff;
  font-size:24px;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 16px 40px rgba(28,123,242,0.28);
}

.timeline-content{
  border:1px solid var(--line);
  border-radius:20px;
  padding:22px;
  background: rgba(255,255,255,0.03);
}

.timeline-content h3{
  margin-bottom:8px;
  font-size:22px;
}

.timeline-content p{
  color:var(--muted);
}

.cta-band{
  background:
    linear-gradient(135deg, rgba(28,123,242,0.92), rgba(82,174,255,0.82)),
    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.cta-band-content{
  display:grid;
  grid-template-columns: 1.15fr auto;
  align-items:center;
  gap:28px;
}

.cta-band h2{
  margin-bottom:14px;
}

.cta-band p{
  color: rgba(255,255,255,0.92);
  max-width:760px;
}

.testimonial-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}

.testimonial-card{
  padding:28px;
  border-radius:22px;
  border:1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.testimonial-card p{
  color:#d8e3ef;
  margin-bottom:18px;
  font-size:16px;
}

.testimonial-card strong{
  color:var(--accent);
}

.faq-list{
  max-width:980px;
  margin:0 auto;
  display:grid;
  gap:14px;
}

.faq-item{
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background: rgba(255,255,255,0.03);
}

.faq-question{
  width:100%;
  text-align:left;
  padding:22px;
  background:none;
  border:none;
  color:#fff;
  font-size:17px;
  font-weight:700;
  cursor:pointer;
}

.faq-answer{
  display:none;
  padding:0 22px 22px;
  color:var(--muted);
}

.faq-item.active .faq-answer{
  display:block;
}

.contact-grid{
  display:grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap:28px;
  align-items:start;
}

.contact-copy p{
  color:var(--muted);
  margin-bottom:24px;
}

.contact-data{
  display:grid;
  gap:16px;
}

.contact-data-item{
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  background: rgba(255,255,255,0.03);
}

.contact-data-item strong{
  display:block;
  margin-bottom:6px;
}

.contact-data-item span{
  color:var(--muted);
  font-size:14px;
}

.contact-form-card{
  background: rgba(255,255,255,0.04);
  border:1px solid var(--line-strong);
  border-radius:26px;
  padding:26px;
  box-shadow: var(--shadow);
}

.form-row{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
  margin-bottom:14px;
}

.form-row.single{
  grid-template-columns: 1fr;
}

input,
select,
textarea{
  width:100%;
  border:1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.04);
  color:#fff;
  border-radius:14px;
  padding:15px 16px;
  outline:none;
  font-size:15px;
}

input::placeholder,
textarea::placeholder{
  color:#95a5b8;
}

select{
  color:#dbe7f5;
}

textarea{
  min-height:150px;
  resize:vertical;
}

.check-wrap{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:var(--muted);
  font-size:14px;
}

.check-wrap input{
  width:18px;
  height:18px;
  margin-top:2px;
}

.full-btn{
  width:100%;
}

.footer{
  border-top:1px solid var(--line);
  background: rgba(5,10,18,0.7);
  padding-top:48px;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap:22px;
  padding-bottom:30px;
}

.footer-brand{
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.footer h4{
  margin-bottom:12px;
}

.footer ul{
  list-style:none;
}

.footer li{
  color:var(--muted);
  padding:6px 0;
  font-size:14px;
}

.footer p{
  color:var(--muted);
}

.footer-bottom{
  padding:18px 0 28px;
  border-top:1px solid var(--line);
  text-align:center;
  color:var(--muted-2);
  font-size:14px;
}

@media (max-width: 1180px){
  .hero-grid,
  .section-grid,
  .why-grid,
  .contact-grid,
  .cta-band-content{
    grid-template-columns: 1fr;
  }

  .hero-card{
    justify-content:flex-start;
  }

  .services-grid,
  .cards-4,
  .trust-grid,
  .stats-box,
  .testimonial-grid,
  .sector-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-points,
  .about-highlights{
    grid-template-columns: 1fr;
  }

  .footer-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px){
  .desktop-nav{
    display:none;
  }

  .menu-toggle{
    display:block;
  }

  .hero{
    padding-top:70px;
  }

  .hero-grid{
    min-height:auto;
  }

  .hero-copy h1{
    font-size: clamp(2.1rem, 7vw, 3.3rem);
  }

  .hero-copy p{
    font-size:16px;
  }

  .services-grid,
  .cards-4,
  .trust-grid,
  .stats-box,
  .testimonial-grid,
  .sector-grid,
  .why-list{
    grid-template-columns: 1fr;
  }

  .timeline-item{
    grid-template-columns: 1fr;
  }

  .form-row{
    grid-template-columns: 1fr;
  }

  .footer-grid{
    grid-template-columns: 1fr;
  }

  .topbar-content{
    flex-direction:column;
    justify-content:center;
    text-align:center;
    padding:10px 0;
  }
}

@media (max-width: 560px){
  .section{
    padding:82px 0;
  }

  .info-panel,
  .contact-form-card{
    padding:20px;
  }

  .hero-actions{
    flex-direction:column;
  }

  .btn{
    width:100%;
  }

  .trust-item,
  .service-card,
  .testimonial-card,
  .why-item,
  .highlight,
  .stat-item{
    padding:20px;
  }
}