:root {
  --bg: #f6f4ef;
  --surface: rgba(255, 252, 247, 0.9);
  --surface-strong: #fffdf9;
  --ink: #1f2824;
  --muted: #5d6b65;
  --line: rgba(31, 40, 36, 0.1);
  --line-strong: rgba(31, 40, 36, 0.18);
  --sage: #5e7c72;
  --sage-deep: #34544b;
  --sand: #e8dfd0;
  --amber: #bf7d3d;
  --amber-deep: #905922;
  --shadow: 0 24px 60px rgba(55, 48, 33, 0.1);
  --shadow-soft: 0 14px 32px rgba(55, 48, 33, 0.08);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --frame: 1480px;
}

.portal-header__mobile-actions {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.portal-header__mobile-book {
  display: none;
}

@media (max-width: 779px) {
  .portal-header__mobile-actions {
    display: flex !important;
  }

  .portal-header {
    border-radius: 24px !important;
  }

  .portal-header__top {
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px !important;
  }

  .portal-brand {
    gap: 8px !important;
  }

  .portal-brand__logo {
    width: 42px !important;
    height: 42px !important;
  }

  .portal-brand__mark {
    font-size: 1.24rem !important;
    line-height: 1 !important;
  }

  .portal-brand__sub {
    display: none !important;
  }

  .portal-header__mobile-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid rgba(25, 59, 106, 0.16);
    border-radius: 999px;
    background: #193b6a;
    color: #fff;
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 10px 18px rgba(25, 59, 106, 0.16);
  }

  .portal-menu-toggle {
    width: 40px !important;
    height: 40px !important;
    border-radius: 999px !important;
    background: #fff !important;
  }

  .portal-header__nav-wrap {
    padding: 8px 14px 16px !important;
    background: rgba(255, 255, 255, 0.98) !important;
  }

  .portal-header.is-open .portal-header__nav-wrap {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
  }

  .portal-header__cta {
    order: 1;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 0 0 10px !important;
    border-bottom: 1px solid rgba(17, 31, 53, 0.08);
  }

  .portal-header__button {
    min-height: 46px !important;
    border-radius: 16px !important;
    font-size: 0.94rem !important;
  }

  .portal-header__button--secondary {
    background: rgba(25, 59, 106, 0.08) !important;
    color: #193b6a !important;
  }

  .portal-header__button--primary {
    background: #193b6a !important;
    color: #fff !important;
    border-color: rgba(25, 59, 106, 0.16) !important;
  }

  .portal-main-nav {
    order: 2;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }

  .portal-main-nav a {
    padding: 13px 2px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(17, 31, 53, 0.08) !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #223349 !important;
    font-size: 0.95rem !important;
    font-weight: 760 !important;
    line-height: 1.2 !important;
    text-align: left !important;
  }

  .portal-main-nav a:nth-child(2) { order: 1; }
  .portal-main-nav a:nth-child(3) { order: 2; }
  .portal-main-nav a:nth-child(4) { order: 3; }
  .portal-main-nav a:nth-child(7) { order: 4; }
  .portal-main-nav a:nth-child(1) { order: 5; }
  .portal-main-nav a:nth-child(5) { order: 6; }
  .portal-main-nav a:nth-child(6) { order: 7; }
}

@media (min-width: 1080px) {
  :root {
    --frame: 1480px;
  }

  .site-shell,
  .page-shell,
  .site-footer,
  .site-footer__inner {
    width: min(100% - 40px, var(--frame)) !important;
    max-width: var(--frame) !important;
    margin-inline: auto;
  }

  .portal-header {
    border-radius: 38px;
  }

  .portal-header__top {
    padding: 30px 36px 24px;
  }

  .portal-header__nav-wrap {
    gap: 24px;
    padding: 0 36px;
  }

  .portal-main-nav {
    flex-wrap: nowrap;
    min-width: 0;
  }

  .portal-main-nav a {
    white-space: nowrap;
    padding: 17px 11px;
    font-size: 0.92rem;
    line-height: 1.1;
  }

  .portal-header__cta {
    gap: 12px;
    padding-right: 0;
  }

  .portal-header__button {
    min-height: 46px;
    padding: 0 18px;
    font-size: 0.89rem;
    white-space: nowrap;
  }

  .portal-header__nav-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
  }

  .portal-main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
  }

  .site-footer__inner {
    width: min(100% - 40px, var(--frame)) !important;
    max-width: var(--frame) !important;
    margin-inline: auto;
  }
}

