:root{
  --blue:#129FE3;
  --blue2:#0077E6;
  --navy:#062B55;
  --soft:#EAF8FF;
  --line:#D9ECF7;
  --text:#173A5E;
  --muted:#5F7892;
  --white:#fff;
}

.about-hero-home{
  position:relative;
  height:690px;
  overflow:hidden;
}

.about-hero-bg{
  position:absolute;
  inset:0;
}

.about-hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:left center;
  filter:brightness(1.08) contrast(1.05);
}

.about-hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 72% 45%, rgba(18,159,227,.30), transparent 24%),
    linear-gradient(270deg,
      rgba(6,43,85,.96) 0%,
      rgba(6,43,85,.88) 32%,
      rgba(6,43,85,.58) 52%,
      rgba(6,43,85,.22) 72%,
      rgba(6,43,85,0) 100%
    );
}

.about-hero-dots{
  position:absolute;
  inset:0;
  background-image:radial-gradient(rgba(255,255,255,.22) 1px, transparent 1px);
  background-size:7px 7px;
  opacity:.34;
}

.about-hero-inner{
  position:relative;
  z-index:3;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:flex-end;
}

.about-hero-text{
  max-width:590px;
  color:#fff;
  margin-right:30px;
}

.hero-label{
  display:block;
  color:#7bd8ff;
  font-size:14px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:18px;
}

.about-hero-text h1{
  color:#fff;
  font-size:58px;
  line-height:1.08;
  margin:0 0 22px;
  font-weight:900;
}

.about-hero-text p{
  color:#fff;
  font-size:17px;
  line-height:1.8;
  max-width:520px;
  margin:0 0 18px;
}

.hero-btn{
  display:inline-flex;
  align-items:center;
  gap:12px;
  margin-top:12px;
  background:linear-gradient(135deg,#15B8F0,#0077E6);
  color:#fff;
  text-decoration:none;
  font-weight:900;
  padding:14px 24px;
  border-radius:12px;
  box-shadow:0 16px 35px rgba(0,119,230,.32);
}

.hero-btn b{
  width:24px;
  height:24px;
  border-radius:50%;
  background:#fff;
  color:#087dd1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.hero-points{
  display:flex;
  gap:34px;
  margin-top:34px;
}

.hero-points div{
  max-width:155px;
  padding-right:24px;
  border-right:1px solid rgba(255,255,255,.35);
}

.hero-points div:last-child{
  border-right:0;
}

.hero-points strong{
  display:block;
  color:#fff;
  font-size:14px;
  margin-bottom:7px;
}

.hero-points span{
  color:#dff6ff;
  font-size:12px;
  line-height:1.5;
}

.service-strip{
  position:relative;
  z-index:5;
  margin-top:-62px;
}

.service-box{
  background:#fff;
  border-radius:20px;
  box-shadow:0 24px 55px rgba(6,43,85,.12);
  display:grid;
  grid-template-columns:repeat(4,1fr);
  overflow:hidden;
}

.service-item{
  padding:34px 30px;
  text-align:center;
  border-right:1px solid var(--line);
}

.service-item:last-child{
  border-right:none;
}

.service-icon{
  width:54px;
  height:54px;
  margin:0 auto 18px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#18B6EE,#007BE8);
  color:#fff;
  font-size:22px;
  box-shadow:0 12px 24px rgba(18,159,227,.25);
}

.service-item h3{
  color:var(--navy);
  font-size:18px;
  margin:0 0 12px;
}

.service-item p{
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
  margin:0;
}

.stats-section{
  background:linear-gradient(90deg,#edfaff,#f7fcff);
  padding:54px 0;
  margin-top:50px;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  text-align:center;
}

.stats-grid div{
  border-right:1px solid #cfe8f6;
}

.stats-grid div:last-child{
  border-right:none;
}

.stats-grid strong{
  display:block;
  color:var(--blue);
  font-size:42px;
  line-height:1;
  margin-bottom:8px;
}

.stats-grid span{
  color:var(--navy);
  font-size:14px;
  font-weight:800;
}

.section{
  padding:95px 0;
}

.soft{
  background:linear-gradient(180deg,#effaff,#ffffff);
}

.eyebrow{
  display:inline-block;
  color:var(--blue);
  font-size:14px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:16px;
}

.story-grid,
.office-grid,
.location-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.story-text h2,
.office-text h2,
.location-text h2,
.section-head h2{
  color:var(--navy);
  font-size:42px;
  line-height:1.16;
  margin:0 0 24px;
}

.story-text p,
.office-text p,
.location-text p{
  color:var(--text);
  font-size:16px;
  line-height:1.85;
  margin:0 0 18px;
}

.story-cards{
  display:grid;
  gap:18px;
}

.story-card{
  background:linear-gradient(90deg,#f1fbff,#ffffff);
  border:1px solid var(--line);
  border-radius:14px;
  padding:22px 26px;
  color:var(--navy);
  font-weight:800;
}

.image-card{
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 22px 45px rgba(6,43,85,.13);
}

.image-card img{
  width:100%;
  height:390px;
  object-fit:cover;
  display:block;
}

.section-head{
  text-align:center;
  max-width:780px;
  margin:0 auto 48px;
}

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

.value-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:34px 26px;
  text-align:center;
}

.value-icon{
  width:58px;
  height:58px;
  margin:0 auto 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#e8f7ff;
  color:var(--blue);
  font-size:26px;
}

.value-card h3{
  color:var(--navy);
  font-size:18px;
  margin:0 0 12px;
}

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

.about-final-cta{
  background:linear-gradient(135deg,#0087DD,#14B8ED);
  color:#fff;
  padding:58px 0;
}

.final-cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.final-cta-inner h2{
  font-size:34px;
  margin:0 0 8px;
}

.final-cta-inner p{
  margin:0;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  min-height:48px;
  padding:0 26px;
  border-radius:12px;
  font-weight:800;
  text-decoration:none;
}

.btn.primary{
  background:linear-gradient(135deg,#10AEEB,#0077E6);
  color:#fff;
}

.btn.white{
  background:#fff;
  color:#087dd1;
}

.langs button.active{
  background:var(--blue);
  color:#fff;
}

@media(max-width:992px){
  .about-hero-home{
    height:auto;
    min-height:650px;
  }

  .about-hero-bg img{
    object-position:center center;
  }

  .about-hero-overlay{
    background:linear-gradient(180deg,
      rgba(6,43,85,.90) 0%,
      rgba(6,43,85,.70) 50%,
      rgba(6,43,85,.30) 100%
    );
  }

  .about-hero-inner{
    justify-content:flex-start;
    padding:90px 20px 120px;
  }

  .about-hero-text{
    margin-right:0;
  }

  .about-hero-text h1{
    font-size:42px;
  }

  .hero-points{
    flex-direction:column;
  }

  .hero-points div{
    border-right:0;
  }

  .service-box,
  .stats-grid,
  .story-grid,
  .office-grid,
  .location-grid,
  .values-grid{
    grid-template-columns:1fr;
  }

  .service-item{
    border-right:0;
    border-bottom:1px solid var(--line);
  }

  .stats-grid div{
    border-right:0;
    border-bottom:1px solid #cfe8f6;
    padding:22px 0;
  }

  .final-cta-inner{
    flex-direction:column;
    text-align:center;
  }
}