:root{--font-sans:'Archivo', sans-serif;}


/* ===== HEADER v5 — Glass floating bar + centered nav pill ===== */

  .hd5 {
    position: relative;
    z-index: 100;
    background: linear-gradient(
      180deg,
      color-mix(in srgb, var(--bodyBG) 85%, transparent),
      color-mix(in srgb, var(--bodyBG) 70%, transparent)
    );

    border-bottom: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  }

  .hd5__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    gap: 20px;
  }

  /* Logo */
  .hd5__logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--textColor1);
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    z-index: 110;
  }

  /* Desktop nav — centered pill */
  .hd5__nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .hd5__nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 5px 6px;
    border-radius: 100px;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    background: color-mix(in srgb, var(--secondStyleColor) 5%, transparent);
  }

  .hd5__nav .hd5__link {
    display: block;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    text-decoration: none;
    border-radius: 100px;
    transition:
      color 0.2s ease,
      background 0.2s ease;
  }

  .hd5__nav .hd5__link:hover {
    color: var(--textColor1);
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  }

  /* CTA button */
  .hd5__cta {
    padding: 10px 22px;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    flex-shrink: 0;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .hd5__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  /* Burger — hidden on desktop */
  .hd5__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 36px;
    height: 36px;
    padding: 8px;
    background: none;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    border-radius: 10px;
    cursor: pointer;
    z-index: 110;
    transition: border-color 0.25s ease;
  }

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

  .hd5__burger-line {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--textColor1);
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
    transform-origin: center;
  }

  /* Burger active state */
  .hd5__burger.active .hd5__burger-line:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .hd5__burger.active .hd5__burger-line:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  /* Mobile overlay — hidden by default */
  .hd5__mobile {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    background: var(--bodyBG);
    z-index: 105;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    transform: translateY(-100%);
    opacity: 0;
    transition:
      transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
      opacity 0.3s ease;
    pointer-events: none;
  }

  .hd5__mobile.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hd5__mobile ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .hd5__mobile .hd5__link {
    font-size: 22px;
    font-weight: 600;
    color: var(--textColor1);
    text-decoration: none;
    transition: color 0.2s ease;
  }

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

  .hd5__mobile-cta {
    padding: 14px 32px;
    border-radius: var(--borderRadius);
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
  }

  .stopScroll {
    overflow: hidden;
  }

  /* Responsive */
  @media (max-width: 800px) {
    .hd5__nav {
      display: none;
    }

    .hd5__cta {
      display: none;
    }

    .hd5__burger {
      display: flex;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hd5__mobile,
    .hd5__burger-line,
    .hd5__burger,
    .hd5__cta,
    .hd5__nav .hd5__link {
      transition: none;
    }
  }


/* ── Section ── */
  .hr30 {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bodyBG);
    padding: 120px 20px 80px;
  }

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

  /* ── Dimmer ── */
  .hr30__dim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      radial-gradient(
        ellipse at 30% 30%,
        color-mix(in srgb, var(--bodyBG) 55%, transparent),
        transparent 60%
      ),
      color-mix(in srgb, var(--bodyBG) 72%, transparent);
  }

  /* ── Broken Glass SVG ── */
  .hr30__glass {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }

  .hr30__spark {
    fill: var(--textColor1);
  }

  /* ── Content ── */
  .hr30 .container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  .hr30__body {
    text-align: center;
  }

  .hr30__body h1 {
    font-size: clamp(32px, 5.2vw, 58px);
    font-weight: 800;
    color: var(--textColor1);
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .hr30__sub {
    font-size: clamp(15px, 1.6vw, 18px);
    color: color-mix(in srgb, var(--textColor1) 62%, transparent);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 36px;
  }

  /* ── Button ── */
  .hr30__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    color: var(--textColor2);
    background: var(--secondStyleColor);
    border-radius: var(--borderRadius);
    transition: all 0.25s ease;
  }

  .hr30__cta i {
    font-size: 13px;
    transition: transform 0.25s ease;
  }

  .hr30__cta:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px
      color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
  }

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

  /* ── Cards ── */
  .hr30__cards {
    display: flex;
    gap: 24px;
    max-width: 820px;
    margin: 56px auto 0;
    text-align: left;
  }

  .hr30__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 32px 28px;
    background: color-mix(in srgb, var(--bodyBG) 45%, transparent);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid color-mix(in srgb, var(--textColor1) 10%, transparent);
    border-radius: var(--borderRadius);
    transition: all 0.3s ease;
  }

  .hr30__card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 28%, transparent);
    box-shadow: 0 16px 48px color-mix(in srgb, var(--bodyBG) 50%, transparent);
  }

  .hr30__card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondStyleColor);
    font-size: 20px;
    margin-bottom: 18px;
  }

  .hr30__card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--textColor1);
    margin: 0 0 10px;
  }

  .hr30__card p {
    font-size: 14px;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
    line-height: 1.65;
    margin: 0;
    text-align: center;
  }

  /* ── Responsive ── */
  @media (max-width: 950px) {
    .hr30 {
      padding: 100px 20px 60px;
    }
  }

  @media (max-width: 800px) {
    .hr30__cards {
      flex-direction: column;
      max-width: 420px;
    }
  }

  @media (max-width: 600px) {
    .hr30 {
      padding: 80px 16px 48px;
      min-height: 100svh;
    }
    .hr30__body h1 {
      font-size: clamp(28px, 7vw, 40px);
    }
    .hr30__cta {
      width: 100%;
      justify-content: center;
    }
    .hr30__card {
      padding: 24px 20px;
    }
  }

  /* ── Reduced Motion ── */
  @media (prefers-reduced-motion: reduce) {
    .hr30__spark {
      animation: none;
    }
    .hr30__shimmer-g {
      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;
  }

  .toc {
    background-color: transparent;
  }

  .toc a {
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    white-space: nowrap;
    color: var(--textColor1);
    transition: color 0.3s ease-in-out;
    -webkit-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    -ms-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    border: 1px solid var(--secondStyleColor);
    padding: 10px 20px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    background-color: var(--itemBgColor);
  }

  .toc a:active,
  .toc a:hover,
  .toc a:focus {
    color: #fff;
    background-color: rgba(17, 17, 17, 0.2);
  }

  .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);
  }

  .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;
    }
  }


