    @font-face {
      font-family: 'Nunito Sans';
      src: url('/static/fonts/NunitoSans-ExtraLight.ttf') format('truetype');
      font-weight: 200;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Nunito Sans';
      src: url('/static/fonts/NunitoSans-ExtraLightItalic.ttf') format('truetype');
      font-weight: 200;
      font-style: italic;
      font-display: swap;
    }
    @font-face {
      font-family: 'Nunito Sans';
      src: url('/static/fonts/NunitoSans-Light.ttf') format('truetype');
      font-weight: 300;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Nunito Sans';
      src: url('/static/fonts/NunitoSans-LightItalic.ttf') format('truetype');
      font-weight: 300;
      font-style: italic;
      font-display: swap;
    }
    @font-face {
      font-family: 'Nunito Sans';
      src: url('/static/fonts/NunitoSans-Regular.ttf') format('truetype');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Nunito Sans';
      src: url('/static/fonts/NunitoSans-Italic.ttf') format('truetype');
      font-weight: 400;
      font-style: italic;
      font-display: swap;
    }
    @font-face {
      font-family: 'Nunito Sans';
      src: url('/static/fonts/NunitoSans-SemiBold.ttf') format('truetype');
      font-weight: 600;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Nunito Sans';
      src: url('/static/fonts/NunitoSans-SemiBoldItalic.ttf') format('truetype');
      font-weight: 600;
      font-style: italic;
      font-display: swap;
    }
    @font-face {
      font-family: 'Nunito Sans';
      src: url('/static/fonts/NunitoSans-Bold.ttf') format('truetype');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Nunito Sans';
      src: url('/static/fonts/NunitoSans-BoldItalic.ttf') format('truetype');
      font-weight: 700;
      font-style: italic;
      font-display: swap;
    }
    @font-face {
      font-family: 'Nunito Sans';
      src: url('/static/fonts/NunitoSans-ExtraBold.ttf') format('truetype');
      font-weight: 800;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Nunito Sans';
      src: url('/static/fonts/NunitoSans-ExtraBoldItalic.ttf') format('truetype');
      font-weight: 800;
      font-style: italic;
      font-display: swap;
    }
    @font-face {
      font-family: 'Nunito Sans';
      src: url('/static/fonts/NunitoSans-Black.ttf') format('truetype');
      font-weight: 900;
      font-style: normal;
      font-display: swap;
    }
    @font-face {
      font-family: 'Nunito Sans';
      src: url('/static/fonts/NunitoSans-BlackItalic.ttf') format('truetype');
      font-weight: 900;
      font-style: italic;
      font-display: swap;
    }

    :root {
      --ap-bg: #ececec;
      --ap-red: #e0001a;
      --ap-red-hero: #e3001b;
      --ap-red-dark: #c30018;
      --ap-blue: #2b2e8f;
      --ap-border: #cfcfcf;
      --ap-text: #000000;
      --ap-muted: #535353;
      --ap-gray-btn: #d9d9d9;
      --ap-field: #f7f7f7;
      --ap-card-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
      --ap-btn-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
      --ap-tab-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
      --ap-wrap: 1208px;
      --ap-header-wrap: 1132px;
    }

    * { box-sizing: border-box; }
    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }
    body {
      margin: 0;
      background: var(--ap-bg);
      color: var(--ap-text);
      font-family: 'Nunito Sans', Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    button, input, textarea { font: inherit; }

    .ap-wrap {
      width: min(var(--ap-wrap), calc(100% - 48px));
      margin: 0 auto;
    }
    .ap-wrap-header {
      width: min(var(--ap-header-wrap), calc(100% - 32px));
      margin: 0 auto;
    }
    .ap-card {
      border-radius: 14px;
      border: 1px solid var(--ap-border);
      background: #ffffff;
      box-shadow: var(--ap-card-shadow);
    }
    .ap-arrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 1em;
      height: 1em;
      line-height: 1;
      font-size: 1em;
    }
    .ap-icon {
      width: 16px;
      height: 16px;
      flex: 0 0 16px;
      display: inline-block;
      vertical-align: middle;
    }
    .ap-icon svg {
      width: 100%;
      height: 100%;
      display: block;
    }
    .ap-visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .ap-reveal {
      opacity: 0;
      transition:
        opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
      will-change: opacity, transform;
    }
    .ap-reveal--up { transform: translateY(24px); }
    .ap-reveal--fade { transform: none; }
    .ap-reveal--scale { transform: scale(0.96); }
    .ap-reveal--left { transform: translateX(-24px); }
    .ap-reveal--right { transform: translateX(24px); }
    .ap-reveal.is-visible {
      opacity: 1;
      transform: none;
    }
    .ap-reveal-delay-1 { transition-delay: 80ms; }
    .ap-reveal-delay-2 { transition-delay: 160ms; }
    .ap-reveal-delay-3 { transition-delay: 240ms; }
    .ap-reveal-delay-4 { transition-delay: 320ms; }
    .ap-reveal-delay-5 { transition-delay: 400ms; }

    @media (prefers-reduced-motion: reduce) {
      .ap-reveal {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
      }
    }

    .ap-header {
      width: 100%;
      background: transparent;
      color: #1d2851;
    }
    .ap-topbar-wrap {
      position: relative;
      z-index: 2;
      padding-top: 10px;
    }
    .ap-header-top {
      min-height: 34px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      font-size: 11.5px;
      font-weight: 500;
      line-height: 1.2;
      letter-spacing: -0.01em;
      color: #3a4261;
    }
    .ap-header-top-left,
    .ap-header-top-right,
    .ap-main-nav {
      display: flex;
      align-items: center;
    }
    .ap-header-top-left,
    .ap-header-top-right {
      gap: 19px;
      white-space: nowrap;
    }
    .ap-topbar-item {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      opacity: .94;
    }
    .ap-topbar-icon {
      width: 12px;
      height: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      color: #4a516d;
      font-size: 10px;
      line-height: 1;
    }
    .ap-topbar-icon-line svg {
      width: 12px;
      height: 12px;
      display: block;
    }
    .ap-header-phone {
      color: #3a4261;
      white-space: nowrap;
    }
    .ap-header-shell {
      position: relative;
      margin-top: 6px;
      z-index: 2;
    }
    .ap-header-bottom {
      position: relative;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 0 18px 0 16px;
      background: rgba(255, 255, 255, 0.55);
      border-radius: 0 0 13px 13px;
      border-top: 1px solid rgba(255,255,255,0.06);
      box-shadow: 0 6px 16px rgba(24, 38, 86, 0.04);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      overflow: hidden;
    }
    .ap-header-logo img {
      height: 27px;
      width: auto;
    }
    .ap-main-nav-wrap {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-left: auto;
      flex: 1;
      min-width: 0;
    }
    .ap-main-nav {
      gap: 30px;
      margin-left: 54px;
      margin-right: auto;
      font-size: 12.8px;
      font-weight: 600;
      line-height: 1.2;
      letter-spacing: -0.01em;
      flex-wrap: wrap;
    }

    .ap-cookie-banner,
    .ap-cookie-mini-banner {
      position: fixed;
      z-index: 2000;
      border-radius: 14px;
      background: rgba(13, 17, 33, 0.96);
      color: #ffffff;
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    }

    .ap-cookie-banner {
      left: 24px;
      right: 24px;
      bottom: 24px;
      padding: 18px 20px;
      max-width: 920px;
      margin: 0 auto;
      line-height: 1.45;
      font-size: 13px;
    }

    .ap-cookie-banner__title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .ap-cookie-banner p {
      margin: 0;
    }

    .ap-cookie-banner__actions {
      margin-top: 14px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .ap-cookie-banner__btn {
      border: 0;
      cursor: pointer;
      border-radius: 9px;
      padding: 9px 18px;
      font-size: 14px;
      font-weight: 700;
      transition: opacity .2s ease;
    }

    .ap-cookie-banner__btn:hover {
      opacity: .9;
    }

    .ap-cookie-banner__btn--accept {
      background: var(--ap-red);
      color: #ffffff;
    }

    .ap-cookie-banner__btn--decline {
      background: rgba(255, 255, 255, 0.13);
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.45);
    }

    .ap-cookie-mini-banner {
      right: 24px;
      bottom: 24px;
      width: min(360px, calc(100vw - 32px));
      padding: 14px 14px 14px 16px;
    }

    .ap-cookie-mini-banner p {
      margin: 0 26px 10px 0;
      font-size: 13px;
      line-height: 1.35;
    }

    .ap-cookie-mini-banner__allow {
      border: 0;
      border-radius: 8px;
      background: #ffffff;
      color: #101531;
      padding: 8px 12px;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
    }

    .ap-cookie-mini-banner__close {
      position: absolute;
      top: 7px;
      right: 8px;
      border: 0;
      background: transparent;
      color: #ffffff;
      cursor: pointer;
      font-size: 22px;
      line-height: 1;
      padding: 0;
    }

    .ap-scroll-top {
      position: fixed;
      left: 24px;
      bottom: 24px;
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 999px;
      background: var(--ap-blue);
      color: #fff;
      font-size: 24px;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
      opacity: 0;
      pointer-events: none;
      transform: translateY(12px);
      transition: opacity .2s ease, transform .2s ease, background-color .2s ease;
      z-index: 1200;
    }
    .ap-scroll-top:hover {
      background: #23257a;
    }
    .ap-scroll-top.is-visible {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    @media (max-width: 768px) {
      .ap-cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 14px;
        max-height: 75vh;
        overflow-y: auto;
      }

      .ap-cookie-banner__title {
        font-size: 16px;
      }

      .ap-cookie-banner__actions {
        gap: 8px;
      }

      .ap-cookie-banner__btn {
        width: 100%;
      }

      .ap-cookie-mini-banner {
        right: 10px;
        bottom: 10px;
      }

      .ap-scroll-top {
        left: 10px;
        bottom: 10px;
      }
    }
    .ap-header-top a,
    .ap-main-nav a,
    .ap-header-locale,
    .ap-header-account {
      transition: color .2s ease, background-color .2s ease, opacity .2s ease;
    }
    .ap-header-top a:hover,
    .ap-main-nav a:hover,
    .ap-header-locale:hover {
      color: #2f3fb2;
    }
    .ap-header-locale {
      font-size: 11.5px;
      text-transform: uppercase;
      letter-spacing: .02em;
      color: #3a4261;
    }
    .ap-header-account {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      height: 36px;
      padding: 0 13px 0 15px;
      border-radius: 9px;
      background: linear-gradient(180deg, #2947bf 0%, #223aa6 100%);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: -0.01em;
      box-shadow: 0 8px 14px rgba(36, 61, 180, 0.1);
      white-space: nowrap;
    }
    .ap-arrow {
      width: 11px;
      height: 11px;
    }
    .ap-arrow svg {
      width: 11px;
      height: 11px;
      display: block;
    }
    .ap-header-account:hover {
      background: linear-gradient(180deg, #253fae 0%, #1d3394 100%);
      color: #fff;
    }
    .ap-mobile-menu {
      display: none;
      margin-left: auto;
      position: relative;
    }
    .ap-mobile-menu__toggle {
      list-style: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 999px;
      border: 1px solid #d7dfeb;
      background: #fff;
      cursor: pointer;
      box-shadow: 0 2px 6px rgba(15, 23, 42, .08);
    }
    .ap-mobile-menu__toggle::-webkit-details-marker {
      display: none;
    }
    .ap-mobile-menu__toggle-icon,
    .ap-mobile-menu__toggle-icon::before,
    .ap-mobile-menu__toggle-icon::after {
      width: 18px;
      height: 2px;
      border-radius: 99px;
      background: #1d2851;
      display: block;
      transition: transform .2s ease, opacity .2s ease;
      content: "";
    }
    .ap-mobile-menu__toggle-icon {
      position: relative;
    }
    .ap-mobile-menu__toggle-icon::before {
      position: absolute;
      left: 0;
      top: -6px;
    }
    .ap-mobile-menu__toggle-icon::after {
      position: absolute;
      left: 0;
      top: 6px;
    }
    .ap-mobile-menu[open] .ap-mobile-menu__toggle-icon {
      background: transparent;
    }
    .ap-mobile-menu[open] .ap-mobile-menu__toggle-icon::before {
      transform: translateY(6px) rotate(45deg);
    }
    .ap-mobile-menu[open] .ap-mobile-menu__toggle-icon::after {
      transform: translateY(-6px) rotate(-45deg);
    }
    .ap-mobile-menu__panel {
      margin-top: 10px;
      width: min(92vw, 360px);
      border: 1px solid #d6deea;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 14px 34px rgba(12, 22, 48, .18);
      padding: 8px;
      max-height: min(72svh, 540px);
      overflow-y: auto;
    }
    .ap-mobile-menu__nav {
      display: grid;
      gap: 3px;
    }
    .ap-mobile-menu__nav a {
      display: flex;
      align-items: center;
      min-height: 42px;
      padding: 8px 12px;
      border-radius: 12px;
      font-size: 14px;
      font-weight: 600;
      color: #213053;
      line-height: 1.2;
    }
    .ap-mobile-menu__nav a:hover {
      background: #f3f6fb;
      color: #1f40b8;
    }
    .ap-mobile-menu__actions {
      margin-top: 10px;
      padding: 10px;
      border-radius: 12px;
      background: #f5f7fb;
      display: grid;
      gap: 10px;
    }
    .ap-mobile-menu__account {
      min-height: 40px;
      border-radius: 999px;
      background: linear-gradient(180deg, #2947bf 0%, #223aa6 100%);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
    }
    .ap-mobile-menu__phone {
      font-size: 14px;
      font-weight: 700;
      color: #2b3550;
    }
    .ap-mobile-menu__locale {
      width: fit-content;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: #4f5d7a;
    }

    .ap-hero {
      background: var(--ap-bg);
      color: #020817;
    }
    .ap-hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
      align-items: center;
      gap: 56px;
      padding: 22px 0 26px;
    }
    .ap-hero-copy {
      min-width: 0;
    }
    .ap-hero-pill {
      gap: 8px;
      display: inline-flex;
      align-items: center;
      border: 1px solid #d1d9e6;
      border-radius: 999px;
      background: #fff;
      padding: 8px 14px;
      color: #334155;
      font-size: 14px;
      line-height: 1.2;
      box-shadow: 0 1px 2px rgba(15, 23, 42, .06);
    }
    
.template-homepage .ap-hero-pill--about {
      border: 1px solid #e2e8f0;
      padding: 8px 16px;
      box-shadow: 0 16px 32px rgba(148, 163, 184, .25);
      font-weight: 600;
      vertical-align: middle;
    }
.template-homepage .ap-hero-pill--about .ap-hero-pill__icon {
      width: 16px;
      height: 16px;
      flex: 0 0 16px;
      color: #e30613;
      display: block;
    }
    .template-homepage .ap-hero-pill--about span {
      display: inline-block;
      line-height: 1.25;
      white-space: nowrap;
    }
.template-homepage .ap-hero-title {
      max-width: 760px;
      margin: 16px 0 0;
      font-size: 76px;
      font-weight: 900;
      line-height: 1.02;
      letter-spacing: -0.045em;
    }
    .ap-hero-lead {
      max-width: 650px;
      margin: 18px 0 0;
      color: #334155;
      font-size: 18px;
      line-height: 1.58;
    }
    .ap-hero-row {
      margin-top: 24px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
    }
    .ap-btn-red {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 43px;
      padding: 0 24px;
      border: 0;
      border-radius: 999px;
      background: var(--ap-red-hero);
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      line-height: 1;
      box-shadow: var(--ap-btn-shadow);
      cursor: pointer;
      transition: background-color .2s ease, transform .2s ease;
    }
    .ap-btn-red:hover { background: #ca0018; }
    .ap-btn-outline--hero {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 43px;
      padding: 10px 24px;
      border-radius: 999px;
      border: 1px solid #cdd5e1;
      background: #fff;
      color: #111827;
      font-size: 16px;
      font-weight: 500;
      line-height: 1;
      text-decoration: none;
      box-shadow: 0 1px 2px rgba(15, 23, 42, .05);
    }
    .ap-btn-outline--hero:hover {
      border-color: #b9c3d3;
      color: #0f172a;
    }
    .ap-hero-stats {
      margin-top: 24px;
      display: grid;
      justify-items: start;
      gap: 12px;
    }
    .ap-exp-card {
      width: min(100%, 474px);
      min-height: 100px;
      border-radius: 18px;
      background: #2d33a6;
      padding: 14px 20px;
      color: #fff;
      box-shadow: 0 12px 24px rgba(30, 41, 165, .25);
    }
    .ap-exp-card strong {
      display: block;
      font-size: 48px;
      font-weight: 700;
      line-height: .9;
      letter-spacing: 0;
    }
    .ap-exp-card p {
      margin: 6px 0 0;
      font-size: 16px;
      line-height: 1.2;
    }
    .ap-hero-fleet {
      width: min(100%, 474px);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 16px;
      border: 1px solid #cfd8e3;
      border-radius: 18px;
      background: #fff;
      color: #334155;
      font-size: 16px;
      line-height: 1.35;
      box-shadow: 0 2px 8px rgba(15, 23, 42, .05);
    }
    .ap-hero-fleet__icon {
      width: 18px;
      height: 18px;
      flex: 0 0 18px;
      color: #de0017;
      display: inline-flex;
    }
    .ap-hero-fleet__icon svg {
      width: 100%;
      height: 100%;
      display: block;
    }
    .ap-hero-image-wrap {
      position: relative;
      border-radius: 34px;
      overflow: hidden;
      width: 100%;
      height: 604px;
      border: 1px solid #cfd8e3;
      box-shadow: 0 18px 36px rgba(15, 23, 42, .14), inset 0 1px 0 rgba(255, 255, 255, .72);
      background: #fff;
    }
    .ap-hero-image-wrap::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      border: 1px solid rgba(255, 255, 255, .5);
    }
    .ap-hero-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .ap-hero-image-badges {
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 16px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }
    .ap-hero-image-badge {
      border-radius: 16px;
      background: rgba(255, 255, 255, .92);
      backdrop-filter: blur(2px);
      padding: 12px;
      color: #334155;
      min-height: 88px;
    }
    .ap-hero-image-badge strong {
      display: block;
      color: #111827;
      font-size: 14px;
      font-weight: 700;
      line-height: 1.2;
    }
    .ap-hero-image-badge span {
      display: block;
      margin-top: 6px;
      font-size: 12px;
      line-height: 1.35;
    }

    .ap-entry-section {
      padding: 48px 0 24px;
      background: var(--ap-bg);
    }
    .ap-entry-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }
    .ap-entry-card {
      display: block;
      padding: 0;
      border-radius: 32px;
      overflow: hidden;
      border: 1px solid #cfd5dc;
      background: #fff;
      box-shadow: 0 2px 8px rgba(15, 23, 42, .06);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .ap-entry-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(15, 23, 42, .12);
    }
    .ap-entry-card img {
      width: 100%;
      height: 208px;
      border-radius: 0;
      object-fit: cover;
      object-position: center;
    }
    .ap-entry-card-body {
      padding: 24px;
    }
    .ap-entry-card h2,
    .ap-entry-card h3 {
      margin: 0;
      font-size: 22px;
      font-weight: 600;
      line-height: 1.15;
      letter-spacing: -0.015em;
    }
    .ap-entry-card p {
      margin: 14px 0 0;
      max-width: 360px;
      font-size: 15px;
      line-height: 1.35;
      color: #3f4858;
    }
    .ap-entry-link {
      margin-top: 22px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--ap-red);
      font-size: 16px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      line-height: 1;
    }

    .ap-about-section {
      padding: 48px 0 80px;
      background: var(--ap-bg);
    }
    .ap-about-grid {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      align-items: center;
      gap: 40px;
    }
    .ap-about-blue {
      position: relative;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      background: var(--ap-blue);
      border-radius: 32px;
      padding: 32px;
      box-shadow: 0 10px 30px rgba(19, 44, 115, .25);
    }
    .ap-about-blue-text {
      max-width: 320px;
      color: #fff;
      font-size: 26px;
      font-weight: 700;
      line-height: 1.18;
      letter-spacing: -0.02em;
      text-wrap: pretty;
    }
    .ap-about-copy {
      max-width: 760px;
      font-size: 16px;
      line-height: 1.65;
      color: #384357;
    }
    .ap-about-copy p { margin: 0; }
    .ap-about-copy p + p { margin-top: 20px; }

    .ap-tabs-section {
      padding: 72px 0 58px;
      background: #fff;
    }
    .ap-tabs-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 32px;
    }
    .ap-tabs-head-copy h2 {
      max-width: 760px;
      margin: 0;
      font-size: 40px;
      font-weight: 600;
      line-height: 1.13;
      letter-spacing: -0.02em;
      color: #020817;
    }
    .ap-tabs-head-copy p {
      max-width: 700px;
      margin: 16px 0 0;
      color: #334155;
      font-size: 18px;
      line-height: 1.5;
    }
    .ap-about-desktop { display: block; }
    .ap-about-mobile { display: none; }
    .ap-large-link {
      margin-top: 20px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--ap-red);
      font-size: 26px;
      font-weight: 500;
      white-space: nowrap;
    }
    .ap-tab-buttons {
      margin-top: 36px;
      display: flex;
      justify-content: flex-start;
      gap: 10px;
      flex-wrap: wrap;
    }
    .ap-tab-btn {
      min-height: 50px;
      padding: 10px 24px;
      border-radius: 999px;
      border: 1px solid rgba(193, 34, 55, .3);
      background: #fff;
      color: #475569;
      font-size: 18px;
      font-weight: 500;
      cursor: pointer;
    }
    .ap-tab-btn.is-active {
      background: var(--ap-red);
      color: #fff;
      box-shadow: 0 10px 24px rgba(193,34,55,.26);
    }
    .ap-tab-panel {
      margin-top: 36px;
      display: grid;
      grid-template-columns: 350px 1fr;
      align-items: start;
      gap: 48px;
    }
    .ap-tab-panel img {
      width: 350px;
      height: 340px;
      border-radius: 28px;
      object-fit: cover;
    }
    .ap-tab-copy { padding-top: 0; }
    .ap-tab-top {
      display: flex;
      align-items: flex-end;
      gap: 28px;
      border-bottom: 1px solid rgba(26, 35, 54, .16);
      padding-bottom: 14px;
    }
    .ap-tab-num {
      color: var(--ap-blue);
      font-size: 88px;
      font-weight: 400;
      line-height: .85;
      letter-spacing: -0.05em;
    }
    .ap-tab-title {
      margin: 0;
      padding-bottom: 10px;
      font-size: 42px;
      font-weight: 500;
      line-height: 1.02;
    }
    .ap-tab-text {
      max-width: 640px;
      margin: 20px 0 0;
      font-size: 18px;
      line-height: 1.55;
      color: #475266;
    }
    .ap-about-mobile {
      margin-top: 16px;
      gap: 18px;
    }
    .ap-about-mobile-card {
      border-radius: 24px;
      border: 1px solid #dbe2ea;
      padding: 20px;
    }
    .ap-about-mobile-card img {
      width: 100%;
      height: 220px;
      border-radius: 20px;
      object-fit: cover;
    }
    .ap-about-mobile-num {
      margin-top: 16px;
      color: var(--ap-blue);
      font-size: 56px;
      font-weight: 400;
      line-height: 1;
    }
    .ap-about-mobile-card h3 {
      margin: 4px 0 0;
      font-size: 32px;
      line-height: 1.15;
    }
    .ap-about-mobile-card p {
      margin: 12px 0 0;
      font-size: 18px;
      line-height: 1.55;
      color: #475266;
    }

    .ap-services-section {
      padding: 30px 0 26px;
      background: #f8fafc;
    }
    .ap-services-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 32px;
    }
    .ap-services-head-copy h2 { margin: 0; }
    .ap-services-head-copy p {
      margin: 12px 0 0;
      font-size: 18px;
      line-height: 1.4;
      color: #425166;
      max-width: 860px;
    }
    .ap-services-head h2 {
      font-size: 44px;
      font-weight: 400;
      line-height: 1;
      letter-spacing: -0.04em;
    }
    .ap-services-grid {
      margin-top: 26px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }
    .ap-service-card {
      display: flex;
      align-items: center;
      gap: 16px;
      min-height: 86px;
      padding: 20px;
      border: 1px solid rgba(15, 23, 42, .1);
      border-radius: 28px;
      background: #fff;
      box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
      font-size: 18px;
      font-weight: 500;
      line-height: 1.25;
      color: #1f2937;
      transition: box-shadow .2s ease, transform .2s ease, color .2s ease;
    }
    .ap-service-card:hover {
      box-shadow: 0 8px 20px rgba(15, 23, 42, .12);
      transform: translateY(-2px);
      color: var(--ap-red);
    }
    .ap-service-card__icon {
      width: 48px;
      height: 48px;
      flex: 0 0 48px;
      border-radius: 16px;
      background: #feeff2;
      color: var(--ap-red);
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .ap-service-card__icon svg {
      width: 20px;
      height: 20px;
      display: block;
    }

    .ap-mobile-section { padding: 26px 0 44px; background: #fff; }
    .ap-mobile-banner {
      position: relative;
      overflow: hidden;
      background: var(--ap-blue);
      color: #fff;
      margin-top: 10px;
      border-radius: 34px;
      box-shadow: 0 14px 40px rgba(2, 6, 23, .25);
    }
    .ap-mobile-banner > img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 43% center;
    }
    .ap-mobile-grid {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 480px;
      min-height: 330px;
    }
    .ap-mobile-copy {
      padding: 20px 42px;
      position: relative;
      z-index: 1;
    }
    .ap-mobile-copy h2 {
      margin: 0;
      font-size: 48px;
      font-weight: 400;
      line-height: 1.1;
    }
    .ap-mobile-copy ul {
      margin: 20px 0 0;
      padding: 0;
      list-style: none;
      font-size: 16px;
      line-height: 1.35;
    }
    .ap-mobile-copy li + li { margin-top: 6px; }
    .ap-mobile-copy li::before { content: '• '; }
    .ap-store-row {
      margin-top: 26px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }
    .ap-store-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      height: 48px;
      padding: 0 16px;
      border: 1px solid rgba(255,255,255,.35);
      border-radius: 999px;
      background: rgba(255,255,255,.08);
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .ap-store-icon {
      width: 16px;
      height: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 16px;
    }
    .ap-store-icon svg {
      width: 100%;
      height: 100%;
      display: block;
    }
    .ap-store-icon--android svg {
      transform: scale(1.05);
      transform-origin: center;
    }
    .ap-store-icon--apple svg {
      transform: scale(0.9);
      transform-origin: center;
    }

    .ap-faq-section { padding: 62px 0; background: #f4f4f6; }
    .ap-faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .ap-faq-card { padding: 26px; }
    .ap-faq-kicker {
      margin: 0;
      color: var(--ap-red);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
    }
    .ap-faq-card h3 {
      margin: 8px 0 0;
      font-size: 36px;
      font-weight: 400;
      line-height: 1;
      letter-spacing: -0.04em;
    }
    .ap-faq-buttons {
      margin-top: 22px;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .ap-faq-btn {
      width: 100%;
      border: 0;
      background: var(--ap-gray-btn);
      color: #000;
      padding: 0 17px;
      text-align: left;
      cursor: pointer;
      min-height: 44px;
      font-size: 12px;
      display: flex;
      align-items: center;
    }
    .ap-faq-btn.is-active {
      background: var(--ap-blue);
      color: #fff;
      min-height: 74px;
      font-size: 17px;
      font-weight: 600;
    }
    .ap-faq-item-answer {
      display: none;
    }
    .ap-faq-answer-card {
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }
    .ap-faq-answer {
      max-width: 470px;
      margin-top: 30px;
      font-size: 18px;
      line-height: 1.35;
    }
    .ap-faq-answer p {
      margin: 0 0 8px;
    }
    .ap-faq-bottom {
      margin-top: auto;
      padding-top: 120px;
    }
    .ap-faq-bottom-inner {
      width: 448px;
      max-width: 100%;
      border-top: 1px solid rgba(0,0,0,.7);
      padding-top: 14px;
    }
    .ap-faq-bottom-text {
      font-size: 20px;
      line-height: 1.2;
    }
    .ap-faq-bottom-link {
      margin-top: 10px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      border-bottom: 1px solid var(--ap-red);
      padding-bottom: 4px;
      color: var(--ap-red);
      font-size: 20px;
      font-weight: 600;
      letter-spacing: .04em;
    }

    .ap-footer-accent {
      height: 3px;
      margin-top: 0;
      background: #ff2a39;
      box-shadow: inset 0 -1px 0 rgba(255,255,255,.5);
    }
    .ap-footer-section {
      margin-top: 0;
      padding: 0;
      border-top: none;
      color: #fff;
      background:
        radial-gradient(circle at 15% 35%, rgba(255,255,255,0.06), transparent 24%),
        radial-gradient(circle at 50% 85%, rgba(255,255,255,0.045), transparent 22%),
        radial-gradient(circle at 78% 28%, rgba(255,255,255,0.035), transparent 18%),
        linear-gradient(180deg, #14326c 0%, #103062 100%);
      position: relative;
      overflow: hidden;
    }
    .ap-footer-section::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: .16;
      background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.4) 1px, transparent 1.5px);
      background-size: 12px 12px;
      mix-blend-mode: screen;
      pointer-events: none;
    }
    .ap-footer-line {
      position: relative;
      border-top: none;
      padding: 22px 0 20px;
    }
    .ap-footer-grid {
      display: grid;
      grid-template-columns: 1.15fr 1fr .95fr;
      align-items: start;
      min-height: 166px;
      gap: 20px;
    }
    .ap-footer-col {
      min-width: 0;
      width: 100%;
      color: rgba(255,255,255,.95);
      overflow-wrap: anywhere;
      display: flex;
      flex-direction: column;
    }
    .ap-footer-col-brand .ap-footer-logo {
      display: inline-flex;
      align-items: center;
      margin-bottom: 16px;
    }
    .ap-footer-copy {
      max-width: 260px;
      margin-top: 0;
      font-size: 12px;
      line-height: 1.45;
      font-weight: 600;
      color: rgba(255,255,255,.92);
    }
    .ap-footer-logo img {
      height: 30px;
      width: auto;
      filter:
        drop-shadow(2px 0 0 rgba(255,255,255,.55))
        drop-shadow(-1px 0 0 rgba(255,255,255,.55))
        drop-shadow(0 2px 0 rgba(255,255,255,.55))
        drop-shadow(0 -1px 0 rgba(255,255,255,.55));
    }
    .ap-footer-address {
      padding-top: 42px;
      text-align: center;
      color: rgba(255,255,255,.92);
      font-size: 12px;
      line-height: 1.4;
      font-weight: 600;
    }
    .ap-footer-right {
      padding-top: 10px;
      text-align: right;
      color: rgba(255,255,255,.95);
      font-size: 12px;
      line-height: 1.55;
      font-weight: 700;
    }
    .ap-footer-contact { color: rgba(255,255,255,.95); display: block; }
    .ap-footer-contact-split {
      display: flex;
      align-items: flex-start;
      justify-content: flex-end;
      gap: 14px;
      margin-bottom: 10px;
    }
    .ap-footer-phones {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .ap-footer-email {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      letter-spacing: .04em;
      color: rgba(255,255,255,.92);
      white-space: nowrap;
      font-size: 12px;
      line-height: 1.4;
    }
    .ap-footer-mail-icon {
      width: 18px;
      height: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,.92);
      flex: 0 0 auto;
    }
    .ap-footer-mail-icon svg {
      width: 18px;
      height: 18px;
      display: block;
    }

    .ap-contact-link {
      color: inherit;
      text-decoration: none;
    }
    .ap-contact-link:hover,
    .ap-contact-link:focus-visible {
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .ap-footer-right a {
      display: block;
      text-decoration: underline;
      text-underline-offset: 2px;
      color: rgba(255,255,255,.92);
      font-weight: 500;
    }
    .ap-footer-right a:hover { color: #fff; }
    .ap-footer-policies {
      margin-top: 10px;
      text-align: right;
      font-size: 11px;
      line-height: 1.35;
    }
    .ap-footer-policies a + a {
      margin-top: 6px;
    }

    .ap-form-section {
      padding: 0;
    }
    .ap-modal[hidden] {
      display: none;
    }
    .ap-modal {
      position: fixed;
      inset: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .ap-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(39, 42, 127, 0.8);
    }
    .ap-modal-content {
      position: relative;
      z-index: 1;
      width: min(980px, 100%);
      max-height: calc(100vh - 40px);
      overflow-y: auto;
    }
    .ap-modal .ap-form-grid {
      grid-template-columns: 1fr;
    }
    .ap-modal .ap-form-card {
      max-width: 860px;
      margin: 0 auto;
    }
    .ap-modal-close {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 36px;
      height: 36px;
      border: 0;
      border-radius: 999px;
      background: #fff;
      cursor: pointer;
      font-size: 24px;
      line-height: 1;
      z-index: 3;
    }
    .ap-form-grid {
      display: grid;
      grid-template-columns: 1fr 430px;
      gap: 18px;
    }
    .ap-form-card { padding: 28px; }
    .ap-form-card h3 {
      margin: 0;
      font-size: 34px;
      font-weight: 400;
      line-height: 1;
      letter-spacing: -0.04em;
    }
    .ap-form-fields {
      margin-top: 22px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }
    .ap-input,
    .ap-textarea {
      width: 100%;
      border: 1px solid var(--ap-border);
      background: var(--ap-field);
      color: #000;
      padding: 0 16px;
      outline: none;
      border-radius: 2px;
    }
    .ap-input {
      height: 52px;
    }
    .ap-textarea {
      margin-top: 14px;
      min-height: 140px;
      resize: vertical;
      padding-top: 14px;
      padding-bottom: 14px;
    }
    .ap-input::placeholder,
    .ap-textarea::placeholder {
      color: #888;
    }
    .ap-checks {
      margin-top: 14px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      font-size: 13px;
      line-height: 1.35;
      color: #444;
    }
    .ap-checks label {
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }
    .ap-checks input[type="checkbox"] { margin-top: 3px; }
    .ap-submit {
      margin-top: 18px;
      height: 42px;
      padding: 0 28px;
      border: 0;
      border-radius: 8px;
      background: var(--ap-red);
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
    }
    .ap-submit:hover { background: var(--ap-red-dark); }

    .ap-form-control {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .ap-form-control--full {
      margin-top: 14px;
    }
    .ap-field-error {
      min-height: 16px;
      margin: 0;
      font-size: 12px;
      line-height: 1.2;
      color: #c5212d;
    }
    .ap-field-invalid {
      border-color: #c5212d;
      box-shadow: 0 0 0 1px rgba(197, 33, 45, 0.2);
    }
    .ap-form-status {
      min-height: 18px;
      margin: 10px 0 0;
      font-size: 13px;
      line-height: 1.3;
      color: #c5212d;
    }
    .ap-form-status.is-success {
      color: #1d7a2f;
    }
    .ap-submit:disabled {
      opacity: 0.55;
      cursor: not-allowed;
      pointer-events: none;
    }

    .ap-form-card--call h3 {
      text-align: center;
    }
    .ap-form-fields--single {
      grid-template-columns: 1fr;
      max-width: 620px;
      margin-left: auto;
      margin-right: auto;
    }
    .ap-form-card--call .ap-submit {
      display: block;
      margin-left: auto;
      margin-right: auto;
    }
    .ap-form-card--call .ap-checks {
      max-width: 620px;
      margin-left: auto;
      margin-right: auto;
    }

    .ap-ask-card {
      overflow: hidden;
      position: relative;
      min-height: 420px;
      background: #f5f5f5;
    }
    .ap-ask-card > img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .ap-ask-overlay {
      position: absolute;
      left: 26px;
      right: 26px;
      bottom: 26px;
      border-radius: 12px;
      background: rgba(255,255,255,.92);
      padding: 20px;
      backdrop-filter: blur(6px);
    }
    .ap-ask-overlay p {
      margin: 0;
      font-size: 20px;
      line-height: 1.25;
    }
    .ap-ask-contact-list {
      margin-top: 18px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      font-size: 16px;
    }
    .ap-ask-contact {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #000;
    }

    @media (max-width: 1200px) {
      .ap-entry-grid { gap: 16px; }
      .ap-entry-card h2,
      .ap-entry-card h3 { font-size: 21px; }
      .ap-about-blue-text { font-size: 28px; }
      .ap-about-copy { font-size: 17px; }
      .ap-tabs-head-copy h2 { font-size: 40px; }
      .ap-tabs-head-copy p { font-size: 20px; }
      .ap-tab-title { font-size: 46px; }
      .ap-tab-num { font-size: 88px; }
    }

    @media (max-width: 991px) {
      .ap-header-top,
      .ap-header-bottom,
      .ap-tabs-head,
      .ap-services-head {
        flex-direction: column;
        align-items: flex-start;
      }
      .ap-header-top { min-height: auto; padding: 10px 0; }
      .ap-header-bottom {
        height: auto;
        min-height: 64px;
        padding: 10px 12px;
        gap: 10px;
        border-radius: 14px;
        flex-direction: row;
        align-items: center;
        overflow: visible;
      }
      .ap-topbar-wrap {
        display: none;
      }
      .ap-main-nav-wrap { flex-direction: column; align-items: flex-start; gap: 16px; width: 100%; }
      .ap-main-nav {
        margin-left: 0;
        width: 100%;
        justify-content: flex-start;
        gap: 20px;
      }
      .ap-main-nav-wrap {
        display: none;
      }
      .ap-mobile-menu {
        display: block;
      }
      .ap-mobile-menu[open] {
        z-index: 20;
      }
      .ap-mobile-menu__panel {
        position: absolute;
        right: 0;
        top: 100%;
      }
      .ap-hero-inner,
      .ap-about-grid,
      .ap-tab-panel,
      .ap-mobile-grid,
      .ap-faq-grid,
      .ap-form-grid,
      .ap-entry-grid,
      .ap-services-grid,
      .ap-about-gallery {
        grid-template-columns: 1fr;
      }
      .ap-hero-inner {
        gap: 24px;
        padding: 20px 0 24px;
      }
      .template-homepage .ap-hero-title { font-size: 58px; }
      .ap-hero-lead { font-size: 24px; }
      .ap-hero-image-wrap { height: 391px; }
      .ap-hero-image-badges {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      }
      .ap-about-desktop { display: none; }
      .ap-about-mobile { display: grid; }
      .ap-tab-buttons { justify-content: flex-start; }
      .ap-tab-copy { padding-top: 8px; }
      .ap-tab-panel img { width: 100%; height: auto; }
      .ap-footer-grid { grid-template-columns: 1fr; gap: 24px; }
      .ap-footer-right,
      .ap-footer-contact,
      .ap-footer-address,
      .ap-footer-email,
      .ap-footer-policies { text-align: left; }
      .ap-footer-address,
      .ap-footer-right { padding-top: 0; }
      .ap-footer-contact-split { flex-direction: column; align-items: flex-start; }
      .ap-modal-content {
        width: 100%;
      }
    }

    @media (max-width: 767px) {
      .ap-wrap,
      .ap-wrap-header { width: calc(100% - 24px); }
      .ap-mobile-banner {
        border-radius: 24px;
        background:
          radial-gradient(circle at 90% 15%, rgba(255, 255, 255, 0.16), transparent 33%),
          linear-gradient(150deg, #2b2e8f 0%, #252780 100%);
      }
      .ap-mobile-banner > img { display: none; }
      .ap-mobile-grid {
        min-height: auto;
      }
      .ap-store-row {
        margin-top: 18px;
      }
      .ap-store-btn {
        min-height: 42px;
        padding: 0 14px;
      }
      .ap-faq-btn {
        display: block;
        min-height: auto;
        padding: 14px 16px;
        border: 1px solid #dbe2ea;
        border-radius: 14px;
        background: #fff;
        font-size: 14px;
        line-height: 1.42;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: normal;
        position: relative;
      }
      .ap-faq-btn.is-active {
        min-height: auto;
        border-color: #2b2e8f;
        background: #2b2e8f;
        color: #fff;
        font-size: 15px;
      }
      .ap-faq-btn::after {
        content: "⌄";
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 15px;
        opacity: .65;
      }
      .ap-faq-item.is-active .ap-faq-btn::after {
        content: "⌃";
        opacity: .9;
      }
      .ap-header-top-left,
      .ap-header-top-right,
      .ap-main-nav {
        gap: 12px;
        flex-wrap: wrap;
      }
      .ap-header-top {
        align-items: flex-start;
      }
      .ap-header-logo img {
        height: 23px;
      }
      .ap-mobile-menu__panel {
        width: min(95vw, 360px);
        max-height: min(74svh, 520px);
      }
      .template-homepage .ap-hero-title { font-size: 48px; }
      .ap-hero-lead { font-size: 18px; }
      .ap-hero-row { margin-top: 18px; }
      .ap-hero-stats { justify-items: stretch; }
      .ap-exp-card { width: 100%; max-width: none; }
      .ap-exp-card p { font-size: 16px; }
      .ap-hero-fleet { width: 100%; font-size: 16px; }
      .ap-hero-image-wrap { height: 306px; border-radius: 24px; }
      .ap-hero-image-badges { left: 10px; right: 10px; bottom: 10px; gap: 8px; }
      .ap-hero-image-badge { min-height: 76px; padding: 10px; }
      .ap-tabs-head-copy h2 { font-size: 34px; }
      .ap-tabs-head-copy p { font-size: 16px; margin-top: 10px; }
      .ap-large-link { font-size: 26px; margin-top: 16px; }
      .ap-services-head h2,
      .ap-faq-card h3 { font-size: 32px; }
      .ap-services-head-copy p { font-size: 15px; margin-top: 10px; }
      .ap-faq-card {
        padding: 20px;
        overflow: hidden;
      }
      .ap-faq-buttons {
        margin-top: 16px;
        gap: 10px;
      }
      .ap-faq-item {
        border: 1px solid #dbe2ea;
        border-radius: 14px;
        background: #fff;
        overflow: hidden;
      }
      .ap-faq-item .ap-faq-btn {
        border: 0;
        border-radius: 0;
        background: transparent;
        padding-right: 40px;
      }
      .ap-faq-item .ap-faq-btn.is-active {
        color: #0f172a;
        background: transparent;
      }
      .ap-faq-item.is-active {
        border-color: #c6d0de;
      }
      .ap-faq-item-answer {
        display: block;
        padding: 0 16px 14px;
        color: #475266;
        font-size: 14px;
        line-height: 1.55;
      }
      .ap-faq-item-answer p {
        margin: 0;
      }
      .ap-faq-answer-card {
        display: none;
      }
      .ap-mobile-copy { padding: 24px 18px; }
      .ap-mobile-copy h2 { font-size: clamp(28px, 9vw, 36px); }
      .ap-about-blue {
        min-height: 240px;
      }
      .ap-about-blue-text {
        font-size: 24px;
      }
      .ap-about-mobile-card h3 {
        font-size: 26px;
      }
      .ap-mobile-copy ul {
        margin-top: 14px;
        font-size: 15px;
        line-height: 1.4;
      }
      .ap-tab-text,
      .ap-about-copy,
      .ap-faq-answer,
      .ap-entry-card p { font-size: 16px; }
      .ap-entry-card h2,
      .ap-entry-card h3 { font-size: 21px; }
      .ap-tab-btn { font-size: 15px; min-height: 42px; }
      .ap-tab-title { font-size: 36px; }
      .ap-store-btn {
        font-size: 13px;
        height: 42px;
        min-width: 0;
      }
      .ap-service-card { font-size: 18px; min-height: 76px; border-radius: 22px; }
      .ap-service-card__icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
      }
      .ap-form-fields { grid-template-columns: 1fr; }
      .ap-entry-card-body {
        padding: 22px;
      }
      .ap-faq-bottom { padding-top: 48px; }
      .ap-footer-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 420px) {
      .ap-wrap,
      .ap-wrap-header {
        width: calc(100% - 16px);
      }
      .ap-mobile-banner {
        border-radius: 20px;
      }
      .ap-mobile-copy {
        padding: 22px 14px;
      }
      .ap-store-row {
        flex-direction: column;
        align-items: flex-start;
      }
      .ap-store-btn {
        width: 100%;
        justify-content: center;
      }
      .ap-faq-btn {
        font-size: 12px;
      }
      .ap-faq-btn.is-active {
        font-size: 15px;
      }
      .ap-header-bottom {
        padding: 8px 10px;
      }
      .template-homepage .ap-hero-title {
        font-size: clamp(36px, 10.5vw, 40px);
        line-height: .97;
      }
      .template-homepage .ap-hero-pill--about span {
        white-space: normal;
      }
      .ap-hero-lead {
        font-size: 15px;
        line-height: 1.5;
      }
      .ap-hero-image-wrap {
        height: min(74vw, 286px);
      }
      .ap-hero-image-badges {
        grid-template-columns: 1fr;
      }
      .ap-btn-red,
      .ap-btn-outline--hero {
        width: 100%;
      }
      .ap-tab-title,
      .ap-services-head h2,
      .ap-faq-card h3 {
        font-size: clamp(26px, 8.2vw, 32px);
      }
      .ap-mobile-menu__panel {
        width: min(96vw, 350px);
      }
    }

    @media (max-height: 520px) and (orientation: landscape) {
      .ap-mobile-menu__panel {
        max-height: 62svh;
      }
      .ap-mobile-menu__nav a {
        min-height: 36px;
      }
      .ap-mobile-menu__actions {
        gap: 8px;
      }
    }


.ap-qa-hero {
  background: var(--ap-bg);
  padding: 24px 0 12px;
}
.ap-qa-hero-inner {
  display: grid;
  gap: 24px;
}
.ap-qa-back {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ap-red);
}
.ap-qa-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.ap-qa-kicker,
.ap-qa-answer-kicker {
  margin: 0;
  text-transform: uppercase;
  color: var(--ap-blue);
  letter-spacing: .12em;
  font-size: 14px;
}
.ap-qa-title-row h1 {
  margin: 8px 0 0;
  font-size: 58px;
  font-weight: 400;
  line-height: .96;
  letter-spacing: -0.05em;
}
.ap-qa-lead {
  max-width: 520px;
  margin: 0;
  text-align: left;
  text-wrap: balance;
  color: #2229;
  font-size: 20px;
  line-height: 1.3;
}
.ap-qa-section { padding: 18px 0 30px; }
.ap-qa-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 390px 1fr;
  align-items: start;
}
.ap-qa-rail {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ap-qa-item {
  width: 100%;
  border: 1px solid #0002;
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  text-align: left;
  font-size: 15px;
  cursor: pointer;
}
.ap-qa-item.is-active {
  background: var(--ap-blue);
  color: #fff;
  border-color: var(--ap-blue);
}
.ap-qa-answer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  border: 1px solid #0002;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  padding: 28px;
  min-height: 640px;
}
.ap-qa-answer-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #0002;
  padding-bottom: 18px;
}
.ap-qa-answer-head h2 {
  margin: 0;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.ap-qa-counter {
  min-width: 88px;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  letter-spacing: .12em;
  border: 1px solid #0002;
  border-radius: 999px;
  padding: 10px 14px;
  align-self: flex-start;
  text-align: center;
  white-space: nowrap;
}
.ap-qa-answer-body {
  max-width: 700px;
  font-size: 20px;
  line-height: 1.45;
  padding-top: 24px;
}
.ap-qa-help-box {
  margin-top: auto;
  border-radius: 20px;
  background: #f3f3f3;
  padding: 20px;
  max-width: 360px;
}
.ap-qa-help-title {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
}
.ap-qa-help-text {
  margin: 12px 0 0;
  color: #000b;
}
.ap-qa-help-link {
  margin-top: 14px;
  display: inline-flex;
  color: var(--ap-red);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ap-qa-form-section { padding: 0 0 40px; }
.ap-qa-form-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid #0002;
  background: #fff;
}
.ap-qa-form-main { padding: 28px; }
.ap-qa-form-main h2 {
  margin: 10px 0 0;
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}
.ap-qa-fields {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ap-qa-form-aside {
  position: relative;
  background: var(--ap-blue);
  min-height: 360px;
}
.ap-qa-form-aside > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ap-qa-aside-box {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  padding: 18px;
}
@media (max-width: 991px) {
  .ap-qa-title-row,
  .ap-qa-grid,
  .ap-qa-form-grid,
  .ap-qa-fields {
    grid-template-columns: 1fr;
    display: grid;
  }
  .ap-qa-title-row { display: block; }
  .ap-qa-lead { text-align: left; margin-top: 12px; }
  .ap-qa-title-row h1 { font-size: 52px; }
  .ap-qa-answer-head h2 { font-size: 34px; }
  .ap-qa-answer-card { min-height: auto; }
}

/* Documents page */
.ap-docs-hero {
  background: var(--ap-bg);
  color: #000;
}
.ap-docs-hero-inner {
  padding: 22px 0 34px;
}
.ap-docs-back {
  display: inline-block;
  margin-bottom: 34px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ap-red);
}
.ap-docs-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.ap-docs-title-row h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.05em;
}
.ap-docs-lead {
  max-width: 400px;
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  text-align: right;
  color: #000000b5;
}

.ap-docs-section {
  padding: 0 0 84px;
}
.ap-docs-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px 220px;
  gap: 16px;
  padding: 20px;
  border-radius: 28px;
}
.ap-docs-field {
  position: relative;
}
.ap-docs-field input,
.ap-docs-field select {
  width: 100%;
  height: 52px;
  border-radius: 14px;
  border: 1px solid #0000001a;
  background: #f5f5f5;
  padding: 12px 16px;
  font-size: 15px;
  outline: none;
}
.ap-docs-field select {
  appearance: none;
}
.ap-docs-field-search input,
.ap-docs-field-filter select {
  padding-left: 40px;
}
.ap-docs-field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #00000080;
}
.ap-docs-field-search .ap-docs-field-icon {
  font-size: 20px;
}
.ap-docs-field input:focus,
.ap-docs-field select:focus {
  border-color: var(--ap-blue);
}
.ap-docs-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px 4px 0;
}
.ap-docs-found {
  margin: 0;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #0000008c;
}
.ap-docs-found span {
  color: #000;
  font-weight: 700;
}
.ap-docs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ap-docs-meta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.ap-docs-refresh-btn {
  border: 1px solid #0000001f;
  border-radius: 12px;
  height: 38px;
  padding: 0 14px;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}
