:root {
  --bg: #f3f8fd;
  --bg-soft: #e9f2fb;
  --surface: #ffffff;
  --surface-alt: #edf4fb;
  --text: #1b2317;
  --muted: #5a6656;
  --accent: #005b96;
  --accent-2: #2e7fb8;
  --line: #d9e2d2;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 14px 36px rgba(36, 55, 25, 0.1);
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --container: 1140px;
  --anchor-offset: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
footer[id],
main[id] {
  scroll-margin-top: var(--anchor-offset);
}

body {
  margin: 0;
  font-family: "Raleway", sans-serif;
  background: radial-gradient(
      circle at 92% 10%,
      rgba(46, 127, 184, 0.16) 0%,
      rgba(46, 127, 184, 0) 34%
    ),
    radial-gradient(
      circle at 8% 2%,
      rgba(0, 91, 150, 0.12) 0%,
      rgba(0, 91, 150, 0) 32%
    ),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: var(--space-7) 0;
}

.section-alt {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.86),
    rgba(243, 246, 240, 0.9)
  );
  border-top: 0;
  border-bottom: 0;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.14;
  letter-spacing: -0.02em;
  font-family: "Raleway", sans-serif;
}

h1 {
  font-size: clamp(2.3rem, 7vw, 4.2rem);
  margin-bottom: var(--space-3);
  max-width: 16ch;
}

h2 {
  font-size: clamp(1.75rem, 4.5vw, 2.8rem);
  margin-bottom: var(--space-4);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
}

p {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #eef0ee;
  border-bottom: 1px solid #dfe5da;
}

.topbar {
  display: none;
}

.topbar-wrap {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.topbar-wrap p {
  margin: 0;
}

.topbar-wrap i {
  margin-right: 0.3rem;
  color: #005b96;
}

.topbar-wrap a {
  color: #fff;
}

.topbar-cta {
  background: #005b96;
  color: #ffffff;
  font-weight: 800;
  border-radius: 3px;
  padding: 0.4rem 0.72rem;
}

.header-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.2rem;
  align-items: center;
  min-height: 78px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  display: block;
  height: 52px;
  width: auto;
}

.nav {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
  justify-self: center;
}

.nav a {
  color: #374431;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.5rem 0.35rem;
  border-radius: 3px;
  transition: 0.2s ease;
}

.nav a:hover {
  color: #24311f;
  background: #eef2ea;
}

