/* =========================================================
   ALE AUTO — CLEAN CSS FOR PAGE /11
   Полная замена старого CSS.
   Без JS, без HTML-слоёв, без накопленных патчей.
========================================================= */


/* =========================================================
   1. TOKENS
========================================================= */

:root {
  --aa11-bg: #050B16;
  --aa11-bg-soft: #07111F;
  --aa11-bg-card: rgba(255,255,255,.064);

  --aa11-white: #FFFFFF;
  --aa11-text: #FFFFFF;
  --aa11-muted: rgba(255,255,255,.72);
  --aa11-muted-2: rgba(255,255,255,.56);

  --aa11-blue: #7EE7FF;
  --aa11-sky: #7CB7FF;
  --aa11-orange: #F36B2A;
  --aa11-red: #D83D4F;

  --aa11-grad: linear-gradient(135deg, #F36B2A 0%, #D83D4F 100%);
  --aa11-blue-grad: linear-gradient(135deg, #7CB7FF 0%, #7EE7FF 100%);

  --aa11-max: 1180px;
  --aa11-radius: 34px;
  --aa11-radius-lg: 44px;
}


/* =========================================================
   2. GLOBAL PAGE BACKGROUND
   Самый стабильный бесшовный вариант для Tilda:
   единый тёмный цвет + fixed-сетка.
========================================================= */

html,
body {
  margin: 0 !important;
  min-height: 100% !important;
  color: #ffffff !important;
  background-color: #050B16 !important;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

/* Главная подложка страницы */
body {
  position: relative !important;
  background-color: #050B16 !important;
}

/* Мягкая общая сетка на весь экран */
body::before {
  content: "" !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;

  background-image:
    linear-gradient(rgba(126,231,255,.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126,231,255,.075) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.014) 1px, transparent 1px) !important;

  background-size:
    72px 72px,
    72px 72px,
    288px 288px,
    288px 288px !important;

  background-position:
    0 0,
    0 0,
    0 0,
    0 0 !important;

  opacity: .75 !important;
  animation: aa11-grid-drift 80s linear infinite !important;
}

/* Очень мягкие пятна света — не секционные, а fixed */
body::after {
  content: "" !important;
  position: fixed !important;
  inset: -20% !important;
  z-index: 1 !important;
  pointer-events: none !important;

  background:
    radial-gradient(circle at 12% 8%, rgba(126,231,255,.105), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(243,107,42,.052), transparent 25%),
    radial-gradient(circle at 54% 46%, rgba(124,183,255,.045), transparent 38%),
    radial-gradient(circle at 18% 88%, rgba(216,61,79,.035), transparent 30%) !important;

  filter: blur(12px) !important;
  opacity: .86 !important;
  transform: translateZ(0) !important;
}


/* =========================================================
   3. TILDA BACKGROUND RESET
   Убираем именно фоновые “плитки”, не трогая контент.
========================================================= */

#allrecords,
.t-records,
.t-rec,
.t-rec_pt_0,
.t-rec_pb_0,
.t396,
.t396__artboard,
.t396__carrier,
.t396__filter,
.aa11,
.aa11-section,
section,
main {
  background-color: transparent !important;
  background-image: none !important;
  background: transparent !important;
}

/* Zero Block overlay часто создаёт затемнение/шов */
.t396__filter {
  opacity: 0 !important;
}

/* Контент всегда выше фоновых fixed-слоёв */
#allrecords,
.t-records,
.t-rec,
.t396,
.t396__artboard,
.aa11,
.aa11-section {
  position: relative !important;
  z-index: 2 !important;
}

/* Внутренний контент выше декоративной сетки */
.t396__artboard > *,
.aa11 > *,
.aa11-section > *,
.aa11-container {
  position: relative;
  z-index: 3;
}


/* =========================================================
   4. LOCAL RESET
========================================================= */

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

.aa11 {
  width: 100%;
  color: var(--aa11-text);
  font-family: TildaSans, "Tilda Sans", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.aa11 a {
  color: inherit;
}

.aa11 img,
.aa11 video,
.aa11 svg {
  max-width: 100%;
}

.aa11 button,
.aa11 input,
.aa11 textarea,
.aa11 select {
  font-family: inherit;
}


/* =========================================================
   5. BASE LAYOUT
========================================================= */

.aa11-section {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 108px 0;
  overflow: hidden;
  color: var(--aa11-text);
  background: transparent !important;
}

.aa11-section[id] {
  scroll-margin-top: 112px;
}

.aa11-container {
  position: relative;
  z-index: 4;
  width: min(var(--aa11-max), calc(100% - 48px));
  margin: 0 auto;
}

.aa11-grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  gap: 64px;
  align-items: center;
}

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

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


/* =========================================================
   6. HEADER / DESKTOP MENU
========================================================= */

.aa11-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  width: 100%;
  padding: 14px 0;
  overflow: visible;

  color: var(--aa11-white);

  background:
    radial-gradient(circle at 12% 0%, rgba(126,231,255,.075), transparent 34%),
    radial-gradient(circle at 88% 0%, rgba(243,107,42,.075), transparent 30%),
    linear-gradient(180deg, rgba(3,7,18,.985) 0%, rgba(3,7,18,.93) 100%) !important;

  border-bottom: 1px solid rgba(126,231,255,.12);
  box-shadow: 0 18px 46px rgba(0,0,0,.34);
  backdrop-filter: blur(22px) saturate(1.1);
  -webkit-backdrop-filter: blur(22px) saturate(1.1);
}

.aa11-header__inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(var(--aa11-max), calc(100% - 48px));
  min-height: 54px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.aa11-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  color: var(--aa11-white);
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .02em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.aa11-logo::before {
  content: "";
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 12px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,.95), transparent 11%),
    var(--aa11-grad);
  box-shadow:
    0 12px 34px rgba(216,61,79,.30),
    inset 0 1px 0 rgba(255,255,255,.28);
}

