/* ── HOME PAGE ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 66px;
}
.hero-left {
  background: var(--cream);
  padding: clamp(60px,8vw,110px) var(--pad) 72px;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--rule);
}
.hero-label {
  font-family: var(--f-mono); font-size: .64rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px;
}
.hero-label::before { content: ''; width: 28px; height: 1px; background: var(--teal); display: block; }
.hero-title {
  font-family: var(--f-display);
  font-size: clamp(3.2rem,6.5vw,6rem);
  font-weight: 400; line-height: 1.0;
  color: var(--ink); margin-bottom: 24px;
}
.hero-body { font-size: .95rem; color: var(--muted); max-width: 420px; margin-bottom: 40px; line-height: 1.72; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-certs {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid var(--rule);
}
.hero-certs span { font-family: var(--f-mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.hero-certs .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--rule); }

.hero-right { position: relative; overflow: hidden; min-height: 500px; }
.hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(13,27,53,.6) 100%); }
.hero-card {
  position: absolute; bottom: 32px; left: 32px; right: 32px;
  background: rgba(255,255,255,.96); backdrop-filter: blur(16px);
  border-radius: var(--r2); padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 8px 32px rgba(13,27,53,.25);
}
.hc-dot { width: 9px; height: 9px; border-radius: 50%; background: #22C55E; box-shadow: 0 0 8px rgba(34,197,94,.5); flex-shrink: 0; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.2)} }
.hc-text { flex: 1; }
.hc-ref { font-family: var(--f-mono); font-size: .62rem; color: var(--muted); letter-spacing: .06em; }
.hc-title { font-size: .9rem; font-weight: 700; color: var(--ink); }
.hc-check { font-size: 1.1rem; color: #22C55E; font-weight: 700; }

/* Stats */
.stats-bar { border-bottom: 1px solid var(--rule); padding: 28px 0; }
.stats-inner { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.stat { text-align: center; padding: 8px 48px; display: flex; flex-direction: column; }
.stat-n { font-family: var(--f-display); font-size: 2.4rem; font-weight: 400; color: var(--ink); }
.stat-l { font-family: var(--f-mono); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.stat-sep { width: 1px; height: 52px; background: var(--rule); }

/* Services */
.svcs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: var(--r3); overflow: hidden; }
.svc-card { background: var(--white); padding: 44px 40px; display: flex; flex-direction: column; gap: 12px; transition: background .2s; text-decoration: none; cursor: pointer; }
.svc-card:hover { background: var(--cream); }
.svc-num { font-family: var(--f-mono); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--teal); }
.svc-ico { width: 38px; height: 38px; color: var(--ink); }
.svc-title { font-family: var(--f-display); font-size: 1.4rem; font-weight: 500; color: var(--ink); }
.svc-card p { font-size: .86rem; flex: 1; }
.svc-cta { font-family: var(--f-mono); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-top: 4px; }

@media(max-width:900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 400px; }
  .svcs-grid { grid-template-columns: 1fr; }
  .stats-inner { gap: 0; }
  .stat { padding: 12px 24px; }
  .stat-sep { width: 100%; height: 1px; }
}
@media(max-width:480px) {
  .hero-left { padding-bottom: 52px; }
}