/* ===== ABOUT v18 — Bento grid with mixed content cells ===== */

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

  .ab18__bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 16px;
  }

  /* Cell base */
  .ab18__cell {
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255, 255, 255, 0.025);
    overflow: hidden;
    transition: border-color 0.3s ease;
  }

  .ab18__cell:hover {
    border-color: color-mix(in srgb, var(--secondStyleColor) 32%, transparent);
  }

  /* Hero image — spans 2 cols, 2 rows */
  .ab18__cell--hero {
    grid-column: span 2;
    grid-row: span 2;
    padding: 0;
    aspect-ratio: auto;
  }

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

  .ab18__cell--hero:hover img {
    transform: scale(1.04);
  }

  /* Intro text — spans 2 cols */
  .ab18__cell--intro {
    grid-column: span 2;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .ab18__kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondStyleColor);
  }

  .ab18__cell--intro h2 {
    margin: 0;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

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

  /* Stat cells */
  .ab18__cell--stat {
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 4px;
  }

  .ab18__cell--stat strong {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--secondStyleColor);
    line-height: 1;
  }

  .ab18__cell--stat span {
    font-size: 12px;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
    font-weight: 500;
  }

  /* Feature cells */
  .ab18__cell--feat {
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .ab18__feat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .ab18__cell--feat:hover .ab18__feat-icon {
    transform: scale(1.12) rotate(-5deg);
  }

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

  .ab18__cell--feat h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
  }

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

  /* Image cell 2 */
  .ab18__cell--img2 {
    padding: 0;
    grid-column: span 2;
    aspect-ratio: 16 / 7;
  }

  .ab18__cell--img2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .ab18__cell--img2:hover img {
    transform: scale(1.04);
  }

  /* Quote cell */
  .ab18__cell--quote {
    grid-column: span 2;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
  }

  .ab18__quote-svg {
    width: 36px;
    height: auto;
    color: color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  .ab18__cell--quote p {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
    color: color-mix(in srgb, var(--textColor1) 80%, transparent);
  }

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

    .ab18__cell--hero {
      grid-column: span 2;
      grid-row: span 1;
      aspect-ratio: 16 / 9;
    }

    .ab18__cell--img2 {
      grid-column: span 2;
    }

    .ab18__cell--quote {
      grid-column: span 2;
    }
  }

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

    .ab18__cell--intro p {
      font-size: 13px;
    }

    .ab18__cell--quote p {
      font-size: 15px;
    }

    .ab18__cell--feat h3 {
      font-size: 15px;
    }
  }

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

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

    .ab18__cell--hero,
    .ab18__cell--intro,
    .ab18__cell--img2,
    .ab18__cell--quote {
      grid-column: span 1;
    }

    .ab18__cell--hero {
      aspect-ratio: 16 / 10;
    }

    .ab18__cell--img2 {
      aspect-ratio: 16 / 9;
    }

    .ab18__cell--stat {
      padding: 22px 18px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ab18__cell,
    .ab18__feat-icon,
    .ab18__cell--hero img,
    .ab18__cell--img2 img {
      transition: none;
    }
  }


