:root {
  --blue: #2478bd;
  --blue-dark: #15527f;
  --green: #55b96f;
  --green-soft: #e8f8e8;
  --yellow: #ffd24d;
  --yellow-soft: #fff3bf;
  --orange: #ff8a3d;
  --orange-dark: #cc5f18;
  --cream: #fff9ea;
  --paper: #fffefa;
  --graphite: #2b2b2b;
  --muted: #626262;
  --line: #f2d9a5;
  --shadow: 0 18px 40px rgba(36, 120, 189, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--graphite);
  background: #fffaf0;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

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

h1,
h2,
h3,
h4 {
  line-height: 1.12;
  letter-spacing: 0;
  color: #243746;
}

h1 {
  max-width: 780px;
  font-size: 3.45rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
}

h4 {
  font-size: 1rem;
  margin: 1.1rem 0 0.45rem;
}

p {
  color: var(--muted);
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 30;
  background: var(--blue);
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 6px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  width: min(860px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 249, 234, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(242, 217, 165, 0.92);
}

.header-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 210px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
}

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

.brand-text strong {
  color: #223746;
  font-size: 1.02rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  flex: 1;
}

.site-nav a {
  text-decoration: none;
  color: #244b64;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.7rem 0.55rem;
  border-radius: 6px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--yellow-soft);
  color: var(--blue-dark);
  box-shadow: inset 0 -3px 0 var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.phone-link {
  white-space: nowrap;
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: none;
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 0.72rem;
  margin-left: auto;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--blue);
  margin: 5px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.08rem;
  border-radius: 8px;
  border: 1px solid var(--orange);
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.2;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.96rem;
}

.button:hover {
  border-color: var(--orange-dark);
  background: var(--orange-dark);
}

.button-secondary {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--blue-dark);
}

.button-secondary:hover {
  border-color: var(--blue);
  background: #fff;
}

.button-quiet {
  background: transparent;
  border-color: rgba(47, 93, 124, 0.25);
  color: var(--blue-dark);
}

.button-quiet:hover {
  background: rgba(255, 255, 255, 0.78);
}

.button-small {
  min-height: 40px;
  padding: 0.62rem 0.85rem;
  font-size: 0.88rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1.5rem;
}

.home-hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(255, 250, 238, 0.9), rgba(255, 250, 238, 0.68) 45%, rgba(255, 250, 238, 0.22)), var(--hero-image);
  background-size: cover;
  background-position: center right;
}

.home-hero {
  min-height: clamp(500px, 58vh, 660px);
  display: grid;
  align-items: center;
  padding: clamp(2.8rem, 5vw, 4rem) 0 clamp(3rem, 5vw, 4.2rem);
  background-image:
    linear-gradient(112deg, rgba(255, 250, 238, 0.96) 0%, rgba(255, 250, 238, 0.88) 39%, rgba(255, 209, 73, 0.42) 62%, rgba(91, 183, 126, 0.26) 78%, rgba(36, 120, 189, 0.3) 100%),
    linear-gradient(162deg, rgba(255, 126, 55, 0.16) 0%, rgba(255, 250, 238, 0) 48%),
    var(--hero-image);
  border-bottom: 1px solid rgba(242, 217, 165, 0.72);
}

.hero-inner {
  display: grid;
}

.hero-copy {
  max-width: 740px;
}

.hero-copy > p:not(.kicker),
.page-hero-inner > p:not(.kicker) {
  max-width: 690px;
  color: #405260;
  font-size: 1.16rem;
}

.kicker {
  margin: 0 0 0.75rem;
  color: var(--orange-dark);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(36, 120, 189, 0.16);
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 0.88rem;
}

.hero-points span:nth-child(1) {
  border-bottom: 4px solid var(--blue);
}

.hero-points span:nth-child(2) {
  border-bottom: 4px solid var(--yellow);
}

.hero-points span:nth-child(3) {
  border-bottom: 4px solid var(--green);
}

.page-hero {
  min-height: 430px;
  display: grid;
  align-items: center;
  padding: 4.2rem 0;
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  max-width: 800px;
}

.section {
  padding: 5rem 0;
}

.section.alt {
  background: #f5fbf2;
  border-block: 1px solid rgba(242, 217, 165, 0.7);
}

