
:root {
  --bg: #faf8f5;
  --bg-card: #ffffff;
  --text: #2d2a26;
  --text-muted: rgba(0,0,0,0.5);
  --accent: #d85a2a;
  --accent-rgb: 216,90,42;
  --accent2: #6ed82a;
  --accent2-rgb: 110,216,42;
  --accent3: #dc4097;
  --accent3-rgb: 220,64,151;
  --border: rgba(0,0,0,0.08);
  --radius: 12px;
  --font: 'Inter', sans-serif;
  --font-heading: 'Inter', sans-serif;
  --bodyBG: #faf8f5;
  --textColor1: #2d2a26;
  --textColor2: #ffffff;
  --textSecondary: #605e5a;
  --textMuted: #94918e;
  --secondStyleColor: #d85a2a;
  --bgCard: #ffffff;
  --bgAlt: #eae8e4;
  --borderSubtle: rgba(0,0,0,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(0,0,0,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: #000; }
* { scrollbar-width: thin; scrollbar-color: var(--accent) rgba(0,0,0,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.05);
  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;
    }
  }



  /* ── Section ── */
  .hr29 {
    position: relative;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bodyBG);
    padding: 100px 20px;
  }

  /* ── Gradient Mesh Blobs ── */
  .hr29__mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }

  .hr29__blob {
    position: absolute;
    border-radius: 50%;
    background: var(--secondStyleColor);
    will-change: transform;
    contain: layout paint;
  }

  .hr29__blob--a {
    width: 550px;
    height: 550px;
    top: -15%;
    left: -10%;
    opacity: 0.25;
    filter: blur(100px);
    animation: hr29-dA 22s ease-in-out infinite;
  }

  .hr29__blob--b {
    width: 420px;
    height: 420px;
    top: -5%;
    right: -8%;
    opacity: 0.2;
    filter: blur(90px) hue-rotate(45deg);
    animation: hr29-dB 26s ease-in-out infinite;
  }

  .hr29__blob--c {
    width: 480px;
    height: 480px;
    bottom: -20%;
    left: 30%;
    opacity: 0.22;
    filter: blur(110px) hue-rotate(-40deg);
    animation: hr29-dC 20s ease-in-out infinite;
  }

  .hr29__blob--d {
    width: 320px;
    height: 320px;
    top: 35%;
    right: 15%;
    opacity: 0.28;
    filter: blur(80px) hue-rotate(90deg);
    animation: hr29-dD 18s ease-in-out infinite;
  }

  .hr29__blob--e {
    width: 380px;
    height: 380px;
    bottom: -10%;
    left: -5%;
    opacity: 0.18;
    filter: blur(95px) hue-rotate(160deg);
    animation: hr29-dE 28s ease-in-out infinite;
  }

  @keyframes hr29-dA {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    25% {
      transform: translate(80px, 60px) scale(1.08);
    }
    50% {
      transform: translate(40px, 120px) scale(0.95);
    }
    75% {
      transform: translate(-30px, 70px) scale(1.04);
    }
  }

  @keyframes hr29-dB {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    25% {
      transform: translate(-70px, 50px) scale(0.92);
    }
    50% {
      transform: translate(-110px, -20px) scale(1.1);
    }
    75% {
      transform: translate(30px, -50px) scale(1);
    }
  }

  @keyframes hr29-dC {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    33% {
      transform: translate(60px, -80px) scale(1.06);
    }
    66% {
      transform: translate(-50px, -40px) scale(0.94);
    }
  }

  @keyframes hr29-dD {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    25% {
      transform: translate(-40px, 30px) scale(1.12);
    }
    50% {
      transform: translate(20px, -50px) scale(0.88);
    }
    75% {
      transform: translate(50px, 20px) scale(1.05);
    }
  }

  @keyframes hr29-dE {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
    }
    30% {
      transform: translate(90px, -30px) scale(1.1);
    }
    60% {
      transform: translate(50px, 50px) scale(0.9);
    }
  }

  /* ── Dot Grid Overlay ── */
  .hr29__dots {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: radial-gradient(
      circle,
      color-mix(in srgb, var(--textColor1) 6%, transparent) 1px,
      transparent 1px
    );
    background-size: 32px 32px;
    pointer-events: none;
  }

  /* ── Floating SVG UI Shapes ── */
  .hr29__shapes {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }

  .hr29__sh {
    animation: hr29-fade 8s ease-in-out infinite;
  }

  .hr29__sh:nth-child(2) {
    animation-duration: 6s;
    animation-delay: -2s;
  }
  .hr29__sh:nth-child(3) {
    animation-duration: 10s;
    animation-delay: -4s;
  }
  .hr29__sh:nth-child(4) {
    animation-duration: 7s;
    animation-delay: -1s;
  }
  .hr29__sh:nth-child(5) {
    animation-duration: 9s;
    animation-delay: -6s;
  }
  .hr29__sh:nth-child(6) {
    animation-duration: 11s;
    animation-delay: -3s;
  }

  @keyframes hr29-fade {
    0%,
    100% {
      opacity: 0.08;
    }
    50% {
      opacity: 0.16;
    }
  }

  .hr29__sh rect,
  .hr29__sh circle,
  .hr29__sh line,
  .hr29__sh polygon {
    fill: none;
    stroke: var(--secondStyleColor);
    stroke-width: 1.5;
  }

  /* ── Center Glow ── */
  .hr29__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 900px;
    height: 700px;
    transform: translate(-50%, -50%);
    background:
      radial-gradient(
        ellipse,
        color-mix(in srgb, var(--secondStyleColor) 6%, transparent) 0%,
        transparent 50%
      ),
      radial-gradient(
        ellipse,
        color-mix(in srgb, var(--bodyBG) 70%, transparent) 0%,
        transparent 70%
      );
    z-index: 3;
    pointer-events: none;
  }

  /* ── Content ── */
  .hr29 .container {
    position: relative;
    max-width: var(--maxWidthContainer);
    width: 100%;
    z-index: 5;
  }

  .hr29__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }

  .hr29__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 100px;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    color: var(--secondStyleColor);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 28px;
  }

  .hr29__kicker i {
    font-size: 11px;
  }

  .hr29__content h1 {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 800;
    color: var(--textColor1);
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
  }

  .hr29__sub {
    font-size: clamp(16px, 1.8vw, 19px);
    color: color-mix(in srgb, var(--textColor1) 65%, transparent);
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto 36px;
  }

  /* ── Buttons ── */
  .hr29__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }

  .hr29__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--borderRadius);
    transition: all 0.25s ease;
    cursor: pointer;
  }

  .hr29__btn--fill {
    background: var(--secondStyleColor);
    color: var(--textColor2);
  }

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

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

  .hr29__btn--fill:hover i {
    transform: translateX(3px);
  }

  .hr29__btn--line {
    background: transparent;
    color: var(--textColor1);
    border: 1px solid color-mix(in srgb, var(--textColor1) 20%, transparent);
  }

  .hr29__btn--line:hover {
    border-color: color-mix(in srgb, var(--textColor1) 40%, transparent);
    background: color-mix(in srgb, var(--textColor1) 5%, transparent);
    transform: translateY(-2px);
  }

  .hr29__btn--line i {
    font-size: 11px;
  }

  /* ── Stats ── */
  .hr29__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }

  .hr29__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .hr29__stat strong {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 800;
    color: var(--textColor1);
  }

  .hr29__stat span {
    font-size: 13px;
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
  }

  .hr29__stat-sep {
    width: 1px;
    height: 36px;
    background: color-mix(in srgb, var(--textColor1) 12%, transparent);
  }

  /* ── Responsive ── */
  @media (max-width: 950px) {
    .hr29 {
      padding: 80px 20px;
    }
    .hr29__blob--a {
      width: 400px;
      height: 400px;
    }
    .hr29__blob--b {
      width: 320px;
      height: 320px;
    }
    .hr29__blob--c {
      width: 380px;
      height: 380px;
    }
    .hr29__blob--d {
      width: 250px;
      height: 250px;
    }
    .hr29__blob--e {
      width: 300px;
      height: 300px;
    }
  }

  @media (max-width: 800px) {
    .hr29__glow {
      width: 600px;
      height: 500px;
    }
  }

  @media (max-width: 600px) {
    .hr29 {
      padding: 60px 16px;
      min-height: 700px;
    }
    .hr29__kicker {
      font-size: 11px;
      padding: 6px 14px;
    }
    .hr29__actions {
      flex-direction: column;
      gap: 12px;
    }
    .hr29__btn {
      width: 100%;
      justify-content: center;
      padding: 14px 24px;
    }
    .hr29__stats {
      gap: 20px;
    }
    .hr29__stat-sep {
      height: 28px;
    }
    .hr29__stat strong {
      font-size: 22px;
    }
    .hr29__shapes {
      display: none;
    }
    .hr29__dots {
      background-size: 24px 24px;
    }
    .hr29__glow {
      width: 100%;
      height: 100%;
    }
  }

  /* ── Reduced Motion ── */
  @media (prefers-reduced-motion: reduce) {
    .hr29__blob {
      animation: none;
    }
    .hr29__sh {
      animation: none;
    }
    .hr29__shapes {
      display: none;
    }
  }



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

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

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

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

  .toc {
    background-color: transparent;
  }

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

  .toc a::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--secondStyleColor);
    border-radius: inherit;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    -ms-transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }

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

  .toc a:hover,
  .toc a:focus {
    color: var(--textColor2);
    border-color: var(--secondStyleColor);
  }

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

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

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

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

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

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

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

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



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

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

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

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

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

  /* ---- Stepper ---- */
  .rm15__stepper {
    position: relative;
    display: flex;
    justify-content: space-between;
    max-width: 700px;
    margin: 0 auto 48px;
    padding: 0 20px;
  }

  .rm15__line {
    position: absolute;
    top: 22px;
    left: 60px;
    right: 60px;
    height: 3px;
    background: color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border-radius: 2px;
  }

  .rm15__line-fill {
    height: 100%;
    width: 58%;
    background: linear-gradient(90deg, var(--secondStyleColor), var(--accent2, var(--secondStyleColor)));
    border-radius: 2px;
    box-shadow: 0 0 12px color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
  }

  .rm15__step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .rm15__circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bodyBG);
    border: 3px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: color-mix(in srgb, var(--textColor1) 40%, transparent);
    transition: all 0.35s ease;
  }

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

  .rm15__step--done .rm15__circle i {
    font-size: 14px;
  }

  .rm15__step--active .rm15__circle {
    border-color: var(--accent2, var(--secondStyleColor));
    color: var(--accent2, var(--secondStyleColor));
    box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent2, var(--secondStyleColor)) 15%, transparent);
    animation: rm15Pulse 2s ease-in-out infinite;
  }

  @keyframes rm15Pulse {
    0%, 100% { box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent2, var(--secondStyleColor)) 15%, transparent); }
    50% { box-shadow: 0 0 0 12px color-mix(in srgb, var(--accent2, var(--secondStyleColor)) 0%, transparent); }
  }

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

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

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

  /* ---- Cards ---- */
  .rm15__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
  }

  .rm15__card {
    padding: 28px 22px;
    border-radius: var(--borderRadius);
    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;
  }

  .rm15__card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--secondStyleColor) 28%, transparent);
  }

  .rm15__card--highlight {
    border-color: color-mix(in srgb, var(--accent2, var(--secondStyleColor)) 30%, transparent);
    background: color-mix(in srgb, var(--accent2, var(--secondStyleColor)) 4%, transparent);
  }

  .rm15__card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }

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

  .rm15__card h3 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 700;
  }

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

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

  @media (max-width: 600px) {
    .rm15 { padding: 50px 0; }
    .rm15__head { margin-bottom: 36px; }

    .rm15__stepper { margin-bottom: 32px; padding: 0; }
    .rm15__circle { width: 36px; height: 36px; font-size: 13px; }
    .rm15__step--done .rm15__circle i { font-size: 12px; }
    .rm15__line { top: 18px; left: 36px; right: 36px; }
    .rm15__label { font-size: 10px; }

    .rm15__cards { grid-template-columns: 1fr; }
    .rm15__card { padding: 22px 18px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .rm15__step--active .rm15__circle { animation: none; }
    .rm15__card { transition: none; }
  }



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

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

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

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

  .pl6__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 720px;
    margin: 0 auto;
  }

  .pl6__item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: clamp(22px, 3vw, 30px);
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255,255,255,0.02);
    transition: border-color 0.25s ease;
  }

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

  .pl6__item--featured {
    border-color: color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    box-shadow: 0 0 40px color-mix(in srgb, var(--secondStyleColor) 6%, transparent);
  }

  .pl6__badge {
    position: absolute;
    top: -10px;
    left: 24px;
    padding: 3px 12px;
    border-radius: 100px;
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .pl6__name {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
  }

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

  .pl6__price {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondStyleColor);
    line-height: 1;
    flex-shrink: 0;
  }

  .pl6__price small {
    font-size: 13px;
    font-weight: 500;
    color: color-mix(in srgb, var(--textColor1) 40%, transparent);
  }

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

  .pl6__features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .pl6__feat {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    font-size: 12px;
    font-weight: 600;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
  }

  .pl6__feat i {
    font-size: 10px;
    color: var(--secondStyleColor);
  }

  .pl6__btn {
    display: inline-block;
    width: fit-content;
    padding: 10px 24px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    background: transparent;
    color: var(--textColor1);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
  }

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

  .pl6__btn--primary {
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    border-color: var(--secondStyleColor);
  }

  .pl6__btn--primary:hover {
    box-shadow: 0 6px 18px color-mix(in srgb, var(--secondStyleColor) 28%, transparent);
  }

  @media (max-width: 600px) {
    .pl6 { padding: 48px 0; }
    .pl6__head { margin-bottom: 36px; }
    .pl6__name { flex-direction: column; gap: 4px; }
  }

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



  /* ===========================
     Extra 16 — Stats Counter
     Animated counters + grid pattern bg + bar chart decoration
     =========================== */

  .sth16 {
    position: relative;
    padding: clamp(64px, 7vw, 110px) 0;
    overflow: hidden;
    color: var(--textColor1);
    background: var(--bodyBG);
  }

  /* Background grid pattern */
  .sth16__bg-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.04;
    background-image:
      repeating-linear-gradient(
        0deg,
        var(--secondStyleColor) 0,
        var(--secondStyleColor) 1px,
        transparent 1px,
        transparent 60px
      ),
      repeating-linear-gradient(
        90deg,
        var(--secondStyleColor) 0,
        var(--secondStyleColor) 1px,
        transparent 1px,
        transparent 60px
      );
  }

  /* Animated bar chart decoration */
  .sth16__bars {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 200px;
    pointer-events: none;
    opacity: 0.04;
    z-index: 0;
  }

  .sth16__bar {
    width: 40px;
    border-radius: 4px 4px 0 0;
    background: var(--secondStyleColor);
    animation: sth16-barGrow 3s ease-in-out infinite alternate;
  }

  .sth16__bar--1 { height: 60%; animation-delay: 0s; }
  .sth16__bar--2 { height: 85%; animation-delay: 0.3s; }
  .sth16__bar--3 { height: 45%; animation-delay: 0.6s; }
  .sth16__bar--4 { height: 95%; animation-delay: 0.9s; }
  .sth16__bar--5 { height: 70%; animation-delay: 1.2s; }

  @keyframes sth16-barGrow {
    0% { transform: scaleY(0.7); }
    100% { transform: scaleY(1); }
  }

  /* Container */
  .sth16 .container {
    position: relative;
    z-index: 1;
  }

  /* Header */
  .sth16__head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
  }

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

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

  /* Stats grid */
  .sth16__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
  }

  /* Stat block */
  .sth16__stat {
    position: relative;
    flex: 1;
    min-width: 180px;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 24px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .sth16__stat.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Hover pulse ring */
  .sth16__pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1.5px solid var(--secondStyleColor);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .sth16__stat:hover .sth16__pulse {
    opacity: 0.25;
    animation: sth16-pulseRing 1.2s ease-out infinite;
  }

  @keyframes sth16-pulseRing {
    0% {
      transform: translate(-50%, -50%) scale(0.8);
      opacity: 0.3;
    }
    100% {
      transform: translate(-50%, -50%) scale(2);
      opacity: 0;
    }
  }

  /* Icon */
  .sth16__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 18%, transparent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .sth16__stat:hover .sth16__icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  /* Number */
  .sth16__number {
    display: flex;
    align-items: baseline;
    gap: 2px;
  }

  .sth16__counter {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--textColor1);
    font-variant-numeric: tabular-nums;
  }

  .sth16__suffix {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    color: var(--secondStyleColor);
  }

  /* Label */
  .sth16__label {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
    letter-spacing: 0.02em;
  }

  /* Divider */
  .sth16__divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(
      to bottom,
      transparent,
      color-mix(in srgb, var(--secondStyleColor) 18%, transparent),
      transparent
    );
    flex-shrink: 0;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .sth16__bar {
      animation: none;
    }
    .sth16__pulse {
      animation: none !important;
    }
    .sth16__icon {
      transition: none;
    }
    .sth16__stat {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }

  /* Responsive -- tablet */
  @media (max-width: 900px) {
    .sth16__grid {
      gap: 0;
    }
    .sth16__stat {
      min-width: 140px;
      padding: 24px 16px;
    }
  }

  /* Responsive -- mobile */
  @media (max-width: 600px) {
    .sth16__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }
    .sth16__divider {
      display: none;
    }
    .sth16__stat {
      max-width: none;
      padding: 24px 16px;
    }
    .sth16__bars {
      opacity: 0.02;
    }
  }



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



  .gl11 {
    padding: 60px 0;
    overflow: hidden;
  }

  .gl11__head {
    text-align: center;
    margin-bottom: 40px;
  }

  .gl11__head p {
    margin: 12px auto 0;
    color: var(--textColor1);
    text-wrap: balance;
    text-align: center;
  }

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

  .gl11__row {
    display: flex;
    width: max-content;
  }

  .gl11__track {
    display: flex;
    gap: 16px;
    padding-right: 16px;
  }

  .gl11__row--left {
    animation: gl11-scroll-left 70s linear infinite;
  }

  .gl11__row--right {
    animation: gl11-scroll-right 80s linear infinite;
  }

  .gl11__marquee-wrap:hover .gl11__row {
    animation-play-state: paused;
  }

  @keyframes gl11-scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  @keyframes gl11-scroll-right {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0);
    }
  }

  .gl11__item {
    flex-shrink: 0;
    width: 340px;
    height: 240px;
    border-radius: var(--borderRadius);
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--textColor1) 10%, transparent);
    transition: border-color 0.3s ease;
  }

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

  .gl11__item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
  }

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

  @media (max-width: 950px) {
    .gl11__item {
      width: 280px;
      height: 200px;
    }
  }

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

    .gl11__head {
      margin-bottom: 28px;
    }

    .gl11__marquee-wrap {
      gap: 12px;
    }

    .gl11__track {
      gap: 12px;
      padding-right: 12px;
    }

    .gl11__item {
      width: 220px;
      height: 160px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .gl11__row--left,
    .gl11__row--right {
      animation: none;
    }

    .gl11__item img {
      transition: none;
    }
  }



  .featuresSection {
    padding: 80px 0;
    background: var(--bodyBG);
    color: var(--textColor1);
  }

  .featuresWrapper {
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  /* Header */
  .featuresHeader {
    max-width: 720px;
    margin: 0 auto 50px auto;
    text-align: center;
  }

  .featuresEyebrow {
    font-size: 13px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--secondStyleColor);
    font-weight: 600;
    margin-bottom: 10px;
  }

  .featuresTitle {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--textColor1);
  }

  .featuresSubtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--textSecondary);
  }

  /* Grid */
  .featuresGrid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .featureCard {
    background: transparent;
    border-radius: var(--borderRadius);
    padding: 22px 22px 24px 22px;
    border: 4px dotted var(--secondStyleColor);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.45);
    transition: 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .featureCard:hover {
    border-color: var(--secondStyleColor);
    transform: translateY(-4px);
  }

  .featureIcon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(2, 255, 57, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
  }

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

  .featureTitle {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
  }

  .featureText {
    font-size: 14px;
    line-height: 1.6;
    color: var(--textSecondary);
  }

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



  .aboutWrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 20px;
  }
  .about-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .about-left a {
    padding: 15px 20px;
    background-color: var(--secondStyleColor);
    border-radius: var(--borderRadius);
    width: fit-content;
    color: var(--textColor2);
    font-weight: 900;
    text-transform: uppercase;
  }
  .about-right {
    display: flex;
    align-items: center;
    gap: 20px;
    .a_img {
      height: 400px;
      object-position: 50% 20%;
      border-radius: var(--borderRadius);
      img {
        border-radius: inherit;
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: 50% 20%;
      }
    }
  }
  @media (max-width: 800px) {
    .aboutWrapper {
      display: flex;
      flex-direction: column;
    }
    .about-right {
      display: flex;
      flex-direction: column;
    }
    .about-right {
      width: 100%;
    }
    .a_img {
      width: 100%;
    }
  }



  /* ===== PARTNERS v10 — 3D perspective tilt card ===== */

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

  .pt10__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 40%;
    z-index: 0;
    opacity: 0.1;
    filter: blur(6px);
  }

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

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

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

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

  /* Scene */
  .pt10__scene {
    display: flex;
    justify-content: center;
    perspective: 800px;
  }

  .pt10__card {
    width: min(340px, 80vw);
    aspect-ratio: 1 / 1.1;
    transition: transform 0.15s ease;
    transform-style: preserve-3d;
  }

  .pt10__card-face {
    width: 100%;
    height: 100%;
    border-radius: calc(var(--borderRadius) * 1.2);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 22%, transparent);
    background: linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
      0 30px 70px rgba(0, 0, 0, 0.3),
      0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 30px;
    overflow: hidden;
  }

  /* Orbiting rings */
  .pt10__ring {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

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

  .pt10__ring span:nth-child(1) {
    inset: 8%;
    animation: pt10Orbit 12s linear infinite;
  }

  .pt10__ring span:nth-child(2) {
    inset: 18%;
    animation: pt10Orbit 18s linear infinite reverse;
  }

  .pt10__ring span:nth-child(3) {
    inset: 28%;
    animation: pt10Orbit 24s linear infinite;
  }

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

  /* Logo */
  .pt10__logo-area {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .pt10__logo-area:hover {
    transform: scale(1.06);
  }

  .pt10__logo-area img {
    max-width: min(200px, 55%);
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
  }

  .pt10__label {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 6px 18px;
    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);
  }

  /* Responsive */
  @media (max-width: 800px) {
    .pt10__card {
      width: min(300px, 75vw);
    }
  }

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

    .pt10__head {
      margin-bottom: 36px;
    }

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

    .pt10__card {
      width: min(260px, 75vw);
    }

    .pt10__card-face {
      padding: 24px;
      gap: 18px;
    }

    .pt10__logo-area img {
      max-width: min(160px, 50%);
    }

    .pt10__label {
      font-size: 11px;
      padding: 5px 14px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .pt10__ring span {
      animation: none;
    }
    .pt10__card,
    .pt10__logo-area {
      transition: none;
    }
  }



  /* ===========================
     Reviews 19 — Infinite Carousel
     CSS-animated scrolling track + orb bg + 3D hover tilt
     =========================== */

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

  /* Floating orbs */
  .rv19__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    will-change: transform;
  }

  .rv19__orb--1 {
    width: 320px;
    height: 320px;
    background: var(--secondStyleColor);
    opacity: 0.06;
    top: 10%;
    left: -5%;
    animation: rv19-orbFloat 12s ease-in-out infinite;
  }

  .rv19__orb--2 {
    width: 250px;
    height: 250px;
    background: var(--accent2);
    opacity: 0.04;
    bottom: 5%;
    right: -3%;
    animation: rv19-orbFloat 12s ease-in-out infinite -4s;
  }

  .rv19__orb--3 {
    width: 200px;
    height: 200px;
    background: var(--secondStyleColor);
    opacity: 0.04;
    top: 50%;
    left: 60%;
    animation: rv19-orbFloat 12s ease-in-out infinite -8s;
  }

  @keyframes rv19-orbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-40px) scale(1.08); }
  }

  /* Grain overlay */
  .rv19__grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.04;
    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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  }

  /* Decorative giant quote */
  .rv19__big-quote {
    position: absolute;
    font-size: 18rem;
    color: var(--secondStyleColor);
    opacity: 0.03;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    pointer-events: none;
    line-height: 1;
    z-index: 0;
  }

  /* Header */
  .rv19__head {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 560px;
    margin: 0 auto 48px;
    display: grid;
    gap: 10px;
  }

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

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

  /* Carousel wrapper */
  .rv19__carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 2;
  }

  .rv19__track {
    display: flex;
    gap: 28px;
    width: max-content;
    animation: rv19-scroll 30s linear infinite;
  }

  .rv19__carousel:hover .rv19__track {
    animation-play-state: paused;
  }

  @keyframes rv19-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* Card */
  .rv19__card {
    width: 340px;
    flex-shrink: 0;
    background: color-mix(in srgb, var(--secondStyleColor) 5%, transparent);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 14%, transparent);
    border-radius: var(--borderRadius);
    padding: 32px 28px 28px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition:
      transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
      box-shadow 0.4s ease;
  }

  .rv19__card:hover {
    transform: rotateY(-3deg) rotateX(2deg) translateY(-6px);
    box-shadow: 0 20px 50px color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  }

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

  /* Text */
  .rv19__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: var(--textColor1);
    opacity: 0.85;
    flex: 1;
    position: relative;
    padding-left: 16px;
  }

  .rv19__text::before {
    content: '\201C';
    position: absolute;
    left: -2px;
    top: -6px;
    font-size: 2rem;
    color: var(--secondStyleColor);
    opacity: 0.4;
  }

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

  .rv19__avatar {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(
      135deg,
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent),
      color-mix(in srgb, var(--accent2) 25%, 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);
  }

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

  .rv19__role {
    margin: 0;
    font-size: 12px;
    color: color-mix(in srgb, var(--textColor1) 55%, transparent);
    line-height: 1.4;
  }

  /* Dots */
  .rv19__dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 36px;
    position: relative;
    z-index: 2;
  }

  .rv19__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    transition: all 0.3s ease;
  }

  .rv19__dot--active {
    background: var(--secondStyleColor);
    width: 24px;
    border-radius: 4px;
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .rv19__orb {
      animation: none !important;
    }
    .rv19__track {
      animation: none !important;
    }
    .rv19__card {
      transition: none !important;
    }
  }

  /* Responsive -- tablet */
  @media (max-width: 900px) {
    .rv19__card {
      width: 300px;
      padding: 26px 22px 24px;
    }
    .rv19__big-quote {
      font-size: 12rem;
    }
  }

  /* Responsive -- mobile */
  @media (max-width: 600px) {
    .rv19__card {
      width: 280px;
      padding: 24px 20px 22px;
    }
    .rv19__big-quote {
      font-size: 8rem;
    }
  }



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



  .ft6 {
    position: relative;
    padding: 56px 20px 24px;
    color: var(--textColor1);
    overflow: hidden;
  }

  /* ── Top Glow ── */
  .ft6__glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 200px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    filter: blur(120px);
    opacity: 0.08;
    pointer-events: none;
  }

  /* ── Container ── */
  .ft6 .container {
    position: relative;
    z-index: 1;
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* ── Logo ── */
  .ft6__logo {
    color: var(--textColor1);
    text-decoration: none;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
    transition: color 0.2s ease;
  }

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

  /* ── Description ── */
  .ft6__desc {
    font-size: 14px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 50%, transparent);
    max-width: 400px;
    margin: 0 0 28px;
  }

  /* ── Social ── */
  .ft6__social {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
  }

  .ft6__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--textColor1) 7%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid color-mix(in srgb, var(--textColor1) 10%, transparent);
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    text-decoration: none;
    font-size: 16px;
    transition:
      background 0.25s ease,
      color 0.25s ease,
      border-color 0.25s ease,
      transform 0.25s ease;
  }

  .ft6__social a:hover {
    background: color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
    border-color: color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
    color: var(--secondStyleColor);
    transform: translateY(-3px);
  }

  /* ── Divider ── */
  .ft6__divider {
    width: 100%;
    max-width: 300px;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      color-mix(in srgb, var(--textColor1) 15%, transparent) 30%,
      color-mix(in srgb, var(--secondStyleColor) 40%, transparent) 50%,
      color-mix(in srgb, var(--textColor1) 15%, transparent) 70%,
      transparent
    );
    position: relative;
    margin-bottom: 28px;
  }

  .ft6__diamond {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 7px;
    height: 7px;
    background: var(--secondStyleColor);
    border-radius: 1px;
  }

  /* ── Navigation ── */
  .ft6__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
    margin-bottom: 32px;
  }

  .ft6__nav a {
    position: relative;
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s ease;
  }

  .ft6__nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--secondStyleColor);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.25s ease;
  }

  .ft6__nav a:hover {
    color: var(--textColor1);
  }

  .ft6__nav a:hover::after {
    transform: scaleX(1);
  }

  /* ── Bottom ── */
  .ft6__bottom {
    display: flex;
    align-items: center;
    gap: 24px;
  }

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

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

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

  @media (max-width: 800px) {
    .ft6__nav {
      gap: 20px;
    }

    .ft6__bottom {
      flex-direction: column;
      gap: 6px;
    }
  }

  @media (max-width: 600px) {
    .ft6 {
      padding: 40px 16px 20px;
    }

    .ft6__desc {
      font-size: 13px;
    }

    .ft6__nav {
      gap: 16px;
    }

    .ft6__nav a {
      font-size: 12px;
    }

    .ft6__social a {
      width: 36px;
      height: 36px;
      font-size: 14px;
    }

    .ft6__glow {
      width: 300px;
      opacity: 0.06;
    }
  }

  /* ── Reduced Motion ── */
  @media (prefers-reduced-motion: reduce) {
    .ft6__social a,
    .ft6__nav a,
    .ft6__nav a::after,
    .ft6__logo {
      transition: none;
    }
  }



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