.custom-dropdown {
    position: absolute;
    z-index: 9999;
}
.profilee-pic {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50% !important;
}

.step-error-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: red;
    border-radius: 50%;
    margin-left: 6px;
}

.is-valid {
    border-color: #198754 !important;
}

.is-invalid {
    border-color: #dc3545 !important;
}

.btn-primary,
.btn-success,
.bg-primary,
.bg-success {
  background-color: #111111 !important;
  border-color: #111111 !important;
  color: #ffffff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-success:hover,
.btn-success:focus {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 0 0 0.2rem rgba(17, 17, 17, 0.18) !important;
}

.text-primary,
.text-success {
  color: #111111 !important;
}

a.text-primary:hover,
a.text-success:hover,
a.text-primary:focus,
a.text-success:focus {
  color: #000000 !important;
}

.badge.bg-success,
.badge.bg-primary {
  background-color: #111111 !important;
  color: #ffffff !important;
}

.btn-outline-primary,
.btn-outline-success {
  color: #111111 !important;
  border-color: #111111 !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-success:hover,
.btn-outline-success:focus {
  background-color: #111111 !important;
  border-color: #111111 !important;
  color: #ffffff !important;
}
.modal-dialog {
  max-height: 90vh;
}

.modal-content {
  max-height: 90vh;
}

.modal-body {
  overflow-y: auto;
}


<style>
@media (min-width: 576px) {
  .modal-xl {
    max-width: 90%;
  }
}
</style>




.step-content {
    position: relative;
    transition: all 0.3s ease-in-out;
}




.glowing-img {
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.7); /* Use a white glow for better contrast */
  transition: box-shadow 0.3s ease-in-out;
}

.glowing-img:hover {
  box-shadow: 0 0 30px 8px rgba(0, 123, 255, 1); /* Blue glow on hover */
}

.testimonial-card {
  background: #1e1e1e;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s; /* Adding transition for shadow */
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 123, 255, 0.5); /* Adding a subtle glow on hover */
}

  .carousel-inner {
    padding-bottom: 2rem;
  }

  @media (max-width: 767px) {
    .carousel-item .col-md-6,
    .carousel-item .col-lg-4 {
      display: block !important;
      flex: 0 0 100%;
      max-width: 100%;
      margin-bottom: 1.5rem;
    }

    .carousel-item .d-none {
      display: block !important;
    }
  }

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
  }

  .glowing-img {
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 255, 255, 0.4);
    transition: box-shadow 0.3s ease;
  }

  .glowing-img:hover {
    box-shadow: 0 0 15px #fff, 0 0 25px rgba(255, 255, 255, 0.7);
  }

 #listings::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: rgba(0, 123, 255, 0.1);
  filter: blur(40px);
  z-index: -1;
  border-radius: 20px;
}

#listings:hover {
  box-shadow: 0 0 30px rgba(0, 123, 255, 0.6);
}

@keyframes glow {
  0% {
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.6);
  }
  100% {
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
  }
}

#listings {
  animation: glow 3s ease-in-out infinite;
  border-radius: 15px;
  background-color: #f9f9f9; /* optional background */
  z-index: 1;
  position: relative;
}

/* Glowing effect keyframe */
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 10px rgba(0, 255, 180, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 255, 180, 0.6);
  }
  100% {
    box-shadow: 0 0 10px rgba(0, 255, 180, 0.3);
  }
}

/* Banner styling */
.glowing-banner {
  background-color: #0f172; /* Custom dark blue background */
  color: #ffffff;
  border-radius: 20px;
  animation: glowPulse 4s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

/* Optional blur background glow */
.glowing-banner::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: -30px;
  background: rgba(0, 255, 180, 0.08);
  filter: blur(80px);
  z-index: -1;
}

/* Footer glow */
.glowing-footer {
  background-color: #1e293b; /* Dark slate background */
  color: #fffff;
  animation: glowPulse 4s ease-in-out infinite;
  border-top: 2px solid rgba(0, 255, 180, 0.2);
  border-radius: 15px 15px 0 0;
  position: relative;
}

/* Footer glow blur layer */
.glowing-footer::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: rgba(0, 255, 180, 0.05);
  filter: blur(60px);
  z-index: -1;
}
.glowing-banner:hover,
.glowing-footer:hover {
  box-shadow: 0 0 40px rgba(0, 255, 180, 0.8);
}


