/* ==========================================================================
   Hindustan Hydraulics & Pneumatics (HHP) — High-Conversion Landing Page
   Brand Palette: Crimson (#AB1E40), Industrial Navy (#17325B), Gold (#F5B921)
   Optimized for Lead Generation, Clean White Aesthetic & Maximum Conversions
   ========================================================================== */

/* ---------- KEYFRAMES & ANIMATIONS ---------- */
/* Infinite Right-to-Left Shimmer across CTA surface */
@keyframes ctaShimmerRTL {
  0% {
    transform: translateX(180%) skewX(-20deg);
  }

  100% {
    transform: translateX(-180%) skewX(-20deg);
  }
}

/* Infinite Right-to-Left Attention Movement */
@keyframes ctaMoveRTL {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-6px);
  }
}

/* Infinite Right-to-Left Arrow Slide */
@keyframes arrowSlideRTL {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-5px);
  }
}

/* Pulse Ring around High-Value CTAs */
@keyframes pulseRingBrand {
  0% {
    box-shadow: 0 0 0 0 rgba(171, 30, 64, 0.45);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(171, 30, 64, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(171, 30, 64, 0);
  }
}

@keyframes pulseRingGold {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 185, 33, 0.6);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(245, 185, 33, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(245, 185, 33, 0);
  }
}

/* Status live dot */
@keyframes livePulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.35);
    opacity: 0.6;
  }
}

/* Subtle float */
@keyframes floatSubtle {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Infinite Client Marquee */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ---------- CSS VARIABLES ---------- */
:root {
  /* Brand Colors */
  --crimson: #AB1E40;
  --crimson-dark: #87122E;
  --crimson-light: rgba(171, 30, 64, 0.08);
  --crimson-border: rgba(171, 30, 64, 0.2);

  --navy: #17325B;
  --navy-dark: #0F2140;
  --navy-light: rgba(23, 50, 91, 0.05);
  --navy-border: rgba(23, 50, 91, 0.12);

  --gold: #F5B921;
  --gold-dark: #D49909;
  --gold-light: rgba(245, 185, 33, 0.15);

  --wa: #25D366;
  --wa-dark: #1EBE5D;

  /* Clean White Aesthetic & Neutrals */
  --bg-main: #FFFFFF;
  --bg-alt: #F8FAFC;
  --bg-subtle: #F1F5F9;
  --text-primary: #0F172A;
  --text-secondary: #334155;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --border-focus: #17325B;

  /* High-Converting Form */
  --form-bg: #FFFFFF;
  --form-shadow: 0 20px 45px -10px rgba(23, 50, 91, 0.12), 0 0 1px rgba(23, 50, 91, 0.2);
  --card-shadow: 0 10px 30px -5px rgba(23, 50, 91, 0.07);
  --card-shadow-hover: 0 20px 40px -10px rgba(23, 50, 91, 0.15);

  /* Layout */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --max: 1180px;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--bg-main);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.5em;
  line-height: 1.22;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1em;
}

.wrap {
  width: min(var(--max), 100% - 36px);
  margin-inline: auto;
}

section {
  padding: 85px 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 52px;
}

.section-head p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 12px auto 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--crimson);
  background: var(--crimson-light);
  border: 1px solid var(--crimson-border);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Live Pulse Dot */
.pulse-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
  animation: livePulse 2s infinite ease-in-out;
}

/* ---------- LEAD GEN BUTTONS WITH RIGHT-TO-LEFT INFINITE ANIMATION ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  letter-spacing: -0.01em;
}

/* Infinite Right-to-Left Continuous Shimmer Effect on CTA Buttons */
.btn-glow,
.btn-accent,
.btn-cta,
.btn-primary {
  /* Subtle Infinite Right-to-Left Motion to Draw Buyer Attention */
  animation: ctaMoveRTL 3s ease-in-out infinite, pulseRingBrand 3s infinite;
}

