/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--white);
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 72px;
  position: relative; overflow: hidden;
}
.hero-bg-shape {
  position: absolute; top: -10%; right: -5%;
  width: 55vw; height: 55vw; max-width: 750px; max-height: 750px;
  background: radial-gradient(ellipse at center, rgba(10,181,200,0.08) 0%, rgba(30,111,181,0.06) 40%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-bg-shape2 {
  position: absolute; bottom: -15%; left: -8%;
  width: 40vw; height: 40vw; max-width: 500px; max-height: 500px;
  background: radial-gradient(ellipse at center, rgba(26,58,122,0.05) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 0 5%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 100px;
  border: 1px solid rgba(10,181,200,0.3);
  background: rgba(10,181,200,0.06);
  font-size: 0.78rem; font-weight: 600; color: var(--teal);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px;
  background: var(--teal); border-radius: 50%;
  box-shadow: 0 0 8px var(--teal);
  animation: pulse 2s infinite;
}
.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800; color: var(--navy);
  line-height: 1.1; margin-bottom: 22px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-desc {
  font-size: 1.05rem; color: var(--text-light); line-height: 1.75;
  margin-bottom: 36px; max-width: 480px; font-weight: 400;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 14px;
  animation: fadeUp 0.7s 0.3s ease both;
}
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid var(--light-grey);
  animation: fadeUp 0.7s 0.4s ease both;
}

/* Hero visual card */
.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
  animation: fadeIn 1s 0.3s ease both;
}
.hero-card-float {
  position: relative; z-index: 2;
  background: white; border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 32px; width: 100%; max-width: 400px;
  border: 1px solid rgba(10,181,200,0.12);
}
.hero-card-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.hero-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.hero-card-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.hero-card-sub   { font-size: 0.78rem; color: var(--mid-grey); }
.hero-metric-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid var(--light-grey);
}
.hero-metric-row:last-child { border-bottom: none; }
.hero-metric-label { font-size: 0.83rem; color: var(--text-light); }
.hero-metric-val {
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--teal);
}
.hero-badge-float {
  position: absolute;
  background: white; border-radius: 12px;
  box-shadow: var(--shadow-md); padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--light-grey);
}
.hbf-1 { top: -18px; left: -24px; }
.hbf-2 { bottom: -18px; right: -20px; }
.hbf-icon {
  width: 34px; height: 34px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.hbf-1 .hbf-icon { background: rgba(10,181,200,0.1); }
.hbf-2 .hbf-icon { background: rgba(30,111,181,0.1); }
.hbf-text-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.82rem; color: var(--navy); }
.hbf-text-sub   { font-size: 0.73rem; color: var(--mid-grey); }

/* ── SERVICES STRIP ── */
.services-strip { background: var(--off-white); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
}
.service-card {
  background: white; border-radius: var(--radius);
  padding: 32px; border: 1px solid var(--light-grey);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.service-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-md);
  border-color: rgba(10,181,200,0.25);
}
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px;
}
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p  { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* ── PROCESS ── */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative; margin-top: 56px;
}
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--blue)); z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; padding: 0 16px; }
.process-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--grad); color: white;
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 4px 18px rgba(10,181,200,0.35);
}
.process-step h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-step p  { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px; border-radius: var(--radius);
  border: 1px solid var(--light-grey);
  transition: border-color 0.2s, box-shadow 0.2s; background: white;
}
.why-item:hover { border-color: rgba(10,181,200,0.3); box-shadow: var(--shadow-sm); }
.why-icon {
  width: 44px; height: 44px; border-radius: 11px; flex-shrink: 0;
  background: var(--grad); display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.why-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.why-item p  { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }
.why-visual {
  border-radius: 20px; background: var(--navy);
  padding: 36px; display: flex; flex-direction: column; gap: 16px;
  box-shadow: var(--shadow-lg);
}
.why-visual-title {
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.85rem;
  color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px;
}
.stat-row {
  background: rgba(255,255,255,0.05); border-radius: 10px;
  padding: 14px 18px; display: flex; align-items: center; justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.08);
}
.stat-row-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.stat-row-val {
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.1rem;
  background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-bar-wrap { margin-top: 4px; }
.stat-bar-bg   { height: 5px; background: rgba(255,255,255,0.08); border-radius: 100px; overflow: hidden; }
.stat-bar-fill { height: 100%; border-radius: 100px; background: var(--grad-text); }

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.testi-card {
  background: white; border-radius: var(--radius);
  padding: 28px; border: 1px solid var(--light-grey);
  transition: box-shadow 0.25s;
}
.testi-card:hover { box-shadow: var(--shadow-md); }
.testi-stars  { color: #f5a623; font-size: 0.9rem; margin-bottom: 16px; }
.testi-quote  {
  font-size: 0.9rem; color: var(--text-light); line-height: 1.75;
  font-style: italic; margin-bottom: 20px;
  border-left: 3px solid var(--teal); padding-left: 14px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.9rem; color: white; flex-shrink: 0;
}
.testi-name { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.testi-role { font-size: 0.78rem; color: var(--mid-grey); }