.btn-secondary {
  color: #ff !important; }

img {
  width: 100%; }

.logo {
  width: 80px; }

.navbar {
  opacity: 0.9;
  text-transform: uppercase; }

.social a {
  margin-right: 0.4rem; }

#showcase {
  background: url("../webfonts/showcase.44c1ad408ad8.jpg") no-repeat top center fixed/cover;
  position: relative;
  min-height: 650px;
  color: #fff;
  padding-top: 6rem; }
  #showcase .home-search {
    min-height: 400px;
    position: relative;
    border-radius: 5px; }
  #showcase .overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    min-height: 400px;
    width: 100%;
    background: rgba(51, 51, 51, 0.8); }

#services {
  background: url("../images/building.fd210196d34a.jpg") no-repeat top center fixed/cover;
  min-height: 300px;
  position: relative;
  overflow: hidden; }
  #services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    min-height: 100%;
    width: 100%;
    background: rgba(32, 134, 107, 0.8); }

#showcase-inner {
  background: url("../img/building.fd210196d34a.jpg") no-repeat top center fixed/cover;
  position: relative;
  overflow: hidden;
  min-height: 200px; }
  #showcase-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    min-height: 100%;
    width: 100%;
    background: rgba(32, 134, 107, 0.8); }
  #showcase-inner.showcase-search {
    min-height: 270px; }

#work {
  padding: 6rem 0; }

.listing-preview a {
  position: relative; }

@media (max-width: 991px) {
  #showcase {
    padding-top: 4rem; }
    #showcase h1 {
      font-size: 40px; }
  .hide-md-down {
    display: none; } }

@media (max-width: 768px) {
  #showcase {
    padding-top: 3rem; }
    #showcase h1 {
      font-size: 40px; }
    #showcase p {
      display: none; }
  #top-bar {
    text-align: center; }
    #top-bar .social {
      text-align: center !important; } }

@media (max-width: 576px) {
  #showcase h1 {
    font-size: 30px; }
  #showcase-inner h1 {
    font-size: 40px; } }

.progress {
    height: 25px;
    background-color: #f3f3f3;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background-color: #4caf50;
    color: white;
    text-align: center;
    line-height: 25px;
}


.side-bar {
    position: fixed; /* Ensures it stays in place */
    top: 0;
    left: 0;
    height: 100%; /* Full height */
    width: 250px; /* Adjust as needed */
    overflow-y: auto; /* Allows vertical scrolling */
    background-color: #336; /* Sidebar background */
    color: #fff;
    z-index: 1000;
}

.side-bar nav a {
    display: flex;
    align-items: center;
    padding: 25px 20px;
    text-decoration: none;
    color: #ffff;
    font-size: 1.5rem;
    transition: 0.3s;
}

.side-bar nav a:hover {
    background: #555; /* Highlight on hover */
}

.side-bar #close-btn {
    display: none; /* Default hidden */
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
}




@media (max-width: 768px) {
  .profile {
    right: 1rem;
    width: 200px;
    padding: 1rem;
  }

  .profile .image {
    width: 60px;
    height: 60px;
  }
}

#fee-breakdown {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 1.5rem;
    margin-top: 1rem;
    border-radius: 0.75rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    max-width: 600px;
}

#fee-breakdown p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

#fee-breakdown p strong {
    color: #555;
}

#fee-breakdown hr {
    margin: 1rem 0;
    border: none;
    border-top: 1px solid #ccc;
}

#fee-breakdown p:last-child {
    font-size: 1.1rem;
    font-weight: bold;
    color: #000;
}

:root {
  --hl-ink: #10231f;
  --hl-forest: #0f5f46;
  --hl-forest-dark: #07352d;
  --hl-signature: #f2a51a;
  --hl-signature-soft: #fff3d6;
  --hl-mint: #3fd6a2;
  --hl-paper: #f7f5ef;
  --hl-line: rgba(16, 35, 31, 0.12);
}

#mainNav {
  background: rgba(7, 53, 45, 0.96) !important;
  border-bottom: 1px solid rgba(242, 165, 26, 0.24);
  box-shadow: 0 16px 40px rgba(7, 53, 45, 0.18);
}

