/* =====================================================
   HOMEPAGE REDESIGN — CSS
   Woonprijs.nl v8.0 Redesign
   ===================================================== */

/* === DESIGN TOKENS === */
:root {
  --hp-navy: #0a1628;
  --hp-navy-light: #0f1d32;
  --hp-blue: #1a3a5c;
  --hp-brand: #1e40af;
  --hp-brand-light: #3b82f6;
  --hp-indigo: #6366f1;
  --hp-white: #ffffff;
  --hp-gray-50: #f8fafc;
  --hp-gray-100: #f1f5f9;
  --hp-gray-200: #e2e8f0;
  --hp-gray-300: #cbd5e1;
  --hp-gray-400: #94a3b8;
  --hp-gray-500: #64748b;
  --hp-gray-600: #475569;
  --hp-gray-700: #334155;
  --hp-gray-800: #1e293b;
  --hp-gray-900: #0f172a;
  --hp-text: #1e293b;
  --hp-text-secondary: #475569;
  --hp-green: #16a34a;
  --hp-radius: 12px;
  --hp-radius-lg: 16px;
  --hp-radius-xl: 24px;
  --hp-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --hp-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --hp-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --hp-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --hp-max-width: 1200px;
  --hp-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === MAIN CONTAINER OVERRIDE === */
.container {
  max-width: var(--hp-max-width) !important;
  width: min(var(--hp-max-width), 95vw) !important;
  box-shadow: 0 10px 45px rgba(99, 102, 241, 0.07) !important;
}

/* === HEADER RESTYLE === */
.site-header {
  background: var(--hp-white) !important;
  border-bottom: 1px solid var(--hp-gray-200) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: var(--hp-max-width) !important;
  margin: 0 auto;
}

.auth-btn {
  background: var(--hp-brand) !important;
  color: white !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 8px 20px !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: var(--hp-transition) !important;
}

.auth-btn:hover {
  background: #1e3a8a !important;
  transform: translateY(-1px);
}

/* === HERO SECTION === */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--hp-max-width);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 2rem;
  min-height: 520px;
}

.hero-left h1 {
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  color: var(--hp-gray-900) !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 1.25rem !important;
  text-align: left !important;
}

.hero-left .hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--hp-text-secondary);
  margin-bottom: 1.75rem;
  max-width: 520px;
}

/* Hero Search Bar Wrapper override */
#address-form {
  display: block !important;
  position: relative !important;
  left: 0 !important;
  transform: none !important;
  background: var(--hp-white) !important;
  border: 1px solid var(--hp-gray-200) !important;
  border-radius: var(--hp-radius-xl) !important;
  padding: 1.75rem !important;
  margin: 1.5rem 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  box-shadow: var(--hp-shadow-lg) !important;
  box-sizing: border-box !important;
}

/* Hero Search Bar */
.hero-search-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0.75rem;
  position: relative;
  width: 100%;
}

.hero-search-container .autocomplete-wrapper {
  width: 100%;
}

.hero-search-container input[type="text"] {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--hp-gray-200) !important;
  border-radius: var(--hp-radius) !important;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s ease;
  background: var(--hp-white);
}

.hero-search-container input[type="text"]:focus {
  border-color: var(--hp-brand) !important;
}

.hero-search-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: #1e40af !important;
  color: white !important;
  border: 2px solid #1e40af !important;
  border-radius: var(--hp-radius) !important;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: var(--hp-transition);
  white-space: nowrap;
  width: 100%;
}

.hero-search-cta:hover {
  background: #1d3557 !important;
  border-color: #1d3557 !important;
}

.hero-search-cta svg {
  flex-shrink: 0;
}

.hero-example-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--hp-text-secondary);
  font-size: 0.85rem;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: color 0.2s;
}

.hero-example-link:hover {
  color: var(--hp-brand);
}

.hero-example-link svg {
  width: 14px;
  height: 14px;
}

/* Trust Badges */
.hero-trust-badges {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--hp-text-secondary);
  font-weight: 500;
}

.trust-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--hp-gray-50);
  border-radius: 6px;
  color: var(--hp-green);
  flex-shrink: 0;
}

/* Property Preview Card */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes float-preview-card {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

.property-preview-card {
  background: var(--hp-white);
  border-radius: var(--hp-radius-xl);
  box-shadow: var(--hp-shadow-xl);
  overflow: hidden;
  width: 100%;
  max-width: 460px;
  border: 1px solid var(--hp-gray-200);
  animation: float-preview-card 5s ease-in-out infinite;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-preview-card:hover {
  animation-play-state: paused;
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.18);
  border-color: var(--hp-brand);
}

.property-preview-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.property-preview-card:hover .property-preview-image {
  transform: scale(1.04);
}

.property-preview-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.property-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.property-preview-address {
  font-size: 0.85rem;
  color: var(--hp-text-secondary);
  font-weight: 500;
}

.property-preview-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: #dcfce7;
  color: #15803d;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
}

