:root {
  --ink: #111715;
  --ink-soft: #3a4640;
  --surface: #ffffff;
  --surface-muted: #f5f7f3;
  --asphalt: #202522;
  --asphalt-2: #303631;
  --green: #59d137;
  --green-deep: #2f7d23;
  --pink: #e63d91;
  --accent: #c92f78;
  --accent-light: #ff79b9;
  --line: #dfe6db;
  --shadow: 0 18px 46px rgba(13, 21, 15, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

a:hover {
  color: var(--green-deep);
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--green);
  color: #081007;
  font-weight: 700;
}

.skip-link:focus {
  left: 12px;
}

.topbar {
  background: var(--asphalt);
  color: #f7fff2;
  font-size: 0.92rem;
}

.topbar-inner,
.nav-inner,
.section-inner,
.footer-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
  white-space: nowrap;
}

.topbar a {
  text-decoration: none;
  font-weight: 700;
}

.topbar-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

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

.logo-link {
  display: inline-flex;
  align-items: center;
  min-width: 180px;
}

.logo-link img {
  width: 210px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  color: var(--ink-soft);
}

.nav-links a {
  text-decoration: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
}

.button {
  background: var(--green);
  color: #081007;
  box-shadow: 0 8px 20px rgba(89, 209, 55, 0.28);
}

.button:hover {
  color: #081007;
  background: #7ae85a;
}

.button-secondary {
  background: var(--pink);
  color: #fff;
}

.button-secondary:hover {
  color: #fff;
  background: #c92f78;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.78);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.text-link {
  color: var(--green-deep);
  font-weight: 800;
}

.icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.hero {
  position: relative;
  min-height: 620px;
  color: #fff;
  overflow: hidden;
  background: var(--asphalt);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 11, 9, 0.9) 0%, rgba(7, 11, 9, 0.64) 48%, rgba(7, 11, 9, 0.25) 100%),
    linear-gradient(0deg, rgba(7, 11, 9, 0.24), rgba(7, 11, 9, 0.08));
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-callout {
  position: absolute;
  left: var(--callout-left);
  right: var(--callout-right);
  top: var(--callout-top);
  bottom: var(--callout-bottom);
  z-index: 2;
  max-width: 100%;
  padding: 4px 7px;
  border-radius: var(--callout-radius);
  color: #dce4dd;
  background: rgba(17, 23, 21, 0.76);
  font-size: 0.62rem;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 96px 0 74px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.section-dark .eyebrow,
.section-accent .eyebrow {
  color: var(--accent-light);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 3.45rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 28px;
  color: #eef6e9;
  font-size: 1.22rem;
}

.hero-actions,
.section-actions,
.phone-grid,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 820px;
  margin-top: 48px;
}

.trust-item {
  border-left: 4px solid var(--green);
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.1);
}

.trust-item strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
}

.trust-item span {
  display: block;
  margin-top: 6px;
  color: #e6f0e2;
  font-size: 0.92rem;
}

section {
  padding: 76px 0;
}

.section-muted {
  background: var(--surface-muted);
}

.section-dark {
  background: var(--asphalt);
  color: #f7fff2;
}

.section-accent {
  position: relative;
  color: #fff;
  background: var(--asphalt);
  overflow: hidden;
}

.section-accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 20, 16, 0.9), rgba(12, 20, 16, 0.58)),
    url("cta-background.webp") center / cover;
}

