:root {
  --navy: #101d3a;
  --navy-2: #16284d;
  --green: #26a269;
  --green-dark: #168152;
  --mint: #e9f8f1;
  --cream: #f7f8f5;
  --ink: #172033;
  --muted: #687286;
  --line: #e5e9ef;
  --shadow: 0 22px 60px rgba(16, 29, 58, 0.12);
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.08;
  color: var(--navy);
}
p {
  color: var(--muted);
  line-height: 1.8;
}
a {
  text-decoration: none;
}
.section {
  padding: 100px 0;
}
.section-soft {
  background: var(--cream);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: currentColor;
}
.eyebrow-light {
  color: #8be0b8;
}
.display-title {
  font-size: clamp(2.6rem, 6vw, 5.3rem);
}
.section-title {
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  margin-bottom: 1.25rem;
}
.section-intro {
  max-width: 650px;
  font-size: 1.06rem;
}
.text-green {
  color: var(--green);
}

.topbar {
  background: #0b1630;
  color: #c9d1df;
  font-size: 0.78rem;
}
.topbar a,
.topbar span {
  color: #c9d1df;
}
.topbar a:hover {
  color: #fff;
}
.phone-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  white-space: nowrap;
}
.phone-links span {
  color: rgba(255, 255, 255, 0.35);
}
.navbar {
  min-height: 86px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(16, 29, 58, 0.07);
  transition: 0.3s ease;
}
.navbar-brand img {
  width: 150px;
  max-height: 58px;
  object-fit: contain;
}
.nav-link {
  color: var(--navy) !important;
  font-size: 0.88rem;
  font-weight: 700;
  margin: 0 0.45rem;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: 0.25s;
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}
.btn-finance {
  border: 0;
  border-radius: 4px;
  padding: 0.92rem 1.35rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    background 0.25s;
}
.btn-finance:hover {
  transform: translateY(-3px);
}
.btn-green {
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(38, 162, 105, 0.25);
}
.btn-green:hover {
  color: #fff;
  background: var(--green-dark);
}
.btn-outline-light-custom {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn-outline-light-custom:hover {
  color: var(--navy);
  background: #fff;
}
.btn-navy {
  color: #fff;
  background: var(--navy);
}
.btn-navy:hover {
  color: #fff;
  background: var(--navy-2);
}

.hero {
  min-height: 720px;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 30%, rgba(38, 162, 105, 0.23), transparent 35%),
    linear-gradient(
      90deg,
      rgba(16, 29, 58, 0.99) 0%,
      rgba(16, 29, 58, 0.9) 50%,
      rgba(16, 29, 58, 0.35) 100%
    );
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0 0 0 49%;
  background: url('../images/tanzania-hero.png') center/cover no-repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}
.hero h1 {
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  color: #8be0b8;
  font-style: italic;
}
.hero .lead {
  max-width: 630px;
  color: #d4dbea;
  line-height: 1.75;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
}
.hero-stats strong {
  display: block;
  color: #fff;
  font-size: 1.45rem;
}
.hero-stats span {
  color: #aab5c9;
  font-size: 0.75rem;
}

