:root {
  --bg: #ffffff;
  --surface: #f3f3f3;
  --surface-2: #ebebeb;
  --ink: #0f0f0f;
  --ink-soft: #5d5d5d;
  --line: #d6d6d6;
  --line-strong: #222222;
  --radius: 20px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 4%, rgba(0, 0, 0, 0.08), transparent 28%),
    radial-gradient(circle at 10% 96%, rgba(0, 0, 0, 0.08), transparent 32%),
    var(--bg);
  line-height: 1.62;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  font-family: "Instrument Serif", serif;
  font-weight: 400;
}

h1 {
  font-size: clamp(2.5rem, 5.8vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 2rem);
}

h1 em {
  font-style: italic;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

.container {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

.section {
  padding: 6rem 0;
}

.section-alt {
  background: linear-gradient(180deg, #f5f5f5, #fafafa);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-dark {
  background: #0f0f0f;
  color: #fff;
  border-top: 1px solid #1f1f1f;
  border-bottom: 1px solid #1f1f1f;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 0.9rem;
}

.section-dark .eyebrow {
  color: #aeaeae;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(9px);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  border-color: var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1rem 0;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  min-height: 42px;
}

.brand-main {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: #121212;
  font-weight: 700;
  text-align: center;
}

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

.site-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.menu-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  border-radius: 999px;
  padding: 0.86rem 1.2rem;
  background: #0d0d0d;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #232323;
}

.btn-sm {
  padding: 0.56rem 0.9rem;
  font-size: 0.84rem;
}

.btn-ghost {
  background: transparent;
  color: #111;
  border-color: #111;
}

.hero {
  position: relative;
  overflow: clip;
  padding-top: 2rem;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 1.4rem;
  align-items: stretch;
}

.hero-copy {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fff, #f2f2f2);
  box-shadow: var(--shadow);
}

.hero-copy p {
  margin-top: 1rem;
  max-width: 58ch;
  color: #262626;
}

.hero-copy-lux {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
}

.hero-copy-lux::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 1.2rem;
  bottom: 1.2rem;
  width: 1px;
  background: linear-gradient(180deg, #000, transparent 70%);
  opacity: 0.22;
  pointer-events: none;
}

.hero-copy-lux > * {
  position: relative;
  z-index: 1;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.hero-meta {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero-meta li {
  border: 1px solid #bbb;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.81rem;
  background: #fff;
}

.hero-photo {
  position: relative;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  border: 1px solid #d8d8d8;
  background: #f0f0f0;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.09);
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  z-index: 2;
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  display: block;
  transition: transform 0.8s ease;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.52));
  z-index: 1;
}

.hero-photo:hover img {
  transform: scale(1.02);
}

.hero-caption {
  position: absolute;
  left: 1.5rem;
  bottom: 1.2rem;
  color: #fff;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 3;
  padding: 0.4rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(2px);
}

.hero-ribbon {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero-ribbon p {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.72rem 0.8rem;
  font-size: 0.79rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #343434;
  background: #fff;
}

.hero-glow {
  position: absolute;
  inset: auto auto -18vw -12vw;
  width: 32vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.16), transparent 66%);
  pointer-events: none;
}

.metrics {
  padding: 0.8rem 0 2.2rem;
}

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

.metrics-grid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  background: #fff;
}

.metric-value {
  font-size: clamp(1.6rem, 2.7vw, 2.6rem);
  line-height: 1;
  font-family: "Instrument Serif", serif;
}

.metric-label {
  margin-top: 0.4rem;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.section-head {
  max-width: 800px;
  margin-bottom: 1.8rem;
}

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

.procedure-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.procedure-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.procedure-card-media {
  height: 180px;
  overflow: hidden;
}

.procedure-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.procedure-card-body {
  padding: 1rem;
}

.procedure-card-body p {
  margin-top: 0.45rem;
  color: var(--ink-soft);
}

.procedure-card-body span {
  display: inline-block;
  margin-top: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
  font-weight: 700;
}

.about-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.about-shell p {
  color: #d2d2d2;
}

.about-side {
  display: grid;
  gap: 0.8rem;
}

.about-image {
  min-height: 320px;
}

.about-side blockquote {
  margin: 0;
  border: 1px solid #303030;
  border-radius: 14px;
  padding: 1rem;
  color: #d6d6d6;
  font-style: italic;
}

.checklist,
.contact-list,
.info-box ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.case-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.9rem;
}

