/* ==========================================================================
   Index6 - Premium Landing Page
   Inspired by anyone.com design patterns
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables - Brand Colors
   -------------------------------------------------------------------------- */
:root {
  --reasy-blue: #4F7DDD;
  --reasy-blue-hover: #3D6BC7;
  --reasy-blue-light: rgba(79, 125, 221, 0.12);
  --reasy-beige: #F9F7F1;
  --reasy-beige-dark: #F0EDE4;
  --reasy-cream: #FAF9F6;
  --reasy-navy: #212650;
  --reasy-navy-light: rgba(33, 38, 80, 0.8);
  --reasy-dark: #1A1A2E;

  --landing-bg: #FFFFFF;
  --landing-text: #3D3D4E;
  --landing-text-muted: #6B6B7B;
  --landing-border: #E5E5E5;
  --landing-border-dark: var(--reasy-navy);

  /* Anyone.com inspired shadows */
  --landing-shadow-depth: 0 8px 0 var(--reasy-navy);
  --landing-shadow-soft: 0 4px 20px rgba(33, 38, 80, 0.08);
  --landing-shadow-card: 0 2px 0 var(--reasy-navy);

  --landing-max-width: 1280px;
  --landing-radius-sm: 8px;
  --landing-radius-md: 12px;
  --landing-radius-lg: 16px;
  --landing-radius-xl: 24px;
  --landing-radius-2xl: 32px;
  --landing-radius-section: 48px;
}

/* --------------------------------------------------------------------------
   Base Layout
   -------------------------------------------------------------------------- */
.landing-page {
  background: var(--landing-bg);
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--landing-text);
  line-height: 1.5;
  overflow-x: hidden;
}

.landing-container {
  max-width: var(--landing-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .landing-container {
    padding: 0 48px;
  }
}

/* --------------------------------------------------------------------------
   Typography - Anyone.com inspired bold style
   -------------------------------------------------------------------------- */
.landing-h1 {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--reasy-navy);
  line-height: 1.05;
  margin: 0;
}

.landing-h2 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--reasy-navy);
  line-height: 1.1;
  margin: 0;
}

.landing-h3 {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--reasy-navy);
  line-height: 1.2;
  margin: 0;
}

.landing-subhead {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--landing-text);
  line-height: 1.5;
  max-width: 600px;
}

/* --------------------------------------------------------------------------
   Buttons - Anyone.com style with depth
   -------------------------------------------------------------------------- */
.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--landing-radius-lg);
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}

.landing-btn-primary {
  background: var(--reasy-blue);
  color: white;
  border-color: var(--reasy-blue);
  box-shadow: 0 4px 0 #3D6BC7;
}

.landing-btn-primary:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #3D6BC7;
}

.landing-btn-primary:active {
  transform: translateY(4px);
  box-shadow: none;
}

.landing-btn-secondary {
  background: white;
  color: var(--reasy-navy);
  border-color: var(--reasy-navy);
  box-shadow: 0 4px 0 var(--reasy-navy);
}

.landing-btn-secondary:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--reasy-navy);
}

.landing-btn-dark {
  background: var(--reasy-navy);
  color: white;
  border-color: var(--reasy-navy);
  box-shadow: 0 4px 0 #13152E;
}

.landing-btn-dark:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #13152E;
}

.landing-btn-ghost {
  background: transparent;
  color: var(--reasy-navy);
  padding: 10px 20px;
  border: none;
  box-shadow: none;
}

.landing-btn-ghost:hover {
  background: var(--reasy-beige);
}

.landing-btn-sm {
  padding: 10px 20px;
  font-size: 0.9375rem;
}

.landing-btn-lg {
  padding: 18px 36px;
  font-size: 1.125rem;
}

/* --------------------------------------------------------------------------
   Cards - Anyone.com depth style
   -------------------------------------------------------------------------- */
.landing-card {
  background: white;
  border-radius: var(--landing-radius-xl);
  border: 2px solid var(--reasy-navy);
  box-shadow: var(--landing-shadow-card);
  padding: 28px;
  transition: all 0.15s ease;
}

