  @charset "UTF-8";
/* ========================================
   Political Campaign Landing Page Styles
   ======================================== */
:root {
  --primary-red: #c41e3a;
  --primary-blue: #0a2463;
  --accent-blue: #1e4d8c;
  --light-cream: #faf8f5;
  --dark-text: #1a1a1a;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Source Sans 3", sans-serif;
  font-family: Inter;
  background-color: var(--light-cream);
  color: var(--dark-text);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: "Playfair Display", serif;
  font-family: Inter;
}

/* ========== HERO SECTION ========== */
.hero-section {
  height: 80vh;
  min-height: 500px;
  position: relative;
}

/* Full Width Slider */
.hero-slider-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay for text legibility */
.swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 36, 99, 0.88) 0%, rgba(10, 36, 99, 0.75) 35%, rgba(10, 36, 99, 0.5) 55%, rgba(10, 36, 99, 0.3) 100%);
  z-index: 1;
}

/* Slide Content */
.slide-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 4rem 3rem 8rem;
  padding-right: 45%;
  color: var(--white);
}

.campaign-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.campaign-tag::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--primary-red);
}

.swiper-slide-active .campaign-tag {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.hero-title {
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-size: clamp(3rem, 9vw, 4.5rem);
  font-weight: 900;
  line-height: 1.12;
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.swiper-slide-active .hero-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.hero-title .highlight {
  color: var(--primary-red);
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 500px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.hero-description .stats-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 24px;
  line-height: 12px;
}

.swiper-slide-active .hero-description {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.swiper-slide-active .hero-cta-group {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.btn-primary-campaign {
  background: var(--primary-red);
  color: var(--white);
  padding: 1rem 2.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border: none;
  border-radius: 0;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary-campaign:hover {
  background: #a01830;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.4);
}

.btn-outline-campaign {
  background: transparent;
  color: var(--white);
  padding: 1rem 2.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border: 2px solid var(--white);
  border-radius: 0;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-campaign:hover {
  background: var(--white);
  color: var(--primary-blue);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: var(--white);
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1rem;
  font-weight: bold;
}

.swiper-button-prev {
  left: 30px;
}

.swiper-button-next {
  right: 30px;
}

.swiper-pagination {
  bottom: 35px !important;
  left: 7rem !important;
  width: auto !important;
  text-align: left;
}

.swiper-pagination-bullet {
  width: 35px;
  height: 4px;
  background: var(--white);
  opacity: 0.4;
  border-radius: 0;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--primary-red);
  opacity: 1;
  width: 55px;
}

/* ========== FORM OVERLAY ========== */
.form-overlay {
  position: absolute;
  right: 14rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  width: 480px;
}

.form-container {
  position: relative;
}

/* Decorative accent */
.form-accent {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 80px;
  height: 80px;
  border: 2px solid var(--primary-red);
  opacity: 0.3;
  z-index: 0;
}

.form-accent-2 {
  position: absolute;
  bottom: -12px;
  left: -12px;
  width: 50px;
  height: 50px;
  background: var(--primary-red);
  opacity: 0.15;
  z-index: 0;
}

.form-card {
  background: var(--white);
  position: relative;
  z-index: 1;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  border-radius: 2rem;
}

.form-header {
  background: var(--primary-red);
  padding: 1.5rem 1.75rem;
  position: relative;
  overflow: hidden;
  border-radius: 2rem 2rem 0 0;
}

.form-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(135deg, transparent 50%, rgba(196, 30, 58, 0.3) 50%);
}

.form-header h3 {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.form-header p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  margin: 0;
  position: relative;
  z-index: 1;
  text-align: center;
}

.form-body {
  padding: 0;
}

.lead-form-iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}

/* Stars decoration */
.stars-decoration {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.star {
  width: 10px;
  height: 10px;
  background: var(--primary-red);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* ========== KEY POINTS SECTION ========== */
.key-points-section {
  height: 35vh;
  min-height: 280px;
  display: flex;
}

.key-point-card {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: var(--white);
  transition: all 0.4s ease;
}

.key-point-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 36, 99, 0.9) 0%, rgba(10, 36, 99, 0.5) 50%, rgba(10, 36, 99, 0.2) 100%);
  z-index: 1;
  transition: all 0.4s ease;
}

.key-point-card:hover::before {
  background: linear-gradient(to top, rgba(196, 30, 58, 0.95) 0%, rgba(196, 30, 58, 0.6) 50%, rgba(196, 30, 58, 0.2) 100%);
}

.key-point-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s ease;
}

.key-point-card:hover img {
  transform: scale(1.05);
}

.key-point-content {
  position: relative;
  z-index: 2;
}

.key-point-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
  margin-bottom: 0.75rem;
}

