:root {
  --ink: #09152f;
  --ink-soft: #13295a;
  --paper: #f4f7ff;
  --white: #ffffff;
  --line: #d7e0f3;
  --teal: #f6c75a;
  --teal-dark: #255bd7;
  --sky: #80bfff;
  --muted: #53647c;
  --shadow: 0 24px 70px rgba(9, 21, 47, 0.16);
  --radius-lg: 32px;
  --radius-md: 22px;
  --shell: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(9, 21, 47, 0.09);
  background: rgba(244, 247, 255, 0.92);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 15px;
  color: var(--white);
  background: linear-gradient(135deg, #3477ff, #1e4fc6);
  box-shadow: 0 9px 22px rgba(37, 91, 215, 0.25);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  font-size: 15px;
  letter-spacing: -0.01em;
}

.brand-copy span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.02em;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

nav a:not(.nav-cta):hover {
  color: var(--teal-dark);
}

.nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #3477ff, #1e4fc6);
  box-shadow: 0 10px 24px rgba(37, 91, 215, 0.22);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 106px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 10%, rgba(59, 118, 255, 0.52), transparent 32%),
    radial-gradient(circle at 7% 92%, rgba(246, 199, 90, 0.18), transparent 30%),
    linear-gradient(135deg, #071127 0%, #0d2250 58%, #12316b 100%);
}

