:root {
  --navy: #062653;
  --navy-deep: #031d45;
  --navy-dark: #011a3d;
  --teal: #079d9e;
  --teal-bright: #10b9bd;
  --cyan: #58dce4;
  --text: #071f4b;
  --muted: #576983;
  --bg: #f6faff;
  --card: #ffffff;
  --line: #deebf4;
  --shadow: 0 14px 34px rgba(7, 31, 75, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  width: 100%;
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.45;
}

body.dialog-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.topbar {
  background: var(--navy-dark);
  color: #dff8ff;
  font-size: 10px;
  font-weight: 650;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  max-width: 1280px;
  min-height: 28px;
  margin: 0 auto;
  padding: 0 42px;
  align-items: center;
}

.site-header {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 74px;
  padding: 0 42px;
  background: #ffffff;
  border-bottom: 1px solid #edf3f8;
  box-shadow: 0 8px 24px rgba(7, 31, 75, 0.06);
}

.brand img {
  width: 76px;
  height: 58px;
  object-fit: contain;
}

.nav {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: center;
  gap: 38px;
  transform: translate(-50%, -50%);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav a:hover,
.nav a:focus-visible,
.nav .active {
  color: var(--teal);
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.nav-dropdown-toggle {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 30;
  min-width: 270px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px;
  max-height: min(420px, calc(100vh - 120px));
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(7, 31, 75, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.has-dropdown::after {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 29;
  width: 270px;
  height: 14px;
  content: "";
  transform: translateX(-50%);
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  background: #e9fbfb;
  color: var(--teal);
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown,
.has-dropdown.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  min-height: 38px;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--navy);
  white-space: nowrap;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible,
.nav-dropdown .sub-active {
  background: #e9fbfb;
  color: var(--teal);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(7, 31, 75, 0.18);
  border-radius: 8px;
  background: #ffffff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 19px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
.menu-toggle:focus-visible,
.dialog-close:focus-visible,
input:focus,
select:focus {
  outline: 3px solid rgba(16, 185, 189, 0.35);
  outline-offset: 3px;
}

.btn img {
  width: 16px;
  height: 16px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-bright));
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(7, 157, 158, 0.2);
}

.btn-secondary {
  min-width: 150px;
  background: #ffffff;
  border-color: var(--teal);
  color: var(--navy);
}

.btn-outline,
.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.72);
  color: #ffffff;
}

.header-cta {
  justify-self: end;
  min-width: 170px;
  padding-right: 15px;
  padding-left: 15px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(430px, 0.47fr) minmax(520px, 0.53fr);
  min-height: 444px;
  background: #ffffff;
  overflow: hidden;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px 0 34px 52px;
}

.hero h1 {
  max-width: 540px;
  margin: 0;
  color: var(--navy);
  font-size: 56px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.04;
}

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

.hero-copy > p {
  max-width: 500px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
  margin-top: 18px;
}

.hero-proof span {
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #f7fcff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.22;
}

.hero-proof strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
}

.trust {
  width: 330px;
  margin-top: 18px;
}

.hero-visual {
  display: flex;
  align-items: stretch;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.section {
  padding: 34px 48px 16px;
  text-align: center;
}

.section-label {
  margin: 0;
  color: var(--teal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.section h2,
.why h2,
.local-seo h2,
.final-cta h2,
.consultation-card h2 {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.13;
}

.revenue-fixes {
  display: grid;
  grid-template-columns: minmax(320px, 0.94fr) minmax(460px, 1.06fr);
  gap: 28px;
  align-items: stretch;
  padding: 34px 48px;
  background: linear-gradient(180deg, #f4faff 0%, #eef8fb 100%);
}

.revenue-fixes-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 240px;
  border-left: 5px solid var(--teal);
  padding: 22px 26px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(7, 31, 75, 0.06);
}

.revenue-fixes h2 {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--navy);
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
}

.revenue-fixes-copy > p:last-child {
  max-width: 590px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

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

.fix-grid article {
  display: flex;
  flex-direction: column;
  min-height: 240px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(7, 31, 75, 0.06);
}

.fix-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #d9f7f5;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.fix-grid h3 {
  margin: 22px 0 0;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
}

.fix-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  width: 100%;
  margin: 22px 0 0;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 22px 15px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 13px 27px rgba(7, 31, 75, 0.07);
}

.service-card img {
  height: 46px;
  margin: 0 auto 14px;
}

.service-card h3 {
  min-height: 36px;
  margin: 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
}

.service-card p {
  margin: 10px 0 12px;
  color: #334766;
  font-size: 12px;
  line-height: 1.46;
}

.service-card a {
  margin-top: auto;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.why {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  align-items: center;
  min-height: 124px;
  margin: 5px 42px 9px;
  padding: 14px 22px;
  border-radius: 8px;
  background: linear-gradient(122deg, #062a62, #011a3d);
  box-shadow: var(--shadow);
  color: #ffffff;
}

.why .section-label {
  color: #b8fffb;
}

.why h2 {
  margin-top: 12px;
  color: #ffffff;
  font-size: 21px;
}

.why-item {
  min-height: 84px;
  padding: 0 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.34);
  text-align: center;
}

.why-item img {
  height: 28px;
  margin: 0 auto 5px;
  filter: brightness(0) saturate(100%) invert(81%) sepia(66%) saturate(857%) hue-rotate(134deg) brightness(99%) contrast(92%);
}

.why-item h3 {
  margin: 0;
  color: #19d5d3;
  font-size: 11px;
  font-weight: 900;
}

.why-item p {
  margin: 5px 0 0;
  color: #eff8ff;
  font-size: 7.5px;
  line-height: 1.26;
}

.process {
  margin: 0 42px 10px;
  padding: 14px 25px 14px;
  border: 1px solid #edf4f8;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(7, 31, 75, 0.06);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  margin-top: 14px;
}

.process-grid article {
  position: relative;
  text-align: center;
}

.process-grid article:not(:last-child)::after {
  position: absolute;
  top: 27px;
  right: -16px;
  width: 33px;
  border-top: 3px dotted var(--teal-bright);
  content: "";
}

.step-number {
  position: absolute;
  top: -1px;
  left: calc(50% - 32px);
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal-bright);
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 8px;
  border: 1px solid #d5edf3;
  border-radius: 50%;
  background: #faffff;
  box-shadow: 0 8px 18px rgba(7, 31, 75, 0.08);
}

.step-icon img {
  width: 27px;
  height: 27px;
}

.process h3 {
  margin: 0;
  color: var(--navy);
  font-size: 9.3px;
  font-weight: 900;
  line-height: 1.12;
}

.process p {
  margin: 5px auto 0;
  max-width: 116px;
  color: #334766;
  font-size: 7px;
  line-height: 1.25;
}

.btn-process {
  min-width: 260px;
  min-height: 32px;
  margin-top: 10px;
  border-color: var(--navy);
  background: #ffffff;
  color: var(--navy);
}

.specialties {
  margin: 0 42px 14px;
  padding: 8px 28px 8px;
  border: 1px solid #edf4f8;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 11px 26px rgba(7, 31, 75, 0.05);
}

.specialty-list {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  margin-top: 7px;
}

.specialty-list span {
  display: grid;
  min-height: 50px;
  align-content: center;
  justify-items: center;
  gap: 5px;
  padding: 0 8px;
  border-left: 1px solid var(--line);
  color: var(--navy);
  font-size: 9.6px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.specialty-list span:first-child {
  border-left: 0;
}

.specialty-list img {
  height: 25px;
}

.testimonials {
  margin: 0 42px 14px;
  text-align: center;
}

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

.testimonial-grid article {
  min-height: 106px;
  padding: 13px 20px;
  border: 1px solid #eef4f8;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(7, 31, 75, 0.05);
  text-align: left;
}

.stars {
  color: #f7b731;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.testimonial-grid p {
  margin: 6px 0 7px;
  color: #162e57;
  font-size: 8.5px;
  line-height: 1.36;
}

.testimonial-grid strong,
.testimonial-grid span {
  display: block;
  color: var(--navy);
  font-size: 9.2px;
}

.testimonial-grid span {
  color: #52647e;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 7px;
}

.slider-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #234c82;
}

.slider-dots span:nth-child(2) {
  background: #9cb3c9;
}

.local-seo {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 24px;
  padding: 16px 42px 16px;
  background: linear-gradient(116deg, #03285c, #011a3d);
  color: #ffffff;
}

.local-copy {
  max-width: 540px;
}

.local-seo h2 {
  margin: 0;
  color: #ffffff;
  font-size: 19px;
}

.local-seo p {
  margin: 8px 0 0;
  color: #e2f4fa;
  font-size: 8.7px;
  line-height: 1.3;
}

.check-grid,
.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 14px;
  margin-top: 9px;
}

.check-grid span,
.area-list span {
  position: relative;
  padding-left: 16px;
  color: #e8fbff;
  font-size: 7.8px;
}

.check-grid span::before,
.area-list span::before {
  position: absolute;
  left: 0;
  top: 4px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--teal-bright);
  border-radius: 50%;
  background: var(--teal-bright);
  content: "";
}

.local-actions {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  margin-top: 11px;
}

.local-actions .btn {
  min-height: 34px;
  padding-right: 10px;
  padding-left: 10px;
  font-size: 8.4px;
}

.area-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 20px;
  align-items: center;
  justify-self: end;
  width: 100%;
  max-width: 640px;
  min-height: 182px;
  padding: 16px 18px;
  border-radius: 12px;
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.15);
}

