:root {
  color-scheme: dark light;
  --bg: #071019;
  --surface: #0d1a24;
  --surface-2: #132431;
  --text: #f7fafc;
  --muted: #a7b7c3;
  --line: #29404f;
  --red: #f21846;
  --red-dark: #b70d31;
  --blue: #43a4d8;
  --cream: #fff4e7;
  --shadow: 0 24px 70px rgba(0, 0, 0, .28);
  --radius: 24px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 300px;
  background:
    radial-gradient(circle at 8% 7%, rgba(242, 24, 70, .14), transparent 27rem),
    radial-gradient(circle at 92% 4%, rgba(67, 164, 216, .12), transparent 24rem),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}
body.modal-open { width: 100%; overflow: hidden; overscroll-behavior: none; }
a { color: inherit; }
img { max-width: 100%; }
button, input { font: inherit; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1200px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px 12px 10px 15px;
  border: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  border-radius: 18px;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  box-shadow: 0 12px 35px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 900; }
.brand img { width: 50px; height: 50px; object-fit: contain; }
.nav-links { display: flex; justify-content: center; gap: 23px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 750; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; gap: 9px; }
.button, .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
}
.button { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; box-shadow: 0 12px 30px rgba(242,24,70,.22); }
.button:hover { transform: translateY(-1px); }
.button-secondary { border: 1px solid var(--line); background: var(--surface); color: var(--text); }

.hero, .section, .final-cta, .site-footer {
  width: min(1160px, calc(100% - 36px));
  margin-inline: auto;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
  min-height: 660px;
  padding: 95px 0 75px;
}
.eyebrow { color: var(--red); font-size: 12px; font-weight: 950; letter-spacing: .16em; text-transform: uppercase; }
.hero-idea { margin: 12px 0 3px; color: var(--cream); font-size: clamp(27px, 4vw, 53px); font-weight: 950; letter-spacing: -.05em; }
h1, h2, h3, p { overflow-wrap: break-word; }
h1 { max-width: 820px; margin: 0; font-size: clamp(43px, 6vw, 82px); line-height: .98; letter-spacing: -.065em; }
.hero h1 { font-size: clamp(41px, 5.5vw, 74px); }
.hero-lead { max-width: 730px; margin: 25px 0 0; color: var(--muted); font-size: clamp(18px, 2vw, 22px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 27px; }
.hero-proof span { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 13px; font-weight: 750; }
.hero-visual { position: relative; display: grid; place-items: center; min-height: 430px; }
.hero-visual::before { content: ""; position: absolute; width: 88%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(242,24,70,.22), transparent 68%); }
.hero-visual img { position: relative; width: min(400px, 92%); filter: drop-shadow(0 34px 45px rgba(0,0,0,.45)); }
.hero-stat {
  position: absolute;
  right: 0;
  bottom: 16px;
  max-width: 220px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: var(--shadow);
}
.hero-stat strong { display: block; font-size: 26px; }
.hero-stat span { color: var(--muted); font-size: 13px; }

.section { padding: 84px 0; }
.section.compact { padding-top: 35px; }
.section-head { max-width: 790px; margin-bottom: 34px; }
.section-head h2 { margin: 9px 0 13px; font-size: clamp(34px, 4vw, 55px); line-height: 1.03; letter-spacing: -.05em; }
.section-head p, .section-copy p { color: var(--muted); font-size: 18px; }
.pain-grid, .system-grid, .steps-grid, .pricing-grid, .links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(150deg, color-mix(in srgb, var(--surface-2) 90%, transparent), var(--surface));
  box-shadow: 0 16px 50px rgba(0,0,0,.12);
}
.card strong { display: block; margin-bottom: 8px; font-size: 20px; }
.card p { margin: 0; color: var(--muted); }
.card .number { margin-bottom: 24px; color: var(--red); font-size: 13px; font-weight: 950; }
.pain-card { min-height: 195px; }
.pain-card q { display: block; margin-bottom: 19px; color: var(--cream); font-size: 22px; font-weight: 850; line-height: 1.25; }

