/* AADENA10 Site Manager — Front v0.1.1 */
.aad10-shell,
.aad10-shell * {
  box-sizing: border-box;
}

.aad10-shell {
  --aad10-navy: #071f3b;
  --aad10-navy-2: #0b2f56;
  --aad10-blue: #2995e8;
  --aad10-light: #f4f9fd;
  --aad10-white: #ffffff;
  --aad10-content: 1240px;
  --aad10-logo-width: 158px;
  --aad10-logo-width-mobile: 132px;
  --aad10-hero-desktop: 690px;
  --aad10-hero-tablet: 640px;
  --aad10-hero-mobile: 680px;
  --aad10-overlay-left: .92;
  --aad10-overlay-right: .20;
  position: relative;
  color: var(--aad10-white);
  font-family: inherit;
}

.aad10-fullbleed {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.aad10-hero-wrap {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--aad10-navy);
}

.aad10-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.aad10-header__inner {
  width: min(calc(100% - 48px), var(--aad10-content));
  min-height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.aad10-header__logo {
  display: inline-flex;
  align-items: center;
  color: var(--aad10-white);
  text-decoration: none;
}

.aad10-header__logo picture {
  display: flex;
  align-items: center;
}

.aad10-header__logo img {
  display: block;
  width: var(--aad10-logo-width);
  max-height: 64px;
  object-fit: contain;
  filter: none;
}

.aad10-header--logo-white .aad10-header__logo img {
  filter: brightness(0) invert(1);
}

.aad10-header__nav {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: clamp(18px, 2vw, 38px);
  min-height: 88px;
}

.aad10-header__nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,.90);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .2s ease;
}

.aad10-header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19px;
  height: 2px;
  background: var(--aad10-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.aad10-header__nav a:hover,
.aad10-header__nav a:focus-visible,
.aad10-header__nav a.is-active {
  color: var(--aad10-white);
}

.aad10-header__nav a:hover::after,
.aad10-header__nav a:focus-visible::after,
.aad10-header__nav a.is-active::after {
  transform: scaleX(1);
}

.aad10-header__phone {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 5px;
  color: var(--aad10-white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
  background: rgba(3,21,40,.38);
  backdrop-filter: blur(7px);
  transition: background .2s ease, border-color .2s ease;
}

.aad10-header__phone:hover,
.aad10-header__phone:focus-visible {
  background: rgba(41,149,232,.22);
  border-color: rgba(255,255,255,.72);
}

.aad10-header__phone svg,
.aad10-btn svg,
.aad10-proof svg,
.aad10-mobile-nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.aad10-hero {
  --aad10-bg-desktop: none;
  --aad10-bg-tablet: var(--aad10-bg-desktop);
  --aad10-bg-mobile: var(--aad10-bg-tablet);
  --aad10-pos-desktop: center center;
  --aad10-pos-tablet: center center;
  --aad10-pos-mobile: 62% center;
  position: relative;
  z-index: 1;
  min-height: var(--aad10-hero-desktop);
  display: flex;
  background-color: var(--aad10-navy);
  background-image: var(--aad10-bg-desktop);
  background-size: cover;
  background-position: var(--aad10-pos-desktop);
}

.aad10-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(4,24,46,var(--aad10-overlay-left)) 0%,
      rgba(5,29,54,.78) 38%,
      rgba(5,29,54,.44) 60%,
      rgba(5,29,54,var(--aad10-overlay-right)) 100%
    );
}

.aad10-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(0deg, rgba(2,18,35,.32), transparent);
  pointer-events: none;
}

.aad10-hero__inner {
  width: min(calc(100% - 48px), var(--aad10-content));
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 140px 0 64px;
}

.aad10-hero__content {
  width: min(670px, 58%);
}

.aad10-hero h1 {
  margin: 0;
  max-width: 680px;
  color: var(--aad10-white);
  font-size: clamp(44px, 4.6vw, 68px);
  line-height: 1.04;
  letter-spacing: -.035em;
  font-weight: 780;
  text-wrap: balance;
}

.aad10-hero__subtitle {
  margin: 25px 0 0;
  max-width: 620px;
  color: rgba(255,255,255,.92);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.45;
}

.aad10-hero__proofs {
  margin-top: 33px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 34px;
}

.aad10-proof {
  min-width: 145px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
}

.aad10-proof__icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
  color: var(--aad10-white);
}

.aad10-proof__text {
  color: var(--aad10-white);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
}

.aad10-hero__actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.aad10-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 5px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .035em;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.aad10-btn:hover,
.aad10-btn:focus-visible {
  transform: translateY(-2px);
}

.aad10-btn--primary {
  color: var(--aad10-white);
  background: var(--aad10-blue);
  box-shadow: 0 14px 30px rgba(19,113,187,.24);
}