.landing-card-hover:hover {
  transform: translateY(2px);
  box-shadow: none;
}

.landing-card-depth {
  box-shadow: var(--landing-shadow-depth);
}

.landing-card-depth:hover {
  transform: translateY(4px);
  box-shadow: 0 4px 0 var(--reasy-navy);
}

/* Pastel card variants */
.landing-card-pastel-blue {
  background: #E8F0FE;
  border-color: #C5D9F8;
}

.landing-card-pastel-green {
  background: #E6F4EA;
  border-color: #C5E1CC;
}

.landing-card-pastel-purple {
  background: #F3E8FF;
  border-color: #DBC5F0;
}

.landing-card-pastel-coral {
  background: #FEF0E8;
  border-color: #F8D9C5;
}

/* --------------------------------------------------------------------------
   Badge
   -------------------------------------------------------------------------- */
.landing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 100px;
  background: var(--reasy-beige);
  color: var(--reasy-navy);
  border: 1.5px solid var(--landing-border);
}

.landing-badge-blue {
  background: var(--reasy-navy);
  color: white;
  border-color: var(--reasy-navy);
}

.landing-badge-success {
  background: #E6F4EA;
  color: #1E7B3E;
  border-color: transparent;
}

.landing-badge-dark {
  background: var(--reasy-navy);
  color: white;
  border-color: var(--reasy-navy);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.landing-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--landing-border);
}

.landing-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.landing-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--reasy-navy);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.landing-logo-beta {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--reasy-navy);
  color: white;
  padding: 3px 8px;
  border-radius: 6px;
}

.landing-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 480px) {
  .landing-header-actions .landing-btn-ghost {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Hero Section - Anyone.com style
   -------------------------------------------------------------------------- */
.landing-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: var(--reasy-cream);
}

.landing-hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 8px 16px 8px 8px;
  border-radius: 100px;
  border: 1.5px solid var(--landing-border);
  margin-bottom: 32px;
}

.landing-hero-avatars {
  display: flex;
  align-items: center;
}

.landing-hero-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
}

.landing-hero-avatar:first-child {
  margin-left: 0;
}

.landing-hero-avatar:nth-child(1) { background: #7C3AED; }
.landing-hero-avatar:nth-child(2) { background: #EC4899; }
.landing-hero-avatar:nth-child(3) { background: var(--reasy-blue); }

.landing-hero-social-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--landing-text);
}

.landing-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.landing-hero h1 {
  margin-bottom: 24px;
}

.landing-hero .landing-subhead {
  margin: 0 auto 48px;
}

.landing-hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.landing-hero-cta-link {
  font-size: 0.9375rem;
  color: var(--reasy-navy);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 500;
}

.landing-hero-cta-link:hover {
  color: var(--reasy-blue);
}

.landing-hero-microcopy {
  font-size: 0.875rem;
  color: var(--landing-text-muted);
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   Product Mock Strip - Anyone.com card style
   -------------------------------------------------------------------------- */
.landing-product-strip {
  padding: 0 0 0;
  margin-top: -20px;
  position: relative;
  z-index: 1;
}

.landing-product-container {
  background: var(--reasy-navy);
  border-radius: var(--landing-radius-section);
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .landing-product-container {
    padding: 80px 60px;
    border-radius: 56px;
  }
}

.landing-product-header {
  text-align: center;
  margin-bottom: 48px;
}

.landing-product-header h2 {
  color: white;
  margin-bottom: 12px;
}

.landing-product-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  max-width: 500px;
  margin: 0 auto;
}

.landing-product-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .landing-product-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .landing-product-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.landing-product-card {
  background: white;
  border-radius: var(--landing-radius-xl);
  padding: 24px;
  border: 2px solid var(--reasy-navy);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

.landing-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.3);
}

