:root {
  --bg: #080807;
  --bg-soft: #12100f;
  --panel: #181513;
  --panel-2: #f3eee8;
  --text: #f6f3ee;
  --muted: #c6bdb4;
  --dark: #18120f;
  --line: rgba(246, 243, 238, 0.14);
  --line-dark: rgba(24, 18, 15, 0.14);
  --accent: #ff3b1f;
  --accent-2: #f4b84a;
  --cool: #69d0c4;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  background: rgba(8, 8, 7, 0.66);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(246, 243, 238, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 10px 14px;
  color: var(--dark) !important;
  background: var(--text);
  border-radius: 6px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 180ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 100px clamp(18px, 5vw, 64px) 20px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.94) 0%, rgba(8, 8, 7, 0.74) 44%, rgba(8, 8, 7, 0.36) 100%),
    linear-gradient(0deg, rgba(8, 8, 7, 1) 0%, rgba(8, 8, 7, 0.18) 42%, rgba(8, 8, 7, 0.52) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  z-index: -2;
  background: linear-gradient(0deg, var(--bg) 0%, rgba(8, 8, 7, 0) 100%);
}

.hero-media {
  position: absolute;
  right: min(6vw, 74px);
  bottom: max(-8vw, -110px);
  z-index: -5;
  width: min(58vw, 740px);
  min-width: 420px;
  opacity: 0.96;
  filter: saturate(1.08) contrast(1.06);
}

.hero-media img {
  width: 100%;
  height: auto;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(115deg, rgba(255, 59, 31, 0.18), transparent 36%),
    linear-gradient(292deg, rgba(105, 208, 196, 0.08), transparent 35%);
  mix-blend-mode: screen;
}

.hero-content {
  width: min(960px, 100%);
  padding-bottom: 18px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 960px;
  margin-bottom: 16px;
  font-size: clamp(2.75rem, 5.8vw, 5.25rem);
  line-height: 0.97;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy {
  width: min(720px, 100%);
  margin-bottom: 20px;
  color: rgba(246, 243, 238, 0.84);
  font-size: clamp(1.02rem, 1.5vw, 1.26rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #140d0b;
  background: var(--accent);
}

.button.primary:hover {
  background: #ff523a;
}

.button.secondary {
  color: var(--text);
  border-color: rgba(246, 243, 238, 0.28);
  background: rgba(246, 243, 238, 0.08);
}

.button.secondary:hover {
  border-color: rgba(246, 243, 238, 0.52);
  background: rgba(246, 243, 238, 0.13);
}

.button.full {
  width: 100%;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(620px, 100%);
  background: rgba(246, 243, 238, 0.12);
  border: 1px solid rgba(246, 243, 238, 0.14);
  border-radius: 8px;
  overflow: hidden;
}

.hero-proof div {
  padding: 11px 14px;
  background: rgba(14, 12, 11, 0.72);
}

.hero-proof strong {
  display: block;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
}

.section {
  width: min(var(--max), calc(100% - clamp(36px, 8vw, 96px)));
  margin-inline: auto;
  padding: clamp(76px, 12vw, 132px) 0;
  scroll-margin-top: 96px;
}

.hero,
.cta-section {
  scroll-margin-top: 96px;
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: clamp(32px, 6vw, 58px);
}

.intro {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.8fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
  padding-top: clamp(46px, 6vw, 68px);
}

.intro .section-heading {
  margin-bottom: 0;
}

.intro-grid {
  display: grid;
  gap: 22px;
  color: rgba(246, 243, 238, 0.78);
  font-size: 1.08rem;
}

.services {
  width: 100%;
  max-width: none;
  padding-inline: clamp(18px, 4vw, 48px);
  background: var(--panel-2);
  color: var(--dark);
}

.services .section-heading {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.services .eyebrow {
  color: #b7321f;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 38px);
  background: #ffffff;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(24, 18, 15, 0.1);
}

.service-card.featured {
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 59, 31, 0.18), transparent 42%),
    #18120f;
  border-color: rgba(255, 59, 31, 0.4);
}

.service-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  color: #a33424;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured .service-topline {
  color: var(--accent-2);
}

.service-card p {
  color: rgba(24, 18, 15, 0.72);
}

.featured p {
  color: rgba(246, 243, 238, 0.78);
}

