:root {
  --bg: #05080b;
  --panel: #0b1218;
  --panel-2: #111b23;
  --ink: #f6f8fb;
  --muted: #a9b8c7;
  --line: rgba(93, 221, 255, 0.22);
  --cyan: #2bd9ff;
  --blue: #1f64ff;
  --green: #20d39b;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 12%, rgba(43, 217, 255, 0.18), transparent 26%),
    linear-gradient(180deg, #071018 0%, var(--bg) 34%, #020304 100%);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 34px;
  background: rgba(5, 8, 11, 0.88);
  border-bottom: 1px solid rgba(43, 217, 255, 0.16);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 20px;
}

.brand.text-only {
  max-width: 460px;
  line-height: 1.12;
}

.mark {
  width: 25px;
  height: 25px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 28px rgba(43, 217, 255, 0.42);
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

nav a:hover { color: var(--ink); }

.nav-cta {
  padding: 10px 14px;
  border-radius: 7px;
  color: #001018;
  background: var(--cyan);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 58px;
  max-width: 1180px;
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 66px 32px 78px;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 66px;
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 650px;
  color: #d1d9e2;
  font-size: 20px;
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 7px;
  font-weight: 900;
}

.button.primary {
  color: #001018;
  background: var(--cyan);
  box-shadow: 0 0 34px rgba(43, 217, 255, 0.24);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.microcopy {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.microcopy a { color: var(--cyan); }

.hero-cover {
  position: relative;
  min-height: 590px;
  border: 1px solid rgba(43, 217, 255, 0.24);
  border-radius: 8px;
  overflow: hidden;
  background: #030506;
  box-shadow: var(--shadow), 0 0 60px rgba(43, 217, 255, 0.1);
}

.hero-cover img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.88;
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.18);
  transform-origin: center bottom;
}

.cover-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(43, 217, 255, 0.26);
  border-radius: 8px;
  background: rgba(3, 6, 9, 0.72);
  backdrop-filter: blur(10px);
}

.cover-overlay span {
  display: block;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cover-overlay strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 18, 24, 0.82);
}

.proof-strip div {
  padding: 24px 30px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child { border-right: 0; }
.proof-strip strong { display: block; font-size: 24px; }
.proof-strip span { color: var(--muted); }

.founder-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 32px;
  border-bottom: 1px solid var(--line);
}

.founder-band h2 {
  font-size: 34px;
}

.founder-band p:last-child {
  margin: 0;
  color: #c5d1dd;
  font-size: 20px;
  line-height: 1.55;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 86px 32px;
}

.packages + .closing-funnel {
  padding-top: 18px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

h2 {
  margin-bottom: 0;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: 0;
}

.problem-grid,
.fit-list,
.partner-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.problem-grid p,
.fit-list div,
.partner-grid div,
.steps div,
.package-card,
.safety p,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(17, 27, 35, 0.94), rgba(8, 14, 20, 0.94));
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.problem-grid p,
.fit-list div,
.partner-grid div,
.steps div,
.safety p {
  margin: 0;
  padding: 24px;
  color: #c5d1dd;
  line-height: 1.58;
}

.autonomy-quote {
  margin: 18px 0 0;
  padding: 28px;
  border: 1px solid rgba(43, 217, 255, 0.34);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(6, 33, 42, 0.96), rgba(8, 14, 20, 0.96));
  box-shadow: 0 18px 54px rgba(43, 217, 255, 0.08);
}

.autonomy-quote p {
  margin: 0 0 10px;
  color: #f6fbff;
  font-size: 30px;
  line-height: 1.16;
  font-weight: 900;
}

.autonomy-quote cite {
  display: block;
  color: #aebbc8;
  font-style: normal;
  line-height: 1.5;
}

