@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap";
/* [next]/internal/font/google/inter_5972bc34.module.css [app-client] (css) */
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/2c55a0e60120577a-s.2a48534a.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/9c72aa0f40e4eef8-s.18a48cbc.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/ad66f9afd8947f86-s.7a40eb73.woff2") format("woff2");
  unicode-range: U+1F??;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/5476f68d60460930-s.c995e352.woff2") format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/2bbe8d2671613f1f-s.76dcb0b2.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/1bffadaabf893a1e-s.7cd81963.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/83afe278b6a6bb3c-s.p.3a6ba036.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Inter Fallback;
  src: local(Arial);
  ascent-override: 90.44%;
  descent-override: 22.52%;
  line-gap-override: 0.0%;
  size-adjust: 107.12%;
}

.inter_5972bc34-module__OU16Qa__className {
  font-family: Inter, Inter Fallback;
  font-style: normal;
}

/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --primary: #0f172a;
  --secondary: #334155;
  --accent: #dc2626;
  --accent-hover: #b91c1c;
  --background: #dcebfe;
  --surface: #fff;
  --text-main: #0f172a;
  --text-muted: #475569;
  --border: #bfdbfe;
  --error: #ef4444;
  --success: #16a34a;
  --radius: .5rem;
  --shadow-sm: 0 1px 2px 0 #0000000d;
  --shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
  --shadow-lg: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  scroll-behavior: smooth;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  color: var(--text-main);
  background-color: var(--background);
  font-family: Inter, sans-serif;
  line-height: 1.6;
}

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

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (max-width: 480px) {
  .container {
    padding: 0 .75rem;
  }
}

.btn {
  border-radius: var(--radius);
  justify-content: center;
  align-items: center;
  padding: .75rem 1.75rem;
  font-weight: 600;
  transition: all .2s;
  display: inline-flex;
  box-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -1px #0000000f;
}

.btn:active {
  box-shadow: none;
  transform: translateY(1px);
}

.logo-sub {
  margin-left: 4px;
  font-size: 1.5rem;
  font-weight: 800;
}

.logo-text {
  letter-spacing: -.02em;
  font-size: 1.5rem;
  font-weight: 800;
}

.btn-primary {
  background-color: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
}

.btn-outline {
  border: 1px solid var(--border);
  background-color: #0000;
}

.btn-outline:hover {
  background-color: var(--surface);
}

.section {
  padding: 4rem 0;
}

.heading-lg {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-md {
  margin-bottom: 1rem;
  font-size: 1.875rem;
  font-weight: 600;
}

.text-lead {
  color: var(--text-muted);
  font-size: 1.125rem;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open #sticky-cta {
  display: none !important;
}

nextjs-portal, #oa-build-indicator, #__next-build-watcher, [data-nextjs-toast] {
  visibility: hidden !important;
  opacity: 0 !important;
  display: none !important;
}

/* [project]/src/components/Header.module.css [app-client] (css) */
.Header-module__hBw1pG__header {
  z-index: 50;
  padding: 1rem 0;
  position: sticky;
  top: 0;
}

.Header-module__hBw1pG__headerBackground {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: -1;
  border-bottom: 1px solid var(--border);
  background: #fffffff2;
  position: absolute;
  inset: 0;
}