/* Shimmer overlay sliding from Right to Left infinitely */
.btn-glow::after,
.btn-accent::after,
.btn-cta::after,
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.45) 50%,
      transparent 100%);
  transform: skewX(-25deg);
  animation: ctaShimmerRTL 3.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
  z-index: 2;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn:hover::after {
  animation-duration: 1.5s;
}

/* Primary Brand Crimson CTA */
.btn-primary {
  background: var(--crimson);
  color: #FFFFFF !important;
  box-shadow: 0 8px 24px rgba(171, 30, 64, 0.35);
}

.btn-primary:hover {
  background: var(--crimson-dark);
  box-shadow: 0 12px 28px rgba(171, 30, 64, 0.45);
}

/* High-Impact Gold Accent CTA (Maximum Conversion) */
.btn-accent,
.btn-cta {
  background: linear-gradient(135deg, #F5B921 0%, #E5A510 100%);
  color: var(--navy-dark) !important;
  font-weight: 800;
  box-shadow: 0 8px 25px rgba(245, 185, 33, 0.45);
  animation: ctaMoveRTL 3s ease-in-out infinite, pulseRingGold 3s infinite;
}

.btn-accent:hover,
.btn-cta:hover {
  background: linear-gradient(135deg, #E5A510 0%, #D49909 100%);
  box-shadow: 0 12px 30px rgba(245, 185, 33, 0.6);
}

/* WhatsApp CTA */
.btn-wa {
  background: var(--wa);
  color: #FFFFFF !important;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-wa:hover {
  background: var(--wa-dark);
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.4);
}

.btn-wa svg {
  width: 20px;
  height: 20px;
}

/* Clean Outline Button */
.btn-outline {
  background: #FFFFFF;
  color: var(--navy);
  border-color: var(--navy);
  font-weight: 700;
}

.btn-outline:hover {
  background: var(--navy);
  color: #FFFFFF !important;
  border-color: var(--navy);
  box-shadow: 0 6px 20px rgba(23, 50, 91, 0.2);
}

.btn-lg {
  padding: 17px 34px;
  font-size: 1.12rem;
}

/* ---------- TOP BAR & HEADER ---------- */
.topbar {
  background: var(--navy-dark);
  color: #FFFFFF;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar .wrap {
  display: flex;
  justify-content: center;
  align-items: center;

}

.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 17px;
}

.topbar a {
  color: #FFFFFF;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.topbar a:hover {
  opacity: 1;
  text-decoration: underline;
}

.topbar .tb-right {
  display: flex;
  gap: 24px;
  font-weight: 600;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 14px rgba(23, 50, 91, 0.04);
  transition: box-shadow 0.3s;
}

.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 58px;
  height: auto;
}

.brand-name {
  font-weight: 900;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.timer-gold {
  color: var(--gold);
  background: rgba(245, 185, 33, 0.15);
  padding: 2px 7px;
  border-radius: 4px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.05rem;
}

.header-phone svg {
  width: 22px;
  height: 22px;
  color: var(--crimson);
}

.header-phone small {
  display: block;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- HERO SECTION (HIGH CONVERSION FOCUS) ---------- */
.hero {
  background: radial-gradient(circle at 85% 20%, rgba(245, 185, 33, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(171, 30, 64, 0.04) 0%, transparent 35%),
    linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  padding: 65px 0 85px;
  border-bottom: 1px solid var(--border);
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: flex-start;
}

.hero-copy {
  padding-right: 15px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid var(--gold);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(245, 185, 33, 0.2);
  margin-bottom: 22px;
}

.hero-badge svg {
  color: var(--gold-dark);
}

.hero h1 span {
  color: var(--crimson);
  position: relative;
  display: inline-block;
}

.hero-sub {
  font-size: 1.18rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 28px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 14px;
}

.hero-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy);
  line-height: 1.45;
}

.hero-points svg {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--crimson);
  margin-top: 1px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 26px;
}