.ap-docs-refresh-btn:disabled {
  opacity: .6;
  cursor: default;
}
.ap-doc-tag {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #000000bf;
  cursor: pointer;
}
.ap-doc-tag.is-active {
  background: var(--ap-blue);
  color: #fff;
}

.ap-docs-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.ap-doc-card {
  padding: 24px;
  border-radius: 24px;
}
.ap-doc-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.ap-doc-chip {
  border-radius: 999px;
  background: #edf0ff;
  color: var(--ap-blue);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.ap-doc-date {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #00000073;
}
.ap-doc-card-content h3 {
  margin: 14px 0 0;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.03em;
}
.ap-doc-card-content p {
  margin: 12px 0 0;
  color: #000000b0;
  font-size: 16px;
  line-height: 1.45;
}
.ap-doc-card-actions {
  margin-top: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.ap-docs-open-btn,
.ap-docs-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  padding: 0 20px;
}
.ap-docs-open-btn {
  border: 0;
  background: var(--ap-blue);
  color: #fff;
  cursor: pointer;
}
.ap-docs-download-btn {
  border: 1px solid #0000001a;
  background: #f6f6f6;
  cursor: pointer;
}
.ap-docs-empty {
  margin-top: 22px;
  border-style: dashed;
  border-color: #0000002b;
  text-align: center;
  padding: 36px 24px;
  border-radius: 24px;
}
.ap-docs-empty-title {
  margin: 0;
  font-size: 32px;
}
.ap-docs-empty-text {
  margin: 10px 0 0;
  color: #000000a8;
}
.ap-docs-empty .ap-docs-open-btn {
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .ap-docs-controls {
    grid-template-columns: 1fr;
  }

  .ap-docs-grid {
    grid-template-columns: 1fr;
  }

  .ap-docs-title-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .ap-docs-lead {
    text-align: left;
    max-width: 100%;
  }
}

.about-page {
  min-height: 100vh;
  background: var(--ap-bg);
  color: #000;
}

.about-wrap {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.about-title {
  font-size: clamp(42px, 8vw, 64px);
  margin: 8px 0 0;
  line-height: 1.05;
}

.about-lead {
  margin: 16px 0 0;
  max-width: 600px;
  font-size: 18px;
  line-height: 1.5;
}

.about-hero-wrap {
  position: relative;
  margin-top: 24px;
}

.about-exp-col {
  position: absolute;
  top: -40px;
  right: 40px;
}

.about-exp-col .ap-exp-card {
  position: static;
  transform: none;
  width: 250px;
  height: 132px;
  padding: 16px 20px;
}

.about-exp-col .ap-exp-card strong {
  font-size: 52px;
}

.about-exp-col .ap-exp-card p {
  margin-top: 8px;
}

.about-hero {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.about-founded {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.about-founded h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}

.about-founded-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.6;
}

.about-small-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.about-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.about-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.about-card {
  border-radius: 12px;
  padding: 24px;
}

.about-card p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.about-card-white {
  background: #fff;
}

.about-card-red {
  background: #db1f26;
  color: #fff;
}

.about-card-blue {
  background: #2e3192;
  color: #fff;
}

.about-card-wide {
  grid-column: span 2;
}

.about-metric {
  font-size: 48px;
  line-height: 1;
}

.about-metric-red {
  color: #db1f26;
}

.about-metric-blue {
  color: #2e3192;
}

.about-contact {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  font-size: 14px;
}

.about-contact > p {
  max-width: 500px;
  margin: 0;
  line-height: 1.6;
}

.about-contact-right {
  text-align: right;
}

.about-contact-label {
  font-weight: 700;
}

.about-contact-mail {
  margin-top: 24px;
}

@media (max-width: 992px) {
  .about-founded,
  .about-contact {
    grid-template-columns: 1fr;
  }

  .about-contact-right {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .about-founded-columns,
  .about-grid {
    display: block;
  }

  .about-hero {
    height: 280px;
  }

  .about-exp-col {
    position: static;
    margin-top: 12px;
  }

  .about-exp-col .ap-exp-card {
    width: 100%;
    height: auto;
  }

  .about-card,
  .about-card-image {
    margin-top: 16px;
  }

  .about-card-wide {
    grid-column: auto;
  }
}


.career-modern-page {
  min-height: 100vh;
  background: var(--ap-bg);
  color: #111827;
  padding: 22px 0 64px;
}

.career-modern-wrap {
  width: min(var(--ap-header-wrap), calc(100% - 32px));
  margin: 0 auto;
}

.career-modern-hero-grid {
  display: grid;
  gap: 28px;
  align-items: stretch;
  grid-template-columns: minmax(0, 1fr) 420px;
}

.career-modern-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(240, 68, 82, 0.2);
  background: rgba(255, 255, 255, 0.86);
  color: #f04452;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
}

.career-modern-title {
  margin: 18px 0 0;
  font-size: clamp(42px, 8vw, 76px);
  line-height: 1;
  color: #111111;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.career-modern-lead {
  margin: 24px 0 0;
  max-width: 640px;
  color: #4b5563;
  font-size: 24px;
  line-height: 1.5;
}

.career-modern-lead a {
  color: #e7444e;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(231, 68, 78, 0.35);
  text-underline-offset: 4px;
}

.career-modern-stats {
  margin-top: 34px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.career-modern-stat-card {
  border-radius: 24px;
  border: 1px solid var(--ap-border);
  background: rgba(255, 255, 255, 0.55);
  padding: 18px;
  box-shadow: 0 6px 16px rgba(24, 38, 86, 0.06);
}

.career-modern-stat-value {
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
}

.career-modern-stat-label {
  margin-top: 8px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.3;
}

.career-modern-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--ap-border);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 6px 16px rgba(24, 38, 86, 0.06);
}

.career-modern-hero-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.career-modern-hero-overlay {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 20px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62));
}