.aa11-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 0;
}

.aa11-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 8px;
  border-radius: 999px;
  color: rgba(255,255,255,.74);
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -.01em;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color .2s ease,
    background .2s ease;
}

.aa11-nav a:hover {
  color: var(--aa11-white);
  background: rgba(255,255,255,.075);
}

.aa11-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.aa11-phone {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: rgba(255,255,255,.90);
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}


/* =========================================================
   7. FIXED MOBILE MENU
========================================================= */

.aa11-mobile-toggle {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

.aa11-mobile-burger {
  position: fixed !important;
  top: 14px !important;
  right: 14px !important;
  z-index: 2147483647 !important;

  display: none;
  width: 52px !important;
  height: 52px !important;
  padding: 0 !important;
  align-items: center !important;
  justify-content: center !important;

  border: 1px solid rgba(126,231,255,.28) !important;
  border-radius: 18px !important;
  color: #ffffff !important;
  background:
    radial-gradient(circle at 30% 18%, rgba(126,231,255,.18), transparent 34%),
    linear-gradient(145deg, rgba(13,31,49,.96), rgba(4,10,22,.98)) !important;
  box-shadow:
    0 18px 44px rgba(0,0,0,.42),
    inset 0 1px 0 rgba(255,255,255,.12) !important;

  backdrop-filter: blur(18px) saturate(1.1) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.1) !important;

  cursor: pointer !important;
  touch-action: manipulation !important;
  -webkit-tap-highlight-color: transparent !important;
}

.aa11-mobile-burger span {
  position: relative !important;
  display: block !important;
  width: 20px !important;
  height: 2px !important;
  border-radius: 99px !important;
  background: #ffffff !important;
  transition:
    background .2s ease,
    transform .2s ease !important;
}

.aa11-mobile-burger span::before,
.aa11-mobile-burger span::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  width: 20px !important;
  height: 2px !important;
  border-radius: 99px !important;
  background: #ffffff !important;
  transition:
    top .2s ease,
    transform .2s ease !important;
}

.aa11-mobile-burger span::before {
  top: -7px !important;
}

.aa11-mobile-burger span::after {
  top: 7px !important;
}

.aa11-mobile-backdrop {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483600 !important;
  display: none;
  background: rgba(1,5,13,.58) !important;
  backdrop-filter: blur(7px) !important;
  -webkit-backdrop-filter: blur(7px) !important;
}