.hero-trust div {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.3;
}

.hero-trust strong {
  display: block;
  font-size: 1.85rem;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

/* ---------- LEAD CAPTURE FORM CARD ---------- */
.form-card {
  background: var(--form-bg);
  border-radius: var(--radius);
  border: 2px solid var(--navy-border);
  box-shadow: var(--form-shadow);
  padding: 36px 30px;
  position: sticky;
  top: 110px;
}

.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--crimson) 0%, var(--gold) 50%, var(--navy) 100%);
  border-radius: var(--radius) var(--radius) 0 0;
}

.form-popular {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--crimson);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 12px rgba(171, 30, 64, 0.4);
  white-space: nowrap;
}

.form-card h3 {
  font-size: 1.48rem;
  text-align: center;
  margin-bottom: 6px;
  color: var(--navy);
}

.form-card .form-sub {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 22px;
  font-weight: 500;
  line-height: 1.45;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
}

.field.full {
  grid-column: span 2;
}

.field label {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.field label em {
  color: var(--crimson);
  font-style: normal;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  /*border-radius: var(--radius-sm); */
  border: 1.5px solid #dadfe5;
  font: inherit;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: #FAFAFC;
  transition: all 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(23, 50, 91, 0.1);
}

.field textarea {
  min-height: 75px;
  resize: vertical;
}

.field.error input,
.field.error select {
  border-color: var(--crimson);
  background: #FFF5F7;
}

.field .err {
  display: none;
  color: var(--crimson);
  font-size: 0.78rem;
  margin-top: 4px;
  font-weight: 600;
}

.field.error .err {
  display: block;
}

.form-card button[type="submit"] {
  width: 100%;
  margin-top: 8px;
  font-size: 1.15rem;
  padding: 18px;
}

.form-trust-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 18px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.form-trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.form-trust-badges svg {
  width: 16px;
  height: 16px;
  color: var(--crimson);
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-msg {
  display: none;
  padding: 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  font-weight: 600;
  text-align: center;
  font-size: 0.9rem;
}

.form-msg.ok {
  display: block;
  background: #ECFDF5;
  color: #047857;
  border: 1px solid #A7F3D0;
}

.form-msg.bad {
  display: block;
  background: #FEF2F2;
  color: #B91C1C;
  border: 1px solid #FECACA;
}

/* ---------- TRUST STRIP ---------- */
.trust {
  padding: 28px 0;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
}

.trust .wrap {
  /* Layout handled in HTML */
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-item svg {
  width: 32px;
  height: 32px;
  flex: none;
  color: var(--crimson);
}

.trust-item div {
  font-weight: 800;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.25;
}

.trust-item small {
  display: block;
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 2px;
}

/* --- Trust Section — Brand Color Background --- */
.trust-brand-bg {
  background: #a30028;
  padding: 64px 0;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}

.trust-brand-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(180, 20, 45, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse at 10% 80%, rgba(200, 160, 20, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.trust-brand-heading {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 48px;
  letter-spacing: -0.3px;
}

.trust-brand-heading span {
  color: var(--gold);
}

.trust-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-brand-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 24px 20px;
  backdrop-filter: blur(8px);
  transition: background 0.3s, transform 0.3s;
}

.trust-brand-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.trust-brand-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.trust-brand-ico svg {
  width: 24px;
  height: 24px;
  stroke: var(--navy);
  stroke-width: 2.2;
}

.trust-brand-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.trust-brand-text strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.trust-brand-text span {
  color: #fff;
  font-size: 0.85rem;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .trust-brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .trust-brand-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- CLIENTS MARQUEE ---------- */
.clients {
  padding: 38px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.clients .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.clients .label {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.12em;
}

.client-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marquee 10s linear infinite;
}

.marquee-track img {
  height: 36px;
  filter: grayscale(1) contrast(0.85);
  opacity: 0.65;
  transition: filter 0.3s, opacity 0.3s;
}

.marquee-track img:hover {
  filter: none;
  opacity: 1;
}

/* ---------- PRODUCTS GRID ---------- */
.products {
  background: #FFFFFF;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pcard {
  background: #FFFFFF;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s, border-color 0.3s;
}

.pcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--navy);
}

.pcard-img {
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-alt);
}

.pcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pcard:hover .pcard-img img {
  transform: scale(1.06);
}

.pcard-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pcard-body h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.pcard-body ul {
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.55;
}

.pcard-brands {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  line-height: 1.4;
}

.pcard-brands strong {
  color: var(--navy);
}

.pcard .btn {
  margin-top: auto;
  width: 100%;
}

/* ---------- INDUSTRIES ---------- */
.industries {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.icard {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 4px 12px rgba(23, 50, 91, 0.08);
  cursor: pointer;
}

.icard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.icard:hover img {
  transform: scale(1.12);
}

.icard span {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 14px 14px;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.95rem;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 33, 64, 0.92) 100%);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* ---------- WHY HHP ---------- */
.why {
  background: transparent;
  color: var(--text-main);
}

.why h2 {
  color: var(--navy);
}

.why .section-head p {
  color: var(--text-secondary);
}

.why .eyebrow {
  background: rgba(245, 185, 33, 0.1);
  color: var(--crimson);
  border-color: rgba(245, 185, 33, 0.3);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fcard {
  padding: 32px 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.3s, background 0.3s;
}

.fcard:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.fcard .ico {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--crimson);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(171, 30, 64, 0.35);
}

.fcard .ico svg {
  width: 28px;
  height: 28px;
  color: #FFFFFF;
}

.fcard h3 {
  color: #FFFFFF;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.fcard p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 0;
}

/* ---------- 3-STEP PROCESS ---------- */
.steps {
  background: #FFFFFF;
}

.step-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  padding: 24px 16px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
  border-radius: var(--radius);
}

.step:hover {
  transform: translateY(-8px);
  background: rgba(23, 50, 91, 0.03);
}

.step .num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-weight: 900;
  font-size: 1.6rem;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border: 4px solid #FFFFFF;
  box-shadow: 0 10px 25px rgba(23, 50, 91, 0.2);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.step:hover .num {
  transform: scale(1.1);
  background: var(--crimson);
  color: #FFF;
}

.step h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.step p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
}

