
:root {
  --bg: #0d1b2a;
  --bg-card: #1b2838;
  --text: #e0fbfc;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #00b4d8;
  --accent-rgb: 0,180,216;
  --accent2: #6c00d8;
  --accent2-rgb: 108,0,216;
  --accent3: #00f251;
  --accent3-rgb: 0,242,81;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Roboto', sans-serif;
  --font-heading: 'Roboto', sans-serif;
  --bodyBG: #0d1b2a;
  --textColor1: #e0fbfc;
  --textColor2: #111111;
  --textSecondary: #abc3c8;
  --textMuted: #778b93;
  --secondStyleColor: #00b4d8;
  --bgCard: #1b2838;
  --bgAlt: #1e2d3b;
  --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 */
  .header {
    background-color: var(--secondStyleColor);
    color: var(--textColor2);
  }
  .headerWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }

  .nav {
  }
  .ham {
    display: none;
  }

  .nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding-left: 0;
    margin: 0;
  }

  .nav li {
    list-style: none;
  }

  .nav a {
    color: var(--textColor2);
    text-decoration: none;
    transition: 0.2s all linear;
    -webkit-transition: 0.2s all linear;
    -moz-transition: 0.2s all linear;
    -ms-transition: 0.2s all linear;
    -o-transition: 0.2s all linear;
    position: relative;
    font-weight: 600;
  }

  .nav a::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background-color: var(--textColor2);
    transition: 0.2s all linear;
  }

  .nav a:hover::after {
    width: 100%;
  }

  .stopScroll {
    overflow: hidden;
  }
  .logo {
    position: relative;
    z-index: 1000;
    font-weight: 800;
    font-size: 24px;
    color: var(--textColor2);
    text-decoration: none;
  }

  @media screen and (max-width: 800px) {
    .headerWrapper {
      padding: 0 20px;
    }
    .nav {
      position: fixed;
      inset: 0;
      background-color: var(--bodyBG);
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100vw;
      height: 100vh;
      z-index: 999;
      transform: translateX(100%);
      -webkit-transform: translateX(100%);
      -moz-transform: translateX(100%);
      -ms-transform: translateX(100%);
      -o-transform: translateX(100%);
      transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -webkit-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -moz-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -ms-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
      -o-transition: 0.3s all cubic-bezier(0.23, 1, 0.32, 1);
    }
    .nav.active {
      transform: translateX(0);
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      -o-transform: translateX(0);
    }
    .header:has(.nav.active) .logo {
      color: var(--textColor1);
    }
    .header:has(.nav.active) .nav a {
      color: var(--textColor1);
    }
    .nav ul {
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .ham {
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
      transition: transform 400ms;
      -moz-user-select: none;
      -webkit-user-select: none;
      -ms-user-select: none;
      user-select: none;
      display: flex;
      z-index: 1000;
    }
    .hamRotate.active {
      transform: rotate(45deg);
    }
    .hamRotate180.active {
      transform: rotate(180deg);
    }
    .line {
      fill: none;
      transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
      stroke: var(--textColor2);
      stroke-width: 5.5;
      stroke-linecap: round;
    }
    .header:has(.nav.active) .line {
      stroke: var(--textColor1);
    }
    .ham7 .top {
      stroke-dasharray: 40 82;
    }
    .ham7 .middle {
      stroke-dasharray: 40 111;
    }
    .ham7 .bottom {
      stroke-dasharray: 40 161;
    }
    .ham7.active .top {
      stroke-dasharray: 17 82;
      stroke-dashoffset: -62px;
    }
    .ham7.active .middle {
      stroke-dashoffset: 23px;
    }
    .ham7.active .bottom {
      stroke-dashoffset: -83px;
    }
    .ham8 .top {
      stroke-dasharray: 40 160;
    }
  }



  /*  */
  .uergv {
    min-height: 700px;
    height: 700px;
    max-height: 700px;
    display: flex;
    align-items: center;
    background-color: color-mix(
      in srgb,
      var(--secondStyleColor) 5%,
      transparent
    );
    position: relative;
    &&:after {
      content: "";
      position: absolute;
      right: 16%;
      width: calc(var(--maxWidthContainer) / 1.5);
      height: 600px;
      z-index: 1;
      border-radius: var(--borderRadius);
      background: radial-gradient(
        80% 60% at 30% 20%,
        color-mix(in srgb, var(--secondStyleColor) 15%, transparent),
        transparent 60%
      );
      box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }
  }
  .uergv .container {
    display: flex;
    position: relative;
    z-index: 2;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }

  .utuii-img-wrap {
    width: 900px;
    border-radius: var(--borderRadius);
    height: 400px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    && img {
      width: 100%;
      height: 100%;
      border-radius: var(--borderRadius);
      object-fit: cover;
      object-position: 50% 20%;
    }
  }
  .rwhFL-RIG-CON {
    display: flex;
    flex-direction: column;
    gap: 40px;
    color: var(--textColor1);
    && h1 {
      text-transform: uppercase;
      line-height: 1;
      font-weight: 900;
    }
    && p {
      text-wrap: balance;
    }
    && a {
      color: var(--textColor1);
      width: fit-content;
      font-size: 24px;
      border-bottom: 2px solid var(--textColor1);
      padding-bottom: 8px;
      transition: 0.2s all linear;
      &&:hover {
        letter-spacing: 2px;
      }
    }
  }
  @media (max-width: 800px) {
    .uergv {
      max-height: none;
      height: auto;
    }
    .uergv .container {
      flex-direction: column-reverse;
    }
    .utuii-img-wrap {
      width: 100%;
      height: 300px;
    }
    .uergv {
      &&:after {
        display: none;
      }
    }
    .rwhFL-RIG-CON {
      align-items: center;
      && h1 {
        color: var(--textColor1);
        font-size: 50px;
        text-align: center;
      }
      && p {
        color: var(--textColor1);
        text-align: center;
      }
      && a {
        color: var(--textColor1);
        border-color: var(--textColor1);
      }
    }
  }



  :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: color-mix(in srgb, var(--textColor1) 65%, transparent);
    padding: 10px 24px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    background-color: var(--itemBgColor);
    border: none;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
  }

  .toc a::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 24px;
    right: 24px;
    height: 2px;
    background: var(--secondStyleColor);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .toc a:hover,
  .toc a:focus {
    color: var(--textColor1);
  }

  .toc a:hover::after,
  .toc a:focus::after {
    transform: scaleX(1);
  }

  .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::after {
      transition: none;
      -webkit-transition: none;
      -moz-transition: none;
      -ms-transition: none;
      -o-transition: none;
    }
  }



  /* ===== ABOUT v15 — Hero image with overlay + SVG hatch bg + feature row ===== */

  .ab15 {
    position: relative;
    padding: clamp(70px, 8vw, 110px) 0;
    color: var(--textColor1);
    overflow: hidden;
  }

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

  .ab15 .container {
    position: relative;
    z-index: 1;
  }

  /* Hero */
  .ab15__hero {
    position: relative;
    border-radius: calc(var(--borderRadius) * 1.4);
    overflow: hidden;
    aspect-ratio: 21 / 9;
    margin-bottom: 50px;
  }

  .ab15__hero-img {
    position: absolute;
    inset: 0;
  }

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

  .ab15__hero:hover .ab15__hero-img img {
    transform: scale(1.03);
  }

  .ab15__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(24px, 4vw, 48px);
    gap: 10px;
  }

  .ab15__kicker {
    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;
    background: color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .ab15__hero h2 {
    margin: 0;
    font-size: clamp(24px, 3.8vw, 44px);
    font-weight: 700;
    letter-spacing: -0.02em;
    max-width: 600px;
    line-height: 1.15;
    color: var(--textColor1);
  }

  /* Body */
  .ab15__body {
    max-width: 960px;
    margin: 0 auto;
  }

  .ab15__desc {
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 72%, transparent);
    max-width: 680px;
    margin: 0 auto 48px;
  }

  /* Feature row */
  .ab15__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .ab15__feat {
    text-align: center;
    padding: 24px 16px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255, 255, 255, 0.025);
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

  .ab15__feat:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
  }

  .ab15__feat-ico {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: transform 0.3s ease;
  }

  .ab15__feat:hover .ab15__feat-ico {
    transform: scale(1.12);
  }

  .ab15__feat-ico i {
    font-size: 18px;
    color: var(--secondStyleColor);
  }

  .ab15__feat h3 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 600;
  }

  .ab15__feat p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--textColor1) 62%, transparent);
  }

  /* Responsive */
  @media (max-width: 950px) {
    .ab15__features {
      grid-template-columns: 1fr 1fr;
    }

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

  @media (max-width: 800px) {
    .ab15__hero h2 {
      font-size: 22px;
    }

    .ab15__desc {
      font-size: 14px;
    }

    .ab15__feat h3 {
      font-size: 14px;
    }
  }

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

    .ab15__hero {
      aspect-ratio: 16 / 10;
      margin-bottom: 36px;
    }

    .ab15__features {
      grid-template-columns: 1fr;
    }

    .ab15__desc {
      margin-bottom: 32px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ab15__hero-img img,
    .ab15__feat,
    .ab15__feat-ico {
      transition: none;
    }
  }



  /* ===== HOW v22 — Zigzag blocks with mesh gradient background ===== */

  .hw22 {
    position: relative;
    padding: clamp(60px, 7vw, 100px) 0;
    color: var(--textColor1);
    overflow: hidden;
  }

  /* Mesh gradient blobs */
  .hw22__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .hw22__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.10;
    animation: hw22Mesh 18s ease-in-out infinite;
  }

  .hw22__blob:nth-child(1) {
    width: 400px;
    height: 400px;
    background: var(--secondStyleColor);
    top: 10%;
    left: 15%;
    animation-delay: 0s;
  }

  .hw22__blob:nth-child(2) {
    width: 350px;
    height: 350px;
    background: var(--accent2);
    top: 50%;
    right: 10%;
    animation-delay: -6s;
  }

  .hw22__blob:nth-child(3) {
    width: 300px;
    height: 300px;
    background: var(--accent3);
    bottom: 10%;
    left: 40%;
    animation-delay: -12s;
  }

  @keyframes hw22Mesh {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.95); }
  }

  .hw22__grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  }

  /* Header */
  .hw22__head {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 65px;
    position: relative;
    z-index: 2;
  }

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

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

  /* Zigzag blocks */
  .hw22__blocks {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .hw22__block {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 70px;
    position: relative;
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

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

  .hw22__block:nth-child(even) {
    flex-direction: row-reverse;
  }

  .hw22__block:nth-child(odd) {
    transform: translateX(-50px);
  }

  .hw22__block:nth-child(even) {
    transform: translateX(50px);
  }

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

  /* Watermark step number */
  .hw22__block::before {
    content: attr(data-step);
    position: absolute;
    font-size: 14rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    z-index: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .hw22__block:nth-child(odd)::before {
    right: -30px;
  }

  .hw22__block:nth-child(even)::before {
    left: -30px;
  }

  /* Image side */
  .hw22__image {
    flex: 1;
    min-width: 0;
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--borderRadius);
    overflow: hidden;
    background: var(--bgCard);
  }

  .hw22__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hw22__image::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--borderRadius) + 2px);
    padding: 2px;
    background: conic-gradient(from 0deg, var(--secondStyleColor), var(--accent2), var(--secondStyleColor));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: hw22Border 4s linear infinite;
    z-index: 1;
  }

  @keyframes hw22Border {
    to {
      background: conic-gradient(from 360deg, var(--secondStyleColor), var(--accent2), var(--secondStyleColor));
    }
  }

  /* Text side */
  .hw22__content {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
  }

  .hw22__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(var(--accent-rgb), 0.08);
    color: var(--secondStyleColor);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    margin-bottom: 16px;
  }

  .hw22__badge i {
    font-size: 14px;
  }

  .hw22__title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px;
  }

  .hw22__desc {
    font-size: 14px;
    line-height: 1.8;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    margin: 0 0 16px;
  }

  .hw22__tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    background: rgba(var(--accent-rgb), 0.08);
    color: var(--accent2);
    border: 1px solid color-mix(in srgb, var(--accent2) 15%, transparent);
  }

  /* Responsive */
  @media (max-width: 900px) {
    .hw22__block,
    .hw22__block:nth-child(even) {
      flex-direction: column;
      gap: 24px;
    }

    .hw22__block::before {
      font-size: 7rem;
      top: -20px;
      transform: none;
    }

    .hw22__block {
      margin-bottom: 50px;
    }
  }

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

    .hw22__head {
      margin-bottom: 40px;
    }

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

    .hw22__block {
      margin-bottom: 36px;
      gap: 18px;
    }

    .hw22__title {
      font-size: 16px;
    }

    .hw22__desc {
      font-size: 13px;
    }

    .hw22__badge {
      font-size: 12px;
      padding: 4px 12px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hw22__block,
    .hw22__blob {
      transition: none;
      animation: none;
    }

    .hw22__image::before {
      animation: none;
    }

    .hw22__block {
      opacity: 1;
      transform: none;
    }
  }



  /* ===== FEATURES v9 — Bento grid with hero card ===== */

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

  .ft9__head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 55px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .ft9__kicker {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
  }

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

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

  /* Bento grid */
  .ft9__bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  /* Hero card spans 1 col, 2 rows */
  .ft9__card--hero {
    grid-row: 1 / 3;
  }

  /* Wide card spans full width */
  .ft9__card--wide {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 22px;
  }

  .ft9__wide-body {
    flex: 1;
  }

  .ft9__wide-body h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
  }

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

  /* Card base */
  .ft9__card {
    position: relative;
    padding: 28px 24px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    background: linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.01)
    );
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

  .ft9__card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
  }

  /* Hero card BG — orbiting circles */
  .ft9__card-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .ft9__orbit {
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 220px;
    height: 220px;
  }

  .ft9__orbit span {
    position: absolute;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  }

  .ft9__orbit span:nth-child(1) {
    inset: 0;
    animation: ft9Spin 14s linear infinite;
  }

  .ft9__orbit span:nth-child(2) {
    inset: 20%;
    animation: ft9Spin 20s linear infinite reverse;
  }

  .ft9__orbit span:nth-child(3) {
    inset: 40%;
    animation: ft9Spin 28s linear infinite;
  }

  @keyframes ft9Spin {
    to { transform: rotate(360deg); }
  }

  /* Icon */
  .ft9__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }

  .ft9__card:hover .ft9__icon {
    transform: rotate(-6deg) scale(1.08);
  }

  .ft9__icon i {
    font-size: 20px;
    color: var(--secondStyleColor);
    filter: drop-shadow(0 3px 8px color-mix(in srgb, var(--secondStyleColor) 35%, transparent));
  }

  .ft9__icon--lg {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    margin-bottom: 22px;
  }

  .ft9__icon--lg i {
    font-size: 26px;
  }

  .ft9__card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
  }

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

  /* Chips inside hero card */
  .ft9__chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 18px;
  }

  .ft9__chips span {
    padding: 5px 12px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    font-size: 12px;
    font-weight: 500;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    transition: border-color 0.3s ease, color 0.3s ease;
  }

  .ft9__card--hero:hover .ft9__chips span {
    border-color: color-mix(in srgb, var(--secondStyleColor) 50%, transparent);
    color: var(--secondStyleColor);
  }

  /* ---- Responsive ---- */
  @media (max-width: 950px) {
    .ft9__bento {
      grid-template-columns: 1fr 1fr;
    }

    .ft9__card--hero {
      grid-row: auto;
      grid-column: 1 / -1;
    }

    .ft9__card--wide {
      grid-column: 1 / -1;
    }
  }

  @media (max-width: 800px) {
    .ft9__card {
      padding: 24px 20px;
    }

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

    .ft9__card p {
      font-size: 13px;
    }

    .ft9__card--wide {
      flex-direction: column;
    }

    .ft9__icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
    }

    .ft9__icon i {
      font-size: 18px;
    }

    .ft9__icon--lg {
      width: 52px;
      height: 52px;
    }

    .ft9__icon--lg i {
      font-size: 22px;
    }
  }

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

    .ft9__head {
      margin-bottom: 36px;
    }

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

    .ft9__bento {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .ft9__card--hero {
      grid-column: auto;
    }

    .ft9__card--wide {
      grid-column: auto;
    }

    .ft9__card {
      padding: 22px 18px;
    }

    .ft9__chips span {
      font-size: 11px;
      padding: 4px 10px;
    }

    .ft9__orbit {
      width: 160px;
      height: 160px;
      right: -20px;
      bottom: -20px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ft9__orbit span {
      animation: none;
    }
    .ft9__card,
    .ft9__icon,
    .ft9__chips span {
      transition: none;
    }
  }



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

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

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

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

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

  /* ---- List ---- */
  .rm18__list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .rm18__item {
    display: grid;
    grid-template-columns: 180px 40px 1fr;
    gap: 0;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.3s ease;
  }

  .rm18__item:last-child {
    border-bottom: none;
  }

  .rm18__item:hover {
    background: rgba(255, 255, 255, 0.01);
  }

  .rm18__item--active {
    background: color-mix(
      in srgb,
      var(--accent2, var(--secondStyleColor)) 3%,
      transparent
    );
    border-radius: var(--borderRadius);
    padding-left: 20px;
    padding-right: 20px;
  }

  /* ---- Left: number + status ---- */
  .rm18__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .rm18__num {
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    color: color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
    transition: color 0.3s ease;
  }

  .rm18__item--done .rm18__num {
    color: color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
  }

  .rm18__item--active .rm18__num {
    color: var(--accent2, var(--secondStyleColor));
    text-shadow: 0 0 30px
      color-mix(
        in srgb,
        var(--accent2, var(--secondStyleColor)) 20%,
        transparent
      );
  }

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

  .rm18__status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--textColor1) 40%, transparent);
  }

  .rm18__status--done {
    color: var(--secondStyleColor);
  }

  .rm18__status--active {
    color: var(--accent2, var(--secondStyleColor));
  }

  .rm18__status i {
    font-size: 10px;
  }

  /* ---- Center divider ---- */
  .rm18__divider {
    display: flex;
    justify-content: center;
    padding-top: 14px;
  }

  .rm18__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    flex-shrink: 0;
  }

  .rm18__dot--pulse {
    background: var(--accent2, var(--secondStyleColor));
    box-shadow: 0 0 12px
      color-mix(
        in srgb,
        var(--accent2, var(--secondStyleColor)) 40%,
        transparent
      );
    animation: rm18Pulse 2s ease-in-out infinite;
  }

  @keyframes rm18Pulse {
    0%,
    100% {
      box-shadow: 0 0 12px
        color-mix(
          in srgb,
          var(--accent2, var(--secondStyleColor)) 40%,
          transparent
        );
    }
    50% {
      box-shadow: 0 0 24px
        color-mix(
          in srgb,
          var(--accent2, var(--secondStyleColor)) 10%,
          transparent
        );
    }
  }

  .rm18__dot--empty {
    background: transparent;
    border: 2px solid
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  /* ---- Right: content ---- */
  .rm18__right {
    padding-left: 8px;
  }

  .rm18__right h3 {
    margin: 0 0 10px;
    font-size: 19px;
    font-weight: 700;
  }

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

  /* ---- Responsive ---- */
  @media (max-width: 700px) {
    .rm18__item {
      grid-template-columns: 1fr;
      gap: 8px;
      padding: 24px 0;
    }

    .rm18__item--active {
      padding-left: 16px;
      padding-right: 16px;
    }

    .rm18__left {
      flex-direction: row;
      align-items: baseline;
      gap: 12px;
    }

    .rm18__num {
      font-size: 36px;
    }
    .rm18__divider {
      display: none;
    }
    .rm18__right {
      padding-left: 0;
    }
    .rm18__right h3 {
      font-size: 17px;
    }
  }

  @media (max-width: 600px) {
    .rm18 {
      padding: 50px 0;
    }
    .rm18__head {
      margin-bottom: 36px;
    }
    .rm18__head h2 {
      font-size: 24px;
    }
  }

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



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

  .gl1__head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 48px;
  }

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

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

  .gl1__head p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
  }

  .gl1__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .gl1__item {
    border-radius: var(--borderRadius);
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255,255,255,0.02);
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

  .gl1__item:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  .gl1__img {
    aspect-ratio: 16/10;
    overflow: hidden;
  }

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

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

  .gl1__info {
    padding: 16px 18px;
  }

  .gl1__info h3 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 600;
  }

  .gl1__info p {
    margin: 0;
    font-size: 13px;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
  }

  @media (max-width: 900px) {
    .gl1__grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 600px) {
    .gl1 { padding: 48px 0; }
    .gl1__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .gl1__head { margin-bottom: 32px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .gl1__item, .gl1__img img { transition: none; }
  }



  .rv8 {
    padding: clamp(56px, 7vw, 100px) 0;
    color: var(--textColor1);
  }

  .rv8__head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
  }

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

  .rv8__head p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
  }

  /* Stats bar */
  .rv8__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 4vw, 48px);
    padding: 24px 0;
    margin-bottom: 40px;
    border-top: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
  }

  .rv8__stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .rv8__stat-num {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--secondStyleColor);
    letter-spacing: -0.02em;
    line-height: 1;
  }

  .rv8__stat-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
  }

  .rv8__stat-divider {
    width: 1px;
    height: 40px;
    background: color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
  }

  /* Cards grid */
  .rv8__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .rv8__card {
    padding: 28px 24px 24px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  }

  .rv8__card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    box-shadow: 0 14px 40px color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
  }

  .rv8__quote-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .rv8__quote-icon i {
    font-size: 14px;
    color: var(--secondStyleColor);
  }

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

  .rv8__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 8px;
  }

  .rv8__avatar {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg,
      color-mix(in srgb, var(--secondStyleColor) 18%, transparent),
      color-mix(in srgb, var(--secondStyleColor) 8%, transparent));
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--secondStyleColor);
  }

  .rv8__name {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
  }

  .rv8__role {
    margin: 0;
    font-size: 12px;
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
  }

  @media (max-width: 900px) {
    .rv8__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  }

  @media (max-width: 600px) {
    .rv8 { padding: 48px 0; }
    .rv8__stats { gap: 20px; padding: 18px 0; margin-bottom: 28px; }
    .rv8__stat-num { font-size: 28px; }
    .rv8__card { padding: 22px 18px 20px; }
  }



  /* ── Section ── */
  .faq13 {
    position: relative;
    padding: clamp(64px, 7vw, 110px) 20px;
    overflow: hidden;
    color: var(--textColor1);
  }

  /* ── Background Image ── */
  .faq13__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  /* ── Gradient Overlay ── */
  .faq13__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      radial-gradient(
        ellipse at 30% 20%,
        color-mix(in srgb, var(--secondStyleColor) 12%, transparent),
        transparent 60%
      ),
      linear-gradient(
        180deg,
        color-mix(in srgb, var(--bodyBG) 92%, transparent) 0%,
        color-mix(in srgb, var(--bodyBG) 85%, transparent) 40%,
        color-mix(in srgb, var(--bodyBG) 95%, transparent) 100%
      );
  }

  /* ── Container ── */
  .faq13 .container {
    position: relative;
    z-index: 2;
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  /* ── Header ── */
  .faq13__head {
    text-align: center;
    margin-bottom: 56px;
  }

  .faq13__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    border-radius: 100px;
    margin-bottom: 20px;
  }

  .faq13__kicker i {
    font-size: 12px;
  }

  .faq13__head h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--textColor1);
    margin: 0 0 14px;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }

  .faq13__head p {
    font-size: clamp(14px, 1.4vw, 16px);
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
    line-height: 1.7;
    margin: 0 auto;
  }

  /* ── List ── */
  .faq13__list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* ── Item ── */
  .faq13__item {
    border-radius: var(--borderRadius);
    background: color-mix(in srgb, var(--bodyBG) 45%, transparent);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid color-mix(in srgb, var(--textColor1) 8%, transparent);
    overflow: hidden;
    transition:
      border-color 0.35s ease,
      box-shadow 0.35s ease;
  }

  .faq13__item--open {
    border-color: color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    box-shadow: 0 8px 32px
      color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
  }

  /* ── Trigger Button ── */
  .faq13__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--textColor1);
    font-family: inherit;
    transition: background 0.2s ease;
  }

  .faq13__trigger:hover {
    background: color-mix(in srgb, var(--textColor1) 4%, transparent);
  }

  /* ── Number ── */
  .faq13__num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    color: var(--secondStyleColor);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: background 0.35s ease;
  }

  .faq13__item--open .faq13__num {
    background: var(--secondStyleColor);
    color: var(--textColor2);
  }

  /* ── Question Text ── */
  .faq13__question {
    flex: 1;
    font-size: clamp(15px, 1.4vw, 17px);
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
  }

  /* ── Plus/Minus Icon ── */
  .faq13__icon {
    flex-shrink: 0;
    position: relative;
    width: 20px;
    height: 20px;
  }

  .faq13__icon::before,
  .faq13__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--textColor1);
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  .faq13__icon::before {
    width: 16px;
    height: 2px;
    transform: translate(-50%, -50%);
  }

  .faq13__icon::after {
    width: 2px;
    height: 16px;
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .faq13__item--open .faq13__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .faq13__item--open .faq13__icon::before,
  .faq13__item--open .faq13__icon::after {
    background: var(--secondStyleColor);
  }

  /* ── Body (collapsible) ── */
  .faq13__body {
    overflow: hidden;
    height: 0;
    transition: height 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  /* ── Answer ── */
  .faq13__answer {
    padding: 0 24px 24px 76px;
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 0.35s 0.1s ease,
      transform 0.35s 0.1s ease;
  }

  .faq13__item--open .faq13__answer {
    opacity: 1;
    transform: translateY(0);
  }

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

  /* ── Responsive ── */
  @media (max-width: 950px) {
    .faq13 {
      padding: clamp(48px, 6vw, 80px) 20px;
    }
  }

  @media (max-width: 800px) {
    .faq13__answer {
      padding-left: 24px;
    }

    .faq13__trigger {
      padding: 18px 20px;
      gap: 12px;
    }
  }

  @media (max-width: 600px) {
    .faq13 {
      padding: 48px 16px;
    }

    .faq13__num {
      width: 32px;
      height: 32px;
      font-size: 12px;
      border-radius: 8px;
    }

    .faq13__trigger {
      padding: 16px;
      gap: 10px;
    }

    .faq13__answer {
      padding: 0 16px 20px 16px;
    }
  }

  /* ── Reduced Motion ── */
  @media (prefers-reduced-motion: reduce) {
    .faq13__body,
    .faq13__answer,
    .faq13__icon::before,
    .faq13__icon::after,
    .faq13__item,
    .faq13__num {
      transition: none;
    }
  }



  .site-footer {
    color: var(--textColor1);
    margin-top: 60px;
    padding: 28px 0 22px;
    background-color: var(--bodyBG);
    border-top: 0.3px solid var(--secondStyleColor);
    color: var(--footer-muted);
    position: relative;
    backdrop-filter: blur(18px);
  }

  /* Layout */

  .footer-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 22px;
  }

  /* Brand */

  .footer-main {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .footer-main .logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: var(--textColor1);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.8rem;
  }

  /* Links & Address */

  .site-footer a,
  .site-footer address {
    position: relative;
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.16em;
    padding: 2px 0;
    text-transform: uppercase;
    transition:
      color 0.22s ease,
      transform 0.22s ease,
      text-shadow 0.22s ease,
      opacity 0.22s ease;
  }

  .site-footer address {
    font-style: normal;
    color: rgba(209, 213, 219, 0.8);
  }

  /* ≡ ХОВЕР БЕЗ ЛИНИИ — МЯГКОЕ НЕОНОВОЕ СВЕЧЕНИЕ */

  .site-footer a:hover {
    transform: translateY(-2px);
  }

  /* Social */

  .footer-social {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
    i {
      color: var(--secondStyleColor);
      font-size: 24px;
    }
  }

  .footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--textSecondary);
    transition:
      background 0.18s ease,
      color 0.18s ease,
      border-color 0.18s ease,
      transform 0.12s ease,
      box-shadow 0.18s ease;
  }

  .footer-social a:hover {
    transform: translateY(-1px);
  }

  /* Contacts */

  .footer-contacts address {
    font-style: normal;
  }

  /* Links */

  .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    columns: 2 120px;
    column-gap: 24px;
    font-size: 13px;
  }

  .footer-links li {
    break-inside: avoid;
    margin-bottom: 8px;
  }

  .footer-links a:hover {
    color: var(--secondStyleColor);
  }

  /* Bottom */

  .footer-bottom {
    padding-top: 14px;
    color: var(--textColor1);
  }

  .footer-bottom p {
    margin: 0;
  }

  .footer-bottom p span {
    color: var(--footer-accent);
    font-weight: 700;
  }

  @media (max-width: 900px) {
    .footer-row {
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
  }

  @media (max-width: 640px) {
    .footer-row {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 18px;
    }

    .footer-main {
      align-items: center;
    }

    .footer-social {
      justify-content: center;
    }

    .footer-contacts,
    .footer-links {
      columns: 1;
      text-align: center;
    }

    .site-footer {
      margin-top: 40px;
      padding: 22px 0 18px;
    }
  }



[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}