.landing-product-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--landing-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.landing-product-card-icon.blue { background: #E8F0FE; color: var(--reasy-blue); }
.landing-product-card-icon.green { background: #E6F4EA; color: #1E7B3E; }
.landing-product-card-icon.purple { background: #F3E8FF; color: #7C3AED; }
.landing-product-card-icon.coral { background: #FEF0E8; color: #DC6B3C; }

.landing-product-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--landing-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.landing-product-card-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--reasy-navy);
  margin-bottom: 8px;
  line-height: 1.2;
}

.landing-product-card-description {
  font-size: 0.875rem;
  color: var(--landing-text-muted);
  line-height: 1.5;
}

.landing-product-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  padding: 4px 10px;
  background: var(--reasy-beige);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--reasy-navy);
}

.landing-product-card-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.landing-product-card-line {
  font-size: 0.875rem;
  color: var(--landing-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.landing-product-card-line svg {
  width: 16px;
  height: 16px;
  color: #1E7B3E;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Comparison Section - Anyone.com toggle style
   -------------------------------------------------------------------------- */
.landing-comparison {
  padding: 100px 0;
  background: var(--reasy-cream);
}

.landing-comparison-header {
  text-align: center;
  margin-bottom: 60px;
}

.landing-comparison-header p {
  font-size: 1.125rem;
  color: var(--landing-text-muted);
  margin-top: 16px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Toggle Switch */
.landing-toggle-container {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.landing-toggle {
  display: inline-flex;
  background: var(--reasy-beige-dark);
  border-radius: 100px;
  padding: 6px;
  gap: 4px;
  position: relative;
}

.landing-toggle-option {
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  background: transparent;
  color: var(--landing-text-muted);
  cursor: pointer;
  border-radius: 100px;
  transition: all 0.2s ease;
  position: relative;
  z-index: 1;
}

.landing-toggle-option.active {
  color: var(--reasy-navy);
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Comparison Grid */
.landing-comparison-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .landing-comparison-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.landing-comparison-column {
  border-radius: var(--landing-radius-2xl);
  padding: 32px;
}

@media (min-width: 768px) {
  .landing-comparison-column {
    padding: 40px;
  }
}

.landing-comparison-old {
  background: white;
  border: 2px solid var(--landing-border);
}

.landing-comparison-new {
  background: var(--reasy-navy);
  border: 2px solid var(--reasy-navy);
  box-shadow: var(--landing-shadow-depth);
}

.landing-comparison-column-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid;
}

.landing-comparison-old .landing-comparison-column-header {
  border-color: var(--landing-border);
  color: var(--landing-text-muted);
}

.landing-comparison-new .landing-comparison-column-header {
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.landing-comparison-column-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.landing-comparison-old .landing-comparison-column-header h3 {
  color: var(--landing-text-muted);
}

.landing-comparison-new .landing-comparison-column-header h3 {
  color: white;
}

.landing-comparison-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.landing-comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.landing-comparison-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.landing-comparison-old .landing-comparison-icon {
  background: #FEE2E2;
  color: #DC2626;
}

.landing-comparison-new .landing-comparison-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #4ADE80;
}

.landing-comparison-content {
  flex: 1;
}

.landing-comparison-label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.landing-comparison-old .landing-comparison-label {
  color: var(--reasy-navy);
}

.landing-comparison-new .landing-comparison-label {
  color: white;
}

.landing-comparison-text {
  font-size: 0.9375rem;
  line-height: 1.5;
}

.landing-comparison-old .landing-comparison-text {
  color: var(--landing-text-muted);
}

.landing-comparison-new .landing-comparison-text {
  color: rgba(255, 255, 255, 0.75);
}

.landing-comparison-footnote {
  text-align: center;
  font-size: 0.875rem;
  color: var(--landing-text-muted);
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--landing-border);
}

/* --------------------------------------------------------------------------
   How It Works Section - Anyone.com step cards
   -------------------------------------------------------------------------- */
.landing-how-it-works {
  padding: 100px 0;
  background: white;
}

.landing-how-it-works-header {
  text-align: center;
  margin-bottom: 24px;
}

/* Tabs */
.landing-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.landing-tabs-inner {
  display: inline-flex;
  background: var(--reasy-beige-dark);
  border-radius: 100px;
  padding: 6px;
  gap: 4px;
}

.landing-tab {
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  background: transparent;
  color: var(--landing-text-muted);
  cursor: pointer;
  border-radius: 100px;
  transition: all 0.2s ease;
}

.landing-tab.active {
  background: white;
  color: var(--reasy-navy);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.landing-tab-content {
  display: none;
}

.landing-tab-content.active {
  display: block;
}

/* Step Cards Grid */
.landing-steps-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .landing-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .landing-steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.landing-step-card {
  background: white;
  border-radius: var(--landing-radius-xl);
  padding: 32px 28px;
  border: 2px solid var(--reasy-navy);
  box-shadow: 0 6px 0 var(--reasy-navy);
  transition: all 0.2s ease;
}

.landing-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 0 var(--reasy-navy);
}

.landing-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--reasy-navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.landing-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--reasy-navy);
  margin-bottom: 12px;
}

.landing-step-description {
  font-size: 1rem;
  color: var(--landing-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.landing-step-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 100px;
  background: var(--reasy-beige);
  color: var(--reasy-navy);
}

/* Expert Help Panel */
.landing-expert-help {
  background: var(--reasy-navy);
  border-radius: var(--landing-radius-2xl);
  border: 2px solid var(--reasy-navy);
  padding: 40px;
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .landing-expert-help {
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: center;
  }
}

.landing-expert-help-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.landing-expert-help-header p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.landing-expert-card {
  background: white;
  border-radius: var(--landing-radius-lg);
  padding: 24px;
  border: 2px solid white;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.15s ease;
}

.landing-expert-card:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

.landing-expert-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--landing-radius-md);
  background: #E8F0FE;
  color: var(--reasy-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.landing-expert-content {
  flex: 1;
  min-width: 0;
}

.landing-expert-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--reasy-navy);
}

/* --------------------------------------------------------------------------
   Benefits Section
   -------------------------------------------------------------------------- */
.landing-benefits {
  padding: 80px 0 100px;
  background: white;
}

.landing-benefits-header {
  text-align: center;
  margin-bottom: 48px;
}

.landing-benefits-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .landing-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.landing-benefit-card {
  background: var(--reasy-cream);
  border-radius: var(--landing-radius-xl);
  padding: 36px 32px;
  border: 2px solid var(--landing-border);
  text-align: center;
  transition: all 0.2s ease;
}

.landing-benefit-card:hover {
  border-color: var(--reasy-navy);
  box-shadow: 0 6px 0 var(--reasy-navy);
  transform: translateY(-4px);
}

.landing-benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--landing-radius-lg);
  background: white;
  border: 2px solid var(--landing-border);
  color: var(--reasy-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.landing-benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--reasy-navy);
  margin-bottom: 12px;
}