.aa11-mobile-panel {
  position: fixed !important;
  top: 82px !important;
  right: 12px !important;
  left: auto !important;
  z-index: 2147483646 !important;

  display: none;
  width: min(360px, calc(100vw - 24px)) !important;
  max-height: calc(100vh - 108px) !important;
  overflow-y: auto !important;

  margin: 0 !important;
  padding: 12px !important;

  border: 1px solid rgba(126,231,255,.22) !important;
  border-radius: 26px !important;
  background:
    radial-gradient(circle at 14% 0%, rgba(126,231,255,.13), transparent 36%),
    radial-gradient(circle at 92% 4%, rgba(243,107,42,.13), transparent 34%),
    linear-gradient(145deg, rgba(4,10,22,.99), rgba(6,18,35,.98)) !important;

  box-shadow:
    0 30px 90px rgba(0,0,0,.62),
    inset 0 1px 0 rgba(255,255,255,.10) !important;

  backdrop-filter: blur(26px) saturate(1.12) !important;
  -webkit-backdrop-filter: blur(26px) saturate(1.12) !important;
}

.aa11-mobile-panel a {
  display: flex !important;
  width: 100% !important;
  min-height: 48px !important;
  align-items: center !important;
  justify-content: space-between !important;

  margin: 0 !important;
  padding: 0 14px !important;

  border: 0 !important;
  border-radius: 16px !important;

  color: rgba(255,255,255,.88) !important;
  background: transparent !important;

  font-family: TildaSans, "Tilda Sans", Arial, sans-serif !important;
  font-size: 15px !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
  letter-spacing: -.01em !important;
  text-decoration: none !important;

  box-shadow: none !important;
}

.aa11-mobile-panel a::after {
  content: "›" !important;
  color: rgba(126,231,255,.74) !important;
  font-size: 22px !important;
  line-height: 1 !important;
  font-weight: 400 !important;
}

.aa11-mobile-panel a:hover,
.aa11-mobile-panel a:active {
  color: #ffffff !important;
  background: rgba(126,231,255,.10) !important;
}

.aa11-mobile-panel a[href^="tel:"] {
  margin-top: 8px !important;
  color: #7EE7FF !important;
  background: rgba(126,231,255,.08) !important;
}

.aa11-mobile-panel a[href*="popup"] {
  min-height: 52px !important;
  margin-top: 8px !important;
  justify-content: center !important;

  color: #ffffff !important;
  background: var(--aa11-grad) !important;

  font-weight: 800 !important;
  text-align: center !important;

  box-shadow:
    0 16px 38px rgba(216,61,79,.28),
    inset 0 1px 0 rgba(255,255,255,.22) !important;
}

.aa11-mobile-panel a[href*="popup"]::after {
  display: none !important;
}

.aa11-mobile-toggle:checked ~ .aa11-mobile-backdrop {
  display: block !important;
  animation: aa11-fade-in .22s ease both;
}

.aa11-mobile-toggle:checked ~ .aa11-mobile-panel {
  display: block !important;
  animation: aa11-menu-pop .22s ease both;
}

.aa11-mobile-toggle:checked ~ .aa11-mobile-burger span {
  background: transparent !important;
}

.aa11-mobile-toggle:checked ~ .aa11-mobile-burger span::before {
  top: 0 !important;
  transform: rotate(45deg) !important;
}

.aa11-mobile-toggle:checked ~ .aa11-mobile-burger span::after {
  top: 0 !important;
  transform: rotate(-45deg) !important;
}


/* =========================================================
   8. BUTTONS
========================================================= */

.aa11-btn {
  position: relative;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--aa11-white);
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.01em;
  text-decoration: none;
  cursor: pointer;
  transition:
    border-color .25s ease,
    background .25s ease,
    box-shadow .25s ease,
    color .25s ease,
    opacity .25s ease;
  -webkit-tap-highlight-color: transparent;
}

.aa11-btn--primary {
  overflow: hidden;
  color: var(--aa11-white);
  background: var(--aa11-grad);
  box-shadow:
    0 18px 44px rgba(216,61,79,.28),
    inset 0 1px 0 rgba(255,255,255,.24);
}