.header-call {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  justify-self: end;
  background: #005b96;
  color: #ffffff;
  border-radius: 50%;
  border: 3px solid #3a86b7;
  box-shadow: 0 0 0 6px rgba(0, 91, 150, 0.2), 0 8px 20px rgba(0, 91, 150, 0.24);
  font-size: 1.15rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.header-call:hover,
.header-call:active,
.header-call:focus-visible {
  transform: translateY(-2px) scale(1.04);
  background: #005b96;
  border-color: #3a86b7;
  color: #ffffff;
  box-shadow: 0 0 0 10px rgba(0, 91, 150, 0.28),
    0 14px 28px rgba(0, 91, 150, 0.4);
  filter: brightness(1.02);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid #d8e2d1;
  background: #fff;
  color: #2a3425;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

.hero-slider {
  position: relative;
}

.hero-swiper,
.hero-slide {
  min-height: calc(100vh - 190px);
}

.hero-slide {
  position: relative;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(
      90deg,
      rgba(16, 20, 17, 0.84) 0%,
      rgba(16, 20, 17, 0.7) 46%,
      rgba(16, 20, 17, 0.3) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.36) 100%);
}

.hero-content {
  padding-top: 1.2rem;
}

.hero-overline {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.33rem 0.74rem;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  color: #ffffff;
  background: #005b96;
}

.hero-content h1 {
  max-width: 16ch;
  font-size: clamp(2rem, 5.4vw, 4rem);
  color: #ffffff;
  text-transform: uppercase;
  line-height: 0.98;
  font-weight: 900;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.hero-text {
  max-width: 56ch;
  font-size: 0.96rem;
  color: #f3f6f1;
  margin-bottom: var(--space-4);
}

.hero-accent {
  color: #005b96;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
}

.hero-meta p {
  margin: 0;
  color: #f2f5f0;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-meta i {
  color: #005b96;
  margin-right: 0.28rem;
}

.cta-row {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-3);
}

.btn {
  display: inline-block;
  border-radius: 12px;
  font-weight: 700;
  padding: 0.78rem 1.22rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: #005b96;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(243, 165, 51, 0.25);
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.88);
  color: #fff;
  background: transparent;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-secondary:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-large {
  font-size: 1.06rem;
  padding: 0.98rem 1.42rem;
}

.btn-on-dark {
  background: transparent;
}

.hero-nav {
  position: absolute;
  right: 1.5rem;
  bottom: 2rem;
  z-index: 50;
  display: flex;
  gap: 0.6rem;
  pointer-events: none;
}

.hero-prev,
.hero-next {
  position: static;
  width: 50px;
  height: 50px;
  margin-top: 0;
  border-radius: 2px;
  background: #005b96;
  border: 1px solid #ffffff;
  color: #ffffff;
  pointer-events: auto;
}

.hero-prev::after,
.hero-next::after {
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-pagination {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1rem !important;
  z-index: 20;
}

.hero-pagination .swiper-pagination-bullet {
  width: 26px;
  height: 4px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.86);
  opacity: 0.55;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: #005b96;
  opacity: 1;
}

.quick-features {
  margin-top: -42px;
  position: relative;
  z-index: 10;
}

.quick-grid {
  display: grid;
  gap: var(--space-3);
}

.quick-item {
  background: #fff;
  border: 1px solid #e3e8de;
  border-radius: 2px;
  padding: 1.15rem 1.1rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.quick-item h3 {
  margin-bottom: 0.35rem;
  font-size: 1.18rem;
  font-weight: 800;
  color: #2a3128;
}

.quick-item p {
  margin-bottom: 0;
  color: #5a6656;
}

.quick-item-accent {
  background: #005b96;
  border-color: #005b96;
}

.quick-item-accent h3,
.quick-item-accent p,
.quick-item-accent .quick-icon {
  color: #ffffff;
}

.quick-item-accent .quick-icon {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.quick-icon {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 0.6rem;
  color: #ffffff;
  background: #1f2421;
  font-size: 0.95rem;
}

.row.full-width {
  width: 100%;
}

.padding-top-70 {
  padding-top: 70px;
}

.padding-bottom-66 {
  padding-bottom: 66px;
}

.padding-top-bottom-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.parallax.parallax-1 {
  position: relative;
  background-image: linear-gradient(
      90deg,
      rgba(18, 22, 19, 0.77),
      rgba(18, 22, 19, 0.5)
    ),
    url("../images/parallex.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-top: 0;
  border-bottom: 0;
}

.parallax-content {
  color: #f7f9f5;
  max-width: 1240px;
}

.parallax-overline {
  margin-bottom: 0.7rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #005b96;
  font-weight: 800;
}

.parallax-content h2 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  max-width: 100%;
}

.parallax-content p {
  color: #e8ede6;
  margin-bottom: 1.2rem;
  max-width: 64ch;
}

.row.yellow {
  position: relative;
  background: transparent;
  border: 0;
  overflow: hidden;
  margin-top: 10px;
}

.row.yellow::before {
  content: "";
  position: absolute;
  inset: -1px 0;
  background: linear-gradient(100deg, #005b96 0%, #2e7fb8 100%);
  clip-path: polygon(0 20%, 100% 8%, 100% 90%, 0 100%);
  z-index: 0;
}

.yellow-row-wrap {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.9rem 1.1rem;
  position: relative;
  z-index: 1;
  min-height: 126px;
}

.yellow-row-wrap p {
  margin: 0;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  text-align: center;
}

.yellow-row-wrap .btn-dark {
  background: #1f2421;
  color: #ffffff;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 800;
}

.yellow-row-wrap .btn-dark:hover {
  filter: brightness(1.08);
}

.yellow-text {
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  font-size: clamp(0.95rem, 1.7vw, 1.25rem);
}

.yellow-phone {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  background: #1f2421;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 2px;
  padding: 0.9rem 1.5rem;
  font-weight: 800;
}

.section-intro {
  color: var(--muted);
  max-width: 68ch;
  margin-bottom: var(--space-5);
}

.cards {
  display: grid;
  gap: var(--space-4);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-4);
  box-shadow: 0 7px 20px rgba(36, 55, 25, 0.06);
  transition: 0.22s ease;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.6rem;
  background: #005b96;
  color: #ffffff;
}

.card:hover {
  border-color: #beceaf;
  transform: translateY(-4px);
}

.card p {
  color: var(--muted);
}

.card ul {
  margin: var(--space-3) 0 0;
  padding-left: 1.1rem;
}

.trust-grid {
  display: grid;
  gap: var(--space-3);
}

.trust-item {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: var(--space-4);
}

.trust-mark {
  display: inline-block;
  font-weight: 800;
  color: #4f7040;
  margin-bottom: var(--space-2);
}

.facebook-banner {
  padding: var(--space-6) 0;
  background: linear-gradient(100deg, #fff6ea 0%, #f0f6ea 100%);
  border-top: 0;
  border-bottom: 0;
}

.fb-wrap {
  display: grid;
  gap: var(--space-4);
  align-items: center;
}

.fb-wrap h2 {
  margin-bottom: 0;
}

.steps {
  display: grid;
  gap: var(--space-3);
}

.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: var(--space-4);
  padding-left: calc(var(--space-4) + 2.2rem);
}

.step-no {
  position: absolute;
  left: var(--space-4);
  top: var(--space-4);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
  font-size: 0.8rem;
}

.faq-list {
  display: grid;
  gap: var(--space-3);
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-4);
  background: var(--surface);
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  color: var(--muted);
  margin: var(--space-2) 0 0;
}

.contact-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-5);
  box-shadow: var(--shadow);
}