.trust-strip {
  margin-top: -38px;
  position: relative;
  z-index: 4;
}
.trust-panel {
  background: #fff;
  box-shadow: var(--shadow);
  padding: 1.7rem 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 1.2rem;
  border-right: 1px solid var(--line);
}
.trust-item:last-child {
  border: 0;
}
.trust-item i {
  color: var(--green);
  font-size: 1.5rem;
}
.trust-item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--navy);
}
.trust-item small {
  color: var(--muted);
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  height: 100%;
  transition: 0.35s ease;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-card .image {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.service-card:hover img {
  transform: scale(1.06);
}
.service-card .number {
  position: absolute;
  right: 16px;
  bottom: 12px;
  font-family: 'DM Serif Display';
  font-size: 2.3rem;
  color: rgba(255, 255, 255, 0.85);
}
.service-card .body {
  padding: 2rem;
}
.icon-box {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--mint);
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}
.text-link {
  color: var(--navy);
  font-weight: 800;
  font-size: 0.82rem;
}
.text-link i {
  margin-left: 0.35rem;
  transition: 0.2s;
}
.text-link:hover {
  color: var(--green);
}
.text-link:hover i {
  transform: translateX(4px);
}

.image-stack {
  position: relative;
  padding: 0 45px 45px 0;
}
.image-stack .main-image {
  width: 100%;
  min-height: 530px;
  object-fit: cover;
}
.image-stack .small-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 230px;
  object-fit: cover;
  border: 10px solid #fff;
}
.image-stack .badge-card {
  position: absolute;
  left: -25px;
  top: 45px;
  padding: 1.3rem;
  background: var(--green);
  color: #fff;
}
.image-stack .badge-card strong {
  display: block;
  font: 2rem 'DM Serif Display';
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0;
}
.check-list li {
  display: flex;
  gap: 0.8rem;
  margin: 0.8rem 0;
  color: #455067;
}
.check-list i {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green-dark);
  font-size: 0.7rem;
  flex: none;
}

.dark-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.dark-section::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border: 90px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
  right: -100px;
  top: -140px;
}
.dark-section h2,
.dark-section h3 {
  color: #fff;
}
.dark-section p {
  color: #aeb9cc;
}
.feature-card {
  position: relative;
  z-index: 1;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  height: 100%;
  transition: 0.3s;
}
.feature-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-5px);
}
.feature-card i {
  color: #78d5a7;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.page-hero {
  padding: 115px 0 90px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 85px solid rgba(38, 162, 105, 0.1);
  right: -100px;
  top: -180px;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
}
.page-hero p {
  max-width: 660px;
  color: #bdc6d5;
  font-size: 1.05rem;
}
.breadcrumb {
  --bs-breadcrumb-divider-color: #7f8ba1;
}
.breadcrumb a {
  color: #8be0b8;
}
.breadcrumb-item.active {
  color: #aeb8c8;
}

.mission-card {
  padding: 3rem;
  background: #fff;
  height: 100%;
  border-top: 4px solid var(--green);
  box-shadow: 0 18px 50px rgba(16, 29, 58, 0.08);
}
.mission-card.navy {
  background: var(--navy);
}
.mission-card.navy h2,
.mission-card.navy p {
  color: #fff;
}
.value-card {
  padding: 2rem;
  border: 1px solid var(--line);
  height: 100%;
  transition: 0.3s;
}
.value-card:hover {
  border-color: var(--green);
  box-shadow: 0 15px 38px rgba(16, 29, 58, 0.08);
}

.service-row {
  padding: 2rem 0 5rem;
}
.service-row:last-child {
  padding-bottom: 0;
}
.service-row img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.service-number {
  color: #dce4e0;
  font: 5rem 'DM Serif Display';
  line-height: 1;
}
.process-step {
  display: flex;
  gap: 1.25rem;
}
.process-step .step {
  width: 46px;
  height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}

.contact-card {
  background: #fff;
  padding: 3rem;
  box-shadow: var(--shadow);
}
.contact-info-card {
  background: var(--navy);
  padding: 3rem;
  height: 100%;
  color: #fff;
}
.contact-info-card h2,
.contact-info-card h4 {
  color: #fff;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-info-item i {
  color: #8be0b8;
  margin-top: 0.3rem;
}
.contact-info-item a,
.contact-info-item p {
  color: #c2ccdc;
  margin: 0;
}
.form-control,
.form-select {
  border: 1px solid #dfe4ea;
  border-radius: 2px;
  min-height: 54px;
  padding: 0.8rem 1rem;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 0.2rem rgba(38, 162, 105, 0.12);
}
textarea.form-control {
  min-height: 150px;
}
.form-status {
  display: none;
  padding: 1rem;
  background: var(--mint);
  color: var(--green-dark);
  margin-top: 1rem;
}