.service-price {
  display: grid;
  gap: 4px;
  margin: 4px 0 22px;
  padding: 18px;
  background: rgba(24, 18, 15, 0.06);
  border: 1px solid rgba(24, 18, 15, 0.12);
  border-radius: 8px;
}

.service-price strong {
  color: #a33424;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.9;
}

.service-price span {
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-price p {
  margin: 6px 0 0;
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(24, 18, 15, 0.78);
}

.featured .check-list li {
  color: rgba(246, 243, 238, 0.78);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.service-card .button {
  margin-top: auto;
}

.featured .button.primary {
  color: #170e0c;
}

.service-card:not(.featured) .button.secondary {
  color: var(--dark);
  border-color: rgba(24, 18, 15, 0.18);
  background: rgba(24, 18, 15, 0.06);
}

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

.method-grid article {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.method-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--cool);
  font-weight: 950;
}

.method-grid h3 {
  font-size: 1.25rem;
}

.method-grid p {
  margin-bottom: 0;
  color: rgba(246, 243, 238, 0.72);
}

.coach-section {
  position: relative;
  z-index: 16;
  padding-top: clamp(28px, 5vw, 58px);
  background: var(--bg);
}

.coach-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: stretch;
}

.coach-portrait {
  position: relative;
}

.coach-photo {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  isolation: isolate;
}

.coach-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(8, 8, 7, 0.68) 0%, rgba(8, 8, 7, 0.04) 46%),
    linear-gradient(115deg, rgba(255, 59, 31, 0.18), transparent 42%);
  pointer-events: none;
}

.coach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.08);
}

.coach-photo-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 16px;
  background: rgba(14, 12, 11, 0.78);
  border: 1px solid rgba(246, 243, 238, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.coach-photo-note span {
  display: block;
  color: var(--accent-2);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.coach-photo-note strong {
  display: block;
  margin-top: 4px;
  font-size: 1.15rem;
  line-height: 1.1;
}

.coach-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coach-copy h2 {
  margin-bottom: 28px;
}

.coach-text {
  display: grid;
  gap: 16px;
  color: rgba(246, 243, 238, 0.74);
  font-size: 1.02rem;
}

.coach-text p {
  margin-bottom: 0;
}

.coach-text p:nth-child(3) {
  color: var(--accent-2);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coach-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.coach-stats div {
  padding: 16px;
  background: var(--bg-soft);
}

.coach-stats strong {
  display: block;
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  line-height: 1;
}

.coach-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(246, 243, 238, 0.7);
  font-size: 0.84rem;
  font-weight: 750;
}

.coach-block-heading {
  display: grid;
  gap: 12px;
  width: min(760px, 100%);
  margin-top: clamp(58px, 8vw, 96px);
  margin-bottom: 26px;
}

.coach-block-heading h3,
.expect-panel h3 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.2vw, 3.4rem);
  line-height: 1;
  text-wrap: balance;
}

.coach-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.coach-pillars article,
.formation-grid article,
.results-grid article {
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  color: var(--cool);
  background: rgba(105, 208, 196, 0.08);
  border: 1px solid rgba(105, 208, 196, 0.18);
  border-radius: 8px;
}

.pillar-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.coach-pillars h3,
.formation-grid h3,
.results-grid h3 {
  font-size: 1rem;
  text-transform: uppercase;
}

.coach-pillars p,
.formation-grid p,
.results-grid p {
  margin-bottom: 0;
  color: rgba(246, 243, 238, 0.72);
}

.coach-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.coach-timeline::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 35px;
  height: 1px;
  background: rgba(246, 243, 238, 0.16);
}

.coach-timeline article {
  position: relative;
  padding: 74px 22px 24px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.coach-timeline article::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 22px;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border: 4px solid var(--bg-soft);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 59, 31, 0.36);
}

.coach-timeline span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.coach-timeline strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.08rem;
  line-height: 1.15;
}

.coach-timeline p {
  margin-bottom: 0;
  color: rgba(246, 243, 238, 0.72);
}

.formation-panel {
  margin-top: clamp(44px, 6vw, 74px);
}

.formation-panel .coach-block-heading {
  margin-top: 0;
}

.formation-grid,
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.results-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.formation-note {
  width: min(780px, 100%);
  margin: 22px 0 0;
  color: rgba(246, 243, 238, 0.76);
  font-size: 1.06rem;
  font-weight: 760;
}

