:root {
  --primary-blue: #0076e8;
  --primary-blue-dark: #005fc8;
  --navy: #0a1c2a;
  --navy-soft: #102b40;
  --dark-text: #182b3c;
  --body-text: #526677;
  --white: #ffffff;
  --soft-blue: #eef7ff;
  --border: #dce7ef;
  --footer-text: #bdc9d3;
  --shadow: 0 12px 32px rgba(7, 38, 68, 0.13);
  --container: 1280px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--dark-text);
  background: var(--white);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.drawer-open,
body.search-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

button {
  border: 0;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--primary-blue);
  border-radius: 7px;
  transform: translateY(-150%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: color var(--transition), background-color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button__arrow {
  margin-left: 2px;
}

.button--primary {
  color: var(--white);
  background: var(--primary-blue);
  box-shadow: 0 8px 20px rgba(0, 118, 232, 0.25);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--primary-blue-dark);
  box-shadow: 0 10px 24px rgba(0, 95, 200, 0.32);
  transform: translateY(-1px);
}

.button--outline {
  color: var(--primary-blue-dark);
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--primary-blue);
}

.button--outline:hover,
.button--outline:focus-visible {
  color: var(--white);
  background: var(--primary-blue);
}

.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--dark-text);
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: color var(--transition), background-color var(--transition);
}

.icon-button:hover,
.icon-button:focus-visible {
  color: var(--primary-blue);
  background: var(--soft-blue);
}

.icon-button svg {
  width: 22px;
  height: 22px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  box-shadow: 0 2px 14px rgba(15, 39, 60, 0.07);
  transform: translateY(0);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), box-shadow var(--transition);
  will-change: transform;
}

.site-header.is-hidden {
  pointer-events: none;
  transform: translateY(calc(-100% - 2px));
}

body.drawer-open .site-header,
body.search-open .site-header {
  pointer-events: auto;
  transform: translateY(0);
}

.site-header.is-sticky .navbar {
  box-shadow: 0 5px 22px rgba(12, 36, 56, 0.1);
}

.topbar {
  height: 36px;
  color: #cfdae3;
  background: var(--navy);
  font-size: 11px;
}

.topbar__inner,
.topbar__address,
.topbar__contact,
.topbar__contact a {
  display: flex;
  align-items: center;
}

.topbar__inner {
  height: 100%;
  justify-content: space-between;
}

.topbar__address,
.topbar__contact a {
  gap: 7px;
}

.topbar svg {
  width: 15px;
  height: 15px;
  color: var(--primary-blue);
}

.topbar__contact {
  gap: 27px;
}

.topbar a {
  transition: color var(--transition);
}

.topbar a:hover,
.topbar a:focus-visible {
  color: var(--white);
}

.navbar {
  position: relative;
  height: 90px;
  background: rgba(255, 255, 255, 0.98);
}

.navbar__inner {
  display: flex;
  height: 100%;
  align-items: center;
}

.brand {
  display: block;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand img {
  max-width: none;
}

.brand--header {
  position: relative;
  width: 244px;
  height: 51px;
}

.brand--header img {
  position: absolute;
  width: 260px;
  height: 87px;
  max-width: none;
  top: -18px;
  left: -16px;
}

.desktop-nav {
  display: flex;
  height: 100%;
  align-items: stretch;
  gap: 32px;
  margin-left: auto;
}

.desktop-nav > a,
.nav-dropdown > a {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  gap: 5px;
  color: #273847;
  font-size: 13px;
  font-weight: 600;
  transition: color var(--transition);
}

.desktop-nav > a::after,
.nav-dropdown > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  background: var(--primary-blue);
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-active {
  color: var(--primary-blue);
}

.desktop-nav > a:hover::after,
.desktop-nav > a:focus-visible::after,
.desktop-nav > a.is-active::after,
.nav-dropdown > a:hover::after,
.nav-dropdown > a:focus-visible::after,
.nav-dropdown > a.is-active::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  height: 100%;
}

.nav-dropdown > a svg {
  width: 13px;
  height: 13px;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% - 2px);
  left: -18px;
  width: 210px;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0 0 10px 10px;
  box-shadow: var(--shadow);
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--dark-text);
  font-size: 13px;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
  color: var(--primary-blue);
  background: var(--soft-blue);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 26px;
}

.header-cta {
  min-width: 168px;
}

.menu-toggle {
  display: none;
}