.aa11-btn--primary:hover {
  color: var(--aa11-white);
  box-shadow:
    0 22px 58px rgba(216,61,79,.36),
    inset 0 1px 0 rgba(255,255,255,.28);
}

.aa11-btn--primary::before {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background:
    linear-gradient(
      110deg,
      transparent 0%,
      transparent 35%,
      rgba(255,255,255,.28) 48%,
      transparent 62%,
      transparent 100%
    );
  transform: translateX(-130%);
  animation: aa11-button-shine 5.2s ease-in-out infinite;
}

.aa11-btn--secondary {
  color: var(--aa11-white);
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.aa11-btn--secondary:hover {
  color: var(--aa11-white);
  border-color: rgba(126,231,255,.32);
  background: rgba(126,231,255,.10);
}

.aa11-header .aa11-btn {
  min-height: 42px;
  padding: 14px 17px;
  font-size: 13px;
}


/* =========================================================
   9. TYPOGRAPHY
========================================================= */

.aa11-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: rgba(126,231,255,.92);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.aa11-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(126,231,255,0), rgba(126,231,255,.9));
}

.aa11-title {
  margin: 0;
  max-width: 780px;
  color: var(--aa11-white);
  font-size: clamp(40px, 5.35vw, 70px);
  line-height: .98;
  font-weight: 800;
  letter-spacing: -.055em;
}

.aa11-title span {
  color: transparent;
  background: linear-gradient(135deg, #FFFFFF 0%, #D9F8FF 44%, #7EE7FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.aa11-title b,
.aa11-title em,
.aa11-section-title b,
.aa11-section-title em {
  color: var(--aa11-orange);
  font-style: normal;
}

.aa11-subtitle {
  margin: 26px 0 0;
  max-width: 650px;
  color: var(--aa11-muted);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.48;
  font-weight: 400;
  letter-spacing: -.015em;
}

.aa11-section-title {
  margin: 0;
  color: var(--aa11-white);
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: -.052em;
}

.aa11-text {
  margin: 0;
  color: var(--aa11-muted);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
}

.aa11-lead {
  max-width: 820px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 17px;
  line-height: 1.65;
}

.aa11 h1,
.aa11 h2,
.aa11 h3,
.aa11 h4,
.aa11 h5,
.aa11 h6 {
  color: var(--aa11-white);
}

.aa11 p,
.aa11 li {
  color: var(--aa11-muted);
}


/* =========================================================
   10. HERO
========================================================= */

.aa11-hero {
  min-height: 100vh;
  padding-top: 172px;
  padding-bottom: 104px;
  display: flex;
  align-items: center;
}

.aa11-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.aa11-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin-top: 40px;
}

.aa11-stat {
  min-height: 98px;
  padding: 18px;
  border: 1px solid rgba(126,231,255,.13);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 0%, rgba(126,231,255,.050), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.070), rgba(255,255,255,.028));
  box-shadow:
    0 20px 60px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.aa11-stat strong {
  display: block;
  margin-bottom: 7px;
  color: var(--aa11-white);
  font-size: 23px;
  line-height: 1;
  font-weight: 850;
}

.aa11-stat span {
  display: block;
  color: rgba(255,255,255,.60);
  font-size: 12px;
  line-height: 1.35;
}


/* =========================================================
   11. CARDS / PANELS
========================================================= */

.aa11-card,
.aa11-panel,
.aa11-feature,
.aa11-step,
.aa11-price,
.aa11-mini-card {
  color: var(--aa11-white);
  border: 1px solid rgba(126,231,255,.13);
  background:
    radial-gradient(circle at 18% 0%, rgba(126,231,255,.055), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.072), rgba(255,255,255,.028));
  box-shadow:
    0 26px 82px rgba(0,0,0,.26),
    inset 0 1px 0 rgba(255,255,255,.09);
  backdrop-filter: blur(18px) saturate(1.06);
  -webkit-backdrop-filter: blur(18px) saturate(1.06);
}

.aa11-card {
  border-radius: var(--aa11-radius);
}

.aa11-panel {
  padding: 28px;
  border-radius: var(--aa11-radius-lg);
}

.aa11-mini-card {
  padding: 18px;
  border-radius: 22px;
}