.career-modern-hero-overlay p {
  margin: 0;
  max-width: 270px;
  border-radius: 14px;
  border: 1px solid var(--ap-border);
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 14px;
  color: #111827;
  font-size: 14px;
  font-weight: 600;
}

.career-modern-mail-card {
  margin-top: 36px;
  border-radius: 32px;
  background: linear-gradient(135deg, #2b2e8f 0%, #1f246f 100%);
  color: #ffffff;
  padding: 28px 30px;
  box-shadow: 0 20px 60px rgba(43, 46, 143, 0.24);
  display: grid;
  grid-template-columns: auto minmax(260px, 1.2fr) minmax(220px, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.career-modern-mail-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(66, 90, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  line-height: 1;
}

.career-modern-mail-title {
  margin: 0;
  font-size: clamp(16px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.18;
}

.career-modern-mail-link {
  margin-top: 6px;
  display: inline-block;
  color: #ff6a4d;
  font-size: clamp(14px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.1;
}

.career-modern-mail-note {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(13px, 1.15vw, 16px);
  line-height: 1.5;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  padding-left: 20px;
}

.career-modern-mail-note p {
  margin: 0;
}

.career-modern-mail-copy {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 12px 18px;
  min-height: 56px;
  min-width: 196px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.career-modern-mail-copy:hover {
  background: rgba(255, 255, 255, 0.12);
}

.career-modern-vacancies {
  margin-top: 56px;
}

.career-modern-vacancies-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.career-modern-kicker {
  margin: 0;
  color: #e7444e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.career-modern-subtitle {
  margin: 8px 0 0;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.career-modern-all-btn {
  display: inline-flex;
  border-radius: 16px;
  background: #e7444e;
  color: #fff;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(231, 68, 78, 0.24);
}

.career-modern-list {
  margin-top: 24px;
  display: grid;
  gap: 20px;
}

.career-modern-item {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--ap-border);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 6px 16px rgba(24, 38, 86, 0.06);
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

.career-modern-item-info {
  padding: 24px;
  border-right: 1px solid var(--ap-border);
  background: linear-gradient(180deg, #fff 0%, #fafafb 100%);
}

.career-modern-accent {
  display: inline-flex;
  border-radius: 999px;
  background: #fff1f2;
  padding: 5px 10px;
  color: #e7444e;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.career-modern-item-info h3 {
  margin: 14px 0 0;
  font-size: 31px;
  line-height: 1.08;
  font-weight: 700;
  color: #111827;
}

.career-modern-city {
  margin: 8px 0 0;
  font-size: 14px;
  color: #6b7280;
}

.career-modern-salary {
  margin-top: 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2b2e8f 0%, #1f246f 100%);
  color: #fff;
  padding: 12px 14px;
}

.career-modern-salary span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
}

.career-modern-salary strong {
  display: block;
  margin-top: 8px;
  font-size: 32px;
  line-height: 1;
}

.career-modern-item-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.career-modern-col {
  padding: 24px 26px;
}

.career-modern-col + .career-modern-col {
  border-left: 1px solid var(--ap-border);
}

.career-modern-col h4 {
  margin: 0;
  color: #111827;
  font-size: 21px;
  font-weight: 700;
}

.career-modern-col ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.career-modern-col li {
  position: relative;
  margin: 0;
  padding-left: 16px;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.5;
}

.career-modern-col li::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 0;
  top: 0.58em;
  background: #e7444e;
}

@media (max-width: 1200px) {
  .career-modern-lead {
    font-size: 20px;
  }

  .career-modern-mail-note {
    font-size: 17px;
  }

  .career-modern-mail-copy {
    font-size: 13px;
    min-width: 176px;
  }

  .career-modern-item-info h3 {
    font-size: 26px;
  }

  .career-modern-salary strong {
    font-size: 27px;
  }
}

@media (max-width: 1024px) {
  .career-modern-hero-grid,
  .career-modern-item,
  .career-modern-item-content {
    grid-template-columns: 1fr;
  }

  .career-modern-mail-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .career-modern-mail-note {
    border-left: 0;
    padding-left: 0;
  }

  .career-modern-vacancies-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .career-modern-item-info {
    border-right: 0;
    border-bottom: 1px solid var(--ap-border);
  }

  .career-modern-col + .career-modern-col {
    border-left: 0;
    border-top: 1px solid var(--ap-border);
  }
}

@media (max-width: 768px) {
  .career-modern-wrap {
    width: min(1180px, calc(100% - 24px));
  }

  .career-modern-page {
    padding-top: 12px;
  }

  .career-modern-lead {
    font-size: 18px;
  }

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

  .career-modern-col,
  .career-modern-item-info {
    padding: 18px;
  }

  .career-modern-mail-card {
    padding: 20px;
  }

  .career-modern-mail-icon {
    width: 68px;
    height: 68px;
    font-size: 30px;
  }

  .career-modern-mail-note {
    font-size: 15px;
  }

  .career-modern-col h4 {
    font-size: 19px;
  }

  .career-modern-col li {
    font-size: 15px;
  }
}

.contacts-page {
  padding: 20px 0 0;
}
.contacts-wrap {
  width: min(var(--ap-header-wrap), calc(100% - 32px));
  margin: 0 auto;
}
.contacts-title {
  margin: 0;
  font-size: 54px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}
.contacts-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 58px;
  align-items: start;
}
.contacts-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.contacts-city-list {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}
.contacts-city-btn {
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
  font-size: 18px;
  line-height: 1.2;
  color: #000000b2;
  cursor: pointer;
}
.contacts-city-btn.is-active {
  color: #000;
  font-weight: 700;
}
.contacts-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 220px;
  gap: 30px;
}
.contacts-address,
.contacts-phones,
.contacts-email {
  margin-top: 10px;
  font-size: 22px;
  line-height: 1.25;
}
.contacts-email {
  font-size: 20px;
  overflow-wrap: anywhere;
}
.contacts-map-wrap {
  margin-top: 24px;
  overflow: hidden;
  height: 260px;
  border: 1px solid #0000001a;
  border-radius: 12px;
}
.contacts-map-wrap iframe {
  border: 0;
}
.contacts-hotline-wrap {
  margin-top: 72px;
  padding-bottom: 28px;
}
.contacts-hotline-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  border: 0;
  border-radius: 12px;
  background: #de0017;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 26px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}
.contacts-hotline-arrow {
  font-size: 20px;
  transition: transform .2s ease;
}
.contacts-hotline-arrow.is-open {
  transform: rotate(180deg);
}
.contacts-hotline-panel {
  margin-top: 0;
}
.contacts-hotline-panel h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}
.contacts-hotline-copy {
  margin-top: 28px;
  max-width: 910px;
  font-size: 17px;
  line-height: 1.42;
}
.contacts-hotline-form-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.contacts-hotline-form-grid textarea,
.contacts-hotline-form-grid input {
  width: 100%;
  border: 1px solid #00000026;
  border-radius: 10px;
  background: #fff;
  font-size: 15px;
  padding: 14px 16px;
}
.contacts-hotline-form-grid textarea {
  height: 170px;
  resize: none;
}
.contacts-hotline-form-grid input {
  height: 58px;
}
.contacts-captcha-row {
  margin-top: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: stretch;
  font-size: 14px;
  color: #000000b8;
}
.contacts-captcha-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 6px 10px;
  min-width: 220px;
  border: 1px solid #0000001f;
  border-radius: 12px;
  padding: 10px 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
  box-shadow: 0 6px 18px rgba(15, 26, 54, 0.06);
}
.contacts-captcha-label {
  grid-column: 1 / -1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4d6185;
}
.contacts-captcha-task {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #14213d;
  line-height: 1.15;
}
.contacts-captcha-refresh {
  width: 36px;
  height: 36px;
  border: 1px solid #d7deed;
  border-radius: 10px;
  background: #fff;
  color: #1a3166;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.contacts-captcha-refresh:hover {
  background: #f2f6ff;
  box-shadow: 0 5px 12px rgba(26, 49, 102, 0.12);
  transform: rotate(-20deg);
}
.contacts-captcha-refresh:focus-visible {
  outline: 2px solid #de0017;
  outline-offset: 2px;
}
.contacts-captcha-answer-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.contacts-captcha-answer-wrap span {
  color: #43516b;
}
.contacts-captcha-input::-webkit-outer-spin-button,
.contacts-captcha-input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}
.contacts-captcha-input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}
.contacts-captcha-input {
  width: min(220px, 100%);
  height: 46px;
  border: 1px solid #00000026;
  border-radius: 10px;
  background: #fff;
  padding: 10px 14px;
  font-size: 15px;
}
.contacts-captcha-input:focus-visible {
  outline: 2px solid #de0017;
  outline-offset: 1px;
}
.contacts-captcha-error {
  margin: 10px 0 0;
  font-size: 14px;
  color: #de0017;
}
.contacts-captcha-error.is-success {
  color: #1d7a31;
}
.contacts-checks {
  margin-top: 18px;
  display: grid;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: #000000c2;
}
.contacts-checks label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.contacts-red-btn {
  margin-top: 22px;
  border: 0;
  border-radius: 10px;
  background: #de0017;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 24px;
  cursor: pointer;
}
@media (max-width: 1100px) {
  .contacts-grid,
  .contacts-info-grid,
  .contacts-hotline-form-grid {
    grid-template-columns: 1fr;
  }

  .contacts-captcha-row {
    grid-template-columns: 1fr;
  }
}

