:root {
  --black: #050505;
  --dark: #0c0c0c;
  --dark-soft: #111111;
  --white: #ffffff;
  --light: #f3f3f3;
  --text-dark: #111111;
  --muted: #bdbdbd;
  --muted-dark: #5f5f5f;
  --gold: #d49a27;
  --gold-bright: #f0b332;
  --line: rgba(255,255,255,.12);
  --line-dark: rgba(0,0,0,.12);
  --radius: 3px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: #030303;
  border-bottom: 1px solid rgba(255,255,255,.09);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.brand-mark {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #111;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: .6px;
}

.brand-copy small {
  display: block;
  color: #d8d8d8;
  font-size: 11px;
  font-weight: 700;
}

.brand-copy strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
}

.brand-copy span {
  display: block;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
}

.menu {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .7px;
}

.menu a { color: #fff; transition: .18s ease; }
.menu a.active, .menu a:hover { color: var(--gold-bright); }

.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 19px;
  background: var(--gold);
  color: #070707 !important;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-left: 4px;
}

.hero {
  position: relative;
  min-height: 555px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.9) 32%, rgba(0,0,0,.38) 70%, rgba(0,0,0,.7) 100%),
    url('../assets/imgs/banner.png') center right/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 16% 42%, rgba(212,154,39,.2), transparent 24%),
    radial-gradient(circle at 72% 30%, rgba(255,255,255,.08), transparent 26%),
    repeating-linear-gradient(90deg, rgba(212,154,39,.12) 0 2px, transparent 2px 18px),
    repeating-linear-gradient(0deg, rgba(212,154,39,.08) 0 2px, transparent 2px 18px);
  mask-image: linear-gradient(90deg, #000 0%, #000 36%, transparent 70%);
  opacity: .55;
}

.hero::after {
  content: '25';
  position: absolute;
  right: 120px;
  top: 18px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 385px;
  line-height: .8;
  color: rgba(255,255,255,.14);
  -webkit-text-stroke: 2px rgba(255,255,255,.5);
  color: transparent;
  opacity: .55;
}

.hero .container {
  position: relative;
  z-index: 2;
  min-height: 455px;
  display: grid;
  align-items: center;
}

.hero-content { max-width: 520px; padding: 85px 0 38px; }

.eyebrow {
  display: block;
  color: var(--gold-bright);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: .95;
  letter-spacing: .2px;
  text-transform: none;
  margin-bottom: 4px;
}

.hero-place {
  color: var(--gold-bright);
  font-size: 25px;
  font-style: italic;
  font-weight: 600;
  margin: 6px 0 22px;
}

.hero-text {
  color: #e7e7e7;
  max-width: 450px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 27px;
}

.actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 26px;
  border: 0;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .3px;
  cursor: pointer;
  transition: .18s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #050505; }
.btn-dark { background: rgba(0,0,0,.5); color: #fff; border: 1px solid var(--gold); }
.btn-white { background: transparent; border: 1px solid var(--gold); color: #111; }

.btn-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.whatsapp-button-icon {
  fill: currentColor;
  stroke: none;
}

.date-pill {
  margin-top: 25px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.date-pill span { color: var(--gold-bright); }

.date-pill svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.about {
  background: var(--light);
  color: var(--text-dark);
  padding: 44px 0 42px;
}

.about-grid {
  display: grid;
  grid-template-columns: .96fr 1.25fr;
  gap: 52px;
  align-items: center;
}

.section-kicker {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-bottom: 12px;
}

.title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: .2px;
}

.lead {
  color: #4d4d4d;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 500;
  margin-bottom: 16px;
}

.benefit-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line-dark);
}

.benefit-item {
  min-height: 210px;
  padding: 20px 24px;
  text-align: center;
  border-right: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 13px;
}

.benefit-icon {
  font-size: 44px;
  line-height: 1;
  color: var(--gold);
}

.benefit-icon img {
  width: 55px;
}

.benefit-item h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 19px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.benefit-item p {
  color: #555;
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
  font-weight: 600;
}

.strip-free {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: #fff;
  text-align: center;
  padding: 18px 0;
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 13px;
}

.strip-free span { color: var(--gold-bright); }
.strip-free b { color: #fff; }

.plans {
  background: #0b0b0b;
  padding: 36px 0 34px;
  border-bottom: 1px solid rgb(212 154 39);
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 74px;
  align-items: center;
}

.plan-list { margin-top: 22px; display: grid; gap: 0; }

.plan-line {
  display: grid;
  grid-template-columns: 72px 1fr 145px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.plan-icon {
  width: 54px;
  height: 54px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  font-size: 28px;
}

.plan-icon img {
  width: 75%;
}

.plan-line h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.plan-line p {
  color: #d9d9d9;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.plan-price {
  color: var(--gold-bright);
  font-size: 24px;
  font-weight: 900;
  text-align: left;
  white-space: nowrap;
}

.plan-price small {
  display: inline-block;
  color: #eaeaea;
  font-size: 10px;
  font-weight: 900;
  margin-left: 6px;
  text-transform: uppercase;
}

.plans-photo {
  position: relative;
  padding: 8px;
  border: 3px solid var(--gold);
}

.plans-photo::before {
  content: '';
  position: absolute;
  inset: -12px 18px 16px -12px;
  border: 1px solid rgba(212,154,39,.7);
  z-index: 0;
}

.plans-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1.13fr;
}

.schedule {
  background: var(--light);
  color: #111;
  padding: 55px 0 62px;
}

.schedule-inner {
  width: min(500px, calc(100% - 40px));
  margin-left: auto;
  padding-right: 42px;
}

.schedule-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 18px;
  margin: 45px 0 28px;
}

