
:root {
  --bg: #101a38;
  --bg-card: #1a1d27;
  --text: #e4e6ef;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #64bb35;
  --accent-rgb: 100,187,53;
  --accent2: #35bbb9;
  --accent2-rgb: 53,187,185;
  --accent3: #c9b040;
  --accent3-rgb: 201,176,64;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Karla', sans-serif;
  --font-heading: 'Karla', sans-serif;
  --bodyBG: #101a38;
  --textColor1: #e4e6ef;
  --textColor2: #111111;
  --textSecondary: #afb3c1;
  --textMuted: #7a8094;
  --secondStyleColor: #64bb35;
  --bgCard: #1a1d27;
  --bgAlt: #212a47;
  --borderSubtle: rgba(255,255,255,0.08);
  --borderRadius: 12px;
  --maxWidthContainer: 1200px;
  --scrollbarBg: rgba(255,255,255,0.1);
  --itemBgColor: transparent;
}

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

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 100vw; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 100vw; }
::-webkit-scrollbar-thumb:hover { background: var(--secondStyleColor); filter: brightness(1.2); }
::-webkit-scrollbar-thumb:active { background: #fff; }
* { scrollbar-width: thin; scrollbar-color: var(--accent) rgba(255,255,255,0.05); }

body {
  font-family: var(--font);
  background: var(--bodyBG);
  color: var(--textColor1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--maxWidthContainer);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; object-position: 50% 20%; }
ul { list-style: none; }
html { scroll-behavior: smooth; }

/* Standardized typography */
section h1 {
  font-size: 48px !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
}
section h2 {
  font-size: 36px !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
}
section h3 {
  font-size: 20px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
}
section h4 {
  font-size: 18px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
}
section p,
section li {
  font-size: 16px !important;
  line-height: 1.7 !important;
}
footer p,
footer li,
footer a {
  font-size: 14px !important;
  line-height: 1.6 !important;
}
footer h3 {
  font-size: 16px !important;
}
@media (max-width: 900px) {
  section h1 {
    font-size: 36px !important;
  }
  section h2 {
    font-size: 28px !important;
  }
}
@media (max-width: 600px) {
  section h1 {
    font-size: 30px !important;
  }
  section h2 {
    font-size: 24px !important;
  }
  section h3 {
    font-size: 18px !important;
  }
  section p,
  section li {
    font-size: 15px !important;
  }
}

/* Heading font */
section h1, section h2, section h3, section h4,
header h1, header h2, header h3, header h4,
footer h3 {
  font-family: var(--font-heading) !important;
}

/* Standardized section spacing */
section {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
header, nav { padding-top: 0 !important; padding-bottom: 0 !important; }
footer {
  padding-top: 40px !important;
  padding-bottom: 24px !important;
}
section.toc {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
.site-disclaimer {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid var(--border);
  padding: 16px 0;
  text-align: center;
}
.site-disclaimer p {
  font-size: 14px !important;
  font-style: italic;
  line-height: 1.5 !important;
  color: var(--textMuted);
  max-width: 800px;
  margin: 0 auto;
}
.toc .swiper-wrapper {
}
@media (max-width: 768px) {
  body > section,
  body > div > section,
  body > section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
}

/* Secondary pages */
.sec-page { padding: 80px 0; min-height: 60vh; }
.page-content { max-width: var(--maxWidthContainer); }
.page-content h1 { font-size: 2rem; font-weight: 700; margin-bottom: 24px; }
.page-content h2 { font-size: 1.3rem; font-weight: 600; margin: 36px 0 12px; color: var(--textColor1); }
.page-content p { margin-bottom: 16px; color: var(--textSecondary); line-height: 1.8; font-size: 0.95rem; }
.page-content a { color: var(--secondStyleColor); text-decoration: underline; }
.page-content a:hover { opacity: 0.8; }

/* Overflow protection — word wrap only, no clipping */
section p,
section li,
section summary {
  overflow-wrap: break-word;
}


  /* ===========================
          HEADER
        =========================== */

  .site-header {
    position: relative;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: var(--bodyBG);
    border-bottom: 1px solid var(--secondStyleColor);
  }
  .site-headerA {
    font-size: 24px;
    font-weight: 900;
    color: var(--textColor1);
  }

  .header-cta {
    padding: 12px 20px;
    color: var(--textColor2);
    font-weight: 500;
    border-radius: var(--borderRadius);
    background-color: var(--secondStyleColor);
  }

  /* layout */

  .site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    gap: 18px;
  }

  /* ===========================
   LOGO
=========================== */

  .logo {
    font-family:
      system-ui,
      -apple-system,
      "SF Pro Text",
      "Segoe UI",
      sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    color: var(--text-main);
  }

  .logo span:first-child {
    background: linear-gradient(120deg, var(--accent-2), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .logo span:last-child {
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  /* ===========================
   NAV DESKTOP
=========================== */

  .nav {
    display: flex;
    gap: 22px;
    align-items: center;
  }

  .header__nav > ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  /* ссылки */

  .nav a,
  .header__nav > ul a {
    position: relative;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.16em;
    padding: 6px 4px;
    text-transform: uppercase;
    transition:
      color 0.2s ease,
      transform 0.15s ease,
      opacity 0.2s ease;
  }

  /* подчёркивание — неоновая линия */

  .nav a::before,
  .header__nav > ul a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-2), var(--accent));
    transform-origin: center;
    transform: scaleX(0);
    transition: transform 0.22s ease;
  }

  .nav a:hover,
  .header__nav > ul a:hover {
    color: var(--text-main);
    transform: translateY(-1px);
  }

  .nav a:hover::before,
  .header__nav > ul a:hover::before {
    transform: scaleX(1);
  }

  /* ===========================
   BURGER BUTTON
=========================== */

  .burger {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid var(--secondStyleColor);
    background: radial-gradient(
      circle at 0 0,
      rgba(77, 243, 255, 0.22),
      transparent 65%
    );
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
  }

  /* три полоски */

  .burger::before,
  .burger::after,
  .burger .icon-left {
    content: "";
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--textColor1);
    transition: all 0.25s ease;
  }

  .burger::before {
    top: 13px;
    transform: translateX(-50%);
  }

  .burger::after {
    bottom: 13px;
    transform: translateX(-50%);
  }

  .burger .icon-left {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .burger.open::before {
    top: 50%;
    transform: translateX(-50%) rotate(45deg);
  }

  .burger.open::after {
    top: 50%;
    bottom: auto;
    transform: translateX(-50%) rotate(-45deg);
  }

  .burger.open .icon-left {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }

  /* icon-right не используется, оставляем выключенным */
  .burger .icon-right {
    display: none;
  }

  /* ===========================
   MOBILE MENU
=========================== */

  .mobile__menu {
    display: none;
  }

  /* off-canvas навигация */

  @media (max-width: 1024px) {
    .header-cta {
      display: none;
    }
    .nav {
      display: none;
    }

    .burger {
      display: flex;
      align-items: center;
      justify-content: center;
      -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    }

    .mobile__menu {
      display: block;
      -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    }

    .header__nav {
      position: fixed;
      inset: 0;
      width: 100vw;
      height: 100dvh;
      background: var(--bodyBG);
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
      z-index: 50;
      transform: translateX(-120%);
      transition: transform 0.35s ease;
      display: flex;
      flex-direction: column;
    }

    .header__nav > ul {
      margin-top: 90px;
      margin-left: 24px;
      flex-direction: column;
      align-items: flex-start;
      gap: 26px;
      height: 80vh;
      overflow-y: auto;
      overflow-x: hidden;
    }

    .header__nav > ul a {
      font-size: 18px;
      color: var(--text-main);
    }

    /* CTA-кнопка в моб.меню */
    .header__nav > a {
      display: inline-block !important;
      margin: auto 24px 36px;
      max-width: 90%;
      text-align: center;
      color: var(--textColor2) !important;
      background: var(--secondStyleColor);
      border-radius: 999px;
      padding: 12px 18px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.18em;
    }

    .navOpen {
      transform: translateX(0%);
    }

    header .btn {
      display: none;
    }
  }

  /* ===========================
   ACCESSIBILITY & MOTION
=========================== */

  .header__nav > ul a:focus-visible,
  .burger:focus-visible {
    outline: 2px solid var(--accent-2);
    outline-offset: 4px;
  }

  @media (prefers-reduced-motion: reduce) {
    .burger,
    .burger * {
      transition: none !important;
    }
    .header__nav {
      transition: none !important;
    }
  }



  /* ===== HERO v1 ===== */
  .hero {
    position: relative;
    width: 100%;
    min-height: 70vh;
    padding: 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bodyBG);
  }

  /* Фоновое изображение */
  .heroBG {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(12px) brightness(0.55);
    transform: scale(1.1);
    z-index: 1;
  }

  /* Контент */
  .hero > .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
  }

  /* Левая колонка */
  .hero h1 {
    font-size: 46px;
    font-weight: 800;
    color: var(--textColor1);
    margin: 0 0 15px 0;
    line-height: 1.15;
  }

  .hero p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--textSecondary);
    margin-bottom: 28px;
    max-width: 520px;
  }

  .hero a {
    display: inline-block;
    background: var(--secondStyleColor);
    color: var(--textColor2);
    padding: 14px 32px;
    border-radius: var(--borderRadius);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
  }

  .hero a:hover {
    opacity: 0.85;
    transform: translateY(-2px);
  }

  /* Справа — второе изображение */
  .hero > .container > img {
    width: 380px;
    height: auto;
    max-height: 70%;
    border-radius: var(--borderRadius);
    object-fit: contain;
  }

  /* ===== Адаптив ===== */
  @media (max-width: 950px) {
    .hero > .container {
      flex-direction: column;
      text-align: center;
    }

    .hero p {
      margin-left: auto;
      margin-right: auto;
    }

    .hero > .container > img {
      width: 300px;
      margin-top: 25px;
    }
  }

  @media (max-width: 600px) {
    .hero {
      padding: 80px 0;
    }

    .hero h1 {
      font-size: 32px;
    }

    .hero p {
      font-size: 15px;
    }

    .hero > .container > img {
      display: none;
    }
  }



  :root {
    --scrollbarBg: rgba(255, 255, 255, 0.1);
    --itemBgColor: transparent;
  }

  .swiper {
    padding-bottom: 10px !important;
  }

  .toc .swiper-slide {
    width: fit-content;
  }

  .toc h2 {
    margin: 0 !important;
    text-align: center;
    color: var(--textColor1);
  }

  .toc {
    background-color: transparent;
  }

  .toc a {
    position: relative;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    white-space: nowrap;
    color: var(--textColor1);
    padding: 10px 24px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    background: color-mix(in srgb, var(--textColor1) 6%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid color-mix(in srgb, var(--textColor1) 10%, transparent);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    overflow: hidden;
  }

  .toc a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--secondStyleColor);
    border-radius: 2px;
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
  }

  .toc a:hover::before,
  .toc a:focus::before {
    transform: translateX(-50%) scaleX(1);
  }

  .toc a::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    background: radial-gradient(
      circle at var(--x, 50%) var(--y, 50%),
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent),
      transparent 70%
    );
    transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .toc a:hover::after,
  .toc a:focus::after {
    opacity: 1;
  }

  .toc a:hover,
  .toc a:focus {
    color: var(--textColor1);
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border-color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    box-shadow: 0 4px 20px color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    transform: translateY(-2px);
  }

  .toc .swiper-wrapper {
    padding-top: 20px;
    padding-bottom: 24px;
  }

  .toc-swiper .swiper-scrollbar {
    background: var(--scrollbarBg);
    height: 4px;
    border-radius: 2px;
  }

  .toc-swiper .swiper-scrollbar-drag {
    background: var(--secondStyleColor);
    border-radius: 2px;
    width: 20%;
  }

  .toc.wrapper {
    margin: 0 auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .toc-swiper {
    max-width: calc(var(--maxWidthContainer) - 40px);
    margin: 0 auto;
  }

  .swiper-horizontal > .swiper-scrollbar,
  .swiper-scrollbar.swiper-scrollbar-horizontal {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
  }

  @media screen and (max-width: 750px) {
    .toc.wrapper {
      margin-left: auto;
    }
    .swiper-horizontal > .swiper-scrollbar,
    .swiper-scrollbar.swiper-scrollbar-horizontal {
      width: 90% !important;
      margin: 0 auto;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .toc a,
    .toc a::before,
    .toc a::after {
      transition: none;
      -webkit-transition: none;
      -moz-transition: none;
      -ms-transition: none;
      -o-transition: none;
    }

    .toc a:hover {
      transform: none;
    }
  }



  .gl9 {
    padding: clamp(60px, 8vw, 100px) 0;
    color: var(--textColor1);
  }

  .gl9__head {
    text-align: center;
    margin-bottom: 44px;
  }

  .gl9__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    margin-bottom: 12px;
  }

  .gl9__head h2 {
    margin: 0;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700;
  }

  .gl9__layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 16px;
    align-items: stretch;
  }

  /* Featured large image */
  .gl9__feature {
    position: relative;
    border-radius: var(--borderRadius);
    overflow: hidden;
    min-height: 420px;
  }

  .gl9__feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .gl9__feature:hover img {
    transform: scale(1.04);
  }

  .gl9__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top,
      color-mix(in srgb, var(--bodyBG) 90%, transparent) 0%,
      transparent 100%);
  }

  .gl9__caption h3 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
  }

  .gl9__caption p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: color-mix(in srgb, var(--textColor1) 65%, transparent);
    max-width: 380px;
  }

  /* Thumbnail stack */
  .gl9__stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .gl9__thumb {
    position: relative;
    border-radius: var(--borderRadius);
    overflow: hidden;
    aspect-ratio: 1;
  }

  .gl9__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .gl9__thumb:hover img {
    transform: scale(1.06);
  }

  .gl9__thumb-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 14px;
    background: linear-gradient(to top,
      color-mix(in srgb, var(--bodyBG) 80%, transparent),
      transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .gl9__thumb:hover .gl9__thumb-label {
    opacity: 1;
  }

  .gl9__thumb-label h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
  }

  @media (max-width: 800px) {
    .gl9__layout {
      grid-template-columns: 1fr;
    }
    .gl9__feature { min-height: 280px; }
    .gl9__thumb-label { opacity: 1; }
  }

  @media (max-width: 600px) {
    .gl9 { padding: 48px 0; }
    .gl9__head { margin-bottom: 32px; }
    .gl9__feature { min-height: 220px; }
    .gl9__stack { gap: 12px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .gl9__feature img, .gl9__thumb img, .gl9__thumb-label { transition: none; }
  }



  /*  */
  .absssss {
    position: relative;
    &&::after {
      position: absolute;
      content: "";
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background-color: var(--secondStyleColor);
      top: 7%;
      left: -15%;
      z-index: -1;
      opacity: 0.1;
    }
  }

  .absssss .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
  .abllllllll {
    display: flex;
    flex-direction: column;
    gap: 20px;
    && a {
      padding: 12px 40px;
      background-color: var(--secondStyleColor);
      width: fit-content;
      border-radius: var(--borderRadius);
      color: var(--bodyBG);
      font-size: 20px;
      transition: 0.2s all linear;
      &&:hover {
        transform: translateY(-2px);
      }
    }
    && p {
      text-wrap: balance;
    }
  }
  .abrrrrrrrrr {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 20px;
    &&::before {
      position: absolute;
      content: "";
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background-color: var(--secondStyleColor);
      bottom: -15%;
      left: -18%;
      opacity: 0.1;
      z-index: -1;
    }
  }
  .abelrrr {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 20px;
    background-color: var(--bodyBG);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: var(--borderRadius);

    && .abiiimgw {
      min-width: 140px;
      max-width: 140px;
      border-radius: 50%;
      width: 140px;
      height: 140px;
      && img {
        width: 100%;
        border-radius: inherit;
        height: 100%;
        object-fit: cover;
      }
    }

    && svg {
      fill: var(--secondStyleColor);
    }
    && p {
      max-width: 90%;
    }
  }
  .abelrrr div {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: fit-content;
    && p:last-child {
      font-style: italic;
    }
  }

  @media (max-width: 800px) {
    .absssss {
      &&::after {
        display: none;
      }
    }
    .absssss .container {
      flex-direction: column;
    }
    .abelrrr {
      flex-direction: column-reverse;
      && .abiiimgw {
        min-width: 60px;
        min-height: 60px;
        width: 60px;
        height: 60px;
      }
    }
    .abelrrr div {
      justify-content: center;
      align-items: center;
      && p {
        text-align: center;
      }
    }
    .abrrrrrrrrr {
      &&::before {
        left: -26%;
        bottom: 12%;
      }
    }
    .abllllllll {
      align-items: center;
      && h2,
      p {
        text-align: center;
      }
    }
  }



  .rm13 {
    padding: clamp(70px, 8vw, 110px) 0;
    color: var(--textColor1);
  }

  .rm13__head {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 60px;
  }

  .rm13__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    margin-bottom: 12px;
  }

  .rm13__head h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .rm13__head p {
    margin: 0;
    line-height: 1.65;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
  }

  /* Timeline */
  .rm13__timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
  }

  /* Central vertical line */
  .rm13__rail {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
    transform: translateX(-50%);
    border-radius: 2px;
  }

  .rm13__rail-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(
      to bottom,
      var(--secondStyleColor),
      var(--accent2)
    );
    border-radius: 2px;
    transition: height 0.1s linear;
    z-index: 1;
    box-shadow: 0 0 14px color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  /* Milestone row */
  .rm13__milestone {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    width: 100%;
  }

  .rm13__milestone:nth-child(odd) {
    flex-direction: row-reverse;
  }

  .rm13__milestone:last-child {
    margin-bottom: 0;
  }

  /* Dot on rail */
  .rm13__dot {
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bodyBG);
    border: 3px solid var(--secondStyleColor);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--secondStyleColor);
    z-index: 3;
    transition: all 0.5s ease;
  }

  .rm13__dot--done {
    border-color: var(--secondStyleColor);
    color: var(--secondStyleColor);
    background: var(--bodyBG);
  }

  .rm13__dot--active {
    border-color: var(--accent2);
    color: var(--accent2);
    box-shadow: 0 0 20px color-mix(in srgb, var(--accent2) 30%, transparent);
    animation: rm13DotPulse 2s ease-in-out infinite;
  }

  .rm13__dot--empty {
    border-color: color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
    color: color-mix(in srgb, var(--textColor1) 35%, transparent);
  }

  @keyframes rm13DotPulse {
    0%, 100% { box-shadow: 0 0 20px color-mix(in srgb, var(--accent2) 30%, transparent); }
    50% { box-shadow: 0 0 30px color-mix(in srgb, var(--accent2) 50%, transparent); }
  }

  /* Branch line from dot to card */
  .rm13__branch {
    position: absolute;
    top: 30px;
    width: 40px;
    height: 2px;
    background: linear-gradient(
      90deg,
      var(--secondStyleColor),
      var(--accent2)
    );
    z-index: 2;
  }

  .rm13__milestone:nth-child(odd) .rm13__branch {
    right: calc(50% + 22px);
  }

  .rm13__milestone:nth-child(even) .rm13__branch {
    left: calc(50% + 22px);
  }

  /* Card */
  .rm13__card {
    width: calc(50% - 60px);
    background: var(--bgCard);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border-radius: var(--borderRadius);
    padding: 26px;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .rm13__milestone:nth-child(odd) .rm13__card {
    margin-right: auto;
    transform: translateX(-30px);
  }

  .rm13__milestone:nth-child(even) .rm13__card {
    margin-left: auto;
    transform: translateX(30px);
  }

  .rm13__card.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .rm13__card:hover {
    border-color: color-mix(in srgb, var(--accent2) 30%, transparent);
    box-shadow: 0 8px 30px color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
  }

  .rm13__card h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    color: var(--secondStyleColor);
  }

  .rm13__date {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent2);
    margin-bottom: 12px;
  }

  .rm13__desc {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
  }

  .rm13__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    margin: 0;
  }

  .rm13__list li {
    font-size: 13px;
    line-height: 1.5;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    padding-left: 20px;
    position: relative;
  }

  .rm13__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(
      135deg,
      var(--secondStyleColor),
      var(--accent2)
    );
  }

  /* Responsive */
  @media (max-width: 950px) {
    .rm13__card {
      width: calc(50% - 50px);
      padding: 22px;
    }
  }

  @media (max-width: 768px) {
    .rm13__rail,
    .rm13__rail-fill {
      left: 24px;
      transform: none;
    }

    .rm13__milestone,
    .rm13__milestone:nth-child(odd) {
      flex-direction: column;
      padding-left: 60px;
    }

    .rm13__dot {
      left: 24px;
      top: 0;
    }

    .rm13__branch {
      display: none;
    }

    .rm13__card,
    .rm13__milestone:nth-child(odd) .rm13__card,
    .rm13__milestone:nth-child(even) .rm13__card {
      width: 100%;
      margin: 20px 0 0;
      transform: translateY(20px);
    }

    .rm13__card.visible {
      transform: translateY(0);
    }
  }

  @media (max-width: 600px) {
    .rm13 {
      padding: 50px 0;
    }

    .rm13__head {
      margin-bottom: 40px;
    }

    .rm13__head h2 {
      font-size: 24px;
    }

    .rm13__milestone {
      margin-bottom: 40px;
    }

    .rm13__card {
      padding: 18px;
    }

    .rm13__card h3 {
      font-size: 16px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .rm13__card {
      transition: none;
      opacity: 1;
      transform: none;
    }

    .rm13__dot--active {
      animation: none;
    }

    .rm13__rail-fill {
      transition: none;
    }

    .rm13__dot {
      transition: none;
    }
  }



.ab24{
  position:relative;
  padding:8rem 2rem;
  overflow:hidden;
  background:var(--bodyBG);
}

.ab24__mesh{
  position:absolute;inset:0;z-index:0;
  pointer-events:none;
  filter:blur(100px);
  opacity:.35;
}
.ab24__mesh span{
  position:absolute;border-radius:50%;
  animation:ab24Drift 20s ease-in-out infinite alternate;
}
.ab24__mesh span:nth-child(1){
  width:45vw;height:45vw;top:-10%;left:-5%;
  background:radial-gradient(circle,var(--secondStyleColor),transparent 70%);
}
.ab24__mesh span:nth-child(2){
  width:35vw;height:35vw;bottom:-5%;right:5%;
  background:radial-gradient(circle,var(--accent2),transparent 70%);
  animation-delay:-7s;animation-duration:25s;
}
.ab24__mesh span:nth-child(3){
  width:25vw;height:25vw;top:40%;right:25%;
  background:radial-gradient(circle,var(--accent3),transparent 70%);
  animation-delay:-14s;animation-duration:22s;
}
@keyframes ab24Drift{
  0%{transform:translate(0,0) scale(1)}
  50%{transform:translate(5vw,-5vh) scale(1.2)}
  100%{transform:translate(-3vw,4vh) scale(.95)}
}

.ab24__container{
  max-width:var(--maxWidthContainer);
  position:relative;z-index:1;
}

.ab24__header{
  text-align:center;
  margin-bottom:5rem;
}
.ab24__tag{
  display:inline-block;
  padding:.35rem 1rem;
  border:1px solid color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  border-radius:4px;
  font-size:.65rem;font-weight:700;
  letter-spacing:.2em;text-transform:uppercase;
  color:var(--secondStyleColor);
  margin-bottom:1.5rem;
  animation:ab24FadeUp .6s ease both;
}
.ab24 h2{
  line-height:1.2;
  margin-bottom:1.2rem;
  color:var(--textColor1);
  animation:ab24FadeUp .6s ease .1s both;
}
.ab24 h2 em{font-style:italic;color:var(--secondStyleColor)}
.ab24__subtitle{
  font-size:.85rem;font-weight:400;
  color:color-mix(in srgb, var(--textColor1) 40%, transparent);
  max-width:500px;margin:0 auto;
  line-height:1.7;
  animation:ab24FadeUp .6s ease .2s both;
}

.ab24__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
}

