/* ============================================================
   HOME PAGE — SPECIFIC STYLES
============================================================ */

/* ── HERO ─────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  position: relative; overflow: hidden;
  min-height: calc(100svh - var(--nav-h));
  display: flex; flex-direction: column;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-bg::after {
  content: ''; position: absolute; right: -100px; bottom: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 65%);
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 4rem; align-items: center;
  flex: 1; padding-top: 4rem; padding-bottom: 3rem;
}

/* text side */
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: 50px; padding: 0.4rem 1rem;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); margin-bottom: 1.5rem;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent-lt);
  animation: bdot 2s ease infinite;
}
@keyframes bdot { 0%,100%{box-shadow:0 0 0 0 rgba(59,130,246,0.5);} 50%{box-shadow:0 0 0 6px rgba(59,130,246,0);} }

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  line-height: 1.08; color: var(--white);
  margin-bottom: 1.4rem;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-desc {
  color: rgba(255,255,255,0.62); font-size: 1.05rem;
  max-width: 530px; line-height: 1.8; margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 2.2rem; }

.hero-trust { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.trust-item { font-size: 0.82rem; color: rgba(255,255,255,0.55); font-weight: 500; display: flex; align-items: center; gap: 0.4rem; }
.trust-check { color: var(--accent-lt); font-weight: 700; }

/* card cluster */
.hero-card-cluster {
  position: relative; display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.hc {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem; backdrop-filter: blur(8px);
  transition: background var(--transition), border-color var(--transition);
}
.hc:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.hc-main { grid-column: 1 / -1; display: flex; align-items: center; gap: 1.1rem; }
.hc-icon { font-size: 2.2rem; }
.hc-label { font-family: var(--ff-display); font-size: 1.15rem; color: var(--white); }
.hc-sub { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }
.hc-sm { display: flex; align-items: center; gap: 0.65rem; font-size: 0.88rem; color: rgba(255,255,255,0.7); font-weight: 500; }
.hc-icon-sm { font-size: 1.3rem; }
.hc-stat {
  background: var(--accent);
  border-color: var(--accent-lt);
}
.hc-stat-num { font-family: var(--ff-display); font-size: 2.2rem; color: var(--white); line-height: 1; }
.hc-stat-num span { font-size: 1.4rem; }
.hc-stat-lbl { font-size: 0.74rem; color: rgba(255,255,255,0.75); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.3rem; }

/* ticker */
.hero-ticker {
  position: relative; z-index: 1;
  background: rgba(37,99,235,0.12);
  border-top: 1px solid rgba(37,99,235,0.2);
  border-bottom: 1px solid rgba(37,99,235,0.2);
  padding: 0.8rem 0; overflow: hidden;
}
.ticker-inner {
  display: inline-block; white-space: nowrap;
  animation: ticker 35s linear infinite;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── STATS ────────────────────────────── */
.stats-band {
  background: var(--off-white); padding: 3rem 0;
  border-bottom: 1px solid var(--gray-border);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem;
}

/* ── INTRO ────────────────────────────── */
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.intro-vis-inner { display: flex; flex-direction: column; gap: 1rem; }
.iv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.iv-block {
  border-radius: var(--radius-lg); padding: 1.75rem 1.5rem;
}
.iv-navy { background: var(--navy); }
.iv-slate { background: var(--slate); }
.iv-light { background: var(--off-white); border: 1px solid var(--gray-border); }
.iv-full { }
.iv-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.iv-title { font-family: var(--ff-display); font-size: 1.05rem; margin-bottom: 0.3rem; }
.iv-navy .iv-title, .iv-slate .iv-title { color: var(--white); }
.iv-light .iv-title { color: var(--navy); }
.iv-sub { font-size: 0.8rem; }
.iv-navy .iv-sub, .iv-slate .iv-sub { color: rgba(255,255,255,0.55); }
.iv-light .iv-sub { color: var(--text-muted); }

/* ── SERVICES ─────────────────────────── */
.bg-lightgray { background: var(--gray-light); }
.section-header { margin-bottom: 3rem; }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem;
}
.services-cta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-top: 3rem;
}

/* ── INDUSTRIES ───────────────────────── */
.industries-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  position: relative; overflow: hidden;
}
.industries-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.industries-section .container { position: relative; z-index: 1; }
.industries-section .section-header { text-align: center; align-items: center; }
.ind-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2.5rem;
}
.ind-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 1.75rem 1.25rem;
  text-align: center; cursor: default;
  transition: all var(--transition);
}
.ind-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(37,99,235,0.4); transform: translateY(-3px); }
.ind-card span { font-size: 2rem; display: block; margin-bottom: 0.65rem; }
.ind-card h4 { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.07em; color: rgba(255,255,255,0.7); text-transform: uppercase; }

/* ── WHY US ───────────────────────────── */
.whyus-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.why-list { display: flex; flex-direction: column; gap: 0.8rem; }
.why-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; color: var(--text-body); }
.wl-dot { color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 0.1rem; }

/* quality card */
.quality-card {
  background: var(--white); border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-md);
}
.qc-header { margin-bottom: 1.75rem; }
.qc-item { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 0.75rem; margin-bottom: 1.2rem; row-gap: 0.35rem; }
.qci-label { font-size: 0.82rem; font-weight: 600; color: var(--slate); grid-column: 1; }
.qci-pct { font-size: 0.82rem; font-weight: 700; color: var(--navy); grid-column: 2; grid-row: 1 / 3; }
.qci-bar { height: 7px; background: var(--gray-light); border-radius: 50px; grid-column: 1; overflow: hidden; }
.qci-fill { height: 100%; background: linear-gradient(90deg, var(--navy), var(--accent)); border-radius: 50px; }
.qc-foot { display: flex; justify-content: space-between; padding-top: 1.5rem; border-top: 1px solid var(--gray-border); margin-top: 0.5rem; text-align: center; }
.qcf-n { font-family: var(--ff-display); font-size: 1.7rem; color: var(--navy); }
.qcf-l { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }

/* ── CTA BANNER ───────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  padding: 4.5rem 0; border-top: 3px solid var(--accent);
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 2rem;
}

/* ── RESPONSIVE ───────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card-cluster { display: none; }
  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .whyus-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ind-grid { grid-template-columns: repeat(3,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 580px) {
  .services-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: repeat(2,1fr); }
  .cta-inner { flex-direction: column; text-align: center; align-items: center; }
}