.property-preview-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--hp-gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.property-preview-label {
  font-size: 0.75rem;
  color: var(--hp-gray-400);
  margin-bottom: 1rem;
}

.property-preview-label strong {
  color: var(--hp-text-secondary);
}

.property-preview-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.preview-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.preview-stat-label {
  font-size: 0.7rem;
  color: var(--hp-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.preview-stat-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--hp-gray-900);
}

.preview-stat-value.positive {
  color: #16a34a;
}

.preview-stat-value.negative {
  color: #dc2626;
}

/* Mini chart area */
.property-preview-chart {
  background: var(--hp-gray-50);
  border-radius: var(--hp-radius);
  padding: 1rem;
  margin-bottom: 0.75rem;
}

.property-preview-chart h4 {
  font-size: 0.75rem;
  color: var(--hp-text-secondary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.mini-chart-svg {
  width: 100%;
  height: 60px;
}

.property-preview-footnote {
  font-size: 0.65rem;
  color: var(--hp-gray-400);
  text-align: center;
  font-style: italic;
}

/* === VALUE PILLARS === */
.value-pillars {
  max-width: var(--hp-max-width);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 4rem;
}

.value-pillars-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--hp-gray-900);
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}

.value-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-pillar-card {
  background: var(--hp-white);
  border: 1px solid var(--hp-gray-200);
  border-radius: var(--hp-radius-lg);
  padding: 2rem;
  transition: var(--hp-transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.value-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hp-shadow-lg);
  border-color: var(--hp-brand-light);
}

.pillar-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.pillar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--hp-gray-50);
  border-radius: var(--hp-radius);
  margin-bottom: 0;
  color: var(--hp-brand);
  flex-shrink: 0;
}

.pillar-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--hp-gray-900);
  margin: 0 !important;
  line-height: 1.3 !important;
}

.pillar-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--hp-text-secondary);
  margin-bottom: 1rem;
}

.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hp-brand);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.value-pillar-card:hover .pillar-link {
  gap: 8px;
}

/* === STATS BAR === */
.stats-bar {
  background: var(--hp-navy);
  padding: 3rem 1.5rem;
}

.stats-bar-inner {
  max-width: var(--hp-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stats-bar-title {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--hp-white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--hp-white);
  letter-spacing: -0.02em;
  transition: transform 0.3s ease;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--hp-gray-400);
  font-weight: 500;
}

/* === HOW IT WORKS === */
.how-it-works {
  max-width: var(--hp-max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}

.how-it-works-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--hp-gray-900);
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

/* Connecting line */
.how-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: var(--hp-gray-200);
  z-index: 0;
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.how-step-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--hp-white);
  border: 2px solid var(--hp-gray-200);
  border-radius: 50%;
  color: var(--hp-brand);
  transition: var(--hp-transition);
}

.how-step:hover .how-step-circle {
  border-color: var(--hp-brand);
  background: #eff6ff;
}

.how-step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--hp-gray-900);
}

.how-step-desc {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--hp-text-secondary);
  max-width: 200px;
}

/* === POPULAR PRODUCTS === */
.products-section {
  background: var(--hp-gray-50);
  padding: 4rem 1.5rem;
}

.products-inner {
  max-width: var(--hp-max-width);
  margin: 0 auto;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.products-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--hp-gray-900);
  letter-spacing: -0.01em;
}

.products-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hp-brand);
  text-decoration: none;
  transition: color 0.2s;
}

.products-link:hover {
  color: #1e3a8a;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--hp-white);
  border: 1px solid var(--hp-gray-200);
  border-radius: var(--hp-radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--hp-transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hp-shadow-lg);
}

.product-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--hp-gray-900);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-card-title svg {
  color: var(--hp-brand);
  flex-shrink: 0;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex: 1;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--hp-text-secondary);
  line-height: 1.4;
}

.product-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--hp-green);
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 1rem;
}

.product-price-amount {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--hp-gray-900);
  letter-spacing: -0.02em;
}

.product-price-suffix {
  font-size: 0.8rem;
  color: var(--hp-gray-400);
}

.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  background: var(--hp-brand);
  color: white;
  border: none;
  border-radius: var(--hp-radius);
  font-size: 0.9rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: var(--hp-transition);
  text-decoration: none;
  text-align: center;
}