* {
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(94, 124, 114, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(191, 125, 61, 0.14), transparent 24%),
    linear-gradient(180deg, #fbfaf7 0%, var(--bg) 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a,
button {
  font: inherit;
}

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

.page-shell {
  width: min(100% - 40px, var(--frame));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.site-shell {
  width: min(100% - 40px, var(--frame));
  margin: 0 auto;
}

.site-footer {
  width: min(100% - 40px, var(--frame));
  margin: 0 auto;
  padding: 0 0 34px;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(52, 84, 75, 0.08);
  box-shadow: var(--shadow-soft);
}

.site-footer__brand-link {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--sage-deep);
  font-size: 1.05rem;
  font-weight: 600;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.site-footer__brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.site-footer__nav a {
  color: #5f6870;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer__icon-link,
.site-footer__email-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(52, 84, 75, 0.1);
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.site-footer__icon-link {
  width: 44px;
  padding: 0;
}

.site-footer__icon-link svg,
.site-footer__email-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.site-footer__email-link {
  gap: 10px;
}

.site-footer__copyright {
  margin: 12px 4px 0;
  color: var(--muted);
  font-family: "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  font-size: 0.88rem;
}

.portal-header {
  background: rgba(255, 252, 248, 0.96);
  border: 1px solid rgba(17, 31, 53, 0.08);
  border-radius: 34px;
  box-shadow: 0 24px 40px rgba(22, 27, 33, 0.08);
  overflow: hidden;
}

.portal-header__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: center;
  padding: 28px 32px 22px;
}

.portal-brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.portal-brand__logo {
  width: 84px;
  height: 84px;
  object-fit: contain;
  flex: 0 0 auto;
}

.portal-brand__text {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  margin-left: -8px;
}

.portal-brand__mark {
  color: #16365f;
  font-size: 2rem;
  font-weight: 600;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.05em;
  line-height: 1;
}

.portal-brand__sub {
  color: #717273;
  font-size: 0.82rem;
  line-height: 1.4;
}

.portal-main-nav {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 auto;
  width: 100%;
  gap: 0;
  padding: 0 28px;
  border-top: 1px solid rgba(17, 31, 53, 0.08);
  border-bottom: 1px solid rgba(17, 31, 53, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.portal-main-nav a {
  text-decoration: none;
  padding: 17px 14px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #243243;
}

.portal-header__nav-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.portal-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-right: 0;
}

.portal-header__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.portal-header__button--secondary {
  background: rgba(25, 59, 106, 0.08);
  color: #193b6a;
  border: 1px solid rgba(25, 59, 106, 0.1);
}

.portal-header__button--primary {
  background: linear-gradient(180deg, #e1a354, #b98312);
  color: #fff;
  box-shadow: 0 12px 24px rgba(185, 121, 47, 0.24);
}

@media (min-width: 1080px) {
  .site-shell,
  .page-shell,
  .site-footer {
    width: min(100% - 40px, var(--frame));
  }

  .portal-header__nav-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
  }

  .portal-main-nav {
    flex-wrap: nowrap;
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
  }

  .portal-main-nav a {
    white-space: nowrap;
    padding: 17px 11px;
    font-size: 0.91rem;
  }

  .portal-header__cta {
    gap: 12px;
    padding-right: 0;
  }

  .portal-header__button {
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.9rem;
  }
}

.portal-menu-toggle {
  display: none;
}

.section {
  margin-top: 22px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 38px rgba(55, 48, 33, 0.08);
}

.hero {
  display: grid;
  gap: 24px;
}

.personalization-section {
  padding: 4px 12px;
}

.precheck-section {
  padding: 18px;
}

.precheck-card {
  padding: 40px 40px 36px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(191, 125, 61, 0.18);
  background:
    radial-gradient(circle at top right, rgba(191, 125, 61, 0.11), transparent 26%),
    radial-gradient(circle at 18% 20%, rgba(29, 71, 119, 0.04), transparent 22%),
    linear-gradient(135deg, #fffbf5 0%, #fff8f0 50%, #f9f3ea 100%);
  box-shadow: 0 26px 48px rgba(74, 53, 31, 0.08);
}

.precheck-card h1,
.precheck-card h2 {
  max-width: 18ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.precheck-copy {
  max-width: 54ch;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.precheck-trust {
  margin: 16px 0 0;
  color: #193b6a;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
}

.precheck-trust span[aria-hidden="true"] {
  margin: 0 8px;
  color: rgba(191, 125, 61, 0.9);
}

.precheck-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  margin-top: 24px;
}

.precheck-actions .button {
  min-width: 244px;
}

.precheck-link {
  color: #193b6a;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.precheck-link:hover,
.precheck-link:focus-visible {
  color: #0f2849;
}

.precheck-link[hidden] {
  display: none;
}

.personalization-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 24px;
  row-gap: 4px;
  padding: 18px 22px;
  border-radius: 20px;
  border: 1px solid rgba(191, 125, 61, 0.1);
  background:
    radial-gradient(circle at top right, rgba(191, 125, 61, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 247, 240, 0.96));
  box-shadow: 0 10px 20px rgba(74, 53, 31, 0.04);
}

.hero-copy,
.hero-card,
.info-card,
.session-card,
.pricing-card {
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(191, 125, 61, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 244, 0.98));
}

.hero-card {
  padding: 28px;
  align-self: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--sage-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber), var(--sage));
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  text-wrap: balance;
}

h1,
h2,
.brand,
.price {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.9rem, 8vw, 5.2rem);
  letter-spacing: -0.05em;
}

h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 58ch;
  margin-top: 18px;
  font-size: 1.06rem;
}

.result-chip {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(94, 124, 114, 0.1);
  color: var(--sage-deep);
  font-size: 0.94rem;
  font-weight: 700;
}

.result-chip strong {
  color: var(--ink);
}

.personalization-label {
  grid-column: 1;
  margin-top: 0;
  color: var(--sage-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.personalization-value {
  grid-column: 1;
  max-width: none;
  margin-top: 2px;
  font-size: clamp(1.55rem, 3vw, 2rem);
  color: var(--amber-deep);
}

.personalization-mix {
  grid-column: 2;
  margin-top: 0;
  align-self: end;
  color: var(--amber);
  font-size: 0.86rem;
  font-weight: 700;
}

.personalization-copy {
  grid-column: 2;
  max-width: 46ch;
  margin-top: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

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

.button {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  min-height: 52px;
  padding: 14px 22px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: #fffdfa;
  background: linear-gradient(135deg, #935321, #6b3510);
  box-shadow: 0 18px 34px rgba(111, 57, 16, 0.22);
}

.button-secondary {
  color: #173256;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 241, 232, 0.84));
  border-color: rgba(23, 50, 86, 0.12);
  box-shadow: 0 14px 28px rgba(22, 30, 42, 0.06);
}

.button-ghost {
  color: var(--ink);
  background: #f4ede2;
  border-color: rgba(31, 40, 36, 0.08);
}

.hero-actions .button-primary,
.site-header .button-secondary {
  min-width: 220px;
}

.card-label,
.plan-name,
.booking-plan-label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-label,
.booking-plan-label {
  color: var(--sage-deep);
}

.feature-stack,
.plan-points {
  margin: 16px 0 0;
  padding-left: 18px;
}

.feature-stack li,
.plan-points li {
  margin-bottom: 10px;
  color: var(--ink);
  line-height: 1.55;
}

.plan-sections {
  display: grid;
  gap: 14px;
}

.plan-section {
  padding-top: 14px;
  border-top: 1px solid rgba(31, 40, 36, 0.08);
}

.plan-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.plan-section h4 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.plan-section .plan-points {
  margin-top: 10px;
}

.plan-section .plan-points li:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 60ch;
  margin-bottom: 18px;
}

.section-sub {
  margin-top: 4px;
  color: #6b5c45;
  font-size: 0.9rem;
  line-height: 1.55;
}

.section-heading--with-action {
  max-width: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.section-heading__copy {
  max-width: 60ch;
}

.section-actions {
  margin-top: 16px;
}

.section-heading h2 {
  margin-bottom: 8px;
  max-width: 24ch;
  line-height: 1.04;
  text-wrap: pretty;
}

.session-report-cta {
  flex: 0 0 auto;
  align-self: flex-end;
  min-width: auto;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #8b5a2b;
  font-family: "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  transition: color 160ms ease, transform 160ms ease;
}

.session-report-cta:hover {
  transform: translateY(-1px);
  color: #6f3910;
}

.problem-grid,
.session-grid,
.pricing-grid {
  display: grid;
  gap: 20px;
}

.pricing-stack {
  position: relative;
  display: grid;
  gap: 0;
  padding: 0 10px 10px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(191, 125, 61, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.92), rgba(249, 246, 240, 0.92));
  border: 1px solid rgba(191, 125, 61, 0.12);
  box-shadow: 0 24px 48px rgba(55, 48, 33, 0.08);
}

.consult-offer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: start;
  padding: 26px;
  border: 1px solid rgba(122, 79, 42, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 8%, rgba(191, 125, 61, 0.08), transparent 22%),
    radial-gradient(circle at 12% 100%, rgba(25, 59, 106, 0.04), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(249, 244, 236, 0.96));
  box-shadow: 0 20px 42px rgba(55, 48, 33, 0.07);
}

.consult-offer__included,
.consult-offer__booking {
  min-width: 0;
}

.consult-offer__booking {
  display: flex;
  align-items: stretch;
  padding-top: 48px;
}

.pricing-table-shell {
  display: grid;
  gap: 28px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.included-list-shell {
  overflow: hidden;
  border: 1px solid rgba(122, 79, 42, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 12px 28px rgba(60, 45, 29, 0.04);
}

.compare-table--included {
  background: transparent;
}

.compare-table--included tbody tr {
  border-bottom: 1px solid #efe5d7;
}

.compare-table--included tbody tr:last-child {
  border-bottom: 0;
}

.compare-table--included td {
  padding: 18px 22px;
}

.compare-table thead tr {
  border-bottom: 2px solid #e8ddd0;
}

.compare-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  color: var(--ink);
}

.compare-table th.col-feature {
  width: 50%;
  color: #8a7560;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-table th.col-plan {
  width: 25%;
  text-align: center;
}

.plan-price {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  color: var(--ink);
  line-height: 1;
}

.plan-price sup {
  font-size: 0.95rem;
  font-family: "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  font-weight: 700;
  vertical-align: super;
}

.plan-price span {
  font-size: 0.82rem;
  font-family: "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  color: #8a7560;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plan-duration {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: #8a7560;
}

.col-30,
.col-30-header {
  background: #fdf6ee;
}

.col-30-header {
  border-radius: 14px 14px 0 0;
}

.badge {
  display: inline-block;
  margin-bottom: 6px;
  padding: 4px 8px;
  border-radius: 4px;
  background: #7a4f2a;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compare-table tbody tr {
  border-bottom: 1px solid #f0e8dc;
}

.compare-table tbody tr:last-child {
  border-bottom: 0;
}

.compare-table td {
  padding: 14px 16px;
  vertical-align: middle;
}

.compare-table td.col-15,
.compare-table td.col-30 {
  text-align: center;
}

.feature-name {
  display: block;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
}

.feature-desc {
  display: block;
  margin-top: 3px;
  color: #8a7560;
  font-size: 0.78rem;
  line-height: 1.45;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
}

.check.yes {
  background: #e8f5e9;
  color: #2e7d32;
}

.check.yes-30 {
  background: #7a4f2a;
  color: #fff;
}

.check.no {
  background: #f0ece8;
  color: #c0ab96;
}

.extra-only {
  display: inline-block;
  padding: 3px 7px;
  border-radius: 4px;
  background: #f5ede3;
  color: #7a4f2a;
  font-size: 0.68rem;
  font-weight: 700;
}

.cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cta-row--single {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.cta-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(122, 79, 42, 0.14);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 244, 0.84));
  box-shadow: 0 18px 36px rgba(60, 45, 29, 0.06);
}

.cta-card.featured {
  border-color: rgba(25, 59, 106, 0.16);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #1e436f 0%, #153255 100%);
  box-shadow: 0 26px 52px rgba(21, 50, 85, 0.22);
}

.consult-offer__booking .cta-card {
  gap: 14px;
  position: sticky;
  top: 24px;
  width: 100%;
  min-height: 100%;
  justify-content: center;
  padding: 24px 22px 20px;
  border-radius: 22px;
}

.card-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.card-label {
  color: rgba(255, 247, 238, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.card-price {
  color: #fffaf2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 4.4vw, 3.8rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.05em;
}

.card-caption {
  color: rgba(255, 247, 238, 0.78);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.5;
}

.card-desc {
  font-size: 0.95rem;
  line-height: 1.68;
  color: #6b5c45;
}

.consult-offer__booking .button-primary {
  min-height: 58px;
  background: #f3d5b2 !important;
  color: #111111 !important;
  border: 1px solid rgba(17, 17, 17, 0.08) !important;
  box-shadow: 0 18px 30px rgba(8, 21, 38, 0.18);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: none !important;
  opacity: 1 !important;
}

.consult-offer__booking .button-primary:hover {
  background: #efcca3 !important;
  box-shadow: 0 22px 34px rgba(8, 21, 38, 0.22);
}

.btn {
  width: 100%;
}

.btn-sub {
  margin-top: 2px;
  font-size: 0.8rem;
  line-height: 1.55;
  color: #7f6b58;
  text-align: center;
}

.cta-trigger[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.pricing-grid {
  position: relative;
  z-index: 2;
}

.pricing-mobile-plans {
  display: none;
}

.pricing-mobile-plan {
  display: grid;
  gap: 10px;
}

.pricing-mobile-plan__card,
.pricing-mobile-plan__details,
.pricing-mobile-plan__cta {
  border-radius: var(--radius-md);
}

.consult-capture-card {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(122, 79, 42, 0.14);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 243, 0.9));
  box-shadow: 0 20px 42px rgba(60, 45, 29, 0.06);
}

.consult-capture-title {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.consult-capture-copy {
  margin: 10px 0 0;
  color: #6b5c45;
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 62ch;
}

.consult-capture-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.consult-capture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

.consult-field-row label {
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 700;
}

.consult-field-row input {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid #ddcfbe;
  border-radius: 14px;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.consult-field-row input:focus {
  outline: none;
  border-color: rgba(122, 79, 42, 0.45);
  box-shadow: 0 0 0 4px rgba(122, 79, 42, 0.08);
}

.consult-capture-meta {
  margin: 0;
  color: #8a7560;
  font-size: 0.84rem;
  line-height: 1.6;
}

.consult-capture-validation {
  min-height: 22px;
  margin: -2px 0 0;
  color: #a4422f;
  font-size: 0.9rem;
  font-weight: 700;
}

.consult-capture-submit {
  width: 100%;
}

@media (max-width: 720px) {
  .consult-capture-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-mobile-plan__details {
  padding: 22px 18px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.pricing-mobile-plan__details--featured {
  border-color: rgba(191, 125, 61, 0.18);
  background:
    radial-gradient(circle at top right, rgba(191, 125, 61, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.99), rgba(255, 247, 236, 0.98));
}

.problem-copy {
  display: grid;
  gap: 18px;
}

.problem-mix-card {
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at top right, rgba(191, 125, 61, 0.18), transparent 30%),
    linear-gradient(160deg, #243832 0%, #1c2d28 52%, #16231f 100%);
  border: 1px solid rgba(191, 125, 61, 0.26);
  box-shadow: 0 18px 34px rgba(22, 35, 31, 0.24);
}

.problem-mix-card h3 {
  margin: 4px 0 0;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
  color: #f7f1e7;
}

.problem-mix-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.problem-mix-row__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.problem-mix-row__head strong {
  font-size: 0.98rem;
  line-height: 1.25;
  color: #f6efe3;
}

.problem-mix-row__head span {
  color: rgba(246, 239, 227, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
}

.problem-mix-row__bar {
  height: 8px;
  margin-top: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.problem-mix-row__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #d5a25b, #56a08e);
}

.problem-mix-card .eyebrow {
  background: rgba(213, 162, 91, 0.14);
  color: #f0c889;
}

.info-card,
.session-card,
.pricing-card {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 247, 240, 0.96));
  border-color: rgba(191, 125, 61, 0.1);
  box-shadow: 0 18px 34px rgba(74, 53, 31, 0.05);
}

.info-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.info-card__number {
  color: rgba(143, 82, 32, 0.92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.session-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(94, 124, 114, 0.1);
  color: var(--sage-deep);
  font-weight: 800;
}

.pricing-card {
  position: relative;
  display: grid;
  gap: 14px;
  align-content: start;
}

.pricing-card-basic {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 247, 0.98));
  border-color: rgba(52, 84, 75, 0.12);
}

.plan-kicker {
  color: var(--sage-deep);
  font-size: 0.92rem;
  font-weight: 700;
}

.pricing-card-featured {
  background:
    radial-gradient(circle at top right, rgba(191, 125, 61, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(255, 247, 238, 0.98));
  border: 1px solid rgba(191, 125, 61, 0.5);
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 24px 46px rgba(144, 89, 34, 0.15),
    0 0 0 1px rgba(191, 125, 61, 0.18);
}

.featured-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(191, 125, 61, 0.12);
  color: #8a620d;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.price-currency {
  font-size: 0.95rem;
  font-family: "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-summary {
  color: var(--ink);
  font-weight: 700;
  font-size: 1.02rem;
}

.comparison-board {
  position: relative;
  z-index: 1;
  margin-top: -2px;
  padding: 14px 10px 0;
  border-radius: 0 0 28px 28px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.pricing-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: -2px;
  padding: 0 10px 8px;
}

.pricing-actions__column {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 16px 18px 14px;
  border-top: 1px solid rgba(31, 40, 36, 0.08);
  background: rgba(255, 255, 255, 0.46);
}

.pricing-actions__column--basic {
  padding-top: 14px;
}

.pricing-actions__column--featured {
  background:
    radial-gradient(circle at top right, rgba(191, 125, 61, 0.08), transparent 34%),
    rgba(255, 250, 244, 0.7);
}

.pricing-actions__button {
  width: 100%;
}

.pricing-actions__pdf {
  margin: 0;
  justify-self: start;
}

.pricing-actions__note {
  margin: 0;
}

.comparison-board__plans {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.comparison-board__plan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(240, 245, 243, 0.98);
  border: 1px solid rgba(52, 84, 75, 0.1);
  color: var(--sage-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-board__plan--featured {
  background: linear-gradient(135deg, rgba(191, 125, 61, 0.14), rgba(255, 245, 231, 0.98));
  border-color: rgba(191, 125, 61, 0.22);
  color: var(--amber-deep);
}

.comparison-board__body {
  display: grid;
  gap: 10px;
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
}

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

.comparison-row__label,
.comparison-row__value {
  min-width: 0;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 40, 36, 0.06);
}

.comparison-row__value--featured {
  background:
    radial-gradient(circle at top right, rgba(191, 125, 61, 0.08), transparent 32%),
    rgba(255, 251, 246, 0.96);
  border-color: rgba(191, 125, 61, 0.16);
}

.comparison-row__label h3 {
  margin: 0;
  font-size: 1.02rem;
}

.comparison-row__label p {
  margin-top: 6px;
  font-size: 0.94rem;
  line-height: 1.65;
}

.comparison-row__value strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.5;
}

.comparison-row__value ul {
  margin: 0;
  padding-left: 18px;
}

.comparison-row__value li {
  margin-bottom: 8px;
  color: var(--ink);
  line-height: 1.5;
}

.comparison-row__value li:last-child {
  margin-bottom: 0;
}

.comparison-row__footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(31, 40, 36, 0.08);
}

.comparison-row__footer--stack {
  display: grid;
  gap: 14px;
}

.comparison-row__extra {
  margin: 0;
  padding-left: 18px;
}

.comparison-row__extra li {
  margin-bottom: 8px;
  color: var(--ink);
  line-height: 1.5;
}

.comparison-row__extra li:last-child {
  margin-bottom: 0;
}

.comparison-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: max-content;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.comparison-pill--muted {
  background: rgba(31, 40, 36, 0.05);
  color: rgba(31, 40, 36, 0.56);
}

.comparison-pill--featured {
  background: rgba(191, 125, 61, 0.14);
  color: #8a620d;
}

.plan-microcopy {
  color: var(--amber-deep);
  font-size: 0.88rem;
  font-weight: 800;
}

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

.faq-item {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-strong);
}

.faq-item summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 10px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.info-card h3,
.session-card p {
  max-width: none;
}

.info-card h3 {
  font-size: 1.1rem;
  line-height: 1.25;
  margin-top: 0;
  letter-spacing: -0.02em;
}

.report-modal[hidden] {
  display: none;
}

.report-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 20px;
}

.report-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 22, 0.58);
  backdrop-filter: blur(6px);
}