/* ===== ROADMAP v10 — Full-width strips + SVG dashed connector + glow ===== */

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

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

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

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

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

  /* Timeline */
  .rm10__timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* SVG connector */
  .rm10__connector {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 4px;
    z-index: 0;
  }

  .rm10__connector-svg {
    width: 100%;
    height: 100%;
    color: color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
  }

  .rm10__connector-glow {
    position: absolute;
    top: 0;
    left: 50%;
    width: 6px;
    height: 50px;
    margin-left: -3px;
    background: var(--secondStyleColor);
    border-radius: 6px;
    filter: blur(5px);
    opacity: 0.5;
    animation: rm10Travel 4.5s ease-in-out infinite;
  }

  @keyframes rm10Travel {
    0% { top: 0; opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { top: calc(100% - 50px); opacity: 0; }
  }

  /* Strip */
  .rm10__strip {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

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

  /* Marker column */
  .rm10__strip-marker {
    display: flex;
    justify-content: center;
    padding-top: 28px;
  }

  .rm10__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  .rm10__dot--pulse {
    animation: rm10DotPulse 2s ease-in-out infinite;
  }

  @keyframes rm10DotPulse {
    0%, 100% { box-shadow: 0 0 0 3px color-mix(in srgb, var(--secondStyleColor) 20%, transparent); }
    50% { box-shadow: 0 0 0 8px color-mix(in srgb, var(--secondStyleColor) 0%, transparent); }
  }

  .rm10__dot--empty {
    background: transparent;
    border: 2px solid color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
    box-shadow: none;
  }

  /* Content area */
  .rm10__strip-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 26px 20px 26px 16px;
    transition: background 0.3s ease;
  }

  .rm10__strip:hover .rm10__strip-content {
    background: rgba(255, 255, 255, 0.015);
  }

  .rm10__strip--active .rm10__strip-content {
    background: color-mix(in srgb, var(--secondStyleColor) 3%, transparent);
  }

  .rm10__strip-left {
    flex: 1;
  }

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

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

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

  .rm10__strip-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }

  .rm10__strip-ico {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .rm10__strip:hover .rm10__strip-ico {
    transform: scale(1.1);
  }

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

  .rm10__status {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    white-space: nowrap;
  }

  .rm10__status--done {
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    color: var(--secondStyleColor);
    border-color: color-mix(in srgb, var(--secondStyleColor) 28%, transparent);
  }

  .rm10__status--active {
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    border-color: var(--secondStyleColor);
  }

  /* Responsive */
  @media (max-width: 950px) {
    .rm10__strip-left h3 {
      font-size: 17px;
    }
  }

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

    .rm10__strip-right {
      flex-direction: row;
      gap: 12px;
    }

    .rm10__strip-left p {
      font-size: 13px;
    }

    .rm10__strip-ico {
      width: 40px;
      height: 40px;
    }

    .rm10__strip-ico i {
      font-size: 16px;
    }
  }

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

    .rm10__head {
      margin-bottom: 36px;
    }

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

    .rm10__strip {
      grid-template-columns: 40px 1fr;
    }

    .rm10__connector {
      left: 18px;
    }

    .rm10__strip-content {
      padding: 20px 12px 20px 10px;
    }

    .rm10__strip-left h3 {
      font-size: 16px;
    }
  }

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

    .rm10__dot--pulse {
      animation: none;
    }

    .rm10__strip-content,
    .rm10__strip-ico {
      transition: none;
    }
  }


