:root {
  --red:   #9B1C35;
  --cream: #FBF3E4;
  --green: #A8C256;
  --dark:  #1a1a1a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background-color: var(--cream);
  color: var(--dark);
  font-family: Georgia, serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background-color: var(--red);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75em 2.5em;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(155, 28, 53, 0.22);
}

.logo { display: flex; align-items: center; gap: 0.625em; }


.logo span {
  color: var(--cream);
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.0625em;
}

nav { display: flex; align-items: center; gap: 1.5em; }

nav a { color: var(--cream); text-decoration: none; font-size: 1rem; }
nav a:hover { color: var(--green); }

nav a button {
  background-color: var(--green);
  color: var(--cream);
  border: none;
  padding: 0.5em 1.25em;
  border-radius: 1.875em;
  font-size: 1rem;
  cursor: pointer;
  font-family: Georgia, serif;
}
nav a button:hover { background-color: #8faa3e; }

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5em 3em 5em 4em;
  overflow: hidden;
  position: relative;
  min-height: 30em;
  background-color: var(--cream);
}

.hero-content {
  flex: 1;
  max-width: 30em;
  position: relative;
  z-index: 1;
}

.hero-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  opacity: 0.55;
  font-weight: bold;
  margin-bottom: 0.75em;
}

.hero h1 {
  font-size: 3.6rem;
  line-height: 1.25;
  color: var(--red);
  margin-bottom: 0.6em;
}

.hero-highlight {
  background: linear-gradient(120deg, rgba(155,28,53,0.1) 0%, rgba(155,28,53,0.1) 100%);
  border-radius: 0.15em;
  padding: 0 0.1em;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--red);
  opacity: 0.75;
  margin-bottom: 1.75em;
}

.hero-actions {
  display: flex;
  gap: 1em;
  align-items: center;
  margin-bottom: 1em;
}

.hero-btn {
  display: inline-block;
  background-color: var(--green);
  color: var(--cream);
  text-decoration: none;
  padding: 0.85em 2.2em;
  border-radius: 2em;
  font-size: 1rem;
  font-family: Georgia, serif;
  transition: background-color 0.2s;
}

.hero-btn:hover { background-color: #8faa3e; }

.hero-btn-ghost {
  display: inline-block;
  color: var(--red);
  text-decoration: none;
  font-size: 1rem;
  opacity: 0.7;
  border-bottom: 0.09em solid currentColor;
  padding-bottom: 0.1em;
  transition: opacity 0.2s;
}

.hero-btn-ghost:hover { opacity: 1; }

.hero-note {
  font-size: 0.8rem;
  color: var(--red);
  opacity: 0.45;
}

.hero-visual {
  flex-shrink: 0;
  width: 44em;
  height: 44em;
  border-radius: 50%;
  overflow: hidden;
  margin-right: -14em;
  position: relative;
  box-shadow:
    0 0 0 0.5em rgba(155, 28, 53, 0.12),
    0 0 3em 3em var(--cream);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mask-image: radial-gradient(circle, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 75%);
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 75%);
}

.stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3em;
  padding: 2.5em 3em;
  border-top: 0.0625em solid rgba(155, 28, 53, 0.1);
  border-bottom: 0.0625em solid rgba(155, 28, 53, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2em;
  text-align: center;
}

.stat-item strong {
  font-size: 1.5rem;
  color: var(--red);
}

.stat-item span {
  font-size: 0.85rem;
  color: var(--red);
  opacity: 0.55;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 0.0625em;
  height: 2.5em;
  background: rgba(155, 28, 53, 0.15);
}

.how-it-works {
  max-width: 72em;
  margin: 4em auto;
  padding: 0 3em;
  text-align: center;
}

.section-title {
  font-size: 1.6rem;
  color: var(--red);
  margin-bottom: 0.4em;
}

.section-title::after {
  content: '';
  display: block;
  width: 3em;
  height: 0.18em;
  background: var(--red);
  opacity: 0.35;
  margin: 0.4em auto 2em;
  border-radius: 1em;
}

