
:root {
  --bg: #1c1410;
  --bg-card: #2a1f17;
  --text: #f0e6d3;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #ff6b35;
  --accent-rgb: 255,107,53;
  --accent2: #86ff35;
  --accent2-rgb: 134,255,53;
  --accent3: #ff4fb2;
  --accent3-rgb: 255,79,178;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --font: 'Inter', sans-serif;
  --font-heading: 'Inter', sans-serif;
  --bodyBG: #1c1410;
  --textColor1: #f0e6d3;
  --textColor2: #111111;
  --textSecondary: #bbb2a2;
  --textMuted: #867d72;
  --secondStyleColor: #ff6b35;
  --bgCard: #2a1f17;
  --bgAlt: #2d2520;
  --borderSubtle: rgba(255,255,255,0.08);
  --borderRadius: 12px;
  --maxWidthContainer: 1200px;
  --scrollbarBg: rgba(255,255,255,0.1);
  --itemBgColor: transparent;
}

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

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

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

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

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

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

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

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

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

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


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

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

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

  /* layout */

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

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

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

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

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

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

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

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

  /* ссылки */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .mobile__menu {
    display: none;
  }

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

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

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

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

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

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

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

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

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

    header .btn {
      display: none;
    }
  }

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

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

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



  .hero {
    position: relative;
    padding: 140px 0;
    color: var(--textColor1);
    overflow: hidden;
  }

  /* Background */
  .heroBG {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(10px) brightness(0.45);
    z-index: -1;
  }

  /* Layout */
  .hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
  }

  /* Left image */
  .hero-img {
    max-width: 520px;
    border-radius: var(--borderRadius);
    object-fit: contain;
    max-height: 500px;
  }

  /* Right text */
  .hero-content {
    width: 50%;
    max-width: 560px;
  }

  .hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--textColor1);
    margin-bottom: 30px;
  }

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

  .hero-content a:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
  }

  /* Responsive */
  @media (max-width: 900px) {
    .hero-flex {
      flex-direction: column;
      text-align: center;
      gap: 30px;
    }

    .hero-img {
      width: 80%;
    }

    .hero-content {
      width: 100%;
    }

    .hero-content h1 {
      font-size: 36px;
    }

    .hero-content p {
      font-size: 16px;
    }
  }

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

    .hero-img {
      display: none;
    }

    .hero-content h1 {
      font-size: 30px;
    }
  }



  :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 .swiper-wrapper {
    padding-top: 36px;
    padding-bottom: 24px;
    position: relative;
  }

  .toc .swiper-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
      transparent,
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent) 10%,
      color-mix(in srgb, var(--secondStyleColor) 30%, transparent) 90%,
      transparent
    );
    transform: translateY(-50%);
    pointer-events: none;
  }

  .toc a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    white-space: nowrap;
    color: color-mix(in srgb, var(--textColor1) 65%, transparent);
    padding: 28px 24px 10px;
    border-radius: 0;
    background-color: var(--itemBgColor);
    border: none;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
  }

  .toc a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(1);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: color-mix(in srgb, var(--secondStyleColor) 60%, transparent);
    border: 2px solid var(--secondStyleColor);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -moz-transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -ms-transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    -o-transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  }

  .toc a::after {
    content: "";
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 8px;
    background: color-mix(in srgb, var(--secondStyleColor) 40%, transparent);
    transition: background-color 0.3s ease;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -ms-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
  }

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

  .toc a:hover::before,
  .toc a:focus::before {
    transform: translateX(-50%) scale(1.35);
    background: var(--secondStyleColor);
    box-shadow: 0 0 0 6px color-mix(in srgb, var(--secondStyleColor) 20%, transparent),
                0 0 16px color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  .toc a:hover::after,
  .toc a:focus::after {
    background: var(--secondStyleColor);
  }

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

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

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

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

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

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

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

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



  /* ===== PARTNERS v5 — Cinematic split with spotlight card ===== */

  .pt5 {
    position: relative;
    padding: clamp(60px, 8vw, 110px) 0;
    color: var(--textColor1);
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
  }

  /* Background image */
  .pt5__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 30%;
    z-index: 0;
    opacity: 0.15;
    filter: blur(4px);
  }

  /* Dark gradient overlay */
  .pt5__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0.6) 100%
    );
    pointer-events: none;
  }

  /* Dot pattern */
  .pt5__dots {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: radial-gradient(
      rgba(255, 255, 255, 0.07) 1px,
      transparent 1px
    );
    background-size: 28px 28px;
    pointer-events: none;
    mask-image: radial-gradient(
      ellipse 70% 60% at 50% 50%,
      #000 20%,
      transparent 70%
    );
  }

  /* Layout */
  .pt5__shell {
    position: relative;
    width: 100%;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
  }

  /* Left — text */
  .pt5__left {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .pt5__kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    font-weight: 700;
    color: var(--secondStyleColor);
  }

  .pt5__left h2 {
    margin: 0;
    font-size: clamp(30px, 4.5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }

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

  /* Stats */
  .pt5__stats {
    display: flex;
    gap: 24px;
    margin-top: 10px;
  }

  .pt5__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid
      color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 0.3s ease;
  }

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

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

  .pt5__stat-lbl {
    font-size: 12px;
    color: color-mix(in srgb, var(--textColor1) 60%, transparent);
    letter-spacing: 0.04em;
  }

  /* Right — logo card */
  .pt5__right {
    display: flex;
    justify-content: center;
  }

  .pt5__card {
    position: relative;
    width: min(360px, 100%);
    aspect-ratio: 1 / 1;
    border-radius: calc(var(--borderRadius) * 1.2);
    padding: 3px;
    overflow: hidden;
  }

  /* Animated conic border */
  .pt5__border-anim {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: conic-gradient(
      from 0deg,
      transparent 0%,
      var(--secondStyleColor) 10%,
      transparent 20%,
      transparent 50%,
      var(--secondStyleColor) 60%,
      transparent 70%,
      transparent 100%
    );
    animation: pt5Rotate 6s linear infinite;
    opacity: 0.5;
    transition: opacity 0.3s ease;
  }

  .pt5__card:hover .pt5__border-anim {
    opacity: 1;
  }

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

  .pt5__card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: calc(var(--borderRadius) * 1.2 - 3px);
    background: var(--bodyBG);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  /* Spotlight effect */
  .pt5__spotlight {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 100%;
    background: radial-gradient(
      ellipse 40% 50% at 50% 0%,
      color-mix(in srgb, var(--secondStyleColor) 14%, transparent),
      transparent 70%
    );
    pointer-events: none;
    animation: pt5Breathe 4s ease-in-out infinite alternate;
  }

  @keyframes pt5Breathe {
    0% {
      opacity: 0.6;
    }
    100% {
      opacity: 1;
    }
  }

  .pt5__logo-link {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .pt5__logo-link:hover {
    transform: scale(1.06);
  }

  .pt5__logo-link img {
    max-width: min(220px, 65%);
    height: auto;
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.4));
  }

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

    .pt5__card {
      width: min(300px, 100%);
    }

    .pt5__desc {
      font-size: 14px;
    }
  }

  @media (max-width: 800px) {
    .pt5__shell {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .pt5__left {
      align-items: center;
    }

    .pt5__desc {
      max-width: 100%;
    }

    .pt5__stats {
      justify-content: center;
    }

    .pt5__card {
      width: min(320px, 85vw);
    }
  }

  @media (max-width: 600px) {
    .pt5 {
      padding: 50px 0;
      min-height: auto;
    }

    .pt5__left h2 {
      font-size: 26px;
    }

    .pt5__stats {
      gap: 12px;
      flex-wrap: wrap;
    }

    .pt5__stat {
      padding: 10px 14px;
    }

    .pt5__stat-val {
      font-size: 18px;
    }

    .pt5__card {
      width: min(280px, 80vw);
    }

    .pt5__logo-link img {
      max-width: min(180px, 60%);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .pt5__border-anim {
      animation: none;
      opacity: 0.3;
    }
    .pt5__spotlight {
      animation: none;
    }
    .pt5__stat,
    .pt5__logo-link {
      transition: none;
    }
  }



  /* ===== FEATURES v15 — SVG dot-grid bg + staggered masonry ===== */

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

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

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

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

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

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

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

  /* Masonry grid */
  .ft15__masonry {
    columns: 3;
    column-gap: 18px;
  }

  .ft15__card {
    break-inside: avoid;
    margin-bottom: 18px;
    border-radius: var(--borderRadius);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 12%, transparent);
    background: rgba(255, 255, 255, 0.03);
    padding: 26px 22px;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

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

  /* Image cards */
  .ft15__card--tall,
  .ft15__card--wide {
    padding: 0;
    overflow: hidden;
  }

  .ft15__card-img {
    overflow: hidden;
  }

  .ft15__card--tall .ft15__card-img {
    aspect-ratio: 4 / 3;
  }

  .ft15__card--wide .ft15__card-img {
    aspect-ratio: 16 / 8;
  }

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

  .ft15__card:hover .ft15__card-img img {
    transform: scale(1.05);
  }

  .ft15__card-body {
    padding: 20px 22px 24px;
  }

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

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

  /* Icon cards */
  .ft15__ico {
    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;
    transition: transform 0.3s ease;
  }

  .ft15__card:hover .ft15__ico {
    transform: scale(1.12) rotate(-5deg);
  }

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

  .ft15__card h3 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 600;
  }

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

  /* Responsive */
  @media (max-width: 950px) {
    .ft15__masonry {
      columns: 2;
    }
  }

  @media (max-width: 800px) {
    .ft15__card h3,
    .ft15__card-body h3 {
      font-size: 16px;
    }

    .ft15__card p,
    .ft15__card-body p {
      font-size: 13px;
    }
  }

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

    .ft15__head {
      margin-bottom: 36px;
    }

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

    .ft15__masonry {
      columns: 1;
    }
  }

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



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

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

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

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

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

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

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

  .rm11__num {
    border-radius: var(--borderRadius);
    background: linear-gradient(
      160deg,
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent),
      color-mix(in srgb, var(--secondStyleColor) 10%, transparent)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease;
  }

  .rm11__item:hover .rm11__num {
    transform: translateY(-3px);
  }

  .rm11__num span {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondStyleColor);
    line-height: 1;
  }

  .rm11__num--outline {
    background: transparent;
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 20%, transparent);
  }

  .rm11__body {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: center;
    padding: 20px 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.25s ease, border-color 0.25s ease;
  }

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

  .rm11__icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondStyleColor);
    font-size: 18px;
    flex-shrink: 0;
  }

  .rm11__text h3 {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 700;
  }

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

  @media (max-width: 700px) {
    .rm11__item { grid-template-columns: 60px 1fr; }
    .rm11__num span { font-size: 24px; }
    .rm11__body { grid-template-columns: 1fr; gap: 10px; }
    .rm11__icon { width: 36px; height: 36px; font-size: 16px; }
  }

  @media (max-width: 600px) {
    .rm11 { padding: 48px 0; }
    .rm11__head { margin-bottom: 36px; }
  }

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



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

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

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

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

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

  .pl3__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 820px;
    margin: 0 auto;
  }

  .pl3__card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: clamp(22px, 3vw, 32px);
    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;
  }

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

  .pl3__card--featured {
    grid-row: span 2;
    border-color: color-mix(in srgb, var(--secondStyleColor) 25%, transparent);
    background: linear-gradient(165deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    box-shadow: 0 0 50px color-mix(in srgb, var(--secondStyleColor) 8%, transparent);
  }

  .pl3__tag {
    display: inline-block;
    width: fit-content;
    padding: 4px 12px;
    border-radius: 100px;
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

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

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

  .pl3__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
  }

  .pl3__amount {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    color: var(--secondStyleColor);
    line-height: 1;
  }

  .pl3__period {
    font-size: 14px;
    color: color-mix(in srgb, var(--textColor1) 45%, transparent);
  }

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

  .pl3__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: color-mix(in srgb, var(--textColor1) 75%, transparent);
  }

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

  .pl3__btn {
    display: block;
    text-align: center;
    padding: 11px 22px;
    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.25s ease;
    margin-top: auto;
  }

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

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

  .pl3__btn--primary:hover {
    box-shadow: 0 8px 24px color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  @media (max-width: 700px) {
    .pl3__grid { grid-template-columns: 1fr; max-width: 400px; }
    .pl3__card--featured { grid-row: span 1; order: -1; }
  }

  @media (max-width: 600px) {
    .pl3 { padding: 48px 0; }
    .pl3__head { margin-bottom: 36px; }
  }

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



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



  /* ===========================
     Gallery 15 — Hover Reveal with Abstract Gradient Overlays
     CSS grid + clip-path reveal + morphing shapes
     =========================== */

  .gal15 {
    position: relative;
    overflow: hidden;
    background: var(--bodyBG);
    padding: 100px 20px;
  }

  /* Background glows */
  .gal15__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
    opacity: 0.1;
    will-change: transform;
  }

  .gal15__glow--1 {
    width: 500px;
    height: 500px;
    background: var(--secondStyleColor);
    top: -100px;
    right: -80px;
    animation: gal15-float1 18s ease-in-out infinite;
  }

  .gal15__glow--2 {
    width: 400px;
    height: 400px;
    background: var(--accent2);
    bottom: -80px;
    left: -60px;
    animation: gal15-float2 22s ease-in-out infinite;
  }

  @keyframes gal15-float1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, 40px); }
  }

  @keyframes gal15-float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -30px); }
  }

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

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

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

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

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

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

  /* Grid */
  .gal15__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 16px;
  }

  .gal15__item--tall {
    grid-row: span 2;
  }

  .gal15__item--wide {
    grid-column: span 2;
  }

  /* Item */
  .gal15__item {
    position: relative;
    border-radius: var(--borderRadius);
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

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

  /* Static border */
  .gal15__item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid color-mix(in srgb, var(--textColor1) 10%, transparent);
    z-index: 5;
    pointer-events: none;
    transition: border-color 0.3s ease;
  }

  .gal15__item:hover::after {
    border-color: color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  /* Image */
  .gal15__img-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .gal15__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .gal15__item:hover .gal15__img-wrap img {
    transform: scale(1.06);
  }

  /* Abstract gradient overlay */
  .gal15__abstract {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.6;
    background: linear-gradient(
      135deg,
      color-mix(in srgb, var(--secondStyleColor) 45%, transparent) 0%,
      color-mix(in srgb, var(--accent2) 30%, transparent) 50%,
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent) 100%
    );
    clip-path: inset(0 0 0 0);
    transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    overflow: hidden;
  }

  .gal15__item:hover .gal15__abstract {
    clip-path: inset(0 100% 0 0);
  }

  /* Morphing shapes inside abstract overlay */
  .gal15__morph {
    position: absolute;
    border-radius: 50%;
    opacity: 0.25;
    filter: blur(30px);
    animation: gal15-morph 8s ease-in-out infinite;
  }

  .gal15__morph--a {
    width: 60%;
    height: 60%;
    top: -10%;
    left: -10%;
    background: var(--secondStyleColor);
  }

  .gal15__morph--b {
    width: 50%;
    height: 50%;
    bottom: -10%;
    right: -10%;
    background: var(--accent2);
    animation-delay: -4s;
    animation-direction: reverse;
  }

  @keyframes gal15-morph {
    0%, 100% {
      border-radius: 50% 30% 60% 40%;
      transform: translate(0, 0) scale(1);
    }
    25% {
      border-radius: 40% 60% 30% 50%;
      transform: translate(10px, -15px) scale(1.1);
    }
    50% {
      border-radius: 60% 40% 50% 30%;
      transform: translate(-5px, 10px) scale(0.95);
    }
    75% {
      border-radius: 30% 50% 40% 60%;
      transform: translate(8px, 5px) scale(1.05);
    }
  }

  /* Overlay content (title + tag) */
  .gal15__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    background: linear-gradient(
      to top,
      color-mix(in srgb, var(--bodyBG) 80%, transparent) 0%,
      color-mix(in srgb, var(--bodyBG) 30%, transparent) 40%,
      transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .gal15__item:hover .gal15__overlay {
    opacity: 1;
  }

  .gal15__tag {
    display: inline-block;
    width: fit-content;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--textColor2);
    background: var(--secondStyleColor);
    border-radius: 100px;
    margin-bottom: 10px;
    transform: translateY(-12px);
    transition: transform 0.4s 0.08s ease;
  }

  .gal15__item:hover .gal15__tag {
    transform: translateY(0);
  }

  .gal15__overlay h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--textColor1);
    margin: 0;
    transform: translateY(12px);
    transition: transform 0.4s 0.12s ease;
  }

  .gal15__item:hover .gal15__overlay h3 {
    transform: translateY(0);
  }

  /* Corner decorations */
  .gal15__corner {
    position: absolute;
    width: 24px;
    height: 24px;
    z-index: 4;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s 0.1s ease;
  }

  .gal15__item:hover .gal15__corner {
    opacity: 1;
  }

  .gal15__corner--tl {
    top: 12px;
    left: 12px;
    border-top: 2px solid var(--secondStyleColor);
    border-left: 2px solid var(--secondStyleColor);
  }

  .gal15__corner--br {
    bottom: 12px;
    right: 12px;
    border-bottom: 2px solid var(--secondStyleColor);
    border-right: 2px solid var(--secondStyleColor);
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .gal15__glow {
      animation: none;
    }
    .gal15__morph {
      animation: none;
    }
    .gal15__abstract {
      transition: none;
    }
    .gal15__img-wrap img {
      transition: none;
    }
    .gal15__overlay,
    .gal15__tag,
    .gal15__overlay h3,
    .gal15__corner {
      transition: none;
    }
    .gal15__item {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }

  /* Responsive -- tablet */
  @media (max-width: 950px) {
    .gal15 {
      padding: 80px 20px;
    }
    .gal15__grid {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 220px;
    }
    .gal15__item--wide {
      grid-column: span 2;
    }
    .gal15__item--tall {
      grid-row: span 2;
    }
  }

  /* Responsive -- mobile */
  @media (max-width: 600px) {
    .gal15 {
      padding: 64px 16px;
    }
    .gal15__grid {
      grid-template-columns: 1fr;
      grid-auto-rows: 240px;
    }
    .gal15__item--tall,
    .gal15__item--wide {
      grid-row: span 1;
      grid-column: span 1;
    }
    /* Show content by default on mobile (no hover) */
    .gal15__abstract {
      clip-path: inset(0 50% 0 0);
    }
    .gal15__overlay {
      opacity: 1;
    }
    .gal15__tag,
    .gal15__overlay h3 {
      transform: translateY(0);
    }
    .gal15__corner {
      opacity: 0.6;
    }
    .gal15__head {
      margin-bottom: 40px;
    }
    .gal15__glow {
      display: none;
    }
  }



  /* ===== MOBILE v7 — Two overlapping phones, mesh bg ===== */

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

  .mob7__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .mob7__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
  }

  .mob7__blob:nth-child(1) {
    width: 400px;
    height: 400px;
    background: var(--secondStyleColor);
    top: 20%;
    right: 10%;
  }

  .mob7__blob:nth-child(2) {
    width: 300px;
    height: 300px;
    background: var(--accent2);
    bottom: 10%;
    left: 20%;
  }

  .mob7 > .container {
    position: relative;
    z-index: 1;
    max-width: var(--maxWidthContainer);
    margin: 0 auto;
  }

  .mob7__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 50px;
  }

  /* Info */
  .mob7__info {
    text-align: left;
  }

  .mob7__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(var(--accent-rgb), 0.08);
    color: var(--secondStyleColor);
    border: 1px solid rgba(var(--accent-rgb), 0.15);
    margin: 0 0 16px;
  }

  .mob7__info h2 {
    margin: 0 0 16px;
    font-weight: 700;
  }

  .mob7__info > p {
    margin: 0 0 24px;
    line-height: 1.7;
    color: var(--textSecondary);
  }

  .mob7__rating {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .mob7__stars {
    display: flex;
    gap: 3px;
    color: #fbbf24;
    font-size: 16px;
  }

  .mob7__rating p {
    margin: 0;
    font-size: 13px;
    color: var(--textSecondary);
  }

  /* Phones */
  .mob7__phones {
    position: relative;
    width: 300px;
    height: 520px;
  }

  .mob7__phone {
    position: absolute;
    background: linear-gradient(145deg, #2a2a3e, #1a1a2e);
    border-radius: 36px;
    padding: 10px;
    box-shadow:
      0 0 0 1.5px rgba(255,255,255,0.06),
      0 30px 60px rgba(0,0,0,0.5);
  }

  .mob7__phone--front {
    width: 240px;
    height: 480px;
    bottom: 0;
    left: 0;
    z-index: 2;
  }

  .mob7__phone--back {
    width: 210px;
    height: 420px;
    top: 0;
    right: 0;
    z-index: 1;
    opacity: 0.7;
  }

  .mob7__notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 22px;
    background: #1a1a2e;
    border-radius: 0 0 14px 14px;
    z-index: 3;
  }

  .mob7__screen {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: var(--bgCard);
  }

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

  /* Actions */
  .mob7__actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .mob7__store {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--secondStyleColor);
    color: var(--bodyBG);
    border-radius: var(--borderRadius);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, opacity 0.2s;
    width: 100%;
  }

  .mob7__store:hover {
    transform: translateY(-2px);
    opacity: 0.9;
  }

  .mob7__store i {
    font-size: 28px;
  }

  .mob7__store span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    font-size: 16px;
  }

  .mob7__store small {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.8;
  }

  .mob7__note {
    margin: 6px 0 0;
    font-size: 12px;
    color: var(--textSecondary);
  }

  /* Responsive */
  @media (max-width: 900px) {
    .mob7__grid {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 40px;
    }

    .mob7__info {
      text-align: center;
    }

    .mob7__rating {
      justify-content: center;
    }

    .mob7__phones {
      margin: 0 auto;
      width: 260px;
      height: 450px;
    }

    .mob7__phone--front {
      width: 210px;
      height: 420px;
    }

    .mob7__phone--back {
      width: 180px;
      height: 360px;
    }

    .mob7__actions {
      align-items: center;
    }

    .mob7__store {
      width: auto;
    }
  }

  @media (max-width: 600px) {
    .mob7__phone--back {
      display: none;
    }

    .mob7__phones {
      width: 200px;
      height: 400px;
    }

    .mob7__phone--front {
      width: 200px;
      height: 400px;
      position: relative;
      border-radius: 28px;
      padding: 8px;
    }

    .mob7__screen {
      border-radius: 22px;
    }
  }



  /* ===========================
     Reviews 21 — Spotlight Quote with Diamond Ratings
     Large centered review + diamond indicators + radial glow
     =========================== */

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

  /* Radial glow background */
  .rev21__glow {
    position: absolute;
    width: 700px;
    height: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(
      circle,
      color-mix(in srgb, var(--secondStyleColor) 8%, transparent) 0%,
      transparent 70%
    );
    pointer-events: none;
    animation: rev21-pulse 10s ease-in-out infinite;
  }

  @keyframes rev21-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.7; }
  }

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

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

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

  /* Spotlight card */
  .rev21__spotlight {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 48px 40px;
    border-radius: var(--borderRadius);
    background: color-mix(in srgb, var(--bodyBG) 70%, transparent);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid color-mix(in srgb, var(--secondStyleColor) 10%, transparent);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

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

  /* Quote icon */
  .rev21__quote-icon {
    font-size: 36px;
    color: var(--secondStyleColor);
    opacity: 0.2;
  }

  /* Quote text */
  .rev21__text {
    margin: 0;
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.8;
    color: var(--textColor1);
    opacity: 0.88;
    font-style: italic;
    max-width: 580px;
  }

  /* Diamond rating */
  .rev21__diamonds {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .rev21__diamond {
    width: 14px;
    height: 14px;
    transform: rotate(45deg);
    border-radius: 2px;
    border: 1.5px solid color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
    transition: background 0.3s ease, border-color 0.3s ease;
  }

  .rev21__diamond--filled {
    background: var(--secondStyleColor);
    border-color: var(--secondStyleColor);
    box-shadow: 0 0 8px color-mix(in srgb, var(--secondStyleColor) 30%, transparent);
  }

  /* Author */
  .rev21__author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 4px;
  }

  .rev21__avatar {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(
      135deg,
      color-mix(in srgb, var(--secondStyleColor) 25%, transparent),
      color-mix(in srgb, var(--accent2) 25%, transparent)
    );
    border: 2px solid color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--secondStyleColor);
  }

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

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

  /* Decorative dots */
  .rev21__dots {
    display: flex;
    gap: 8px;
    margin-top: 8px;
  }

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

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

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

  /* Responsive -- tablet */
  @media (max-width: 900px) {
    .rev21__spotlight {
      padding: 40px 32px;
    }
  }

  /* Responsive -- mobile */
  @media (max-width: 600px) {
    .rev21__spotlight {
      padding: 32px 22px;
      gap: 20px;
    }
    .rev21__quote-icon {
      font-size: 28px;
    }
    .rev21__avatar {
      width: 44px;
      height: 44px;
      font-size: 13px;
    }
  }



  /* ===== EXTRA v15 — CTA with gradient waves, floating shapes, scan line ===== */

  .ex15 {
    position: relative;
    overflow: hidden;
    padding: clamp(80px, 9vw, 130px) 0;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--textColor1);
  }

  /* animated gradient waves */
  .ex15__waves {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 50% at 20% 80%, rgba(var(--accent-rgb), 0.18), transparent),
      radial-gradient(ellipse 60% 40% at 80% 20%, rgba(var(--accent2-rgb), 0.14), transparent),
      radial-gradient(ellipse 100% 60% at 50% 100%, rgba(var(--accent-rgb), 0.1), transparent);
    animation: ex15Wave 8s ease-in-out infinite alternate;
  }

  @keyframes ex15Wave {
    0% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.08) translateY(-12px); }
    100% { transform: scale(1) translateY(6px); }
  }

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

  /* floating shapes */
  .ex15__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    filter: blur(1px);
    animation: ex15Float 12s ease-in-out infinite;
  }

  .ex15__shape--1 {
    width: 180px;
    height: 180px;
    background: var(--secondStyleColor);
    top: 10%;
    left: 5%;
    animation-duration: 14s;
  }

  .ex15__shape--2 {
    width: 120px;
    height: 120px;
    background: var(--accent2);
    bottom: 15%;
    right: 8%;
    animation-delay: -4s;
  }

  .ex15__shape--3 {
    width: 80px;
    height: 80px;
    background: var(--secondStyleColor);
    top: 50%;
    right: 20%;
    animation-delay: -8s;
    border-radius: 4px;
    transform: rotate(45deg);
  }

  @keyframes ex15Float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(8deg); }
    66% { transform: translateY(15px) rotate(-5deg); }
  }

  /* corner brackets */
  .ex15__brackets {
    position: absolute;
    inset: 28px;
    pointer-events: none;
    z-index: 1;
  }

  .ex15__brackets span {
    position: absolute;
    width: 36px;
    height: 36px;
    border-color: var(--accent2);
    border-style: solid;
    opacity: 0.35;
  }

  .ex15__brackets span:nth-child(1) { top: 0; left: 0; border-width: 2px 0 0 2px; }
  .ex15__brackets span:nth-child(2) { top: 0; right: 0; border-width: 2px 2px 0 0; }
  .ex15__brackets span:nth-child(3) { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
  .ex15__brackets span:nth-child(4) { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

  /* scan line */
  .ex15__scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondStyleColor), transparent);
    opacity: 0.25;
    animation: ex15Scan 4s linear infinite;
    z-index: 1;
  }

  @keyframes ex15Scan {
    0% { top: 0; }
    100% { top: 100%; }
  }

  /* content */
  .ex15 .container {
    position: relative;
    z-index: 2;
  }

  .ex15__content {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
  }

  .ex15__content h2 {
    margin: 0 0 20px;
    font-size: clamp(28px, 5.5vw, 50px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--textColor1);
    text-shadow: 0 0 40px rgba(var(--accent-rgb), 0.35),
                 0 0 80px rgba(var(--accent-rgb), 0.15);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s, transform 0.7s;
  }

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

  .ex15__content p {
    margin: 0 0 36px;
    font-size: 15px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--textColor1) 70%, transparent);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s 0.15s, transform 0.7s 0.15s;
  }

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

  /* buttons */
  .ex15__btns {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s 0.3s, transform 0.7s 0.3s;
  }

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

  .ex15__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    font-size: 15px;
    font-weight: 700;
    color: var(--bodyBG);
    background: var(--secondStyleColor);
    border: none;
    border-radius: var(--borderRadius);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 0 24px color-mix(in srgb, var(--secondStyleColor) 35%, transparent);
  }

  .ex15__btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px color-mix(in srgb, var(--secondStyleColor) 55%, transparent);
  }

  .ex15__btn-sec {
    padding: 16px 32px;
    font-weight: 600;
    font-size: 15px;
    color: var(--accent2);
    background: transparent;
    border: 1.5px solid color-mix(in srgb, var(--accent2) 40%, transparent);
    border-radius: var(--borderRadius);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s;
  }

  .ex15__btn-sec:hover {
    background: color-mix(in srgb, var(--accent2) 8%, transparent);
    border-color: var(--accent2);
  }

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

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

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

    .ex15__btns {
      flex-direction: column;
      align-items: center;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .ex15__waves,
    .ex15__shape,
    .ex15__scanline {
      animation: none;
    }

    .ex15__content h2,
    .ex15__content p,
    .ex15__btns,
    .ex15__btn,
    .ex15__btn-sec {
      transition: none;
    }
  }



  /* ===== FAQ SECTION v2 (two-column layout) ===== */

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

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

  /* Header */
  .faqHeader {
    max-width: 760px;
    margin: 0 auto 40px auto;
    text-align: center;
  }

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

  .faqTitle {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 14px;
  }

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

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

  /* Item */
  .faqItem {
    padding: 22px 24px;
    border-radius: var(--borderRadius);
    border: 1px dotted var(--secondStyleColor);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
    transition: 0.2s ease;
  }

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

  .faqQuestion {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondStyleColor);
  }

  .faqAnswer {
    font-size: 15px;
    line-height: 1.7;
    color: var(--textSecondary);
  }

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



  .site-footer {
    border-top: 0.5px solid var(--secondStyleColor);
    padding: 20px 0;
  }
  .footerLogo {
    color: var(--textColor1);
  }

  .footer-inner {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .intoLinks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 600px;
    text-align: center;
    span {
      width: 8px;
      height: 8px;
      background-color: var(--secondStyleColor);
      border-radius: 50%;
    }
    a {
      transition: 0.3s all linear;
      transform-origin: left;
      text-decoration: none;
      color: var(--textColor1);
    }
    a:hover {
      text-decoration: underline;
    }
  }
  @media screen and (max-width: 750px) {
    .intoLinks {
      flex-direction: column;
      span {
        display: none;
      }
    }
  }

  .f-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .f-social i {
    color: var(--secondStyleColor);
  }
  .copy {
    text-align: center;
    opacity: 0.5;
  }
  .footer-links {
    display: flex;
    gap: 1rem;
  }

  .footer-links a {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.75rem;
  }

  .footer-links a:hover {
    color: #fff;
  }



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