/* ═══════════════════════════════════════
   HOME PAGE CSS
   ═══════════════════════════════════════ */

.py-section { padding: 90px 0; }

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, #F0F5FF 0%, #F8FAFF 60%, #EEF3FF 100%);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,107,255,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  align-items: center;
  gap: .4rem;
  background: var(--blue-light);
  color: var(--blue);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 50px;
  width: fit-content;
  margin: 0 auto 0.4rem auto;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 2.4rem);
  line-height: 1.12;
  color: #fff;
  margin: 0.5rem 0;
}
.hero h1 span { color: var(--blue); }
p.lead {
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.75;
  max-width: 480px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg-circle {
  width: 340px; height: 340px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(26,107,255,.1) 0%, rgba(26,107,255,.05) 100%);
  border: 2px solid rgba(26,107,255,.12);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.hero-card-main {
  background: var(--white);
  border-radius: 18px;
  padding: 1.5rem 1.8rem;
  box-shadow: 0 16px 48px rgba(26,107,255,.14);
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
  max-width: 360px;
  border: 1px solid var(--border);
}
.hc-icon {
  width: 52px; height: 52px;
  background: var(--blue);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.hero-card-main strong { display: block; font-weight: 700; color: var(--navy); font-size: 1rem; }
.hero-card-main span { color: var(--muted); font-size: .8rem; }

.hero-card-float {
  background: var(--white);
  border-radius: 14px;
  padding: .85rem 1.1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .83rem;
  position: absolute;
  z-index: 3;
  border: 1px solid var(--border);
  min-width: 180px;
}
.card-float-1 { top: 10%; right: 0; }
.card-float-2 { bottom: 10%; left: 0; }
.hero-card-float strong { display: block; color: var(--navy); font-weight: 600; font-size: .88rem; }
.hero-card-float span { color: var(--muted); font-size: .75rem; }
.hcf-dot {
  width: 12px; height: 12px;
  background: #22C55E;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Stat Bar */
.stat-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}
.stat-item { text-align: center; }
.stat-item .num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat-item .num span { color: var(--blue); }
.stat-item p { margin: .3rem 0 0; font-size: .8rem; color: var(--muted); }
.stat-divider {
  width: 1px; height: 40px;
  background: var(--border);
  margin: 0 auto 1rem;
  position: absolute;
}

/* ─── ABOUT SECTION ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-card {
  border-radius: 16px;
  padding: 1.4rem;
  transition: transform .2s;
}
.about-card:hover { transform: translateY(-3px); }
.about-card i {
  font-size: 1.6rem;
  margin-bottom: .75rem;
  display: block;
}
.about-card h5 { font-size: .95rem; margin-bottom: .4rem; font-weight: 700; }
.about-card p { font-size: .82rem; line-height: 1.6; margin: 0; }
.ac-blue { background: var(--blue); color: #fff; }
.ac-blue i { color: rgba(255,255,255,.8); }
.ac-blue p { color: rgba(255,255,255,.8); }
.ac-white { background: var(--white); border: 1px solid var(--border); color: var(--text); }
.ac-white i { color: var(--blue); }
.ac-white p { color: var(--muted); }
.ac-dark { background: var(--navy); color: #fff; }
.ac-dark i { color: var(--blue); }
.ac-dark p { color: rgba(255,255,255,.65); }

/* ─── SERVICES ─── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  height: 100%;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.service-card:hover {
  box-shadow: 0 12px 40px rgba(26,107,255,.12);
  transform: translateY(-4px);
  border-color: rgba(26,107,255,.2);
}
.sc-icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--blue);
  margin-bottom: 1.2rem;
}
.service-card h5 { font-size: 1.05rem; color: var(--navy); margin-bottom: .6rem; }
.service-card p { color: var(--muted); font-size: .88rem; line-height: 1.7; }
.sc-link {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  font-size: .85rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .8rem;
  transition: gap .2s;
}
.sc-link:hover { gap: .6rem; }

/* ─── CLIENTS STRIP ─── */
.client-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.2rem;
  text-align: center;
  transition: box-shadow .2s, border-color .2s;
}
.client-badge:hover {
  box-shadow: 0 6px 20px rgba(26,107,255,.1);
  border-color: rgba(26,107,255,.2);
}
.client-badge i {
  display: block;
  font-size: 1.8rem;
  color: var(--blue);
  margin-bottom: .6rem;
}
.client-badge span { font-size: .78rem; font-weight: 600; color: var(--text); }

/* ─── TESTIMONIALS ─── */
.testi-section { background: var(--off-white); }
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  height: 100%;
  transition: box-shadow .25s, transform .25s;
}
.testi-card:hover {
  box-shadow: 0 10px 36px rgba(26,107,255,.1);
  transform: translateY(-3px);
}
.testi-card.featured {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.testi-card.featured p, .testi-card.featured strong { color: #fff; }
.testi-card.featured span { color: rgba(255,255,255,.7) !important; }
.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.testi-card p {
  color: var(--text);
  font-size: .9rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.ta-avatar {
  width: 42px; height: 42px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
}
.testi-card.featured .ta-avatar { background: rgba(255,255,255,.2); color: #fff; }
.testi-author strong { display: block; font-size: .9rem; font-weight: 600; color: var(--navy); }
.testi-author span { color: var(--muted); font-size: .78rem; }

@media (max-width: 768px) {
  .hero { padding: 60px 0 0; }
  .hero-visual { min-height: 280px; }
  .card-float-1, .card-float-2 { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .py-section { padding: 60px 0; }
}