:root {
  --black: #0b0b0d;
  --ink: #171719;
  --muted: #69635e;
  --line: #e7dfd7;
  --soft: #fff8ef;
  --white: #ffffff;
  --orange: #ff761a;
  --orange-dark: #d94f00;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--black);
  background: var(--soft);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; }
a { color: inherit; text-decoration: none; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255, 248, 239, .92);
  border-bottom: 1px solid rgba(11, 11, 13, .08);
  backdrop-filter: blur(18px);
}

.brand, .nav, .hero-actions, .cred-row, .panel-top, .panel-bottom, .footer {
  display: flex;
  align-items: center;
}

.brand { gap: 10px; font-weight: 800; letter-spacing: -.01em; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--black);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--orange);
}

.nav { gap: 24px; color: var(--muted); font-size: 15px; }
.nav a:hover { color: var(--black); }
.nav-cta {
  padding: 12px 18px;
  color: var(--white);
  background: var(--black);
  border-radius: 999px;
  font-weight: 700;
}

.hero {
  padding: clamp(38px, 7vw, 88px) clamp(18px, 4vw, 56px) 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
}

.kicker {
  margin: 0 0 18px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 104px);
  line-height: .92;
  letter-spacing: -.055em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: .98;
  letter-spacing: -.045em;
}

h3 { font-size: 24px; line-height: 1.05; letter-spacing: -.025em; }
.lead {
  max-width: 620px;
  color: #47413d;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.35;
}

.hero-actions { flex-wrap: wrap; gap: 12px; margin: 34px 0 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.primary { color: var(--white); background: var(--orange); border-color: var(--orange); }
.primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.secondary { background: transparent; }
.full { width: 100%; font-size: 17px; }

.cred-row { flex-wrap: wrap; gap: 10px; }
.cred-row span {
  padding: 9px 12px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.hero-panel {
  min-height: 560px;
  padding: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 118, 26, .95), transparent 28%),
    linear-gradient(145deg, #161618, #050505 72%);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .18);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 86px -80px auto auto;
  width: 280px;
  height: 280px;
  border: 42px solid rgba(255, 255, 255, .12);
  transform: rotate(24deg);
}

.panel-top, .panel-bottom { justify-content: space-between; gap: 16px; position: relative; z-index: 1; }
.panel-top span, .panel-bottom span { color: rgba(255, 255, 255, .64); font-size: 14px; }
.metric.big { position: relative; z-index: 1; margin: auto 0; max-width: 360px; }
.metric span { color: var(--orange); font-weight: 900; text-transform: uppercase; font-size: 12px; letter-spacing: .14em; }
.metric strong { display: block; margin-top: 14px; font-size: clamp(34px, 4vw, 56px); line-height: .95; letter-spacing: -.04em; }

.signal-list { position: relative; z-index: 1; display: grid; gap: 12px; }
.signal-list div {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
}
.signal-list p { margin: 0; color: rgba(255, 255, 255, .82); }
.signal { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, .32); flex: 0 0 auto; }
.signal.active { background: var(--orange); box-shadow: 0 0 0 6px rgba(255, 118, 26, .18); }

.strip {
  padding: 32px clamp(18px, 4vw, 56px);
  background: var(--black);
  color: var(--white);
}
.strip p {
  max-width: 1180px;
  margin: 0 auto;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: -.035em;
}

.section, .consultation {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 56px);
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, .76fr) minmax(280px, .48fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 32px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
}
.program-grid article {
  min-height: 320px;
  padding: 28px;
  background: var(--white);
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}
.program-grid span {
  display: inline-block;
  margin-bottom: 72px;
  color: var(--orange-dark);
  font-weight: 900;
}
.program-grid p, .section-head p, .proof-card p, .form-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.method {
  display: grid;
  grid-template-columns: .64fr 1fr;
  gap: 44px;
}
.steps { display: grid; gap: 14px; }
.steps div {
  display: grid;
  grid-template-columns: 48px 190px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
}
.steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--orange);
  border-radius: 50%;
  font-weight: 900;
}
.steps p { margin: 0; color: rgba(255, 255, 255, .72); }

.proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.proof-card {
  padding: 34px;
  background: var(--orange);
  border-radius: var(--radius);
}
.proof-card .kicker, .proof-card p { color: #2a1306; }
.proof-list { display: grid; gap: 18px; }
.proof-list div {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.proof-list strong { display: block; margin-bottom: 10px; font-size: 22px; }
.proof-list span { color: var(--muted); font-size: 17px; line-height: 1.45; }

.consultation {
  display: grid;
  grid-template-columns: minmax(0, .65fr) minmax(320px, .7fr);
  gap: 54px;
  align-items: start;
}
.lead-form {
  padding: clamp(20px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--black);
  border-radius: var(--radius);
  box-shadow: 12px 12px 0 var(--orange);
}
.lead-form label, fieldset { display: grid; gap: 8px; margin: 0 0 18px; }
.lead-form span, legend { font-size: 15px; font-weight: 800; color: var(--ink); }
input, textarea {
  width: 100%;
  padding: 15px 16px;
  color: var(--black);
  background: #fffdf9;
  border: 1px solid #d6ccc3;
  border-radius: var(--radius);
  font: inherit;
  font-size: 16px;
}
input:focus, textarea:focus {
  outline: 3px solid rgba(255, 118, 26, .25);
  border-color: var(--orange);
}
fieldset {
  padding: 0;
  border: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
legend { grid-column: 1 / -1; margin-bottom: 8px; }
fieldset label, .check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid #d6ccc3;
  border-radius: var(--radius);
  cursor: pointer;
}
fieldset input, .check input { width: auto; accent-color: var(--orange); }
.form-status {
  min-height: 24px;
  margin: 0 0 16px;
  font-weight: 750;
}
.form-status.success { color: #12612d; }
.form-status.error { color: #9f1d1d; }
.privacy-note { margin: 14px 0 0; color: var(--muted); text-align: center; }

.footer {
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--black);
}
.footer span:first-child { font-weight: 900; }

@media (max-width: 900px) {
  .nav { display: none; }
  .hero-grid, .section-head, .method, .proof, .consultation { grid-template-columns: 1fr; }
  .hero-panel { min-height: 460px; }
  .program-grid { grid-template-columns: 1fr; }
  .steps div { grid-template-columns: 42px 1fr; }
  .steps p { grid-column: 2; }
  fieldset { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .topbar { align-items: flex-start; }
  .brand span:last-child { max-width: 130px; line-height: 1.05; }
  .nav-cta { padding: 10px 12px; font-size: 14px; }
  h1 { font-size: 44px; }
  .hero { padding-top: 30px; }
  .hero-panel { min-height: 390px; padding: 20px; }
  .footer { align-items: flex-start; flex-direction: column; }
  .lead-form { box-shadow: 7px 7px 0 var(--orange); }
}