.template-services-page {
  background: var(--ap-bg);
}

.ap-services-page {
  padding: 20px 0 44px;
}

.ap-services-page-head {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}


.ap-services-page-title {
  margin: 12px 0 0;
  font-size: 78px;
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.06em;
}

.ap-services-page-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 12px;
}

.ap-services-page-meta p {
  margin: 0;
  font-size: 15px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #00000066;
}

.ap-services-page-counter {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #0000001a;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  background: #fff;
  font-size: 17px;
  color: #000000a6;
}

.ap-services-layout {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 26px;
}

.ap-services-media-card {
  position: relative;
  height: 680px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.14);
}

.ap-services-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ap-services-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.54));
}

.ap-services-media-top {
  position: absolute;
  inset: 28px 28px auto;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.ap-services-pill {
  border-radius: 999px;
  border: 1px solid #ffffff2f;
  background: #0000002e;
  padding: 10px 16px;
  color: #ffffffe8;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.ap-services-pill-secondary {
  border-color: #ffffff24;
  background: #ffffff1a;
  text-transform: none;
  letter-spacing: normal;
  font-size: 14px;
}

.ap-services-media-bottom {
  position: absolute;
  inset: auto 28px 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 22px;
}

.ap-services-highlight {
  max-width: 460px;
  border-radius: 26px;
  border: 1px solid #ffffff29;
  background: #ffffff1f;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  padding: 22px 24px;
  color: #fff;
  backdrop-filter: blur(14px);
}

.ap-services-highlight p {
  margin: 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: #ffffff9e;
}

.ap-services-highlight strong {
  display: block;
  margin-top: 10px;
  font-size: 21px;
  line-height: 1.28;
  font-weight: 400;
}

.ap-services-nav {
  display: flex;
  gap: 12px;
}

.ap-services-nav button {
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

#service-prev {
  border: 1px solid #ffffff24;
  background: #ffffffe0;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

#service-next {
  background: #de0017;
  color: #fff;
  box-shadow: 0 16px 34px rgba(222, 0, 23, 0.36);
}

.ap-services-info-card {
  min-height: 680px;
  height: auto;
  border-radius: 34px;
  border: 1px solid #00000014;
  background: #fff;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.09);
  padding: 32px 34px;
}

.ap-services-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ap-services-dots button {
  border-radius: 999px;
  border: 1px solid #0000001a;
  background: #f6f6f6;
  color: #0000008a;
  padding: 8px 15px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  cursor: pointer;
}

.ap-services-dots button.is-active {
  border-color: #2d2f92;
  background: #2d2f92;
  color: #fff;
  box-shadow: 0 10px 24px rgba(45, 47, 146, 0.18);
}

.ap-services-info-content {
  margin-top: 30px;
}

.ap-services-info-kicker {
  margin: 0;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #2d2f92;
}

.ap-services-info-content h2 {
  margin: 12px 0 0;
  max-width: 420px;
  font-size: 48px;
  line-height: .94;
  letter-spacing: -.05em;
  font-weight: 400;
}

.ap-services-info-list {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.ap-services-info-list div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid #00000014;
  background: #f7f7f7;
  color: #000000d1;
  font-size: 17px;
  line-height: 1.42;
}

.ap-services-info-list span {
  margin-top: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #2d2f92;
  color: #fff;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.ap-services-info-list p {
  margin: 0;
}

.ap-services-smoke {
  display: none;
}

@media (max-width: 1180px) {
  .ap-services-layout {
    grid-template-columns: 1fr;
  }

  .ap-services-info-card,
  .ap-services-media-card {
    height: auto;
    min-height: 580px;
  }

  .ap-services-page-title {
    font-size: 56px;
  }

  .ap-services-page-head {
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .ap-services-page-title {
    font-size: 44px;
  }

  .ap-services-media-top,
  .ap-services-media-bottom {
    inset-inline: 16px;
  }

  .ap-services-media-top {
    top: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .ap-services-media-bottom {
    bottom: 16px;
    flex-direction: column;
    align-items: stretch;
  }

  .ap-services-nav {
    align-self: flex-end;
  }

  .ap-services-info-card {
    padding: 20px;
  }

  .ap-services-info-content h2 {
    font-size: 36px;
  }
}


.template-services-page .ap-footer-accent {
  margin-top: 56px;
}

.template-services-page .ap-footer-section {
  margin-top: 0;
}

.ap-service-request-page {
  padding: 26px 0 64px;
}
.ap-service-request-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.ap-service-request-kicker {
  display: block;
  margin: 0 0 8px;
  color: #627093;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
}
.ap-service-request-title {
  margin: 0;
  font-size: 52px;
  line-height: 1.05;
  font-weight: 700;
  color: #1a2b60;
}
.ap-step-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ap-step-indicator span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #cfd2d9;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #848a95;
  background: #fff;
}
.ap-step-indicator span.is-active {
  border-color: #2d2f92;
  background: #2d2f92;
  color: #fff;
}
.ap-service-request-card {
  margin-top: 28px;
  border-radius: 30px;
  background: #f3f4f6;
  box-shadow: 0 14px 34px rgba(29, 36, 84, .10);
  padding: 22px;
}
.ap-service-notice {
  margin-bottom: 36px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #bfd7ff;
  background: #eaf3ff;
  color: #1f4b8f;
  font-size: 14px;
}
.ap-service-request-section-title {
  margin: 0;
  font-size: 40px;
  line-height: 1.05;
  color: #1f2f63;
}
.ap-service-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.ap-service-field label,
.ap-request-type > p:first-child {
  display: block;
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  color: #404040;
}
.ap-service-field input,
.ap-service-field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #d2d6dd;
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s ease;
  font-size: 14px;
  background: #fff;
}
.ap-service-field input:focus,
.ap-service-field textarea:focus {
  border-color: #2d2f92;
}
.ap-service-field input[disabled] {
  cursor: not-allowed;
  background: #f2f4f8;
  color: #8e95a3;
}
.ap-service-field textarea {
  min-height: 120px;
  resize: vertical;
}
.ap-service-hint {
  margin: 6px 0 0;
  font-size: 12px;
  color: #8b90a0;
}
.ap-service-error {
  min-height: 16px;
  margin: 6px 0 0;
  font-size: 12px;
  color: #de0017;
}
.ap-service-field.has-error input,
.ap-request-type.has-error > div {
  border-color: #de0017;
}
.ap-request-type {
  margin-top: 20px;
}
.ap-request-type > div {
  display: flex;
  gap: 12px;
}
.ap-request-type button {
  border-radius: 10px;
  border: 1px solid #d2d6dd;
  background: #fff;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
}
.ap-request-type button.is-active {
  border-color: #de0017;
  background: #fde8eb;
}
.ap-service-driver {
  margin-top: 36px;
  border-top: 1px solid #eceef2;
  padding-top: 28px;
}
.ap-service-checks {
  margin-top: 6px;
}
.ap-service-checks label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #585f6a;
}
.ap-service-actions {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.ap-step-message {
  margin: 0;
  color: #de0017;
  font-size: 14px;
}
.ap-btn-primary,
.ap-btn-outline,
.ap-btn-blue {
  border-radius: 12px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.ap-btn-primary {
  border: 1px solid #de0017;
  background: #de0017;
  color: #fff;
}
.ap-btn-outline {
  border: 1px solid #de0017;
  background: transparent;
  color: #de0017;
}
.ap-btn-blue {
  border: 1px solid #2d2f92;
  background: #2d2f92;
  color: #fff;
}
.ap-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
  border-radius: 12px;
  background: #f6f7f9;
  padding: 16px;
  font-size: 14px;
  margin-bottom: 26px;
}
.ap-service-actions-second {
  margin-top: 24px;
}
.ap-service-comment {
  margin-top: 20px;
}

.ap-service-request-card > section {
  border-radius: 24px;
  background: #f7f8fa;
  padding: 22px;
}
.ap-service-request-card > section[data-step-panel="2"] {
  background: #f5f6f8;
}
.ap-service-field label,
.ap-request-type > p:first-child {
  color: #2d3a64;
}
.ap-service-field input,
.ap-service-field textarea {
  border: 1px solid #c8d0df;
  border-radius: 12px;
  min-height: 40px;
  background: #fff;
  color: #334368;
}
.ap-service-field--icon {
  position: relative;
}
.ap-service-field--icon input {
  padding-right: 40px;
}
.ap-input-icon {
  position: absolute;
  right: 12px;
  top: 38px;
  width: 18px;
  height: 18px;
  opacity: 0.72;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}
.ap-input-icon-calendar {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23798aad' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cline x1='16' y1='3' x2='16' y2='7'/%3E%3Cline x1='8' y1='3' x2='8' y2='7'/%3E%3Cline x1='3' y1='11' x2='21' y2='11'/%3E%3C/svg%3E");
}
.ap-input-icon-clock {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23798aad' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}
.ap-service-field input::placeholder,
.ap-service-field textarea::placeholder {
  color: #8a97b3;
}
.ap-service-field textarea {
  min-height: 66px;
}
.ap-summary {
  border-radius: 16px;
  background: #eceef3;
  padding: 24px;
  gap: 12px 36px;
  color: #32416a;
}
.ap-summary-item strong {
  font-weight: 700;
  color: #24345f;
}
.ap-service-actions-second {
  margin-top: 22px;
}
.ap-btn-outline {
  border-color: #ff6475;
  color: #ff4f65;
  background: #fff;
}
.ap-btn-blue {
  border-color: #3047be;
  background: #3047be;
  min-width: 124px;
  box-shadow: 0 7px 18px rgba(39, 64, 184, .32);
}

@media (max-width: 980px) {
  .ap-service-request-card {
    padding: 26px 18px;
  }
  .ap-service-request-title {
    font-size: 34px;
  }
  .ap-service-grid,
  .ap-summary {
    grid-template-columns: 1fr;
  }
  .ap-service-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

.about-modern { background: #f3f4f6; padding-bottom: 56px; }
.about-modern__hero { background: linear-gradient(135deg,#fff 0%,#f3f4f6 60%,#e9ecf6 100%); padding: 32px 0 40px; }
.about-modern__container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
.about-modern__eyebrow { display:inline-flex; align-items:center; gap:8px; padding:10px 14px; border-radius:999px; border:1px solid #dfe5ef; background:#fff; color:#334155; font-weight:600; font-size:14px; line-height:1; box-shadow:0 10px 24px rgba(148,163,184,.24); }
.about-modern__eyebrow::before { content:"✧"; color:#e30613; font-size:12px; line-height:1; }
.about-modern h1 { margin: 14px 0 0; font-size: clamp(36px,6vw,68px); line-height: 1.05; letter-spacing: -0.03em; color: #121212; max-width: 950px; }
.about-modern__lead { margin: 20px 0 0; max-width: 760px; font-size: 20px; line-height: 1.5; color: #334155; }
.about-modern__hero-image { margin-top: 28px; width: 100%; height: 420px; object-fit: cover; border-radius: 24px; }
.about-modern__stats { margin-top: -24px; background: #fff; border-radius: 22px; display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 12px; padding: 14px; box-shadow: 0 10px 30px rgba(15,23,42,.12); }
.about-modern__stats article { background: #f8fafc; border-radius: 16px; padding: 18px; }
.about-modern__stats strong { display: block; font-size: 38px; line-height: 1; color: #29278f; }
.about-modern__stats span { display: block; margin-top: 8px; font-weight: 800; }
.about-modern__stats p { margin: 6px 0 0; font-size: 14px; color: #64748b; }
.about-modern__section { padding-top: 60px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; }
.about-modern__intro h2 { margin: 0; font-size: clamp(32px,4vw,56px); line-height: 1.05; letter-spacing: -0.03em; }
.about-modern__intro p { margin-top: 16px; color: #475569; font-size: 18px; line-height: 1.6; }
.about-modern__feature { background: #fff; border-radius: 24px; overflow: hidden; box-shadow: 0 10px 26px rgba(15,23,42,.1); }
.about-modern__feature img { width: 100%; height: 250px; object-fit: cover; }
.about-modern__feature h3 { margin: 20px 22px 0; font-size: 30px; }
.about-modern__feature p { margin: 12px 22px 24px; color: #64748b; line-height: 1.6; }
.about-modern__service-grid { margin-top: 20px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.about-modern__service-grid article { background: #fff; border-radius: 18px; padding: 20px; border-top: 4px solid #29278f; }
.about-modern__service-grid article:nth-child(odd) { border-top-color: #e30613; }
.about-modern__service-grid h4 { margin: 0; font-size: 24px; }
.about-modern__service-grid p { margin: 10px 0 0; color: #64748b; line-height: 1.55; }

@media (max-width: 1024px) {
  .about-modern__stats { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .about-modern__section { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .about-modern__hero-image { height: 280px; }
  .about-modern__service-grid { grid-template-columns: 1fr; }
  .about-modern__stats { grid-template-columns: 1fr; }
  .about-modern__lead { font-size: 17px; }
}
.about-modern__timeline-wrap { padding: 68px 0; background: #fff; }
.about-modern__timeline-wrap h2 { margin: 0 0 20px; font-size: clamp(32px,4vw,56px); }
.about-modern__timeline { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.about-modern__timeline article { background: #f7f8fb; border-radius: 18px; padding: 20px; }
.about-modern__timeline strong { font-size: 42px; color: #e30613; line-height: 1; }
.about-modern__timeline h4 { margin: 10px 0 0; font-size: 24px; }
.about-modern__timeline p { margin: 8px 0 0; color: #64748b; }

.about-modern__regions { padding: 68px 0; background: #071b3a; color: #fff; }
.about-modern__regions h2 { margin: 0; font-size: clamp(32px,4vw,56px); }
.about-modern__regions p { margin: 14px 0 0; color: #cbd5e1; max-width: 980px; }
.about-modern__region-grid { margin-top: 20px; display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 10px; }
.about-modern__region-grid span { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: 12px; padding: 10px 12px; font-weight: 700; }

.about-modern__cta { padding: 62px 0; background: #f3f4f6; }
.about-modern__cta-inner { background: linear-gradient(135deg,#29278f,#e30613); color: #fff; border-radius: 26px; padding: 28px; display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center; }
.about-modern__cta h2 { margin: 0; font-size: clamp(30px,3.5vw,48px); }
.about-modern__cta p { margin: 12px 0 0; color: #dbeafe; }
.about-modern__cta-contact { background: #fff; color: #0f172a; border-radius: 16px; padding: 18px; min-width: 260px; display: grid; gap: 6px; }
.about-modern__cta-contact a { font-weight: 800; }

@media (max-width: 1024px) {
  .about-modern__timeline { grid-template-columns: 1fr; }
  .about-modern__region-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .about-modern__cta-inner { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .about-modern__region-grid { grid-template-columns: 1fr; }
}
/* about page alignment + hero tune */
.about-modern { background: var(--ap-bg); }
.about-modern__container { width: min(var(--ap-header-wrap), calc(100% - 32px)); }
.about-modern__hero { padding: 26px 0 30px; background: linear-gradient(135deg,#ffffff 0%,#f0f2f7 58%,#eceff6 100%); }
.about-modern__hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 30px; align-items: center; }
.about-modern h1 { max-width: 540px; font-size: clamp(46px,5.4vw,74px); }
.about-modern__lead { max-width: 520px; font-size: 17px; color: #334155; }
.about-modern__hero-actions { margin-top: 20px; display: flex; gap: 12px; flex-wrap: wrap; }
.about-modern__btn { display: inline-flex; padding: 11px 18px; border-radius: 10px; font-weight: 800; font-size: 14px; }
.about-modern__btn--red { background: #e30613; color: #fff; }
.about-modern__btn--blue { border: 1px solid #29278f; color: #29278f; background: #fff; }
.about-modern__hero-card { background: #fff; border: 1px solid #dde3ef; border-radius: 22px; padding: 10px; box-shadow: 0 20px 45px rgba(30,41,59,.15); }
.about-modern__hero-image { margin-top: 0; border-radius: 16px; height: 300px; }
.about-modern__hero-metrics { margin-top: 10px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.about-modern__hero-metrics article { background: #f7f9fc; border-radius: 12px; padding: 12px; }
.about-modern__hero-metrics strong { display: block; font-size: 34px; line-height: 1; }
.about-modern__hero-metrics span { display: block; margin-top: 4px; font-size: 12px; color: #475569; }

@media (max-width: 1024px) {
  .about-modern__hero-grid { grid-template-columns: 1fr; }
}


.about-modern__subtitle { display:inline-block; margin:0 0 14px; padding:8px 14px; border-radius:10px; background:#fff; color:#e30613; font-weight:800; }
.about-modern__service-grid small { display:inline-block; margin-top:12px; font-weight:800; color:#29278f; }
.about-modern__service-grid article:nth-child(odd) small { color:#e30613; }

/* about hero full copy tune */
.about-modern__hero { position:relative; background:#f3f4f6; }
.about-modern__hero::before { content:""; position:absolute; inset:0; background-image:linear-gradient(rgba(41,39,143,.08) 1px, transparent 1px),linear-gradient(90deg, rgba(41,39,143,.08) 1px, transparent 1px); background-size:48px 48px; opacity:.35; }
.about-modern__hero-grid { position:relative; z-index:1; align-items:start; gap:44px; }
.about-modern h1 { max-width:620px; font-size:clamp(68px,7.2vw,92px); font-weight:900; line-height:.95; letter-spacing:-.05em; }
.about-modern__lead { max-width:620px; margin-top:24px; font-size:35px; font-size:33px; }
.about-modern__lead { font-size:33px; }
.about-modern__lead { font-size:17px; line-height:1.5; color:#1e3357; }
.about-modern__hero-card { position:relative; border-radius:26px; padding:10px; background:#f8fafc; border:1px solid #e6e9f1; }
.about-modern__hero-top { position:absolute; left:20px; right:20px; top:20px; z-index:2; background:#fff; border-radius:14px; padding:12px 16px; display:flex; align-items:center; justify-content:space-between; box-shadow:0 10px 24px rgba(15,23,42,.18); }
.about-modern__hero-top small { display:block; font-size:12px; color:#64748b; }
.about-modern__hero-top strong { display:block; font-size:40px; font-size:38px; line-height:1; color:#29278f; }
.about-modern__shield { color:#e30613; font-size:28px; }
.about-modern__hero-image { height:360px; border-radius:18px; filter:brightness(.75); }
.about-modern__hero-metrics { margin-top:-96px; position:relative; z-index:2; padding:0 12px 12px; gap:10px; }
.about-modern__hero-metrics article { background:#fff; border-radius:12px; padding:14px; }
.about-modern__hero-metrics article.is-blue { background:#29278f; color:#fff; }
.about-modern__hero-metrics article small { color:#e30613; font-weight:700; display:block; }
.about-modern__hero-metrics article.is-blue small { color:#fff; }
.about-modern__hero-metrics strong { font-size:44px; font-size:42px; font-weight:900; }
.about-modern__hero-metrics span { font-size:13px; color:#334155; }
.about-modern__hero-metrics article.is-blue span { color:#dbeafe; }

.about-modern__stats { margin-top:18px; border:1px solid #d9e0ea; border-radius:20px; background:#fff; }
.about-modern__stats article { background:#f2f4f8; border-radius:12px; }
.about-modern__stats article:nth-child(3) strong { color:#e30613; }

@media (max-width: 900px){
  .about-modern h1{font-size:clamp(48px,13vw,70px)}
}


/* hero image plaque final match */
.about-modern__hero-card {background:#0b111f;border:10px solid #ffffff;border-radius:26px;padding:10px;box-shadow:0 20px 40px rgba(17,24,39,.18);} 
.about-modern__hero-top {left:12px;right:12px;top:12px;background:#f3f4f8;border:1px solid #d7deea;border-radius:12px;padding:12px 16px;}
.about-modern__hero-top strong {font-size:38px;color:#2d2d99;font-weight:900;}
.about-modern__hero-top small {font-size:11px;color:#5b6478;letter-spacing:.01em;}
.about-modern__shield {font-size:24px;filter:saturate(1.3);}
.about-modern__hero-image {height:336px;border-radius:12px;filter:brightness(.78) contrast(1.05);} 
.about-modern__hero-metrics {margin-top:-112px;padding:0 10px 10px;}
.about-modern__hero-metrics article {border-radius:12px;padding:14px 14px 12px;min-height:112px;display:flex;flex-direction:column;justify-content:flex-start;}
.about-modern__metric-icon {font-size:18px;line-height:1;margin-bottom:8px;color:#ff1b2d;}
.about-modern__hero-metrics article.is-blue .about-modern__metric-icon {color:#fff;}
.about-modern__hero-metrics strong {font-size:44px;line-height:1;letter-spacing:-.02em;color:#05122d;}
.about-modern__hero-metrics article.is-blue strong {color:#fff;}
.about-modern__hero-metrics span {margin-top:6px;font-size:13px;line-height:1.25;color:#3f4b63;}
.about-modern__hero-metrics article.is-blue span {color:#e5e7ff;}

/* hero plaque closer to reference v2 */
.about-modern__hero-card {background:#ffffff;border:8px solid #f0f2f6;border-radius:24px;padding:8px;box-shadow:none;}
.about-modern__hero-top {left:10px;right:10px;top:10px;background:#f7f8fb;border:1px solid #d8dfeb;border-radius:12px;padding:12px 16px;box-shadow:0 6px 14px rgba(15,23,42,.08);} 
.about-modern__hero-top strong {font-size:48px;font-size:45px;color:#302f98;}
.about-modern__hero-image {height:342px;border-radius:10px;filter:brightness(.84) contrast(1.02);} 
.about-modern__hero-metrics {margin-top:-118px;padding:0 10px 10px;}
.about-modern__hero-metrics article {border-radius:12px;min-height:114px;}
.about-modern__hero-metrics article.is-blue {background:#2f2ca0;}
.about-modern__metric-icon {font-size:16px;margin-bottom:10px;}
.about-modern__hero-metrics strong {font-size:56px;font-size:54px;}
.about-modern__hero-metrics article:first-child strong {font-size:58px;font-size:56px;}
.about-modern__hero-metrics article:first-child strong {letter-spacing:-.02em;}
.about-modern__hero-metrics article:first-child span {font-size:35px;font-size:34px;}
.about-modern__hero-metrics article:first-child span {font-size:12px;}
.about-modern__hero-metrics article.is-blue strong {font-size:60px;font-size:58px;}
.about-modern__hero-metrics article.is-blue strong {line-height:.9;}
.about-modern__hero-metrics span {margin-top:4px;font-size:12px;}
.about-modern__shield {font-size:22px;color:#ef233c;}

/* hero plaque final correction */
.about-modern__hero-top strong {font-size:44px;line-height:1;font-weight:900;}
.about-modern__hero-metrics strong {font-size:56px;line-height:.95;}
.about-modern__hero-metrics article:first-child strong {font-size:54px;}
.about-modern__hero-metrics article.is-blue strong {font-size:58px;}
.about-modern__hero-metrics article:first-child span,
.about-modern__hero-metrics span {font-size:12px;line-height:1.25;}
@media (max-width: 1200px){
  .about-modern__hero-metrics strong{font-size:44px}
  .about-modern__hero-metrics article:first-child strong{font-size:42px}
  .about-modern__hero-metrics article.is-blue strong{font-size:46px}
}

/* hero plaque match refinement v3 */
.about-modern__hero-card {max-width: 440px; margin-left: auto; border: 8px solid #f3f5f8; background:#fff;}
.about-modern__hero-top {padding:10px 16px 12px;}
.about-modern__hero-top strong {font-size:52px; font-size:50px;}
.about-modern__hero-image {height:320px;}
.about-modern__hero-metrics {margin-top:-96px; grid-template-columns: 1.1fr .9fr;}
.about-modern__hero-metrics article {min-height:106px; padding:14px 14px;}
.about-modern__hero-metrics article:first-child strong {font-size:62px; font-size:60px; line-height:.86; letter-spacing:-.04em;}
.about-modern__hero-metrics article:first-child strong::after {content:' лет'; font-size:.52em; font-weight:800; margin-left:3px;}
.about-modern__hero-metrics article:first-child span {margin-top:8px;}
.about-modern__hero-metrics article.is-blue strong {font-size:54px; line-height:.9;}
.about-modern__hero-metrics article.is-blue span {font-size:11px; line-height:1.2; font-weight:700;}
.about-modern__metric-icon {font-size:13px; margin-bottom:6px;}

@media (max-width: 1200px){
  .about-modern__hero-card{max-width:100%}
  .about-modern__hero-top strong{font-size:42px}
  .about-modern__hero-metrics article:first-child strong{font-size:48px}
}

/* Premium footer redesign */
.ap-footer { position: relative; isolation: isolate; overflow: hidden; background: #2b2e8f; color: #fff; }
.ap-footer__top-line { position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(to right, #e50925, #2b2e8f, #5960ff); z-index: 2; }
.ap-footer__dots { position: absolute; inset: 0; opacity: .22; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.28) 1px, transparent 0); background-size: 12px 12px; }
.ap-footer__perspective { pointer-events: none; position: absolute; z-index: 1; }
.ap-footer__perspective--right { bottom: -120px; right: -220px; width: 760px; height: 360px; transform: rotate(-7deg); opacity: .35; }
.ap-footer__perspective--left { bottom: -80px; left: -140px; width: 520px; height: 260px; transform: rotate(8deg); opacity: .22; }
.ap-footer__line { position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; transform-origin: left bottom; }
.ap-footer__line--blue { background: rgba(141,146,255,.55); }
.ap-footer__line--red { background: rgba(255,47,79,.45); }
.ap-footer__line--1 { transform: rotate(0deg); } .ap-footer__line--2 { transform: rotate(2.7deg); } .ap-footer__line--3 { transform: rotate(5.4deg); } .ap-footer__line--4 { transform: rotate(8.1deg); } .ap-footer__line--5 { transform: rotate(10.8deg); } .ap-footer__line--6 { transform: rotate(13.5deg); } .ap-footer__line--7 { transform: rotate(16.2deg); } .ap-footer__line--8 { transform: rotate(18.9deg); } .ap-footer__line--9 { transform: rotate(21.6deg); } .ap-footer__line--10 { transform: rotate(24.3deg); } .ap-footer__line--11 { transform: rotate(27deg); } .ap-footer__line--12 { transform: rotate(29.7deg); } .ap-footer__line--13 { transform: rotate(32.4deg); } .ap-footer__line--14 { transform: rotate(35.1deg); } .ap-footer__line--15 { transform: rotate(37.8deg); } .ap-footer__line--16 { transform: rotate(40.5deg); } .ap-footer__line--17 { transform: rotate(43.2deg); } .ap-footer__line--18 { transform: rotate(45.9deg); }
.ap-footer__line-left--1 { transform: rotate(0deg); } .ap-footer__line-left--2 { transform: rotate(4.2deg); } .ap-footer__line-left--3 { transform: rotate(8.4deg); } .ap-footer__line-left--4 { transform: rotate(12.6deg); } .ap-footer__line-left--5 { transform: rotate(16.8deg); } .ap-footer__line-left--6 { transform: rotate(21deg); } .ap-footer__line-left--7 { transform: rotate(25.2deg); } .ap-footer__line-left--8 { transform: rotate(29.4deg); } .ap-footer__line-left--9 { transform: rotate(33.6deg); } .ap-footer__line-left--10 { transform: rotate(37.8deg); }
.ap-footer__glow { position: absolute; border-radius: 999px; filter: blur(90px); z-index: 1; }
.ap-footer__glow--blue { left: 9%; top: 28%; width: 224px; height: 224px; background: rgba(118,124,255,.3); }
.ap-footer__glow--red { left: 54%; top: 23%; width: 192px; height: 192px; background: rgba(255,48,79,.2); filter: blur(85px); }
.ap-footer__container { position: relative; z-index: 3; margin: 0 auto; max-width: 1500px; padding: 80px 32px; display: grid; grid-template-columns: 1fr; gap: 56px; }
.ap-footer__brand { display: flex; flex-direction: column; }
.ap-footer__logo { display: inline-flex; align-items: center; filter: drop-shadow(2px 0 0 rgba(255,255,255,.55)) drop-shadow(-1px 0 0 rgba(255,255,255,.55)) drop-shadow(0 2px 0 rgba(255,255,255,.55)) drop-shadow(0 -1px 0 rgba(255,255,255,.55)); }
.ap-footer__description { margin: 56px 0 0; max-width: 390px; font-size: 20px; line-height: 1.48; color: rgba(255,255,255,.82); }
.ap-footer__copyright { margin-top: auto; font-size: 18px; line-height: 1.75; color: rgba(255,255,255,.68); }
.ap-footer__title { margin: 0; text-transform: uppercase; font-size: 21px; font-weight: 700; letter-spacing: .08em; color: rgba(255,255,255,.86); }
.ap-footer__title::after { content: ""; display: block; margin-top: 24px; width: 45px; height: 3px; border-radius: 999px; background: linear-gradient(to right, #ff1736, rgba(255,255,255,.7), transparent); }
.ap-footer__nav { margin-top: 48px; border-top: 1px solid rgba(255,255,255,.085); }
.ap-footer__nav-link { height: 64px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.085); font-size: 20px; color: rgba(255,255,255,.8); text-decoration: none; transition: color .2s ease; }
.ap-footer__nav-link:hover { color: #fff; }
.ap-footer__nav-link svg { width: 20px; height: 20px; color: rgba(255,255,255,.7); transition: transform .2s ease, color .2s ease; }
.ap-footer__nav-link:hover svg { transform: translateX(4px); color: #fff; }
.ap-footer__contact-card { position: relative; margin-top: 36px; border-radius: 28px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.13); padding: 32px; box-shadow: 0 0 55px rgba(19,22,92,.24); backdrop-filter: blur(18px); }
.ap-footer__contact-card::before { content: ""; position: absolute; left: 28px; right: 28px; top: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(255,47,79,.8), transparent); }
.ap-footer__contact-row { display: flex; gap: 20px; margin-bottom: 28px; }
.ap-footer__contact-row--last { margin-bottom: 0; }
.ap-footer__icon-box { width: 52px; height: 52px; border-radius: 12px; background: rgba(255,255,255,.11); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #ff2446; }
.ap-footer__icon-box svg { width: 24px; height: 24px; }
.ap-footer__muted { margin: 2px 0 4px; font-size: 15px; color: rgba(255,255,255,.66); }
.ap-footer__main { margin: 0; font-size: 20px; font-weight: 600; line-height: 1.35; letter-spacing: .01em; color: rgba(255,255,255,.94); }
.ap-footer__main--nowrap { white-space: nowrap; }
.ap-footer__docs { margin-top: 48px; display: grid; gap: 28px; }
.ap-footer__doc-link { display: flex; align-items: center; gap: 20px; font-size: 20px; color: rgba(255,255,255,.82); text-decoration: none; transition: color .2s ease; }
.ap-footer__doc-link:hover { color: #fff; }
.ap-footer__doc-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: rgba(255,255,255,.62); transition: color .2s ease; }
.ap-footer__doc-icon svg { width: 24px; height: 24px; }
.ap-footer__doc-link:hover .ap-footer__doc-icon { color: rgba(255,255,255,.8); }
.ap-footer__doc-text { padding-bottom: 4px; border-bottom: 1px dotted rgba(255,255,255,.38); transition: border-color .2s ease; }
.ap-footer__doc-link:hover .ap-footer__doc-text { border-color: rgba(255,255,255,.55); }
@media (min-width: 900px) {
  .ap-footer__container { grid-template-columns: 1.08fr .72fr 1.32fr .92fr; padding: 80px 64px; }
  .ap-footer__brand { min-height: 430px; }
}
@media (min-width: 1200px) {
  .ap-footer__container { padding: 80px 96px; }
}
@media (max-width: 899px) {
  .ap-footer__container { grid-template-columns: 1fr 1fr; padding: 64px 24px; gap: 44px; }
  .ap-footer__main--nowrap { white-space: normal; }
}
@media (max-width: 640px) {
  .ap-footer { overflow-x: clip; }
  .ap-footer__container { grid-template-columns: 1fr; padding: 56px 18px; gap: 36px; }
  .ap-footer__description, .ap-footer__main, .ap-footer__nav-link, .ap-footer__doc-link { font-size: 18px; }
  .ap-footer__contact-card { padding: 24px 18px; border-radius: 22px; }
}

/* Home FAQ redesign (scoped) */
.ap-faq {
  position: relative;
  overflow: hidden;
  background: #f4f5fb;
  color: #121426;
  padding: 80px 0;
}
.ap-faq__glow { position: absolute; left: 50%; top: 0; width: 720px; height: 520px; transform: translateX(-50%); border-radius: 50%; background: rgba(43,46,143,.055); filter: blur(56px); pointer-events:none; }
.ap-faq__container { position: relative; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.ap-faq__header { display:flex; align-items:flex-end; justify-content:space-between; gap:24px; margin-bottom:32px; }
.ap-faq__eyebrow { margin:0; color:#e50925; font-size:13px; font-weight:700; letter-spacing:.16em; text-transform:uppercase; }
.ap-faq__title { margin:8px 0 0; color:#111322; font-size:38px; font-weight:600; letter-spacing:-.04em; }
.ap-faq__lead { max-width:390px; margin:0; color:#5b6174; font-size:16px; line-height:1.75; }
.ap-faq__grid { display:grid; grid-template-columns:1.02fr .98fr; gap:24px; }
.ap-faq__list { overflow:hidden; border:1px solid rgba(0,0,0,.06); border-radius:24px; background:#fff; box-shadow:0 18px 55px rgba(21,24,95,.08); }
.ap-faq__question { width:100%; display:flex; justify-content:space-between; align-items:center; gap:20px; padding:18px 24px; text-align:left; font-size:16px; font-weight:600; line-height:1.5; border:0; border-bottom:1px solid rgba(0,0,0,.055); background:#fff; color:#202437; cursor:pointer; transition:.2s ease; }
.ap-faq__item:last-child .ap-faq__question { border-bottom:0; }
.ap-faq__question:hover { background:#f1f2fb; }
.ap-faq__question.active { background:#2b2e8f; color:#fff; box-shadow:inset 0 1px 0 rgba(255,255,255,.12); }
.ap-faq__question-icon { width:32px; height:32px; flex:0 0 32px; display:inline-flex; align-items:center; justify-content:center; border-radius:999px; background:#eef0fb; color:#2b2e8f; }
.ap-faq__question.active .ap-faq__question-icon { background:rgba(255,255,255,.15); color:#fff; }
.ap-faq__icon { width:16px; height:16px; }
.ap-faq__icon-minus { display:none; }
.ap-faq__question.active .ap-faq__icon-plus { display:none; }
.ap-faq__question.active .ap-faq__icon-minus { display:block; }
.ap-faq__answer-card { min-height:460px; display:flex; flex-direction:column; padding:32px; border:1px solid rgba(0,0,0,.06); border-radius:24px; background:#fff; box-shadow:0 18px 55px rgba(21,24,95,.08); }
.ap-faq__answer-head { margin-bottom:24px; display:flex; align-items:center; gap:16px; }
.ap-faq__answer-icon { width:48px; height:48px; border-radius:16px; background:rgba(43,46,143,.1); color:#2b2e8f; display:flex; align-items:center; justify-content:center; }
.ap-faq__answer-icon svg { width:24px; height:24px; }
.ap-faq__answer-badge { display:inline-flex; border-radius:999px; background:rgba(43,46,143,.1); padding:6px 16px; color:#2b2e8f; font-size:13px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; }
.ap-faq__answer-text { max-width:590px; margin:0; color:#33384d; font-size:20px; line-height:1.8; }
.ap-faq__callout { margin-top:auto; border:1px solid rgba(43,46,143,.1); border-radius:22px; background:#f3f4fb; padding:24px; }
.ap-faq__callout-title { margin:0; color:#111322; font-size:20px; font-weight:600; letter-spacing:-.02em; }
.ap-faq__callout-copy { margin:4px 0 0; color:#5b6174; font-size:16px; line-height:1.75; }
.ap-faq__callout-link { margin-top:16px; display:inline-flex; align-items:center; gap:8px; color:#e50925; font-size:16px; font-weight:700; text-decoration:none; transition:gap .2s ease, transform .2s ease; }
.ap-faq__callout-link:hover { gap:12px; }
.ap-faq__callout-link svg { width:16px; height:16px; }
@media (max-width: 1024px) {
  .ap-faq__header { align-items:flex-start; flex-direction:column; }
  .ap-faq__lead { max-width:none; }
  .ap-faq__grid { grid-template-columns:1fr; }
}
@media (max-width: 767px) {
  .ap-faq { padding:64px 0; }
  .ap-faq__container { padding: 0 16px; }
  .ap-faq__title { font-size:32px; }
  .ap-faq__question { padding:16px 18px; }
  .ap-faq__answer-card { padding:24px; min-height:0; }
  .ap-faq__answer-text { font-size:18px; line-height:1.65; }
}