.landing-benefit-description {
  font-size: 1rem;
  color: var(--landing-text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.landing-cta-section {
  padding: 100px 0;
  background: var(--reasy-navy);
  text-align: center;
}

.landing-cta-section h2 {
  color: white;
  margin-bottom: 16px;
}

.landing-cta-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  max-width: 500px;
  margin: 0 auto 40px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.landing-footer {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.landing-footer-beige {
  background: var(--reasy-beige);
}

.landing-footer-navy {
  background: var(--reasy-navy);
}

.landing-footer-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.landing-footer-cta {
  margin-bottom: 40px;
}

.landing-footer-tagline {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 32px;
}

.landing-footer-beige .landing-footer-tagline {
  color: var(--landing-text-muted);
}

.landing-footer-navy .landing-footer-tagline {
  color: rgba(255, 255, 255, 0.7);
}

.landing-footer-wordmark {
  font-size: clamp(80px, 18vw, 180px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.85;
  margin-bottom: 48px;
  text-transform: lowercase;
}

.landing-footer-beige .landing-footer-wordmark {
  color: rgba(33, 38, 80, 0.08);
}

.landing-footer-navy .landing-footer-wordmark {
  color: rgba(255, 255, 255, 0.06);
}

.landing-footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.landing-footer-link {
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.landing-footer-beige .landing-footer-link {
  color: var(--landing-text-muted);
}

.landing-footer-beige .landing-footer-link:hover {
  color: var(--reasy-navy);
}

.landing-footer-navy .landing-footer-link {
  color: rgba(255, 255, 255, 0.6);
}

.landing-footer-navy .landing-footer-link:hover {
  color: white;
}

/* --------------------------------------------------------------------------
   Waitlist Modal
   -------------------------------------------------------------------------- */
.landing-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 46, 0.7);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.landing-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.landing-modal {
  background: white;
  border-radius: var(--landing-radius-2xl);
  border: 2px solid var(--reasy-navy);
  box-shadow: 0 8px 0 var(--reasy-navy);
  max-width: 480px;
  width: 100%;
  padding: 48px 40px;
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: all 0.3s ease;
}

.landing-modal-overlay.active .landing-modal {
  transform: scale(1) translateY(0);
}

.landing-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 2px solid var(--landing-border);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--landing-radius-md);
  color: var(--landing-text-muted);
  transition: all 0.2s ease;
}

.landing-modal-close:hover {
  border-color: var(--reasy-navy);
  color: var(--reasy-navy);
}

.landing-modal-header {
  text-align: center;
  margin-bottom: 36px;
}

.landing-modal-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--reasy-navy);
  margin-bottom: 8px;
}

