/* Insure Page - Custom Styles */

/* Page wrapper prevents horizontal scroll */
.insure-page-wrapper {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Navy blue headings for insure page (not hero which stays white) */
body:has(.insure-hero) section:not(.insure-hero) h1,
body:has(.insure-hero) section:not(.insure-hero) h2,
.split-content-title,
.section-header h2 {
  color: #1e3a5f;
}

/* Hero section with blue to white gradient */
.insure-hero {
  position: relative;
  min-height: 600px;
  overflow: visible;
  background: linear-gradient(
    180deg,
    #1e40af 0%,
    #2563eb 15%,
    #3b82f6 30%,
    #60a5fa 45%,
    #93c5fd 60%,
    #bfdbfe 75%,
    #dbeafe 85%,
    #f0f9ff 93%,
    #ffffff 100%
  ) !important;
}

/* Fade overlay at bottom of hero for smooth transition */
.insure-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 255, 255, 0.5) 40%,
    rgba(255, 255, 255, 0.8) 70%,
    #ffffff 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Navbar and content must be above background */
.insure-hero .navbar,
.insure-hero nav,
.insure-hero > nav {
  position: relative;
  z-index: 100;
}

.insure-hero-content {
  position: relative;
  z-index: 10;
  background: transparent;
  padding-top: 4rem;
  padding-bottom: 6rem;
  overflow: visible;
}

/* ===== HERO TEXT REVEAL ANIMATIONS ===== */

/* Whimsical blur-to-sharp sweep reveal for headline */
@keyframes whimsicalReveal {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
    filter: blur(6px);
    transform: scale(1.02);
  }
  40% {
    opacity: 1;
    filter: blur(3px);
  }
  100% {
    clip-path: inset(0 0% 0 0);
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

/* Slide up with fade for subheadline and form */
@keyframes slideUpReveal {
  0% {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Hero headline - whimsical blur-to-sharp sweep effect */
.insure-hero-headline {
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  filter: blur(6px);
  animation: whimsicalReveal 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.3s;
}

/* Hero subheadline - slides up after headline */
.insure-hero-subheadline {
  opacity: 0;
  transform: translateY(40px);
  animation: slideUpReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 1.1s;
}

/* Hero CTA container - slides up after subheadline */
.insure-hero-cta {
  opacity: 0;
  transform: translateY(40px);
  animation: slideUpReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 1.4s;
}

/* ===== SHIELD ICON ANIMATION (inline icon) ===== */
@keyframes shieldPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
  }
}

.insure-shield-icon {
  animation: shieldPulse 3s ease-in-out infinite;
}

/* =============================================================================
   UMBRELLA CONCEPT - Abstract Arc + Ambient Rain
   "Everything above is handled. Everything below is safe."
   ============================================================================= */

/* Rain container - full height, passes behind umbrella */
.insure-rain-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

/* Protective umbrella container - large golf umbrella style */
.insure-protective-arc {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 1150px;
  height: 560px;
  pointer-events: none;
  z-index: 3;
}

.insure-protective-arc svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.3))
          drop-shadow(0 0 30px rgba(251, 191, 36, 0.15));
}

/* The umbrella canopy - outline only, no fill */
.umbrella-canopy {
  fill: none;
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 2;
  stroke-linejoin: round;
  opacity: 0;
  animation: umbrellaFadeIn 1.5s ease-out 0.5s forwards,
             rainDropProtection 20s ease-in-out 3s infinite;
}

@keyframes umbrellaFadeIn {
  0% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Gold flash when rain "hits" the umbrella - protection effect */
/* Duration 20s with organic timing - avoids artificial feel */
@keyframes rainDropProtection {
  0%, 100% {
    stroke: rgba(255, 255, 255, 0.3);
    filter: none;
  }
  /* First drop hits */
  8% {
    stroke: rgba(251, 191, 36, 0.6);
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.5));
  }
  11% {
    stroke: rgba(255, 255, 255, 0.3);
    filter: none;
  }
  /* Second drop hits */
  28% {
    stroke: rgba(251, 191, 36, 0.5);
    filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.4));
  }
  32% {
    stroke: rgba(255, 255, 255, 0.3);
    filter: none;
  }
  /* Third drop hits */
  53% {
    stroke: rgba(251, 191, 36, 0.55);
    filter: drop-shadow(0 0 7px rgba(251, 191, 36, 0.45));
  }
  57% {
    stroke: rgba(255, 255, 255, 0.3);
    filter: none;
  }
  /* Fourth drop hits */
  76% {
    stroke: rgba(251, 191, 36, 0.5);
    filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.4));
  }
  80% {
    stroke: rgba(255, 255, 255, 0.3);
    filter: none;
  }
}