/* ===== HOW v14 — Alternating full-width strips ===== */

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

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

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

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

  .hw14__strips {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hw14__strip {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 36px 40px;
    border-radius: var(--borderRadius);
    transition: background 0.3s ease;
  }

  .hw14__strip:hover {
    background: rgba(255, 255, 255, 0.04);
  }

  .hw14__strip--alt {
    flex-direction: row-reverse;
    text-align: right;
  }

  .hw14__left {
    flex-shrink: 0;
  }

  .hw14__ring {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    border: 2px solid color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(
      circle at center,
      color-mix(in srgb, var(--secondStyleColor) 8%, transparent),
      transparent 70%
    );
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .hw14__strip:hover .hw14__ring {
    border-color: var(--secondStyleColor);
    box-shadow: 0 0 30px color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
  }

  .hw14__ring::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  }

  .hw14__ring span {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondStyleColor);
  }

  .hw14__right {
    flex: 1;
    max-width: 600px;
  }

  .hw14__right h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 600;
  }

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

  /* Divider between strips */
  .hw14__strip + .hw14__strip {
    border-top: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
  }

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

    .hw14__ring {
      width: 62px;
      height: 62px;
    }

    .hw14__ring span {
      font-size: 20px;
    }

    .hw14__right h3 {
      font-size: 18px;
    }
  }

  @media (max-width: 800px) {
    .hw14__strip,
    .hw14__strip--alt {
      flex-direction: column;
      text-align: center;
      gap: 18px;
      padding: 28px 20px;
    }

    .hw14__right {
      max-width: 100%;
    }

    .hw14__ring {
      width: 56px;
      height: 56px;
    }

    .hw14__ring::before {
      inset: -8px;
    }

    .hw14__ring span {
      font-size: 18px;
    }
  }

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

    .hw14__head {
      margin-bottom: 32px;
    }

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

    .hw14__strip {
      padding: 22px 16px;
      gap: 14px;
    }

    .hw14__ring {
      width: 50px;
      height: 50px;
    }

    .hw14__ring span {
      font-size: 16px;
    }

    .hw14__ring::before {
      inset: -6px;
    }

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

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

  @media (prefers-reduced-motion: reduce) {
    .hw14__strip,
    .hw14__ring {
      transition: none;
    }
  }


