/* Find Page - Custom Styles */

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

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

/* Honeycomb grid container - no slant, clean alignment */
.hex-grid-container {
  position: absolute;
  inset: -100px;
  overflow: hidden;
  z-index: 1;
}

/* Honeycomb grid layout - matching SVG geometry for perfect tiling */
.hex-grid {
  /* Hex geometry: regular hexagon ratio */
  --hex-width: 100px;
  --hex-height: calc(var(--hex-width) * 1.1547); /* Regular hexagon: 2/sqrt(3) */
  --hex-gap: 3px; /* Uniform gap between all hexagon edges */

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Row container */
.hex-row {
  display: flex;
  justify-content: center;
  height: var(--hex-height);
  /* Rows overlap by 25% minus gap adjustment for uniform spacing */
  margin-bottom: calc(var(--hex-height) * -0.25 + var(--hex-gap) * 0.5);
}

/* Offset alternating rows for honeycomb pattern */
.hex-row.hex-row-offset {
  transform: translateX(calc(var(--hex-width) / 2 + var(--hex-gap) / 2));
}

/* Individual hexagon cell */
.hex-cell {
  width: var(--hex-width);
  height: var(--hex-height);
  margin: 0 calc(var(--hex-gap) / 2);
  position: relative;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  pointer-events: auto;
  flex-shrink: 0;
}

/* Hexagon outline using inset box-shadow trick with pseudo-element */
.hex-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 100%);
  opacity: 0.5;
  transition: all 0.4s ease;
}


/* Hero section with blue to white gradient */
.find-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 */
.find-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;
}

/* Property image - hidden by default, shows on hover */
.hex-cell-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0;
  transform: scale(1.1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Gold overlay - appears with image on hover */
.hex-cell-overlay {
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.40) 0%,
    rgba(255, 193, 7, 0.35) 50%,
    rgba(245, 158, 11, 0.40) 100%
  );
  opacity: 0;
  transition: all 0.5s ease;
  pointer-events: none;
}

/* Hover state - reveal image with gold tint */
.hex-cell:hover {
  transform: scale(1.15);
  z-index: 10;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
}

.hex-cell:hover::before {
  opacity: 0;
}

.hex-cell:hover .hex-cell-image {
  opacity: 1;
  transform: scale(1);
}

.hex-cell:hover .hex-cell-overlay {
  opacity: 1;
}

/* Subtle shine effect on hover */
.hex-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.hex-cell:hover::after {
  opacity: 1;
}

/* Responsive honeycomb sizing */
@media (max-width: 1024px) {
  .hex-grid {
    --hex-width: 90px;
  }
}

@media (max-width: 768px) {
  .hex-grid {
    --hex-width: 75px;
  }
}

/* Content sections styling */
section.bg-gray-50,
section.bg-white {
  position: relative;
  z-index: 1;
}

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

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  background: transparent;
  pointer-events: none; /* Allow hex hover through */
  padding-top: 4rem;
  padding-bottom: 6rem;
  overflow: visible;
}

/* Re-enable pointer events on interactive elements */
.hero-content-wrapper h1,
.hero-content-wrapper p,
.hero-content-wrapper form,
.hero-content-wrapper input,
.hero-content-wrapper button,
.hero-content-wrapper a,
.hero-content-wrapper .search-form,
.hero-content-wrapper [data-controller] {
  pointer-events: auto;
}

/* ===== COVERFLOW 3D CAROUSEL ===== */

/* Main container with perspective */
.coverflow-container {
  position: relative;
  width: 100%;
  height: 500px;
  perspective: 1200px;
  perspective-origin: 50% 50%;
  overflow-x: clip;
  overflow-y: visible;
}

/* Wrapper holds all slides */
.coverflow-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

/* Individual slide */
.coverflow-slide {
  position: absolute;
  width: 340px;
  height: 440px;
  left: 50%;
  top: 50%;
  margin-left: -170px;
  margin-top: -220px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  backface-visibility: hidden;
}

.coverflow-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

/* Slide image */
.coverflow-slide .listing-tile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient overlay */
.coverflow-slide .listing-tile-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    transparent 70%
  );
}

/* Content at bottom */
.coverflow-slide .listing-tile-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  color: white;
}

.coverflow-slide .listing-tile-price {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 4px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.coverflow-slide .listing-tile-address {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 8px;
}

.coverflow-slide .listing-tile-stats {
  display: flex;
  gap: 16px;
  font-size: 0.875rem;
  opacity: 0.85;
}

.coverflow-slide .listing-tile-stats span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Featured badge */
.coverflow-slide .featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
}