.key-point-title {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.key-point-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.6rem 1.25rem;
  background: var(--primary-red);
  transition: all 0.3s ease;
}

.key-point-link:hover {
  background: var(--white);
  color: var(--primary-red);
}

.key-point-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.key-point-link:hover svg {
  transform: translateX(4px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .slide-content {
    padding: 2.5rem 3rem;
    padding-right: 45%;
  }
  .form-overlay {
    right: 3rem;
    width: 380px;
  }
}
@media (max-width: 991px) {
  .hero-section {
    height: auto;
    min-height: auto;
  }
  .hero-slider-wrapper {
    height: 60vh;
    min-height: 450px;
  }
  .slide-content {
    padding: 2.5rem 2rem;
    padding-right: 2rem;
    justify-content: flex-end;
    justify-content: center;
    padding-bottom: 5rem;
  }
  .form-overlay {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin-top: -60px;
    padding: 0 2rem;
  }
  .form-card {
    max-width: 500px;
    margin: 0 auto;
  }
  .swiper-button-next {
    right: 20px;
  }
  .key-points-section {
    flex-direction: column;
    height: auto;
  }
  .key-point-card {
    min-height: 240px;
  }
}
@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  .slide-content {
    padding: 1.5rem;
    padding-bottom: 1rem;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }
  /* .swiper-pagination {
         left: 1.5rem !important;
     }
  */
  .form-overlay {
    padding: 0 1rem;
    margin-top: 20px;
  }
  .key-point-card {
    min-height: 220px;
    padding: 1.5rem;
  }
  .form-accent,
  .form-accent-2 {
    display: none;
  }
  /* ========== HERO SECTION ========== */
  .hero-slider-wrapper {
    height: 60vh;
    min-height: 450px;
  }
  .swiper-button-prev {
    display: none;
  }
  .swiper-button-next {
    display: none;
  }
  .campaign-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
  }
}
/* Form entrance animation */
@keyframes formSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}
@media (min-width: 992px) {
  .form-overlay {
    animation: formSlideIn 0.8s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
  }
}
/* Contact form */
form.awu {
  padding-bottom: 2rem;
}
form.awu .form-group {
  padding-bottom: 1rem;
}
form.awu .form-group label {
  padding-bottom: 0.5rem;
  font-weight: bold;
}

.validation-summary-errors {
  color: #c6002b;
}

.field-validation-error {
  color: #c6002b;
  background-color: #fff;
  text-indent: 0.5rem;
}

.field-validation-error:before {
  content: "* ";
}

.captcha {
  text-align: center;
  margin: 1rem auto;
  height: 75px;
}

.g-recaptcha {
  display: inline-block;
}

@media (min-width: 1200px) {
  .display-1 {
    font-size: 7rem;
  }
}
.stats-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 24px;
  /* line-height: 2; */
}

.stats-list li {
  position: relative;
  padding-left: 28px;
}

.stats-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border: 2px solid #c41230;
  border-radius: 50%;
}

/* =========================================================
     ÌÇÐÄVlog¹Ù·½ palette + Bootstrap CSS variable overrides
     ========================================================= */