.aa11-card h3,
.aa11-feature h3,
.aa11-step h3,
.aa11-price h3 {
  color: rgba(255,255,255,.96);
}

.aa11-card p,
.aa11-feature p,
.aa11-step p,
.aa11-price p {
  color: rgba(255,255,255,.68);
}

.aa11-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.aa11-list li {
  position: relative;
  padding: 16px 18px 16px 44px;
  border: 1px solid rgba(126,231,255,.13);
  border-radius: 20px;
  color: rgba(255,255,255,.74);
  background: rgba(255,255,255,.045);
  font-size: 15px;
  line-height: 1.45;
}

.aa11-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--aa11-blue);
  box-shadow: 0 0 22px rgba(126,231,255,.48);
}


/* =========================================================
   12. FEATURE / STEP / PRICE
========================================================= */

.aa11-feature {
  padding: 26px;
  min-height: 100%;
}

.aa11-feature__num {
  display: inline-flex;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--aa11-white);
  background: var(--aa11-grad);
  font-size: 14px;
  font-weight: 850;
  box-shadow:
    0 15px 36px rgba(216,61,79,.28),
    inset 0 1px 0 rgba(255,255,255,.22);
}

.aa11-feature h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -.03em;
}

.aa11-feature p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.55;
}

.aa11-step {
  padding: 26px;
}

.aa11-step strong {
  display: block;
  margin-bottom: 10px;
  color: var(--aa11-blue);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.aa11-step h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
}

.aa11-step p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.55;
}

.aa11-price {
  padding: 30px;
}

.aa11-price h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 850;
  letter-spacing: -.035em;
}

.aa11-price__value {
  margin-top: 18px;
  color: var(--aa11-white);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.045em;
}

.aa11-price__value span {
  color: var(--aa11-blue);
}

.aa11-price p {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.55;
}


/* =========================================================
   13. FAQ
========================================================= */

.aa11-faq {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.aa11-faq-item {
  overflow: hidden;
  border: 1px solid rgba(126,231,255,.13);
  border-radius: 24px;
  background: rgba(255,255,255,.055);
}

.aa11-faq-question {
  display: flex;
  width: 100%;
  min-height: 66px;
  padding: 0 22px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  color: var(--aa11-white);
  background: transparent;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.aa11-faq-question::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--aa11-blue);
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
}

.aa11-faq-item.is-open .aa11-faq-question::after {
  content: "−";
}

.aa11-faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--aa11-muted);
  font-size: 15px;
  line-height: 1.6;
  animation: aa11-fade-in .24s ease both;
}

.aa11-faq-item.is-open .aa11-faq-answer {
  display: block;
}


/* =========================================================
   14. ANIMATION
========================================================= */

.aa11-hero .aa11-eyebrow {
  animation: aa11-fade-up .7s ease both;
  animation-delay: .05s;
}

.aa11-hero .aa11-title {
  animation: aa11-fade-up .8s ease both;
  animation-delay: .12s;
}

.aa11-hero .aa11-subtitle {
  animation: aa11-fade-up .85s ease both;
  animation-delay: .20s;
}

.aa11-hero__actions {
  animation: aa11-fade-up .9s ease both;
  animation-delay: .30s;
}

.aa11-stats {
  animation: aa11-fade-up .95s ease both;
  animation-delay: .40s;
}

.aa11-card,
.aa11-feature,
.aa11-step,
.aa11-price,
.aa11-stat {
  transition:
    transform .28s ease,
    border-color .28s ease,
    background .28s ease,
    box-shadow .28s ease;
}

@media (hover: hover) {
  .aa11-card:hover,
  .aa11-feature:hover,
  .aa11-step:hover,
  .aa11-price:hover,
  .aa11-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(126,231,255,.24);
    background:
      radial-gradient(circle at 18% 0%, rgba(126,231,255,.075), transparent 34%),
      linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.038));
    box-shadow:
      0 30px 90px rgba(0,0,0,.30),
      inset 0 1px 0 rgba(255,255,255,.11);
  }
}

.aa11-logo::before,
.aa11-feature__num {
  animation: aa11-soft-pulse 4.4s ease-in-out infinite;
}

