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

html{
  scroll-behavior:smooth;
}

body{
  font-family:Inter,Arial,sans-serif;
  background:#06111E;
  color:white;
  line-height:1.6;
}

.container{
  width:90%;
  max-width:1280px;
  margin:auto;
}

.navbar{
  position:fixed;
  top:0;
  width:100%;
  z-index:100;
  background:rgba(6,17,30,0.9);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,0.05);
}

.nav-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:24px 0;
}

.logo h1{
  font-size:28px;
}

.logo{
  color:white;
  text-decoration:none;
}

.logo span{
  color:#67e8f9;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:3px;
}

nav{
  display:flex;
  gap:32px;
}

nav a{
  color:#cbd5e1;
  text-decoration:none;
  transition:0.3s;
}

nav a:hover{
  color:white;
}

nav a.active{
  color:#67e8f9;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 28px;
  border-radius:18px;
  font-weight:600;
  cursor:pointer;
  text-decoration:none;
  transition:0.3s;
}

.btn-primary{
  background:#67e8f9;
  color:black;
}

.btn-primary:hover{
  background:#a5f3fc;
}

.btn-secondary{
  border:1px solid rgba(255,255,255,0.1);
  color:white;
}

.btn-secondary:hover{
  background:rgba(255,255,255,0.05);
}

.hero{
  position:relative;
  padding:180px 0 120px;
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  top:-200px;
  right:-200px;
  width:700px;
  height:700px;
  background:rgba(34,211,238,0.08);
  filter:blur(120px);
  border-radius:50%;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:80px;
  position:relative;
  z-index:2;
}

.badge{
  display:inline-block;
  border:1px solid rgba(103,232,249,0.2);
  background:rgba(103,232,249,0.05);
  color:#67e8f9;
  padding:10px 18px;
  border-radius:999px;
  margin-bottom:30px;
}

.hero h2{
  font-size:72px;
  line-height:1.05;
  max-width:800px;
}

.hero p{
  margin-top:32px;
  color:#cbd5e1;
  font-size:22px;
  max-width:700px;
}

.hero-signature{
  margin-top:22px !important;
  color:#67e8f9 !important;
  font-size:20px !important;
  font-weight:600;
}

.hero-buttons{
  display:flex;
  gap:20px;
  margin-top:40px;
  flex-wrap:wrap;
}

.stats{
  display:flex;
  gap:50px;
  margin-top:60px;
}

.stats strong{
  display:block;
  font-size:42px;
}

.stats span{
  color:#94a3b8;
}

.glass-card{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:36px;
  padding:32px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  backdrop-filter:blur(20px);
}

.mini-card{
  background:#0B1728;
  border-radius:28px;
  padding:28px;
  border:1px solid rgba(255,255,255,0.05);
  color:white;
  text-decoration:none;
  transition:transform 0.3s, border-color 0.3s, background 0.3s;
}

.mini-card:hover{
  transform:translateY(-4px);
  border-color:rgba(103,232,249,0.45);
  background:#102238;
}

.mini-card h3{
  margin-bottom:16px;
}

.mini-card p{
  font-size:15px;
  color:#94a3b8;
  margin-top:0;
}

.section{
  padding:120px 0;
}

.dark{
  background:#0B1728;
}

.center{
  text-align:center;
}

.section-tag{
  color:#67e8f9;
  text-transform:uppercase;
  letter-spacing:4px;
  font-size:12px;
}

.section h2{
  font-size:56px;
  margin-top:20px;
  line-height:1.1;
}

.center p{
  max-width:900px;
  margin:30px auto 0;
  font-size:22px;
  color:#94a3b8;
}

.process-section{
  background:#f6f9fb;
  color:#06111E;
}

.methodology-visual-section{
  padding:110px 0;
  background:#07111f;
}

.methodology-heading{
  max-width:900px;
  margin:0 auto;
  text-align:center;
}

.methodology-heading h2{
  margin-top:20px;
  color:white;
  font-size:48px;
  line-height:1.1;
}

.methodology-heading p{
  max-width:760px;
  margin:24px auto 0;
  color:#b9c9d6;
  font-size:19px;
}

