/* ====================================== */
/* Landing Page: Background image + overlay */
/* ====================================== */
body.page-landingpage::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('/../../assets/images/landingpage/bg.jpg') center/cover no-repeat fixed;
  filter: blur(10px) brightness(0.7) saturate(0.5);
  z-index: -2;
}

body.page-landingpage::after {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.7);
  z-index: -1;
}

/* ====================================== */
/* Hero Section */
/* ====================================== */
.hero {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  width: 100%;
  min-height: calc(100vh - 150px);
}

.hero .content {
  max-width: 1100px;  /* full width for cards */
  text-align: center;  /* center headline & subline */
}

/* Hero Text */
.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--green);
}

.hero p {
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  color: var(--text-main);
}

/* ====================================== */
/* Choice Container / Cards */
/* ====================================== */
.choice-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;       /* wrap on smaller screens */
  margin-bottom: 2rem;
}

/* Cards */
.choice-card {
  flex: 1 1 320px;
  max-width: 350px;
  background: rgba(255,255,255,0.85);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

/* Apply fade-in from components */
.choice-card.fade-in-up {
  /* opacity and animation come from components.css */
}

/* Optional staggered delays */
.choice-card.fade-delay-1 { animation-delay: 0.2s; }
.choice-card.fade-delay-2 { animation-delay: 0.4s; }

/* Buttons inside cards */
.choice-card a.btn {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
}

/* Specific Button Colors */
.btn-consumer { background: var(--green); }
.btn-business { background: #1f4fd8; }

.btn-consumer:hover { background: var(--green-dark); }
.btn-business:hover { background: #1539a5; }