.aa11-reveal {
  opacity: 1;
  transform: none;
  animation: aa11-fade-up .8s ease both;
}

.aa11-float {
  animation: aa11-float 6s ease-in-out infinite;
}


/* =========================================================
   15. KEYFRAMES
========================================================= */

@keyframes aa11-grid-drift {
  from {
    background-position:
      0 0,
      0 0,
      0 0,
      0 0;
  }

  to {
    background-position:
      72px 72px,
      72px 72px,
      288px 288px,
      288px 288px;
  }
}

@keyframes aa11-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes aa11-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes aa11-menu-pop {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(.985);
  }

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

@keyframes aa11-button-shine {
  0% {
    transform: translateX(-130%);
  }

  44% {
    transform: translateX(-130%);
  }

  64% {
    transform: translateX(130%);
  }

  100% {
    transform: translateX(130%);
  }
}

@keyframes aa11-soft-pulse {
  0%,
  100% {
    box-shadow:
      0 12px 34px rgba(216,61,79,.26),
      inset 0 1px 0 rgba(255,255,255,.22);
  }

  50% {
    box-shadow:
      0 16px 42px rgba(216,61,79,.34),
      0 0 28px rgba(126,231,255,.08),
      inset 0 1px 0 rgba(255,255,255,.26);
  }
}

@keyframes aa11-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}


/* =========================================================
   16. RESPONSIVE
========================================================= */

@media screen and (max-width: 1180px) {
  .aa11-nav {
    display: none;
  }

  .aa11-header .aa11-btn {
    display: none;
  }

  .aa11-phone {
    display: none;
  }

  .aa11-mobile-burger {
    display: inline-flex !important;
  }

  .aa11-grid-2 {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

@media screen and (max-width: 760px) {
  html {
    scroll-padding-top: 88px;
  }

  body::before {
    opacity: .62 !important;
  }

  body::after {
    opacity: .72 !important;
    filter: blur(16px) !important;
  }

  .aa11-section {
    padding: 76px 0;
  }

  .aa11-section[id] {
    scroll-margin-top: 96px;
  }

  .aa11-container,
  .aa11-header__inner {
    width: calc(100% - 24px);
  }

  .aa11-header {
    padding: 10px 0;
  }

  .aa11-header__inner {
    min-height: 50px;
    gap: 10px;
  }

  .aa11-logo {
    font-size: 13px;
    letter-spacing: 0;
  }

  .aa11-logo::before {
    width: 31px;
    height: 31px;
    border-radius: 11px;
  }

  .aa11-mobile-burger {
    top: 10px !important;
    right: 12px !important;
    width: 52px !important;
    height: 52px !important;
  }

  .aa11-mobile-panel {
    top: 74px !important;
    right: 12px !important;
    left: 12px !important;
    width: auto !important;
    max-height: calc(100vh - 98px) !important;
    padding: 12px !important;
    border-radius: 24px !important;
  }

  .aa11-mobile-panel a {
    min-height: 46px !important;
    font-size: 15px !important;
  }

  .aa11-hero {
    min-height: auto;
    padding-top: 128px;
    padding-bottom: 76px;
  }

  .aa11-title {
    font-size: clamp(38px, 11.6vw, 50px);
    line-height: .99;
    letter-spacing: -.05em;
  }

  .aa11-subtitle {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.48;
  }

  .aa11-section-title {
    font-size: clamp(30px, 8.8vw, 42px);
    line-height: 1.08;
  }

  .aa11-hero__actions {
    width: 100%;
  }

  .aa11-btn {
    width: 100%;
  }

  .aa11-stats,
  .aa11-grid-3,
  .aa11-grid-4 {
    grid-template-columns: 1fr;
  }

  .aa11-card,
  .aa11-panel,
  .aa11-feature,
  .aa11-step,
  .aa11-price,
  .aa11-stat {
    border-radius: 24px;
  }

  .aa11-panel,
  .aa11-feature,
  .aa11-step,
  .aa11-price {
    padding: 22px;
  }

  .aa11-faq-question {
    min-height: 62px;
    padding: 0 18px;
    font-size: 16px;
  }

  .aa11-faq-answer {
    padding: 0 18px 18px;
  }
}


/* =========================================================
   17. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