.operator-quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.operator-quotes figure {
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.operator-quotes blockquote {
  margin: 0 0 16px;
  color: #f1f7fb;
  font-size: 17px;
  line-height: 1.48;
  font-weight: 800;
}

.operator-quotes figcaption {
  color: #8d9baa;
  font-size: 13px;
  line-height: 1.45;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.package-card {
  padding: 28px;
}

.package-card.featured {
  border-color: rgba(43, 217, 255, 0.52);
  box-shadow: 0 22px 70px rgba(43, 217, 255, 0.1);
}

.package-top {
  min-height: 170px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}

.package-top span,
.steps span {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 30px;
  padding: 0 10px;
  border-radius: 7px;
  color: #001018;
  background: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

h3 {
  margin: 16px 0 10px;
  font-size: 24px;
  line-height: 1.15;
}

.price {
  margin-bottom: 2px;
  font-size: 42px;
  font-weight: 950;
}

.fine {
  color: var(--muted);
  font-size: 14px;
}

ul {
  margin: 0 0 22px;
  padding-left: 20px;
  color: #c5d1dd;
}

li { margin: 10px 0; }

.package-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.package-actions .button {
  min-height: 44px;
  padding: 0 14px;
  font-size: 14px;
}

.fit-list strong,
.partner-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

.fit-list p,
.partner-grid p,
.steps p,
.safety p,
details p {
  color: #c5d1dd;
}

.process,
.faq {
  max-width: none;
  background: rgba(255,255,255,0.025);
}

.process > *,
.faq > * {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.steps h3 { margin-top: 18px; }

.safety p {
  max-width: 860px;
  font-size: 20px;
}

details {
  max-width: 900px;
  margin-bottom: 12px;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  max-width: 760px;
  margin: 12px 0 0;
  line-height: 1.55;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1120px;
  margin: 0 auto 86px;
  padding: 34px;
  border: 1px solid rgba(43, 217, 255, 0.4);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(43, 217, 255, 0.14), transparent),
    var(--panel);
}

.cta-panel h2 { margin-bottom: 10px; }
.cta-panel p:last-child { color: var(--muted); margin-bottom: 0; }

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

.page {
  min-height: calc(100vh - 72px);
}

.page-hero {
  max-width: 960px;
  margin: 0 auto;
  padding: 82px 32px 40px;
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: 56px;
  line-height: 1.02;
}

.book-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 52px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 32px 56px;
}

.book-copy h1 {
  max-width: 680px;
}

.book-visuals {
  position: relative;
  min-height: 580px;
}

.book-cover {
  width: min(100%, 380px);
  border: 1px solid rgba(43, 217, 255, 0.24);
  border-radius: 8px;
  box-shadow: var(--shadow), 0 0 60px rgba(43, 217, 255, 0.16);
}

.author-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 210px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 22%;
  border: 1px solid rgba(43, 217, 255, 0.32);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  display: grid;
  grid-template-columns: 54px minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(17, 27, 35, 0.94), rgba(8, 14, 20, 0.94));
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 30px;
  border-radius: 7px;
  color: #001018;
  background: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.timeline h2 {
  font-size: 24px;
}

.timeline p {
  margin: 0;
  color: #c5d1dd;
  line-height: 1.55;
}

.checkout-layout,
.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px 86px;
}

.checkout-card,
.checkout-note,
.intake-form {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(17, 27, 35, 0.94), rgba(8, 14, 20, 0.94));
  padding: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.checkout-card h2,
.checkout-note h2 {
  margin-bottom: 18px;
  font-size: 26px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px 86px;
}

.legal-content h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: 28px;
}

.legal-content p {
  color: #c5d1dd;
  line-height: 1.65;
}

.agreement-scroll {
  max-height: 360px;
  overflow-y: auto;
  margin: 18px 0;
  padding: 20px;
  border: 1px solid rgba(43, 217, 255, 0.28);
  border-radius: 8px;
  background: rgba(4, 9, 14, 0.72);
}

.agreement-scroll h3 {
  margin-top: 0;
}