.contact-box p {
  margin-bottom: var(--space-2);
}

.contact-box a {
  color: #4a6a3b;
}

.seo-block p {
  color: var(--muted);
  max-width: 80ch;
}

.site-footer {
  position: relative;
  margin-top: 0;
  overflow: hidden;
  border-top: 0;
  background: linear-gradient(105deg, #3f82d8 0%, #2e7fb8 45%, #005b96 100%);
  color: #ecf2fb;
}

.footer-wave {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 74px;
  display: block;
  pointer-events: none;
  z-index: 1;
}

.footer-wave path {
  fill: var(--bg);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 72px;
  background: none;
  z-index: 0;
}

.site-footer::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 78px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.03) 60%,
    transparent 74%
  );
  z-index: 0;
}

.footer-main {
  display: grid;
  gap: 1.4rem;
  padding: 5.8rem 0 2.2rem;
  position: relative;
  z-index: 2;
}

.footer-main h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f4f8ff;
}

.footer-main p,
.footer-main a {
  margin: 0;
  color: #e7eef9;
  font-size: 0.95rem;
}

.footer-logo {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-transform: uppercase;
}

.footer-tagline {
  margin-top: 0.6rem;
  color: #dbe6f8;
  max-width: 32ch;
}

.footer-call {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  background: #ffffff;
  color: #174f87;
  font-weight: 800;
  padding: 0.62rem 0.88rem;
  border-radius: 3px;
}

.footer-nav,
.footer-services,
.footer-contact {
  display: grid;
  gap: 0.52rem;
  align-content: start;
}

.footer-nav a,
.footer-services p,
.footer-contact p {
  color: #dbe7fa;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.5rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 4px;
  color: #ffffff;
  transition: 0.2s ease;
}

.footer-social a:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #355fa0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(17, 39, 78, 0.24);
  position: relative;
  z-index: 2;
}

