:root {
  --ink: #111217;
  --muted: #656975;
  --paper: #f4f4f5;
  --white: #fff;
  --line: #d8d9dd;
  --red: #b31217;
  --red-dark: #8f0d12;
  --graphite: #1a1b21;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a { color: inherit; }
button, input { font: inherit; }

.meeting-header {
  display: flex;
  min-height: 76px;
  padding: 0 max(28px, calc((100vw - 1380px) / 2));
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.meeting-logo img {
  display: block;
  width: 148px;
  height: 52px;
  object-fit: contain;
}

.meeting-header__right {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 800;
}

.meeting-header__right a {
  text-decoration: none;
}

.preview-badge {
  padding: 7px 10px;
  border: 1px solid #e0b5b7;
  color: var(--red);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.meeting-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(410px, .85fr);
  gap: 72px;
  width: min(1380px, calc(100% - 56px));
  min-height: calc(100vh - 134px);
  margin: 0 auto;
  padding: 54px 0 44px;
  align-items: center;
}

.meeting-copy {
  min-width: 0;
}

.meeting-kicker {
  margin: 0 0 19px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.meeting-copy h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 5.4vw, 82px);
  line-height: .98;
  letter-spacing: -.046em;
  text-wrap: balance;
}

.meeting-lead {
  max-width: 830px;
  margin: 26px 0 0;
  color: #525661;
  font-size: 19px;
  line-height: 1.52;
}

.meeting-result {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 24px;
  max-width: 900px;
  margin-top: 32px;
  padding: 20px 0;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.meeting-result > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.meeting-result > strong {
  font-size: 20px;
  line-height: 1.35;
}

.meeting-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 900px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.meeting-points li {
  display: grid;
  min-height: 122px;
  padding: 17px;
  align-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.meeting-points b {
  color: var(--red);
  font-size: 11px;
  letter-spacing: .1em;
}

.meeting-points span {
  color: #353842;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.meeting-experts {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 24px;
}

.meeting-experts article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 13px;
  min-width: 245px;
  align-items: center;
}

.meeting-experts img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: cover;
  object-position: center 18%;
  filter: none;
}

.meeting-experts strong,
.meeting-experts span {
  display: block;
}

.meeting-experts strong {
  font-size: 14px;
}

.meeting-experts span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.meeting-checkout {
  position: relative;
  min-width: 0;
  padding: 30px;
  border-top: 5px solid var(--red);
  background: var(--graphite);
  color: var(--white);
  box-shadow: 22px 22px 0 var(--white);
}

.meeting-checkout__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid #383941;
  color: #b8bac2;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.meeting-checkout__top span:last-child {
  color: #ef3a40;
}

.meeting-date {
  padding: 23px 0 20px;
  border-bottom: 1px solid #383941;
}

.meeting-date > span,
.meeting-date > strong,
.meeting-date > small {
  display: block;
}

.meeting-date > span {
  margin-bottom: 7px;
  color: #ef3a40;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.meeting-date > strong {
  font-size: 21px;
}

.meeting-date > small {
  margin-top: 7px;
  color: #aeb0b9;
  font-size: 12px;
}

.meeting-price {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  gap: 3px 20px;
  padding: 20px 0;
  align-items: end;
}

.meeting-price p {
  grid-row: 1 / 3;
  margin: 0;
}

.meeting-price p > * {
  display: block;
}

.meeting-price s {
  color: #8d9099;
  font-size: 20px;
}

.meeting-price p span {
  margin-top: 5px;
  color: #aeb0b9;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.meeting-price > strong {
  color: #fff;
  font-size: 48px;
  line-height: .95;
}

.meeting-price > small {
  color: #ef3a40;
  font-size: 11px;
  font-weight: 800;
  text-align: right;
}

.meeting-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.meeting-form label {
  display: grid;
  gap: 6px;
}

.meeting-form label:first-child {
  grid-column: 1 / -1;
}

.meeting-form label > span {
  color: #c7c8ce;
  font-size: 11px;
  font-weight: 700;
}

.meeting-form input {
  width: 100%;
  min-height: 47px;
  padding: 0 13px;
  border: 1px solid #43454e;
  border-radius: 0;
  outline: none;
  background: #222329;
  color: #fff;
}

.meeting-form input::placeholder {
  color: #7f828b;
}

.meeting-form input:focus {
  border-color: #ef3a40;
}