.acute-methodology{
  display:block;
  width:100%;
  margin:58px auto 0;
  overflow:hidden;
  border:1px solid rgba(103,232,249,0.16);
  border-radius:20px;
  background:#07111f;
}

.acute-methodology img{
  display:block;
  width:100%;
  height:auto;
}

.methodology-legend{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:24px;
  margin-top:28px;
}

.methodology-legend dl{
  padding-top:16px;
  border-top:1px solid rgba(103,232,249,0.28);
}

.methodology-legend dt{
  color:#67e8f9;
  font-weight:700;
}

.methodology-legend dd{
  margin-top:7px;
  color:#b9c9d6;
  font-size:13px;
}

.process-heading{
  display:grid;
  grid-template-columns:1fr 0.75fr;
  gap:80px;
  align-items:end;
}

.process-heading h2,
.reasons-section h2{
  max-width:800px;
  margin-top:20px;
  font-size:48px;
  line-height:1.1;
}

.process-heading p{
  max-width:430px;
  color:#526273;
  font-size:18px;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  margin-top:64px;
  border-top:1px solid #cbd8df;
}

.process-step{
  min-height:220px;
  padding:28px 28px 0 0;
  border-right:1px solid #cbd8df;
}

.process-step:not(:first-child){
  padding-left:28px;
}

.process-step:last-child{
  border-right:0;
}

.process-step > span{
  color:#07899a;
  font-size:13px;
  letter-spacing:2px;
  font-weight:700;
}

.process-step h3{
  margin-top:30px;
  font-size:26px;
}

.process-step p{
  margin-top:12px;
  color:#526273;
}

.reasons-section h2{
  color:white;
}

.reasons-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  margin-top:56px;
}

.reasons-grid article{
  padding-top:24px;
  border-top:1px solid rgba(103,232,249,0.35);
}

.reasons-grid h3{
  font-size:24px;
}

.reasons-grid p{
  margin-top:14px;
  color:#94a3b8;
  font-size:17px;
}

.glossary-section{
  background:#f6f9fb;
  color:#06111E;
}

.glossary-section h2{
  margin-top:20px;
  font-size:48px;
  line-height:1.1;
}

.glossary-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  margin-top:52px;
}

.glossary-grid dl{
  padding-top:20px;
  border-top:1px solid #cbd8df;
}

.glossary-grid dt{
  color:#07899a;
  font-size:20px;
  font-weight:700;
}

.glossary-grid dd{
  margin-top:10px;
  color:#526273;
}

.handover-section{
  display:grid;
  grid-template-columns:0.8fr 1.2fr;
  gap:80px;
  align-items:start;
}

.handover-section h2{
  margin-top:20px;
  font-size:48px;
  line-height:1.1;
}

.handover-section > div:first-child p{
  margin-top:24px;
  color:#94a3b8;
  font-size:18px;
}

.handover-list{
  display:grid;
  gap:0;
}

.handover-list div{
  display:grid;
  gap:5px;
  padding:20px 0;
  border-top:1px solid rgba(255,255,255,0.12);
}

.handover-list div:last-child{
  border-bottom:1px solid rgba(255,255,255,0.12);
}

.handover-list strong{
  font-size:20px;
}

.handover-list span{
  color:#94a3b8;
}

.cards-grid{
  margin-top:70px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.card{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:32px;
  padding:40px;
  color:white;
  text-decoration:none;
  transition:transform 0.3s, border-color 0.3s, background 0.3s;
}

.card:hover{
  transform:translateY(-5px);
  border-color:rgba(103,232,249,0.45);
  background:rgba(103,232,249,0.06);
}

.card h3{
  font-size:32px;
  margin-bottom:20px;
}

.card p{
  color:#94a3b8;
  font-size:18px;
}

.missions-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  margin-top:60px;
}

.mission-item{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:24px;
  padding:30px;
  font-size:20px;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
}

.secondary-text{
  margin-top:30px;
  color:#94a3b8;
}

.about-signature{
  margin-top:26px;
  color:#67e8f9;
  font-size:20px;
  font-weight:600;
}

.cta-section{
  padding:120px 0;
}