.expect-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 62px);
  margin-top: clamp(44px, 7vw, 86px);
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(255, 59, 31, 0.18), transparent 42%),
    linear-gradient(300deg, rgba(105, 208, 196, 0.08), transparent 40%),
    var(--panel);
  border: 1px solid rgba(255, 59, 31, 0.22);
  border-radius: 8px;
}

.expect-panel p:not(.eyebrow) {
  margin-top: 20px;
  margin-bottom: 0;
  color: rgba(246, 243, 238, 0.74);
  font-size: 1.06rem;
}

.expect-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.expect-list li {
  position: relative;
  min-height: 48px;
  padding: 13px 14px 13px 36px;
  background: rgba(246, 243, 238, 0.06);
  border: 1px solid rgba(246, 243, 238, 0.12);
  border-radius: 8px;
  color: rgba(246, 243, 238, 0.82);
  font-weight: 780;
}

.expect-list li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 1.3em;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.results-block {
  margin-top: clamp(44px, 7vw, 86px);
}

.results-block .coach-block-heading {
  margin-top: 0;
}

.results-grid article span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--cool);
  font-weight: 950;
}

.testimonials-section {
  padding-top: clamp(34px, 6vw, 74px);
}

.testimonial-grid,
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.testimonial-grid article,
.process-steps article {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stars {
  margin-bottom: 28px;
  color: var(--accent-2);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.testimonial-grid h3,
.process-steps h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
}

.testimonial-grid p,
.process-steps p {
  margin-bottom: 0;
  color: rgba(246, 243, 238, 0.72);
}

.process-section {
  padding-top: clamp(34px, 6vw, 74px);
}

.process-steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-steps article {
  position: relative;
}

.process-steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 34px;
  right: -12px;
  width: 22px;
  height: 1px;
  background: rgba(246, 243, 238, 0.18);
}

.process-steps span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.app-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.app-copy p:not(.eyebrow) {
  width: min(640px, 100%);
  margin-top: 24px;
  color: rgba(246, 243, 238, 0.76);
  font-size: 1.08rem;
}

.app-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.app-points span {
  padding: 9px 12px;
  color: var(--text);
  background: rgba(246, 243, 238, 0.08);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 800;
}

.phone-frame {
  width: min(100%, 360px);
  margin-inline: auto;
  padding: 12px;
  background: #0d0c0b;
  border: 1px solid rgba(246, 243, 238, 0.22);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.phone-bar {
  width: 76px;
  height: 5px;
  margin: 8px auto 12px;
  background: rgba(246, 243, 238, 0.3);
  border-radius: 999px;
}

.app-screen {
  min-height: 520px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 59, 31, 0.2), transparent 34%),
    #f4efe9;
  color: var(--dark);
  border-radius: 20px;
}

.app-screen p {
  margin-bottom: 8px;
  color: #aa3322;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-screen h3 {
  margin-bottom: 28px;
}

.session-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(24, 18, 15, 0.12);
}

.session-item span {
  font-weight: 800;
}

.session-item strong {
  flex: 0 0 auto;
  color: #ae321f;
}

.compare {
  padding-top: 32px;
}

.compare-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.compare-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(120px, 0.5fr) minmax(120px, 0.5fr);
  gap: 1px;
  background: var(--line);
}

.compare-row > * {
  padding: 18px;
  background: var(--bg-soft);
}

.compare-head > * {
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compare-row strong {
  color: var(--text);
}

.application-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.application-copy {
  position: sticky;
  top: 112px;
}

.application-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  color: rgba(246, 243, 238, 0.76);
  font-size: 1.08rem;
}

.application-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: var(--text);
  background: rgba(246, 243, 238, 0.06);
  border: 1px solid rgba(246, 243, 238, 0.14);
  border-radius: 8px;
  font: inherit;
  outline: none;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.form-field textarea {
  resize: vertical;
}

.form-field select {
  color-scheme: dark;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: rgba(246, 243, 238, 0.09);
  border-color: rgba(255, 59, 31, 0.54);
}

.application-form .button {
  grid-column: 1 / -1;
  margin-top: 8px;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 72px);
}

.faq .section-heading {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: rgba(246, 243, 238, 0.72);
}

.cta-section {
  width: min(var(--max), calc(100% - clamp(36px, 8vw, 96px)));
  margin: 0 auto clamp(36px, 8vw, 90px);
  padding: clamp(36px, 6vw, 70px);
  background:
    linear-gradient(135deg, rgba(255, 59, 31, 0.2), transparent 46%),
    linear-gradient(300deg, rgba(105, 208, 196, 0.1), transparent 36%),
    var(--panel);
  border: 1px solid rgba(255, 59, 31, 0.24);
  border-radius: 8px;
}