.report-dialog {
  position: relative;
  width: min(100%, 920px);
  max-height: min(90vh, 980px);
  overflow: auto;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(191, 125, 61, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(252, 249, 244, 0.99));
  box-shadow: 0 30px 80px rgba(18, 23, 21, 0.24);
}

.report-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 40, 36, 0.08);
  color: transparent;
  font-size: 0;
  cursor: pointer;
}

.report-close::before {
  content: "\00D7";
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
}

.report-header {
  margin-top: 8px;
  margin-bottom: 22px;
}

.report-body {
  display: grid;
  gap: 18px;
}

.report-section {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
}

.report-section h3,
.report-column h4 {
  margin-bottom: 10px;
}

.report-summary-grid,
.report-columns,
.priority-grid {
  display: grid;
  gap: 14px;
}

.report-summary-card,
.report-column,
.timeline-item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(246, 243, 236, 0.9);
  border: 1px solid rgba(31, 40, 36, 0.08);
}

.report-summary-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--sage-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-summary-card strong,
.timeline-item strong,
.priority-pill {
  color: var(--ink);
}

.report-summary-card-wide {
  grid-column: 1 / -1;
}

.report-list {
  margin: 12px 0 0;
  padding-left: 18px;
}

.report-list li {
  margin-bottom: 8px;
  color: var(--ink);
  line-height: 1.55;
}