.statement {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 60px;
  align-items: center;
  width: min(1240px, calc(100% - 24px));
  margin: 30px auto;
  padding: clamp(38px, 6vw, 76px);
  border-radius: 34px;
  background: linear-gradient(125deg, #f21846, #8d0928);
  color: #fff;
  box-shadow: 0 30px 90px rgba(151, 7, 39, .28);
}
.statement h2 { margin: 0; font-size: clamp(39px, 5vw, 72px); line-height: .98; letter-spacing: -.06em; }
.statement p { margin: 0; font-size: clamp(18px, 2vw, 23px); }

.steps-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.step .number { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; background: rgba(242,24,70,.13); }
.data-feature, .trainer, .location {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}
.data-feature > *, .trainer > *, .location > * { min-width: 0; }
.data-feature + .data-feature { margin-top: 72px; }
.data-feature:nth-child(even) .data-image { order: 2; }
.data-image { width: 100%; min-width: 0; overflow: hidden; padding: 12px; border: 1px solid var(--line); border-radius: 25px; background: var(--surface); box-shadow: var(--shadow); }
.data-image img { display: block; width: 100%; max-width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: contain; border-radius: 16px; }
.check-list { display: grid; gap: 12px; margin-top: 22px; }
.check-list div { position: relative; padding-left: 29px; color: var(--muted); }
.check-list div::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 950; }