.product-cta:hover {
  background: #1e3a8a;
  transform: translateY(-1px);
}

/* === GUIDES SECTION (relocated) === */
.homepage-guides-redesign {
  max-width: var(--hp-max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.guides-redesign-header {
  text-align: center;
  margin-bottom: 2rem;
}

.guides-redesign-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--hp-gray-900);
  margin-bottom: 0.5rem;
}

.guides-redesign-subtitle {
  font-size: 1rem;
  color: var(--hp-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.guide-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--hp-gray-900);
  line-height: 1.3;
}

.guide-card-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--hp-text-secondary);
  line-height: 1.5;
  margin-top: 0.25rem;
}

/* === NEWSLETTER CTA === */
.newsletter-cta {
  background: var(--hp-navy);
  padding: 3rem 1.5rem;
}

.newsletter-inner {
  max-width: var(--hp-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.newsletter-text {
  flex: 1;
}

.newsletter-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--hp-white);
  margin-bottom: 0.25rem;
}

.newsletter-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 440px;
}

.newsletter-form input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--hp-radius);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input[type="email"]:focus {
  border-color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  width: 100%;
  padding: 14px 28px;
  background: var(--hp-white);
  color: var(--hp-navy);
  border: 2px solid var(--hp-white);
  border-radius: var(--hp-radius);
  font-size: 0.9rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: var(--hp-transition);
  white-space: nowrap;
  box-sizing: border-box;
}

.newsletter-form button:hover {
  background: var(--hp-gray-100);
}

.newsletter-success {
  color: #86efac;
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
}

/* === FOOTER RESTYLE === */
.site-footer {
  background: var(--hp-navy) !important;
  margin-top: 0 !important;
}

.footer-content {
  max-width: var(--hp-max-width) !important;
  margin: 0 auto !important;
}

.footer-brand-name {
  color: var(--hp-white) !important;
}

.footer-description {
  color: var(--hp-gray-400) !important;
}

.footer-section h4 {
  color: var(--hp-white) !important;
}

.footer-section a {
  color: var(--hp-gray-400) !important;
  transition: color 0.2s !important;
}

.footer-section a:hover {
  color: var(--hp-white) !important;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
}

.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--hp-gray-800);
  border-radius: 8px;
  color: var(--hp-gray-400);
  transition: var(--hp-transition);
}

.footer-social-icons a:hover {
  background: var(--hp-gray-700);
  color: var(--hp-white);
}

/* === RESPONSIVE === */