.priority-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 12px;
}

.priority-pill {
  padding: 14px 16px;
  border-radius: 999px;
  background: rgba(94, 124, 114, 0.12);
  text-align: center;
  font-weight: 800;
}

.timeline-list {
  display: grid;
  gap: 12px;
}

.timeline-item p {
  margin-top: 6px;
}

.report-section-highlight {
  background:
    radial-gradient(circle at top right, rgba(94, 124, 114, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(247, 250, 248, 0.98), rgba(251, 249, 244, 0.98));
}

.report-disclaimer {
  margin-top: 14px;
  font-size: 0.92rem;
}

.report-example-note {
  margin: 0 4px 4px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.7;
}

@media (min-width: 780px) {
  .hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: stretch;
  }

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

  .problem-grid {
    grid-template-columns: minmax(0, 1.16fr) minmax(240px, 0.68fr);
    align-items: start;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

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

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

@media (max-width: 779px) {
  .portal-header {
    border-radius: 24px;
  }

  .portal-header__top {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    padding: 18px 14px 14px;
  }

  .portal-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(17, 31, 53, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 20px rgba(22, 27, 33, 0.08);
    cursor: pointer;
  }

  .portal-menu-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 2px 0;
    border-radius: 999px;
    background: #193b6a;
  }

  .portal-brand {
    min-width: 0;
    gap: 8px;
  }

  .portal-brand__logo {
    width: 52px;
    height: 52px;
  }

  .portal-brand__text {
    margin-left: 0;
    min-width: 0;
  }

  .portal-brand__mark {
    font-size: 1.4rem;
  }

  .portal-brand__sub {
    display: none;
  }

  .portal-header__nav-wrap {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 14px;
    border-top: 1px solid rgba(17, 31, 53, 0.08);
    border-bottom: 0;
    background: rgba(255, 255, 255, 0.9);
  }

  .portal-header.is-open .portal-header__nav-wrap {
    display: flex;
  }

  .portal-main-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .portal-main-nav a {
    min-width: 0;
    padding: 10px 8px;
    border: 1px solid rgba(17, 31, 53, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    text-align: center;
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .portal-header__cta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 0;
  }

  .pricing-card-featured {
    transform: none;
  }

  .report-dialog {
    width: min(100%, 760px);
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 16px, var(--frame));
    padding-top: 12px;
    padding-bottom: 24px;
  }

  .site-footer {
    width: min(100% - 16px, var(--frame));
    padding-bottom: 24px;
  }

  .site-shell {
    width: min(100% - 16px, var(--frame));
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
  }

  .site-footer__links {
    width: 100%;
  }

  .site-footer__email-link {
    width: 100%;
    justify-content: center;
  }

  .section,
  .hero-copy,
  .hero-card,
  .info-card,
  .session-card,
  .pricing-card {
    border-radius: 22px;
  }

  .section,
  .hero-copy,
  .hero-card,
  .precheck-card,
  .info-card,
  .session-card,
  .pricing-card,
  .problem-mix-card {
    padding: 32px 20px;
  }

  h1 {
    font-size: 2.55rem;
    max-width: 10ch;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-actions,
  .precheck-actions {
    flex-direction: column;
  }

  .precheck-actions {
    gap: 12px;
  }

  .button {
    width: 100%;
    min-height: 56px;
  }

  .pricing-stack {
    gap: 10px;
    padding: 0 0 10px;
    border-radius: 26px;
  }

  .consult-offer-shell {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
    border-radius: 24px;
  }

  .consult-offer__booking {
    padding-top: 0;
  }

  .consult-offer__booking .cta-card {
    padding: 28px 22px 24px;
  }

  .personalization-card {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }

  .personalization-label,
  .personalization-value,
  .personalization-mix,
  .personalization-copy {
    grid-column: 1;
  }

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

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

  .compare-table {
    font-size: 0.82rem;
  }

  .compare-table td,
  .compare-table th {
    padding: 10px 10px;
  }

  .pricing-actions {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 10px 8px;
  }

  .pricing-actions__column {
    padding: 12px 0 0;
    background: transparent;
  }

  .pricing-actions__column--basic {
    padding-top: 12px;
  }

  .problem-grid {
    display: flex;
    flex-direction: column;
  }

  .pricing-card-featured {
    order: -1;
    margin-bottom: 8px;
  }

  .hero {
    gap: 16px;
  }

  .hero-text {
    max-width: 32ch;
  }

  .precheck-card h1,
  .precheck-card h2 {
    font-size: 2.3rem;
    max-width: 12ch;
  }

  .precheck-copy {
    max-width: 34ch;
  }

  .precheck-trust {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .section-heading--with-action {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .session-report-cta {
    width: auto;
    min-width: 0;
    min-height: auto;
    border-radius: 0;
    font-size: 0.92rem;
  }

  .info-card {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }

  .info-card__number {
    font-size: 2.2rem;
  }

  .report-modal {
    padding: 10px;
  }

  .report-dialog {
    padding: 18px;
    border-radius: 22px;
  }

  .report-section {
    padding: 18px;
  }

  .featured-badge {
    top: 14px;
    right: 14px;
    font-size: 0.7rem;
  }
}

.portal-header__button--primary {
  background: #193b6a;
  color: #fff;
  border: 1px solid rgba(25, 59, 106, 0.16);
  box-shadow: none;
}

@media (max-width: 640px) {
  .portal-header {
    border-radius: 24px;
    overflow: hidden;
  }

  .portal-header__top {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 16px 16px 14px;
  }

  .portal-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column !important;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(17, 31, 53, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 18px rgba(22, 27, 33, 0.08);
    cursor: pointer;
  }

  .portal-menu-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 2px 0 !important;
    border-radius: 999px;
    background: #193b6a;
    flex: 0 0 auto;
  }

  .portal-brand {
    min-width: 0;
    gap: 10px;
  }

  .portal-brand__logo {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    object-fit: cover;
    background: transparent;
  }

  .portal-brand__text {
    margin-left: 0;
    min-width: 0;
  }

  .portal-brand__mark {
    font-size: 1.25rem;
    line-height: 1.05;
  }

  .portal-brand__sub {
    display: none;
  }

  .portal-header__nav-wrap {
    display: none;
    padding: 4px 16px 16px;
    border-top: 1px solid rgba(17, 31, 53, 0.06);
    border-bottom: 0;
    background: rgba(255, 255, 255, 0.96);
  }

  .portal-header.is-open .portal-header__nav-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .portal-main-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .portal-main-nav a {
    padding: 14px 4px;
    border: 0;
    border-bottom: 1px solid rgba(17, 31, 53, 0.08);
    border-radius: 0;
    background: transparent;
    text-align: left;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.25;
    color: #243243;
  }

  .portal-header__cta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 8px 0 0;
  }

  .portal-header__button {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.92rem;
  }
}

/* Final mobile portal header lock */
@media (max-width: 779px) {
  .portal-header__mobile-actions {
    display: flex !important;
    flex: 0 0 auto !important;
  }

  .portal-header__top {
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px !important;
  }

  .portal-brand {
    min-width: 0 !important;
    gap: 8px !important;
  }

  .portal-brand__logo {
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
  }

  .portal-brand__mark {
    font-size: 1.24rem !important;
    line-height: 1 !important;
  }

  .portal-brand__sub {
    display: none !important;
  }

  .portal-header__mobile-book {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid rgba(25, 59, 106, 0.16);
    border-radius: 999px;
    background: #193b6a;
    color: #fff;
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 10px 18px rgba(25, 59, 106, 0.16);
  }

  .portal-menu-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 999px !important;
    background: #fff !important;
  }

  .portal-header__nav-wrap {
    display: none !important;
    padding: 8px 14px 16px !important;
    background: rgba(255, 255, 255, 0.98) !important;
  }

  .portal-header.is-open .portal-header__nav-wrap {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
  }

  .portal-header__cta {
    order: 1;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 0 0 10px !important;
    border-bottom: 1px solid rgba(17, 31, 53, 0.08);
  }

  .portal-main-nav {
    order: 2;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 !important;
  }

  .portal-main-nav a:nth-child(2) { order: 1; }
  .portal-main-nav a:nth-child(3) { order: 2; }
  .portal-main-nav a:nth-child(4) { order: 3; }
  .portal-main-nav a:nth-child(7) { order: 4; }
  .portal-main-nav a:nth-child(1) { order: 5; }
  .portal-main-nav a:nth-child(5) { order: 6; }
  .portal-main-nav a:nth-child(6) { order: 7; }
}

/* Final mobile portal header lock */
@media (max-width: 779px) {
  .portal-header__mobile-actions {
    display: flex !important;
    flex: 0 0 auto !important;
  }

  .portal-header__top {
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px !important;
  }

  .portal-brand {
    min-width: 0 !important;
    gap: 8px !important;
  }

  .portal-brand__logo {
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
  }

  .portal-brand__mark {
    font-size: 1.24rem !important;
    line-height: 1 !important;
  }

  .portal-brand__sub {
    display: none !important;
  }

  .portal-header__mobile-book {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid rgba(25, 59, 106, 0.16);
    border-radius: 999px;
    background: #193b6a;
    color: #fff;
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 10px 18px rgba(25, 59, 106, 0.16);
  }

  .portal-menu-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 999px !important;
    background: #fff !important;
  }

  .portal-header__nav-wrap {
    display: none !important;
    padding: 8px 14px 16px !important;
    background: rgba(255, 255, 255, 0.98) !important;
  }

  .portal-header.is-open .portal-header__nav-wrap {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
  }

  .portal-header__cta {
    order: 1;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 0 0 10px !important;
    border-bottom: 1px solid rgba(17, 31, 53, 0.08);
  }

  .portal-main-nav {
    order: 2;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 !important;
  }

  .portal-main-nav a:nth-child(2) { order: 1; }
  .portal-main-nav a:nth-child(3) { order: 2; }
  .portal-main-nav a:nth-child(4) { order: 3; }
  .portal-main-nav a:nth-child(7) { order: 4; }
  .portal-main-nav a:nth-child(1) { order: 5; }
  .portal-main-nav a:nth-child(5) { order: 6; }
  .portal-main-nav a:nth-child(6) { order: 7; }
}