.section-head {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-head p:last-child {
  font-size: 1.05rem;
}

.lead {
  font-size: 1.22rem;
  color: #435261;
}

.card-grid,
.article-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

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

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  --accent: var(--blue);
  --accent-soft: #e8f3ff;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(36, 120, 189, 0.13);
  border-top: 6px solid var(--accent);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-card a {
  display: grid;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.service-card-body {
  display: grid;
  gap: 0.65rem;
  min-height: 100%;
  padding: 1.35rem;
}

.service-card-body span {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.22rem 0.62rem;
}

.service-card-body p {
  margin: 0;
}

.service-card-body strong {
  align-self: end;
  color: var(--accent);
  font-size: 0.92rem;
}

.service-card:hover {
  transform: translateY(-3px);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 22px 46px rgba(36, 120, 189, 0.18);
}

.office-section {
  background: #fffaf0;
}

.office-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.office-card {
  padding: 0;
  overflow: hidden;
}

.office-card img {
  display: block;
  width: 100%;
  height: auto;
}

.office-card figcaption {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.05rem 1.15rem;
}

.office-card strong {
  color: var(--blue-dark);
  font-size: 1.05rem;
}

.office-card span {
  color: var(--muted);
  line-height: 1.6;
}

.accent-1 {
  --accent: var(--blue);
  --accent-soft: #e8f3ff;
}

.accent-2 {
  --accent: var(--orange);
  --accent-soft: #fff0e3;
}

.accent-3 {
  --accent: var(--green);
  --accent-soft: var(--green-soft);
}

.accent-4 {
  --accent: #e0aa05;
  --accent-soft: var(--yellow-soft);
}

.info-card,
.article-card,
.symptom-card,
.process-step,
.note-panel,
.service-detail,
figure {
  background: var(--paper);
  border: 1px solid rgba(36, 120, 189, 0.13);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.info-card,
.article-card,
.process-step,
.note-panel,
figure {
  padding: 1.35rem;
}

.info-card p,
.article-card p,
.process-step p,
.note-panel p,
figure p {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
}

.article-shell {
  background:
    linear-gradient(180deg, rgba(255, 250, 238, 0.96), rgba(245, 251, 242, 0.74)),
    #fffaf0;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 2rem;
  align-items: start;
}

.article-body {
  max-width: 820px;
}

.article-body h2 {
  margin-top: 2.7rem;
}

.article-body h3 {
  margin-top: 1.7rem;
}

.article-body p,
.article-body li {
  font-size: 1.02rem;
}

.article-body ul {
  margin: 0 0 1.4rem;
  padding-left: 1.25rem;
  color: var(--muted);
}

.article-body li {
  margin: 0.42rem 0;
}

.article-body strong {
  color: #243746;
}

.article-toc,
.article-note,
.article-cta {
  border-radius: 8px;
  border: 1px solid rgba(36, 120, 189, 0.14);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.article-toc {
  position: sticky;
  top: 106px;
  padding: 1rem;
}

.article-toc h2 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.article-toc a {
  display: block;
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: none;
  padding: 0.38rem 0;
  border-bottom: 1px solid rgba(47, 93, 124, 0.1);
}

.article-note {
  padding: 1.15rem 1.25rem;
  border-left: 5px solid var(--green);
  margin: 1.5rem 0;
}

.article-cta {
  padding: 1.45rem;
  margin: 2rem 0;
  background:
    linear-gradient(120deg, rgba(255, 209, 73, 0.25), rgba(91, 183, 126, 0.16)),
    var(--paper);
}

.article-cta h2 {
  margin-top: 0;
  font-size: 1.55rem;
}

.article-cta p:last-child {
  margin-bottom: 0;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.related-links a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(36, 120, 189, 0.16);
  border-radius: 8px;
  background: var(--paper);
  color: var(--blue-dark);
  font-weight: 850;
  text-decoration: none;
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.symptom-card {
  padding: 1.1rem 1.15rem;
  color: #344757;
  font-weight: 700;
  box-shadow: none;
  border-left: 4px solid var(--yellow);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-step span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--yellow-soft);
  color: var(--blue-dark);
  font-weight: 900;
  margin-bottom: 1rem;
}

.trust-section {
  background: linear-gradient(90deg, var(--blue-dark), var(--blue), var(--green));
  color: #fff;
  padding: 2rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-grid div {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.trust-grid span {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--yellow);
  flex: 0 0 auto;
}

.trust-grid p {
  margin: 0;
  color: #fff;
  font-weight: 800;
}

.split,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 2rem;
  align-items: start;
}

.note-panel {
  border-left: 4px solid var(--green);
}

.profile-side {
  display: grid;
  gap: 1rem;
}

.profile-photo {
  padding: 0;
  overflow: hidden;
}

.profile-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.profile-photo figcaption {
  padding: 0.75rem 1rem 0.85rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.book-section {
  background:
    linear-gradient(120deg, rgba(255, 209, 73, 0.18), rgba(91, 183, 126, 0.12) 48%, rgba(36, 120, 189, 0.12)),
    #fffaf0;
  border-block: 1px solid rgba(242, 217, 165, 0.72);
}

.book-layout {
  align-items: center;
}

.book-cover {
  padding: 1.1rem;
  text-align: center;
}

.book-cover img {
  display: block;
  width: min(100%, 360px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 22px 28px rgba(36, 55, 70, 0.18));
}

.book-cover figcaption {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.book-question-list {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0 1.2rem;
  padding: 0;
  list-style: none;
}

.book-question-list li {
  position: relative;
  padding-left: 1.45rem;
  color: #344757;
  font-weight: 700;
}

.book-question-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--yellow), var(--green));
}

.note-panel ul,
.check-list,
.service-detail ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.check-list li,
.note-panel li,
.service-detail li {
  margin: 0.35rem 0;
}

.service-list {
  display: grid;
  gap: 1rem;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.4rem;
  padding: 1.45rem;
  box-shadow: none;
}

.service-detail p:last-child {
  margin-bottom: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  background: var(--paper);
  border: 1px solid rgba(47, 93, 124, 0.13);
  border-radius: 8px;
  padding: 1rem 1.1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  color: #243746;
}

.faq-list p {
  margin: 0.8rem 0 0;
}

.testimonial-grid figure {
  margin: 0;
}

.testimonial-grid blockquote {
  margin: 0 0 1rem;
  color: #334758;
  font-weight: 650;
}

.testimonial-grid figcaption {
  color: var(--muted);
  font-size: 0.92rem;
}

.booking-section {
  background: #fff0cf;
}

.contact-facts {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.contact-facts a,
.contact-facts span {
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: none;
}

.contact-facts.large {
  gap: 1rem;
  font-size: 1.08rem;
}

.contact-form {
  background: var(--paper);
  border: 1px solid rgba(47, 93, 124, 0.15);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 1.25rem;
  display: grid;
  gap: 1rem;
}

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

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: #304759;
  font-weight: 800;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(47, 93, 124, 0.25);
  border-radius: 8px;
  background: #fff;
  color: var(--graphite);
  padding: 0.75rem 0.85rem;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 600;
}

.checkbox input {
  width: 18px;
  min-height: 18px;
  margin-top: 0.25rem;
}

.form-note {
  margin: 0;
  font-weight: 800;
  color: var(--blue-dark);
}

.fine-print {
  font-size: 0.92rem;
  color: var(--muted);
}

.map-placeholder {
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  border: 1px dashed rgba(47, 93, 124, 0.35);
  border-radius: 8px;
  background: #fff;
}

.map-placeholder strong {
  color: var(--blue-dark);
  font-size: 1.2rem;
}

.site-footer {
  background: #174866;
  color: #fff;
  padding: 3.5rem 0 1.5rem;
}

.site-footer p,
.site-footer a,
.site-footer small {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a {
  display: block;
  text-decoration: none;
  margin: 0.35rem 0;
}

.site-footer h2 {
  color: #fff;
  font-size: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.9fr;
  gap: 2rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-brand .brand-mark {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
}

.footer-brand .brand-text strong {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.2rem;
  margin-top: 2rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.86rem;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1100px) {
  .header-actions {
    display: none;
  }

  .site-nav a {
    font-size: 0.84rem;
    padding-inline: 0.42rem;
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 82px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 20px 1.2rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 0.9rem 0.8rem;
    font-size: 1rem;
  }

  .home-hero {
    min-height: clamp(470px, 58vh, 600px);
    padding: 3rem 0 3.5rem;
  }

  .page-hero {
    min-height: 360px;
  }

  .card-grid,
  .service-card-grid,
  .article-grid,
  .office-gallery,
  .testimonial-grid,
  .symptom-grid,
  .process-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .contact-layout,
  .article-layout,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .article-toc {
    position: static;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 72px;
  }

  .container,
  .narrow {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    width: min(100% - 24px, 1240px);
    min-height: 72px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-text small {
    max-width: 190px;
  }

  .site-nav {
    inset: 72px 0 auto 0;
  }

  h1 {
    font-size: 2.18rem;
  }

  h2 {
    font-size: 1.62rem;
  }

  .home-hero,
  .page-hero {
    background-position: center right;
  }

  .home-hero {
    min-height: auto;
    padding: 2.4rem 0 2.8rem;
  }

  .page-hero {
    min-height: 330px;
    padding: 3rem 0;
  }

  .hero-copy > p:not(.kicker),
  .page-hero-inner > p:not(.kicker) {
    font-size: 1.03rem;
  }

  .section {
    padding: 3.2rem 0;
  }

  .card-grid,
  .service-card-grid,
  .article-grid,
  .related-links,
  .office-gallery,
  .testimonial-grid,
  .symptom-grid,
  .process-grid,
  .trust-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .cta-row {
    align-items: stretch;
  }

  .cta-row .button {
    width: 100%;
  }

  .trust-grid {
    gap: 0.85rem;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    padding: 0.7rem;
    background: rgba(255, 249, 234, 0.98);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px rgba(47, 93, 124, 0.13);
  }

  .mobile-cta a {
    min-height: 46px;
    display: grid;
    place-items: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 900;
  }

  .mobile-cta a:first-child {
    background: #fff;
    color: var(--blue-dark);
    border: 1px solid rgba(47, 93, 124, 0.22);
  }

  .mobile-cta a:last-child {
    background: var(--yellow);
    color: #2b2b2b;
  }
}