/* Umbrella handle and pole - white version */
.umbrella-handle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 2.5;
  stroke-linecap: round;
  opacity: 0;
  animation: handleFadeIn 1s ease-out 1.5s forwards;
}

/* Umbrella handle - orange gradient version */
.umbrella-handle-orange {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  opacity: 0;
  animation: handleFadeIn 1s ease-out 1.5s forwards;
}

@keyframes handleFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Soft gold glow under the umbrella - the "protected zone" */
.insure-protective-arc::after {
  content: '';
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 800px;
  height: 500px;
  background: radial-gradient(
    ellipse 100% 60% at 50% 0%,
    rgba(251, 191, 36, 0.05) 0%,
    rgba(255, 255, 255, 0.03) 40%,
    transparent 70%
  );
  pointer-events: none;
}

/* ===== AMBIENT RAIN PARTICLES ===== */

/* Individual rain drop/line styles */
/* Ambient rain - visible at top, fades as it falls */
.rain-drop {
  position: absolute;
  top: -60px;
  width: 1.5px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 255, 255, 0.6) 10%,
    rgba(255, 255, 255, 0.7) 30%,
    rgba(255, 255, 255, 0.4) 60%,
    rgba(255, 255, 255, 0.1) 85%,
    transparent 100%
  );
  opacity: 0;
  animation: rainFall 12s linear infinite;
}

/* Rain falls slowly, visible at top then fades out */
@keyframes rainFall {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  3% {
    opacity: 1;
  }
  /* Strong visibility in upper zone */
  20% {
    opacity: 0.9;
  }
  /* Begin fading */
  40% {
    opacity: 0.5;
  }
  /* Fading more */
  60% {
    opacity: 0.2;
  }
  /* Nearly gone */
  75% {
    opacity: 0.05;
  }
  100% {
    transform: translateY(500px);
    opacity: 0;
  }
}

/* Varied rain drops - sparse on outer edges, avoiding center headline area */
.rain-drop:nth-child(1) { left: 2%; height: 35px; animation-delay: 0s; animation-duration: 14s; }
.rain-drop:nth-child(2) { left: 6%; height: 28px; animation-delay: 2s; animation-duration: 16s; }
.rain-drop:nth-child(3) { left: 10%; height: 32px; animation-delay: 5s; animation-duration: 13s; }
.rain-drop:nth-child(4) { left: 14%; height: 25px; animation-delay: 1s; animation-duration: 15s; }
.rain-drop:nth-child(5) { left: 18%; height: 30px; animation-delay: 7s; animation-duration: 14s; }
.rain-drop:nth-child(6) { left: 22%; height: 27px; animation-delay: 3s; animation-duration: 16s; }
.rain-drop:nth-child(7) { left: 26%; height: 33px; animation-delay: 9s; animation-duration: 13s; }
.rain-drop:nth-child(8) { left: 74%; height: 28px; animation-delay: 1.5s; animation-duration: 15s; }
.rain-drop:nth-child(9) { left: 78%; height: 31px; animation-delay: 6s; animation-duration: 14s; }
.rain-drop:nth-child(10) { left: 82%; height: 26px; animation-delay: 2.5s; animation-duration: 16s; }
.rain-drop:nth-child(11) { left: 86%; height: 34px; animation-delay: 8s; animation-duration: 13s; }
.rain-drop:nth-child(12) { left: 90%; height: 29px; animation-delay: 4s; animation-duration: 15s; }
.rain-drop:nth-child(13) { left: 94%; height: 32px; animation-delay: 10s; animation-duration: 14s; }
.rain-drop:nth-child(14) { left: 4%; height: 27px; animation-delay: 11s; animation-duration: 16s; }
.rain-drop:nth-child(15) { left: 12%; height: 30px; animation-delay: 13s; animation-duration: 13s; }
.rain-drop:nth-child(16) { left: 20%; height: 25px; animation-delay: 12s; animation-duration: 15s; }
.rain-drop:nth-child(17) { left: 80%; height: 33px; animation-delay: 14s; animation-duration: 14s; }
.rain-drop:nth-child(18) { left: 88%; height: 28px; animation-delay: 15s; animation-duration: 16s; }
.rain-drop:nth-child(19) { left: 96%; height: 31px; animation-delay: 16s; animation-duration: 13s; }
.rain-drop:nth-child(20) { left: 1%; height: 26px; animation-delay: 17s; animation-duration: 15s; }