.cta-section h2 {
  width: min(870px, 100%);
}

.cta-section p:not(.eyebrow) {
  width: min(680px, 100%);
  margin: 22px 0 28px;
  color: rgba(246, 243, 238, 0.76);
  font-size: 1.08rem;
}

.direct-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.direct-contact p {
  flex-basis: 100%;
  margin: 0;
  color: rgba(246, 243, 238, 0.72);
  font-weight: 800;
}

.direct-contact a {
  color: var(--text);
  font-weight: 850;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 48px) 86px;
  color: rgba(246, 243, 238, 0.68);
  border-top: 1px solid var(--line);
}

.site-footer span {
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.thank-you-section {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(860px, calc(100% - clamp(36px, 8vw, 96px)));
  margin-inline: auto;
  padding: 132px 0 72px;
}

.thank-you-section h1 {
  margin-bottom: 22px;
}

.thank-you-section p:not(.eyebrow) {
  width: min(620px, 100%);
  margin: 0 0 30px;
  color: rgba(246, 243, 238, 0.76);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.thank-you-section .button {
  width: fit-content;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 15;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  color: #160f0d;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  font-weight: 950;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 72px 16px auto;
    display: grid;
    gap: 6px;
    padding: 14px;
    background: rgba(18, 16, 15, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.44);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    min-height: 86svh;
    padding-top: 112px;
  }

  .hero-media {
    right: -120px;
    bottom: 6svh;
    width: 640px;
    min-width: 0;
    opacity: 0.5;
  }

  .intro,
  .coach-layout,
  .expect-panel,
  .application-section,
  .app-section,
  .faq {
    grid-template-columns: 1fr;
  }

  .application-copy {
    position: static;
  }

  .service-grid,
  .method-grid,
  .coach-pillars,
  .coach-timeline,
  .formation-grid,
  .results-grid,
  .testimonial-grid,
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-steps article:not(:last-child)::after {
    display: none;
  }

  .coach-timeline::before {
    display: none;
  }

  .coach-photo {
    min-height: 520px;
  }

  .phone-frame {
    width: min(100%, 340px);
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 16px;
  }

  .thank-you-nav {
    display: flex;
    position: static;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .thank-you-nav .nav-cta {
    padding: 10px 12px;
  }

  .brand span {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    min-height: 86svh;
    padding: 104px 18px 20px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.55rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .thank-you-section .button {
    width: 100%;
  }

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

  .hero-proof div {
    padding: 10px 8px;
  }

  .hero-proof strong {
    font-size: 1.22rem;
  }

  .hero-proof span {
    font-size: 0.72rem;
  }

  .section {
    width: min(100% - 36px, var(--max));
    padding: 68px 0;
  }

  .services {
    padding-inline: 18px;
  }

  .service-grid,
  .method-grid,
  .coach-pillars,
  .coach-timeline,
  .formation-grid,
  .results-grid,
  .testimonial-grid,
  .process-steps,
  .expect-panel,
  .expect-list,
  .application-form {
    grid-template-columns: 1fr;
  }

  .form-field-wide {
    grid-column: auto;
  }

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

  .coach-photo {
    min-height: 430px;
  }

  .coach-photo-note {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .coach-copy h2 {
    margin-bottom: 22px;
  }

  .coach-text {
    font-size: 1rem;
  }

  .coach-pillars article,
  .formation-grid article,
  .results-grid article,
  .testimonial-grid article,
  .process-steps article {
    padding: 20px;
  }

  .coach-timeline article {
    padding: 62px 20px 20px;
  }

  .expect-panel {
    padding: 24px 20px;
  }

  .service-topline {
    flex-direction: column;
    gap: 6px;
  }

  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-row > * {
    padding: 14px 16px;
  }

  .compare-head {
    display: none;
  }

  .app-screen {
    min-height: 450px;
  }

  .cta-section {
    width: calc(100% - 36px);
    padding: 30px 22px;
  }

  .site-footer {
    display: grid;
    padding-bottom: 86px;
  }

  .footer-contact {
    justify-content: start;
  }

  .floating-cta {
    display: none;
  }

  .has-scrolled .floating-cta {
    display: inline-flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