.section-accent .section-inner {
  position: relative;
  z-index: 1;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2,
.page-intro h1 {
  margin-bottom: 12px;
  font-size: 2.35rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.contact-title {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: 2.35rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading p,
.page-intro p,
.lead {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-dark .section-heading p,
.section-dark .lead,
.section-accent .lead {
  color: #dce8d8;
}

.section-heading .eyebrow,
.page-intro .eyebrow {
  color: var(--accent);
  font-size: 0.88rem;
}

.section-dark .section-heading .eyebrow,
.section-accent .section-heading .eyebrow {
  color: var(--accent-light);
}

.service-grid,
.client-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.client-card,
.proof-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(13, 21, 15, 0.08);
}

.service-card img,
.client-card img,
.proof-card img {
  width: 100%;
  height: 212px;
  object-fit: cover;
}

.card-body {
  padding: 22px;
}

.card-body h3 {
  margin-bottom: 8px;
  font-size: 1.24rem;
}

.card-body p {
  color: var(--ink-soft);
}

.plain-list {
  padding-left: 18px;
  margin: 0 0 18px;
  color: var(--ink-soft);
}

.plain-list li {
  margin: 6px 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: 44px;
  align-items: center;
}

.two-column.reverse {
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 0.9fr);
}

.feature-image {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero,
.page-hero-background,
.image-callout {
  --callout-x: 0;
  --callout-y: 0;
  --callout-left: var(--callout-x);
  --callout-right: auto;
  --callout-top: var(--callout-y);
  --callout-bottom: auto;
  --callout-radius: 0 0 4px 0;
}

.photo-callout,
.gallery-grid figure {
  --callout-x: 0;
  --callout-y: 0;
  --callout-left: var(--callout-x);
  --callout-right: auto;
  --callout-top: var(--callout-y);
  --callout-bottom: auto;
  --callout-radius: 0 0 4px 0;
  position: relative;
}

[data-callout-position="top-right"] {
  --callout-left: auto;
  --callout-right: var(--callout-x);
  --callout-top: var(--callout-y);
  --callout-bottom: auto;
  --callout-radius: 0 0 0 4px;
}

[data-callout-position="bottom-left"] {
  --callout-left: var(--callout-x);
  --callout-right: auto;
  --callout-top: auto;
  --callout-bottom: var(--callout-y);
  --callout-radius: 0 4px 0 0;
}

[data-callout-position="bottom-right"] {
  --callout-left: auto;
  --callout-right: var(--callout-x);
  --callout-top: auto;
  --callout-bottom: var(--callout-y);
  --callout-radius: 4px 0 0 0;
}

.photo-callout {
  display: block;
  min-height: 0;
}

.photo-callout img {
  display: block;
  width: 100%;
}

.image-callout {
  position: relative;
  display: block;
  min-height: 0;
  margin: 0;
}

.image-callout img {
  width: 100%;
}

.image-callout figcaption {
  position: absolute;
  left: var(--callout-left);
  right: var(--callout-right);
  top: var(--callout-top);
  bottom: var(--callout-bottom);
  max-width: 100%;
  padding: 4px 7px;
  border-radius: var(--callout-radius);
  color: #dce4dd;
  background: rgba(17, 23, 21, 0.76);
  font-size: 0.62rem;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

.image-callout-tab {
  position: absolute;
  left: var(--callout-left);
  right: var(--callout-right);
  top: var(--callout-top);
  bottom: var(--callout-bottom);
  z-index: 2;
  max-width: 100%;
  padding: 4px 7px;
  border-radius: var(--callout-radius);
  color: #dce4dd;
  background: rgba(17, 23, 21, 0.76);
  font-size: 0.62rem;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-image-callout,
.image-callout figcaption,
.image-callout-tab {
  -webkit-backdrop-filter: blur(2px) saturate(85%);
  backdrop-filter: blur(2px) saturate(85%);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.feature-item {
  border-left: 4px solid var(--green);
  padding: 12px 0 12px 16px;
}

.feature-item h3 {
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.feature-item p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

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

.area-grid.single {
  grid-template-columns: 1fr;
}

.area-block {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.area-block h3 {
  margin-bottom: 14px;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.city-list li {
  padding: 7px 10px;
  border: 1px solid #cdd8c8;
  border-radius: 6px;
  background: #f8fbf6;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-step {
  counter-increment: step;
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.process-step::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--green);
  color: #081007;
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 1fr;
  grid-auto-rows: 210px;
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-grid figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.section-dark .gallery-grid figure {
  background: #18201c;
  color: #e8f3e3;
}

.gallery-grid figure img {
  border-radius: 0;
}

.gallery-grid figure a,
.linked-image {
  display: block;
  min-height: 0;
  color: inherit;
  text-decoration: none;
}

.gallery-grid figure a {
  height: 100%;
}

.gallery-grid figure a img {
  height: 100%;
}

.gallery-grid figcaption,
.image-caption {
  padding: 9px 10px;
  color: inherit;
  font-size: 0.8rem;
  line-height: 1.35;
}

.gallery-grid .tall {
  grid-row: span 2;
}

.review-grid,
.nap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card,
.nap-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(13, 21, 15, 0.08);
}

.review-stars {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 1px;
}

.review-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.45;
}

.review-card p,
.nap-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.nap-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.nap-list li {
  margin-bottom: 8px;
  color: var(--ink-soft);
}

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

.stat-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.stat-card strong {
  display: block;
  color: var(--green-deep);
  font-size: clamp(1.25rem, 1.55vw, 1.55rem);
  line-height: 1.08;
  word-break: normal;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  word-break: normal;
}

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

.checklist-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  color: #dce8d8;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: inherit;
}

.quote-panel {
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quote-panel h1,
.quote-panel h2 {
  max-width: none;
  margin-bottom: 8px;
  font-size: 1.7rem;
  line-height: 1.15;
}

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

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink);
  font-weight: 800;
  font-size: 0.92rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #c7d3c1;
  border-radius: 6px;
  padding: 12px 12px;
  color: var(--ink);
  background: #fff;
}

.field textarea {
  min-height: 126px;
  resize: vertical;
}

.form-note {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.form-status {
  min-height: 22px;
  margin-top: 12px;
  color: var(--green-deep);
  font-weight: 800;
}

.form-status.is-error {
  color: #b3261e;
}

.turnstile-slot {
  min-height: 70px;
  margin: 4px 0 14px;
}

.page-hero {
  padding: 72px 0;
  color: #fff;
  background: var(--asphalt);
}

.page-hero .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 34px;
  align-items: center;
}

.page-hero h1 {
  margin-bottom: 14px;
  font-size: 2.75rem;
}

.page-hero p {
  color: #dce8d8;
  font-size: 1.12rem;
}

.page-hero img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-hero-background {
  position: relative;
  overflow: hidden;
}

.page-hero-background::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(7, 11, 9, 0.9), rgba(7, 11, 9, 0.58) 58%, rgba(7, 11, 9, 0.18));
}

.page-hero-background .section-inner {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 0.78fr);
  min-height: 380px;
}

.page-hero-background .hero-image {
  z-index: 0;
  border-radius: 0;
  box-shadow: none;
}

.page-hero-background .hero-image-callout {
  z-index: 2;
}

.about-hero::before {
  background:
    linear-gradient(90deg, rgba(7, 11, 9, 0.9), rgba(7, 11, 9, 0.58) 58%, rgba(7, 11, 9, 0.18)),
    url("beach-overlay.webp") center / cover no-repeat;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(290px, 0.28fr);
  gap: 36px;
  align-items: start;
}

.content-main h2 {
  margin-top: 34px;
  font-size: 1.7rem;
}

.content-main h2:first-child {
  margin-top: 0;
}

.side-cta {
  position: sticky;
  top: 112px;
  padding: 24px;
  border-radius: 8px;
  background: var(--surface-muted);
  border: 1px solid var(--line);
}

.side-service-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.side-service-list a {
  display: block;
  padding: 9px 10px;
  border: 1px solid #cdd8c8;
  border-radius: 6px;
  background: #fff;
  color: var(--ink-soft);
  text-decoration: none;
}

.side-service-list a:hover {
  color: var(--green-deep);
  border-color: var(--green);
}

.side-cta .button,
.side-cta .button-secondary {
  width: 100%;
  margin-top: 10px;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

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

.faq p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.faq-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
}

.faq-group {
  margin-bottom: 34px;
}

.faq-group h2 {
  margin-bottom: 10px;
}

.site-footer {
  padding: 48px 0 92px;
  color: #dfe9db;
  background: #111715;
}

.footer-inner {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1fr;
  gap: 34px;
}

.footer-logo {
  width: 260px;
  margin-bottom: 18px;
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
  font-size: 1.06rem;
}

.site-footer a {
  color: #f7fff2;
  text-decoration: none;
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list li {
  margin-bottom: 8px;
}

.mobile-callbar {
  display: none;
}

@media (max-width: 940px) {
  .topbar {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 16px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 4px;
  }

  .nav-links .button {
    margin-top: 8px;
  }

  .section-heading,
  .two-column,
  .two-column.reverse,
  .page-hero .section-inner,
  .content-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .trust-row,
  .service-grid,
  .client-grid,
  .proof-grid,
  .review-grid,
  .nap-grid,
  .stat-grid,
  .checklist-grid,
  .process,
  .area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  .nav-inner {
    min-height: 72px;
  }

  .logo-link img {
    width: 178px;
  }

  .hero {
    min-height: 0;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(7, 11, 9, 0.9), rgba(7, 11, 9, 0.55));
  }

  .hero-inner {
    padding: 72px 0 56px;
  }

  h1 {
    font-size: 2.25rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .section-heading h2,
  .page-intro h1 {
    font-size: 1.95rem;
  }

  .page-hero h1 {
    font-size: 2.15rem;
  }

  section {
    padding: 54px 0;
  }

  .trust-row,
  .service-grid,
  .client-grid,
  .proof-grid,
  .review-grid,
  .nap-grid,
  .stat-grid,
  .checklist-grid,
  .process,
  .area-grid,
  .field-grid,
  .faq-columns {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-grid .tall {
    grid-row: auto;
  }

  .button,
  .button-secondary,
  .button-ghost {
    width: 100%;
  }

  .side-cta {
    position: static;
  }

  .estimate-guidance {
    display: none;
  }

  .site-footer {
    padding-bottom: 104px;
  }

  .mobile-callbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: block;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px rgba(13, 21, 15, 0.12);
  }

  .mobile-callbar a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    padding: 10px;
    color: #081007;
    text-decoration: none;
    font-weight: 900;
  }

  .mobile-callbar a {
    background: var(--green);
  }
}
