/* ---------- Variables ---------- */
:root {
  --brand-green: #1d9e75;
  --brand-green-light: #34b78d;
  --brand-green-dark: #10704f;
  --brand-dark: #201f1e;
  --brand-gray: #898989;
  --bg-soft: #faf9f7;
  --max-width: 1280px;
  --font-sans: "Manrope", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--brand-dark);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-green);
}

.section-title {
  margin: 0.5rem 0 0;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-lead {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(32, 31, 30, 0.7);
  max-width: 42rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.3rem;
  }
  .section-lead {
    font-size: 1.1rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.9rem 1.7rem;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.spinner {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.btn-primary {
  background: var(--brand-green);
  color: #fff;
  box-shadow: 0 10px 25px -8px rgba(29, 158, 117, 0.45);
}
.btn-primary:hover {
  background: var(--brand-green-dark);
}

.btn-dark {
  background: var(--brand-dark);
  color: #fff;
}
.btn-dark:hover {
  background: #000;
}

.btn-outline {
  background: transparent;
  color: var(--brand-dark);
  border: 1px solid rgba(32, 31, 30, 0.15);
}
.btn-outline:hover {
  border-color: rgba(32, 31, 30, 0.3);
  background: rgba(0, 0, 0, 0.03);
}

.btn-block {
  display: flex;
  width: 100%;
}

.honeycomb-bg {
  background-image: radial-gradient(circle at 1px 1px, rgba(29, 158, 117, 0.18) 1.5px, transparent 0);
  background-size: 28px 28px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.logo img {
  height: 2rem;
  width: auto;
}
@media (min-width: 640px) {
  .logo img {
    height: 2.25rem;
  }
}

.main-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(32, 31, 30, 0.8);
  transition: color 0.15s ease;
}
.main-nav a:hover {
  color: var(--brand-green);
}

.header-cta {
  display: none;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: none;
  color: var(--brand-dark);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
}
.mobile-nav.open {
  display: block;
}
.mobile-nav .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.25rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.mobile-nav a {
  padding: 0.65rem 0.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
  color: rgba(32, 31, 30, 0.85);
}
.mobile-nav a:hover {
  background: rgba(29, 158, 117, 0.1);
}
.mobile-nav .btn {
  margin-top: 0.5rem;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
  }
  .header-cta {
    display: block;
  }
  .menu-toggle {
    display: none;
  }
  .mobile-nav {
    display: none !important;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 5rem;
}
@media (min-width: 640px) {
  .hero {
    padding: 5rem 0 7rem;
  }
}

.hero-blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
}
.hero-blob.a {
  left: -8rem;
  top: 2.5rem;
  width: 20rem;
  height: 20rem;
  background: rgba(29, 158, 117, 0.15);
}
.hero-blob.b {
  right: -6rem;
  top: 10rem;
  width: 24rem;
  height: 24rem;
  background: rgba(52, 183, 141, 0.1);
}

.hero .container {
  position: relative;
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .hero .container {
    grid-template-columns: 1.15fr 1fr;
    align-items: center;
    gap: 2rem;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 158, 117, 0.25);
  background: rgba(29, 158, 117, 0.05);
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-green-dark);
}

.hero h1 {
  margin: 1.5rem 0 0;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
@media (min-width: 640px) {
  .hero h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.6rem;
  }
}
.hero h1 .accent {
  color: var(--brand-green);
}

.hero-lead {
  margin-top: 1.25rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(32, 31, 30, 0.7);
}
@media (min-width: 640px) {
  .hero-lead {
    font-size: 1.125rem;
  }
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

.hero-stats {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1.5rem;
  max-width: 28rem;
}
.hero-stats dt {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--brand-gray);
}
.hero-stats dd {
  margin: 0.25rem 0 0;
  font-size: 1.1rem;
  font-weight: 800;
}

/* ---------- Presale card ---------- */
.presale-wrap {
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) {
  .presale-wrap {
    justify-content: flex-end;
  }
}

.presale-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 24rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -15px rgba(29, 158, 117, 0.15);
}
@media (min-width: 640px) {
  .presale-card {
    padding: 1.75rem;
  }
}

.presale-glow {
  position: absolute;
  right: -2.5rem;
  top: -2.5rem;
  width: 8rem;
  height: 8rem;
  border-radius: 999px;
  background: rgba(29, 158, 117, 0.1);
  filter: blur(24px);
}

.presale-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  background: #fff7ed;
  color: #ea580c;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  margin-bottom: 1rem;
}

.presale-card .plan-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-gray);
  margin: 0;
}