.cta-box{
  background:linear-gradient(135deg,rgba(34,211,238,0.15),rgba(59,130,246,0.08));
  border:1px solid rgba(103,232,249,0.1);
  border-radius:48px;
  padding:80px;
  text-align:center;
}

.cta-box p{
  max-width:800px;
  margin:30px auto 0;
  color:#cbd5e1;
  font-size:22px;
}

footer{
  background:#050D17;
  border-top:1px solid rgba(255,255,255,0.05);
  padding:80px 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px;
}

footer h3{
  font-size:32px;
}

footer span{
  color:#67e8f9;
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:12px;
}

footer p{
  margin-top:20px;
  color:#94a3b8;
}

footer h4{
  margin-bottom:20px;
}

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

footer h4 a:hover{
  color:#67e8f9;
}

footer ul{
  list-style:none;
}

footer li{
  margin-bottom:12px;
  color:#94a3b8;
}

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

footer li a:hover{
  color:#67e8f9;
}

.page-hero{
  position:relative;
  padding:190px 0 100px;
  overflow:hidden;
  background:linear-gradient(135deg,#06111E 0%,#0B1728 70%,#123346 100%);
}

.page-hero::after{
  content:"";
  position:absolute;
  right:-160px;
  bottom:-260px;
  width:520px;
  height:520px;
  border:1px solid rgba(103,232,249,0.16);
  border-radius:50%;
  box-shadow:0 0 0 70px rgba(103,232,249,0.03),0 0 0 140px rgba(103,232,249,0.02);
}

.narrow{
  max-width:900px;
  margin-left:max(5%, calc((100% - 1280px) / 2));
  position:relative;
  z-index:1;
}

.page-hero h2{
  max-width:900px;
  margin-top:20px;
  font-size:64px;
  line-height:1.08;
}

.page-hero p{
  max-width:720px;
  margin-top:28px;
  color:#cbd5e1;
  font-size:21px;
}

.detail-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}

.detail-card{
  min-height:330px;
  padding:42px;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.03);
  border-radius:28px;
}

.detail-number{
  display:block;
  color:#67e8f9;
  font-size:14px;
  letter-spacing:3px;
  font-weight:700;
}

.detail-card h3,
.values-grid h3{
  margin-top:24px;
  font-size:30px;
}

.detail-card p,
.values-grid p{
  margin-top:16px;
  color:#94a3b8;
  font-size:17px;
}

.detail-card ul{
  margin-top:24px;
  padding-left:18px;
  color:#cbd5e1;
}

.detail-card li{
  margin-top:8px;
}

.timeline{
  max-width:980px;
  margin:auto;
  border-left:1px solid rgba(103,232,249,0.35);
}

.timeline-item{
  display:block;
  position:relative;
  padding:0 0 64px 36px;
}

.timeline-item:last-child{
  padding-bottom:0;
}

.timeline-item > span{
  position:absolute;
  left:-18px;
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border:1px solid #67e8f9;
  border-radius:50%;
  background:#0B1728;
  color:#67e8f9;
  font-size:12px;
  font-weight:700;
}

.timeline-item h3{
  font-size:30px;
}

.timeline-item p{
  max-width:700px;
  margin-top:12px;
  color:#94a3b8;
  font-size:18px;
}

.timeline-item strong{
  display:block;
  margin-top:18px;
  color:#67e8f9;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
}

.values-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.build-section{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:80px;
  align-items:start;
}

.build-section > div:first-child h2{
  margin-top:20px;
  font-size:48px;
  line-height:1.1;
}

.build-section > div:first-child p{
  margin-top:24px;
  color:#94a3b8;
  font-size:18px;
}

.build-steps{
  display:grid;
  gap:18px;
}

.build-steps article{
  display:grid;
  grid-template-columns:52px 1fr;
  gap:22px;
  align-items:start;
  padding:24px 0;
  border-top:1px solid rgba(255,255,255,0.1);
}

.build-steps article:last-child{
  border-bottom:1px solid rgba(255,255,255,0.1);
}

.build-steps article > span{
  color:#67e8f9;
  font-size:13px;
  letter-spacing:2px;
  font-weight:700;
}

.build-steps h3{
  font-size:24px;
}

.build-steps p{
  margin-top:7px;
  color:#94a3b8;
}

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

