:root {
  --brand: #ed1c24;
  --brand-bright: #ff2a32;
  --brand-dark: #b5121b;
  --brand-deep: #790b11;
  --black: #211d1e;
  --orange: #f47721;
  --orange-dark: #c94e0c;
  --ink: #211d1e;
  --muted: #626266;
  --surface: #ffffff;
  --surface-soft: #fff5f5;
  --line: #eadfe0;
  --shadow: 0 18px 52px rgba(121, 11, 17, .15);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

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

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 999;
  padding: 12px 16px;
  color: #fff;
  background: var(--black);
  border-radius: 10px;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-bottom: 3px solid var(--brand);
  box-shadow: 0 8px 28px rgba(33, 29, 30, .08);
  backdrop-filter: blur(12px);
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex: 0 0 auto;
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { color: var(--black); font-size: 1.7rem; letter-spacing: -.04em; }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: .75rem; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-phone,
.header-facebook {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}
.header-phone {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 8px 20px rgba(237, 28, 36, .24);
}
.header-phone:hover { background: var(--brand-dark); }
.header-facebook {
  color: #fff;
  background: #1877f2;
}
.header-facebook:hover { background: #0f62d4; }
.facebook-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  color: #1877f2;
  background: #fff;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 12% 10%, rgba(244, 119, 33, .5), transparent 30%),
    radial-gradient(circle at 90% 15%, rgba(33, 29, 30, .4), transparent 28%),
    linear-gradient(135deg, var(--brand-deep), var(--brand) 58%, var(--brand-dark));
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image:
    linear-gradient(30deg, transparent 49%, #fff 50%, transparent 51%),
    linear-gradient(150deg, transparent 49%, #fff 50%, transparent 51%);
  background-size: 90px 90px;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 80px;
  background: #fff;
  clip-path: polygon(0 72%, 100% 0, 100% 100%, 0 100%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 680px;
  padding: 92px 0 126px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
}
.eyebrow, .section-kicker {
  margin: 0 0 12px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow { color: #ffd7d9; }
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 6.4vw, 6.2rem);
  line-height: .92;
  letter-spacing: -.065em;
  text-shadow: 0 10px 28px rgba(33, 29, 30, .22);
}
.hero h1 span { color: #fff; -webkit-text-stroke: 2px var(--black); paint-order: stroke fill; }
.hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.button {
  min-height: 52px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .contact-link:focus-visible, .mobile-contact-bar a:focus-visible, .header-phone:focus-visible, .header-facebook:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.button-primary {
  color: var(--brand-deep);
  background: #fff;
  box-shadow: 0 12px 30px rgba(33, 29, 30, .2);
}
.button-light {
  color: #fff;
  border-color: rgba(255, 255, 255, .7);
  background: rgba(33, 29, 30, .16);
}
.button-light:hover { background: rgba(33, 29, 30, .28); }
.hero-points {
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  list-style: none;
  color: rgba(255, 255, 255, .9);
  font-size: .94rem;
  font-weight: 800;
}
.hero-points li { display: flex; align-items: center; gap: 8px; }
.hero-points span {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: var(--black);
  border: 2px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  font-size: .72rem;
}
.hero-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}
.hero-collage {
  position: relative;
  width: min(100%, 590px);
  aspect-ratio: 1.05;
  overflow: hidden;
  background: var(--black);
  border: 6px solid rgba(255, 255, 255, .94);
  border-radius: 34px;
  box-shadow: 0 30px 75px rgba(33, 29, 30, .42);
  transform: rotate(1.5deg);
}
.hero-collage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(237, 28, 36, .22), transparent 45%),
    linear-gradient(to top, rgba(33, 29, 30, .36), transparent 45%);
}
.hero-collage::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 5;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 24px;
}
.collage-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--black);
}
.collage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.hero-collage:hover .collage-photo img { transform: scale(1.035); }
.collage-photo-action {
  inset: 0 48% 48% 0;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}
.collage-photo-action img { object-position: 42% center; }
.collage-photo-coach {
  inset: 0 0 48% 50%;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}
.collage-photo-coach img { object-position: 60% center; }
.collage-photo-team {
  inset: 50% 50% 0 0;
  clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
}
.collage-photo-team img { object-position: center 34%; }
.collage-photo-community {
  inset: 50% 0 0 48%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%);
}
.collage-photo-community img { object-position: center center; }
.collage-logo-card {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 7;
  width: 28%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 7px;
  background: rgba(255, 255, 255, .97);
  border: 4px solid var(--black);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .38);
  transform: translate(-50%, -50%) rotate(-1.5deg);
}
.collage-logo-card img { width: 100%; height: 100%; object-fit: contain; }
.score-card {
  position: absolute;
  z-index: 9;
  min-width: 130px;
  padding: 16px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, .98);
  border: 3px solid var(--black);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.score-card strong { display: block; color: var(--brand); font-size: 2rem; line-height: 1; }