.schedule-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 32px;
}

.schedule-row p, .schedule-text {
  margin: 0;
  color: #444;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;
}

.location {
  background: #0d0d0d;
  padding: 55px 0 62px;
  border-left: 1px solid rgba(212,154,39,.3);
}

.location-inner {
  width: min(560px, calc(100% - 40px));
  margin-left: 32px;
}

.address {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: -6px 0 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.address svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.map {
  background: #ddd;
  border: 8px solid #fff;
  box-shadow: 0 16px 28px rgba(0,0,0,.25);
  margin-bottom: 18px;
}

.map iframe {
  display: block;
  width: 100%;
  height: 190px;
  border: 0;
  filter: grayscale(.15);
}

.why {
  padding: 36px 0 44px;
  background:
    linear-gradient(rgba(0,0,0,.89), rgba(0,0,0,.91)),
    url('https://images.unsplash.com/photo-1518091043644-c1d4457512c6?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  text-align: center;
}

.why-title {
  color: var(--gold-bright);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 9px;
  margin-bottom: 29px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.why-item {
  padding: 0 22px;
  min-height: 128px;
  border-right: 1px dashed rgba(212,154,39,.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 13px;
}

.why-item:last-child { border-right: 0; }
.why-item .ico { color: var(--gold-bright); font-size: 45px; line-height: 1; }
.why-item img {width: 50px;}
.why-item p { margin: 0; color: #fff; font-size: 12px; line-height: 1.55; font-weight: 800; }

.register {
  position: relative;
  padding: 58px 0 54px;
  background:
    linear-gradient(90deg, rgba(6,6,6,.98) 0%, rgba(13,13,13,.96) 42%, rgba(13,13,13,.78) 100%),
    url('https://images.unsplash.com/photo-1556056504-5c7696c4c28d?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  overflow: hidden;
}

.register::after {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  right: -90px;
  bottom: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.18), rgba(255,255,255,.02) 58%, transparent 70%);
}

.register-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .75fr 1.55fr;
  gap: 58px;
  align-items: start;
}

.register-info .lead { color: #d0d0d0; max-width: 330px; }

.trust-list {
  display: grid;
  gap: 24px;
  margin-top: 40px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.trust-list div {
  display: flex;
  gap: 14px;
  align-items: center;
}

.trust-list span { color: var(--gold-bright); font-size: 25px; }
.trust-list img { width: 25px; }

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
}

.form-block h3 {
  color: var(--gold-bright);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: .7px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.field { margin-bottom: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

label {
  display: block;
  color: #dcdcdc;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 7px;
}

input, select, textarea {
  width: 100%;
  min-height: 42px;
  padding: 0 13px;
  border: 0;
  border-radius: 2px;
  background: #eeeeee;
  color: #111;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  outline: none;
}

textarea {
  min-height: 93px;
  padding-top: 12px;
  resize: vertical;
}

input:focus, select:focus, textarea:focus {
  box-shadow: 0 0 0 3px rgba(212,154,39,.35);
  background: #fff;
}

.submit-wrap { grid-column: 1 / 2; }
.submit-wrap .btn { width: 100%; }

.honeypot {
  display: none;
}

.form-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: #dcdcdc;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.form-status.success {
  color: #86efac;
}

.form-status.error {
  color: #fca5a5;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: .7;
}

.footer {
  background: #030303;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 250px 1fr 100px;
  align-items: center;
  gap: 28px;
  color: #d0d0d0;
  font-size: 12px;
}

.socials {
  justify-self: end;
  display: flex;
  gap: 12px;
}

.socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #161616;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  min-height: 58px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: #22c55e;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.whatsapp-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.whatsapp-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

@media (max-width: 1020px) {
  .menu { display: none; }
  .brand { min-width: auto; }
  .hero::after { right: -10px; font-size: 310px; }
  .about-grid, .plans-grid, .split, .register-grid { grid-template-columns: 1fr; }
  .benefit-row { grid-template-columns: repeat(2, 1fr); }
  .schedule-inner, .location-inner { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; padding: 0; }
  .location { border-left: 0; }
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 26px 0; }
  .why-item:nth-child(3) { border-right: 0; }
  form { grid-template-columns: 1fr; }
  .submit-wrap { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .socials { justify-self: start; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .nav { height: 70px; }
  .brand-mark { width: 48px; height: 48px; }
  .brand-copy small { font-size: 9px; }
  .brand-copy strong { font-size: 14px; }
  .brand-copy span { font-size: 10px; }
  .hero { min-height: 560px; background-position: 62% center; }
  .hero .container { min-height: 560px; align-items: end; }
  .hero-content { padding-bottom: 34px; }
  .hero::after { font-size: 220px; top: 55px; right: -50px; }
  .actions .btn { width: 100%; }
  .benefit-row, .why-grid { grid-template-columns: 1fr; }
  .benefit-item, .why-item { border-right: 0; border-bottom: 1px solid rgba(0,0,0,.12); }
  .why-item { border-bottom-color: rgba(212,154,39,.35); padding-bottom: 22px; }
  .strip-free { letter-spacing: 6px; font-size: 14px; }
  .plan-line { grid-template-columns: 54px 1fr; gap: 12px; }
  .plan-price { grid-column: 2; text-align: left; margin-top: 6px; }
  .form-row { grid-template-columns: 1fr; }
  .whatsapp-float { right: 14px; bottom: 14px; font-size: 12px; min-height: 52px; }
  .whatsapp-text { display: none; }
}