:root {
  --ihm-red: #C6002B;
  --ihm-red-dark: #9C0021;
  --ihm-red-soft: #E63D58;
  --ihm-black: #002147;
  --ihm-black-soft: #1B232C;
  --ihm-gray: #919395;
  --ihm-gray-light: #dbdcdd;
  --ihm-gray-pale: #F5F5F6;
  --ihm-white: #FFFFFF;
  /* Override Bootstrap's design tokens */
  --bs-primary: #C6002B;
  --bs-primary-rgb: 198, 0, 43;
  --bs-dark: #111820;
  --bs-dark-rgb: 17, 24, 32;
  --bs-body-color: #111820;
  --bs-body-bg: #FFFFFF;
  --bs-body-font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --bs-body-font-weight: 400;
  --bs-link-color: #C6002B;
  --bs-link-hover-color: #9C0021;
  --bs-border-color: rgba(17, 24, 32, 0.12);
  --bs-secondary-color: #919395;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-feature-settings: "cv11", "ss01", "ss03";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: #fff;
  color: var(--ihm-black);
}

/* =========================================================
       Type system â€” leaning into Inter weight contrast
       ========================================================= */
.display-mega {
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.99;
  font-size: clamp(3rem, 9vw, 5rem);
}

.display-xl {
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.95;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
}

.display-lg {
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-num {
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.85;
  font-size: clamp(2rem, 10vw, 4rem);
  font-variant-numeric: tabular-nums;
}

.label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.red {
  color: var(--ihm-red) !important;
}

.ihm-black {
  color: var(--ihm-black) !important;
}

.ihm-gray {
  color: var(--ihm-gray) !important;
}

.bg-ihm-red {
  background: var(--ihm-red) !important;
}

.bg-ihm-black {
  background: var(--ihm-black) !important;
}

.bg-ihm-pale {
  background: var(--ihm-gray-pale) !important;
}

/* =========================================================
       Navbar
       ========================================================= */
.nav-blur {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(17, 24, 32, 0.08);
}

.navbar .nav-link {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--ihm-black);
  opacity: 0.7;
  transition: opacity 0.2s ease;
  padding: 0.5rem 1rem;
}

.navbar .nav-link:hover {
  opacity: 1;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ihm-black);
  text-decoration: none;
}

/* =========================================================
       Buttons â€” overriding Bootstrap btn styles
       ========================================================= */
.btn {
  font-weight: 500;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.btn-lg {
  padding: 0.95rem 2.85rem;
  font-size: 0.9375rem;
  font-size: 2rem;
}

.btn-primary {
  background: var(--ihm-red);
  border-color: var(--ihm-red);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--ihm-red-dark);
  border-color: var(--ihm-red-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -10px rgba(198, 0, 43, 0.55);
}

.btn-dark {
  background: var(--ihm-black);
  border-color: var(--ihm-black);
  color: #fff;
}

.btn-dark:hover {
  background: var(--ihm-red);
  border-color: var(--ihm-red);
  transform: translateY(-2px);
}

.btn-outline-dark {
  border-color: var(--ihm-black);
  color: var(--ihm-black);
}

.btn-outline-dark:hover {
  background: var(--ihm-black);
  color: #fff;
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--ihm-red);
  border-color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--ihm-black);
  border-color: #fff;
}

.btn-light:hover {
  background: var(--ihm-black);
  color: #fff;
  border-color: var(--ihm-black);
  transform: translateY(-2px);
}

/* =========================================================
       Live dot pulse + audio bars
       ========================================================= */
@keyframes pulseDot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(198, 0, 43, 0.55);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.85);
    box-shadow: 0 0 0 8px rgba(198, 0, 43, 0);
  }
}
.live-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ihm-red);
  animation: pulseDot 1.8s ease-in-out infinite;
}

@keyframes wave {
  0%, 100% {
    transform: scaleY(0.22);
  }
  50% {
    transform: scaleY(1);
  }
}
.wave-bar {
  transform-origin: center;
  animation: wave 1.1s ease-in-out infinite;
  border-radius: 999px;
}

/* =========================================================
       Hero "On Air" card
       ========================================================= */
.onair-card {
  background: var(--ihm-black);
  color: #fff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--ihm-black);
}

.onair-wave {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3px;
}

/* Play button on the on-air card */
.spot-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: var(--ihm-red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
  flex-shrink: 0;
  font-size: 1.6rem;
  position: relative;
  box-shadow: 0 6px 20px -8px rgba(198, 0, 43, 0.6);
}