.step-connector {
  position: absolute;
  top: 32px;
  left: 18%;
  right: 18%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--border) 0, var(--border) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}

.steps .cta-row {
  text-align: center;
  margin-top: 52px;
}

/* ---------- SOCIAL PROOF & TESTIMONIALS ---------- */
.proof {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tcard {
  background: #FFFFFF;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  position: relative;
}

.tcard .quote-mark {
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--crimson);
  opacity: 0.3;
  margin-bottom: 4px;
}

.tcard .stars {
  color: var(--gold-dark);
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.tcard p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  font-style: italic;
  line-height: 1.6;
  flex: 1;
}

.tcard .who {
  margin-top: 20px;
  font-weight: 800;
  color: var(--navy);
  font-size: 0.95rem;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.tcard .who small {
  display: block;
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-style: normal;
  margin-top: 2px;
}

.awards {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 48px;
}

.awards span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(23, 50, 91, 0.05);
}

.awards span svg {
  width: 18px;
  height: 18px;
  color: var(--gold-dark);
}

/* ---------- FAQ ACCORDION ---------- */
.faq {
  background: #FFFFFF;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-list details {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  transition: all 0.25s ease;
}

.faq-list details[open] {
  background: #FFFFFF;
  border-color: var(--navy);
  box-shadow: 0 6px 20px rgba(23, 50, 91, 0.08);
}

.faq-list summary {
  font-weight: 800;
  color: var(--navy);
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--crimson);
  transition: transform 0.2s;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
  color: var(--navy);
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* ---------- FINAL CTA SECTION ---------- */
.final {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: #FFFFFF;
}