.cta-panel {
  background: var(--green);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
}
.cta-panel::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  border: 55px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  right: -60px;
  top: -100px;
}
.cta-panel h2,
.cta-panel p {
  color: #fff;
  position: relative;
  z-index: 1;
}

.footer {
  background: #0b1630;
  color: #b9c3d4;
  padding: 80px 0 0;
}
.footer-logo {
  width: 155px;
  background: #fff;
  padding: 0.35rem;
  margin-bottom: 1.3rem;
}
.footer h5 {
  color: #fff;
  font-family: 'Manrope';
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer li {
  margin: 0.75rem 0;
}
.footer a {
  color: #aeb9ca;
}
.footer a:hover {
  color: #8be0b8;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3.5rem;
  padding: 1.4rem 0;
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 991.98px) {
  .section {
    padding: 75px 0;
  }
  .navbar-collapse {
    padding: 1rem 0 1.5rem;
  }
  .nav-link {
    padding: 0.8rem 0;
  }
  .nav-link::after {
    display: none;
  }
  .hero {
    min-height: 680px;
  }
  .hero::after {
    inset: 0;
    opacity: 0.27;
  }
  .trust-item {
    border: 0;
    border-bottom: 1px solid var(--line);
  }
  .image-stack {
    margin-bottom: 3rem;
  }
  .service-row img {
    height: 380px;
    margin-bottom: 2.5rem;
  }
  .service-row .order-lg-2 img {
    margin-top: 2.5rem;
    margin-bottom: 0;
  }
}
@media (max-width: 575.98px) {
  .topbar .location {
    display: none;
  }
  .hero-stats {
    gap: 1.25rem;
    flex-wrap: wrap;
  }
  .trust-strip {
    margin-top: 0;
  }
  .trust-panel,
  .contact-card,
  .contact-info-card,
  .mission-card,
  .cta-panel {
    padding: 2rem 1.4rem;
  }
  .image-stack {
    padding: 0;
  }
  .image-stack .main-image {
    min-height: 390px;
  }
  .image-stack .small-image {
    display: none;
  }
  .image-stack .badge-card {
    left: 0;
  }
}

/* Refined visual layer */
::selection {
  color: #fff;
  background: var(--green);
}
.section-soft {
  background: radial-gradient(circle at 8% 10%, rgba(38, 162, 105, 0.07), transparent 22%),
    var(--cream);
}
.navbar {
  border-bottom: 1px solid rgba(16, 29, 58, 0.05);
  transition:
    min-height 0.3s ease,
    box-shadow 0.3s ease;
}
.navbar.navbar-scrolled {
  min-height: 72px;
  box-shadow: 0 12px 35px rgba(16, 29, 58, 0.12);
}
.btn-finance {
  position: relative;
  overflow: hidden;
}
.btn-finance::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.28), transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}
.btn-finance:hover::after {
  transform: translateX(120%);
}
.hero-content::after {
  content: '';
  position: absolute;
  width: 170px;
  height: 170px;
  left: -105px;
  bottom: 28px;
  opacity: 0.22;
  background-image: radial-gradient(#8be0b8 1.5px, transparent 1.5px);
  background-size: 14px 14px;
}
.trust-panel,
.service-card,
.mission-card,
.value-card,
.feature-card,
.cta-panel {
  border-radius: 12px;
}
.service-card .number {
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.25);
}
.icon-box {
  border-radius: 10px;
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}
.service-card:hover .icon-box,
.value-card:hover .icon-box {
  color: #fff;
  background: var(--green);
  transform: rotate(-5deg) scale(1.06);
}
.image-stack .main-image,
.service-row img {
  border-radius: 14px;
}
.image-stack .small-image,
.image-stack .badge-card {
  border-radius: 8px;
}
.image-stack .badge-card {
  box-shadow: 0 18px 38px rgba(38, 162, 105, 0.25);
}
.page-hero {
  background:
    linear-gradient(90deg, rgba(16, 29, 58, 0.99), rgba(16, 29, 58, 0.89)),
    url('../images/tanzania-hero.png') center 42% / cover;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image: radial-gradient(#fff 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, transparent 35%, #000 100%);
}
.page-hero .container {
  z-index: 1;
}
.mission-card,
.service-row img {
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.mission-card:hover,
.service-row img:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(16, 29, 58, 0.18);
}
.process-step .step {
  border-radius: 10px 10px 10px 2px;
}
.contact-info-card {
  border-radius: 14px 0 0 14px;
}
.contact-card {
  border-radius: 0 14px 14px 0;
}
.form-control,
.form-select {
  border-radius: 8px;
}
.cta-panel {
  box-shadow: 0 22px 55px rgba(38, 162, 105, 0.25);
}
.footer-logo {
  border-radius: 6px;
}
.row > .reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.row > .reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.row > .reveal:nth-child(4) {
  transition-delay: 0.24s;
}
.accordion-item {
  border: 1px solid var(--line);
  border-radius: 8px !important;
  overflow: hidden;
  margin-bottom: 0.85rem;
}
.accordion-button {
  color: var(--navy);
  font-weight: 800;
  padding: 1.25rem 1.4rem;
}
.accordion-button:not(.collapsed) {
  color: var(--green-dark);
  background: var(--mint);
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
}
@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 1rem 1.25rem 1.5rem;
    margin-top: 0.5rem;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 18px 38px rgba(16, 29, 58, 0.1);
  }
  .contact-info-card,
  .contact-card {
    border-radius: 12px;
  }
  .contact-card {
    margin-top: 1rem;
  }
}
@media (max-width: 575.98px) {
  .display-title {
    font-size: 3rem;
  }
  .hero {
    min-height: 650px;
  }
}