.agreement-scroll p {
  color: #c5d1dd;
  line-height: 1.58;
}

.agreement-check {
  align-items: flex-start;
}

.button.disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.46;
}

.agreement-buyer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
  margin: 20px 0 4px;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: #dce8f2;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(43, 217, 255, 0.28);
  border-radius: 7px;
  background: rgba(2, 6, 8, 0.92);
  color: var(--ink);
  font: inherit;
  padding: 12px;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 4px 0 16px;
  color: #c5d1dd;
  font-weight: 700;
  line-height: 1.45;
}

.checkbox-row input {
  width: auto;
  margin-top: 3px;
}

button {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 7px;
  background: var(--cyan);
  color: #001018;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.payment-options {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.payment-choice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.42fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(43, 217, 255, 0.22);
  border-radius: 8px;
  margin-bottom: 12px;
}

.payment-choice strong,
.payment-choice span {
  display: block;
}

.payment-choice strong {
  color: var(--ink);
  font-size: 17px;
}

.payment-choice span {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.45;
}

.radio-row {
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(43, 217, 255, 0.22);
  border-radius: 8px;
}

.radio-row input {
  width: auto;
  margin-top: 4px;
}

.radio-row strong,
.radio-row small {
  display: block;
}

.radio-row small {
  margin-top: 3px;
  color: var(--muted);
}

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

.intake-form > *,
.checkout-note > * {
  min-width: 0;
}

.intake-form .full {
  grid-column: 1 / -1;
}

.checkout-note p,
.checkout-note li {
  color: #c5d1dd;
  line-height: 1.55;
}

.checkout-note .button {
  margin-top: 12px;
}

.article-hero {
  max-width: 960px;
  margin: 0 auto;
  padding: 82px 32px 34px;
}

.article-hero h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: 58px;
  line-height: 1.02;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.article-meta span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid rgba(43, 217, 255, 0.26);
  border-radius: 7px;
  padding: 0 12px;
  color: #c5d1dd;
  background: rgba(255, 255, 255, 0.055);
  font-size: 13px;
  font-weight: 800;
}

.article-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 28px 32px 74px;
}

.article-body h2 {
  margin: 52px 0 14px;
  font-size: 32px;
}

.article-body p,
.article-body li {
  color: #c5d1dd;
  font-size: 19px;
  line-height: 1.78;
}

.article-body p {
  margin-bottom: 22px;
}

.article-body a {
  color: var(--cyan);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.article-body > p:first-of-type {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #dce8f2;
  background: linear-gradient(180deg, rgba(17, 27, 35, 0.94), rgba(8, 14, 20, 0.94));
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.advisor-hero {
  padding-bottom: 28px;
}

.advisor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px 86px;
}

.advisor-panel,
.advisor-context {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(17, 27, 35, 0.94), rgba(8, 14, 20, 0.94));
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.advisor-panel {
  overflow: hidden;
}

.advisor-messages {
  display: grid;
  gap: 12px;
  min-height: 420px;
  max-height: 620px;
  overflow-y: auto;
  padding: 22px;
}

.advisor-message {
  max-width: 86%;
  border: 1px solid rgba(43, 217, 255, 0.2);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.055);
}

.advisor-message p {
  margin: 0;
  color: #d5e0eb;
  line-height: 1.58;
  white-space: pre-line;
}

.advisor-message.user {
  justify-self: end;
  border-color: rgba(32, 211, 155, 0.36);
  background: rgba(32, 211, 155, 0.1);
}

.advisor-message.assistant {
  justify-self: start;
}

.advisor-form {
  border-top: 1px solid var(--line);
  padding: 18px;
}

.advisor-form textarea {
  min-height: 128px;
  resize: vertical;
}

.advisor-form-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 12px;
  align-items: center;
}

.advisor-form-bottom span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.advisor-context {
  padding: 24px;
}