.Header-module__hBw1pG__headerContainer {
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.Header-module__hBw1pG__logo {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: -.025em;
  z-index: 52;
  font-size: 1.25rem;
  font-weight: 700;
}

@media (min-width: 400px) {
  .Header-module__hBw1pG__logo {
    font-size: 1.5rem;
  }
}

.Header-module__hBw1pG__logoHighlight {
  color: #2563eb;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px #2563eb26;
  -webkit-background-clip: text;
  font-weight: 800;
}

.Header-module__hBw1pG__menuBtn {
  z-index: 52;
  cursor: pointer;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  padding: 0;
  display: flex;
}

.Header-module__hBw1pG__menuIcon {
  background-color: var(--primary);
  border-radius: 3px;
  width: 100%;
  height: 3px;
  transition: all .3s;
  display: block;
}

.Header-module__hBw1pG__nav {
  z-index: 1000;
  text-align: center;
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  width: 85%;
  max-width: 400px;
  padding: 2rem;
  transition: transform .3s ease-in-out;
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  overflow-y: auto;
  transform: translateX(100%);
  box-shadow: -5px 0 15px #0000001a;
}

.Header-module__hBw1pG__navOpen {
  transform: translateX(0);
}

.Header-module__hBw1pG__menuBackdrop {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  background-color: #0000004d;
  transition: opacity .3s;
  position: fixed;
  inset: 0;
}

.Header-module__hBw1pG__menuBackdropOpen {
  opacity: 1;
  pointer-events: auto;
}

.Header-module__hBw1pG__navLink {
  color: var(--primary);
  padding: .5rem 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  transition: color .2s;
}

.Header-module__hBw1pG__navLink:hover {
  color: var(--accent);
}

.Header-module__hBw1pG__mobileMenuHeader {
  border-bottom: 1px solid var(--border);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 2rem;
  padding: 3.5rem .5rem 1.5rem;
  display: flex;
}

.Header-module__hBw1pG__mobileMenuTitle {
  color: var(--primary);
  text-transform: uppercase;
  word-wrap: break-word;
  width: 100%;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
}

@media (min-width: 1024px) {
  .Header-module__hBw1pG__mobileMenuHeader {
    display: none;
  }
}

.Header-module__hBw1pG__desktopCTA {
  display: none;
}

.Header-module__hBw1pG__dropdown {
  display: inline-block;
  position: relative;
}

.Header-module__hBw1pG__dropdownMenu {
  z-index: 1000;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: #fff;
  min-width: 220px;
  margin-top: .5rem;
  padding: .5rem 0;
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 8px 16px #0000001a;
}

.Header-module__hBw1pG__dropdownMenu:before {
  content: "";
  border-bottom: 6px solid #fff;
  border-left: 6px solid #0000;
  border-right: 6px solid #0000;
  width: 0;
  height: 0;
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
}

.Header-module__hBw1pG__dropdownItem {
  color: var(--text-main);
  padding: .75rem 1.5rem;
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .2s;
  display: block;
}

.Header-module__hBw1pG__dropdownItem:hover {
  background-color: var(--surface);
  color: var(--accent);
}

@media (min-width: 1024px) {
  .Header-module__hBw1pG__dropdown:hover .Header-module__hBw1pG__dropdownMenu {
    animation: .2s ease-in-out Header-module__hBw1pG__fadeIn;
    display: block;
  }
}

@keyframes Header-module__hBw1pG__fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, 10px);
  }

  to {
    opacity: 1;
    transform: translate(-50%);
  }
}

@media (min-width: 1024px) {
  .Header-module__hBw1pG__menuBtn {
    display: none;
  }

  .Header-module__hBw1pG__nav {
    width: auto;
    max-width: none;
    height: auto;
    box-shadow: none;
    background: none;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    padding: 0;
    position: static;
    overflow-y: visible;
    transform: none;
  }

  .Header-module__hBw1pG__navLink {
    color: var(--text-muted);
    padding: .5rem 0;
    font-size: 1rem;
    font-weight: 500;
  }

  .Header-module__hBw1pG__navLink:hover, .Header-module__hBw1pG__dropdown:hover .Header-module__hBw1pG__navLink {
    color: var(--accent);
  }

  .Header-module__hBw1pG__mobileNavCTA {
    display: none;
  }

  .Header-module__hBw1pG__desktopCTA {
    display: block;
  }

  .Header-module__hBw1pG__headerBackground {
    background: #ffffffe6;
    display: block;
  }
}

/* [project]/src/components/Footer.module.css [app-client] (css) */
.Footer-module__S6Hkya__footer {
  background-color: var(--primary);
  color: #fff;
  padding-top: 4rem;
}

.Footer-module__S6Hkya__footerContainer {
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 4rem;
  display: grid;
}