/* Second layer - subtle background rain */
.rain-drop-subtle {
  position: absolute;
  top: -50px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 15%,
    rgba(255, 255, 255, 0.4) 40%,
    rgba(255, 255, 255, 0.15) 70%,
    transparent 100%
  );
  opacity: 0;
  animation: rainFallSlow 18s linear infinite;
}

@keyframes rainFallSlow {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  5% {
    opacity: 0.8;
  }
  25% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.3;
  }
  70% {
    opacity: 0.1;
  }
  100% {
    transform: translateY(550px);
    opacity: 0;
  }
}

.rain-drop-subtle:nth-child(1) { left: 5%; height: 45px; animation-delay: 1s; }
.rain-drop-subtle:nth-child(2) { left: 15%; height: 38px; animation-delay: 4s; }
.rain-drop-subtle:nth-child(3) { left: 25%; height: 42px; animation-delay: 8s; }
.rain-drop-subtle:nth-child(4) { left: 75%; height: 40px; animation-delay: 3s; }
.rain-drop-subtle:nth-child(5) { left: 85%; height: 44px; animation-delay: 6s; }
.rain-drop-subtle:nth-child(6) { left: 95%; height: 38px; animation-delay: 10s; }

/* =============================================================================
   OPTION B: INTERACTIVE (Very Premium)
   - Rain activates slightly on scroll
   - Arc glow increases subtly when CTA is hovered
   ============================================================================= */

/* Umbrella glow enhancement on CTA hover - uses sibling selector via parent */
.insure-hero:has(.insure-hero-cta:hover) .insure-protective-arc svg {
  filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.5))
          drop-shadow(0 0 40px rgba(251, 191, 36, 0.25));
  transition: filter 0.6s ease-out;
}

.insure-hero:has(.insure-hero-cta:hover) .umbrella-canopy {
  fill: none;
  stroke: rgba(255, 255, 255, 0.45);
  transition: all 0.6s ease-out;
}

.insure-hero:has(.insure-hero-cta:hover) .umbrella-handle {
  stroke: rgba(255, 255, 255, 0.45);
  transition: all 0.6s ease-out;
}

.insure-hero:has(.insure-hero-cta:hover) .insure-protective-arc::after {
  background: radial-gradient(
    ellipse 100% 50% at 50% 0%,
    rgba(251, 191, 36, 0.12) 0%,
    rgba(255, 255, 255, 0.06) 30%,
    transparent 60%
  );
  transition: all 0.6s ease-out;
}

/* Base transition for smooth effect */
.umbrella-canopy,
.umbrella-handle {
  transition: stroke 0.6s ease-out, fill 0.6s ease-out, filter 0.6s ease-out;
}

.insure-protective-arc svg {
  transition: filter 0.6s ease-out;
}

.insure-protective-arc::after {
  transition: background 0.6s ease-out;
}

/* Rain intensity increases on scroll - CSS scroll-driven animation */
@supports (animation-timeline: scroll()) {
  .insure-rain-container {
    animation: rainIntensify linear;
    animation-timeline: scroll();
    animation-range: 0px 300px;
  }

  @keyframes rainIntensify {
    0% {
      opacity: 0.6;
    }
    100% {
      opacity: 1;
    }
  }

  .rain-drop {
    animation: rainFall 25s linear infinite, rainDropIntensify linear;
    animation-timeline: auto, scroll();
    animation-range: auto, 0px 250px;
  }

  @keyframes rainDropIntensify {
    0% {
      background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255, 255, 255, 0.06) 20%,
        rgba(255, 255, 255, 0.08) 80%,
        transparent 100%
      );
    }
    100% {
      background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255, 255, 255, 0.12) 20%,
        rgba(255, 255, 255, 0.18) 80%,
        transparent 100%
      );
    }
  }
}