.search-panel {
  position: absolute;
  z-index: 4;
  top: 100%;
  right: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 12px 26px rgba(8, 33, 55, 0.12);
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.search-panel.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.search-panel__inner {
  display: flex;
  height: 74px;
  align-items: center;
  gap: 14px;
}

.search-panel__inner > svg {
  width: 22px;
  height: 22px;
  color: var(--primary-blue);
}

.search-panel input {
  min-width: 0;
  flex: 1;
  height: 46px;
  color: var(--dark-text);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 17px;
}

.search-panel button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--body-text);
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
}

.search-panel button svg {
  width: 20px;
  height: 20px;
}

.page-overlay {
  position: fixed;
  z-index: 600;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(3, 16, 29, 0.7);
  backdrop-filter: blur(2px);
  transition: opacity var(--transition), visibility var(--transition);
}

.page-overlay.is-visible {
  visibility: visible;
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  z-index: 700;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  width: min(430px, 88vw);
  flex-direction: column;
  padding: 30px 28px 24px;
  visibility: hidden;
  background: var(--white);
  box-shadow: -18px 0 45px rgba(3, 24, 43, 0.24);
  transform: translateX(105%);
  transition: transform 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-drawer.is-open {
  visibility: visible;
  transform: translateX(0);
}

.mobile-drawer__head {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.brand--drawer {
  position: relative;
  width: 237px;
  height: 50px;
}

.brand--drawer img {
  position: absolute;
  width: 252px;
  height: 84px;
  top: -17px;
  left: -15px;
}

.drawer-close {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--primary-blue);
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.drawer-close:hover,
.drawer-close:focus-visible {
  background: var(--primary-blue-dark);
  transform: rotate(4deg);
}

.drawer-close svg {
  width: 22px;
  height: 22px;
}

.drawer-nav {
  display: grid;
  gap: 4px;
}

.drawer-nav a {
  display: grid;
  min-height: 52px;
  grid-template-columns: 27px 1fr 20px;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  color: #253b4c;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  transition: color var(--transition), background-color var(--transition);
}

.drawer-nav a:hover,
.drawer-nav a:focus-visible,
.drawer-nav a.is-active {
  color: var(--primary-blue-dark);
  background: #eaf5ff;
}

.drawer-nav__icon svg {
  width: 20px;
  height: 20px;
}

.drawer-nav__arrow {
  width: 17px;
  height: 17px;
  justify-self: end;
}

.drawer-cta {
  width: 100%;
  margin-top: 24px;
  border-top: 1px solid var(--border);
}

.drawer-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 26px;
}

.drawer-social a,
.social-list a {
  display: block;
  color: var(--primary-blue);
  border-radius: 5px;
  transition: color var(--transition), transform var(--transition);
}

.drawer-social a:hover,
.drawer-social a:focus-visible,
.social-list a:hover,
.social-list a:focus-visible {
  color: #29a3ff;
  transform: translateY(-2px);
}

.drawer-social svg {
  width: 25px;
  height: 25px;
}

.drawer-tagline {
  margin: 21px 0 0;
  color: #8a9aaa;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  line-height: 1.7;
  text-align: center;
}

.hero {
  position: relative;
  min-height: 610px;
  isolation: isolate;
  overflow: hidden;
  background: #f9fbfd;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -180px;
  left: -180px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(0, 118, 232, 0.08) 0, rgba(0, 118, 232, 0) 67%);
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 610px;
  align-items: center;
}

.hero__content {
  width: 50%;
  max-width: 650px;
  padding: 58px 0 64px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 17px;
  color: #597086;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3.5px;
}

.eyebrow span {
  width: 36px;
  height: 3px;
  flex: 0 0 auto;
  background: var(--primary-blue);
}

.hero h1 {
  margin: 0;
  color: #172b3c;
  font-size: clamp(44px, 4.2vw, 61px);
  font-weight: 800;
  letter-spacing: -2.8px;
  line-height: 1.03;
}

.hero h1 span {
  color: var(--primary-blue);
}

.hero__description {
  max-width: 580px;
  margin: 20px 0 0;
  color: var(--body-text);
  font-size: 15px;
  line-height: 1.65;
}

.hero__values {
  display: grid;
  max-width: 635px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 25px;
}

.value-item {
  display: grid;
  min-width: 0;
  grid-template-columns: 43px 1fr;
  align-items: center;
  gap: 10px;
}

.value-item__icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: var(--primary-blue);
  background: var(--soft-blue);
  border-radius: 10px;
}

.value-item__icon svg {
  width: 24px;
  height: 24px;
}

.value-item strong,
.value-item small {
  display: block;
}

.value-item strong {
  color: #233645;
  font-size: 11px;
  line-height: 1.25;
}

.value-item small {
  margin-top: 3px;
  color: #748696;
  font-size: 9px;
  line-height: 1.3;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 31px;
}

.hero__actions .button {
  min-height: 54px;
  padding-inline: 25px;
}