.final .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.final h2 {
  color: #FFFFFF;
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  margin-bottom: 16px;
}

.final p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
  line-height: 1.6;
}

.final .contact-lines {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.final .contact-lines a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.05rem;
  transition: color 0.2s;
}

.final .contact-lines a:hover {
  color: var(--gold);
}

.final .contact-lines svg {
  width: 24px;
  height: 24px;
  flex: none;
  color: var(--gold);
}

.final .form-card {
  background: #FFFFFF;
  border: none;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.28);
}

.final .form-card h3 {
  color: var(--navy);
}

.final .form-card .form-sub {
  color: var(--text-secondary);
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 38px 0;
  background: #091426;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.footer a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

/* ---------- MOBILE STICKY BOTTOM BAR ---------- */
.mbar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 8px;
  padding: 10px 12px;
  background: #FFFFFF;
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 25px rgba(23, 50, 91, 0.12);
}

.mbar .btn {
  padding: 12px 8px;
  font-size: 0.92rem;
  border-radius: var(--radius-sm);
}

.mbar .btn svg {
  width: 18px;
  height: 18px;
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 1024px) {

  .hero .wrap,
  .final .wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust .wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .hero-copy {
    text-align: center;
    padding-right: 0;
  }

  .hero-points li {
    justify-content: center;
    text-align: left;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .step-grid {
    flex-direction: column;
    gap: 32px;
  }

  .step-connector {
    display: none;
  }

  .topbar .tb-right {
    display: none;
  }
}

@media (max-width: 640px) {
  section {
    padding: 55px 0;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust .wrap {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: span 1;
  }

  .form-card {
    padding: 26px 18px;
  }

  .header-cta .btn {
    display: none;
  }

  .header-phone span {
    display: none;
  }

  .brand-name {
    font-size: 0.88rem;
  }

  .brand img {
    width: 46px;
  }

  .mbar {
    display: grid;
  }

  body {
    padding-bottom: 68px;
  }

  .topbar {
    display: none;
  }

  .marquee-track img {
    height: 28px;
  }

  .hero-trust {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- FINAL CALL / EXIT INTENT MODAL ---------- */
.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.exit-modal.show {
  visibility: visible;
  opacity: 1;
}

.exit-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 33, 64, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.exit-modal-card {
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.35);
  border: 2px solid var(--navy-border);
  text-align: center;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.exit-modal.show .exit-modal-card {
  transform: translateY(0) scale(1);
}

.exit-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}

.exit-modal-close:hover {
  color: var(--crimson);
}

.exit-badge {
  display: inline-block;
  background: var(--crimson);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(171, 30, 64, 0.35);
}

.exit-modal-card h3 {
  font-size: 1.55rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.exit-modal-card p {
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.5;
  margin-bottom: 22px;
}

.exit-form-row {
  display: flex;
  gap: 10px;
}

.exit-form-row input {
  flex: 1;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  outline: none;
  background: #FAFAFC;
  transition: border-color 0.2s;
}

.exit-form-row input:focus {
  border-color: var(--navy);
  background: #FFFFFF;
}

.exit-form-row button {
  flex: none;
  padding: 14px 22px;
  white-space: nowrap;
}

.exit-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 18px 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.exit-divider::before,
.exit-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--border);
}

.exit-divider span {
  padding: 0 10px;
}

.btn-full {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.exit-dismiss {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.84rem;
  margin-top: 14px;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
}

.exit-dismiss:hover {
  color: var(--text-secondary);
}

/* ---------- LIVE SOCIAL PROOF TOAST ---------- */
.live-toast {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 55;
  background: var(--navy);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(245, 185, 33, 0.15);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 420px;
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.live-toast::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  border-radius: var(--radius) var(--radius) 0 0;
}

.live-toast.show {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.live-toast-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245, 185, 33, 0.15), rgba(171, 30, 64, 0.15));
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  flex: none;
  position: relative;
}

.live-toast-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  background: #10B981;
  border-radius: 50%;
  border: 2px solid var(--navy);
  animation: toastPulse 2s infinite;
}