.ab24__card{
  position:relative;
  background:color-mix(in srgb, var(--textColor1) 3%, transparent);
  backdrop-filter:blur(20px);
  border:1px solid color-mix(in srgb, var(--textColor1) 6%, transparent);
  border-radius:var(--borderRadius);
  padding:2.5rem 2rem;
  overflow:hidden;
  transition:all .4s cubic-bezier(.4,0,.2,1);
  opacity:0;transform:translateY(30px);
}
.ab24__card.visible{
  opacity:1;transform:translateY(0);
}
.ab24__card:hover{
  transform:translateY(-6px);
  border-color:color-mix(in srgb, var(--textColor1) 12%, transparent);
  box-shadow:0 20px 60px rgba(0,0,0,.3);
}
.ab24__card::before{
  content:'';position:absolute;
  top:0;left:0;right:0;height:2px;
  opacity:0;
  transition:opacity .3s;
}
.ab24__card:hover::before{opacity:1}
.ab24__card:nth-child(1)::before{background:linear-gradient(90deg,var(--secondStyleColor),transparent)}
.ab24__card:nth-child(2)::before{background:linear-gradient(90deg,var(--accent2),transparent)}
.ab24__card:nth-child(3)::before{background:linear-gradient(90deg,var(--accent3),transparent)}