/* ===========================
     Reviews 18 — Spotlight Mosaic
     Bento grid + CSS hover spotlight (dim others) + holographic shine
     =========================== */

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

  /* Floating glow blobs */
  .rv18__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(130px);
    will-change: transform;
  }

  .rv18__glow--1 {
    width: 500px;
    height: 500px;
    background: var(--secondStyleColor);
    opacity: 0.05;
    top: -120px;
    left: 10%;
    animation: rv18-drift1 24s ease-in-out infinite;
  }

  .rv18__glow--2 {
    width: 400px;
    height: 400px;
    background: var(--secondStyleColor);
    opacity: 0.04;
    bottom: -100px;
    right: 5%;
    animation: rv18-drift2 28s ease-in-out infinite;
  }

  .rv18__glow--3 {
    width: 300px;
    height: 300px;
    background: var(--secondStyleColor);
    opacity: 0.035;
    top: 50%;
    left: 55%;
    animation: rv18-drift3 20s ease-in-out infinite;
  }

  @keyframes rv18-drift1 {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    50% {
      transform: translate(50px, 40px) scale(1.1);
    }
  }

  @keyframes rv18-drift2 {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    50% {
      transform: translate(-40px, -50px) scale(1.08);
    }
  }

  @keyframes rv18-drift3 {
    0%,
    100% {
      transform: translate(-50%, 0) scale(1);
    }
    50% {
      transform: translate(-50%, -35px) scale(1.12);
    }
  }

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

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

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

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

  /* Bento grid */
  .rv18__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 1fr;
    grid-template-rows: auto auto;
    gap: 18px;
  }

  /* Featured card spans 2 rows */
  .rv18__card--featured {
    grid-row: 1 / 3;
  }

  /* Card */
  .rv18__card {
    position: relative;
    padding: 28px 24px 24px;
    border-radius: var(--borderRadius);
    background: linear-gradient(
      160deg,
      color-mix(in srgb, var(--secondStyleColor) 4%, transparent) 0%,
      color-mix(in srgb, var(--bodyBG) 85%, transparent) 50%,
      color-mix(in srgb, var(--secondStyleColor) 2%, transparent) 100%
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
    transition:
      opacity 0.45s ease,
      filter 0.45s ease,
      transform 0.45s cubic-bezier(0.33, 1, 0.53, 1),
      border-color 0.4s ease,
      box-shadow 0.4s ease;
  }

  /* ── Spotlight effect: hover grid → dim all, un-dim hovered ── */
  .rv18__grid:hover .rv18__card {
    opacity: 0.4;
    filter: blur(2px) saturate(0.6);
  }

  .rv18__grid:hover .rv18__card:hover {
    opacity: 1;
    filter: blur(0) saturate(1);
    transform: scale(1.03);
    z-index: 2;
    border-color: color-mix(in srgb, var(--secondStyleColor) 45%, transparent);
    box-shadow:
      0 16px 48px color-mix(in srgb, var(--secondStyleColor) 16%, transparent),
      0 0 0 1px color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
  }

  /* Holographic shine sweep on hover */
  .rv18__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      105deg,
      transparent 30%,
      color-mix(in srgb, var(--secondStyleColor) 8%, transparent) 45%,
      color-mix(in srgb, var(--secondStyleColor) 14%, transparent) 50%,
      color-mix(in srgb, var(--secondStyleColor) 8%, transparent) 55%,
      transparent 70%
    );
    background-size: 250% 100%;
    background-position: 200% 0;
    pointer-events: none;
    transition: background-position 0.8s ease;
  }

  .rv18__card:hover .rv18__shine {
    background-position: -50% 0;
  }

  /* Quote icon (featured card) */
  .rv18__quote-icon {
    font-size: 28px;
    color: var(--secondStyleColor);
    opacity: 0.3;
  }

  /* Stars */
  .rv18__stars {
    display: flex;
    gap: 3px;
    font-size: 14px;
    color: var(--secondStyleColor);
  }

  /* Text */
  .rv18__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--textColor1);
    opacity: 0.85;
    flex: 1;
  }

  .rv18__text--large {
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.75;
  }

  /* Author */
  .rv18__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 6px;
  }

  .rv18__avatar {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--secondStyleColor);
  }

  .rv18__avatar--lg {
    width: 52px;
    height: 52px;
    font-size: 15px;
  }

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

  .rv18__role {
    margin: 0;
    font-size: 12px;
    color: var(--textColor1);
    opacity: 0.6;
    line-height: 1.4;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .rv18__glow {
      animation: none !important;
    }
    .rv18__card {
      transition: none !important;
    }
    .rv18__shine {
      transition: none !important;
    }
  }

  /* Responsive — tablets */
  @media (max-width: 950px) {
    .rv18__grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
    }
    .rv18__card--featured {
      grid-row: auto;
      grid-column: 1 / -1;
    }
    .rv18__card {
      padding: 24px 20px 20px;
    }
  }

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

  /* Responsive — mobile */
  @media (max-width: 600px) {
    .rv18__grid {
      grid-template-columns: 1fr;
      max-width: 460px;
      margin-left: auto;
      margin-right: auto;
    }
    .rv18__card--featured {
      grid-column: auto;
    }
    .rv18__card {
      padding: 22px 18px 20px;
    }
    /* Disable spotlight on mobile (no hover) */
    .rv18__grid:hover .rv18__card {
      opacity: 1;
      filter: none;
    }
    .rv18__grid:hover .rv18__card:hover {
      transform: none;
      box-shadow: none;
    }
  }


/* ===== SOMETHING v11 — Spotlight quote with SVG wave + avatar ===== */

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

  .sm11__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    color: color-mix(in srgb, var(--secondStyleColor) 4%, transparent);
    pointer-events: none;
  }

  .sm11__block {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .sm11__quote-mark {
    font-size: 80px;
    font-weight: 800;
    line-height: 0.5;
    color: color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
  }

  .sm11__quote {
    margin: 0;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
    color: color-mix(in srgb, var(--textColor1) 85%, transparent);
  }

  .sm11__author {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .sm11__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    flex-shrink: 0;
  }

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

  .sm11__author-info {
    text-align: left;
  }

  .sm11__author-info strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
  }

  .sm11__author-info span {
    font-size: 13px;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
  }

  .sm11__stars {
    display: flex;
    gap: 4px;
  }

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

  @media (max-width: 800px) {
    .sm11__quote {
      font-size: 18px;
    }

    .sm11__quote-mark {
      font-size: 60px;
    }
  }

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

    .sm11__quote {
      font-size: 16px;
    }

    .sm11__avatar {
      width: 44px;
      height: 44px;
    }
  }