.presale-price {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.presale-price .now {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.presale-price .was {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand-gray);
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}

.presale-note {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: var(--brand-gray);
}

.presale-progress {
  margin-top: 1.25rem;
}
.presale-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(32, 31, 30, 0.7);
  margin-bottom: 0.4rem;
}
.presale-progress-track {
  height: 0.65rem;
  width: 100%;
  border-radius: 999px;
  background: rgba(29, 158, 117, 0.1);
  overflow: hidden;
}
.presale-progress-fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(to right, var(--brand-green), var(--brand-green-light));
  transition: width 1s ease-out;
}

.presale-card .btn {
  margin-top: 1.5rem;
}

/* ---------- Cards grid (advantages / zones) ---------- */
.grid-3 {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px -10px rgba(29, 158, 117, 0.15);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(29, 158, 117, 0.1);
  color: var(--brand-green);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.card:hover .card-icon {
  background: var(--brand-green);
  color: #fff;
}

.card h3 {
  margin: 1rem 0 0;
  font-size: 1.1rem;
  font-weight: 700;
}
.card p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(32, 31, 30, 0.65);
}

.section-white {
  background: #fff;
  padding: 5rem 0;
}
.section-soft {
  background: var(--bg-soft);
  padding: 5rem 0;
}
.section-dark {
  background: var(--brand-dark);
  color: #fff;
  padding: 5rem 0;
}
@media (min-width: 640px) {
  .section-white,
  .section-soft,
  .section-dark {
    padding: 7rem 0;
  }
}

/* ---------- Zones ---------- */
.grid-2 {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.zone-card {
  display: flex;
  gap: 1.25rem;
  border-radius: 1rem;
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.zone-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: var(--brand-green);
  color: #fff;
}
.zone-card h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}
.zone-card p {
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(32, 31, 30, 0.65);
}

/* ---------- Pricing ---------- */
.tabs {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tab-btn {
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.04);
  color: rgba(32, 31, 30, 0.7);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.tab-btn:hover {
  background: rgba(0, 0, 0, 0.07);
}
.tab-btn.active {
  background: var(--brand-green);
  color: #fff;
}

.tab-panel {
  display: none;
  margin-top: 2rem;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.tab-panel.active {
  display: grid;
}
@media (min-width: 640px) {
  .tab-panel {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .tab-panel {
    grid-template-columns: repeat(4, 1fr);
  }
}

.plan-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
  transition: border-color 0.15s ease;
}
.plan-card:hover {
  border-color: rgba(29, 158, 117, 0.3);
}
.plan-card.highlight {
  background: var(--brand-dark);
  color: #fff;
  border-color: var(--brand-dark);
}

.plan-badge {
  display: inline-block;
  width: fit-content;
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(29, 158, 117, 0.1);
  color: var(--brand-green-dark);
  margin-bottom: 0.75rem;
}
.plan-card.highlight .plan-badge {
  background: var(--brand-green);
  color: #fff;
}

.plan-card h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}
.plan-card > p {
  margin-top: 0.4rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(32, 31, 30, 0.65);
}
.plan-card.highlight > p {
  color: rgba(255, 255, 255, 0.7);
}

.plan-durations {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.plan-durations li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  background: rgba(0, 0, 0, 0.03);
}
.plan-card.highlight .plan-durations li {
  background: rgba(255, 255, 255, 0.1);
}
.plan-durations .period {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(32, 31, 30, 0.7);
  white-space: nowrap;
}
.plan-card.highlight .plan-durations .period {
  color: rgba(255, 255, 255, 0.8);
}
.plan-durations .price {
  font-weight: 700;
  white-space: nowrap;
}
.plan-durations .check {
  color: var(--brand-green);
  flex-shrink: 0;
}
.plan-card.highlight .plan-durations .check {
  color: var(--brand-green-light);
}

.plan-card .btn {
  margin-top: 1.5rem;
}

/* ---------- Loyalty ---------- */
.section-dark .section-eyebrow {
  color: var(--brand-green-light);
}
.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.65);
}
.section-dark h2 {
  color: #fff;
}

.loyalty-card {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
}
.loyalty-card .card-icon {
  background: rgba(29, 158, 117, 0.2);
  color: var(--brand-green-light);
}
.loyalty-card h3 {
  margin: 1rem 0 0;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.loyalty-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Lead form section ---------- */
.lead-section {
  position: relative;
  overflow: hidden;
}
.lead-glow {
  position: absolute;
  left: 50%;
  top: 0;
  width: 18rem;
  height: 18rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(29, 158, 117, 0.2);
  filter: blur(60px);
  pointer-events: none;
}

.lead-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .lead-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 4rem;
  }
}