.spot-play-btn:hover {
  background: var(--ihm-red-dark);
  transform: scale(1.05);
  box-shadow: 0 12px 28px -8px rgba(198, 0, 43, 0.7);
}

.spot-play-btn:active {
  transform: scale(0.97);
}

.spot-play-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.spot-play-btn i {
  line-height: 1;
}

.spot-play-btn .bi-play-fill {
  margin-left: 3px;
}

/* optical centering for triangle */
/* Pulsing ring while playing */
.spot-play-btn.playing::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--ihm-red-soft);
  opacity: 0;
  animation: playRing 1.6s ease-out infinite;
  pointer-events: none;
}

@keyframes playRing {
  0% {
    transform: scale(0.85);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}
/* Progress bar */
.onair-progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  overflow: hidden;
}

.onair-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--ihm-red);
  border-radius: 3px;
  transition: width 0.15s linear;
}

/* Hero flag â€” positioned per mock, between headline column and on-air card */
.hero-section-flag {
  position: relative;
  overflow: visible;
  z-index: 5;
}

.hero-section-flag h1.display-mega {
  font-size: clamp(3rem, 9vw, 5rem);
}

.solutions h2.display-mega {
  font-size: clamp(3rem, 9vw, 3rem);
}

.hero-flag {
  position: absolute;
  bottom: -48px;
  right: 10%;
  height: 138%;
  width: auto;
  pointer-events: none;
  user-select: none;
  z-index: 2;
}

@media (max-width: 1399px) {
  .hero-flag {
    right: 26%;
    height: 92%;
    bottom: -45px;
  }
}
@media (max-width: 1199px) {
  .hero-flag {
    right: 23%;
    height: 82%;
    bottom: -38px;
  }
}
/* =========================================================
       Marquee / ticker
       ========================================================= */
.ticker {
  background: var(--ihm-black);
  color: #fff;
  padding: 1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(17, 24, 32, 0.1);
  border-bottom: 1px solid rgba(17, 24, 32, 0.1);
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ticker-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-right: 3rem;
}

.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  margin: 0 1.5rem;
  opacity: 0.5;
}

/* =========================================================
       Stat cards
       ========================================================= */
.stat-block {
  border-top: 2px solid var(--ihm-black);
  padding-top: 1.5rem;
  max-width: 16rem;
}

/* =========================================================
       Solutions section (dark)
       ========================================================= */
.solutions {
  background: var(--ihm-gray-pale);
  color: #fff;
}

.solution-row {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 3rem 1rem;
  transition: padding 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease;
}

.solution-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.solution-row:hover {
  /* padding-left: 1.25rem */
  /* padding-right: 1.25rem */
  background: rgba(255, 255, 255, 0.02);
}

.solution-row .label-num {
  color: rgba(33, 33, 33, 0.85);
}

.solution-row h3 {
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.solution-row .sub {
  color: rgba(44, 44, 44, 0.78);
  font-size: 0.875rem;
}

.solution-row p.body {
  color: rgba(33, 33, 33, 0.85);
  color: #1B232C;
}

.solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution-list li {
  color: rgba(44, 44, 44, 0.78);
  color: #1B232C;
  font-size: 1.2rem;
  padding: 0.4rem 0;
  display: flex;
  gap: 0.75rem;
}

.solution-list li::before {
  content: "â†’";
  color: var(--ihm-red-soft);
  font-weight: 700;
  flex-shrink: 0;
}

/* Rectangular placeholder image inside each solution row */
.solution-image-wrap {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.solution-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 32, 0.18) 0%, rgba(17, 24, 32, 0.62) 100%);
  pointer-events: none;
}

.solution-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.solution-row:hover .solution-image-wrap {
  transform: scale(1.03);
  border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 992px) {
  .solution-image-wrap {
    max-width: 260px;
    margin-top: 1.25rem;
  }
}
/* =========================================================
       Service-model cards
       ========================================================= */