/* Vana Listed badge - orange styling matching vanaOrange */
.coverflow-slide .vana-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  background: linear-gradient(135deg, #f16700 0%, #ff8c42 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 12px rgba(241, 103, 0, 0.4);
}

/* Status badge - top right */
.coverflow-slide .status-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.status-active {
  background: rgba(59, 130, 246, 0.9);
  color: white;
}

.status-badge.status-pending {
  background: rgba(234, 179, 8, 0.9);
  color: #1f2937;
}

.status-badge.status-coming-soon {
  background: rgba(139, 92, 246, 0.9);
  color: white;
}

.status-badge.status-active-under-contract {
  background: rgba(249, 115, 22, 0.9);
  color: white;
}

/* Navigation arrows */
.coverflow-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #374151;
  transition: all 0.3s ease;
  z-index: 100;
}

.coverflow-nav:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  color: #3b82f6;
}

.coverflow-prev {
  left: 20px;
}

.coverflow-next {
  right: 20px;
}

/* Mobile adjustments */
@media (max-width: 1024px) {
  .coverflow-container {
    height: 450px;
  }

  .coverflow-slide {
    width: 300px;
    height: 400px;
    margin-left: -150px;
    margin-top: -200px;
  }

  .coverflow-nav {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .coverflow-prev {
    left: 10px;
  }

  .coverflow-next {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .coverflow-container {
    height: 400px;
    perspective: 800px;
  }

  .coverflow-slide {
    width: 260px;
    height: 340px;
    margin-left: -130px;
    margin-top: -170px;
  }

  .coverflow-slide .listing-tile-content {
    padding: 16px;
  }

  .coverflow-slide .listing-tile-price {
    font-size: 1.5rem;
  }

  .coverflow-nav {
    width: 40px;
    height: 40px;
  }
}

/* ===== LISTING TILE ===== */
.listing-tile {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.listing-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.listing-tile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.listing-tile:hover .listing-tile-image {
  transform: scale(1.08);
}

.listing-tile-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 30%,
    rgba(0, 0, 0, 0.1) 60%,
    transparent 100%
  );
}

.listing-tile-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: white;
}

.listing-tile-price {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 4px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.listing-tile-address {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 8px;
}

.listing-tile-stats {
  display: flex;
  gap: 16px;
  font-size: 0.875rem;
  opacity: 0.85;
}

.listing-tile-stats span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== FEATURED BADGE ===== */
.featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #f16700 0%, #ff8c42 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 12px rgba(241, 103, 0, 0.4);
  z-index: 10;
}

/* ===== 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; }

/* ===== PARALLAX SERVICE CARDS ===== */
.parallax-container {
  perspective: 1200px;
}

.parallax-card {
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  will-change: transform;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.parallax-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Service card styling */
.service-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.service-card-title {
  font-weight: 600;
  font-size: 1rem;
  color: #1f2937;
  margin-bottom: 8px;
}

.service-card-description {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
}

/* Service card color variants */
.service-card.blue .service-card-icon {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #2563eb;
}

.service-card.green .service-card-icon {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  color: #16a34a;
}

.service-card.purple .service-card-icon {
  background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
  color: #9333ea;
}

.service-card.orange .service-card-icon {
  background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
  color: #ea580c;
}

.service-card.red .service-card-icon {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  color: #dc2626;
}

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

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

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

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

/* ===== FEATURE HIGHLIGHTS ===== */
.feature-highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.feature-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-highlight-content h3 {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.feature-highlight-content p {
  font-size: 0.875rem;
  color: #6b7280;
}

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

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

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

/* ===== EMPTY STATE ===== */
.featured-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 16px;
  border: 2px dashed #e2e8f0;
}

.featured-empty-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: #e2e8f0;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #94a3b8;
}

.featured-empty h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 8px;
}

.featured-empty p {
  color: #64748b;
}

/* ===== 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 */
.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 */
.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 form container - slides up after subheadline */
.hero-form-container {
  opacity: 0;
  transform: translateY(40px);
  animation: slideUpReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 1.4s;
}

/* ===== HERO SEARCH BAR - Eye-catching styling ===== */
.hero-form-container form .relative {
  position: relative;
}

/* Elevated search input with glow */
.hero-form-container input[type="text"] {
  background: white !important;
  border: 2px solid rgba(255, 255, 255, 0.8) !important;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-form-container input[type="text"]:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.1),
    0 0 0 4px rgba(241, 103, 0, 0.1);
}