.area-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 13px;
}

.area-card p {
  margin-top: 8px;
  color: #51647d;
}

.area-list span {
  color: #183359;
}

.area-card img {
  justify-self: end;
  width: 210px;
  max-width: 100%;
  border-radius: 14px;
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr 380px;
  align-items: center;
  min-height: 114px;
  background: linear-gradient(112deg, #0ab0b3, #058998);
  color: #ffffff;
}

.skyline {
  width: 180px;
  height: 114px;
  background-image: url("assets/full-homepage-mockup.png");
  background-repeat: no-repeat;
  background-size: 863px 1823px;
  background-position: left -1569px;
}

.final-copy {
  padding: 0 24px;
}

.final-cta h2 {
  margin: 0;
  color: #ffffff;
  font-size: 17px;
}

.final-cta p {
  margin: 4px 0 0;
  color: #eefeff;
  font-size: 8.7px;
  max-width: 330px;
}

.final-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  padding-right: 42px;
}

.final-actions .btn {
  min-height: 36px;
  padding-right: 10px;
  padding-left: 10px;
  font-size: 8.5px;
}

.final-meta {
  display: flex;
  position: absolute;
  right: 42px;
  bottom: 8px;
  gap: 34px;
  padding: 0;
  color: #eaffff;
  font-size: 9px;
}

