:root {
  --ink: #101417;
  --muted: #5c6870;
  --line: #dfe6e2;
  --paper: #fbfcf8;
  --white: #ffffff;
  --green: #087a5b;
  --green-dark: #055940;
  --mint: #dff4ea;
  --soft-green: #eff8f3;
  --gold: #b98424;
  --shadow: 0 18px 50px rgba(16, 20, 23, 0.12);
}

* {
  box-sizing: border-box;
}

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

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-weight: 450;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

@font-face {
  font-family: "Price Tech";
  src: local("Bahnschrift"), local("Segoe UI Variable Display");
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  width: min(1120px, calc(100% - 28px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 40px rgba(16, 20, 23, 0.12);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  width: 206px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #303a40;
  font-size: 0.94rem;
  font-weight: 650;
}

.nav a {
  padding: 10px 12px;
  border-radius: 8px;
}

.lang-toggle {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--green-dark);
  font-weight: 750;
  cursor: pointer;
}

.nav a:hover,
.nav-cta {
  background: var(--mint);
  color: var(--green-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  place-items: center;
  align-content: center;
  gap: 4.5px;
  padding: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.menu-button span {
  width: 18px;
  height: 1.6px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease, width 0.2s ease;
}

.menu-button:hover {
  border-color: rgba(8, 122, 91, 0.35);
  box-shadow: 0 8px 20px rgba(16, 20, 23, 0.08);
}

body.menu-open .menu-button span:first-child {
  transform: translateY(6.1px) rotate(45deg);
}

body.menu-open .menu-button span:nth-child(2) {
  opacity: 0;
  width: 8px;
}

body.menu-open .menu-button span:last-child {
  transform: translateY(-6.1px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 128px 0 66px;
  overflow: hidden;
  background: #14221d;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: 0;
  background: url("https://images.unsplash.com/photo-1759143545924-beb85b33c0f1?auto=format&fit=crop&fm=jpg&q=72&w=2400") center / cover no-repeat;
  filter: blur(7px) saturate(0.86) contrast(0.96);
  transform: scale(1.03);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 34%;
  background: linear-gradient(180deg, rgba(251, 252, 248, 0), var(--paper));
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 20, 16, 0.9), rgba(6, 20, 16, 0.7) 48%, rgba(6, 20, 16, 0.32)),
    linear-gradient(180deg, rgba(6, 20, 16, 0.18), rgba(6, 20, 16, 0.62));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  color: #fff;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 14px;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.55rem, 6vw, 5.45rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.6;
}

.preview-note {
  max-width: 600px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  line-height: 1.55;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-weight: 750;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--green);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

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

.proof-strip {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 32px));
  margin: -36px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.proof-strip div {
  min-height: 112px;
  padding: 22px;
  display: grid;
  align-content: center;
  gap: 6px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  font-size: 1.08rem;
  font-weight: 750;
}

.proof-strip span {
  color: var(--muted);
  line-height: 1.5;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0 0;
}

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

.section-heading h2,
.contact-section h2 {
  margin-bottom: 0;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.9rem, 3.1vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  text-wrap: balance;
}

.work-grid,
.pricing-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

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

.work-card,
.price-card,
.process-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(16, 20, 23, 0.06);
  overflow: hidden;
}

.work-card div {
  padding: 18px;
}

.live-preview {
  position: relative;
  height: 270px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(239, 248, 243, 0.96), rgba(223, 244, 234, 0.8)),
    var(--soft-green);
  border-bottom: 1px solid var(--line);
}

.live-preview iframe {
  width: 390px;
  height: 820px;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(16, 20, 23, 0.18);
  transform: translateY(18px) scale(0.63);
  transform-origin: top center;
  pointer-events: none;
}

.preview-label {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  min-height: 34px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(16, 20, 23, 0.12);
}


.tag,
.plan {
  margin-bottom: 7px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.work-card h3 {
  margin-bottom: 0;
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.5;
}

.pricing-section {
  padding-top: 78px;
}

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

.price-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: rgba(8, 122, 91, 0.5);
  box-shadow: 0 24px 60px rgba(8, 122, 91, 0.16);
}

.price-card h3 {
  margin-bottom: 7px;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.78rem, 2.45vw, 2.22rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.price-card h3.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--ink);
  font-family: Rajdhani, "Price Tech", Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.15rem, 3.2vw, 2.9rem);
  font-weight: 800;
  line-height: 0.98;
}