.ab24__card-icon{
  width:48px;height:48px;
  display:flex;align-items:center;justify-content:center;
  border-radius:12px;
  font-size:1.2rem;
  margin-bottom:1.5rem;
}
.ab24__card:nth-child(1) .ab24__card-icon{
  background:rgba(var(--accent-rgb),.12);color:var(--secondStyleColor);
}
.ab24__card:nth-child(2) .ab24__card-icon{
  background:rgba(var(--accent2-rgb),.12);color:var(--accent2);
}
.ab24__card:nth-child(3) .ab24__card-icon{
  background:rgba(var(--accent3-rgb),.12);color:var(--accent3);
}

.ab24__card-title{
  color:var(--textColor1);
  margin-bottom:.8rem;
}
.ab24__card-text{
  font-size:.8rem;font-weight:400;
  line-height:1.8;
  color:color-mix(in srgb, var(--textColor1) 45%, transparent);
  margin-bottom:1.5rem;
}

.ab24__card-stat{
  display:flex;align-items:baseline;gap:.5rem;
  padding-top:1rem;
  border-top:1px solid color-mix(in srgb, var(--textColor1) 6%, transparent);
}
.ab24__card-stat-value{
  font-size:1.8rem;font-weight:700;
  color:var(--textColor1);
}
.ab24__card-stat-label{
  font-size:.65rem;
  letter-spacing:.1em;text-transform:uppercase;
  color:color-mix(in srgb, var(--textColor1) 35%, transparent);
}