.case-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.case-card .image-ph {
  min-height: 260px;
}

.case-wide .image-ph {
  min-height: 420px;
}

.case-copy {
  padding: 0.9rem 1rem;
}

.case-copy p {
  color: var(--ink-soft);
  margin-top: 0.4rem;
}

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

.process-line article {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  background: #fff;
  position: relative;
}

.process-line span {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid #111;
  font-size: 0.75rem;
  font-weight: 700;
}

.faq {
  max-width: 880px;
  display: grid;
  gap: 0.8rem;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: #fff;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  margin-top: 0.6rem;
}

.cta-block {
  background: linear-gradient(155deg, #050505, #1b1b1b 70%, #111 100%);
  color: #fff;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.cta-block a {
  color: #fff;
}

.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  padding: 1.1rem;
  display: grid;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
}

.contact-form label {
  display: grid;
  gap: 0.32rem;
  font-size: 0.88rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  border-radius: 10px;
  border: 1px solid #565656;
  padding: 0.68rem 0.72rem;
  background: #fff;
  color: #111;
}

.contact-form .consent {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-form .consent input {
  width: auto;
}

.form-note {
  min-height: 1.1rem;
  font-weight: 600;
}

.image-ph {
  border: 1px solid #b4b4b4;
  border-radius: 14px;
  min-height: 220px;
  overflow: hidden;
  background: #f0f0f0;
}

.image-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #f7f7f7;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 0;
}

.small {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.sticky-mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: none;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #232323;
  background: #fff;
}

.sticky-mobile-cta a {
  text-decoration: none;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.85rem 0.5rem;
}

.sticky-mobile-cta a:first-child {
  background: #0c0c0c;
  color: #fff;
}

.sticky-mobile-cta a:last-child {
  background: #fff;
  color: #111;
}

/* Procedure pages */
.procedure-hero {
  border-bottom: 1px solid var(--line);
}

.procedure-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}

.procedure-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0;
}

.procedure-meta li {
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.82rem;
  background: #fff;
}

.procedure-sections {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
}

.procedure-aside {
  position: sticky;
  top: 90px;
  align-self: start;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  background: #fff;
}

/* Ads landing layout */
.landing-hero {
  padding-bottom: 3rem;
}

.landing-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  align-items: center;
}

.landing-hero-images {
  display: grid;
  gap: 0.7rem;
}

.cta-row {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.wa-btn {
  background: #25d366;
  border-color: #25d366;
  color: #0b0b0b;
}

.wa-btn:hover {
  background: #1fb85a;
  border-color: #1fb85a;
}

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

.ig-embed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1rem 0 0.6rem;
  align-items: start;
}

.ig-embed-grid .instagram-media {
  max-width: 280px;
  width: 100% !important;
  margin: 0 auto !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  border: 1px solid var(--line) !important;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.1) !important;
  background: #fff !important;
}

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

.testimonial-grid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1rem 1rem;
  background: #fff;
  position: relative;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}

.testimonial-grid article::before {
  content: "“";
  position: absolute;
  top: 0.5rem;
  left: 0.7rem;
  font-size: 2rem;
  color: #d0d0d0;
  font-family: "Instrument Serif", serif;
}

.testimonial-grid article span {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
}

.g-review {
  padding: 1.1rem 1rem 1rem;
}

.g-review::before {
  content: none;
}

.g-review-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: center;
}

.g-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f1f1;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #1f1f1f;
}

.g-name {
  font-weight: 700;
  margin: 0;
}

.g-meta {
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  color: #6b6b6b;
}

.g-stars {
  margin-top: 0.55rem;
  font-size: 0.92rem;
  color: #fbbc04;
  letter-spacing: 0.06em;
}

.g-text {
  margin-top: 0.55rem;
  color: #2d2d2d;
}

.section-feedback {
  background: linear-gradient(180deg, #fafafa, #f0f0f0);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-feedback .section-head {
  text-align: center;
  margin: 0 auto 1.6rem;
}

.final-cta {
  background: #0f0f0f;
  color: #fff;
}

.final-cta h2,
.final-cta p {
  color: #fff;
}

.final-cta .section-head {
  margin: 0 auto 1.2rem;
  text-align: left;
  max-width: 720px;
}

.final-cta .cta-row {
  justify-content: center;
}

.final-cta .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
}

.final-cta .section-head {
  grid-column: 1;
}