.hero::after {
  position: absolute;
  right: -130px;
  bottom: -260px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.025),
    0 0 0 140px rgba(255, 255, 255, 0.018);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: center;
  gap: clamp(54px, 8vw, 112px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--teal);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 5.7rem);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero-lead {
  max-width: 660px;
  margin: 30px 0 0;
  color: #bfd0d9;
  font-size: clamp(1.06rem, 1.8vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 21px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 4px;
}

.button-primary {
  color: var(--ink);
  background: linear-gradient(135deg, #f4bd42, #ffdd82);
  box-shadow: 0 14px 32px rgba(246, 199, 90, 0.24);
}

.button-primary:hover {
  background: linear-gradient(135deg, #ffc94f, #ffe59b);
  box-shadow: 0 18px 38px rgba(246, 199, 90, 0.34);
}

.text-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  color: var(--white);
  font-weight: 750;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 34px 0 0;
  padding: 0;
  color: #9fb4c0;
  font-size: 14px;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-list span {
  color: var(--teal);
  font-weight: 900;
}

.meeting-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
}

.card-topline {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
}

.availability-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(246, 199, 90, 0.19);
}

.monogram {
  display: grid;
  width: 86px;
  height: 86px;
  margin-top: 32px;
  place-items: center;
  border-radius: 25px;
  color: var(--white);
  background: linear-gradient(145deg, #3477ff, #173b96);
  box-shadow: 0 16px 34px rgba(37, 91, 215, 0.25);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.meeting-card h2 {
  margin: 22px 0 2px;
  font-size: 25px;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.meeting-card > p {
  margin: 0;
  color: var(--muted);
}

.meeting-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 28px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.meeting-card dl div + div {
  border-left: 1px solid var(--line);
  padding-left: 16px;
}

.meeting-card dt {
  color: var(--muted);
  font-size: 12px;
}

.meeting-card dd {
  margin: 3px 0 0;
  font-size: 14px;
  font-weight: 800;
}

.button-card {
  width: 100%;
  color: var(--white);
  background: linear-gradient(135deg, #3477ff, #1e4fc6);
  box-shadow: 0 12px 28px rgba(37, 91, 215, 0.24);
}

.section {
  padding: 112px 0;
}

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

.section-heading h2,
.booking-heading h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 4.1rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-heading > p:last-child,
.booking-heading > p:last-child {
  max-width: 630px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.support-card {
  min-height: 286px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(9, 21, 47, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.support-card:hover {
  border-color: rgba(37, 91, 215, 0.38);
  box-shadow: 0 20px 48px rgba(37, 91, 215, 0.11);
  transform: translateY(-5px);
}

.support-card.featured {
  color: var(--white);
  border-color: rgba(92, 143, 255, 0.44);
  background: linear-gradient(145deg, #14295a, #1f55cc);
  transform: translateY(-14px);
}

.card-number {
  display: inline-block;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.featured .card-number {
  color: var(--teal);
}

.support-card h3 {
  margin: 72px 0 12px;
  font-size: 23px;
  letter-spacing: -0.03em;
}

.support-card p {
  margin: 0;
  color: var(--muted);
}

.featured p {
  color: #b9cbd5;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 850;
}

.card-link:hover span {
  transform: translateX(3px);
}

.card-link span {
  transition: transform 180ms ease;
}

.featured .card-link {
  color: var(--teal);
}

.meeting {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 0%, rgba(70, 129, 255, 0.32), transparent 34%),
    linear-gradient(135deg, #101f45, #13295a 65%, #173e91);
}

.meeting-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
}

.meeting .eyebrow {
  color: var(--teal);
}

.meeting .section-heading > p:last-child {
  color: #b9cbd5;
}

.steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.steps li:first-child {
  padding-top: 0;
}

.steps li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(246, 199, 90, 0.42);
  border-radius: 14px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
}

.steps h3 {
  margin: 0 0 4px;
  font-size: 20px;
}

.steps p {
  margin: 0;
  color: #b9cbd5;
}

.booking {
  background:
    radial-gradient(circle at 90% 20%, rgba(68, 124, 255, 0.1), transparent 28%),
    #edf2ff;
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(520px, 1fr);
  align-items: start;
  gap: clamp(42px, 7vw, 86px);
}

.booking-heading {
  position: sticky;
  top: 122px;
}

.calendar-frame {
  min-height: 660px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.calendar-consent {
  display: grid;
  min-height: 660px;
  align-content: center;
  justify-items: center;
  padding: 48px;
  text-align: center;
}

.calendar-icon {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 23px;
  color: var(--ink);
  background:
    linear-gradient(var(--teal) 0 18px, transparent 18px),
    var(--paper);
  box-shadow: 0 16px 36px rgba(37, 91, 215, 0.15);
}

.calendar-icon span {
  margin-top: 12px;
  font-size: 25px;
  font-weight: 900;
}

.calendar-consent h3 {
  margin: 28px 0 10px;
  font-size: 27px;
  letter-spacing: -0.035em;
}

.calendar-consent p {
  max-width: 440px;
  margin: 0 0 26px;
  color: var(--muted);
}

.calendar-fallback {
  margin-top: 18px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.calendly-inline-widget {
  min-width: 320px;
  height: 760px;
}

.calendar-loading {
  display: grid;
  min-height: 660px;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
}

.topic-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 88px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 14%, rgba(65, 125, 255, 0.48), transparent 31%),
    radial-gradient(circle at 5% 95%, rgba(246, 199, 90, 0.16), transparent 28%),
    linear-gradient(135deg, #071127 0%, #0d2250 62%, #12316b 100%);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 44px;
  color: #aebfcb;
  font-size: 14px;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.breadcrumbs span[aria-hidden="true"] {
  color: var(--teal);
}

.topic-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
  align-items: center;
  gap: clamp(46px, 8vw, 104px);
}

.topic-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.75rem, 5.6vw, 5.25rem);
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 1;
}

.topic-lead {
  max-width: 700px;
  margin: 28px 0 0;
  color: #bfd0d9;
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  line-height: 1.7;
}

.topic-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}

.topic-summary {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
}

.topic-summary h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.topic-summary ul {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.topic-summary li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
}

.topic-summary li span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 8px;
  color: #173b96;
  background: #e4ecff;
  font-size: 12px;
  font-weight: 900;
}

.article-section {
  padding: 96px 0;
  background: var(--paper);
}

.article-section.alt {
  background: #ffffff;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(210px, 0.45fr) minmax(0, 1.25fr);
  align-items: start;
  gap: clamp(44px, 8vw, 110px);
}

.content-kicker {
  margin: 0;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.content-main {
  max-width: 800px;
}

.content-main h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.05em;
  line-height: 1.06;
}

.content-main > p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.info-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(9, 21, 47, 0.045);
}

.alt .info-card {
  background: var(--paper);
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.info-card p {
  margin: 0;
  color: var(--muted);
}

.fact-list {
  display: grid;
  gap: 18px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.fact-list li {
  position: relative;
  padding: 0 0 18px 34px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.fact-list li::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 7px;
  color: #173b96;
  background: #e4ecff;
  content: "✓";
  font-size: 12px;
  font-weight: 900;
}

.fact-list strong {
  color: var(--ink);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 40px;
}

.faq-list details {
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.faq-list summary {
  position: relative;
  padding: 22px 34px 22px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 21px;
  right: 0;
  color: var(--teal-dark);
  content: "+";
  font-size: 22px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--muted);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.related-card {
  display: block;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.related-card:hover {
  border-color: rgba(37, 91, 215, 0.42);
  box-shadow: 0 16px 38px rgba(37, 91, 215, 0.1);
  transform: translateY(-3px);
}

.related-card span {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-card h3 {
  margin: 18px 0 8px;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.related-card p {
  margin: 0;
  color: var(--muted);
}

.article-note {
  margin-top: 34px;
  padding: 20px 22px;
  border-left: 4px solid var(--teal);
  border-radius: 0 14px 14px 0;
  color: var(--muted);
  background: #fff9e9;
  font-size: 14px;
}

.contact-strip {
  padding: 68px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgba(128, 191, 255, 0.24), transparent 25%),
    linear-gradient(105deg, #173e99, #2f6cff);
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.contact-inner p {
  margin: 0 0 6px;
  color: #d9e7ff;
  font-weight: 700;
}

.contact-inner h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.button-light {
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--white);
}

.site-footer {
  padding: 70px 0 24px;
  color: var(--white);
  background: #050d1e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  padding-bottom: 54px;
}

.footer-brand .brand-copy span,
.footer-note {
  color: #8ca5b3;
}

.footer-note {
  margin: 18px 0 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, auto));
  gap: 12px 28px;
  color: #bed0d9;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--teal);
}

.privacy-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8ca5b3;
  font-size: 13px;
}

.privacy-wrap details {
  max-width: 760px;
}

.privacy-wrap summary {
  width: max-content;
  cursor: pointer;
  color: #bed0d9;
  font-size: 14px;
  font-weight: 750;
}

.privacy-copy {
  margin-top: 18px;
  padding: 20px;
  border-radius: 16px;
  color: #a8bdc8;
  background: rgba(255, 255, 255, 0.04);
}

.privacy-copy p {
  margin: 0;
}

.privacy-copy p + p {
  margin-top: 12px;
}

.privacy-wrap > p {
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 920px) {
  nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    padding: 72px 0 82px;
  }

  .hero-grid,
  .meeting-grid,
  .booking-shell,
  .topic-hero-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 52px;
  }

  .meeting-card {
    max-width: 560px;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-card {
    min-height: 230px;
  }

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

  .support-card h3 {
    margin-top: 48px;
  }

  .booking-heading {
    position: static;
  }

  .topic-summary {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100% - 28px, 1160px);
    --radius-lg: 24px;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .site-header .brand-copy span {
    display: none;
  }

  .site-header .brand-copy strong {
    max-width: 118px;
    font-size: 13px;
    line-height: 1.15;
  }

  .nav-cta {
    padding: 10px 13px;
    font-size: 13px;
  }

  .hero {
    padding-top: 58px;
  }

  .topic-hero {
    padding: 40px 0 68px;
  }

  .breadcrumbs {
    margin-bottom: 30px;
  }

  .topic-hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
  }

  .topic-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .topic-actions .button {
    width: 100%;
  }

  .article-section {
    padding: 76px 0;
  }

  .content-main > p {
    font-size: 16px;
  }

  .info-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  .hero-lead {
    margin-top: 24px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    align-self: center;
  }

  .trust-list {
    align-items: flex-start;
    flex-direction: column;
  }

  .meeting-card {
    padding: 24px;
  }

  .meeting-card dl {
    gap: 10px;
  }

  .meeting-card dl div + div {
    padding-left: 10px;
  }

  .meeting-card dd {
    font-size: 13px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading h2,
  .booking-heading h2 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .section-heading > p:last-child,
  .booking-heading > p:last-child {
    font-size: 16px;
  }

  .support-grid {
    margin-top: 38px;
  }

  .steps li {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .calendar-frame,
  .calendar-consent {
    min-height: 590px;
  }

  .calendar-consent {
    padding: 30px 20px;
  }

  .calendly-inline-widget {
    height: 700px;
  }

  .contact-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .button-light {
    width: 100%;
  }

  .footer-grid,
  .privacy-wrap {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .privacy-wrap {
    align-items: start;
  }
}

@media (max-width: 360px) {
  .site-header .brand-copy {
    display: none;
  }

  .nav-wrap {
    gap: 12px;
  }

  .calendar-frame {
    margin-inline: -14px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