/* Tablet */
@media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.5rem 3rem;
    min-height: auto;
  }

  .hero-left h1 {
    font-size: 2rem !important;
    text-align: center !important;
  }

  .hero-left .hero-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-search-container {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-trust-badges {
    justify-content: center;
  }

  .hero-right {
    order: -1;
  }

  .property-preview-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .value-pillars-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .how-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .how-steps::before {
    display: none;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    max-width: 100%;
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .hero-split {
    padding: 1.5rem 1rem 2rem;
  }

  .hero-left h1 {
    font-size: 1.6rem !important;
  }

  .hero-search-container {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-search-container input[type="text"] {
    border-right: 2px solid var(--hp-gray-200);
    border-radius: var(--hp-radius);
  }

  .hero-search-cta {
    border-radius: var(--hp-radius);
    justify-content: center;
  }

  .hero-trust-badges {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }

  .property-preview-card {
    max-width: 100%;
  }

  .property-preview-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .products-header {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input[type="email"] {
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--hp-radius);
  }

  .newsletter-form button {
    border-radius: var(--hp-radius);
  }
}

/* Small mobile */
@media (max-width: 380px) {
  .hero-left h1 {
    font-size: 1.4rem !important;
  }

  .value-pillars {
    padding: 2.5rem 1rem;
  }

  .products-section {
    padding: 2.5rem 1rem;
  }
}

/* === PREMIUM HERO ADVISORY BANNER === */
.hero-advisory-banner {
  background: rgba(99, 102, 241, 0.03) !important;
  border: 1px solid rgba(99, 102, 241, 0.15) !important;
  padding: 10px 24px !important;
  border-radius: 100px !important;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-advisory-banner:hover {
  transform: translateY(-2px) !important;
  background: rgba(99, 102, 241, 0.05) !important;
  border-color: rgba(99, 102, 241, 0.3) !important;
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

.hero-advisory-label {
  background: #1e40af !important;
  color: #ffffff !important;
  padding: 4px 12px !important;
  border-radius: 99px !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.3) !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.hero-advisory-text {
  font-size: 0.85rem !important;
  color: var(--hp-gray-700) !important;
  font-weight: 500 !important;
  letter-spacing: -0.01em;
}

.hero-advisory-text a {
  color: #4f46e5 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2) !important;
  padding-bottom: 1px;
  transition: all 0.2s ease !important;
}

.hero-advisory-text a:hover {
  color: #312e81 !important;
  border-bottom-color: #4f46e5 !important;
}

@media (max-width: 600px) {
  .hero-advisory-banner {
    border-radius: 20px !important;
    padding: 14px 20px !important;
    text-align: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 8px !important;
  }
}

/* === STATS ADDRESSES TEXT OVERRIDE === */
#addresses-text {
  font-size: 0.85rem !important;
  color: var(--hp-gray-400) !important;
  font-weight: 500 !important;
  opacity: 1 !important;
  letter-spacing: normal !important;
  display: inline-block !important;
}

/* === SUBPAGE ROUTING: HIDE HOME SECTIONS === */
body[data-page="other"] .value-pillars,
body[data-page="other"] .stats-bar,
body[data-page="other"] .how-it-works,
body[data-page="other"] .products-section,
body[data-page="other"] .pricing-section-home,
body[data-page="other"] .reviews-section-home,
body[data-page="other"] .homepage-guides-redesign,
body[data-page="other"] .newsletter-cta,
body[data-page="other"] .trustpilot-home-section {
  display: none !important;
}

/* === SUBPAGE CARD WIDTH CONSISTENCY === */
.info-page .info-card,
.pricing-page {
  max-width: var(--hp-max-width) !important;
  width: min(var(--hp-max-width), 95vw) !important;
}


/* === HOMEPAGE PROFESSIONAL BACKGROUND IMAGE LAYOUT === */
body[data-page="home"] .container {
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.90) 0%, rgba(255, 255, 255, 0.95) 380px, #ffffff 520px), url('/img/hero-amsterdam.png') !important;
  background-size: 100% auto !important;
  background-position: top center !important;
  background-repeat: no-repeat !important;
}

@media (max-width: 991px) {
  body[data-page="home"] .container {
    background-size: cover !important;
    background-position: center top !important;
  }
}

/* === HOMEPAGE PRICING SECTION === */
.pricing-section-home {
  background: var(--hp-white);
  padding: 5rem 1.5rem;
  border-top: 1px solid var(--hp-gray-100);
}

.pricing-home-inner {
  max-width: var(--hp-max-width);
  margin: 0 auto;
}

.pricing-home-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-home-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--hp-gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.pricing-home-subtitle {
  font-size: 1.125rem;
  color: var(--hp-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.pricing-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-home-card {
  background: var(--hp-white);
  border: 1px solid var(--hp-gray-200);
  border-radius: var(--hp-radius-xl);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--hp-transition);
  box-shadow: var(--hp-shadow);
  cursor: pointer;
}

.pricing-home-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hp-shadow-xl);
}

/* Featured / Highlight cards */
.pricing-home-card.popular-highlight {
  border: 2px solid var(--hp-indigo);
  transform: scale(1.02);
  box-shadow: var(--hp-shadow-lg);
}

.pricing-home-card.popular-highlight:hover {
  transform: scale(1.02) translateY(-6px);
  box-shadow: var(--hp-shadow-xl), 0 10px 30px rgba(99, 102, 241, 0.15);
}

.pricing-home-card.plus-highlight {
  border: 2px solid #7c3aed;
}

.pricing-home-card.plus-highlight:hover {
  transform: translateY(-6px);
  box-shadow: var(--hp-shadow-xl), 0 10px 30px rgba(124, 58, 237, 0.12);
}

/* Badges */
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hp-indigo);
  color: var(--hp-white);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: 99px;
  box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
}

.plus-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #7c3aed;
  color: var(--hp-white);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: 99px;
  box-shadow: 0 4px 10px rgba(124, 58, 237, 0.3);
}

/* Header within card */
.pricing-home-card-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--hp-gray-100);
  padding-bottom: 1.5rem;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--hp-gray-900);
  margin-bottom: 0.5rem;
}

.plan-tagline {
  font-size: 0.875rem;
  color: var(--hp-text-secondary);
  line-height: 1.4;
  margin-bottom: 1.5rem;
  min-height: 40px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  color: var(--hp-gray-900);
}

.price-currency {
  font-size: 1.85rem;
  font-weight: 700;
  margin-right: 4px;
}

.price-amount {
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-period {
  font-size: 0.875rem;
  color: var(--hp-text-secondary);
  margin-left: 6px;
  font-weight: 500;
}

/* Features List */
.plan-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.plan-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.925rem;
  color: var(--hp-gray-700);
  line-height: 1.4;
}