.footer-bottom-wrap {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-bottom-wrap p {
  margin: 0;
  color: #d7e5fa;
  font-size: 0.86rem;
}

.footer-bottom-wrap a {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  font-weight: 800;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.cookie-settings-btn {
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: transparent;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 0.38rem 0.55rem;
  border-radius: 3px;
  cursor: pointer;
}

.cookie-settings-btn:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.hero-content,
.quick-item,
.cards .card,
.trust-grid .trust-item,
.steps .step,
.faq-list details,
.contact-box {
  opacity: 0;
  transform: translateY(14px);
  animation: rise-in 0.55s ease forwards;
}

.cards .card:nth-child(2),
.trust-grid .trust-item:nth-child(2),
.steps .step:nth-child(2),
.faq-list details:nth-child(2) {
  animation-delay: 0.08s;
}

.cards .card:nth-child(3),
.trust-grid .trust-item:nth-child(3),
.steps .step:nth-child(3),
.faq-list details:nth-child(3) {
  animation-delay: 0.15s;
}

.cards .card:nth-child(4),
.trust-grid .trust-item:nth-child(4),
.faq-list details:nth-child(4) {
  animation-delay: 0.2s;
}

.cards .card:nth-child(5),
.trust-grid .trust-item:nth-child(5),
.faq-list details:nth-child(5) {
  animation-delay: 0.25s;
}

.cards .card:nth-child(6) {
  animation-delay: 0.3s;
}

.quick-item:nth-child(2) {
  animation-delay: 0.12s;
}

.quick-item:nth-child(3) {
  animation-delay: 0.18s;
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 720px) {
  .hero-content {
    padding-top: 2rem;
  }

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

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

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

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

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

@media (min-width: 1024px) {
  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2rem;
  }

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

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

  .nav a {
    font-size: 0.94rem;
  }
}

@media (max-width: 640px) {
  :root {
    --anchor-offset: 70px;
  }

  .topbar {
    display: none;
  }

  .site-header {
    position: sticky;
    top: 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8dc;
  }

  .header-wrap {
    min-height: 72px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 0.6rem;
    position: relative;
    background: #ffffff;
  }

  .logo {
    max-width: 160px;
  }

  .logo img {
    height: 40px;
  }

  .header-call {
    display: inline-grid;
    justify-self: center;
    width: 48px;
    height: 48px;
    box-shadow: 0 0 0 6px rgba(0, 91, 150, 0.2),
      0 8px 18px rgba(0, 91, 150, 0.28);
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
    margin-left: 0.45rem;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e2e8dc;
    border-radius: 10px;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
    padding: 0.25rem;
    display: grid;
    gap: 0.2rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height 0.28s ease, opacity 0.2s ease, transform 0.2s ease;
  }

  .nav a {
    font-size: 0.78rem;
    padding: 0.64rem 0.58rem;
    border-radius: 6px;
  }

  .site-header.mobile-nav-open .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    width: 100vw;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 0;
    padding: 0;
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    z-index: 120;
  }

  .site-header.mobile-nav-open .nav a {
    display: block !important;
    width: 100% !important;
    min-width: 100% !important;
    align-self: stretch !important;
    box-sizing: border-box !important;
    border-radius: 0;
    padding: 0.82rem 1rem;
    border-bottom: 1px solid #e2e8dc !important;
    text-align: center;
  }

  .site-header.mobile-nav-open .nav a:hover,
  .site-header.mobile-nav-open .nav a:focus-visible {
    background: #e7f2fb;
    color: #005b96;
  }

  .site-header.mobile-nav-open .header-call {
    display: inline-grid;
  }

  .site-header.mobile-nav-open .menu-toggle {
    background: #005b96;
    border-color: #005b96;
    color: #251607;
  }

  .hero-swiper,
  .hero-slide {
    min-height: calc(100vh - 190px);
  }

  .hero-slide-overlay {
    align-items: flex-end;
    background: linear-gradient(
        180deg,
        rgba(16, 20, 17, 0.22) 0%,
        rgba(16, 20, 17, 0.88) 72%
      ),
      linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.34) 100%);
  }

  .hero-content {
    padding-bottom: 4.4rem;
  }

  .hero-content h1 {
    max-width: 14ch;
    font-size: clamp(1.6rem, 7.8vw, 2.2rem);
  }

  .hero-content > :not(h1) {
    display: none;
  }

  .hero-content h1 {
    font-size: clamp(1.65rem, 8.5vw, 2.25rem);
    max-width: 16ch;
    line-height: 1.12;
  }

  .hero-nav,
  .hero-pagination {
    display: none;
  }

  .hero-text {
    font-size: 0.99rem;
    color: #eef2ec;
  }

  .hero-meta p {
    font-size: 0.74rem;
  }

  .hero-prev,
  .hero-next {
    width: 38px;
    height: 38px;
  }

  .hero-nav {
    right: 1rem;
    bottom: 3.3rem;
  }

  .quick-features {
    margin-top: -30px;
  }

  .yellow-row-wrap {
    display: flex;
    flex-wrap: wrap;
    min-height: 96px;
    justify-content: center;
  }

  .yellow-text {
    font-size: 0.95rem;
    white-space: normal;
    text-align: center;
    width: 100%;
  }

  .yellow-phone {
    width: 100%;
    justify-content: center;
  }

  .row.yellow::before {
    clip-path: polygon(0 14%, 100% 4%, 100% 90%, 0 100%);
  }

  .footer-call {
    width: fit-content;
  }

  .footer-bottom-wrap {
    min-height: 52px;
    padding: 0.6rem 0;
  }

  .site-footer {
    margin-top: 0;
  }

  .footer-wave {
    display: none;
  }

  .site-footer::before {
    display: none;
  }

  .footer-main {
    padding: 2rem 0 1.8rem;
  }

  .parallax.parallax-1 {
    background-attachment: scroll;
  }
}