.play-icon {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 7px;
  text-indent: 1px;
}

.hero__media {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  width: 54%;
  overflow: hidden;
  clip-path: polygon(19% 0, 100% 0, 100% 100%, 0 100%, 10% 73%, 0 58%);
  background: #dcecff;
  filter: drop-shadow(-12px 0 24px rgba(0, 118, 232, 0.08));
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      101deg,
      rgba(249, 251, 253, 0.98) 0%,
      rgba(249, 251, 253, 0.9) 7%,
      rgba(249, 251, 253, 0.62) 15%,
      rgba(249, 251, 253, 0.24) 24%,
      rgba(249, 251, 253, 0) 34%
    ),
    linear-gradient(90deg, rgba(224, 240, 252, 0.18), transparent 48%);
  pointer-events: none;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.hero__media-label {
  position: absolute;
  z-index: 2;
  top: 55px;
  right: clamp(28px, 4vw, 74px);
  color: #173148;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 4px;
  line-height: 1.65;
}

.hero__media-label span {
  display: block;
  width: 40px;
  height: 3px;
  margin-bottom: 10px;
  background: var(--primary-blue);
}

.hero__corner {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  display: grid;
  width: 212px;
  height: 145px;
  place-items: end center;
  padding-bottom: 24px;
  color: var(--white);
  background: var(--primary-blue);
  clip-path: polygon(43% 0, 100% 0, 100% 100%, 0 100%);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1.6;
  text-align: center;
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--footer-text);
  background: var(--navy);
}

/* Floating contact rail */
.contact-dock {
  position: fixed;
  z-index: 95;
  top: 50%;
  right: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 13px 9px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(199, 217, 231, 0.75);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(10, 40, 65, 0.2);
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
}

