*{box-sizing:border-box}
:root{
  --bg:#ffffff;
  --text:#182033;
  --muted:#5f6780;
  --line:#e7eaf1;
  --primary:#17306b;
  --primary-2:#2e4fa8;
  --gold:#b38a36;
  --soft:#f7f9fc;
  --shadow:0 14px 40px rgba(19,48,107,.10);
  --radius:22px;
  --container:1160px;
}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(46,79,168,.05), transparent 22%),
    radial-gradient(circle at bottom right, rgba(179,138,54,.07), transparent 24%),
    #fff;
  line-height:1.6;
}
.container{
  width:min(calc(100% - 32px), var(--container));
  margin:0 auto;
}
.topbar{
  border-bottom:1px solid var(--line);
  background:#fff;
}
.topbar-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:14px 0;
}
.brand-small{font-weight:700;color:var(--primary)}
.mini-link{color:var(--primary);text-decoration:none;font-weight:700}
.hero{
  padding:56px 0 40px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:28px;
  align-items:center;
}
.label,.section-label{
  display:inline-block;
  color:var(--primary);
  font-weight:700;
  letter-spacing:.02em;
}
.hero h1{
  margin:10px 0 16px;
  font-size:clamp(34px, 5vw, 62px);
  line-height:1.05;
}
.lead{
  font-size:18px;
  color:var(--muted);
  max-width:720px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:16px;
  margin-top:24px;
}
.schedule{
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px 18px;
  background:#fff;
  box-shadow:var(--shadow);
}
.schedule span{
  display:block;
  color:var(--muted);
  font-size:14px;
}
.card{
  background:linear-gradient(180deg,#ffffff,#f8fbff);
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px;
  box-shadow:var(--shadow);
}
.card h2{
  margin:0 0 10px;
  font-size:26px;
}
.card ul{
  margin:0;
  padding:0;
  list-style:none;
}
.card li{
  padding:14px 0;
  border-bottom:1px solid var(--line);
  font-weight:700;
}
.card li:last-child{border-bottom:none}
.section{
  padding:56px 0;
}
.section-soft{
  background:linear-gradient(180deg, rgba(247,249,252,.95), rgba(255,255,255,1));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.center{text-align:center}
.narrow{max-width:900px}
h2{
  font-size:clamp(28px, 4vw, 42px);
  margin:8px 0 12px;
  line-height:1.1;
}
.grid{
  display:grid;
  gap:20px;
}
.services-grid{
  grid-template-columns:repeat(2, minmax(0,1fr));
  margin-top:22px;
}
.service-card,.team-card,.contact-box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.service-card{
  padding:22px;
}
.service-card h3,.team-card h3{
  margin:10px 0 8px;
  font-size:24px;
}
.service-card p,.team-card p,.footer p,.contact-copy p{
  margin:0;
  color:var(--muted);
}
.num{
  width:50px;
  height:50px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(23,48,107,.08);
  color:var(--primary);
  font-weight:800;
}
.team-grid{
  grid-template-columns:repeat(2, minmax(0,1fr));
  margin-top:22px;
}
.team-card{
  padding:26px;
}
.pill{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(179,138,54,.12);
  color:#7d5b13;
  font-weight:700;
}
.contact-box{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  padding:26px;
}
.contact-data{
  display:grid;
  gap:14px;
}
.data-item{
  border-bottom:1px solid var(--line);
  padding-bottom:14px;
}
.data-item:last-child{
  border-bottom:none;
  padding-bottom:0;
}
.data-item span{
  display:block;
  color:var(--muted);
  font-size:14px;
  margin-bottom:4px;
}
.btn{
  display:inline-block;
  text-decoration:none;
  padding:14px 22px;
  border-radius:999px;
  font-weight:700;
}
.btn-primary{
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  color:#fff;
}
.footer{
  border-top:1px solid var(--line);
  background:#fbfcfe;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:28px 0;
}
.floating-wa{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:20;
  background:#25D366;
  color:#fff;
  text-decoration:none;
  padding:14px 18px;
  border-radius:999px;
  font-weight:700;
  box-shadow:0 14px 32px rgba(37,211,102,.28);
}
.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .5s ease, transform .5s ease;
}
.reveal.visible{
  opacity:1;
  transform:none;
}
@media (max-width: 900px){
  .hero-grid,
  .services-grid,
  .team-grid,
  .contact-box,
  .footer-inner,
  .topbar-inner{
    grid-template-columns:1fr;
    display:grid;
  }
}
@media (max-width: 640px){
  .hero{
    padding-top:40px;
  }
  .floating-wa{
    left:16px;
    right:16px;
    text-align:center;
  }
}
