:root {
  --brand: #b4352a;
  --brand-dark: #8f261f;
  --ink: #0b1930;
  --muted: #667085;
  --soft: #fff7f5;
  --line: rgba(11, 25, 48, 0.11);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Google Sans", "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
}

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

.container {
  max-width: 1180px;
}

.site-header {
  box-shadow: 0 14px 42px rgba(11, 25, 48, 0.1);
}

.top-strip {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 50%, rgba(180, 53, 42, 0.38), transparent 24%),
    linear-gradient(90deg, #071225 0%, #0b1930 48%, #172640 100%);
  color: #ffffff;
  font-size: 0.86rem;
  padding: 6px 0;
}

.top-strip::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
}

.top-strip .container {
  position: relative;
  z-index: 1;
}

.top-contact,
.top-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-contact a,
.top-social a {
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.top-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 3px 10px 3px 0;
  line-height: 1;
}

.top-contact a + a {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.top-contact i {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(180, 53, 42, 0.22);
  color: #ffffff;
  font-size: 0.78rem;
}

.top-social a {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
}

.top-contact a:hover,
.top-social a:hover {
  color: #ffffff;
}

.top-contact a:hover i,
.top-social a:hover {
  background: var(--brand);
  transform: translateY(-1px);
}

.navbar {
  position: relative;
  min-height: 82px;
  padding: 12px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 62%, #fbfcff 100%) !important;
}

.navbar .container {
  gap: 22px;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.navbar-brand img {
  width: min(240px, 54vw);
  height: auto;
  transition: transform 0.25s ease;
}

.navbar-brand:hover img {
  transform: translateY(-1px);
}

.navbar-nav {
  align-self: stretch;
  gap: 6px;
}

.navbar-collapse {
  position: static;
}

.navbar-nav > .nav-item {
  display: flex;
  align-items: center;
}

.nav-link {
  position: relative;
  color: var(--ink);
  font-weight: 750;
  font-size: 0.94rem;
  padding: 12px 14px !important;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link:focus,
.dropdown:hover > .nav-link,
.dropdown.show > .nav-link,
.dropdown.is-hovered > .nav-link {
  color: var(--brand);
  background: transparent;
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-link:hover::before,
.nav-link:focus::before,
.dropdown:hover > .nav-link::before,
.dropdown.show > .nav-link::before,
.dropdown.is-hovered > .nav-link::before {
  transform: scaleX(1);
}

.dropdown-toggle::after {
  margin-left: 0.38rem;
  vertical-align: 0.12em;
  border-top-width: 0.34em;
  transition: transform 0.2s ease;
}

.dropdown:hover > .dropdown-toggle::after,
.dropdown.show > .dropdown-toggle::after,
.dropdown.is-hovered > .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  min-width: 250px;
  margin-top: 0 !important;
  border: 1px solid rgba(180, 53, 42, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(11, 25, 48, 0.16);
  padding: 12px;
  animation: dropdownReveal 0.18s ease both;
}

@media (min-width: 1200px) {
  .navbar .dropdown:hover > .dropdown-menu,
  .navbar .dropdown:focus-within > .dropdown-menu,
  .navbar .dropdown.is-hovered > .dropdown-menu {
    display: block;
  }

  .has-mega {
    position: static;
  }

  .has-mega .mega-menu {
    left: 50%;
    right: auto;
    top: calc(100% - 1px);
    width: min(1180px, calc(100vw - 64px));
    transform: translateX(-50%);
    animation: megaReveal 0.18s ease both;
  }

  .has-mega:hover .mega-menu,
  .has-mega:focus-within .mega-menu,
  .has-mega.is-hovered .mega-menu {
    transform: translateX(-50%);
  }

  .has-mega .mega-menu-small {
    width: min(760px, calc(100vw - 64px));
  }
}

@keyframes megaReveal {
  from {
    opacity: 0;
    transform: translate(-50%, 8px);
  }

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

.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 24px;
  top: -7px;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-left: 1px solid rgba(180, 53, 42, 0.12);
  border-top: 1px solid rgba(180, 53, 42, 0.12);
  transform: rotate(45deg);
}

@keyframes dropdownReveal {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  color: #243047;
  font-weight: 700;
  padding: 10px 12px;
  white-space: normal;
}

.dropdown-item::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(180, 53, 42, 0.22);
  transition: background 0.2s ease, transform 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: var(--soft);
  color: var(--brand);
}

.dropdown-item:hover::before,
.dropdown-item:focus::before {
  background: var(--brand);
  transform: scale(1.25);
}

.mega-menu {
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(11, 25, 48, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 247, 245, 0.9) 0%, rgba(255, 255, 255, 0) 42%),
    #ffffff;
}

.mega-menu::before {
  display: none;
}

.mega-menu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -28px;
  height: 28px;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border-radius: 8px;
  background: inherit;
}

.mega-menu-small .mega-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mega-col {
  min-height: 250px;
  padding: 34px 30px;
  border-right: 1px solid rgba(11, 25, 48, 0.08);
}

.mega-col:last-child {
  border-right: 0;
}

.mega-heading {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #343d4f;
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: 0;
  margin-bottom: 14px;
  transition: color 0.2s ease;
}

.mega-heading i {
  color: var(--brand);
  font-size: 0.82rem;
  transition: transform 0.2s ease;
}

.mega-heading:hover {
  color: var(--brand);
}

.mega-heading:hover i {
  transform: translateX(3px);
}

.mega-link {
  display: block;
  width: fit-content;
  color: #586071;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  margin-top: 17px;
  padding: 3px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mega-link:hover,
.mega-link:focus {
  color: var(--brand);
  transform: translateX(4px);
}

.navbar-toggler {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(11, 25, 48, 0.12);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(11, 25, 48, 0.08);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 4px rgba(180, 53, 42, 0.14);
}

.btn-brand {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: var(--brand-dark);
  --bs-btn-hover-border-color: var(--brand-dark);
  --bs-btn-active-bg: var(--brand-dark);
  --bs-btn-active-border-color: var(--brand-dark);
  border-radius: 8px;
  font-weight: 750;
  padding: 11px 20px;
  box-shadow: 0 12px 24px rgba(180, 53, 42, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-brand:hover,
.btn-brand:focus {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(180, 53, 42, 0.28);
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  display: flex;
  align-items: center;
  padding: 150px 0 72px;
  color: var(--ink);
  background: #f7f9fc;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 43%, rgba(255, 255, 255, 0.26) 76%, rgba(255, 255, 255, 0.05) 100%),
    url("../images/hero-bg-generated.jpg") center right / cover no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 90px;
  background: linear-gradient(180deg, rgba(247, 249, 252, 0) 0%, #ffffff 100%);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-weight: 750;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 16px;
}

.hero-kicker span {
  width: 34px;
  height: 3px;
  background: var(--brand);
  border-radius: 999px;
}

.hero-section h1 {
  max-width: 620px;
  font-size: clamp(2.45rem, 4vw, 4.35rem);
  line-height: 1.05;
  font-weight: 850;
  letter-spacing: 0;
  margin: 0;
}

.hero-copy {
  max-width: 510px;
  color: #4f5b70;
  font-size: 1.08rem;
  line-height: 1.65;
  margin: 20px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-actions .btn {
  border-radius: 8px;
  min-width: 150px;
  padding: 12px 20px;
  font-size: 1rem;
}

.btn-outline-light {
  --bs-btn-color: var(--ink);
  --bs-btn-border-color: rgba(11, 25, 48, 0.22);
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: var(--ink);
  --bs-btn-hover-border-color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(11, 25, 48, 0.08);
  color: #3d485a;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(11, 25, 48, 0.06);
}

.hero-tags i {
  color: var(--brand);
}

.trust-section {
  position: relative;
  z-index: 2;
  background: #ffffff;
  padding: 34px 0 36px;
}

.trust-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.45fr);
  gap: 28px;
  align-items: stretch;
  margin-top: -24px;
  padding: 24px;
  border: 1px solid rgba(11, 25, 48, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(180, 53, 42, 0.06) 0%, rgba(255, 255, 255, 0) 42%),
    #ffffff;
  box-shadow: 0 24px 70px rgba(11, 25, 48, 0.1);
}

.trust-intro {
  padding: 8px 14px 8px 0;
  border-right: 1px solid rgba(11, 25, 48, 0.08);
}

.trust-intro span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.trust-intro span::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
}

.trust-intro h2 {
  max-width: 390px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.22;
  font-weight: 850;
  letter-spacing: 0;
  margin: 0;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.trust-stat {
  min-height: 124px;
  padding: 10px 20px;
  border-right: 1px solid rgba(11, 25, 48, 0.08);
}

.trust-stat:last-child {
  border-right: 0;
}

.trust-stat strong {
  display: block;
  color: var(--brand);
  font-size: clamp(1.55rem, 2.25vw, 2.25rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.trust-stat span {
  display: block;
  color: #586071;
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.48;
}

.services-section {
  background:
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
  padding: 84px 0 92px;
  border-top: 1px solid rgba(11, 25, 48, 0.06);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1fr);
  gap: 24px 64px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-heading span::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
}

.section-heading h2 {
  max-width: 670px;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0;
}

.section-heading p {
  grid-column: 2;
  max-width: 590px;
  color: #5b6678;
  font-size: 1.04rem;
  line-height: 1.65;
  margin: -8px 0 0;
}

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

.service-card {
  min-height: 326px;
  padding: 28px;
  border: 1px solid rgba(11, 25, 48, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(11, 25, 48, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(180, 53, 42, 0.22);
  box-shadow: 0 26px 70px rgba(11, 25, 48, 0.1);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(180, 53, 42, 0.12), rgba(11, 25, 48, 0.06));
  color: var(--brand);
  font-size: 2.05rem;
  margin-bottom: 26px;
}

.service-card h3 {
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.22;
  font-weight: 850;
  letter-spacing: 0;
  margin: 0 0 14px;
}

.service-card p {
  color: #596476;
  font-size: 0.98rem;
  line-height: 1.62;
  margin: 0 0 22px;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 800;
}

.service-card a i {
  font-size: 0.82rem;
  transition: transform 0.2s ease;
}

.service-card a:hover i {
  transform: translateX(4px);
}

.why-section {
  background:
    linear-gradient(135deg, rgba(180, 53, 42, 0.06) 0%, rgba(255, 255, 255, 0) 38%),
    #fffafa;
  padding: 86px 0;
  border-top: 1px solid rgba(11, 25, 48, 0.06);
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 56px;
  align-items: start;
}

.why-copy {
  position: sticky;
  top: 150px;
}

.why-copy span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.why-copy span::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
}

.why-copy h2 {
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0;
}

.why-copy p {
  color: #5b6678;
  font-size: 1.05rem;
  line-height: 1.72;
  margin: 20px 0 28px;
}

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

.why-point {
  min-height: 236px;
  display: flex;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(11, 25, 48, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 50px rgba(11, 25, 48, 0.06);
}

.why-point i {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  font-size: 1.45rem;
}

.why-point h3 {
  color: var(--ink);
  font-size: 1.17rem;
  line-height: 1.25;
  font-weight: 850;
  margin: 0 0 10px;
}

.why-point p {
  color: #5b6678;
  font-size: 0.96rem;
  line-height: 1.6;
  margin: 0;
}

.site-footer {
  background: #f7f8fb;
  padding: 66px 0 26px;
  border-top: 1px solid var(--line);
}

.footer-logo {
  width: 230px;
  max-width: 100%;
  margin-bottom: 22px;
}

.site-footer p {
  color: var(--muted);
  line-height: 1.75;
  max-width: 360px;
  margin: 0;
}

.site-footer h2 {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 850;
  margin: 0 0 18px;
}

.site-footer a {
  display: block;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 11px;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--brand);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--brand);
  box-shadow: 0 10px 25px rgba(11, 25, 48, 0.08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1199.98px) {
  .navbar {
    padding: 10px 0;
  }

  .navbar-collapse {
    margin-top: 14px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 22px 50px rgba(11, 25, 48, 0.12);
  }

  .navbar-nav {
    align-items: stretch !important;
    gap: 2px;
  }

  .nav-link {
    padding: 12px 10px !important;
  }

  .nav-link::before {
    left: 10px;
    right: auto;
    width: 34px;
  }

  .dropdown-menu {
    margin: 2px 0 10px !important;
    min-width: 100%;
    border: 0;
    border-left: 3px solid rgba(180, 53, 42, 0.2);
    border-radius: 0 8px 8px 0;
    box-shadow: none;
    background: #fff8f7;
    animation: none;
  }

  .dropdown-menu::before {
    display: none;
  }

  .dropdown-item {
    padding: 10px 12px;
  }

  .mega-menu {
    padding: 12px;
    overflow: visible;
  }

  .mega-grid,
  .mega-menu-small .mega-grid {
    grid-template-columns: 1fr;
  }

  .mega-col {
    min-height: auto;
    padding: 14px 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(11, 25, 48, 0.08);
  }

  .mega-col:last-child {
    border-bottom: 0;
  }

  .mega-heading {
    margin-bottom: 6px;
    font-size: 1rem;
  }

  .mega-link {
    margin-top: 10px;
    font-size: 0.96rem;
  }

  .navbar-nav .btn-brand {
    width: 100%;
    margin-top: 10px;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding: 128px 0 72px;
  }

  .hero-bg {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 100%),
      url("../images/hero-bg-generated.jpg") 62% center / cover no-repeat;
  }

  .trust-section {
    padding: 28px 0 34px;
  }

  .trust-wrap {
    grid-template-columns: 1fr;
    margin-top: -18px;
    padding: 22px;
  }

  .trust-intro {
    padding: 0 0 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(11, 25, 48, 0.08);
  }

  .trust-intro h2 {
    max-width: 640px;
  }

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

  .trust-stat {
    min-height: 116px;
  }

  .trust-stat:nth-child(2) {
    border-right: 0;
  }

  .trust-stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(11, 25, 48, 0.08);
  }

  .services-section {
    padding: 66px 0 72px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 28px;
  }

  .section-heading p {
    grid-column: auto;
    margin: 0;
  }

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

  .service-card {
    min-height: 300px;
  }

  .why-section {
    padding: 68px 0;
  }

  .why-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .why-copy {
    position: static;
  }

  .why-copy p {
    max-width: 680px;
  }

  .why-point {
    min-height: 220px;
  }
}

@media (max-width: 575.98px) {
  .navbar {
    min-height: 74px;
    padding: 8px 0;
  }

  .navbar-brand img {
    width: min(210px, 58vw);
  }

  .navbar-toggler {
    width: 44px;
    height: 44px;
  }

  .hero-section {
    padding-top: 116px;
  }

  .hero-section h1 {
    font-size: 2.2rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-tags {
    align-items: stretch;
  }

  .hero-tags span {
    width: 100%;
  }

  .trust-section {
    padding: 24px 0 30px;
  }

  .trust-wrap {
    margin-top: -12px;
    padding: 18px;
  }

  .trust-stats {
    grid-template-columns: 1fr;
  }

  .trust-stat,
  .trust-stat:nth-child(2) {
    min-height: auto;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(11, 25, 48, 0.08);
  }

  .trust-stat:last-child {
    border-bottom: 0;
  }

  .trust-stat strong {
    margin-bottom: 8px;
  }

  .services-section {
    padding: 54px 0 60px;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

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

  .service-card {
    min-height: auto;
    padding: 24px;
  }

  .service-icon {
    width: 68px;
    height: 68px;
    font-size: 1.82rem;
    margin-bottom: 22px;
  }

  .why-section {
    padding: 56px 0;
  }

  .why-copy h2 {
    font-size: 2rem;
  }

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

  .why-point {
    min-height: auto;
    padding: 22px;
  }
}