#mainNav .homelander-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(92px, 12vw, 138px);
  height: clamp(68px, 8vw, 92px);
  padding: clamp(0.38rem, 1vw, 0.58rem);
  color: #ffffff !important;
  text-decoration: none;
  text-transform: none;
  border: 1px solid rgba(242, 165, 26, 0.22);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(7, 53, 45, 0.42);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

#mainNav .homelander-logo:hover,
#mainNav .homelander-logo:focus {
  transform: translateY(-1px);
  border-color: rgba(242, 165, 26, 0.58);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(7, 53, 45, 0.54);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

#mainNav .homelander-logo img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.28));
}

#mainNav .navbar-brand:not(.homelander-logo) img {
  width: 96px;
  height: auto;
  object-fit: contain;
}

#mainNav .nav-link {
  letter-spacing: 0;
}

#mainNav .nav-link:hover,
#mainNav .nav-link:focus {
  color: var(--hl-signature) !important;
}

.brand-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--hl-signature);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.brand-btn,
.site-btn,
.btn-primary,
.btn-success,
.btn-secondary {
  border-radius: 999px !important;
  font-weight: 800;
}

.brand-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.brand-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.brand-btn--light {
  background: #ffffff;
  color: var(--hl-forest-dark);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.16);
}

.brand-btn--outline {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.brand-btn--outline:hover {
  color: var(--hl-forest-dark);
  background: var(--hl-signature);
  border-color: var(--hl-signature);
}

.btn-primary,
.btn-success,
.bg-primary,
.bg-success,
.site-btn {
  background: var(--hl-forest) !important;
  border-color: var(--hl-forest) !important;
  color: #ffffff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-success:hover,
.btn-success:focus,
.site-btn:hover,
.site-btn:focus {
  background: var(--hl-signature) !important;
  border-color: var(--hl-signature) !important;
  color: var(--hl-forest-dark) !important;
  box-shadow: 0 0 0 0.22rem rgba(242, 165, 26, 0.25) !important;
}

.text-primary,
.text-success,
a.text-primary:hover,
a.text-success:hover {
  color: var(--hl-forest) !important;
}

.badge.bg-success,
.badge.bg-primary {
  background: var(--hl-signature) !important;
  color: var(--hl-forest-dark) !important;
}

.landing-hero {
  isolation: isolate;
  overflow: hidden;
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, rgba(7, 53, 45, 0.96), rgba(15, 95, 70, 0.72) 52%, rgba(16, 35, 31, 0.28));
}

#showcase.landing-hero {
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
}

#showcase .home-search {
  max-width: 980px;
  margin: 0 auto;
  min-height: auto;
}

#showcase .overlay {
  position: relative;
  min-height: auto;
  background: rgba(7, 53, 45, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(10px);
}

#showcase h1 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.03;
}

#showcase p.lead {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.86);
}

#showcase .form-control {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
}

#showcase .search {
  margin-top: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
}

.landing-hero__proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.landing-hero__proof span {
  display: inline-flex;
  gap: 6px;
  padding: 9px 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.landing-hero__proof strong {
  color: var(--hl-signature);
}

.landing-section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.landing-section-heading h2 {
  color: var(--hl-ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 12px;
}

.landing-section-heading p {
  color: #5f6f68;
  font-size: 1rem;
  line-height: 1.8;
}

.landing-section-heading--dark h2,
.landing-section-heading--dark p {
  color: #ffffff;
}

#listings {
  background: var(--hl-paper);
  animation: none;
  border-radius: 0;
  box-shadow: none;
}

#listings::before,
#listings:hover {
  box-shadow: none;
}

#listings h2.text-success {
  color: var(--hl-forest-dark) !important;
  font-weight: 800;
}

.listing-preview {
  border: 1px solid var(--hl-line) !important;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.listing-preview:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(16, 35, 31, 0.14) !important;
}

.listing-preview .card-img-top {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.landing-verifier-card {
  padding: 34px;
  background: linear-gradient(135deg, #ffffff, var(--hl-signature-soft));
  border: 1px solid rgba(242, 165, 26, 0.34);
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(16, 35, 31, 0.1);
}

#services {
  isolation: isolate;
}

#services .overlay {
  background: linear-gradient(135deg, rgba(7, 53, 45, 0.94), rgba(16, 35, 31, 0.86)) !important;
  opacity: 1 !important;
}