.aad10-btn--primary:hover,
.aad10-btn--primary:focus-visible {
  background: #1686db;
}

.aad10-btn--outline {
  color: var(--aad10-white);
  border-color: rgba(255,255,255,.60);
  background: rgba(7,31,59,.22);
  backdrop-filter: blur(5px);
}

.aad10-btn--outline:hover,
.aad10-btn--outline:focus-visible {
  background: rgba(255,255,255,.10);
  border-color: var(--aad10-white);
}

.aad10-mobile-nav {
  display: none;
}

@media (max-width: 1120px) {
  .aad10-header__inner {
    gap: 20px;
  }

  .aad10-header__nav {
    gap: 18px;
  }

  .aad10-header__nav a {
    font-size: 11px;
  }

  .aad10-header__phone {
    padding-inline: 13px;
  }

  .aad10-hero {
    min-height: var(--aad10-hero-tablet);
    background-image: var(--aad10-bg-tablet);
    background-position: var(--aad10-pos-tablet);
  }

  .aad10-hero__content {
    width: min(690px, 70%);
  }
}

@media (max-width: 860px) {
  .aad10-header__inner {
    min-height: 78px;
    grid-template-columns: auto 1fr;
  }

  .aad10-header__logo img {
    width: min(var(--aad10-logo-width), 144px);
    max-height: 56px;
  }

  .aad10-header__nav {
    display: none;
  }

  .aad10-header__phone {
    justify-self: end;
  }

  .aad10-hero__inner {
    padding-top: 120px;
  }

  .aad10-hero__content {
    width: min(650px, 82%);
  }
}

@media (max-width: 767px) {
  body.aad10-has-mobile-nav {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }

  .aad10-header {
    border-bottom: 0;
  }

  .aad10-header__inner {
    width: min(calc(100% - 32px), var(--aad10-content));
    min-height: 72px;
    grid-template-columns: 1fr;
  }

  .aad10-header__logo img {
    width: min(var(--aad10-logo-width-mobile), 180px);
  }

  .aad10-header__phone {
    display: none;
  }

  .aad10-hero {
    min-height: var(--aad10-hero-mobile);
    background-image: var(--aad10-bg-mobile);
    background-position: var(--aad10-pos-mobile);
  }

  .aad10-hero::before {
    background:
      linear-gradient(
        180deg,
        rgba(4,24,46,.55) 0%,
        rgba(4,24,46,.76) 34%,
        rgba(4,24,46,.94) 100%
      );
  }

  .aad10-hero__inner {
    width: min(calc(100% - 32px), var(--aad10-content));
    align-items: flex-end;
    padding: 110px 0 62px;
  }

  .aad10-hero__content {
    width: 100%;
  }

  .aad10-hero h1 {
    font-size: clamp(36px, 10.5vw, 50px);
    line-height: 1.06;
  }

  .aad10-hero__subtitle {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.45;
  }

  .aad10-hero__proofs {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .aad10-proof {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }

  .aad10-proof__icon {
    width: 36px;
    height: 36px;
  }

  .aad10-proof__icon svg {
    width: 19px;
    height: 19px;
  }

  .aad10-proof__text {
    font-size: 11px;
    line-height: 1.25;
  }

  .aad10-hero__actions {
    margin-top: 27px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .aad10-btn {
    min-height: 50px;
    padding: 0 13px;
    font-size: 11px;
  }

  .aad10-btn svg {
    width: 18px;
    height: 18px;
  }

  .aad10-mobile-nav {
    position: fixed;
    z-index: 99990;
    left: 10px;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom, 10px));
    display: block;
    color: var(--aad10-white);
  }

  .aad10-mobile-nav__inner {
    min-height: 64px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
    padding: 6px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    background: rgba(5,27,51,.96);
    box-shadow: 0 15px 40px rgba(0,0,0,.30);
    backdrop-filter: blur(12px);
  }

  .aad10-mobile-nav a {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border-radius: 11px;
    color: rgba(255,255,255,.72);
    text-decoration: none;
    font-size: 10px;
    line-height: 1;
    transition: background .2s ease, color .2s ease;
  }

  .aad10-mobile-nav a.is-active,
  .aad10-mobile-nav a:hover,
  .aad10-mobile-nav a:focus-visible {
    color: var(--aad10-white);
    background: rgba(41,149,232,.22);
  }

  .aad10-mobile-nav__icon {
    height: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .aad10-mobile-nav__icon svg {
    width: 22px;
    height: 22px;
  }

  .aad10-mobile-nav__label {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 430px) {
  .aad10-hero__proofs {
    grid-template-columns: repeat(3, 1fr);
  }

  .aad10-proof__text {
    font-size: 10px;
  }

  .aad10-btn {
    font-size: 10px;
  }

  .aad10-mobile-nav__label {
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aad10-shell *,
  .aad10-shell *::before,
  .aad10-shell *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