/* Fallback for browsers without scroll-driven animations */
@supports not (animation-timeline: scroll()) {
  /* Rain starts subtle, JS will enhance on scroll */
  .rain-drop {
    --rain-opacity-multiplier: 1;
  }

  .insure-rain-container.scrolled .rain-drop {
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(255, 255, 255, 0.12) 20%,
      rgba(255, 255, 255, 0.16) 80%,
      transparent 100%
    );
  }

  .insure-rain-container.scrolled .rain-drop-subtle {
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(255, 255, 255, 0.08) 30%,
      rgba(255, 255, 255, 0.10) 70%,
      transparent 100%
    );
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .rain-drop,
  .rain-drop-subtle {
    animation: none;
    opacity: 0.05;
    transform: translateY(0);
  }
  .umbrella-canopy,
  .umbrella-handle {
    animation: none;
    opacity: 1;
  }
  .insure-hero:has(.insure-hero-cta:hover) .insure-protective-arc svg {
    filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.3))
            drop-shadow(0 0 30px rgba(251, 191, 36, 0.15));
  }
}

/* ===== ANIMATED GRADIENT LINE ===== */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.insure-gradient-line {
  width: 320px;
  height: 2px;
  margin: 24px auto;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 79, 0, 0.4) 15%,
    rgba(251, 191, 36, 0.6) 35%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(251, 191, 36, 0.6) 65%,
    rgba(255, 79, 0, 0.4) 85%,
    transparent 100%
  );
  background-size: 200% 100%;
  opacity: 0;
  animation: slideUpReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
             gradientShift 8s ease-in-out infinite;
  animation-delay: 1.3s, 1.3s;
}

/* Section gradient line - bigger, animated */
.insure-section-gradient-line {
  width: 120px;
  height: 4px;
  margin: 0 auto 24px;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    #FF4F00 0%,
    #fbbf24 50%,
    #FF4F00 100%
  );
  background-size: 200% 100%;
  animation: gradientShift 4s ease-in-out infinite;
}

/* =============================================================================
   DISCOUNT NODES - Circle/Node Visualization
   ============================================================================= */

.discount-nodes-container {
  max-width: 700px;
  margin: 0 auto;
}

.discount-nodes {
  position: relative;
  padding: 2rem 0;
}

/* SVG Connection Lines */
.discount-nodes-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.discount-node-line {
  stroke: #cbd5e1;
  stroke-width: 2;
  stroke-linecap: round;
}

/* Node Grid - 4 columns */
.discount-nodes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

/* Individual Node */
.discount-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.discount-node:hover {
  z-index: 10;
}

.discount-node-circle {
  width: 72px;
  height: 72px;
  background: white;
  border: 3px solid #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
  position: relative;
}

.discount-node-circle i {
  font-size: 1.5rem;
  color: #1e40af;
  transition: all 0.3s ease;
}

.discount-node-title {
  margin-top: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: #334155;
  text-align: center;
  transition: all 0.3s ease;
}

/* Hover state - circle expands */
.discount-node:hover .discount-node-circle {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  border-color: #1e40af;
  box-shadow: 0 12px 40px rgba(30, 64, 175, 0.4);
}

.discount-node:hover .discount-node-circle i {
  opacity: 0;
  visibility: hidden;
}

.discount-node:hover .discount-node-title {
  color: #1e40af;
  font-weight: 700;
}

/* Tooltip - shown inside circle on hover */
.discount-node-tooltip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease 0.1s, visibility 0.3s ease 0.1s;
  z-index: 10;
  pointer-events: none;
  width: 120px;
}

.discount-node:hover .discount-node-tooltip {
  opacity: 1;
  visibility: visible;
}

.discount-node-tooltip ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.discount-node-tooltip li {
  font-size: 0.75rem;
  color: white;
  padding: 0.15rem 0;
  display: block;
  text-align: center;
  white-space: nowrap;
}

/* Mobile: 2 columns */
@media (max-width: 768px) {
  .discount-nodes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }

  .discount-nodes-connections {
    display: none;
  }

  .discount-node-circle {
    width: 64px;
    height: 64px;
  }

  .discount-node-circle i {
    font-size: 1.25rem;
  }

  .discount-node:hover .discount-node-circle {
    width: 120px;
    height: 120px;
  }

  .discount-node-tooltip {
    width: 100px;
  }

  .discount-node-tooltip li {
    font-size: 0.6875rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .discount-nodes-grid {
    gap: 2rem 1rem;
  }

  .discount-node-circle {
    width: 56px;
    height: 56px;
  }

  .discount-node-circle i {
    font-size: 1.125rem;
  }

  .discount-node:hover .discount-node-circle {
    width: 100px;
    height: 100px;
  }

  .discount-node-tooltip {
    width: 85px;
  }

  .discount-node-tooltip li {
    font-size: 0.625rem;
  }

  .discount-node-title {
    font-size: 0.75rem;
  }
}