.contact-dock__link,
.contact-dock__toggle {
  position: relative;
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: var(--primary-blue);
  border-radius: 50%;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.contact-dock__link:hover,
.contact-dock__link:focus-visible {
  box-shadow: 0 6px 14px rgba(5, 56, 99, 0.24);
  transform: scale(1.08);
}

.contact-dock__link svg,
.contact-dock__toggle svg {
  width: 21px;
  height: 21px;
}

.contact-dock__link--whatsapp { background: #22c967; }
.contact-dock__link--tiktok { background: #111318; }
.contact-dock__link--instagram { background: linear-gradient(140deg, #6f48d9, #e33a87 55%, #ff9535); }
.contact-dock__link--youtube { background: #ff1919; }
.contact-dock__link--facebook { background: #1877f2; }

.contact-dock__toggle {
  color: #18547f;
  background: #eef6fc;
}

.contact-dock__toggle:hover,
.contact-dock__toggle:focus-visible {
  background: #dfeefa;
}

.contact-dock__link::before {
  content: attr(data-label);
  position: absolute;
  top: 50%;
  right: calc(100% + 9px);
  width: max-content;
  padding: 5px 8px;
  color: #fff;
  background: #17344b;
  border-radius: 5px;
  opacity: 0;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
  transform: translate(5px, -50%);
  transition: opacity var(--transition), transform var(--transition);
}

.contact-dock__link:hover::before,
.contact-dock__link:focus-visible::before {
  opacity: 1;
  transform: translate(0, -50%);
}

.contact-dock__mobile-more {
  display: contents;
}

.contact-dock__desktop-only {
  display: none;
}

.contact-dock.is-expanded .contact-dock__desktop-only {
  display: grid;
  animation: contactDockItemIn 0.22s ease both;
}

.contact-dock.is-expanded .contact-dock__desktop-only:nth-of-type(4) { animation-delay: 25ms; }
.contact-dock.is-expanded .contact-dock__desktop-only:nth-of-type(5) { animation-delay: 50ms; }
.contact-dock.is-expanded .contact-dock__desktop-only:nth-of-type(6) { animation-delay: 75ms; }
.contact-dock.is-expanded .contact-dock__desktop-only:nth-of-type(7) { animation-delay: 100ms; }
.contact-dock.is-expanded .contact-dock__desktop-only:nth-of-type(8) { animation-delay: 125ms; }

.contact-dock__toggle svg {
  transition: transform var(--transition);
}

.contact-dock.is-expanded .contact-dock__toggle svg {
  transform: rotate(180deg);
}

@keyframes contactDockItemIn {
  from { opacity: 0; transform: translateY(-7px) scale(0.88); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.eyebrow,
.value-item strong,
.value-item small,
.drawer-nav a,
.drawer-tagline,
.footer-tagline,
.footer-column li a,
.footer-contact address,
.footer-social p,
.topbar,
.hero__media-label,
.hero__corner,
.footer__bottom p,
.footer__bottom nav a {
  font-weight: 600;
}

@media (max-width: 767px) {
  .contact-dock {
    top: 50%;
    right: 10px;
    gap: 8px;
    padding: 10px 8px;
  }

  .contact-dock__link,
  .contact-dock__toggle {
    width: 38px;
    height: 38px;
  }

  .contact-dock__desktop-only,
  .contact-dock__mobile-more {
    display: none;
  }

  .contact-dock.is-expanded .contact-dock__desktop-only {
    display: none;
  }

  .contact-dock.is-expanded .contact-dock__mobile-more {
    display: contents;
  }

  .contact-dock__link::before {
    display: none;
  }

  .contact-dock.is-expanded .contact-dock__mobile-more .contact-dock__link {
    animation: contactDockItemIn 0.22s ease both;
  }
}

.site-footer::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -300px;
  right: -230px;
  width: 650px;
  height: 500px;
  border: 50px solid rgba(0, 118, 232, 0.48);
  border-radius: 46%;
  transform: rotate(25deg);
}

.footer-accent {
  position: absolute;
  z-index: -1;
  background: rgba(0, 118, 232, 0.16);
  pointer-events: none;
}

.footer-accent--bottom {
  bottom: -125px;
  left: -170px;
  width: 430px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(0, 118, 232, 0.45);
}

.footer__main {
  display: grid;
  grid-template-columns: 1.35fr 0.78fr 0.92fr 1.05fr 0.75fr;
  gap: clamp(30px, 3vw, 58px);
  padding-top: 65px;
  padding-bottom: 57px;
}

.brand--footer {
  position: relative;
  width: 241px;
  height: 63px;
  margin-bottom: 12px;
  mix-blend-mode: screen;
  filter: invert(1) grayscale(1) brightness(1.9);
}

.brand--footer img {
  position: absolute;
  width: 256px;
  height: 85px;
  top: -12px;
  left: -15px;
}

.footer-brand > p {
  max-width: 230px;
  margin: 0;
  color: #c8d3dc;
  font-size: 13px;
  line-height: 1.55;
}

.footer-tagline {
  margin-top: 22px;
  color: #92a8b9;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 3.4px;
  line-height: 1.7;
}

.footer-tagline span {
  display: block;
  width: 35px;
  height: 2px;
  margin-bottom: 9px;
  background: var(--primary-blue);
}

.footer-column h2 {
  margin: 3px 0 8px;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}

.footer-title-line {
  width: 38px;
  height: 3px;
  margin-bottom: 17px;
  background: var(--primary-blue);
  border-radius: 3px;
}

.footer-column ul {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-column li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  transition: color var(--transition), transform var(--transition);
}

.footer-column li a svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  color: var(--primary-blue);
}

.footer-column li a:hover,
.footer-column li a:focus-visible {
  color: var(--white);
  transform: translateX(2px);
}

.footer-contact address {
  display: grid;
  gap: 14px;
  font-style: normal;
}

.footer-contact address a {
  display: grid;
  grid-template-columns: 31px 1fr;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #c3d0d9;
  font-size: 11px;
  line-height: 1.55;
  transition: color var(--transition);
}

.footer-contact address a:hover,
.footer-contact address a:focus-visible {
  color: var(--white);
}

.footer-contact__icon {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: var(--primary-blue);
  background: rgba(0, 118, 232, 0.15);
  border-radius: 50%;
}

.footer-contact__icon svg {
  width: 16px;
  height: 16px;
}

.social-list {
  display: flex;
  gap: 8px;
}

.social-list svg {
  width: 28px;
  height: 28px;
}

.footer-social__rule {
  width: 65px;
  height: 1px;
  margin: 23px 0;
  background: #4d6679;
}

.footer-social p {
  max-width: 150px;
  margin: 0;
  color: #aebdca;
  font-size: 11px;
  line-height: 1.55;
}

.footer__bottom {
  border-top: 1px solid rgba(159, 183, 200, 0.38);
}

.footer__bottom-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer__bottom p {
  margin: 0;
  font-size: 11px;
}

.footer__bottom nav {
  display: flex;
  align-items: center;
}

.footer__bottom nav a {
  padding: 0 22px;
  border-left: 1px solid #536a7b;
  font-size: 11px;
  transition: color var(--transition);
}

.footer__bottom nav a:first-child {
  border-left: 0;
}

.footer__bottom nav a:last-child {
  padding-right: 0;
}

.footer__bottom nav a:hover,
.footer__bottom nav a:focus-visible {
  color: var(--white);
}

:focus-visible {
  outline: 3px solid rgba(0, 118, 232, 0.45);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