.plan-features-list li svg {
  flex-shrink: 0;
  color: var(--hp-green);
  margin-top: 2px;
}

.plan-features-list li strong {
  color: var(--hp-gray-900);
}

/* Button CTA */
.plan-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 24px;
  border-radius: var(--hp-radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--hp-transition);
  box-sizing: border-box;
}

.plan-cta-btn.outline-btn {
  background: var(--hp-white);
  border: 1px solid var(--hp-gray-300);
  color: var(--hp-gray-700);
}

.plan-cta-btn.outline-btn:hover {
  background: var(--hp-gray-50);
  border-color: var(--hp-gray-400);
  color: var(--hp-gray-900);
}

.plan-cta-btn.primary-btn {
  background: var(--hp-indigo);
  border: 1px solid var(--hp-indigo);
  color: var(--hp-white);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

.plan-cta-btn.primary-btn:hover {
  background: #4f46e5;
  border-color: #4f46e5;
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.25);
}

.plan-cta-btn.purple-btn {
  background: #7c3aed;
  border: 1px solid #7c3aed;
  color: var(--hp-white);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
}

.plan-cta-btn.purple-btn:hover {
  background: #6d28d9;
  border-color: #6d28d9;
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.25);
}

/* Responsive */
@media (max-width: 991px) {
  .pricing-home-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .pricing-home-card.popular-highlight {
    transform: none;
  }
  
  .pricing-home-card.popular-highlight:hover {
    transform: translateY(-6px);
  }
}

/* === HOMEPAGE REVIEWS SECTION === */
.reviews-section-home {
  background: var(--hp-gray-50);
  padding: 5rem 1.5rem;
  border-top: 1px solid var(--hp-gray-200);
}

.reviews-home-inner {
  max-width: var(--hp-max-width);
  margin: 0 auto;
  position: relative;
}

.reviews-home-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.reviews-home-header {
  text-align: left;
}

.reviews-home-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--hp-gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.reviews-home-subtitle {
  font-size: 1.125rem;
  color: var(--hp-text-secondary);
  max-width: 600px;
}

.reviews-carousel-controls {
  display: flex;
  gap: 0.75rem;
}

.reviews-control-btn {
  background: var(--hp-white);
  border: 1px solid var(--hp-gray-200);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--hp-gray-700);
  transition: var(--hp-transition);
  box-shadow: var(--hp-shadow);
}

.reviews-control-btn:hover {
  background: var(--hp-gray-50);
  border-color: var(--hp-gray-300);
  color: var(--hp-gray-900);
  transform: translateY(-1px);
}

/* Slider track and scroll snap */
.reviews-slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.reviews-slider-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 0.25rem 1.5rem 0.25rem;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.reviews-slider-track::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Safari and Chrome */
}

.reviews-home-card {
  flex: 0 0 calc(33.333% - 1rem);
  scroll-snap-align: start;
  background: var(--hp-white);
  border: 1px solid var(--hp-gray-200);
  border-radius: var(--hp-radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--hp-shadow);
  transition: var(--hp-transition);
  box-sizing: border-box;
}

.reviews-home-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hp-shadow-lg);
  border-color: var(--hp-gray-300);
}

/* User Profile Header */
.review-user-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #111827;
}

.review-user-meta {
  display: flex;
  flex-direction: column;
}

.review-user-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--hp-gray-900);
  margin-bottom: 2px;
}

.review-user-stats {
  font-size: 0.825rem;
  color: var(--hp-text-secondary);
}

/* Star Rating and Trustpilot Style Badges */
.review-rating-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.tp-stars-container {
  display: flex;
  gap: 2px;
}

.tp-star-block {
  background: #00b67a;
  color: var(--hp-white);
  font-size: 0.75rem;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.review-redirected-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #00845a;
  font-size: 0.825rem;
  font-weight: 600;
}

.review-redirected-badge svg {
  color: #00b67a;
}

/* Content */
.review-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.review-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--hp-gray-900);
  line-height: 1.3;
}

.review-card-text {
  font-size: 0.925rem;
  color: var(--hp-gray-700);
  line-height: 1.5;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Footer Tag bubbles */
.review-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.review-tag {
  background: var(--hp-gray-100);
  color: var(--hp-gray-600);
  font-size: 0.775rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 991px) {
  .reviews-home-header-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .reviews-carousel-controls {
    align-self: flex-end;
  }
  
  .reviews-home-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width: 640px) {
  .reviews-home-card {
    flex: 0 0 100%;
  }
}