.contact-intro h2{
  margin-top:20px;
  font-size:48px;
  line-height:1.1;
}

.contact-intro > p{
  margin-top:24px;
  color:#94a3b8;
  font-size:18px;
}

.contact-links{
  display:grid;
  gap:20px;
  margin-top:40px;
}

.contact-links a,
.contact-links div{
  display:grid;
  gap:3px;
  color:white;
  text-decoration:none;
}

.contact-links a:hover span{
  color:#67e8f9;
}

.contact-links span{
  color:#94a3b8;
}

.contact-note{
  padding:38px;
  border:1px solid rgba(103,232,249,0.2);
  border-radius:28px;
  background:rgba(103,232,249,0.05);
}

.contact-note h3{
  margin-top:22px;
  font-size:30px;
}

.contact-note p{
  margin-top:16px;
  color:#cbd5e1;
  font-size:18px;
}

.contact-note .btn{
  margin-top:28px;
}

.legal-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
}

.legal-content h2{
  margin-top:18px;
  font-size:38px;
}

.legal-content dl{
  margin-top:28px;
}

.legal-content dt{
  margin-top:20px;
  color:#67e8f9;
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
}

.legal-content dd{
  margin-top:4px;
  color:#cbd5e1;
  font-size:18px;
}

.legal-warning{
  margin-top:36px;
  padding:20px;
  border-left:2px solid #67e8f9;
  background:rgba(103,232,249,0.05);
  color:#94a3b8;
}

.legal-host{
  grid-column:1 / -1;
  padding-top:34px;
  border-top:1px solid rgba(255,255,255,0.1);
}

.legal-host h2{
  font-size:30px;
}

.contact-form{
  display:grid;
  gap:10px;
  padding:38px;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:28px;
  background:#0B1728;
}

.contact-form label{
  margin-top:14px;
  color:#cbd5e1;
  font-size:14px;
  font-weight:600;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  padding:14px 16px;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:10px;
  background:#06111E;
  color:white;
  font:inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  outline:2px solid rgba(103,232,249,0.55);
  outline-offset:1px;
}

.contact-form textarea{
  resize:vertical;
}

.contact-form button{
  border:0;
  margin-top:20px;
}

.contact-form small{
  color:#94a3b8;
  font-size:12px;
}

@media(max-width:1024px){

  .hero-grid,
  .about-grid,
  .footer-grid,
  .cards-grid,
  .missions-list{
    grid-template-columns:1fr;
  }

  .glass-card{
    grid-template-columns:1fr;
  }

  .hero h2{
    font-size:52px;
  }

  .page-hero h2{
    font-size:52px;
  }

  .values-grid,
  .contact-grid,
  .build-section,
  .legal-content,
  .process-heading,
  .reasons-grid,
  .handover-section{
    grid-template-columns:1fr;
  }

  .section h2{
    font-size:42px;
  }

  nav{
    display:none;
  }
}

@media(max-width:768px){

  .hero{
    padding-top:150px;
  }

  .hero h2{
    font-size:42px;
  }

  .page-hero{
    padding-top:150px;
  }

  .page-hero h2{
    font-size:42px;
  }

  .hero p,
  .center p,
  .cta-box p{
    font-size:18px;
  }

  .stats{
    flex-direction:column;
    gap:24px;
  }

  .cta-box{
    padding:50px 30px;
  }

  .detail-card,
  .contact-form{
    padding:28px;
  }

  .timeline-item{
    padding-left:28px;
  }

  .timeline-item h3{
    font-size:25px;
  }

  .contact-intro h2{
    font-size:38px;
  }

  .build-section > div:first-child h2{
    font-size:38px;
  }

  .process-heading h2,
  .reasons-section h2,
  .glossary-section h2,
  .handover-section h2{
    font-size:38px;
  }

  .methodology-heading h2{
    font-size:38px;
  }

  .methodology-legend{
    grid-template-columns:1fr;
  }

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

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

  .process-step,
  .process-step:not(:first-child){
    min-height:0;
    padding:24px 0;
    border-right:0;
    border-bottom:1px solid #cbd8df;
  }

  .process-step:last-child{
    border-bottom:0;
  }
}