.footer {
  display: grid;
  grid-template-columns: 1.25fr 0.55fr 1fr 1.05fr 0.85fr;
  gap: 18px;
  padding: 8px 42px 5px;
  background: linear-gradient(112deg, var(--navy-dark), #062b61);
  color: #ffffff;
}

.footer-brand img {
  width: 82px;
  height: 66px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 180px;
  margin: 3px 0 4px;
  color: #c8dcec;
  font-size: 7.2px;
  line-height: 1.12;
}

.footer h3 {
  margin: 0 0 3px;
  color: #ffffff;
  font-size: 10px;
}

.footer a,
.footer p {
  color: #ffffff;
  font-size: 7.2px;
}

.footer-links a {
  display: block;
  margin-bottom: 3px;
}

.footer-contact p {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 3px 0;
  line-height: 1.1;
}

.footer-contact img {
  width: 12px;
  height: 12px;
  margin-top: 1px;
  filter: brightness(0) invert(1);
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border-radius: 50%;
  background: #1c8ec1;
  font-weight: 900;
}

.business-hours p {
  margin: 3px 0;
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  align-items: center;
  margin-top: 3px;
  padding-top: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-size: 9px;
}

.footer-bottom span:last-child {
  display: inline-flex;
  gap: 14px;
  align-items: center;
}

.footer-bottom i {
  width: 1px;
  height: 10px;
  background: rgba(255, 255, 255, 0.55);
}

@media (min-width: 1180px) {
  .topbar-inner,
  .site-header,
  .section,
  .local-seo,
  .footer {
    padding-right: 64px;
    padding-left: 64px;
  }

  .why,
  .process,
  .specialties,
  .testimonials {
    margin-right: 64px;
    margin-left: 64px;
  }
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 48px 36px 30px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .revenue-fixes {
    grid-template-columns: 1fr;
    padding-right: 36px;
    padding-left: 36px;
  }
}

.consultation-dialog {
  width: min(520px, calc(100vw - 32px));
  border: 0;
  border-radius: 14px;
  padding: 0;
  box-shadow: 0 24px 80px rgba(1, 26, 61, 0.28);
}

.consultation-dialog::backdrop {
  background: rgba(1, 26, 61, 0.58);
  backdrop-filter: blur(4px);
}

.consultation-card {
  display: grid;
  gap: 16px;
  padding: 30px;
  background: #ffffff;
}

.consultation-card h2 {
  margin: 0 0 4px;
  font-size: 28px;
}

.consultation-card label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.consultation-card input,
.consultation-card select {
  width: 100%;
  min-height: 45px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--text);
  background: #ffffff;
}