.service-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.service-card:hover {
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
}

.service-card h4 a:hover {
  color: var(--hl-signature) !important;
}

.glowing-img {
  border-color: rgba(242, 165, 26, 0.7);
  box-shadow: 0 0 0 6px rgba(242, 165, 26, 0.12);
}

#testimonials {
  background: #10231f !important;
}

.testimonial-card {
  min-height: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  box-shadow: none;
}

.testimonial-card:hover {
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.22);
}

#why-choose-us {
  background: #ffffff;
}

#why-choose-us .col-md-4 {
  padding: 28px;
}

#why-choose-us i {
  color: var(--hl-signature) !important;
}

.brand-cta {
  margin: 0;
  padding: 64px 0;
  background:
    linear-gradient(135deg, var(--hl-forest-dark), var(--hl-forest)),
    var(--hl-forest-dark);
  border: 0;
  border-radius: 0;
  animation: none;
}

.brand-cta__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-cta h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: 12px;
}

.brand-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.brand-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.brand-footer {
  padding-top: 76px;
  background:
    linear-gradient(160deg, #071f1b 0%, #0b3d32 58%, #10231f 100%);
  color: #ffffff;
  border-top: 6px solid var(--hl-signature);
  border-radius: 0;
  animation: none;
  overflow: hidden;
}

.brand-footer::before {
  content: none;
}

.brand-footer .footer-warp {
  position: relative;
  z-index: 1;
  max-width: 1180px;
}

.brand-footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) repeat(2, minmax(150px, 0.7fr)) minmax(240px, 1fr);
  gap: 36px;
}

.brand-footer__logo {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  margin-bottom: 20px;
  background: #ffffff;
  border-radius: 10px;
}

.brand-footer__logo img {
  width: 120px;
  height: auto;
}

.brand-footer p,
.brand-footer li,
.brand-footer a,
.brand-footer span {
  color: rgba(255, 255, 255, 0.74);
}

.brand-footer h4 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 18px;
}

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

.brand-footer li {
  margin-bottom: 10px;
}

.brand-footer a {
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.brand-footer a:hover,
.brand-footer a:focus {
  color: var(--hl-signature);
}

.brand-footer__contact {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.brand-footer__contact i {
  width: 18px;
  color: var(--hl-signature);
}

.brand-footer__newsletter form {
  display: grid;
  gap: 10px;
}

.brand-footer__newsletter input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.brand-footer__newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.brand-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.brand-footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--hl-forest-dark);
  background: var(--hl-signature);
  border-radius: 50%;
}

.brand-footer__socials a:hover {
  color: #ffffff;
  background: var(--hl-forest);
}

.brand-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  padding-bottom: 22px;
  margin-top: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.brand-footer .footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.brand-footer .footer-menu li {
  margin: 0;
}

@media (max-width: 991px) {
  .brand-cta__content,
  .brand-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-cta__actions {
    justify-content: flex-start;
  }

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

@media (max-width: 768px) {
  #listings[data-aos],
  #verifier-network[data-aos],
  #services[data-aos],
  #testimonials[data-aos],
  #why-choose-us[data-aos],
  #testimonials [data-aos],
  #why-choose-us [data-aos],
  .brand-cta[data-aos],
  .brand-footer[data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }

  #testimonials,
  #why-choose-us {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: auto !important;
    padding: 3rem 0 !important;
  }

  #testimonialCarousel .carousel-item.active .d-none.d-lg-block {
    display: block !important;
  }

  #why-choose-us .row {
    row-gap: 1.5rem;
  }

  #mainNav .homelander-logo {
    width: 84px;
    height: 62px;
  }

  #showcase.landing-hero {
    padding: 4.5rem 0 3rem;
  }

  #showcase .overlay {
    border-radius: 0;
  }

  .landing-hero__proof {
    align-items: stretch;
    flex-direction: column;
  }

  .landing-hero__proof span {
    justify-content: center;
  }

  .landing-verifier-card {
    padding: 24px 18px;
    border-radius: 0;
  }

  .brand-footer__grid {
    grid-template-columns: 1fr;
  }
}
