/* GLOBAL TYPOGRAPHY / BASE */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f5f7fb;
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: .02em;
  font-size: 1.1rem;
}

/* HERO */
.hero {
  position: relative;
  min-height: 80vh;
  color: white;
  display: flex;
  align-items: center;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/hero-home.jpg'); /* update path as needed */
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top,
    rgba(15,23,42,.4),
    rgba(15,23,42,.9)
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem 1rem;
  border-radius: 999px;
  background: rgba(15,23,42,.75);
  font-size: .85rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(148,163,184,.5);
}
.hero-title {
  font-size: clamp(2.4rem, 4.8vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: .75rem;
}
.hero-sub {
  font-size: 1rem;
  max-width: 38rem;
  color: #e5e7eb;
  margin: 0 auto 1.5rem;
}

/* Hero address form */
.hero-form-wrapper {
  max-width: 640px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 999px;
  padding: .4rem;
  box-shadow: 0 18px 45px rgba(15,23,42,0.35);
}
.hero-form-inner {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hero-input-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-size: 1.2rem;
}
.hero-input {
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
  font-size: .95rem;
  padding: .55rem .5rem .55rem .1rem;
  color: #111827;
}
.hero-input::placeholder {
  color: #9ca3af;
}
.hero-btn {
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
  padding-inline: 1.6rem;
  padding-block: .65rem;
  background-color: #1d4ed8;
  border-color: #1d4ed8;
}
.hero-btn:hover {
  background-color: #1e40af;
  border-color: #1e40af;
}
.hero-footnote {
  font-size: .8rem;
  color: #cbd5f5;
  margin-top: .75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .4rem;
}

/* CONTENT SECTIONS */
.section-light {
  background: #f9fafb;
  padding: 4rem 0;
}
.section-dark {
  background: #020617;
  color: #e5e7eb;
  padding: 4.5rem 0;
}
.section-cta {
  background: #f9fafb;
  padding: 3.5rem 0;
}

/* Feature cards */
.feature-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 18px 45px rgba(15,23,42,0.08);
  border: none;
  height: 100%;
}
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #2563eb;
  background: #e5edff;
}
.feature-title {
  font-weight: 600;
  margin-bottom: .4rem;
}
.feature-text {
  font-size: .9rem;
  color: #6b7280;
  margin-bottom: .8rem;
}
.feature-bullet {
  font-size: .85rem;
  color: #4b5563;
  display: flex;
  align-items: flex-start;
  gap: .4rem;
}
.feature-bullet i {
  color: #16a34a;
  margin-top: .1rem;
}

/* Dark section text/badges */
.dark-badge {
  display: inline-flex;
  align-items: center;
  padding: .35rem .85rem;
  border-radius: 999px;
  background: rgba(15,23,42,.9);
  border: 1px solid rgba(148,163,184,.4);
  font-size: .8rem;
  color: #e5e7eb;
  margin-bottom: 1.2rem;
}
.dark-heading {
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: .6rem;
}
.dark-sub {
  font-size: .95rem;
  color: #9ca3af;
  max-width: 32rem;
}
.btn-outline-light-custom {
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
  padding-inline: 1.4rem;
}
.cta-title {
  font-weight: 700;
  margin-bottom: .25rem;
}
.cta-sub {
  color: #6b7280;
}

/* Expert card (right-side graphic) */
.expert-card-wrapper {
  position: relative;
  display: inline-block;
  margin-top: 1.5rem;
}
.expert-card-bg {
  width: 420px;
  max-width: 100%;
  height: 210px;
  background: rgba(15,23,42,0.9);
  border-radius: 20px;
  transform: rotate(-4deg);
}
.expert-card {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%) rotate(4deg);
  width: 440px;
  max-width: 100%;
  background: #ffffff;
  border-radius: 20px;
  padding: 1.25rem 1.5rem 1.5rem;
  box-shadow: 0 25px 45px rgba(15,23,42,0.55);
  text-align: left;
}
.expert-card-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .85rem;
}
.expert-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
}
.expert-name {
  font-weight: 700;
  font-size: .98rem;
  color: #0f172a;
}
.expert-title {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #6b7280;
}
.expert-divider {
  height: 1px;
  background: #e5e7eb;
  margin-bottom: .75rem;
}
.expert-line {
  height: 6px;
  border-radius: 999px;
  background: #e5e7eb;
  margin-bottom: .4rem;
}
.expert-line.w1 { width: 72%; }
.expert-line.w2 { width: 55%; }
.expert-line.w3 { width: 40%; }
.expert-quote {
  margin-top: .75rem;
  background: #e7fbe9;
  border-radius: 16px;
  padding: .65rem .9rem;
  font-size: .9rem;
  color: #047857;
}

/* Shared card styles (used on value page too) */
.hero-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(15,23,42,0.08);
  border: none;
}
.btn-pill-primary {
  border-radius: 999px;
}