.dialog-close {
  justify-self: end;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 700px) {
  .hero-proof,
  .service-grid,
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
  }

  .process-grid article:not(:last-child)::after {
    display: none;
  }

  .why {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }

  .why-intro {
    grid-column: 1 / -1;
  }

  .why-item:nth-child(2n) {
    border-left: 0;
  }

  .specialties,
  .testimonials,
  .process,
  .why {
    margin-right: 24px;
    margin-left: 24px;
  }

  .specialty-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .local-seo,
  .final-cta,
  .footer,
  .fix-grid {
    grid-template-columns: 1fr;
  }

  .skyline {
    width: 100%;
    height: 170px;
  }

  .final-actions,
  .final-meta {
    grid-column: auto;
    padding: 0 24px 20px;
  }
}

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

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px 20px;
  }

  .brand img {
    width: 78px;
    height: 58px;
  }

  .menu-toggle {
    display: inline-flex;
    padding: 11px 15px;
  }

  .nav {
    position: static;
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transform: none;
  }

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

  .nav a {
    min-height: 42px;
    border-top: 1px solid var(--line);
  }

  .nav-item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 44px;
    height: 42px;
    border-top: 1px solid var(--line);
    border-radius: 0;
  }

  .nav-dropdown {
    position: static;
    display: none;
    grid-column: 1 / -1;
    min-width: 0;
    max-height: none;
    border: 0;
    border-radius: 0;
    width: 100%;
    overflow: hidden;
    overflow-y: visible;
    overscroll-behavior: auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .has-dropdown::after {
    display: none;
  }

  .has-dropdown:hover .nav-dropdown,
  .has-dropdown:focus-within .nav-dropdown {
    display: none;
  }

  .has-dropdown.is-open .nav-dropdown {
    display: grid;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown a {
    display: block;
    min-height: 40px;
    border-top: 1px solid var(--line);
    border-radius: 0;
    padding: 12px 0 0 18px;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .header-cta {
    display: none;
  }

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

  .hero-copy {
    padding: 42px 28px 28px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 330px;
  }

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

  .revenue-fixes {
    padding: 28px 22px;
  }

  .revenue-fixes-copy {
    min-height: auto;
    padding: 22px;
  }

  .revenue-fixes h2 {
    font-size: 30px;
  }

  .section {
    padding-right: 22px;
    padding-left: 22px;
  }

  .service-grid,
  .process-grid,
  .specialty-list,
  .testimonial-grid,
  .check-grid,
  .area-list,
  .area-card,
  .final-actions,
  .footer {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

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

  .why-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 18px;
  }

  .local-seo,
  .footer {
    padding: 28px;
  }

  .area-card {
    padding: 22px;
  }

  .area-card img {
    justify-self: center;
  }

  .final-copy {
    padding: 22px 24px 8px;
  }
}

@media (max-width: 480px) {
  .hero-actions,
  .btn,
  .btn-secondary,
  .btn-process,
  .local-actions {
    width: 100%;
  }

  .trust {
    width: 100%;
  }
}