.meeting-form .meeting-consent {
  display: flex;
  grid-column: 1 / -1;
  gap: 10px;
  align-items: flex-start;
  margin: 2px 0;
}

.meeting-consent input {
  flex: 0 0 auto;
  width: 17px;
  min-height: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--red);
}

.meeting-consent span {
  color: #aeb0b9 !important;
  line-height: 1.4;
}

.meeting-consent a {
  color: #fff;
}

.meeting-form button {
  display: flex;
  grid-column: 1 / -1;
  min-height: 54px;
  padding: 0 17px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--red);
  border-radius: 0;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.meeting-form button:hover,
.meeting-form button:focus-visible {
  border-color: var(--red-dark);
  background: var(--red-dark);
}

.meeting-form button[disabled] {
  cursor: wait;
  opacity: .68;
}

.meeting-form button > span {
  white-space: nowrap;
}

.meeting-form__status {
  grid-column: 1 / -1;
  min-height: 18px;
  margin: 0;
  color: #ef9699;
  font-size: 12px;
}

.meeting-form__status[data-tone="success"] {
  color: #8bd0a9;
}

.meeting-checkout__note {
  margin: 2px 0 0;
  padding-top: 17px;
  border-top: 1px solid #383941;
  color: #aeb0b9;
  font-size: 12px;
  line-height: 1.45;
}

.meeting-footer {
  display: flex;
  min-height: 58px;
  padding: 0 max(28px, calc((100vw - 1380px) / 2));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: #757985;
  font-size: 11px;
}

.meeting-modal[hidden] { display: none; }
.meeting-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  padding: 24px;
  place-items: center;
  background: rgba(10, 11, 14, .72);
}

.meeting-modal__dialog {
  position: relative;
  width: min(560px, 100%);
  padding: 38px;
  border-top: 5px solid var(--red);
  background: #fff;
  color: var(--ink);
  box-shadow: 18px 18px 0 rgba(255, 255, 255, .22);
}

.meeting-modal__dialog > button:first-child {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 26px;
  cursor: pointer;
}

.meeting-modal__dialog > p {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.meeting-modal__dialog h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.08;
}

.meeting-modal__dialog > span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.meeting-modal__action {
  min-height: 48px;
  margin-top: 26px;
  padding: 0 18px;
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .meeting-layout {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 46px;
  }

  .meeting-copy h1 {
    max-width: 980px;
  }

  .meeting-checkout {
    width: min(680px, calc(100% - 22px));
    margin: 0 auto 22px;
  }
}

@media (max-width: 700px) {
  .meeting-header {
    min-height: 66px;
    padding: 0 16px;
  }

  .meeting-logo img {
    width: 116px;
    height: 44px;
  }

  .meeting-header__right a {
    display: none;
  }

  .preview-badge {
    padding: 5px 7px;
    font-size: 8px;
  }

  .meeting-layout {
    width: calc(100% - 32px);
    min-height: 0;
    padding: 36px 0 28px;
  }

  .meeting-kicker {
    max-width: 280px;
    font-size: 10px;
    line-height: 1.5;
  }

  .meeting-copy h1 {
    font-size: clamp(38px, 11.5vw, 54px);
    overflow-wrap: break-word;
  }

  .meeting-lead {
    margin-top: 22px;
    font-size: 16px;
  }

  .meeting-result {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 25px;
  }

  .meeting-result > strong {
    font-size: 18px;
  }

  .meeting-points {
    grid-template-columns: 1fr;
  }

  .meeting-points li {
    grid-template-columns: 34px 1fr;
    min-height: 0;
    gap: 8px;
    align-items: start;
  }

  .meeting-experts {
    display: grid;
    gap: 14px;
  }

  .meeting-checkout {
    width: calc(100% - 12px);
    padding: 24px 20px;
    box-shadow: 12px 12px 0 #fff;
  }

  .meeting-price > strong {
    font-size: 42px;
  }

  .meeting-form {
    grid-template-columns: 1fr;
  }

  .meeting-form label,
  .meeting-form label:first-child,
  .meeting-form .meeting-consent,
  .meeting-form button,
  .meeting-form__status {
    grid-column: 1;
  }

  .meeting-footer {
    min-height: 72px;
    padding: 16px;
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .meeting-modal__dialog {
    padding: 34px 22px 26px;
  }

  .meeting-modal__dialog h2 {
    font-size: 27px;
  }
}