@media (min-width: 768px) {
  .Footer-module__S6Hkya__footerContainer {
    grid-template-columns: repeat(3, 1fr);
  }
}

.Footer-module__S6Hkya__heading {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.Footer-module__S6Hkya__text {
  color: #94a3b8;
  line-height: 1.7;
}

.Footer-module__S6Hkya__subHeading {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.Footer-module__S6Hkya__list {
  padding: 0;
  list-style: none;
}

.Footer-module__S6Hkya__list li {
  margin-bottom: .75rem;
}

.Footer-module__S6Hkya__list a {
  color: #cbd5e1;
  transition: color .2s;
}

.Footer-module__S6Hkya__list a:hover {
  color: #fff;
  text-decoration: underline;
}

.Footer-module__S6Hkya__copyright {
  text-align: center;
  color: #64748b;
  border-top: 1px solid #ffffff1a;
  padding: 1.5rem 0;
  font-size: .875rem;
}

/* [project]/src/components/StickyCTA.module.css [app-client] (css) */
.StickyCTA-module__gaxrjW__stickyContainer {
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  transform: translateY(20px);
}

.StickyCTA-module__gaxrjW__visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .StickyCTA-module__gaxrjW__stickyContainer {
    pointer-events: none;
    align-items: center;
    width: 100%;
    bottom: 1.5rem;
    left: 0;
    right: 0;
  }

  .StickyCTA-module__gaxrjW__mainButtons {
    pointer-events: auto;
    justify-content: center;
    gap: 1rem;
    padding: 0 1rem;
    display: flex;
  }
}

.StickyCTA-module__gaxrjW__backdrop {
  z-index: 9998;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background: #0006;
  animation: .2s StickyCTA-module__gaxrjW__fadeIn;
  position: fixed;
  inset: 0;
}

.StickyCTA-module__gaxrjW__menu {
  opacity: 0;
  pointer-events: none;
  transform-origin: bottom;
  flex-direction: column;
  gap: .8rem;
  margin-bottom: .5rem;
  transition: all .2s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  transform: translateY(20px)scale(.9);
}

.StickyCTA-module__gaxrjW__menuOpen {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0)scale(1);
}

.StickyCTA-module__gaxrjW__menuItem {
  color: var(--text-main);
  background: #fff;
  border-radius: 50px;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  min-width: 200px;
  padding: .8rem 1.25rem;
  text-decoration: none;
  transition: transform .2s;
  display: flex;
  box-shadow: 0 4px 12px #00000026;
}

.StickyCTA-module__gaxrjW__menuItem:active {
  transform: scale(.96);
}

.StickyCTA-module__gaxrjW__regionLabel {
  color: var(--accent);
  background: #eff6ff;
  border-radius: 4px;
  padding: .25rem .5rem;
  font-size: .9rem;
  font-weight: 800;
}

.StickyCTA-module__gaxrjW__number {
  font-size: 1rem;
  font-weight: 600;
}

.StickyCTA-module__gaxrjW__fab {
  cursor: pointer;
  border: none;
  border-radius: 50px;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s cubic-bezier(.34, 1.56, .64, 1);
  display: flex;
  box-shadow: 0 4px 15px #0003;
}

.StickyCTA-module__gaxrjW__fab:active {
  transform: scale(.95);
}

.StickyCTA-module__gaxrjW__callFab {
  background-color: var(--primary);
  color: #fff;
}

.StickyCTA-module__gaxrjW__callFab.StickyCTA-module__gaxrjW__fabActive {
  background-color: var(--text-muted);
}

.StickyCTA-module__gaxrjW__estimateFab {
  background-color: var(--accent);
  color: #fff;
}

.StickyCTA-module__gaxrjW__icon {
  font-size: 1.2rem;
}

@keyframes StickyCTA-module__gaxrjW__fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (min-width: 768px) {
  .StickyCTA-module__gaxrjW__stickyContainer {
    display: none;
  }
}

/*# sourceMappingURL=%5Broot-of-the-server%5D__c3ed1917._.css.map*/