/* ===== 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;
    }
  }


/* ===========================
     FAQ 12 — Aurora Cascade
     Staggered glass grid + animated SVG waves + shimmer accents
     =========================== */

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

  /* SVG wave background */
  .faq12__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }

  /* Floating glow blobs */
  .faq12__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
    will-change: transform;
  }

  .faq12__glow--1 {
    width: 460px;
    height: 460px;
    background: var(--secondStyleColor);
    opacity: 0.06;
    top: -100px;
    right: -80px;
    animation: faq12-drift1 28s ease-in-out infinite;
  }

  .faq12__glow--2 {
    width: 380px;
    height: 380px;
    background: var(--secondStyleColor);
    opacity: 0.05;
    bottom: -80px;
    left: -60px;
    animation: faq12-drift2 33s ease-in-out infinite;
  }

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

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

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

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

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

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

  /* Grid — two columns, right column offset for cascade effect */
  .faq12__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 920px;
    margin: 0 auto;
  }

  .faq12__col {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .faq12__col--offset {
    padding-top: 52px;
  }

  /* Card */
  .faq12__card {
    position: relative;
    padding: 28px 26px 26px;
    border-radius: var(--borderRadius);
    background: linear-gradient(
      165deg,
      color-mix(in srgb, var(--secondStyleColor) 5%, transparent) 0%,
      color-mix(in srgb, var(--bodyBG) 85%, transparent) 40%,
      color-mix(in srgb, var(--secondStyleColor) 3%, transparent) 100%
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    overflow: hidden;
    transition:
      transform 0.45s cubic-bezier(0.33, 1, 0.53, 1),
      border-color 0.4s ease,
      box-shadow 0.45s ease;
    animation: faq12-float 8s ease-in-out infinite;
    animation-delay: var(--float-delay);
    will-change: transform;
  }

  .faq12__card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
    box-shadow:
      0 12px 40px color-mix(in srgb, var(--secondStyleColor) 14%, transparent),
      0 0 0 1px color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    animation-play-state: paused;
  }

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

  /* Shimmer accent line at top of card */
  .faq12__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      color-mix(in srgb, var(--secondStyleColor) 40%, transparent) 30%,
      var(--secondStyleColor) 50%,
      color-mix(in srgb, var(--secondStyleColor) 40%, transparent) 70%,
      transparent 100%
    );
    background-size: 200% 100%;
    animation: faq12-shimmer 4s ease-in-out infinite;
    opacity: 0.5;
    transition: opacity 0.4s ease;
  }

  .faq12__card:hover .faq12__accent {
    opacity: 1;
  }

  @keyframes faq12-shimmer {
    0% {
      background-position: 200% 0;
    }
    100% {
      background-position: -200% 0;
    }
  }

  /* Number badge */
  .faq12__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--secondStyleColor);
    margin-bottom: 18px;
    animation: faq12-breathe 3.5s ease-in-out infinite;
  }

  @keyframes faq12-breathe {
    0%,
    100% {
      box-shadow: 0 0 0 0
        color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    }
    50% {
      box-shadow: 0 0 18px 4px
        color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    }
  }

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

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

  .faq12__card:hover .faq12__answer {
    opacity: 1;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .faq12__bg * {
      animation: none !important;
    }
    .faq12__glow {
      animation: none !important;
    }
    .faq12__card {
      animation: none !important;
    }
    .faq12__accent {
      animation: none !important;
    }
    .faq12__num {
      animation: none !important;
    }
  }

  /* Responsive — tablets */
  @media (max-width: 950px) {
    .faq12__grid {
      gap: 18px;
    }
    .faq12__col--offset {
      padding-top: 36px;
    }
    .faq12__card {
      padding: 24px 22px 22px;
    }
  }

  /* Responsive — small tablets */
  @media (max-width: 800px) {
    .faq12__grid {
      grid-template-columns: 1fr;
      max-width: 560px;
    }
    .faq12__col--offset {
      padding-top: 0;
    }
  }

  /* Responsive — mobile */
  @media (max-width: 600px) {
    .faq12__card {
      padding: 22px 18px 20px;
    }
    .faq12__num {
      width: 36px;
      height: 36px;
      font-size: 12px;
      margin-bottom: 14px;
    }
  }


.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;
  }

  .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;
    }
  }