:root {
  --ink: #121416;
  --muted: #667077;
  --paper: #f4f4f2;
  --white: #ffffff;
  --line: rgba(18, 20, 22, 0.14);
  --red: #c8102e;
  --red-dark: #970018;
  --blue: #1f6f8b;
  --green: #47745e;
  --dark: #111820;
  --dark-soft: #1d2730;
  --shadow: 0 22px 70px rgba(18, 20, 22, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 82px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(14px);
}

.brand,
.nav-links,
.header-cta {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 0;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background: rgba(200, 16, 46, 0.94);
  font-size: 0.82rem;
}

.brand-mark-ov {
  border-color: rgba(255, 255, 255, 0.32);
  background: #050505;
}

.brand-mark-ov svg {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-mark-ov rect {
  fill: #050505;
}

.brand-mark-ov text {
  fill: #fff;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 70px;
  font-weight: 900;
  letter-spacing: -2px;
}

.brand-mark-ov path {
  fill: none;
  stroke: var(--red);
  stroke-width: 7;
  stroke-linecap: round;
}

.nav-links {
  gap: 26px;
  font-size: 0.92rem;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.82);
}

.nav-links a:hover {
  color: var(--white);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch,
.header-cta {
  justify-self: end;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.lang-switch {
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(17, 24, 32, 0.28);
}

.lang-switch:hover,
.header-cta:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.22);
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.62) 36%, rgba(0, 0, 0, 0.1) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.54));
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  padding: 22vh 0 72px clamp(18px, 7vw, 96px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ff3b54;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7.2vw, 6.9rem);
  line-height: 0.91;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4.4vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.18rem, 1.7vw, 1.55rem);
  line-height: 1.08;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.03rem, 1.5vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-weight: 900;
}

.btn.primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 18px 42px rgba(200, 16, 46, 0.3);
}

.btn.primary:hover {
  background: var(--red-dark);
}

.btn.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-stats {
  display: grid;
  width: min(650px, 100%);
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
}

.hero-stats div {
  padding: 18px;
  background: rgba(16, 20, 24, 0.72);
  backdrop-filter: blur(12px);
}

.hero-stats dt {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 950;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--ink);
  color: var(--white);
}

.proof-strip span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 16px;
  background: var(--dark-soft);
  color: rgba(255, 255, 255, 0.74);
  font-weight: 850;
  text-align: center;
}

.coach-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.88fr);
  min-height: 760px;
  color: var(--white);
  background: #000;
}

.coach-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(56px, 8vw, 120px);
  padding: clamp(72px, 9vw, 140px) clamp(22px, 7vw, 108px);
}

.coach-copy h2 {
  max-width: 820px;
  font-size: clamp(3rem, 6.2vw, 6rem);
  font-weight: 360;
  line-height: 1.05;
}

.coach-copy p {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.35rem, 2vw, 2.05rem);
  line-height: 1.35;
}

.coach-copy p:last-child {
  margin-bottom: 0;
}

.coach-photo {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  object-position: center top;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 6vw, 92px);
}

.split,
.result-layout,
.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.copy-stack {
  max-width: 650px;
  color: #3b444a;
  font-size: clamp(1.04rem, 1.6vw, 1.24rem);
}

.copy-stack p:last-child,
.resultats p:last-child,
.program-header p:last-child,
.cta-copy p:last-child {
  margin-bottom: 0;
}

.offers {
  background: #f7f7f6;
}

.offer-intro {
  max-width: 1600px;
  margin: 0 auto clamp(68px, 9vw, 120px);
  text-align: center;
}

.offer-intro h2 {
  color: #000;
  font-size: clamp(3.3rem, 6.8vw, 7.6rem);
  font-weight: 360;
  line-height: 1.06;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(60px, 8vw, 120px) clamp(48px, 12vw, 180px);
  max-width: 1440px;
  margin: 0 auto;
}

.offer-card,
.program-list article,
.metric,
.lead-form {
  border-radius: 8px;
}

.offer-card {
  color: #000;
}

.offer-icon {
  display: grid;
  width: clamp(102px, 10vw, 146px);
  height: clamp(102px, 10vw, 146px);
  place-items: center;
  margin-bottom: clamp(36px, 5vw, 60px);
  border-radius: 50%;
  background: transparent;
  overflow: hidden;
}

