
:root {
  --bg: #f0f4f8;
  --bg-card: #ffffff;
  --text: #2d3748;
  --text-muted: rgba(0,0,0,0.5);
  --accent: #3182ce;
  --accent-rgb: 49,130,206;
  --accent2: #b131ce;
  --accent2-rgb: 177,49,206;
  --accent3: #46d3a2;
  --accent3-rgb: 70,211,162;
  --border: rgba(0,0,0,0.08);
  --radius: 12px;
  --font: 'Karla', sans-serif;
  --font-heading: 'Karla', sans-serif;
  --bodyBG: #f0f4f8;
  --textColor1: #2d3748;
  --textColor2: #ffffff;
  --textSecondary: #5e6674;
  --textMuted: #8f96a0;
  --secondStyleColor: #3182ce;
  --bgCard: #ffffff;
  --bgAlt: #e0e5ea;
  --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;
}
.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; }


  /* ===== HEADER v8 — Command bar / terminal style ===== */

  .hd8 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: color-mix(in srgb, var(--bodyBG) 92%, transparent);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid color-mix(in srgb, var(--secondStyleColor) 15%, transparent);
  }

  /* Glowing top border */
  .hd8__glow-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      var(--secondStyleColor) 20%,
      var(--accent2) 50%,
      var(--secondStyleColor) 80%,
      transparent 100%
    );
    opacity: 0.8;
  }

  .hd8__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    gap: 24px;
  }

  /* Logo — terminal prompt */
  .hd8__logo {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    flex-shrink: 0;
    z-index: 110;
  }

  .hd8__prompt {
    color: var(--secondStyleColor);
    font-size: 20px;
    font-weight: 700;
  }

  .hd8__logo .logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--textColor1);
    letter-spacing: 0.02em;
  }

  .hd8__cursor {
    display: inline-block;
    width: 9px;
    height: 18px;
    background: var(--secondStyleColor);
    animation: hd8-blink 1s step-end infinite;
    border-radius: 1px;
    vertical-align: middle;
    margin-left: 2px;
  }

  @keyframes hd8-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }

  /* Desktop nav */
  .hd8__nav ul {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .hd8__nav .hd8__link {
    display: block;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: color-mix(in srgb, var(--textColor1) 65%, transparent);
    text-decoration: none;
    border-radius: var(--borderRadius);
    transition: color 0.2s ease, background 0.2s ease;
    letter-spacing: 0.02em;
  }

  .hd8__slash {
    color: var(--secondStyleColor);
    font-weight: 400;
    margin-right: 2px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
  }

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

  .hd8__nav .hd8__link:hover .hd8__slash {
    opacity: 1;
  }

  /* Right section — clock + CTA */
  .hd8__right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
  }

  .hd8__clock {
    font-size: 12px;
    font-weight: 600;
    color: color-mix(in srgb, var(--textColor1) 45%, transparent);
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    border-radius: var(--borderRadius);
    min-width: 72px;
    text-align: center;
  }

  /* CTA — bracket style */
  .hd8__cta {
    padding: 8px 18px;
    border-radius: var(--borderRadius);
    border: 1px solid var(--secondStyleColor);
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    color: var(--secondStyleColor);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  }

  .hd8__cta:hover {
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    box-shadow: 0 0 16px color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  /* Burger — hidden on desktop */
  .hd8__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: 8px;
    cursor: pointer;
    z-index: 110;
    transition: border-color 0.25s ease;
  }

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

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

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

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

  /* Mobile overlay */
  .hd8__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: 40px;
    transform: translateY(-100%);
    opacity: 0;
    transition:
      transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
      opacity 0.3s ease;
    pointer-events: none;
  }

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

  .hd8__mobile ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hd8__mobile .hd8__link {
    font-size: 20px;
    font-weight: 600;
    color: var(--textColor1);
    text-decoration: none;
    transition: color 0.2s ease;
    letter-spacing: 0.02em;
  }

  .hd8__prefix {
    color: var(--secondStyleColor);
    font-weight: 400;
    margin-right: 8px;
    opacity: 0.7;
  }

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

  .hd8__mobile-cta {
    padding: 14px 32px;
    border-radius: var(--borderRadius);
    border: 1px solid var(--secondStyleColor);
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.04em;
  }

  .stopScroll {
    overflow: hidden;
  }

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

    .hd8__right {
      display: none;
    }

    .hd8__burger {
      display: flex;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hd8__mobile,
    .hd8__burger-line,
    .hd8__burger,
    .hd8__cta,
    .hd8__nav .hd8__link,
    .hd8__slash {
      transition: none;
    }

    .hd8__cursor {
      animation: none;
      opacity: 1;
    }
  }



  /*  */
  .homeuyydgb {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    && img {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: -2;
      object-fit: cover;
      object-position: 50% 20%;
      opacity: 0.1;
    }

    && h1 {
      text-transform: uppercase;
      max-width: 900px;
    }

    && a {
      font-size: 18px;
      padding: 15px 52px;
      border-radius: var(--borderRadius);
      background-color: var(--textColor1);
      width: fit-content;
      color: var(--bodyBG);
      text-transform: uppercase;
      transition: 0.2s all cubic-bezier(0.23, 1, 0.32, 1);
      &&:hover {
        background-color: var(--secondStyleColor);
      }
    }
  }

  .homeuyydgb .container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    && .hrr {
      display: flex;
      flex-direction: column;
      gap: 20px;
      justify-content: center;
    }
    .hll {
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 30px;
      background-color: rgba(17, 17, 17, 0.4);
      position: relative;
      max-width: 500px;
      border-radius: var(--borderRadius);
      && span:first-child {
        font-size: 144px;
        font-weight: 900;
        color: var(--secondStyleColor);
      }
      && p {
        font-style: italic;
        color: var(--textColor1);
      }

      && .khvaejklj {
        font-size: 24px;
      }
    }
  }

  @media (max-width: 800px) {
    h1 {
      font-size: 44px;
    }
    .homeuyydgb .container {
      flex-direction: column;
      && .hrr {
        align-items: center;
        && h1 {
          text-align: center;
        }
        && p {
          text-align: center;
        }
      }
      && .hll {
        gap: 10px;
        padding: 10px;
        && span:first-child {
          font-size: 75px;
        }
      }
    }
  }



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

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

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

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

  .toc {
    background-color: transparent;
    counter-reset: toc-counter;
  }

  .toc a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    white-space: nowrap;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    padding: 10px 22px 10px 16px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    background-color: var(--itemBgColor);
    border: 1.5px solid color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    overflow: hidden;
    z-index: 0;
    transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -moz-transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -ms-transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -o-transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  }

  .toc a::before {
    content: counter(toc-counter, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    color: var(--textColor2);
    background: var(--secondStyleColor);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
  }

  .toc a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondStyleColor), color-mix(in srgb, var(--secondStyleColor) 40%, var(--textColor1)));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    -moz-transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    -ms-transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .toc a:hover,
  .toc a:focus {
    color: var(--textColor1);
    border-color: var(--secondStyleColor);
    background-color: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    box-shadow: 0 4px 16px color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
  }

  .toc a:hover::before,
  .toc a:focus::before {
    transform: scale(1.1);
  }

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

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

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

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

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

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

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

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

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



  /* ===== FEATURES v19 — Spotlight hero with SVG light rays + side cards ===== */

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

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

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

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

  .ft19__layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 22px;
    align-items: start;
  }

  /* Hero spotlight card */
  .ft19__hero {
    position: relative;
    border-radius: calc(var(--borderRadius) * 1.2);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: border-color 0.3s ease;
  }

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

  /* SVG rays */
  .ft19__rays {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 70%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
  }

  .ft19__ray {
    stroke: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    stroke-width: 1;
    animation: ft19Pulse 3s ease-in-out infinite alternate;
  }

  .ft19__ray:nth-child(2n) {
    animation-delay: 0.5s;
    stroke: color-mix(in srgb, var(--secondStyleColor) 5%, transparent);
  }

  .ft19__ray:nth-child(3n) {
    animation-delay: 1s;
  }

  @keyframes ft19Pulse {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
  }

  .ft19__hero-img {
    position: relative;
    z-index: 1;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }

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

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

  .ft19__hero-body {
    position: relative;
    z-index: 1;
    padding: 24px 26px 28px;
  }

  .ft19__kicker {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .ft19__hero-body h3 {
    margin: 0 0 10px;
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 700;
  }

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

  /* Side cards */
  .ft19__side {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .ft19__card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 20px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    background: rgba(255, 255, 255, 0.025);
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

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

  .ft19__ico {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    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;
  }

  .ft19__card:hover .ft19__ico {
    transform: scale(1.1);
  }

  .ft19__ico i {
    font-size: 16px;
    color: var(--secondStyleColor);
  }

  .ft19__card h3 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 600;
  }

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

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

  @media (max-width: 800px) {
    .ft19__layout {
      grid-template-columns: 1fr;
    }

    .ft19__side {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .ft19__hero-body h3 {
      font-size: 20px;
    }
  }

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

    .ft19__head {
      margin-bottom: 36px;
    }

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

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

    .ft19__card {
      padding: 18px 16px;
    }

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

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

    .ft19__hero-img img,
    .ft19__card,
    .ft19__ico {
      transition: none;
    }
  }



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

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

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

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

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

  .rm1__timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 680px;
    margin: 0 auto;
    padding-left: 32px;
  }

  .rm1__line {
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom,
      var(--secondStyleColor),
      color-mix(in srgb, var(--secondStyleColor) 15%, transparent));
  }

  .rm1__item {
    position: relative;
  }

  .rm1__dot {
    position: absolute;
    left: -32px;
    top: 20px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--secondStyleColor);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    z-index: 1;
  }

  .rm1__dot--outline {
    background: transparent;
    border: 2px solid var(--secondStyleColor);
  }

  .rm1__card {
    padding: 20px 24px;
    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.25s ease, border-color 0.25s ease;
  }

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

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

  .rm1__card h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
  }

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

  @media (max-width: 600px) {
    .rm1 { padding: 48px 0; }
    .rm1__head { margin-bottom: 36px; }
    .rm1__timeline { padding-left: 28px; }
    .rm1__dot { left: -28px; width: 14px; height: 14px; }
    .rm1__line { left: 6px; }
  }

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



  .about-us {
    position: relative;
  }

  .about-us .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .fghjkvbnwdh {
    width: 730px;
    height: 600px;
    && img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: var(--borderRadius);
      object-position: 50% 20%;
    }
  }

  .about-ussection-heading {
    margin-bottom: 40px;
    && h2 {
      text-wrap: balance;
    }
    && p {
      text-wrap: balance;
    }
  }

  .about-us .section-heading,
  .about-us .box-item,
  .about-us p,
  .about-us .box-item .gradient-button,
  .about-us .box-item span {
    position: relative;
    z-index: 1;
  }

  .about-us .box-item {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.07);
    padding: 20px 30px;
    border: 1px solid var(--secondStyleColor);
    border-radius: 40px;
    margin-bottom: 30px;
    color: var(--textColor1);
    && h3 {
      margin-bottom: 10px;
    }
  }

  .about-us .gradient-button {
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .about-us span {
    font-size: 14px;
    color: #7a7a7a;
  }

  .about-us .right-image {
    position: relative;
    z-index: 1;
  }

  @media (max-width: 800px) {
    .about-us .container {
      flex-direction: column;
    }
    .fghjkvbnwdh {
      width: 100%;
    }
  }



  .expertReview a {
    color: var(--secondStyleColor);
  }
  #expertreview h2 {
    text-align: center;
  }
  .expertReview p {
    border-left: 5px solid var(--secondStyleColor);
    padding-left: 20px;
    margin-bottom: 30px;
    span {
      font-style: italic;
      opacity: 0.6;
    }
  }



  /* ===== HOW v11 — Accordion ===== */

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

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

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

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

  .hw11__accordion {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hw11__item {
    border-radius: var(--borderRadius);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.01)
    );
    overflow: hidden;
    transition: border-color 0.3s ease;
  }

  .hw11__item[open] {
    border-color: color-mix(in srgb, var(--secondStyleColor) 50%, transparent);
  }

  .hw11__summary {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background 0.2s ease;
  }

  .hw11__summary::-webkit-details-marker {
    display: none;
  }

  .hw11__summary::marker {
    content: "";
  }

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

  .hw11__num {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  .hw11__label {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
  }

  .hw11__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
    position: relative;
    transition: transform 0.3s ease;
  }

  .hw11__icon::before,
  .hw11__icon::after {
    content: "";
    position: absolute;
    background: var(--secondStyleColor);
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .hw11__icon::before {
    width: 12px;
    height: 2px;
  }

  .hw11__icon::after {
    width: 2px;
    height: 12px;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
  }

  .hw11__item[open] .hw11__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
  }

  .hw11__body {
    padding: 0 24px 22px 84px;
  }

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

  /* Responsive */
  @media (max-width: 950px) {
    .hw11__accordion {
      max-width: 100%;
    }
  }

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

    .hw11__summary {
      gap: 14px;
      padding: 18px 20px;
    }

    .hw11__label {
      font-size: 16px;
    }
  }

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

    .hw11__head {
      margin-bottom: 32px;
    }

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

    .hw11__summary {
      gap: 12px;
      padding: 16px 16px;
    }

    .hw11__num {
      width: 36px;
      height: 36px;
      font-size: 12px;
      border-radius: 10px;
    }

    .hw11__label {
      font-size: 15px;
    }

    .hw11__body {
      padding: 0 16px 18px 16px;
    }

    .hw11__body p {
      font-size: 14px;
    }

    .hw11__icon {
      width: 24px;
      height: 24px;
    }

    .hw11__icon::before {
      width: 10px;
    }

    .hw11__icon::after {
      height: 10px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hw11__icon,
    .hw11__icon::after,
    .hw11__item {
      transition: none;
    }
  }



  /*  */
  .faq--timeline {
    padding: var(--sectionPadding);
    border-radius: var(--borderRadius);
  }

  .faq--timeline .container {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .faqEyebrow {
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    color: var(--secondStyleColor);
    font-size: 13px;
  }

  .faqHeader h2 {
    margin: 0 0 10px 0;
  }

  .faqIntro {
    margin: 0;
    color: var(--textColor1);
    opacity: 0.9;
  }

  /* Two fixed columns prevent items from jumping between columns */
  .faqGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: start;
  }

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

  .faqCard {
    position: relative;
    border-radius: calc(var(--borderRadius) * 0.8);
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 45%, transparent);
    background: color-mix(in srgb, var(--mainStyleColor) 7%, transparent);
    overflow: hidden;
    transition:
      border-color 0.25s ease,
      transform 0.25s ease,
      background-color 0.25s ease;
  }

  .faqCard::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--secondStyleColor);
    opacity: 0.35;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
    transform: scaleY(0.4);
    transform-origin: top;
  }

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

  .faqCard.is-open::before {
    opacity: 0.9;
    transform: scaleY(1);
  }

  .faqQuestion {
    width: 100%;
    min-height: 80px;
    padding: 18px 18px 14px 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    background: transparent;
    color: var(--textColor1);
    text-align: left;
    cursor: pointer;
    font-weight: 800;
    font-size: 18px;
    line-height: 1.35;
  }

  .faqQuestion:focus-visible {
    outline: 2px solid var(--secondStyleColor);
    outline-offset: 2px;
    border-radius: calc(var(--borderRadius) * 0.6);
  }

  .faqBadge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 36px;
    padding: 0 10px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--secondStyleColor) 16%, transparent);
    color: var(--secondStyleColor);
    font-weight: 900;
    font-size: 14px;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
  }

  .faqAnswer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 20px;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      padding 0.25s ease;
  }

  .faqAnswer p {
    margin: 0;
    padding: 0 0 18px 0;
    color: var(--textColor1);
    opacity: 0.95;
  }

  .faqCard.is-open .faqAnswer {
    opacity: 1;
    padding-bottom: 2px;
  }

  @media (max-width: 980px) {
    .faqGrid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 640px) {
    .faqQuestion {
      font-size: 17px;
      padding: 16px 16px 12px 16px;
    }

    .faqAnswer {
      padding: 0 16px;
    }
  }



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