/* Mobile-first finishing pass */
@media (max-width: 767.98px) {
  body {
    font-size: 0.94rem;
  }
  .topbar {
    font-size: 0.7rem;
  }
  .topbar .container {
    min-height: 26px;
    justify-content: flex-start !important;
  }
  .topbar .location {
    display: none !important;
  }
  .topbar .container > .d-flex {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0.5rem !important;
    padding: 0.15rem 0;
  }
  .topbar a[href^='mailto'] {
    display: inline-flex !important;
    align-items: center;
  }
  .phone-links {
    width: auto;
    gap: 0.45rem;
  }
  .phone-links a {
    flex: 0 0 auto;
  }
  .navbar,
  .navbar.navbar-scrolled {
    min-height: 68px;
    padding: 0.45rem 0;
  }
  .navbar-brand img {
    width: 124px;
    max-height: 48px;
  }
  .navbar-toggler {
    width: 44px;
    height: 42px;
    padding: 0.35rem;
    border: 1px solid var(--line);
    border-radius: 8px;
  }
  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(38, 162, 105, 0.14);
  }
  .navbar-collapse {
    max-height: calc(100vh - 115px);
    overflow-y: auto;
  }
  .nav-link {
    margin: 0;
    padding: 0.8rem 0.25rem;
    border-bottom: 1px solid var(--line);
  }
  .navbar-nav .btn-finance {
    display: block;
    width: 100%;
    margin-top: 0.75rem;
    text-align: center;
  }
  .section {
    padding: 58px 0;
  }
  .section-title {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 10vw, 2.65rem);
  }
  .section-intro,
  .hero .lead {
    font-size: 0.98rem;
    line-height: 1.7;
  }
  .eyebrow {
    margin-bottom: 0.75rem;
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }
  .hero {
    min-height: auto;
  }
  .hero::before {
    background: linear-gradient(90deg, rgba(16, 29, 58, 0.96), rgba(16, 29, 58, 0.76));
  }
  .hero::after {
    background-position: 58% center;
    opacity: 0.55;
  }
  .hero-content {
    padding: 76px 20px 68px;
  }
  .hero-content::after {
    display: none;
  }
  .display-title {
    max-width: 520px;
    font-size: clamp(2.65rem, 13vw, 3.7rem);
    line-height: 1.02;
  }
  .hero .d-flex.gap-3 {
    align-items: stretch;
    flex-direction: column;
    gap: 0.75rem !important;
  }
  .hero .btn-finance {
    width: 100%;
    padding: 1rem;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 2.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
  .hero-stats > div {
    padding-right: 0.6rem;
  }
  .hero-stats strong {
    font-size: 1.15rem;
  }
  .hero-stats span {
    display: block;
    font-size: 0.65rem;
    line-height: 1.35;
  }
  .trust-panel {
    padding: 0.5rem 1.15rem;
    border-radius: 0 0 12px 12px;
  }
  .trust-item {
    min-height: 78px;
    padding: 0.9rem 0.25rem;
  }
  .trust-item:last-child {
    border-bottom: 0;
  }
  .trust-item i {
    width: 32px;
    text-align: center;
  }
  .service-card .image {
    height: 205px;
  }
  .service-card .body,
  .value-card,
  .feature-card {
    padding: 1.5rem;
  }
  .image-stack {
    margin-bottom: 2rem;
  }
  .image-stack .main-image {
    width: 100%;
    min-height: 0;
    height: 390px;
  }
  .image-stack .badge-card {
    top: auto;
    bottom: 18px;
    left: 14px;
    padding: 0.9rem 1rem;
  }
  .image-stack .badge-card strong {
    font-size: 1.35rem;
  }
  .process-step {
    gap: 0.9rem;
  }
  .process-step .step {
    width: 40px;
    height: 40px;
  }
  .page-hero {
    padding: 72px 0 58px;
    background-position: 60% center;
  }
  .page-hero h1 {
    font-size: clamp(2.55rem, 13vw, 3.5rem);
  }
  .page-hero p {
    font-size: 0.95rem;
    line-height: 1.65;
  }
  .breadcrumb {
    margin-bottom: 0;
    font-size: 0.78rem;
  }
  .mission-card,
  .contact-card,
  .contact-info-card,
  .cta-panel {
    padding: 1.75rem 1.25rem;
  }
  .service-row {
    padding: 0 0 3.5rem;
  }
  .service-row img {
    height: 300px;
    margin-bottom: 1.5rem;
  }
  .service-number {
    font-size: 3.7rem;
  }
  .check-list {
    margin: 1.25rem 0;
  }
  .check-list li {
    align-items: flex-start;
    margin: 0.7rem 0;
    line-height: 1.5;
  }
  .contact-info-item {
    padding: 1rem 0;
  }
  .form-control,
  .form-select {
    min-height: 52px;
    font-size: 1rem;
  }
  .contact-card .btn-finance {
    width: 100%;
  }
  .cta-panel {
    text-align: center;
  }
  .cta-panel .btn-finance {
    display: block;
    width: 100%;
    margin-top: 1.25rem;
  }
  .footer {
    padding-top: 58px;
  }
  .footer .row {
    --bs-gutter-y: 2.25rem;
  }
  .footer h5 {
    margin-bottom: 1rem;
  }
  .footer-bottom {
    margin-top: 2.25rem;
    text-align: center;
    justify-content: center !important;
  }
  .reveal {
    transform: translateY(18px);
  }
  .row > .reveal:nth-child(n) {
    transition-delay: 0s;
  }
}

@media (max-width: 374.98px) {
  .topbar {
    font-size: 0.64rem;
  }
  .phone-links {
    gap: 0.3rem;
  }
  .phone-links .fa-phone {
    display: none;
  }
  .topbar a[href^='mailto'] {
    font-size: 0.62rem;
  }
  .topbar a[href^='mailto'] .fa-envelope {
    display: none;
  }
  .display-title {
    font-size: 2.45rem;
  }
  .hero-content {
    padding-right: 16px;
    padding-left: 16px;
  }
  .hero-stats span {
    font-size: 0.6rem;
  }
  .image-stack .main-image,
  .service-row img {
    height: 270px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
