:root {
  --bg: #020402;
  --panel: #070b07;
  --panel-2: #090e09;
  --line: rgba(255, 255, 255, 0.08);
  --line-green: rgba(160, 255, 87, 0.18);
  --text: #f6f8f4;
  --muted: #c8d0c3;
  --muted-2: #9ea79d;
  --green: #a5ef2f;
  --green-dark: #85d91f;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background:
    radial-gradient(circle at 60% 0%, rgba(83, 255, 45, 0.08), transparent 32%),
    radial-gradient(circle at 0% 60%, rgba(83, 255, 45, 0.06), transparent 22%),
    #000;
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.container { width: min(1180px, calc(100% - 38px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.header-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.header-logo { width: 200px; max-width: 34vw; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 700;
}
.nav-links a {
  color: #fbfcfa;
  opacity: 0.95;
  position: relative;
}
.nav-links a.active,
.nav-links a:hover { color: var(--green); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: var(--green);
}

.btn {
  border: 0;
  border-radius: 14px;
  padding: 14px 22px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .15s ease, opacity .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(180deg, #b0f124 0%, #97e710 100%);
  color: #0b0d07;
}
.btn-secondary {
  background: rgba(0,0,0,0.32);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-xl { padding: 16px 26px; border-radius: 16px; }
.full { width: 100%; }

.hero {
  padding: 26px 0 24px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  align-items: stretch;
  gap: 0;
  min-height: 540px;
}
.hero-copy {
  background: linear-gradient(90deg, rgba(0,0,0,0.82), rgba(0,0,0,0.72));
  padding: 74px 42px 48px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}
.hero-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(3.7rem, 8vw, 5.8rem);
  line-height: 0.93;
  letter-spacing: -0.04em;
  font-weight: 900;
}
.hero-copy h1 span { color: var(--green); }
.hero-copy p {
  margin: 0;
  max-width: 360px;
  color: #f2f6f0;
  font-size: 1.12rem;
  line-height: 1.55;
  font-weight: 600;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-image-card {
  position: relative;
  min-height: 540px;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.08), rgba(0,0,0,0.22)),
    url('hero-preview.png') center/cover no-repeat;
  border-radius: 0 18px 18px 0;
  overflow: hidden;
}
.hero-image-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.16), rgba(0,0,0,0.02) 36%, rgba(0,0,0,0.10));
}

.stats {
  padding: 10px 0 34px;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: linear-gradient(180deg, rgba(7,11,7,0.96), rgba(4,6,4,0.96));
  border: 1px solid var(--line-green);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.stat-box {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  padding: 28px 24px;
  align-items: start;
}
.stat-box + .stat-box { border-left: 1px solid var(--line); }
.stat-icon {
  width: 68px;
  height: 68px;
  border: 2px solid rgba(165, 239, 47, 0.6);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 1.9rem;
}
.stat-number {
  color: var(--green);
  font-size: clamp(2.8rem, 6vw, 4rem);
  line-height: 1;
  font-weight: 900;
}
.stat-text h3 {
  margin: 6px 0 8px;
  font-size: 1.25rem;
}
.stat-text p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.memberships-section {
  padding: 24px 0 28px;
}
.section-heading {
  text-align: center;
  margin-bottom: 26px;
}
.eyebrow {
  display: inline-block;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-heading h2 {
  margin: 12px 0 10px;
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
}
.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}
.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.membership-card {
  background: linear-gradient(180deg, rgba(6,9,6,0.98), rgba(2,4,2,0.98));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 24px 24px 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.membership-card.featured {
  border-color: rgba(165, 239, 47, 0.3);
}
.top-icon {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: linear-gradient(180deg, #b4f138, #8ce209);
  color: #0c0f09;
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  font-weight: 900;
}
.membership-card h3 {
  text-align: center;
  margin: 0 0 18px;
  line-height: 1.22;
  font-size: 1.55rem;
}
.price {
  text-align: center;
  color: var(--green);
  font-size: clamp(3.1rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1;
}
.price span {
  color: var(--green);
  font-size: 1.05rem;
  font-weight: 800;
}
.time-line {
  text-align: center;
  color: var(--green);
  font-weight: 800;
  margin-top: 12px;
  font-size: 1.08rem;
}
.membership-card ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 22px;
  display: grid;
  gap: 11px;
}
.membership-card li {
  position: relative;
  padding-left: 20px;
  color: #eef3eb;
  line-height: 1.5;
  font-size: 1.03rem;
}
.membership-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.footer-panel {
  margin-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(5,7,5,0.96), rgba(1,2,1,0.98));
}
.footer-content {
  padding: 26px 0 18px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 26px;
  align-items: start;
}
.footer-logo { width: 185px; }
.footer-panel h4 {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.footer-links,
.contact-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer-links a,
.contact-items span {
  color: #f1f5ef;
  opacity: 0.92;
  line-height: 1.45;
}
.socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-circle {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.6);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: white;
}
.copyright {
  text-align: center;
  color: var(--muted-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 12px 12px 18px;
  font-size: 0.95rem;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0,0,0,0.74);
  z-index: 100;
}
.modal.show { display: flex; }
.modal-card {
  width: min(520px, 100%);
  background: linear-gradient(180deg, #0a0e09, #050705);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 24px;
  position: relative;
}
.modal-card h3 {
  margin: 10px 0 12px;
  font-size: 1.8rem;
}
.close-btn {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
}
form { display: grid; gap: 12px; }
input, select {
  width: 100%;
  padding: 14px 15px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: white;
}
.message { min-height: 20px; color: var(--green); font-weight: 700; }

@media (max-width: 1100px) {
  .nav-links { gap: 20px; font-size: 0.95rem; }
  .membership-grid,
  .footer-content { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy {
    padding: 40px 8px 24px 8px;
    background: transparent;
  }
  .hero-image-card {
    min-height: 320px;
    border-radius: 18px;
  }
  .stats-row,
  .membership-grid,
  .footer-content { grid-template-columns: 1fr; }
  .stat-box + .stat-box { border-left: 0; border-top: 1px solid var(--line); }
}
@media (max-width: 640px) {
  .container { width: min(100% - 22px, 100%); }
  .header-inner { min-height: 76px; }
  .header-logo { width: 156px; max-width: 45vw; }
  .header-btn { padding: 12px 14px; font-size: 0.95rem; }
  .hero-copy h1 { font-size: clamp(3rem, 12vw, 4.4rem); }
  .hero-actions { gap: 12px; }
  .btn-xl { width: 100%; text-align: center; }
  .hero-image-card { min-height: 250px; }
  .stat-box { grid-template-columns: 66px 1fr; padding: 22px 18px; }
  .stat-icon { width: 56px; height: 56px; font-size: 1.4rem; }
  .membership-card { padding: 22px 18px; }
  .membership-card h3 { font-size: 1.35rem; }
  .price { font-size: 2.6rem; }
  .footer-logo { width: 160px; }
}
\n\n.birthday-section { padding: 32px 0 42px; }\n.birthday-wrap {\n  display: grid;\n  grid-template-columns: 1.35fr .65fr;\n  gap: 22px;\n  align-items: stretch;\n}\n.birthday-card, .birthday-side {\n  background: linear-gradient(180deg, rgba(6,9,6,0.98), rgba(2,4,2,0.98));\n  border: 1px solid rgba(255,255,255,0.09);\n  border-radius: 20px;\n  box-shadow: var(--shadow);\n}\n.birthday-card { padding: 28px; }\n.birthday-side { padding: 30px; display: flex; flex-direction: column; justify-content: center; }\n.birthday-badge {\n  display: inline-block;\n  color: #0b0d07;\n  background: var(--green);\n  border-radius: 999px;\n  padding: 8px 13px;\n  font-weight: 900;\n  font-size: .78rem;\n  letter-spacing: .08em;\n}\n.birthday-price {\n  margin-top: 18px;\n  color: var(--green);\n  font-size: clamp(3.4rem, 7vw, 5.2rem);\n  font-weight: 900;\n  line-height: .95;\n}\n.birthday-price span { font-size: .42em; vertical-align: top; }\n.birthday-card h3 { margin: 12px 0 22px; font-size: 1.8rem; }\n.birthday-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }\n.birthday-columns h4 { color: var(--green); margin: 0 0 10px; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .06em; }\n.birthday-columns ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }\n.birthday-columns li { position: relative; padding-left: 19px; line-height: 1.45; color: #eef3eb; }\n.birthday-columns li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 900; }\n.cake-note { margin: 24px 0 18px; padding: 16px 18px; border: 1px solid rgba(165,239,47,.2); border-radius: 14px; color: var(--muted); background: rgba(165,239,47,.035); line-height: 1.5; }\n.cake-note strong { color: var(--green); }\n.birthday-button { margin-top: 4px; }\n.birthday-side h3 { font-size: 2rem; line-height: 1.15; margin: 12px 0; }\n.birthday-side p { color: var(--muted); line-height: 1.6; }\n.birthday-mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 20px; }\n.birthday-mini-stats div { border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 14px 10px; text-align: center; background: rgba(255,255,255,.02); }\n.birthday-mini-stats strong { display: block; color: var(--green); font-size: 1.7rem; }\n.birthday-mini-stats span { display: block; color: var(--muted-2); font-size: .82rem; margin-top: 3px; }\n.modal-note { color: var(--muted); line-height: 1.5; }\n@media (max-width: 860px) {\n  .birthday-wrap, .birthday-columns { grid-template-columns: 1fr; }\n}\n@media (max-width: 640px) {\n  .birthday-card, .birthday-side { padding: 21px 18px; }\n  .birthday-mini-stats { grid-template-columns: 1fr 1fr 1fr; }\n  .birthday-mini-stats strong { font-size: 1.35rem; }\n}\n