.advisor-context h2 {
  margin-bottom: 16px;
  font-size: 26px;
}

.advisor-context li {
  color: #c5d1dd;
  line-height: 1.5;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 34px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #020304;
}

footer a { color: var(--cyan); }

.legal-line {
  margin-left: auto;
  max-width: 560px;
  text-align: right;
  color: #8793a0;
  font-size: 13px;
}

@media (max-width: 900px) {
  main,
  .page,
  .page-hero,
  .checkout-layout,
  .inquiry-layout {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
    padding: 16px 20px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 12px;
    padding-bottom: 4px;
    font-size: 12px;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  nav::-webkit-scrollbar { display: none; }

  .nav-cta {
    padding: 8px 10px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 46px 20px 56px;
    gap: 28px;
  }

  h1 {
    max-width: 350px;
    font-size: 40px;
    line-height: 1.04;
  }

  .book-copy h1 {
    max-width: 330px;
  }

  h2 { font-size: 31px; }
  .page-hero h1 {
    max-width: 330px;
    font-size: 38px;
  }
  .lead { max-width: 350px; font-size: 18px; }
  .microcopy { max-width: 330px; }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 350px;
  }

  .button { width: 100%; }

  .hero-cover {
    width: 100%;
    max-width: 350px;
    min-height: 420px;
  }

  .hero-cover img {
    min-height: 420px;
    object-position: center bottom;
    transform: scale(1.04);
  }

  .cover-overlay strong { font-size: 20px; }

  .proof-strip,
  .founder-band,
  .book-hero,
  .problem-grid,
  .agreement-buyer-grid,
  .package-grid,
  .checkout-layout,
  .inquiry-layout,
  .advisor-layout,
  .fit-list,
  .operator-quotes,
  .partner-grid,
  .timeline article,
  .intake-form,
  .steps {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .founder-band {
    padding: 42px 20px;
  }

  .book-hero {
    padding: 54px 20px 42px;
    gap: 28px;
  }

  .book-visuals {
    display: grid;
    gap: 14px;
    min-height: auto;
    max-width: 350px;
  }

  .book-cover,
  .author-photo {
    width: 100%;
    max-width: 350px;
  }

  .author-photo {
    position: static;
    aspect-ratio: 16 / 11;
  }

  .section {
    padding: 58px 20px;
  }

  .section-heading,
  .section-heading h2,
  .section-heading p {
    max-width: 330px;
  }

  .page-hero {
    padding: 54px 20px 28px;
  }

  .article-hero {
    padding: 54px 20px 24px;
  }

  .article-hero h1 {
    max-width: 350px;
    font-size: 38px;
  }

  .article-body {
    padding: 22px 20px 58px;
  }

  .article-body h2 {
    font-size: 27px;
  }

  .article-body p,
  .article-body li {
    font-size: 17px;
    line-height: 1.7;
  }

  .checkout-layout,
  .inquiry-layout,
  .advisor-layout {
    padding: 0 20px 58px;
  }

  .checkout-card,
  .checkout-note,
  .intake-form {
    width: 100%;
    max-width: calc(100vw - 40px);
    padding: 24px;
    overflow-wrap: anywhere;
  }

  .advisor-messages {
    min-height: 340px;
    max-height: 540px;
    padding: 16px;
  }

  .advisor-message {
    max-width: 100%;
  }

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

  input,
  select,
  textarea,
  button {
    max-width: 100%;
    min-width: 0;
  }

  .payment-choice {
    grid-template-columns: 1fr;
  }

  .checkout-note h2,
  .checkout-note p,
  .checkout-note li {
    max-width: 300px;
  }

  .checkout-note h2 {
    font-size: 24px;
    line-height: 1.16;
  }

  .package-top { min-height: auto; }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
    margin: 0 20px 58px;
    padding: 24px;
  }

  footer { flex-direction: column; }

  .legal-line {
    margin-left: 0;
    text-align: left;
  }
}