.landing-modal-subtitle {
  font-size: 1rem;
  color: var(--landing-text-muted);
}

.landing-form-group {
  margin-bottom: 24px;
}

.landing-form-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--reasy-navy);
  margin-bottom: 10px;
}

.landing-form-input {
  width: 100%;
  padding: 16px 18px;
  font-size: 1rem;
  border: 2px solid var(--landing-border);
  border-radius: var(--landing-radius-md);
  background: white;
  color: var(--reasy-navy);
  transition: all 0.2s ease;
}

.landing-form-input:focus {
  outline: none;
  border-color: var(--reasy-navy);
  box-shadow: 0 0 0 4px var(--reasy-blue-light);
}

.landing-form-input::placeholder {
  color: var(--landing-text-muted);
}

.landing-segmented-control {
  display: flex;
  background: var(--reasy-beige-dark);
  border-radius: var(--landing-radius-md);
  padding: 6px;
  gap: 6px;
}

.landing-segmented-option {
  flex: 1;
  padding: 12px 16px;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  background: transparent;
  color: var(--landing-text-muted);
  cursor: pointer;
  border-radius: var(--landing-radius-sm);
  transition: all 0.2s ease;
}

.landing-segmented-option.active {
  background: white;
  color: var(--reasy-navy);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.landing-form-submit {
  width: 100%;
  margin-top: 8px;
}

/* Success State */
.landing-modal-success {
  text-align: center;
  padding: 20px 0;
}

.landing-modal-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #E6F4EA;
  color: #1E7B3E;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.landing-modal-success h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--reasy-navy);
  margin-bottom: 8px;
}

