:root {
  color-scheme: dark;
  --accent: #ff6b35;
  --gradient-from: #17101f;
  --gradient-to: #4a1d52;
  --bg: #0d0b12;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --card: rgba(255, 255, 255, 0.08);
  --card-strong: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 10%, color-mix(in srgb, var(--accent) 42%, transparent), transparent 26rem),
    radial-gradient(circle at 88% 4%, color-mix(in srgb, var(--gradient-to) 72%, transparent), transparent 30rem),
    linear-gradient(135deg, var(--gradient-from), var(--gradient-to) 48%, #0d0b12);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  overflow: hidden;
}

.hero,
.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: auto;
  padding: 28px 0 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 14px;
  background: var(--accent);
  color: #111;
  box-shadow: 0 16px 40px color-mix(in srgb, var(--accent) 35%, transparent);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.mini-cta {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: 32px;
  align-items: start;
  padding-top: 48px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.hero-side {
  display: grid;
  gap: 18px;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.hero-photo-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.hero-photo-overlay strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero-photo-overlay p {
  color: var(--muted);
  margin: 10px 0 0;
}

.stat-inline {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 14px;
}

.stat-inline span {
  color: var(--accent);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.stat-inline small {
  color: var(--muted);
  font-weight: 700;
}

.hero-form-card,
.glass-card,
.thanks-card,
.location-card,
.schedule-card,
.reviews-grid blockquote {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(22px);
}

.hero-form-card {
  border-radius: 28px;
  padding: 24px;
}

.hero-form-card h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 10px;
}

.form-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.schedule-card {
  border-radius: 24px;
  padding: 22px;
  display: grid;
  gap: 10px;
}

.schedule-card span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-card p {
  color: var(--muted);
  margin: 0;
}

.schedule-foot {
  margin-top: 18px;
}

.text-link {
  color: var(--accent);
  font-weight: 800;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.video-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #000;
}

.video-card figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.section-heading .text-link {
  color: var(--accent);
  font-weight: 800;
}

.reviews-grid blockquote {
  margin: 0;
  border-radius: 24px;
  padding: 22px;
}

.reviews-grid p {
  color: var(--text);
  line-height: 1.55;
  margin: 0 0 16px;
}

.reviews-grid footer {
  color: var(--muted);
  font-weight: 800;
}

.location-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  border-radius: 28px;
  padding: 28px;
}

.location-metro {
  color: var(--accent);
  font-weight: 900;
}

.location-facts {
  display: grid;
  gap: 14px;
}

.location-facts div {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.location-facts strong {
  display: block;
  color: var(--accent);
  font-size: 28px;
}

.location-facts span {
  color: var(--muted);
  font-weight: 700;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(8, 8, 12, 0.88);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.sticky-cta-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-cta-inner span {
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}

body {
  padding-bottom: 88px;
}

.page-shell {
  overflow: hidden;
  padding-bottom: 24px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.subtitle {
  max-width: 720px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #111;
  box-shadow: 0 18px 48px color-mix(in srgb, var(--accent) 34%, transparent);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero-card {
  position: relative;
  min-height: 520px;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
}

.orb-one {
  inset: 20px 40px auto auto;
  width: 220px;
  height: 220px;
  background: color-mix(in srgb, var(--accent) 48%, transparent);
}

.orb-two {
  inset: auto auto 18px 16px;
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, 0.08);
}

.event-card,
.stat-card,
.glass-card,
.lead-card,
.thanks-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(22px);
}

.event-card {
  position: absolute;
  inset: 40px 16px auto 0;
  border-radius: 36px;
  padding: 32px;
  transform: rotate(-3deg);
}

.event-card strong {
  display: block;
  margin: 18px 0 12px;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.event-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.event-label {
  display: inline-flex;
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(0, 0, 0, 0.26);
  color: var(--accent);
  font-weight: 900;
}

.people-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.people-stack span {
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.stat-card {
  position: absolute;
  right: 0;
  bottom: 58px;
  width: 245px;
  border-radius: 28px;
  padding: 24px;
}

.stat-card strong {
  display: block;
  color: var(--accent);
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.stat-card span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 74px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 42px;
  align-items: start;
}

.bullet-grid,
.pain-grid,
.proof-grid {
  display: grid;
  gap: 16px;
}

.bullet-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.glass-card {
  border-radius: 28px;
  padding: 24px;
}

.glass-card p,
.pain-item p,
.steps p,
.proof-copy p,
.lead-card p,
.faq-list p {
  color: var(--muted);
  line-height: 1.58;
}

.card-index {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--accent);
  font-weight: 900;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.pain-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pain-item {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.pain-item span {
  display: block;
  width: 34px;
  height: 6px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--accent);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps article {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.steps span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 16px;
  background: var(--accent);
  color: #111;
  font-weight: 900;
}

.proof-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: center;
}

.proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proof-grid div {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
}

.proof-grid strong {
  display: block;
  color: var(--accent);
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.proof-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.lead-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  border-radius: 36px;
  padding: clamp(24px, 5vw, 48px);
}

.lead-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  outline: none;
  padding: 16px 18px;
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  font: inherit;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
}

.form-note {
  margin: 0;
  font-size: 13px;
}

.messages {
  border: 1px solid color-mix(in srgb, var(--accent) 55%, transparent);
  border-radius: 18px;
  padding: 12px 14px;
  background: color-mix(in srgb, var(--accent) 18%, transparent);
}

.messages p {
  margin: 0;
  color: var(--text);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.06);
}

summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

details p {
  margin: 14px 0 0;
}

.thanks-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.thanks-card {
  width: min(680px, 100%);
  border-radius: 36px;
  padding: clamp(28px, 6vw, 54px);
}

.thanks-card h1 {
  margin-top: 36px;
}

.back-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 900px) {
  .topbar-actions a:not(.mini-cta) {
    display: none;
  }

  .hero-grid,
  .split,
  .proof-section,
  .location-card,
  .schedule-grid,
  .reviews-grid,
  .gallery-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 28px;
  }

  .pain-grid,
  .steps,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .hero,
  .section {
    width: min(100% - 22px, 1160px);
  }

  h1 {
    font-size: 42px;
  }

  .lead-form .button,
  .sticky-cta .button {
    width: auto;
  }

  .bullet-grid,
  .pain-grid,
  .steps,
  .proof-grid,
  .schedule-grid,
  .reviews-grid,
  .gallery-grid,
  .video-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .sticky-cta-inner span {
    display: none;
  }

  .topbar-contacts {
    display: none;
  }
}

/* Light theme */
body.theme-light {
  color-scheme: light;
  --bg: #faf7f2;
  --text: #17101f;
  --muted: rgba(23, 16, 31, 0.72);
  --line: rgba(23, 16, 31, 0.12);
  --card: rgba(255, 255, 255, 0.82);
  --card-strong: rgba(255, 255, 255, 0.96);
}

body.theme-light {
  background:
    radial-gradient(circle at 15% 10%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 26rem),
    radial-gradient(circle at 88% 4%, color-mix(in srgb, var(--gradient-to) 40%, transparent), transparent 30rem),
    linear-gradient(135deg, var(--gradient-from), var(--gradient-to) 48%, #faf7f2);
}

body.theme-light input,
body.theme-light textarea {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

body.theme-light .sticky-cta {
  background: rgba(255, 255, 255, 0.92);
}

body.theme-light .hero-photo-overlay {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
}

.brand-logo {
  display: block;
  height: 32px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.topbar-contacts {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  margin-right: 12px;
}

.contact-link {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.urgency-banner {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  border-radius: 18px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
}

.urgency-banner strong {
  font-size: 15px;
}

.urgency-banner span,
.urgency-banner small {
  color: var(--muted);
  font-weight: 700;
}

.quiz-block {
  display: grid;
  gap: 12px;
  margin-bottom: 8px;
}

.quiz-step-label {
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quiz-question {
  margin: 0 0 10px;
  font-weight: 900;
}

.quiz-options {
  display: grid;
  gap: 8px;
}

.quiz-option {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

body.theme-light .quiz-option {
  background: rgba(255, 255, 255, 0.88);
}

.quiz-option.is-selected,
.quiz-option:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}

.hidden {
  display: none !important;
}

.label-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.consent-label {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px !important;
  font-size: 13px;
  font-weight: 700;
}

.consent-label input {
  width: auto;
  margin-top: 4px;
}

.consent-label a {
  color: var(--accent);
  text-decoration: underline;
}

.button-pay {
  width: 100%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pricing-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 34px;
  color: var(--accent);
}

.pricing-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.pricing-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.schedule-meta {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.schedule-meta strong {
  color: var(--accent);
  font-size: 22px;
}

.schedule-meta em {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.schedule-actions {
  display: grid;
  gap: 8px;
}

.location-list {
  display: grid;
  gap: 12px;
}

.location-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.location-item h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.location-item p {
  margin: 0 0 4px;
  color: var(--muted);
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
}

.site-footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-footer a {
  color: var(--muted);
}

.sticky-actions {
  display: flex;
  gap: 8px;
}

.thanks-next {
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .pricing-grid,
  .location-card {
    grid-template-columns: 1fr;
  }

  .location-card {
    display: grid;
  }
}
