:root {
  --vc040-bg: #f5f7fa;
  --vc040-ink: #21384b;
  --vc040-muted: #6b7c8d;
  --vc040-accent: #e96b16;
  --vc040-accent-deep: #c8540d;
  --vc040-surface: #ffffff;
  --vc040-border: rgba(33, 56, 75, 0.08);
  --vc040-shadow: 0 18px 40px rgba(20, 43, 64, 0.06);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  background: var(--vc040-bg);
  color: var(--vc040-ink);
}

a {
  color: inherit;
  text-decoration: none;
}

.vc040-home {
  min-height: 100vh;
  padding: 24px;
}

.vc040-shell {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.vc040-topbar,
.vc040-hero,
.vc040-actions,
.vc040-plans,
.vc040-coaches,
.vc040-cta {
  background: var(--vc040-surface);
  border: 1px solid var(--vc040-border);
  border-radius: 24px;
  box-shadow: var(--vc040-shadow);
}

.vc040-topbar {
  padding: 24px;
  display: flex;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(73, 121, 151, 0.98), rgba(45, 88, 119, 0.98)),
    rgba(45, 88, 119, 0.96);
  box-shadow: 0 18px 38px rgba(31, 92, 132, 0.18);
}

.vc040-brand {
  display: inline-flex;
  justify-content: center;
}

.vc040-brand-image {
  width: min(320px, 100%);
  height: auto;
  display: block;
}

.vc040-hero {
  position: relative;
  padding: 24px;
  overflow: hidden;
}

.vc040-hero-watermark {
  position: absolute;
  inset: 0;
  opacity: 0.12;
}

.vc040-hero-watermark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
}

.vc040-hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vc040-video-frame {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(33, 56, 75, 0.08);
}

.vc040-home-video {
  width: 100%;
  min-height: 420px;
  max-height: 620px;
  border-radius: 18px;
  background: #dfe7ee;
  display: block;
}

.vc040-video-note {
  margin: 12px 0 0;
  text-align: center;
  color: var(--vc040-muted);
}

.vc040-actions,
.vc040-plans,
.vc040-coaches,
.vc040-cta {
  padding: 30px;
}

.vc040-action-grid,
.vc040-plan-grid {
  display: grid;
  gap: 16px;
}

.vc040-action-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vc040-plan-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vc040-action-card,
.vc040-plan-card {
  border: 1px solid var(--vc040-border);
  border-radius: 18px;
  background: #fff;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vc040-plan-card {
  overflow: hidden;
}

.vc040-plan-image {
  width: calc(100% + 48px);
  max-width: none;
  height: 180px;
  margin: -24px -24px 20px;
  object-fit: cover;
  display: block;
}

.vc040-action-card:hover,
.vc040-plan-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(20, 43, 64, 0.06);
}

.vc040-action-card-primary {
  background: linear-gradient(135deg, #fff8f3, #ffffff);
  border-color: rgba(233, 107, 22, 0.18);
}

.vc040-action-card span,
.vc040-plan-card span,
.vc040-coach-copy span {
  display: block;
  color: var(--vc040-accent-deep);
  font-weight: 800;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.vc040-action-card strong,
.vc040-plan-card strong,
.vc040-coach-copy h3 {
  display: block;
  margin-top: 12px;
  color: var(--vc040-ink);
}

.vc040-action-card strong,
.vc040-plan-card strong {
  font-size: 1.45rem;
  line-height: 1.1;
}

.vc040-action-card p,
.vc040-plan-card p,
.vc040-coach-copy p,
.vc040-cta p,
.vc040-section-head p {
  margin: 12px 0 0;
  color: var(--vc040-muted);
  line-height: 1.65;
}

.vc040-kicker {
  margin: 0 0 8px;
  color: var(--vc040-accent-deep);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.vc040-section-head {
  margin-bottom: 20px;
}

.vc040-section-head h2,
.vc040-cta h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.vc040-coach-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  border: 1px solid var(--vc040-border);
  border-radius: 20px;
  padding: 18px;
  background: #fbfcfd;
}

.vc040-coach-card img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.vc040-coach-copy h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  line-height: 1.06;
}

.vc040-inline-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--vc040-accent-deep);
  font-weight: 800;
}

.vc040-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
}

.vc040-button-primary {
  background: var(--vc040-accent);
  color: #fff;
  box-shadow: 0 14px 28px rgba(233, 107, 22, 0.18);
}

.vc040-cta {
  text-align: center;
}

.vc040-cta p {
  width: min(720px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.vc040-cta-actions {
  margin-top: 24px;
}

@media (max-width: 900px) {
  .vc040-action-grid,
  .vc040-plan-grid,
  .vc040-coach-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .vc040-home {
    padding: 12px;
  }

  .vc040-topbar,
  .vc040-actions,
  .vc040-plans,
  .vc040-coaches,
  .vc040-cta {
    padding: 20px;
  }

  .vc040-hero {
    padding: 16px;
  }

  .vc040-topbar,
  .vc040-hero,
  .vc040-actions,
  .vc040-plans,
  .vc040-coaches,
  .vc040-cta {
    border-radius: 20px;
  }

  .vc040-home-video {
    min-height: 280px;
  }

  .vc040-action-card,
  .vc040-plan-card,
  .vc040-coach-card {
    padding: 18px;
  }

  .vc040-plan-image {
    width: calc(100% + 36px);
    height: 160px;
    margin: -18px -18px 18px;
  }

  .vc040-video-frame {
    padding: 12px;
  }

  .vc040-coach-card img {
    min-height: 220px;
  }

  .vc040-cta {
    text-align: left;
  }

  .vc040-cta p {
    width: 100%;
  }

  .vc040-button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .vc040-home {
    padding: 10px;
  }

  .vc040-topbar,
  .vc040-hero,
  .vc040-actions,
  .vc040-plans,
  .vc040-coaches,
  .vc040-cta {
    border-radius: 18px;
  }
}