.final-cta .cta-row {
  grid-column: 1 / -1;
}


.offer-box {
  margin-top: 1rem;
  border: 1px solid #bcbcbc;
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  background: linear-gradient(180deg, #fff, #f5f5f5);
}

.offer-box strong {
  display: block;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.offer-box p {
  margin-top: 0.3rem;
  font-size: 0.92rem;
}

.ad-proof {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f8f8f8;
}

.ad-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  padding: 0.9rem 0;
}

.ad-proof-grid p {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #444;
  border-right: 1px solid var(--line);
  padding-right: 0.8rem;
}

.ad-proof-grid p:last-child {
  border-right: 0;
}

.conversion-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
}

.score-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.score-cards article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem;
  background: #fff;
}

.score-cards h3 {
  font-size: 1.05rem;
}

.score-cards p {
  margin-top: 0.25rem;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.sticky-consult {
  position: sticky;
  top: 92px;
  align-self: start;
}

.lead-panel {
  border: 1px solid #0f0f0f;
  border-radius: 16px;
  padding: 1rem;
  background: #121212;
  color: #fff;
}

.lead-panel h3 {
  color: #fff;
}

.lead-panel p {
  color: #d0d0d0;
  margin-top: 0.5rem;
}

.mini-lead-form {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.65rem;
}

.mini-lead-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.84rem;
}

.mini-lead-form input,
.mini-lead-form select,
.mini-lead-form textarea {
  font: inherit;
  border-radius: 10px;
  border: 1px solid #525252;
  background: #fff;
  color: #111;
  padding: 0.62rem 0.68rem;
}

.mini-lead-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #c9c9c9;
}

.mini-lead-form .consent input {
  width: auto;
  margin-top: 0.14rem;
}

.mini-note {
  min-height: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.mini-alt {
  margin-top: 0.75rem;
  font-size: 0.82rem;
}

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

.objection-grid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem;
  background: #fff;
}

.objection-grid h3 {
  font-size: 1.05rem;
}

.objection-grid p {
  margin-top: 0.35rem;
  color: #444;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-shell,
  .about-shell,
  .cta-grid,
  .procedure-hero-grid,
  .procedure-sections,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid,
  .process-line,
  .procedure-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-hero-grid,
  .before-after-grid,
  .testimonial-grid,
  .final-cta .container {
    grid-template-columns: 1fr;
  }

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

  .ig-embed-grid .instagram-media {
    max-width: 240px;
  }

  .final-cta .section-head {
    text-align: center;
  }

  .landing-hero {
    padding-bottom: 2rem;
  }

  .ig-embed-grid {
    grid-template-columns: 1fr;
  }

  .ig-embed-grid .instagram-media {
    max-width: 220px;
  }

  .conversion-layout,
  .score-cards,
  .objection-grid,
  .ad-proof-grid {
    grid-template-columns: 1fr;
  }

  .sticky-consult {
    position: static;
  }

  .hero-photo {
    order: 0;
    aspect-ratio: 16 / 10;
  }

  .hero-photo img {
    object-position: center 45%;
  }

  .hero-ribbon {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 1.5rem;
  }

  .procedure-aside {
    position: static;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 57px;
  }

  .section {
    padding: 4.6rem 0;
  }

  .hero {
    padding-top: 1.1rem;
  }

  .hero-shell {
    gap: 0.9rem;
  }

  .hero-copy {
    padding: 1.2rem;
  }

  .hero-copy p {
    font-size: 0.96rem;
  }

  .hero-photo {
    aspect-ratio: 16 / 10;
    height: auto;
    min-height: 0;
    border-radius: 22px;
  }

  .hero-photo img {
    object-position: center 44%;
  }

  .hero-caption {
    left: 0.9rem;
    bottom: 0.8rem;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.5rem;
  }

  .hero-photo::before {
    inset: 0.45rem;
    border-radius: 16px;
  }

  .hero-ribbon p {
    font-size: 0.7rem;
    letter-spacing: 0.07em;
  }

  .brand-main {
    font-size: 0.86rem;
    letter-spacing: 0.14em;
  }

  .menu-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    padding: 0.54rem 0.72rem;
    font-weight: 700;
  }

  .site-nav {
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .metrics-grid,
  .process-line,
  .procedure-cards {
    grid-template-columns: 1fr;
  }

  .sticky-mobile-cta {
    display: grid;
  }
}