.landing-modal-success p {
  font-size: 1rem;
  color: var(--landing-text-muted);
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .landing-hero-content {
    animation: fadeInUp 0.6s ease;
  }

  .landing-product-container {
    animation: fadeIn 0.8s ease 0.2s both;
  }

  .landing-step-card,
  .landing-product-card,
  .landing-benefit-card {
    animation: fadeInUp 0.5s ease both;
  }

  .landing-step-card:nth-child(1),
  .landing-product-card:nth-child(1) { animation-delay: 0.1s; }
  .landing-step-card:nth-child(2),
  .landing-product-card:nth-child(2) { animation-delay: 0.2s; }
  .landing-step-card:nth-child(3),
  .landing-product-card:nth-child(3) { animation-delay: 0.3s; }
  .landing-step-card:nth-child(4),
  .landing-product-card:nth-child(4) { animation-delay: 0.4s; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* --------------------------------------------------------------------------
   Reasy Score Section
   -------------------------------------------------------------------------- */
.landing-reasy-score {
  padding: 100px 0;
  background: white;
}

.landing-reasy-score-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .landing-reasy-score-inner {
    grid-template-columns: 1fr 400px;
    gap: 64px;
  }
}

.landing-reasy-score-content .landing-badge {
  margin-bottom: 20px;
}

.landing-reasy-score-content .landing-h2 {
  text-align: left;
  margin-bottom: 16px;
}

.landing-reasy-score-subtitle {
  font-size: 1.125rem;
  color: var(--landing-text-muted);
  line-height: 1.6;
  margin: 0 0 40px 0;
  max-width: 540px;
}

/* Score Factors Grid */
.landing-score-factors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media (max-width: 640px) {
  .landing-score-factors-grid {
    grid-template-columns: 1fr;
  }
}

.landing-score-factor {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.landing-score-factor-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--landing-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.landing-score-factor-icon.schools { background: #dbeafe; }
.landing-score-factor-icon.schools svg { stroke: #2563eb; }

.landing-score-factor-icon.transport { background: #fef3c7; }
.landing-score-factor-icon.transport svg { stroke: #d97706; }

.landing-score-factor-icon.safety { background: #dcfce7; }
.landing-score-factor-icon.safety svg { stroke: #16a34a; }

.landing-score-factor-icon.growth { background: #f3e8ff; }
.landing-score-factor-icon.growth svg { stroke: #9333ea; }

.landing-score-factor-icon.rental { background: #fce7f3; }
.landing-score-factor-icon.rental svg { stroke: #db2777; }

.landing-score-factor-icon.amenities { background: #e0e7ff; }
.landing-score-factor-icon.amenities svg { stroke: #4F46E5; }

.landing-score-factor h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--reasy-navy);
  margin: 0;
}

.landing-score-factor p {
  font-size: 0.875rem;
  color: var(--landing-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Score Visual Demo */
.landing-reasy-score-visual {
  display: flex;
  justify-content: center;
}

.landing-score-demo {
  background: white;
  border-radius: var(--landing-radius-2xl);
  border: 2px solid var(--reasy-navy);
  box-shadow: 0 8px 0 var(--reasy-navy);
  padding: 32px;
  width: 100%;
  max-width: 360px;
}

.landing-score-demo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.landing-score-demo-suburb {
  font-weight: 700;
  color: var(--reasy-navy);
}

.landing-score-demo-type {
  font-size: 0.75rem;
  color: var(--landing-text-muted);
  background: var(--reasy-beige);
  padding: 4px 10px;
  border-radius: 100px;
}

.landing-score-ring-large {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 24px;
}

.landing-score-ring-large svg {
  width: 100%;
  height: 100%;
}

.landing-score-number-large {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--reasy-navy);
  letter-spacing: -0.02em;
}

.landing-score-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.landing-score-bar {
  display: grid;
  grid-template-columns: 70px 1fr 30px;
  align-items: center;
  gap: 12px;
  font-size: 0.8125rem;
}

.landing-score-bar span:first-child {
  color: var(--landing-text-muted);
}

.landing-score-bar span:last-child {
  color: var(--reasy-navy);
  font-weight: 700;
  text-align: right;
}

.landing-score-bar-track {
  height: 6px;
  background: var(--reasy-beige-dark);
  border-radius: 100px;
  overflow: hidden;
}

.landing-score-bar-fill {
  height: 100%;
  background: var(--reasy-blue);
  border-radius: 100px;
}

.landing-score-bar-fill-green {
  background: linear-gradient(90deg, #22c55e, #16a34a);
}

.landing-score-demo-note {
  font-size: 0.75rem;
  color: var(--landing-text-muted);
  text-align: center;
  margin: 20px 0 0;
}

@media (max-width: 900px) {
  .landing-reasy-score-content .landing-h2,
  .landing-reasy-score-subtitle {
    text-align: center;
  }

  .landing-reasy-score-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .landing-score-factors-grid {
    max-width: 500px;
    margin: 0 auto;
  }
}