.price-card h3.price span {
  color: inherit;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.86rem;
  font-weight: 850;
}

.price-card h3.custom-price {
  font-size: clamp(2.15rem, 3.2vw, 2.9rem);
  line-height: 0.98;
}

.best-for {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 0.92rem;
  font-weight: 750;
}

.price-card p:not(.plan) {
  color: var(--muted);
  line-height: 1.55;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.card-button {
  min-height: 46px;
  margin-top: auto;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  background: var(--white);
  font-weight: 750;
}

.mobile-card-action {
  display: none;
}

.card-button:hover,
.primary-card {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.package-toggle {
  display: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
  color: #303a40;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.care-plan {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--mint);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.care-plan span {
  color: var(--green-dark);
  line-height: 1.5;
}

.good-to-know {
  margin-top: 12px;
  padding: 16px 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  display: grid;
  gap: 6px;
}

.good-to-know strong {
  font-weight: 750;
}

.good-to-know span {
  color: var(--muted);
  line-height: 1.55;
}

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

.scope-grid article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.scope-grid strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 750;
}

.scope-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.why-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(16, 20, 23, 0.06);
}

.why-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
  font-weight: 800;
}

.why-grid span {
  color: var(--muted);
  line-height: 1.6;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.included-grid article {
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  display: grid;
  align-content: start;
  gap: 10px;
}

.included-grid strong {
  font-size: 1.08rem;
  font-weight: 750;
}

.included-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.process-section {
  padding-bottom: 0;
}

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

.process-grid article {
  padding: 24px;
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--soft-green);
  color: var(--green-dark);
  font-weight: 900;
}

.process-grid h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
  font-weight: 750;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.faq-section {
  padding-bottom: 76px;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(16, 20, 23, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 750;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 42px;
  padding: 38px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(8, 122, 91, 0.96), rgba(16, 20, 23, 0.92)),
    #087a5b;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: start;
}

.contact-section p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