.score-card span { display: block; margin-top: 5px; color: var(--muted); font-size: .82rem; font-weight: 900; }
.score-card-top { top: 2%; left: -4%; transform: rotate(-5deg); }
.score-card-bottom { right: -4%; bottom: 4%; transform: rotate(4deg); }
.hero-decoration { position: absolute; border: 3px solid rgba(255, 255, 255, .1); border-radius: 50%; }
.hero-decoration-one { width: 360px; height: 360px; right: -130px; top: -120px; }
.hero-decoration-two { width: 220px; height: 220px; left: -90px; bottom: 40px; }

.contact-strip { padding: 32px 0 58px; background: #fff; }
.contact-strip-grid {
  padding: 28px;
  display: grid;
  grid-template-columns: .8fr .75fr 1.45fr;
  align-items: center;
  gap: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 6px solid var(--brand);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.section-kicker { color: var(--brand); }
.contact-strip h2, .section-heading h2, .form-intro h2, .social-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.coach-card { display: flex; align-items: center; gap: 13px; }
.coach-avatar {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--black);
  border: 4px solid var(--brand);
  border-radius: 50%;
  font-weight: 900;
}
.coach-info { display: grid; }
.coach-info strong { font-size: 1.05rem; }
.coach-info span { color: var(--muted); font-size: .84rem; }
.contact-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.contact-link {
  min-width: 0;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-deep);
  background: #fff1f2;
  border: 1px solid #ffd1d4;
  border-radius: 14px;
  text-decoration: none;
}
.contact-link > span:first-child {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  font-weight: 900;
}
.contact-link > span:last-child { min-width: 0; display: grid; }
.contact-link small { color: var(--muted); font-size: .7rem; }
.contact-link strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .84rem; }
.contact-link:hover { background: #ffe4e6; }

.social-section {
  padding: 18px 0 88px;
  background: #fff;
}
.facebook-layout {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(320px, 500px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}
.facebook-copy-card {
  min-height: 470px;
  padding: clamp(30px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, .22), transparent 30%),
    linear-gradient(135deg, #1877f2, #0f5fc7);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 58px rgba(24, 119, 242, .25);
}
.social-badge {
  width: 78px;
  height: 78px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  color: #1877f2;
  background: #fff;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1;
}
.social-copy .section-kicker { color: #dfeeff; }
.social-copy h2 { font-size: clamp(2.2rem, 4.3vw, 4rem); }
.social-copy p:last-child {
  max-width: 610px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 1.05rem;
}
.button-facebook {
  margin-top: 30px;
  color: #1877f2;
  background: #fff;
  white-space: nowrap;
}
.facebook-plugin-card {
  width: 100%;
  max-width: 500px;
  min-width: 0;
  padding: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d8e6fa;
  border-radius: 22px;
  box-shadow: 0 18px 52px rgba(25, 62, 112, .14);
}
.facebook-plugin-card iframe {
  width: 100%;
  max-width: 500px;
  display: block;
  border-radius: 12px;
}
.facebook-fallback {
  margin: 12px 8px 4px;
  color: var(--muted);
  font-size: .82rem;
  text-align: center;
}
.facebook-fallback a { color: #1877f2; font-weight: 800; }

.steps-section { padding: 76px 0 92px; background: var(--surface-soft); border-top: 1px solid #ffe0e2; }
.section-heading { max-width: 620px; margin-bottom: 34px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card {
  position: relative;
  padding: 30px;
  background: #fff;
  border: 1px solid #ffd9db;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 26px rgba(121, 11, 17, .07);
}
.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border: 3px solid var(--black);
  border-radius: 50%;
  font-weight: 900;
}
.step-card h3 { margin: 18px 0 8px; font-size: 1.35rem; }
.step-card p { margin: 0; color: var(--muted); }

.form-section { padding: 92px 0 110px; background: #fff; }
.form-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: clamp(28px, 5vw, 76px);
}
.form-intro { position: sticky; top: 116px; }
.form-intro > p:not(.section-kicker):not(.form-fallback) { color: var(--muted); font-size: 1.08rem; }
.form-reassurance {
  margin-top: 28px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  border-left: 6px solid var(--brand);
  border-radius: var(--radius-md);
}
.form-reassurance > span {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  font-weight: 900;
}
.form-reassurance p { margin: 0; color: var(--brand-deep); }
.form-fallback { margin-top: 22px; color: var(--muted); font-size: .9rem; }
.form-fallback a { color: var(--brand); font-weight: 800; }
.form-shell {
  position: relative;
  min-height: 1920px;
  overflow: hidden;
  background: #f7f7f8;
  border: 1px solid var(--line);
  border-top: 6px solid var(--brand);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.form-shell iframe {
  width: 100%;
  height: 1920px;
  display: block;
  border: 0;
  background: #fff;
}
.form-loading {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  background: #fff;
  transition: opacity .2s ease, visibility .2s ease;
}
.form-loading.is-hidden { opacity: 0; visibility: hidden; }
.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid #fecdd3;
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.site-footer { padding: 56px 0 96px; color: rgba(255, 255, 255, .84); background: var(--black); border-top: 8px solid var(--brand); }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; }
.brand-footer { color: #fff; }
.brand-logo-footer { width: 82px; height: 82px; }
.brand-footer .brand-copy strong { color: #fff; }
.brand-footer .brand-copy small { color: rgba(255, 255, 255, .66); }
.footer-grid p { margin: 18px 0 0; }
.footer-links { display: grid; align-content: start; gap: 10px; }
.footer-links a { color: #fff; text-decoration: none; font-weight: 800; }
.footer-links a:hover { text-decoration: underline; }
.footer-facebook { display: inline-flex; align-items: center; gap: 9px; }
.footer-facebook span {
  width: 25px;
  height: 25px;
  display: inline-grid;
  place-items: center;
  color: #1877f2;
  background: #fff;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-weight: 900;
}
.footer-bottom { margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .14); font-size: .85rem; }

.mobile-contact-bar { display: none; }

@media (max-width: 1040px) {
  .header-facebook-text { display: none; }
  .header-facebook { padding-inline: 11px; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 70px; text-align: center; }
  .hero-copy { display: grid; justify-items: center; }
  .hero-visual { min-height: 540px; }
  .hero-collage { width: min(82vw, 580px); }
  .contact-strip-grid { grid-template-columns: 1fr 1fr; }
  .contact-actions { grid-column: 1 / -1; }
  .facebook-layout { grid-template-columns: 1fr; justify-items: center; }
  .facebook-copy-card { width: 100%; min-height: auto; }
  .facebook-plugin-card { max-width: 500px; }
  .form-layout { grid-template-columns: 1fr; }
  .form-intro { position: static; max-width: 720px; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { position: relative; }
  .header-inner { min-height: 76px; }
  .brand-logo { width: 58px; height: 58px; }
  .brand-copy strong { font-size: 1.4rem; }
  .brand-copy small { display: none; }
  .header-phone { display: none; }
  .header-facebook { min-width: 46px; justify-content: center; padding: 10px; }
  .hero-grid { min-height: auto; padding: 62px 0 108px; gap: 26px; }
  .hero h1 { font-size: clamp(3.1rem, 17vw, 5.3rem); }
  .hero h1 span { -webkit-text-stroke-width: 1.5px; }
  .hero-lead { margin-top: 22px; }
  .hero-actions { width: 100%; }
  .button { width: 100%; }
  .hero-points { display: grid; justify-items: start; text-align: left; }
  .hero-visual { min-height: 390px; }
  .hero-collage { width: min(94vw, 420px); border-width: 4px; border-radius: 24px; }
  .collage-logo-card { width: 30%; border-width: 3px; }
  .score-card { min-width: 108px; padding: 12px 13px; border-width: 2px; }
  .score-card strong { font-size: 1.5rem; }
  .score-card-top { left: -2%; }
  .score-card-bottom { right: -2%; }
  .contact-strip { padding-top: 18px; }
  .contact-strip-grid { padding: 22px; grid-template-columns: 1fr; }
  .contact-actions { grid-column: auto; grid-template-columns: 1fr; }
  .social-section { padding-bottom: 62px; }
  .facebook-copy-card { padding: 32px 24px; align-items: center; text-align: center; }
  .social-badge { width: 64px; height: 64px; font-size: 3rem; }
  .button-facebook { width: 100%; }
  .facebook-plugin-card { padding: 6px; border-radius: 16px; }
  .facebook-plugin-card iframe { height: 620px; }
  .steps-section, .form-section { padding: 66px 0 78px; }
  .steps-grid { grid-template-columns: 1fr; }
  .form-shell, .form-shell iframe { min-height: 2100px; height: 2100px; }
  .footer-grid { flex-direction: column; }
  .site-footer { padding-bottom: 110px; }
  .mobile-contact-bar {
    position: fixed;
    inset: auto 10px max(10px, env(safe-area-inset-bottom));
    z-index: 80;
    padding: 7px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    background: rgba(33, 29, 30, .97);
    border: 2px solid var(--brand);
    border-radius: 18px;
    box-shadow: 0 16px 42px rgba(0, 0, 0, .32);
    backdrop-filter: blur(12px);
  }
  .mobile-contact-bar a {
    min-height: 48px;
    display: grid;
    place-items: center;
    grid-auto-flow: column;
    gap: 7px;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-size: .8rem;
    font-weight: 900;
  }
  .mobile-contact-bar a:last-child { color: #fff; background: var(--brand); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