@keyframes toastPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
}

.live-toast-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.live-toast-body strong {
  color: white;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.3;
}

.live-toast-body span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.4;
}

.live-toast-body small {
  color: #34D399;
  font-weight: 700;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 640px) {
  .exit-form-row {
    flex-direction: column;
  }

  .exit-modal-card {
    padding: 30px 20px;
  }

  .live-toast {
    bottom: 80px;
    left: 12px;
    right: 12px;
    max-width: calc(100% - 24px);
  }
}


/* ==========================================================================
   NEW SECTIONS STYLES (Added for Conversion Update)
   ========================================================================== */

.bg-alt {
  background-color: var(--bg-alt);
}

.header-nav {
  display: flex;
  gap: 20px;
}

.header-nav a {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--crimson);
}

@media (max-width: 900px) {
  .header-nav {
    display: none;
  }
}

.pcard-simple {
  background: var(--bg-main);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.pcard-simple:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
}

.pcard-simple h3 {
  color: var(--crimson);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.pcard-simple strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.4;
}

.pcard-simple p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ---------- PAIN-POINT IMAGE CARDS ---------- */
.pcard-img-card {
  background: var(--bg-main);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pcard-img-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.pcard-img-card .pcard-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f8f9fc;
}

.pcard-img-card .pcard-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.pcard-img-card:hover .pcard-img-wrap img {
  transform: scale(1.05);
}

.pcard-img-body {
  padding: 22px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.pcard-img-body h3 {
  color: var(--crimson);
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.3;
}

.pcard-img-body strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}

.pcard-img-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.vcard {
  background: var(--bg-main);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.vcard:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}

.vcard-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f1f5f9;
}

.vcard-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.vcard:hover .vcard-img-wrap img {
  transform: scale(1.05);
}

.vcard-body {
  padding: 28px 30px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vcard-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--crimson-light);
  color: var(--crimson);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.vcard-body h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin: 0;
}

.vcard-body p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ---------- WHY HHP FEATURE CARDS (fcard) ---------- */
.fcard {
  background: var(--bg-main);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.fcard .ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--crimson);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.fcard .ico svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
}

.fcard h3 {
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 800;
  margin: 0;
  line-height: 1.3;
}

.fcard p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* ---------- PAIN-POINT SECTION CONTENT ---------- */
.pain-intro {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 24px;
}

.pain-checklist {
  list-style: none;
  padding: 0;
  margin: 0 auto 28px;
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}

.pain-checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.5;
  padding: 14px 20px;
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-left: 4px solid #e2e8f0;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--card-shadow);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.pain-checklist li:hover {
  background: rgba(171, 30, 64, 0.06);
  transform: translateX(4px);
  box-shadow: var(--card-shadow-hover);
}

@media (max-width: 640px) {
  .pain-checklist {
    grid-template-columns: 1fr;
  }
}

.pain-checklist li::before {
  content: "?";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--crimson);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
  flex: none;
}

.pain-cta-line {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  margin: 8px 0 0;
  letter-spacing: -0.3px;
}

/* ---------- PAIN-POINT IMAGE CARDS ---------- */
.pcard-img-card {
  background: var(--bg-main);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pcard-img-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.pcard-img-card .pcard-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f8f9fc;
}

.pcard-img-card .pcard-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.pcard-img-card:hover .pcard-img-wrap img {
  transform: scale(1.05);
}

.pcard-img-body {
  padding: 22px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.pcard-img-body h3 {
  color: var(--crimson);
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.3;
}

.pcard-img-body strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}