.perks {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.perks li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.perk-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: rgba(29, 158, 117, 0.15);
  color: var(--brand-green-light);
}
.perks a {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 4px;
}
.perks a:hover {
  color: #fff;
}

.form-panel {
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .form-panel {
    padding: 2rem;
  }
}

.form-panel.on-light {
  background: var(--bg-soft);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.field {
  margin-bottom: 1rem;
}
.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.on-light .field label {
  color: rgba(32, 31, 30, 0.8);
}
.field input {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s ease;
}
.field input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.field input:focus {
  border-color: var(--brand-green);
}
.on-light .field input {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--brand-dark);
}
.on-light .field input::placeholder {
  color: rgba(32, 31, 30, 0.35);
}

.form-disclaimer {
  margin-top: 1rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.4);
}
.on-light .form-disclaimer {
  color: rgba(32, 31, 30, 0.4);
}

.form-error {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #f87171;
}
.on-light .form-error {
  color: #dc2626;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
}
.on-light .form-success {
  background: rgba(29, 158, 117, 0.05);
  border: 1px solid rgba(29, 158, 117, 0.15);
}
.form-success .icon {
  color: var(--brand-green-light);
}
.on-light .form-success .icon {
  color: var(--brand-green);
}
.form-success .title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.on-light .form-success .title {
  color: var(--brand-dark);
}
.form-success .hint {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 22rem;
}
.on-light .form-success .hint {
  color: rgba(32, 31, 30, 0.6);
}
.form-success .ticket {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--brand-green);
}

.hidden {
  display: none !important;
}

/* ---------- Contacts ---------- */
.contacts-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .contacts-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }
}

.contact-list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(29, 158, 117, 0.1);
  color: var(--brand-green);
}
.contact-list .label {
  font-size: 0.875rem;
  color: var(--brand-gray);
}
.contact-list .value {
  margin-top: 0.1rem;
  font-weight: 700;
}
.contact-list .value a:hover {
  color: var(--brand-green);
}

.map-card {
  position: relative;
  min-height: 20rem;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--brand-dark);
}
.map-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
  text-align: center;
  color: #fff;
}
.map-card-content p.title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}
.map-card-content p.hint {
  max-width: 20rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2.5rem 0;
}
.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 1.5rem;
}
.footer-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(32, 31, 30, 0.7);
}
.footer-nav a:hover {
  color: var(--brand-green);
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--brand-gray);
}
@media (min-width: 1024px) {
  .site-footer .container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ---------- Raffle page ---------- */
.raffle-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}
@media (min-width: 640px) {
  .raffle-hero {
    padding: 6rem 0;
  }
}
.raffle-intro {
  position: relative;
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}
.raffle-intro h1 {
  margin: 1.5rem 0 0;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
@media (min-width: 640px) {
  .raffle-intro h1 {
    font-size: 3rem;
  }
}
.raffle-intro h1 .accent {
  color: var(--brand-green);
}
.raffle-intro p {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(32, 31, 30, 0.7);
}
@media (min-width: 640px) {
  .raffle-intro p {
    font-size: 1.1rem;
  }
}

.raffle-steps {
  position: relative;
  margin-top: 3rem;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .raffle-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
.raffle-step {
  text-align: center;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}
.raffle-step .card-icon {
  margin: 0 auto;
}
.raffle-step h3 {
  margin: 1rem 0 0;
  font-size: 1rem;
  font-weight: 700;
}
.raffle-step p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(32, 31, 30, 0.65);
}

.raffle-form-card {
  position: relative;
  max-width: 26rem;
  margin: 3.5rem auto 0;
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: var(--bg-soft);
  padding: 1.5rem;
  box-shadow: 0 25px 50px -20px rgba(29, 158, 117, 0.15);
}
@media (min-width: 640px) {
  .raffle-form-card {
    padding: 2rem;
  }
}
.raffle-form-card h2 {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}
.raffle-form-card .field {
  margin-top: 1.5rem;
}

/* ---------- Lead capture modal ---------- */
body.modal-open {
  overflow: hidden;
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(20, 19, 18, 0.6);
}
.modal-overlay.open {
  display: flex;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 25rem;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 1.5rem;
  background: #fff;
  padding: 2rem;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.05);
  color: var(--brand-dark);
}
.modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
}

.modal h2 {
  margin: 0;
  padding-right: 2rem;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.modal-lead {
  margin: 0.5rem 0 1.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(32, 31, 30, 0.65);
}