.contact-section .contact-trust {
  margin-top: 18px;
  color: #fff;
  font-weight: 750;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

label {
  display: grid;
  gap: 7px;
  color: #344147;
  font-size: 0.9rem;
  font-weight: 650;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 12px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(8, 122, 91, 0.14);
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 34px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 880px) {
  .menu-button {
    display: grid;
  }

  .nav {
    position: fixed;
    top: 72px;
    left: 14px;
    right: 14px;
    display: none;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .header-actions {
    margin-left: auto;
  }

  body.menu-open .nav {
    display: grid;
  }

  .nav a {
    padding: 13px 12px;
    width: 100%;
    justify-content: start;
    text-align: left;
  }

  .lang-toggle {
    width: auto;
    min-height: 44px;
    padding: 0 12px;
    justify-content: center;
    text-align: center;
    font-size: 0.9rem;
  }

  .package-toggle {
    width: 100%;
    min-height: 44px;
    margin-top: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft-green);
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    font-weight: 800;
    cursor: pointer;
  }

  .toggle-icon {
    font-size: 1.15rem;
    line-height: 1;
    transition: transform 0.2s ease;
  }

  .price-card ul,
  .price-card .card-button {
    display: none;
  }

  .mobile-card-action {
    min-height: 44px;
    margin-top: 10px;
    padding: 11px 12px;
    border-radius: 8px;
    border: 1px solid var(--line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    background: var(--white);
    font-weight: 800;
  }

  .price-card.is-open ul {
    display: grid;
  }

  .price-card.is-open .card-button {
    min-height: 44px;
    margin-top: 14px;
    padding: 10px 12px;
    display: inline-flex;
  }

  .price-card.is-open .mobile-card-action {
    display: none;
  }

  .price-card.is-open .toggle-icon {
    transform: rotate(180deg);
  }

  .proof-strip,
  .work-grid,
  .pricing-grid,
  .included-grid,
  .scope-grid,
  .why-grid,
  .process-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .contact-section {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 8px 10px;
    gap: 8px;
  }

  .brand-logo {
    width: 138px;
  }

  .hero {
    min-height: auto;
    padding: 104px 0 42px;
    align-items: center;
  }

  .hero::before {
    background-position: 58% center;
    filter: blur(6px) saturate(0.86) contrast(0.96);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 20, 16, 0.94), rgba(6, 20, 16, 0.78)),
      linear-gradient(180deg, rgba(6, 20, 16, 0.22), rgba(6, 20, 16, 0.62));
  }

  h1 {
    margin-bottom: 12px;
    font-size: clamp(2.25rem, 10vw, 3.18rem);
    line-height: 1.06;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .preview-note {
    margin-top: 12px;
    font-size: 0.9rem;
    line-height: 1.48;
  }

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

  .hero-actions .button.secondary {
    width: auto;
    min-height: auto;
    padding: 4px 0;
    border: 0;
    background: transparent;
  }

  .proof-strip {
    margin-top: -18px;
    width: calc(100% - 20px);
  }

  .why-section,
  .faq-section,
  .scope-grid {
    display: none;
  }

  .proof-strip div {
    min-height: auto;
    padding: 10px 12px;
    border-bottom: 0;
  }

  .proof-strip {
    display: flex;
    gap: 6px;
    padding: 6px;
  }

  .proof-strip div:not(:first-child) {
    display: grid;
  }

  .proof-strip div {
    flex: 1;
    min-width: 0;
    border-right: 0;
    border-radius: 7px;
    background: var(--white);
  }

  .proof-strip strong {
    font-size: 0.76rem;
    line-height: 1.15;
  }

  .proof-strip span {
    font-size: 0.7rem;
    line-height: 1.28;
  }

  .section {
    width: calc(100% - 24px);
    padding-top: 38px;
  }

  .section-heading {
    margin-bottom: 14px;
  }

  .section-heading h2,
  .contact-section h2 {
    font-size: clamp(1.62rem, 7.2vw, 2.12rem);
    line-height: 1.14;
  }

  .work-grid,
  .pricing-grid,
  .included-grid,
  .process-grid {
    gap: 10px;
  }

  .work-card div,
  .price-card,
  .process-grid article,
  .included-grid article {
    padding: 15px;
  }

  .included-grid article {
    min-height: auto;
  }

  .included-section {
    padding-top: 34px;
  }

  .included-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .included-grid article {
    padding: 12px;
    gap: 6px;
    box-shadow: none;
  }

  .included-grid strong {
    font-size: 0.86rem;
    line-height: 1.22;
  }

  .included-grid span {
    font-size: 0.76rem;
    line-height: 1.34;
  }

  .live-preview {
    height: 188px;
  }

  .live-preview iframe {
    transform: translateY(12px) scale(0.46);
  }

  .preview-label {
    display: inline-flex;
  }

  .work-card h3 {
    font-size: 0.98rem;
    line-height: 1.42;
  }

  .process-section {
    padding-top: 36px;
  }

  .process-grid article {
    min-height: auto;
    padding: 13px 14px;
  }

  .process-grid article p {
    margin-bottom: 0;
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .process-grid h3 {
    margin-bottom: 4px;
    font-size: 1rem;
  }

  .price-card h3 {
    font-size: 1.62rem;
    margin-bottom: 5px;
  }

  .price-card h3.price {
    gap: 5px;
    font-size: 2.08rem;
  }

  .price-card h3.custom-price {
    font-size: 2.08rem;
  }

  .price-card h3.price span {
    font-size: 0.78rem;
  }

  .pricing-section {
    padding-top: 44px;
  }

  .pricing-grid {
    gap: 10px;
  }

  .price-card {
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(16, 20, 23, 0.05);
  }

  .price-card.featured {
    box-shadow: 0 14px 34px rgba(8, 122, 91, 0.12);
  }

  .price-card .plan {
    margin-bottom: 6px;
  }

  .price-card .best-for {
    margin-bottom: 8px;
    font-size: 0.88rem;
  }

  .price-card p:not(.plan) {
    margin-bottom: 0;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .care-plan,
  .site-footer {
    display: grid;
  }

  .care-plan {
    margin-top: 12px;
    padding: 14px 16px;
  }

  .good-to-know {
    margin-top: 10px;
    padding: 14px 16px;
  }

  .good-to-know span {
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .contact-section {
    width: calc(100% - 24px);
    margin-bottom: 24px;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 18;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--green);
    color: #fff;
    box-shadow: 0 18px 42px rgba(8, 122, 91, 0.34);
    font-weight: 850;
  }

  body.menu-open .mobile-sticky-cta {
    display: none;
  }

  body.contact-in-view .mobile-sticky-cta {
    display: none;
  }
}