.service-card {
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card.light {
  background: var(--ihm-gray-pale);
  border: 1px solid var(--bs-border-color);
}

.service-card.dark {
  background: var(--ihm-black);
  color: #fff;
}

.chip {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chip-light {
  background: rgba(17, 24, 32, 0.06);
  color: rgba(17, 24, 32, 0.7);
}

.chip-dark {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
}

/* =========================================================
       Step numbers
       ========================================================= */
.step-num {
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--ihm-red);
  font-size: clamp(4rem, 7vw, 6rem);
  line-height: 0.85;
  font-variant-numeric: tabular-nums;
}

/* =========================================================
       Final CTA
       ========================================================= */
.cta {
  background: var(--ihm-red);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-wave {
  position: absolute;
  bottom: 978px;
  right: 16px;
  width: 700px;
  height: 280px;
  opacity: 0.15;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* =========================================================
       CTA Editorial Ledger â€” data mosaic
       ========================================================= */
.ledger-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  padding: 1.75rem;
  height: 100%;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.ledger-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-3px);
}

.ledger-num {
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.85;
  font-size: clamp(3rem, 6vw, 5rem);
  font-variant-numeric: tabular-nums;
  display: inline-block;
}

.ledger-num.small {
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
}

.ledger-num.huge {
  font-size: clamp(4.5rem, 11vw, 9rem);
}

.ledger-pct {
  font-size: 0.55em;
  font-weight: 600;
  vertical-align: top;
  margin-left: 0.05em;
  opacity: 0.9;
}

.ledger-caption {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 1.25rem 0 0;
}

.ledger-caption strong {
  font-weight: 700;
  color: #fff;
}

.ledger-caption.big {
  font-size: 1.125rem;
  max-width: 40rem;
  line-height: 1.45;
}

.ledger-sub-caption {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  line-height: 1.5;
}

.ledger-sub-caption strong {
  color: #fff;
  font-weight: 700;
}

/* "vs" comparison */
.ledger-vs {
  display: flex;
  align-items: stretch;
  gap: 1rem;
}

.ledger-vs-side {
  flex: 1;
}

.ledger-vs-side .ledger-caption {
  margin-top: 0.65rem;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.ledger-vs-divider {
  display: flex;
  align-items: center;
  padding: 0 0.4rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  font-style: italic;
}

.ledger-vs-side-muted {
  opacity: 0.55;
}

/* Fraction-style stat (1 in 2) */
.frac-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.frac-stat .frac-num {
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-variant-numeric: tabular-nums;
}

.frac-stat .frac-in {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  font-style: italic;
}

/* Uplift bars */
.uplift-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.uplift-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.uplift-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.uplift-num {
  font-weight: 800;
  font-size: 1.625rem;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  min-width: 6.25rem;
}

.uplift-bar-wrap {
  flex: 1;
  height: 5px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  overflow: hidden;
}

.uplift-bar {
  display: block;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 4px;
}

.uplift-cap {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  padding-left: 7.25rem;
}

/* Finale 87% â€” full-width card */
.ledger-finale {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.ledger-finale .ledger-num {
  flex-shrink: 0;
}

.ledger-finale .ledger-caption {
  margin: 0;
  flex: 1;
  min-width: 23rem;
}

@media (max-width: 768px) {
  .ledger-card {
    padding: 1.4rem;
  }
  .ledger-vs {
    flex-direction: column;
    gap: 1rem;
  }
  .ledger-vs-divider {
    padding: 0;
    opacity: 0.4;
  }
  .ledger-vs-side-muted {
    opacity: 0.7;
  }
  .ledger-finale {
    gap: 1.25rem;
  }
  .uplift-num {
    font-size: 1.375rem;
    min-width: 5rem;
  }
  .uplift-cap {
    padding-left: 0;
  }
}
/* =========================================================
       Pull-quote / callout
       ========================================================= */
.pull-quote {
  /* border-left: 3px solid var(--ihm-red) */
  padding: 1.25rem 1.5rem;
  background: var(--ihm-gray-pale);
  font-style: italic;
  font-weight: 500;
  color: var(--ihm-black);
}

/* =========================================================
       Bridge arrow â€” connects Solutions to How-it-works
       ========================================================= */
.bridge-arrow-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  position: relative;
}

.bridge-note {
  font-style: italic;
  font-weight: 400;
  font-size: 1.0625rem;
  color: rgba(33, 33, 33, 0.85);
  line-height: 1.35;
  text-align: right;
  padding-right: 92px;
  letter-spacing: -0.005em;
}

.bridge-arrow-svg {
  width: 210px;
  height: 175px;
  color: var(--ihm-red-soft);
  margin-bottom: -218px;
  overflow: visible;
  margin-right: 53px;
}

.bridge-arrow-svg path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.reveal.in .bridge-arrow-svg .arrow-curve {
  animation: drawArrow 1.4s cubic-bezier(0.65, 0, 0.35, 1) 0.4s forwards;
}

.reveal.in .bridge-arrow-svg .arrow-head {
  animation: drawArrow 0.45s cubic-bezier(0.65, 0, 0.35, 1) 1.6s forwards;
}

@keyframes drawArrow {
  to {
    stroke-dashoffset: 0;
  }
}
@media (max-width: 992px) {
  .bridge-zone {
    text-align: center;
  }
  .bridge-arrow-wrap {
    width: 100%;
    align-items: center;
    margin-top: 1.5rem;
  }
  .bridge-note {
    text-align: center;
    padding-right: 0;
    padding-left: 60px;
  }
  .bridge-arrow-svg {
    width: 170px;
    height: 140px;
    margin-bottom: -16px;
  }
}
.bridge-arrow-svg {
  width: 200px;
  height: 200px;
  color: var(--ihm-red-soft);
  margin-bottom: -188px;
  overflow: visible;
}

@media (max-width: 992px) {
  .bridge-arrow-svg {
    width: 160px;
    height: 160px;
    margin-bottom: -176px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .live-dot,
  .wave-bar,
  .ticker-track {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* =========================================================
       Scroll reveal
       ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
       Footer
       ========================================================= */
.site-footer {
  background: var(--ihm-black);
  color: rgba(255, 255, 255, 0.62);
  padding: 3rem 0;
}

/* =========================================================
       Reduced motion
       ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .live-dot,
  .wave-bar,
  .ticker-track {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .bridge-arrow-svg path {
    stroke-dashoffset: 0;
    animation: none !important;
  }
}
/* Mobile spacing tune */
@media (max-width: 768px) {
  .solution-row {
    padding: 2rem 1rem;
  }
  .service-card {
    padding: 1.75rem;
  }
  .onair-card {
    padding: 1.5rem;
  }
}
/* Iframe form container (replaces on-air card in hero) */
.onair-iframe-wrap {
  background: var(--ihm-black);
  border-radius: 20px;
  border: 1px solid var(--ihm-black);
  overflow: hidden;
  position: relative;
  min-height: 460px;
}

.onair-iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  display: block;
  background: transparent;
  color-scheme: dark;
}

@media (max-width: 768px) {
  .onair-iframe-wrap,
  .onair-iframe {
    min-height: 420px;
  }
  .cta-wave {
    display: none;
  }
  .btn-lg {
    padding: 0.95rem 2.85rem;
    font-size: 0.9375rem;
    font-size: 1rem;
  }
}
/* =========================================================
   Insights â€” blog/article cards
   ========================================================= */
.article-card {
  height: 100%;
}

.article-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.article-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--bs-border-color);
  background: #fff;
}

.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-card-link:hover .article-card-image img {
  transform: scale(1.04);
}

.article-card-body {
  padding-top: 1.25rem;
}

.article-card-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.article-card-date {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ihm-gray);
}

.article-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.18;
  margin: 0 0 0.85rem;
  color: var(--ihm-black);
  transition: color;
}

.uplift-icon {
  font-size: 1.5rem;
  color: var(--ihm-white);
  width: 1.5rem;
  text-align: center;
  flex-shrink: 0;
  line-height: 1;
}

.uplift-cap {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  padding-left: 9.75rem;
  /* was 7.25rem â€” accounts for icon (1.5rem) + gap (1rem) */
}

@media (max-width: 576px) {
  .ledger-caption.big {
    font-size: 0.9375rem;
    max-width: 2rem;
    display: inline-block;
    line-height: 1.45;
    text-align: left;
  }
}