/* ============================================================
   HERO SECTION – slider.css
   Webomatic · Photo Hero
   ============================================================ */

/* Google Font import – add this to your <head> if not already present:
   <link href="https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
*/

:root {
  --blue:       #0060AA;
  --blue-mid:   #0080E0;
  --blue-pale:  #e8f2fb;
  --blue-faint: #f0f6ff;
  --ink:        #111827;
  --muted:      #6b7a99;
  --border:     #dde6f0;
  --white:      #ffffff;
}

/* ─── HERO WRAPPER ─── */
#hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* large faint circle behind the photo */
#hero::before {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: var(--blue-faint);
  z-index: 0;
}

/* thin accent ring */
#hero::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 96, 170, 0.14);
  z-index: 0;
}

/* ─── INNER GRID ─── */
.hero-body {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 500px;
  align-items: center;
  gap: 40px;
  min-height: calc(100vh - 73px); /* 73px = your header height */
}

/* ─── LEFT COLUMN ─── */
.hero-left {
  padding: 60px 0;
}

/* eyebrow pill */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-pale);
  border: 1px solid rgba(0, 96, 170, 0.18);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  margin-bottom: 32px;
}
.hero-eyebrow-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-eyebrow-dot svg { display: block; }
.hero-eyebrow span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  font-family: "Abel", sans-serif;
}

/* headline */
.hero-title {
  font-family: "Abel", sans-serif;
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-title .accent {
  color: #0060AA;
  font-style: italic;
}
.hero-title .line-under {
  display: inline-block;
  position: relative;
}
.hero-title .line-under::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  opacity: 0.25;
}

/* subtext */
.hero-sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
  font-family: "Abel", sans-serif;
}

/* service pills */
.hero-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.hero-pill {
  font-size: 16px;
  font-weight: 500;
  color: var(--blue);
  background: var(--blue-faint);
  border: 1px solid rgba(0, 96, 170, 0.15);
  border-radius: 100px;
  padding: 6px 14px;
  letter-spacing: 0.02em;
  font-family: "Abel", sans-serif;
  transition: background 0.2s, border-color 0.2s;
}
.hero-pill:hover {
  background: var(--blue-pale);
  border-color: rgba(0, 96, 170, 0.35);
}

/* CTA buttons */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 7px;
  text-decoration: none;
  letter-spacing: 0.01em;
  font-family: "Abel", sans-serif;
  transition: background 0.2s, transform 0.15s;
}
.hero-btn-primary:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}
.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 7px;
  border: 1.5px solid rgba(0, 96, 170, 0.30);
  text-decoration: none;
  letter-spacing: 0.01em;
  font-family: "Abel", sans-serif;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.hero-btn-outline:hover {
  border-color: var(--blue);
  background: var(--blue-faint);
  transform: translateY(-2px);
  text-decoration: none;
}

/* trust / stats row */
.hero-trust-row {
  display: flex;
  align-items: center;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.hero-trust-stat {
  padding-right: 32px;
  margin-right: 32px;
  border-right: 1px solid var(--border);
}
.hero-trust-stat:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.hero-trust-num {
  font-family: "Abel", sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-trust-num sup {
  font-size: 16px;
  color: var(--blue);
  font-family: "Abel", sans-serif;
  font-weight: 600;
  vertical-align: super;
}
.hero-trust-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: "Abel", sans-serif;
}

/* ─── RIGHT COLUMN ─── */
.hero-right {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  min-height: calc(100vh - 73px);
}

.hero-photo-wrap {
  position: relative;
  width: 440px;
  align-self: flex-end;
}

/* the actual photo */
.hero-photo-wrap img.founder-photo {
  display: block;
  width: 440px;
  height: 600px;
  object-fit: cover;
  object-position: top center;
}

/* ─── FLOATING NAME CARD ─── */
.hero-name-card {
  position: absolute;
  bottom: 28px;
  left: -32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: 0 4px 24px rgba(0, 96, 170, 0.08);
  min-width: 190px;
  animation: heroFloatCard 3.5s ease-in-out infinite;
}
@keyframes heroFloatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.hero-name-card-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
  font-family: "Abel", sans-serif;
}
.hero-name-card-name {
  font-family: "Abel", sans-serif;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.hero-name-card-role {
  font-size: 16px;
  color: var(--blue);
  font-weight: 500;
  font-family: "Abel", sans-serif;
}

/* ─── FLOATING EXP BADGE ─── */
.hero-exp-badge {
  position: absolute;
  top: 48px;
  right: -28px;
  background: #0060AA;
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 96, 170, 0.25);
  animation: heroFloatBadge 4s ease-in-out infinite;
}
@keyframes heroFloatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}
.hero-exp-num {
  font-family: "Abel", sans-serif;
  font-size: 28px;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-exp-num sup {
  font-size: 14px;
  font-family: "Abel", sans-serif;
  font-weight: 600;
}
.hero-exp-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 3px;
  line-height: 1.4;
  font-family: "Abel", sans-serif;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-body {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
  .hero-right {
    min-height: 480px;
    justify-content: center;
  }
  .hero-photo-wrap { width: 320px; }
  .hero-photo-wrap img.founder-photo { width: 320px; height: 440px; }
  .hero-name-card { left: 0; }
  .hero-exp-badge { right: 0; }
}