/* Mobile portal header lock */
.portal-header__mobile-actions {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.portal-header__mobile-book {
  display: none;
}

@media (max-width: 779px) {
  .portal-header__mobile-actions {
    display: flex !important;
  }

  .portal-header__top {
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px !important;
  }

  .portal-brand__logo {
    width: 42px !important;
    height: 42px !important;
  }

  .portal-brand__mark {
    font-size: 1.24rem !important;
    line-height: 1 !important;
  }

  .portal-header__mobile-book {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid rgba(25, 59, 106, 0.16);
    border-radius: 999px;
    background: #193b6a;
    color: #fff;
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 10px 18px rgba(25, 59, 106, 0.16);
  }

  .portal-menu-toggle {
    width: 40px !important;
    height: 40px !important;
    border-radius: 999px !important;
    background: #fff !important;
  }

  .portal-header.is-open .portal-header__nav-wrap {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
  }

  .portal-header__cta {
    order: 1;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 0 0 10px !important;
    border-bottom: 1px solid rgba(17, 31, 53, 0.08);
  }

  .portal-main-nav {
    order: 2;
    display: flex !important;
    flex-direction: column !important;
  }

  .portal-main-nav a:nth-child(2) { order: 1; }
  .portal-main-nav a:nth-child(3) { order: 2; }
  .portal-main-nav a:nth-child(4) { order: 3; }
  .portal-main-nav a:nth-child(7) { order: 4; }
  .portal-main-nav a:nth-child(1) { order: 5; }
  .portal-main-nav a:nth-child(5) { order: 6; }
  .portal-main-nav a:nth-child(6) { order: 7; }
}

@media (max-width: 779px) {
  .portal-header {
    border-radius: 24px;
    overflow: hidden;
  }

  .portal-header__top {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 16px 16px 14px;
  }

  .portal-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(17, 31, 53, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 18px rgba(22, 27, 33, 0.08);
    cursor: pointer;
  }

  .portal-menu-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 2px 0;
    border-radius: 999px;
    background: #193b6a;
  }

  .portal-brand {
    min-width: 0;
    gap: 10px;
  }

  .portal-brand__logo {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    object-fit: cover;
    background: transparent;
  }

  .portal-brand__text {
    margin-left: 0;
    min-width: 0;
  }

  .portal-brand__mark {
    font-size: 1.25rem;
    line-height: 1.05;
  }

  .portal-brand__sub {
    display: none;
  }

  .portal-header__nav-wrap {
    display: none;
    padding: 4px 16px 16px;
    border-top: 1px solid rgba(17, 31, 53, 0.06);
    border-bottom: 0;
    background: rgba(255, 255, 255, 0.96);
  }

  .portal-header.is-open .portal-header__nav-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .portal-main-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .portal-main-nav a {
    padding: 14px 4px;
    border: 0;
    border-bottom: 1px solid rgba(17, 31, 53, 0.08);
    border-radius: 0;
    background: transparent;
    text-align: left;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.25;
    color: #243243;
  }

  .portal-header__cta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 8px 0 0;
  }

  .portal-header__button {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.92rem;
  }
}
