: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;
}

@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: 26px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

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

.personalization-section {
  padding: 20px;
}

.precheck-section {
  padding: 20px;
}

.precheck-card {
  padding: 38px 36px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(191, 125, 61, 0.22);
  background:
    radial-gradient(circle at top right, rgba(191, 125, 61, 0.16), transparent 28%),
    radial-gradient(circle at 16% 18%, rgba(29, 71, 119, 0.05), transparent 24%),
    linear-gradient(135deg, #fffaf3 0%, #fff6eb 52%, #fbf4ea 100%);
  box-shadow: 0 22px 42px 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, 4.2vw, 3.5rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.precheck-copy {
  max-width: 60ch;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.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 18px;
  margin-top: 24px;
}

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

.precheck-link {
  color: #193b6a;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.2em;
}

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

.personalization-card {
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(191, 125, 61, 0.14);
  background:
    radial-gradient(circle at top right, rgba(191, 125, 61, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(252, 247, 240, 0.98));
  box-shadow: 0 20px 38px rgba(74, 53, 31, 0.06);
}

.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 {
  margin-top: 4px;
  color: var(--sage-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.personalization-mix {
  margin-top: 10px;
  color: var(--amber);
  font-size: 0.98rem;
  font-weight: 700;
}

.personalization-copy {
  max-width: 56ch;
  margin-top: 12px;
}

.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, #8f5220, #6f3910);
  box-shadow: 0 20px 38px rgba(111, 57, 16, 0.24);
}

.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: 20px;
}

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

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

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

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

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

.session-report-cta {
  flex: 0 0 auto;
  min-width: 188px;
  min-height: 60px;
  padding: 12px 20px;
  border: 0;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.32), transparent 34%),
    linear-gradient(135deg, #fffaf3 0%, #f3e4cf 100%);
  color: #6f3910;
  border: 1px solid rgba(191, 125, 61, 0.2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: center;
  box-shadow:
    0 18px 34px rgba(144, 89, 34, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.22) inset;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.session-report-cta:hover {
  transform: translateY(-2px);
  filter: saturate(1.02);
  box-shadow:
    0 22px 38px rgba(144, 89, 34, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.24) inset;
}

.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);
}

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

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

.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.96rem;
}

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

.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-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border: 1.5px solid #e0d4c4;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
}

.cta-card.featured {
  border-color: #7a4f2a;
  background: #fdf6ee;
}

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

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

.btn {
  width: 100%;
}

.btn-sub {
  margin-top: -2px;
  font-size: 0.76rem;
  line-height: 1.5;
  color: #8a7560;
  text-align: center;
}

.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: 22px;
  padding: 24px;
  border: 1.5px solid #e0d4c4;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.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: 16px;
}

.faq-item {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  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: 12px;
}

.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;
  }

  .cta-row {
    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: 100%;
    min-width: 0;
    min-height: 56px;
    border-radius: 22px;
    font-size: 1.08rem;
  }

  .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;
    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;
  }
}

@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;
  }
}