.trainer-photo { min-height: 470px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--surface); }
.trainer-photo > img { width: 100%; height: 100%; object-fit: cover; }
.trainer-placeholder { display: grid; place-items: center; gap: 12px; padding: 36px; text-align: center; color: var(--muted); }
.trainer-placeholder img { width: 190px; }
.trainer-facts { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 11px; margin-top: 20px; }
.trainer-facts div { padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.trainer-facts strong { display: block; }
.trainer-facts span { color: var(--muted); font-size: 13px; }

.pricing-grid { align-items: stretch; }
.price-card { position: relative; }
.price-card.featured { border-color: var(--red); transform: translateY(-7px); }
.price-label { color: var(--red); font-weight: 950; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.price { margin: 14px 0; font-size: 46px; font-weight: 950; letter-spacing: -.05em; }
.price small { font-size: 16px; color: var(--muted); letter-spacing: 0; }
.price-card ul { min-height: 145px; padding-left: 18px; color: var(--muted); }
.price-card .button { width: 100%; }
.bonus { margin-top: 18px; padding: 23px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); color: var(--muted); }
.bonus strong { color: var(--text); }

.reviews-shell { min-height: 230px; padding: 9px; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); }
.reviews-placeholder { display: grid; place-items: center; min-height: 210px; color: var(--muted); text-align: center; }
.reviews-placeholder button { margin-top: 12px; border: 0; background: none; color: var(--red); font-weight: 900; cursor: pointer; }
.reviews-widget { display: grid; grid-template-columns: minmax(210px, .8fr) minmax(0, 2fr); gap: 12px; }
.reviews-summary-card,
.review-card { min-width: 0; border: 1px solid var(--line); border-radius: 18px; background: color-mix(in srgb, var(--surface) 84%, #071019); }
.reviews-summary-card { display: grid; align-content: center; gap: 8px; padding: 24px; }
.reviews-google-badge { width: max-content; padding: 6px 9px; border-radius: 999px; background: rgba(242,24,70,.14); color: var(--red); font-size: 10px; font-weight: 950; text-transform: uppercase; letter-spacing: .1em; }
.reviews-summary-card > strong { font-size: 54px; line-height: .95; letter-spacing: -.06em; }
.review-stars { display: inline-flex; gap: 2px; color: #ffca3a; font-size: 17px; letter-spacing: .02em; }
.reviews-summary-card p,
.reviews-summary-card small,
.review-card p { margin: 0; color: var(--muted); line-height: 1.55; }
.reviews-summary-card small { color: #ff8fa5; font-size: 11px; }
.reviews-map-link { width: max-content; min-height: 42px; margin-top: 6px; padding: 0 14px; display: inline-flex; align-items: center; justify-content: center; border-radius: 11px; background: var(--red); color: #fff; font-weight: 950; text-decoration: none; }
.reviews-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.review-card { padding: 17px; }
.review-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.review-avatar { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; border-radius: 14px; background: linear-gradient(135deg, var(--red), #2f8ac4); color: #fff; font-weight: 950; }
.review-card strong { display: block; overflow: hidden; color: var(--text); text-overflow: ellipsis; white-space: nowrap; }
.review-card .review-stars { margin-top: 2px; font-size: 13px; }
.review-card p { display: -webkit-box; overflow: hidden; -webkit-line-clamp: 5; -webkit-box-orient: vertical; }
.reviews-more-card { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 14px; border-color: color-mix(in srgb, var(--red) 48%, var(--line)); background: linear-gradient(135deg, color-mix(in srgb, var(--red) 12%, var(--surface)), color-mix(in srgb, var(--blue) 10%, var(--surface))); }
.reviews-more-card p { display: block; }
.reviews-more-card .reviews-map-link { flex: 0 0 auto; margin: 0; }
.location-card { padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); }
.location-card strong { display: block; margin: 9px 0 18px; font-size: 25px; }
.faq { display: grid; gap: 10px; }
.faq details { border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.faq summary { padding: 20px; cursor: pointer; font-weight: 900; }
.faq p { margin: 0; padding: 0 20px 20px; color: var(--muted); }

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  margin-top: 42px;
  padding: clamp(32px, 5vw, 58px);
  border-radius: 30px;
  background: linear-gradient(130deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
}
.final-cta h2 { margin: 7px 0; font-size: clamp(34px, 4vw, 54px); line-height: 1; letter-spacing: -.05em; }
.final-cta p { margin: 0; color: var(--muted); }
.site-footer { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; padding: 44px 0; color: var(--muted); }
.site-footer img { width: 70px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 15px; justify-content: flex-end; font-size: 13px; }
.footer-links button { padding: 0; border: 0; background: none; color: inherit; cursor: pointer; }
.footer-credit {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}
.footer-credit a { color: var(--text); font-weight: 800; }
.footer-credit a:hover { color: var(--red); }

.service-hero { min-height: 540px; padding-bottom: 45px; }
.service-hero h1 { font-size: clamp(42px, 5.8vw, 75px); }
.service-breadcrumbs { margin-bottom: 22px; color: var(--muted); font-size: 13px; }
.service-breadcrumbs a { text-decoration: none; }
.service-panel { padding: 30px; border: 1px solid var(--line); border-radius: 28px; background: var(--surface); }
.service-panel strong { display: block; margin-bottom: 13px; font-size: 24px; }
.service-points { display: grid; gap: 13px; }
.service-points div { padding: 13px; border-radius: 13px; background: var(--surface-2); color: var(--muted); }

.trial-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  background: rgba(3,8,12,.96);
  contain: layout paint;
}
.trial-modal.open { display: flex; }
.trial-card {
  box-sizing: border-box;
  width: min(700px, 100%);
  min-width: 0;
  max-width: 100%;
  max-height: calc(100dvh - 28px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  touch-action: pan-y;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--surface);
  box-shadow: 0 20px 55px rgba(0,0,0,.32);
  contain: layout paint;
}
.trial-head { display: grid; grid-template-columns: 60px 1fr auto; gap: 14px; align-items: start; margin-bottom: 22px; }
.trial-head > *, .form-grid > *, .trial-slot > * { min-width: 0; }
.trial-head img { width: 60px; }
.trial-head h2 { margin: 2px 0 4px; font-size: 28px; line-height: 1.05; }
.trial-head p { margin: 0; color: var(--muted); font-size: 13px; }
.modal-close { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-2); color: var(--text); cursor: pointer; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 13px; }
.field { display: grid; min-width: 0; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--muted); font-size: 12px; font-weight: 850; }
.field input { display: block; box-sizing: border-box; width: 100%; min-width: 0; max-width: 100%; height: 48px; border: 1px solid var(--line); border-radius: 12px; padding: 0 13px; background: var(--bg); color: var(--text); }
.field input[type="date"] { appearance: none; -webkit-appearance: none; }
.trial-slots { display: grid; gap: 8px; }
.trial-slot { display: flex; width: 100%; min-width: 0; max-width: 100%; align-items: center; justify-content: space-between; gap: 12px; min-height: 58px; padding: 10px 13px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg); color: var(--text); text-align: left; cursor: pointer; }
.trial-slot > span { overflow: hidden; }
.trial-slot strong, .trial-slot span span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.trial-slot span span { display: block; color: var(--muted); font-size: 12px; }
.trial-slot.selected { border-color: var(--red); background: color-mix(in srgb, var(--red) 11%, var(--bg)); }
.form-status { margin-top: 13px; color: var(--muted); font-size: 13px; }
.form-status.error { color: #ff8ca4; }
.form-status.success { color: #69dfa1; }
.privacy-check { display: flex; gap: 9px; margin-top: 16px; color: var(--muted); font-size: 12px; }
.privacy-check input { margin-top: 3px; }
.trial-submit { width: 100%; margin-top: 16px; }
.honeypot { position: absolute; left: -9999px; }

.cookie-banner {
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 18px;
  display: none;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  width: min(720px, calc(100% - 36px));
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.cookie-banner.open { display: grid; }
.cookie-banner strong { display: block; margin-bottom: 4px; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: 13px; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions button { min-height: 42px; border: 1px solid var(--line); border-radius: 11px; padding: 0 13px; background: var(--surface-2); color: var(--text); cursor: pointer; font-weight: 850; }
.cookie-actions .accept { border-color: var(--red); background: var(--red); color: #fff; }

@media (prefers-color-scheme: light) {
  :root {
    --bg: #f5f7f8;
    --surface: #ffffff;
    --surface-2: #edf2f5;
    --text: #14222d;
    --muted: #566976;
    --line: #cad7df;
    --cream: #5f1024;
    --shadow: 0 24px 70px rgba(31, 53, 66, .12);
  }
  body { background: radial-gradient(circle at 10% 4%, rgba(242,24,70,.08), transparent 25rem), var(--bg); }
  .site-nav { background: rgba(255,255,255,.9); }
  .hero-visual img { filter: drop-shadow(0 28px 35px rgba(54,66,75,.22)); }
  .trial-modal { background: rgba(27,41,50,.7); }
}

@media (max-width: 900px) {
  .site-nav { grid-template-columns: auto 1fr; }
  .nav-links { display: none; }
  .nav-actions { justify-self: end; }
  .hero, .data-feature, .trainer, .location, .statement { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 70px; }
  .hero-visual { min-height: 330px; }
  .statement { gap: 22px; }
  .steps-grid, .pain-grid, .system-grid, .pricing-grid, .links-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .reviews-widget { grid-template-columns: 1fr; }
  .data-feature:nth-child(even) .data-image { order: initial; }
  .trainer-photo { min-height: 0; aspect-ratio: 4 / 5; }
}

@media (max-width: 620px) {
  .site-nav { width: calc(100% - 18px); margin-top: 8px; gap: 8px; padding: 8px; }
  .brand span { display: none; }
  .brand img { width: 43px; height: 43px; }
  .nav-actions .button-secondary { padding-inline: 12px; }
  .nav-actions .button { padding-inline: 13px; }
  .hero, .section, .final-cta, .site-footer { width: min(100% - 24px, 1160px); }
  .hero { padding: 52px 0 44px; gap: 22px; }
  .hero h1 { font-size: clamp(38px, 12vw, 57px); }
  .hero-idea { font-size: 28px; }
  .hero-visual { min-height: 275px; }
  .hero-visual img { width: 255px; }
  .hero-stat { right: 3px; bottom: 0; max-width: 190px; }
  .section { padding: 60px 0; }
  .data-image { padding: 7px; border-radius: 18px; }
  .data-image img { border-radius: 12px; }
  .trainer-photo { width: 100%; aspect-ratio: 1 / 1; border-radius: 20px; }
  .trainer-photo > img { object-fit: contain; background: var(--surface); }
  .pain-grid, .system-grid, .steps-grid, .pricing-grid, .links-grid { grid-template-columns: 1fr; }
  .reviews-shell { padding: 7px; border-radius: 20px; }
  .reviews-summary-card { padding: 20px; }
  .reviews-summary-card > strong { font-size: 44px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-more-card { display: grid; }
  .reviews-map-link { width: 100%; }
  .card, .service-panel { padding: 20px; }
  .statement { width: calc(100% - 16px); padding: 35px 22px; border-radius: 25px; }
  .trainer-facts { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .final-cta { grid-template-columns: 1fr; padding: 27px; }
  .final-cta .button { width: 100%; }
  .site-footer { grid-template-columns: auto 1fr; }
  .footer-links { grid-column: 1 / -1; justify-content: flex-start; }
  .footer-credit { text-align: left; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .trial-modal { align-items: flex-end; padding: 7px; }
  .trial-card { width: 100%; max-height: 95dvh; padding: 18px 15px; border-radius: 21px 21px 10px 10px; box-shadow: none; }
  .trial-head { grid-template-columns: 49px 1fr 38px; gap: 9px; }
  .trial-head img { width: 49px; }
  .trial-head h2 { font-size: 23px; }
  .modal-close { width: 38px; height: 38px; }
  .cookie-banner { right: 8px; bottom: 8px; grid-template-columns: 1fr; width: calc(100% - 16px); }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
}
