:root{
  --bg:#020617;
  --panel:#0f172a;
  --panel-soft:rgba(255,255,255,0.05);
  --line:rgba(255,255,255,0.10);
  --text:#ffffff;
  --muted:rgba(255,255,255,0.70);
  --muted-2:rgba(255,255,255,0.60);
  --sky:#7dd3fc;
  --sky-strong:#38bdf8;
  --green:#86efac;
  --shadow:0 20px 70px rgba(0,0,0,0.35);
  --radius:28px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,Helvetica,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{
  width:min(1200px, calc(100% - 48px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  border-bottom:1px solid var(--line);
  background:rgba(2,6,23,0.86);
  backdrop-filter:blur(14px);
}

.header-inner{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand-mark{
  width:42px;
  height:42px;
  border-radius:18px;
  background:#fff;
  color:#020617;
  display:grid;
  place-items:center;
  font-size:13px;
  font-weight:800;
  letter-spacing:0.22em;
  box-shadow:0 8px 30px rgba(255,255,255,0.10);
  padding-left:3px;
}

.brand-url{
  font-size:11px;
  line-height:1;
  text-transform:uppercase;
  letter-spacing:0.34em;
  color:var(--sky);
  margin-bottom:7px;
}

.brand-name{
  font-size:15px;
  font-weight:700;
  color:rgba(255,255,255,0.92);
}

.nav{
  display:flex;
  align-items:center;
  gap:30px;
  color:rgba(255,255,255,0.82);
  font-size:14px;
}

.nav a:hover{color:#fff}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  padding:13px 22px;
  font-size:14px;
  font-weight:700;
  transition:0.18s ease;
}

.btn:hover{transform:translateY(-1px)}

.btn-outline{
  border:1px solid rgba(56,189,248,0.30);
  background:rgba(56,189,248,0.10);
  color:#d8f0ff;
}

.btn-solid{
  background:#fff;
  color:#020617;
  box-shadow:0 18px 50px rgba(255,255,255,0.10);
}

.btn-ghost{
  border:1px solid rgba(255,255,255,0.15);
  background:rgba(255,255,255,0.05);
  color:#fff;
}

.hero{
  position:relative;
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top right, rgba(56,189,248,0.25), transparent 28%),
    radial-gradient(circle at left center, rgba(34,197,94,0.16), transparent 26%);
  pointer-events:none;
}

.hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:56px;
  padding:84px 0 110px;
}

.eyebrow,
.mini-label{
  display:inline-flex;
  width:fit-content;
  align-items:center;
  border:1px solid var(--line);
  background:rgba(255,255,255,0.05);
  border-radius:999px;
  padding:9px 16px;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:0.30em;
  color:rgba(255,255,255,0.72);
}

.mini-label{
  padding:0;
  border:none;
  border-radius:0;
  background:none;
  letter-spacing:0.30em;
}

.sky{color:var(--sky)}
.green{color:var(--green)}
.sky-light{color:#c7ebff}

.hero h1{
  margin:22px 0 0;
  font-size:64px;
  line-height:1.02;
  letter-spacing:-0.04em;
  font-weight:700;
}

.hero h1 span{
  display:block;
  margin-top:10px;
  background:linear-gradient(90deg, #7dd3fc, #a7f3d0);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.lead{
  margin:24px 0 0;
  max-width:720px;
  font-size:20px;
  line-height:1.8;
  color:var(--muted);
}

.hero-actions{
  margin-top:38px;
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}

.stats-grid{
  margin-top:44px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}

.stat-card,
.service-card,
.feature-item,
.sector-card,
.contact-card,
.hero-panel,
.service-card-large{
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.stat-card{
  border-radius:24px;
  background:rgba(255,255,255,0.05);
  padding:22px;
}

.stat-card h3{
  margin:0;
  font-size:22px;
  line-height:1.2;
}

.stat-card p{
  margin:6px 0 0;
  font-size:14px;
  color:rgba(255,255,255,0.65);
}

.hero-panel-wrap{
  display:flex;
  align-items:stretch;
}

.hero-panel{
  width:100%;
  border-radius:34px;
  background:rgba(255,255,255,0.05);
  padding:16px;
  backdrop-filter:blur(20px);
}

.hero-panel .panel-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
  padding:14px 10px 26px;
  border-bottom:1px solid var(--line);
}

.hero-panel .panel-head h2{
  margin:10px 0 0;
  font-size:32px;
  line-height:1.2;
}

.pill{
  border-radius:18px;
  border:1px solid rgba(134,239,172,0.20);
  background:rgba(134,239,172,0.10);
  color:#d7ffe5;
  padding:9px 12px;
  font-size:12px;
  font-weight:700;
  white-space:nowrap;
}

.section{
  padding:96px 0;
}

.section-alt{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,0.03);
}

.section-contact{
  padding-top:0;
  padding-bottom:96px;
}

.section-intro{
  max-width:760px;
}

.section-intro h2,
.about-grid h2,
.section-header-row h2,
.contact-grid h2{
  margin:16px 0 0;
  font-size:46px;
  line-height:1.08;
  letter-spacing:-0.03em;
}

.section-intro p,
.lead-small,
.section-side-text{
  margin:16px 0 0;
  font-size:19px;
  line-height:1.8;
  color:var(--muted);
}

.service-grid{
  display:grid;
  gap:24px;
}

.service-grid.compact{
  margin-top:28px;
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.service-grid.numbered{
  margin-top:48px;
  grid-template-columns:repeat(4, minmax(0, 1fr));
}

.service-card{
  border-radius:28px;
  background:rgba(255,255,255,0.03);
  padding:24px;
}

.service-card h3,
.service-card-large h3{
  margin:0;
  font-size:22px;
}

.service-card p,
.service-card-large p{
  margin:10px 0 0;
  color:rgba(255,255,255,0.66);
  font-size:15px;
  line-height:1.8;
}

.service-card-large{
  border-radius:32px;
  background:rgba(255,255,255,0.05);
  padding:28px;
}

.num{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  margin-bottom:18px;
  border-radius:18px;
  background:linear-gradient(135deg, rgba(125,211,252,0.28), rgba(167,243,208,0.16));
  font-size:14px;
  font-weight:800;
}

.about-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:40px;
  align-items:start;
}

.feature-list{
  display:grid;
  gap:16px;
}

.feature-item{
  border-radius:24px;
  background:rgba(15,23,42,0.82);
  padding:22px 24px;
  font-size:17px;
  color:rgba(255,255,255,0.92);
  font-weight:600;
}

.section-header-row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:32px;
}

.compact-intro{
  max-width:740px;
}

.section-side-text{
  max-width:480px;
  font-size:17px;
}

.sector-grid{
  margin-top:38px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}

.sector-card{
  border-radius:24px;
  background:linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  padding:24px;
  font-size:24px;
  line-height:1.35;
  font-weight:600;
  color:rgba(255,255,255,0.92);
}

.contact-shell{
  overflow:hidden;
  border-radius:34px;
  border:1px solid var(--line);
  background:linear-gradient(135deg, rgba(56,189,248,0.15), rgba(2,6,23,1) 52%, rgba(134,239,172,0.10));
  box-shadow:0 28px 80px rgba(2,6,23,0.65);
  padding:44px;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 0.92fr;
  gap:40px;
}

.contact-card{
  border-radius:30px;
  background:rgba(2,6,23,0.60);
  padding:26px;
  backdrop-filter:blur(12px);
}

.contact-item + .contact-item{
  margin-top:22px;
}

.contact-label{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:0.25em;
  color:rgba(255,255,255,0.45);
}

.contact-value{
  margin-top:8px;
  font-size:26px;
  font-weight:600;
}

.contact-text{
  margin-top:8px;
  font-size:17px;
  line-height:1.8;
  color:var(--muted);
}

.btn-email{
  margin-top:28px;
}

@media (max-width: 1100px){
  .hero-grid,
  .about-grid,
  .contact-grid,
  .section-header-row{
    grid-template-columns:1fr;
  }

  .section-header-row{
    display:grid;
    align-items:start;
  }

  .service-grid.numbered{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px){
  .nav{display:none}

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

  .section-intro h2,
  .about-grid h2,
  .section-header-row h2,
  .contact-grid h2,
  .hero-panel .panel-head h2{
    font-size:36px;
  }

  .stats-grid,
  .service-grid.compact,
  .service-grid.numbered,
  .sector-grid{
    grid-template-columns:1fr;
  }

  .container{
    width:min(1200px, calc(100% - 32px));
  }

  .hero-grid{
    padding:54px 0 82px;
  }

  .section{
    padding:72px 0;
  }

  .contact-shell{
    padding:28px;
  }

  .header-inner{
    min-height:72px;
  }

  .brand-name{
    font-size:14px;
  }

  .btn-outline{
    padding:11px 16px;
    font-size:13px;
  }
}

@media (max-width: 560px){
  .hero h1{font-size:40px}
  .lead{font-size:18px}
  .brand-url{letter-spacing:0.24em}
  .contact-value{font-size:22px}
}