/* ===== SPOTLIGHT EFFECT ===== */
.insure-spotlight {
  position: absolute;
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

/* ===== PRIMARY CTA BUTTON ===== */
.insure-cta-button {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: linear-gradient(135deg, #FF4F00 0%, #D94300 100%);
  color: white;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(255, 79, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
}

.insure-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 79, 0, 0.45);
  background: linear-gradient(135deg, #D94300 0%, #dc2626 100%);
}

.insure-cta-button i {
  margin-right: 10px;
}

/* Secondary (outline) button */
.insure-cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: transparent;
  color: white;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
}

.insure-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.insure-cta-secondary i {
  margin-right: 10px;
}

/* ===== TRUST METRICS ===== */
.insure-trust-metrics {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 32px;
  padding: 24px 0;
}

.insure-trust-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  text-align: center;
}

.insure-trust-metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.insure-trust-metric-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 4px;
  font-weight: 500;
}

.insure-trust-metric-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
}

/* Responsive trust metrics */
@media (max-width: 768px) {
  .insure-trust-metrics {
    flex-wrap: wrap;
    gap: 24px;
  }

  .insure-trust-metric {
    padding: 0 24px;
  }

  .insure-trust-metric-value {
    font-size: 2rem;
  }

  .insure-trust-metric-divider {
    display: none;
  }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays for grid items */
.scroll-reveal[data-delay="1"] { transition-delay: 0.1s; }
.scroll-reveal[data-delay="2"] { transition-delay: 0.2s; }
.scroll-reveal[data-delay="3"] { transition-delay: 0.3s; }
.scroll-reveal[data-delay="4"] { transition-delay: 0.4s; }
.scroll-reveal[data-delay="5"] { transition-delay: 0.5s; }
.scroll-reveal[data-delay="6"] { transition-delay: 0.6s; }

/* ===== SECTION HEADERS ===== */
.insure-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.insure-section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.insure-section-header-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FF4F00 0%, #FF7A2E 100%);
  margin: 0 auto;
  border-radius: 2px;
}

.insure-section-header p {
  margin-top: 16px;
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== COVERAGE CARDS HOVER ENHANCEMENT ===== */
.insure-coverage-card {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.insure-coverage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* ===== EXPERT GUIDANCE SECTION ===== */
.insure-expert-guidance {
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}

.insure-expert-guidance > div {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.insure-expert-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #FF4F00;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.insure-expert-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.insure-expert-subtitle {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.insure-expert-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.insure-expert-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.insure-expert-icon-circle {
  width: 52px;
  height: 52px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #2563eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.insure-expert-icon:hover .insure-expert-icon-circle {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.insure-expert-icon span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #374151;
}

.insure-expert-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #FF4F00 0%, #D94300 100%);
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 79, 0, 0.3);
  transition: all 0.3s ease;
}

.insure-expert-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 79, 0, 0.4);
}

/* Responsive Expert Guidance */
@media (max-width: 768px) {
  .insure-expert-title {
    font-size: 1.5rem;
  }

  .insure-expert-icons {
    gap: 16px;
  }

  .insure-expert-icon-circle {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .insure-expert-icon span {
    font-size: 0.7rem;
  }
}

/* ===== RESPONSIVE HERO ===== */
@media (max-width: 1024px) {
  .insure-hero {
    min-height: 500px;
  }

  .insure-hero-content {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }
}

@media (max-width: 768px) {
  .insure-hero {
    min-height: 450px;
  }

  .insure-gradient-line {
    width: 240px;
  }

  .insure-cta-button,
  .insure-cta-secondary {
    padding: 14px 24px;
    font-size: 0.9rem;
  }
}

/* ===== SUGGESTIONS DROPDOWN ===== */
.insure-hero-cta {
  overflow: visible !important;
}

/* Ensure suggestions dropdown is absolutely positioned and visible */
.insure-hero-cta [data-address-autocomplete-target="suggestions"] {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  margin-top: 8px !important;
  pointer-events: auto !important;
  z-index: 9999 !important;
  max-height: 350px;
  overflow-y: auto;
  border: 1px solid #e5e7eb;
}

/* Ensure all parent containers allow dropdown overflow */
.insure-hero,
.insure-hero .insure-hero-content,
.insure-hero .insure-hero-cta,
.insure-hero .insure-hero-cta > div,
.insure-hero form,
.insure-hero form > div,
.insure-hero form .space-y-4,
.insure-hero form .relative {
  overflow: visible !important;
}