.offer-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-card h3 {
  max-width: 600px;
  margin-bottom: 38px;
  color: #000;
  font-size: clamp(1.85rem, 2.5vw, 2.85rem);
  font-weight: 900;
}

.offer-card p {
  max-width: 620px;
  margin-bottom: 38px;
  color: #050505;
  font-size: clamp(1.35rem, 2vw, 2.25rem);
  line-height: 1.36;
}

.offer-card em {
  font-style: italic;
}

.resultats {
  background: var(--white);
}

.resultats p,
.program-header p,
.cta-copy p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
}

.metrics {
  display: grid;
  gap: 12px;
}

.metric {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  background: #faf8f3;
}

.metric strong {
  color: var(--red);
  font-size: 1.25rem;
}

.metric span {
  color: #3e464c;
  font-weight: 700;
}

.program {
  background: #e9f0ed;
}

.program-header {
  max-width: 860px;
  margin-bottom: 36px;
}

.program-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.program-list article {
  min-height: 238px;
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(71, 116, 94, 0.18);
}

.program-list h3 {
  color: var(--green);
}

.program-list p {
  color: #4a5459;
}

.testimonial-band {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(17, 24, 32, 0.94), rgba(17, 24, 32, 0.78)),
    url("assets/hero-showroom.png") center / cover;
}

.founder-note {
  display: grid;
  place-items: center;
  gap: 34px;
  min-height: 430px;
  background: #f4f4f4;
  text-align: center;
}

.founder-note p {
  max-width: 1580px;
  margin: 0 auto;
  color: #000;
  font-size: clamp(2rem, 4vw, 4.1rem);
  font-weight: 360;
  line-height: 1.12;
}

.outline-btn {
  display: inline-grid;
  min-width: min(430px, 100%);
  min-height: 86px;
  place-items: center;
  border: 2px solid #000;
  color: #000;
  background: transparent;
  font-size: clamp(1.2rem, 1.6vw, 1.8rem);
}

.quote {
  max-width: 1040px;
}

.quote p {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4.7vw, 5rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.quote span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.cta-section {
  background: var(--paper);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 34px);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

label {
  display: grid;
  gap: 8px;
  color: #31383d;
  font-size: 0.92rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(18, 20, 22, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfaf7;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(31, 111, 139, 0.22);
  border-color: var(--blue);
}

.form-btn {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 92px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
  font-weight: 750;
}

@media (max-width: 1020px) {
  .coach-section,
  .offer-grid,
  .program-list {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .split,
  .result-layout,
  .cta-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .brand {
    font-size: 0.95rem;
  }

  .header-actions {
    gap: 8px;
  }

  .lang-switch,
  .header-cta {
    min-height: 40px;
    padding: 0 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.5)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.76));
  }

  .hero-content {
    width: 100%;
    padding: 132px 18px 42px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.1rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    display: grid;
    grid-template-columns: 95px 1fr;
    gap: 12px;
    align-items: center;
  }

  .hero-stats dd {
    margin: 0;
  }

  .proof-strip,
  .offer-grid,
  .program-list {
    grid-template-columns: 1fr;
  }

  .proof-strip span {
    min-height: 56px;
  }

  .metric {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .coach-section,
  .coach-photo {
    min-height: auto;
  }

  .coach-copy {
    padding: 84px 18px 44px;
  }

  .coach-copy h2 {
    font-size: clamp(2.8rem, 13vw, 4.25rem);
  }

  .coach-copy p {
    font-size: 1.28rem;
  }

  .coach-photo {
    aspect-ratio: 4 / 5;
  }

  .offer-intro {
    margin-bottom: 56px;
    text-align: left;
  }

  .offer-intro h2 {
    font-size: clamp(2.9rem, 13vw, 4.6rem);
  }

  .offer-grid {
    gap: 64px;
  }

  .offer-card h3 {
    margin-bottom: 24px;
  }

  .offer-card p {
    margin-bottom: 24px;
    font-size: 1.32rem;
  }

  .founder-note p {
    font-size: clamp(1.75rem, 9vw, 3.2rem);
  }

  .outline-btn {
    min-height: 68px;
  }

  .program-list article {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}