.ab24__bottom{
  text-align:center;
  margin-top:4rem;
  animation:ab24FadeUp .6s ease .5s both;
}
.ab24__bottom-text{
  font-size:.8rem;
  color:color-mix(in srgb, var(--textColor1) 35%, transparent);
  margin-bottom:1.5rem;
}
.ab24__btn{
  display:inline-flex;align-items:center;gap:.6rem;
  padding:.8rem 2rem;
  font-size:.8rem;font-weight:700;
  text-decoration:none;cursor:pointer;border:none;
  background:var(--secondStyleColor);color:var(--textColor2);
  border-radius:8px;
  transition:all .3s ease;
}
.ab24__btn:hover{
  box-shadow:0 8px 30px rgba(var(--accent-rgb),.3);
  transform:translateY(-2px);
}

@keyframes ab24FadeUp{
  from{opacity:0;transform:translateY(25px)}
  to{opacity:1;transform:translateY(0)}
}

@media(max-width:768px){
  .ab24__grid{grid-template-columns:1fr}
  .ab24{padding:5rem 1.5rem}
}

@media(prefers-reduced-motion:reduce){
  .ab24__card,
  .ab24__mesh span,
  .ab24__tag,
  .ab24 h2,
  .ab24__subtitle,
  .ab24__bottom{animation:none!important;opacity:1;transform:none;transition:none}
}



  /* ===== FEATURES v16 — Magazine editorial with SVG wave dividers ===== */

  .ft16 {
    padding: clamp(70px, 8vw, 110px) 0;
    color: var(--textColor1);
  }

  .ft16__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
  }

  .ft16__head h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .ft16__head p {
    margin: 0;
    line-height: 1.65;
    color: color-mix(in srgb, var(--textColor1) 68%, transparent);
  }

  /* Blocks */
  .ft16__block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
  }

  .ft16__block--rev {
    direction: rtl;
  }

  .ft16__block--rev > * {
    direction: ltr;
  }

  /* Media */
  .ft16__media {
    border-radius: calc(var(--borderRadius) * 1.2);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  }

  .ft16__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
  }

  .ft16__block:hover .ft16__media img {
    transform: scale(1.04);
  }

  /* Text */
  .ft16__text {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .ft16__label {
    display: inline-block;
    width: fit-content;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
  }

  .ft16__text h3 {
    margin: 0;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  .ft16__text > p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 72%, transparent);
  }

  .ft16__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
  }

  .ft16__tags span {
    padding: 6px 14px;
    border-radius: var(--borderRadius);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    font-weight: 500;
    color: color-mix(in srgb, var(--textColor1) 75%, transparent);
    transition: border-color 0.25s ease, color 0.25s ease;
  }

  .ft16__block:hover .ft16__tags span {
    border-color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    color: var(--textColor1);
  }

  /* SVG wave divider */
  .ft16__wave {
    display: block;
    width: 100%;
    height: 40px;
    margin: 50px 0;
    color: color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  /* Responsive */
  @media (max-width: 950px) {
    .ft16__block {
      gap: 30px;
    }

    .ft16__text h3 {
      font-size: 20px;
    }
  }

  @media (max-width: 800px) {
    .ft16__block,
    .ft16__block--rev {
      grid-template-columns: 1fr;
      direction: ltr;
    }

    .ft16__media {
      aspect-ratio: 16 / 9;
    }

    .ft16__wave {
      margin: 36px 0;
    }

    .ft16__text > p {
      font-size: 14px;
    }
  }

  @media (max-width: 600px) {
    .ft16 {
      padding: 50px 0;
    }

    .ft16__head {
      margin-bottom: 40px;
    }

    .ft16__head h2 {
      font-size: 24px;
    }

    .ft16__wave {
      margin: 28px 0;
      height: 30px;
    }

    .ft16__tags span {
      font-size: 11px;
      padding: 5px 12px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ft16__media img,
    .ft16__tags span {
      transition: none;
    }
  }



  .mN2__ .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .headnMMMM2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    && h2 {
      text-align: center;
    }
    && p {
      text-align: center;
      text-wrap: balance;
    }
    && span {
      width: 10%;
      height: 2px;
      border-radius: var(--borderRadius);
      background-color: var(--secondStyleColor);
    }
  }

  /* HERO */
  .x9Qp1 {
    /* hero */
    position: relative;
    height: 120px;
    background: linear-gradient(326deg, var(--h1) 0%, var(--h2) 74%);
    display: grid;
    place-items: center;
    text-align: center;
  }
  .kZ_7m {
    /* hero cta wrapper */
    position: absolute;
    inset: 0;
    height: 200px;
    display: grid;
    place-items: center;
    pointer-events: none;
  }
  .kZ_7m span {
    pointer-events: auto;
    display: inline-block;
    background: var(--secondStyleColor);
    color: var(--textColor2);
    font-size: 15px;
    height: 44px;
    line-height: 24px;
    padding: 10px 28px;
    border-radius: 999px;
    position: relative;
    transition:
      transform 0.2s ease,
      padding 0.2s ease;
  }
  .kZ_7m span::after {
    content: "";
    position: absolute;
    inset: -14px;
    border: 12px solid var(--secondStyleColor);
    border-radius: 999px;
    opacity: 0.95;
  }
  .kZ_7m span:hover {
    transform: translateY(-1px);
    padding-left: 40px;
    padding-right: 40px;
  }
  .wA_vv {
    /* wave */
    position: absolute;
    left: 0;
    right: 0;
    bottom: -67px;
    height: 188px;
    background: url("https://1.bp.blogspot.com/-NYl6L8pz8B4/XoIVXwfhlNI/AAAAAAAAU3k/nxJKiLT706Mb7jUFiM5vdCsOSNnFAh0yQCLcBGAsYHQ/s1600/hero-wave.png")
      repeat-x;
    animation: ZzWv9 10s cubic-bezier(0.44, 0.66, 0.67, 0.37) infinite;
    z-index: 1;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.08));
  }
  @keyframes ZzWv9 {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 1440px 0;
    }
  }

  .gR1dX {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 54px;
    align-items: stretch;
  }
  @media (max-width: 980px) {
    .gR1dX {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (max-width: 640px) {
    .gR1dX {
      grid-template-columns: 1fr;
      gap: 44px;
    }
  }

  /* CARD */
  .bL0pA {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
  }
  .iNn3r {
    position: relative;
    height: 100%;
    padding: 60px 30px 60px;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    overflow: visible;
    transition: transform 0.2s ease;
  }
  /* TITLE PILL */
  .t1Tl3 {
    margin: 0 0 22px;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .t1Tl3 > span {
    color: var(--bodyBG);
    display: inline-block;
    padding: 10px 20px 10px 28px;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    position: relative;
  }
  .t1Tl3 > span > b {
    position: absolute;
    top: -3px;
    left: -30px;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background: var(--secondStyleColor);
    display: grid;
    color: var(--bodyBG);
    place-items: center;
    font-weight: 700;
    font-size: 20px;
    box-shadow:
      15px 15px 30px rgba(80, 80, 80, 0.2),
      5px 0 80px rgba(80, 80, 80, 0.15);
  }

  .xCrpT {
    margin: 0;
    padding: 0 18px;
    text-align: center;
    position: relative;
    z-index: 2;
    color: var(--textColor2);
  }

  /* RIPPLE DOT */
  .d0Tt0 {
    position: absolute;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background: var(--textColor1);
    box-shadow:
      5px 5px 10px rgba(163, 177, 198, 0.6),
      -5px -5px 10px rgba(255, 255, 255, 0.5);
  }
  .d0Tt0::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    animation: rrPpL 0.7s linear infinite;
    box-shadow:
      0 0 0 0 rgba(163, 177, 198, 0.3),
      0 0 0 1em rgba(163, 177, 198, 0.3),
      0 0 0 3em rgba(163, 177, 198, 0.03),
      0 0 0 5em rgba(163, 177, 198, 0.01);
  }
  @keyframes rrPpL {
    0% {
      box-shadow:
        0 0 0 0 rgba(163, 177, 198, 0.3),
        0 0 0 1em rgba(163, 177, 198, 0.3),
        0 0 0 3em rgba(163, 177, 198, 0.03),
        0 0 0 5em rgba(163, 177, 198, 0.01);
    }
    100% {
      box-shadow:
        0 0 0 1em rgba(163, 177, 198, 0.3),
        0 0 0 3em rgba(163, 177, 198, 0.03),
        0 0 0 5em rgba(163, 177, 198, 0.03),
        0 0 0 8em rgba(163, 177, 198, 0.01);
    }
  }

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



  /* ===== SOMETHING v15 — Coming soon countdown with SVG grid bg + image ===== */

  .sm15 {
    position: relative;
    padding: clamp(80px, 9vw, 130px) 0;
    color: var(--textColor1);
    overflow: hidden;
  }

  .sm15__img {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  .sm15__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
  }

  .sm15__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: color-mix(in srgb, var(--secondStyleColor) 5%, transparent);
    z-index: 1;
    pointer-events: none;
  }

  .sm15 .container {
    position: relative;
    z-index: 2;
  }

  .sm15__block {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .sm15__kicker {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    color: var(--secondStyleColor);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .sm15__block h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }

  .sm15__block > p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 68%, transparent);
    max-width: 480px;
  }

  /* Timer */
  .sm15__timer {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 12px 0;
  }

  .sm15__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .sm15__box {
    width: clamp(60px, 10vw, 80px);
    height: clamp(60px, 10vw, 80px);
    border-radius: var(--borderRadius);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    background: linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.01)
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sm15__box span {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 800;
    color: var(--secondStyleColor);
    font-variant-numeric: tabular-nums;
  }

  .sm15__box--pulse {
    animation: sm15Pulse 1s ease-in-out infinite alternate;
  }

  @keyframes sm15Pulse {
    0% {
      border-color: color-mix(
        in srgb,
        var(--secondStyleColor) 16%,
        transparent
      );
    }
    100% {
      border-color: color-mix(
        in srgb,
        var(--secondStyleColor) 50%,
        transparent
      );
    }
  }

  .sm15__unit small {
    font-size: 11px;
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
  }

  .sm15__sep {
    font-size: 32px;
    font-weight: 700;
    color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    line-height: clamp(60px, 10vw, 80px);
  }

  /* Actions */
  .sm15__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 6px;
  }

  .sm15__btn {
    padding: 12px 28px;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .sm15__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  .sm15__link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .sm15__link:hover {
    color: var(--secondStyleColor);
  }

  .sm15__link i {
    font-size: 12px;
    transition: transform 0.2s ease;
  }

  .sm15__link:hover i {
    transform: translateX(3px);
  }

  /* Responsive */
  @media (max-width: 800px) {
    .sm15__block h2 {
      font-size: 28px;
    }
  }

  @media (max-width: 600px) {
    .sm15 {
      padding: 50px 0;
    }

    .sm15__timer {
      gap: 4px;
    }

    .sm15__sep {
      font-size: 24px;
    }

    .sm15__block h2 {
      font-size: 24px;
    }

    .sm15__actions {
      flex-direction: column;
      gap: 14px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .sm15__box--pulse {
      animation: none;
    }

    .sm15__btn,
    .sm15__link,
    .sm15__link i {
      transition: none;
    }
  }



  /* ===========================
     FAQ 11 — Orbital Cards
     Floating cards + orbiting dots + gradient blobs
     =========================== */

  .faq11 {
    position: relative;
    padding: clamp(56px, 6vw, 100px) 0;
    overflow: hidden;
    color: var(--textColor1);
    background: var(--bodyBG);
  }

  /* Animated gradient blobs */
  .faq11__blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
    will-change: transform;
  }

  .faq11__blob--1 {
    width: 500px;
    height: 500px;
    background: var(--secondStyleColor);
    opacity: 0.07;
    top: -120px;
    left: -80px;
    animation: faq11-drift1 25s ease-in-out infinite;
  }

  .faq11__blob--2 {
    width: 400px;
    height: 400px;
    background: var(--secondStyleColor);
    opacity: 0.05;
    bottom: -100px;
    right: -60px;
    animation: faq11-drift2 30s ease-in-out infinite;
  }

  .faq11__blob--3 {
    width: 300px;
    height: 300px;
    background: var(--secondStyleColor);
    opacity: 0.04;
    top: 40%;
    left: 50%;
    animation: faq11-drift3 20s ease-in-out infinite;
  }

  @keyframes faq11-drift1 {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    33% {
      transform: translate(60px, 40px) scale(1.1);
    }
    66% {
      transform: translate(-30px, 70px) scale(0.95);
    }
  }

  @keyframes faq11-drift2 {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    33% {
      transform: translate(-50px, -30px) scale(1.08);
    }
    66% {
      transform: translate(40px, -60px) scale(0.92);
    }
  }

  @keyframes faq11-drift3 {
    0%,
    100% {
      transform: translate(-50%, 0) scale(1);
    }
    50% {
      transform: translate(-50%, -40px) scale(1.15);
    }
  }

  /* SVG decorative layer */
  .faq11__deco {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }

  /* Header */
  .faq11__head {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    margin-bottom: 48px;
    text-align: center;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq11__eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
  }

  .faq11__title {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
  }

  .faq11__sub {
    margin: 0;
    color: var(--textColor1);
    line-height: 1.55;
  }

  /* Grid */
  .faq11__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
  }

  /* Card */
  .faq11__card {
    position: relative;
    padding: 32px 28px 28px;
    border-radius: var(--borderRadius);
    background: linear-gradient(
      160deg,
      color-mix(in srgb, var(--secondStyleColor) 6%, transparent) 0%,
      color-mix(in srgb, var(--bodyBG) 90%, transparent) 50%,
      color-mix(in srgb, var(--secondStyleColor) 3%, transparent) 100%
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    transition:
      transform 0.5s cubic-bezier(0.33, 1, 0.53, 1),
      border-color 0.4s ease,
      box-shadow 0.5s ease;
    animation: faq11-float 7s ease-in-out infinite;
    animation-delay: var(--float-delay);
    will-change: transform;
  }

  .faq11__card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
    box-shadow:
      0 8px 32px color-mix(in srgb, var(--secondStyleColor) 12%, transparent),
      0 0 0 1px color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
  }

  @keyframes faq11-float {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
  }

  .faq11__card:hover {
    animation-play-state: paused;
  }

  /* Orbit ring + number */
  .faq11__orbit {
    position: relative;
    width: 62px;
    height: 62px;
    margin-bottom: 20px;
  }

  .faq11__ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .faq11__dot {
    transform-origin: 35px 35px;
    animation: faq11-orbit var(--orbit-dur) linear infinite;
    animation-direction: var(--orbit-dir);
    transition: filter 0.3s ease;
  }

  .faq11__card:hover .faq11__dot {
    animation-duration: 2s;
    filter: drop-shadow(0 0 4px var(--secondStyleColor));
  }

  @keyframes faq11-orbit {
    to {
      transform: rotate(360deg);
    }
  }

  .faq11__num {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--secondStyleColor);
  }

  /* Question */
  .faq11__question {
    margin: 0 0 10px;
    font-size: clamp(15px, 2vw, 17px);
    font-weight: 600;
    line-height: 1.35;
  }

  /* Answer */
  .faq11__answer {
    margin: 0;
    color: var(--textColor1);
    line-height: 1.6;
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }

  .faq11__card:hover .faq11__answer {
    opacity: 1;
  }

  /* Decorative line at card bottom */
  .faq11__card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 28px;
    right: 28px;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent) 50%,
      transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .faq11__card:hover::after {
    opacity: 1;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .faq11__blob {
      animation: none !important;
    }
    .faq11__card {
      animation: none !important;
      transition: none !important;
    }
    .faq11__dot {
      animation: none !important;
    }
    .faq11__deco * {
      animation: none !important;
    }
  }

  /* Responsive — tablets */
  @media (max-width: 950px) {
    .faq11__grid {
      gap: 16px;
    }
    .faq11__card {
      padding: 28px 24px 24px;
    }
  }

  /* Responsive — small tablets */
  @media (max-width: 800px) {
    .faq11__grid {
      grid-template-columns: 1fr;
      max-width: 520px;
    }
  }

  /* Responsive — mobile */
  @media (max-width: 600px) {
    .faq11__card {
      padding: 24px 20px 20px;
    }
    .faq11__orbit {
      width: 54px;
      height: 54px;
      margin-bottom: 16px;
    }
    .faq11__num {
      font-size: 13px;
    }
  }



  .ft5 {
    position: relative;
    padding: 0 0 20px;
    color: var(--textColor1);
  }

  .ft5__accent {
    height: 3px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      var(--secondStyleColor) 30%,
      var(--secondStyleColor) 70%,
      transparent 100%
    );
    margin-bottom: 32px;
  }

  .ft5__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    padding-bottom: 24px;
  }

  .ft5__brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .ft5__logo {
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 700;
  }

  .ft5__social {
    display: flex;
    gap: 12px;
  }

  .ft5__social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--borderRadius);
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    color: var(--textColor1);
    text-decoration: none;
    font-size: 15px;
    transition:
      background 0.2s ease,
      color 0.2s ease,
      transform 0.2s ease;
  }

  .ft5__social a:hover {
    background: color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    color: var(--secondStyleColor);
    transform: translateY(-2px);
  }

  .ft5__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-end;
    row-gap: 8px;
  }

  .ft5__nav a {
    padding: 6px 16px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--textColor1) 20%, transparent);
    color: var(--textColor1);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition:
      border-color 0.2s ease,
      color 0.2s ease,
      background 0.2s ease;
  }

  .ft5__nav a:hover {
    border-color: var(--secondStyleColor);
    color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
  }

  .ft5__bottom {
    border-top: 1px solid color-mix(in srgb, var(--textColor2) 12%, transparent);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

  .ft5__copy {
    font-size: 13px;
    color: var(--textColor1);
    margin: 0;
  }

  .ft5__email {
    font-size: 13px;
    color: var(--textColor1);
    margin: 0;
  }

  @media (max-width: 950px) {
    .ft5__top {
      flex-direction: column;
      gap: 24px;
    }

    .ft5__nav {
      justify-content: flex-start;
    }
  }

  @media (max-width: 800px) {
    .ft5__bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
  }

  @media (max-width: 600px) {
    .ft5__accent {
      margin-bottom: 24px;
    }

    .ft5__nav {
      gap: 6px;
    }

    .ft5__nav a {
      padding: 5px 12px;
      font-size: 12px;
    }

    .ft5__social a {
      width: 32px;
      height: 32px;
      font-size: 14px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ft5__social a,
    .ft5__nav a {
      transition: none;
    }
  }



[data-aos]{opacity:0;transition:opacity 0.6s ease,transform 0.6s ease}
[data-aos="fade-up"]{transform:translateY(30px)}
[data-aos="fade-in"]{transform:none}
[data-aos="slide-left"]{transform:translateX(-30px)}
[data-aos="slide-right"]{transform:translateX(30px)}
[data-aos].aos-visible{opacity:1;transform:none}