.pcard-img-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ---------- INDUSTRIES CARDS (OVERLAY STYLE) ---------- */
.icard {
  display: block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  background: var(--navy);
  aspect-ratio: 1 / 1.1;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.icard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 30, 64, 0.95) 0%, rgba(14, 30, 64, 0.5) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.icard-overlay strong {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  margin: 0;
  transform: translateY(10px);
}

.icard-overlay small {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
  margin-top: 0;
}

.icard:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
}

.icard:hover img {
  transform: scale(1.1);
}

.icard:hover .icard-overlay {
  background: linear-gradient(to top, rgba(14, 30, 64, 0.98) 0%, rgba(171, 30, 64, 0.85) 60%, rgba(171, 30, 64, 0.4) 100%);
}

.icard:hover .icard-overlay strong {
  transform: translateY(0);
}

.icard:hover .icard-overlay small {
  max-height: 80px;
  opacity: 1;
  margin-top: 6px;
}

/* =========================================
   FAQ SECTION MODERN DESIGN
========================================= */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-list details {
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.faq-list details[open] {
  box-shadow: 0 10px 30px rgba(171, 30, 64, 0.1);
  border-color: var(--crimson-light);
}

.faq-list summary {
  padding: 24px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s ease;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--crimson);
  transition: transform 0.3s ease;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.faq-list details[open] summary {
  color: var(--crimson);
}

.faq-list details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-list details p {
  padding: 0 24px 24px 24px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  border-top: 1px solid transparent;
}

.faq-list details[open] p {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

/* =========================================
   EXIT-INTENT MODAL
========================================= */
.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.exit-modal.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.exit-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 23, 42, 0.85);
  backdrop-filter: blur(5px);
}

.exit-modal-card {
  position: relative;
  background: white;
  width: 100%;
  max-width: 500px;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
  text-align: center;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.exit-modal.show .exit-modal-card {
  transform: translateY(0) scale(1);
}

.exit-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.exit-modal-close:hover {
  background: var(--bg-alt);
  color: var(--navy);
}

.exit-badge {
  display: inline-block;
  background: var(--crimson-light);
  color: var(--crimson);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.exit-modal-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.exit-modal-card p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.exit-form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.exit-form-row input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
}

.exit-divider {
  display: flex;
  align-items: center;
  margin: 20px 0;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.exit-divider::before,
.exit-divider::after {
  content: "";
  flex: 1;
  border-top: 1px solid var(--border);
}

.exit-divider span {
  padding: 0 10px;
}

.btn-wa.btn-full {
  width: 100%;
  display: flex;
  justify-content: center;
}

.exit-dismiss {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 20px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.exit-dismiss:hover {
  color: var(--navy);
}

/* =========================================
   CTA POPUP MODAL
========================================= */
.cta-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.cta-modal.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.cta-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 23, 42, 0.85);
  backdrop-filter: blur(5px);
}

.cta-modal-card {
  position: relative;
  background: white;
  width: 100%;
  max-width: 550px;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.cta-modal.show .cta-modal-card {
  transform: translateY(0) scale(1);
}

.cta-modal-header {
  background: linear-gradient(135deg, #89002c, #b7002e);
  padding: 30px 40px;
  color: white;
  position: relative;
}

.cta-badge {
  display: inline-block;
  background: rgba(245, 185, 33, 0.15);
  color: var(--gold);
  border: 1px solid rgba(245, 185, 33, 0.3);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.cta-modal-header h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: white;
}

.cta-modal-header p {
  color: #fff;
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
}

.cta-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: white;
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
  z-index: 10;
}

.cta-modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.cta-modal-body {
  padding: 30px 40px;
  overflow-y: auto;
  background: #F8FAFC;
}

/* Adjust lead-form styles for inside modal */
.cta-modal-body .lead-form {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 600px) {
  .cta-modal-card {
    max-height: 95vh;
  }

  .cta-modal-header,
  .cta-modal-body {
    padding: 25px 20px;
  }
}