.hero-form-container input[type="text"]:focus {
  transform: translateY(-2px);
  border-color: #f16700 !important;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.1),
    0 0 0 4px rgba(241, 103, 0, 0.15);
  outline: none !important;
}

/* Animated search button */
.hero-form-container button[type="submit"] {
  box-shadow: 0 4px 12px rgba(241, 103, 0, 0.4);
  transition: all 0.3s ease;
}

.hero-form-container button[type="submit"]:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(241, 103, 0, 0.5);
}

/* Subtle pulse animation on the search icon */
@keyframes subtlePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.hero-form-container .fa-magnifying-glass {
  animation: subtlePulse 2s ease-in-out infinite;
}

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

/* Override JS-set fixed positioning with absolute - high specificity selector */
.find-page-suggestions[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 */
.find-hero,
.find-hero .hero-content-wrapper,
.find-hero .hero-form-container,
.find-hero .hero-form-container > div,
.find-hero form,
.find-hero form > div,
.find-hero form .space-y-4,
.find-hero form .relative {
  overflow: visible !important;
}

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

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

.trust-metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.trust-metric-label {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 4px;
  font-weight: 500;
}

.trust-metric-detail {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 2px;
}

.trust-metric-divider {
  width: 1px;
  height: 60px;
  background: #e5e7eb;
}

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

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

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

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

/* ===== SPLIT CONTENT SECTION ===== */
.split-content-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

/* Wide variant - now 50/50 with matched heights */
.split-content-section.split-wide {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.split-content-box {
  background: #f8fafc;
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.split-content-eyebrow {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}

.split-content-title {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.split-content-text {
  margin-bottom: 16px;
}

.split-content-text p {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 12px;
}

.split-content-text p:last-child {
  margin-bottom: 0;
}

.split-content-text strong {
  color: #f16700;
  font-weight: 600;
}

.split-content-list {
  list-style: none;
  padding: 0;
  margin: 0 0 auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split-content-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.split-content-list li i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 1rem;
  flex-shrink: 0;
}

.split-content-list li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.split-content-list li strong {
  font-weight: 600;
  color: #111827;
  font-size: 0.95rem;
}

.split-content-list li span {
  font-size: 0.85rem;
  color: #6b7280;
}

/* Compact list variant - horizontal flow */
.split-content-list.compact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 24px;
}

.split-content-list.compact li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.split-content-list.compact li i {
  width: 28px;
  height: 28px;
  font-size: 0.75rem;
}

.split-content-list.compact li span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.split-content-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
}

.split-content-footer strong {
  color: #f16700;
}

.split-cta {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 24px;
}

.split-content-image {
  border-radius: 24px;
  overflow: hidden;
}

.split-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive split content */
@media (max-width: 1024px) {
  .split-content-section,
  .split-content-section.split-wide {
    grid-template-columns: 1fr;
  }

  .split-content-box {
    padding: 32px;
    min-height: auto;
  }

  .split-content-title {
    font-size: 2rem;
  }

  .split-content-image {
    min-height: 300px;
    order: -1;
  }

  .split-content-list.compact {
    gap: 10px 16px;
  }
}

/* ===== WHY VANA SECTION ===== */
.why-vana-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.why-vana-content {
  max-width: 420px;
}

.why-vana-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #1e3a5f;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.why-vana-text {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.7;
}

.why-vana-text strong {
  color: #f16700;
}

.why-vana-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-vana-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.why-vana-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.why-vana-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-vana-card-icon.blue {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #2563eb;
}

.why-vana-card-icon.orange {
  background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
  color: #ea580c;
}

.why-vana-card-icon.yellow {
  background: linear-gradient(135deg, #fef9c3 0%, #fef08a 100%);
  color: #ca8a04;
}

.why-vana-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 2px;
}

.why-vana-card p {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.4;
}

/* Responsive Why Vana */
@media (max-width: 1024px) {
  .why-vana-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .why-vana-content {
    max-width: 100%;
  }

  .why-vana-title {
    font-size: 2.25rem;
  }

  .why-vana-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .why-vana-cards {
    grid-template-columns: 1fr;
  }
}

/* ===== EXPERT GUIDANCE SECTION ===== */
.expert-guidance-section {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #f59e0b 100%);
}

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

.expert-guidance-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.expert-guidance-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #000;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

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

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

.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: #1e3a5f;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

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

.expert-guidance-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: white;
  color: #000;
  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(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.expert-guidance-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.expert-guidance-btn i {
  font-size: 0.75rem;
}

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

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

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

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