.steps {
  display: flex;
  gap: 1.25em;
  justify-content: center;
  flex-wrap: wrap;
}

.step {
  background: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 0.875em;
  border: 0.0625em solid rgba(155,28,53,0.1);
  box-shadow: 0 0.125em 1em rgba(155,28,53,0.07);
  padding: 2em 1.25em 1.75em;
  flex: 1;
  min-width: 10em;
  max-width: 14em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  transition: transform 0.22s, box-shadow 0.22s;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 0.75em 2em rgba(155,28,53,0.15);
}

.step-number {
  width: 2.4em;
  height: 2.4em;
  border-radius: 50%;
  background-color: var(--red);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step p {
  font-size: 0.9rem;
  color: var(--red);
  opacity: 0.8;
  line-height: 1.6;
  text-align: center;
}

.for-who {
  display: flex;
  gap: 2em;
  justify-content: center;
  max-width: 54em;
  margin: 3em auto 4em;
  padding: 0 3em;
  flex-wrap: wrap;
}

.for-who-card {
  background: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 1em;
  border: 0.0625em solid rgba(155,28,53,0.1);
  box-shadow: 0 0.125em 1em rgba(155,28,53,0.07);
  padding: 2.5em 2em;
  flex: 1;
  min-width: 16em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75em;
  text-align: center;
  transition: transform 0.22s, box-shadow 0.22s;
}

.for-who-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0.75em 2em rgba(155,28,53,0.15);
}

.for-who-icon { font-size: 2.4rem; }

.for-who-card h3 {
  font-size: 1.2rem;
  color: var(--red);
}

.for-who-card p {
  font-size: 0.95rem;
  color: var(--red);
  opacity: 0.75;
  line-height: 1.7;
  flex: 1;
}

.for-who-btn {
  display: inline-block;
  margin-top: 0.5em;
  padding: 0.55em 1.5em;
  border-radius: 2em;
  border: 0.1em solid var(--red);
  color: var(--red);
  text-decoration: none;
  font-size: 0.9rem;
  font-family: Georgia, serif;
  transition: background 0.2s, color 0.2s;
}
.for-who-btn:hover {
  background: var(--red);
  color: var(--cream);
}

footer {
  background-color: var(--red);
  color: var(--cream);
  text-align: left;
  padding: 1.5em 3em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  margin-top: auto;
  font-size: 0.9rem;
}

footer a { color: #ffb7c5; text-decoration: none; }
footer a:hover { text-decoration: underline; }
footer div { display: flex; gap: 1.25em; margin-top: 0.25em; }

.nav-toggle { display: none; }

@media (max-width: 640px) {
  header {
    padding: 0.75em 1em;
    position: sticky;
  }
  .nav-toggle {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.6rem;
    cursor: pointer;
    padding: 0.1em 0.3em;
    line-height: 1;
  }
  nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    width: auto;
    min-width: 11em;
    background: var(--red);
    padding: 1em 1.5em 1.25em;
    gap: 0.85em;
    z-index: 300;
    box-shadow: -4px 4px 16px rgba(0,0,0,0.18);
    border-radius: 0 0 0 0.75em;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(20px);
    opacity: 0;
    transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s;
  }
  nav.open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    opacity: 1;
  }
  nav a { font-size: 1rem; }
  nav a button { width: 100%; }

  .hero {
    flex-direction: column;
    padding: 2.5em 1.25em 1.5em;
    text-align: center;
    min-height: auto;
  }
  .hero-visual { display: none; }
  .hero h1 { font-size: 2.4rem; }
  .hero-actions { justify-content: center; }

  .stats {
    flex-wrap: wrap;
    gap: 1.25em;
    padding: 1.5em 1.25em;
  }
  .stat-divider { display: none; }

  .how-it-works {
    padding: 0 1.25em;
    margin: 2em auto;
  }
  .steps { gap: 0.75em; }
  .step { max-width: 100%; min-width: 8em; }

  .for-who {
    flex-direction: column;
    padding: 0 1.25em;
    margin: 2em auto;
  }

  footer { padding: 1.25em 1em; }
}
