@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root{
  --primary: #2563eb;
  --primary2: #06b6d4;
  --shadow: 0 18px 40px rgba(0,0,0,0.12);
  --shadow2: 0 10px 24px rgba(0,0,0,0.12);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: #0d0f12;
  background: #f6f7fb;
}

a{ color: inherit; text-decoration:none; }

.container{
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* ===== Header ===== */
.header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav{
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 10px 0;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 0;
}

.brand-link{
  display: inline-flex;
  align-items: center;
}

.logo-img{
  height: 52px;
  width: auto;
  max-width: 230px;
  display: block;
  object-fit: contain;
}

.brand-text{
  display:flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name{
  font-size: 14px;
  font-weight: 800;
  color: #0d0f12;
  letter-spacing: 0.2px;
}

.brand-tag{
  font-size: 12px;
  color: #5a6472;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 4px;
}

.menu{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content:flex-end;
}

.menu a{
  font-size: 14px;
  padding: 9px 12px;
  border-radius: 12px;
  color:#1d2430;
  transition: all 0.2s ease;
}

.menu a:hover{
  background: rgba(37,99,235,0.10);
  color: #0b2f8f;
}

.menu a.active{
  background: #111;
  color: #fff;
}

/* ===== Hero (Home) ===== */
.hero{
  position: relative;
  padding: 64px 0;
  background:
    linear-gradient(135deg, rgba(37,99,235,0.55), rgba(6,182,212,0.25)),
    url("assets/hero.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow:hidden;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.15), transparent 45%);
  pointer-events:none;
}

.hero-grid{
  position: relative;
  display:grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  align-items: start;
}

h1{
  margin:0 0 14px;
  font-size: 36px;
  line-height: 1.12;
  letter-spacing: -0.6px;
}

h2{
  margin:0 0 10px;
  font-size: 22px;
}

h3{
  margin:0 0 8px;
  font-size: 18px;
}

.muted{
  color: rgba(255,255,255,0.86);
  line-height: 1.7;
}

.cta{
  display:flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  background: #111;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.20);
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover{ transform: translateY(-2px); opacity: 0.96; }

.btn-outline{
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
}

.hero-badges{
  display:flex;
  gap:10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.badge{
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
}

/* Stats strip */
.stats{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stat{
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 14px;
}

.stat .num{
  font-weight: 700;
  font-size: 16px;
}

.stat .label{
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
}

/* ===== Sections ===== */
.section{
  padding: 54px 0;
}

.section-title{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-title p{
  color: #5b6472;
  max-width: 760px;
  line-height: 1.6;
  margin: 6px 0 0;
}

.section.alt{
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* ===== Cards ===== */
.card{
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow2);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card.highlight{
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 22px 55px rgba(0,0,0,0.18);
  color: #fff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.card.highlight p{ color: rgba(255,255,255,0.88); }
.card.highlight .list{ color: rgba(255,255,255,0.88); }
.card.highlight a{ color: #fff; text-decoration: underline; }

.card.highlight h2{
  font-size: 20px;
  margin-bottom: 12px;
}

.card.highlight .list li{
  margin-bottom: 10px;
}
.card.highlight .list li:last-child{
  margin-bottom: 0;
}

.card-top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}

.icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  font-weight: 700;
}

.card p{
  color: #556070;
  line-height: 1.6;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: #415061;
  line-height: 1.75;
}

/* Track record highlight card */
.track-card{
  margin-top: 14px;
  background: linear-gradient(135deg, rgba(37,99,235,0.10), rgba(6,182,212,0.10));
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 22px;
  padding: 16px 18px;
  box-shadow: var(--shadow2);
}

.track-card p{
  margin: 0 0 10px;
  color: #334155;
  line-height: 1.7;
}

.track-card p:last-child{
  margin-bottom: 0;
}

/* ===== Page Head ===== */
.page-head{
  padding: 34px 0;
  background: linear-gradient(180deg, #ffffff, #f7f8fd);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.page-muted{
  color: #5b6472;
  line-height: 1.6;
}

.contact-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.form{
  display:grid;
  gap: 10px;
  margin-top: 12px;
}

.form-note{
  color: #5b6472;
  margin-top: 4px;
  line-height: 1.6;
}

label{
  font-size: 13px;
  color: #334155;
  font-weight: 600;
}

input, textarea{
  width: 100%;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.10);
  font-size: 14px;
  outline: none;
  background: #fff;
}

input:focus, textarea:focus{
  border-color: rgba(37,99,235,0.6);
  box-shadow: 0 0 0 5px rgba(37,99,235,0.12);
}

button.btn{
  cursor:pointer;
}

.map-box{
  margin-top: 14px;
}

/* ===== Mini boxes (Hero card) ===== */
.mini{
  margin-top: 12px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mini-box{
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(0,0,0,0.12);
  border-radius: 14px;
  padding: 12px;
}

.mini-title{
  font-size: 12px;
  color: rgba(255,255,255,0.85);
}

.mini-text{
  font-size: 14px;
  margin-top: 4px;
  font-weight: 700;
}

/* ===== Services page hero ===== */
.services-hero{
  position: relative;
  padding: 64px 0;
  background: url("assets/services.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}

.services-hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,24,39,0.85), rgba(37,99,235,0.55));
}

.services-hero-content{
  position: relative;
}

.services-hero-muted{
  max-width: 720px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
}

/* CTA strip */
.cta-strip{
  padding: 44px 0;
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(6,182,212,0.12));
  border-top: 1px solid rgba(0,0,0,0.06);
}

.cta-strip-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow2);
}

.cta-strip-inner h2{
  margin: 0;
  font-size: 20px;
}

.cta-strip-inner p{
  margin: 6px 0 0;
  color: #5b6472;
  line-height: 1.6;
}

.cta-strip-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-outline-dark{
  background: transparent;
  color: #111;
  border: 1px solid rgba(0,0,0,0.15);
}

/* ===== Footer ===== */
.footer{
  border-top: 1px solid rgba(0,0,0,0.06);
  background: #fff;
  padding: 28px 0;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 14px;
  align-items: start;
}

.footer-title{
  font-weight: 700;
  margin-bottom: 6px;
}

.footer-links{
  display:grid;
  gap: 6px;
}

.footer-links a{
  color: #415061;
}

.footer-links a:hover{
  text-decoration: underline;
}

.footer-muted{
  color: #5b6472;
  line-height: 1.6;
}

.footer-bottom{
  margin-top: 16px;
  font-size: 13px;
  color: #5b6472;
}

/* ===== Responsive ===== */
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  h1{ font-size: 28px; }
  .stats{ grid-template-columns: 1fr; }
  .cta-strip-inner{ flex-direction: column; align-items: flex-start; }
  .brand-tag{ display:none; }
}
/* ===== About hero ===== */
.about-hero{
  position: relative;
  padding: 64px 0;
  background:
    linear-gradient(135deg, rgba(17,24,39,0.75), rgba(37,99,235,0.35)),
    url("assets/hero.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}

.about-hero-overlay{
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.10), transparent 45%);
}

.about-hero-content{
  position: relative;
}

.about-hero-muted{
  max-width: 780px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
}

.about-badges{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.list li{
  margin-bottom: 8px;
}
.list li:last-child{
  margin-bottom: 0;
}
