/* ─── DESIGN TOKENS ───────────────────────────────────────────── */
    :root {
      --brand: #8327D2;
      --brand-dark: #6A1FB0;
      --brand-deep: #510F92;
      --brand-light: #9F45E8;
      --brand-pale: #F3EAFD;
      --brand-soft: #EAD8FA;
      --brand-mid: #C598F0;
      --surface: #FFFFFF;
      --canvas: #F9F7FD;
      --canvas-alt: #F2EEF9;
      --border: #E6DFF5;
      --border-soft: #EDE8F6;
      --ink-900: #0F0B1A;
      --ink-700: #2D2240;
      --ink-500: #5E4D78;
      --ink-400: #8474A0;
      --ink-300: #B0A2C8;
      --ink-200: #D7CEED;
      --ink-100: #EDE8F6;
      --success: #12B76A;
      --warning: #F79009;
      --danger: #F04438;
      --ff-heading: 'Sora', sans-serif;
      --ff-body: 'DM Sans', sans-serif;
      --r-sm: 8px;
      --r-md: 12px;
      --r-lg: 16px;
      --r-xl: 24px;
      --r-full: 999px;
      --shadow-xs: 0 1px 2px rgba(131, 39, 210, 0.06);
      --shadow-sm: 0 2px 8px rgba(131, 39, 210, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
      --shadow-md: 0 4px 20px rgba(131, 39, 210, 0.12), 0 2px 6px rgba(0, 0, 0, 0.05);
      --shadow-lg: 0 12px 48px rgba(131, 39, 210, 0.16), 0 4px 12px rgba(0, 0, 0, 0.06);
      --shadow-glow: 0 0 0 3px rgba(131, 39, 210, 0.16);
    }

    /* ─── RESET & BASE ────────────────────────────────────────────── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: var(--ff-body);
      background: var(--canvas);
      color: var(--ink-700);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      display: block;
      max-width: 100%;
    }

    ul {
      list-style: none;
    }

    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: var(--canvas);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--ink-200);
      border-radius: 99px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--brand-mid);
    }

    /* ─── TYPOGRAPHY ──────────────────────────────────────────────── */
    h1,
    h2,
    h3,
    h4,
    h5 {
      font-family: var(--ff-heading);
      color: var(--ink-900);
      letter-spacing: -0.025em;
      line-height: 1.15;
    }

    h1 {
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 800;
    }

    h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.75rem);
      font-weight: 700;
    }

    h3 {
      font-size: 1.25rem;
      font-weight: 600;
    }

    h4 {
      font-size: 1rem;
      font-weight: 600;
    }

    p {
      color: var(--ink-500);
      font-size: 1rem;
      line-height: 1.7;
    }

    .label {
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--brand);
    }

    em {
      font-style: normal;
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ─── UTILITIES ───────────────────────────────────────────────── */
    .container {
      /* max-width: 1200px;
      margin-inline: auto;
      padding-inline: clamp(1.25rem, 4vw, 4rem); */
      max-width: 1600px;
      margin-inline: auto;
      padding: 0 100px 0 100px;
    }

    @media (max-width: 560px) {
      .container {
        /* max-width: 1200px; */
        margin-inline: auto;
        /* padding-inline: clamp(1.25rem, 4vw, 5rem); */
        padding: 0 20px 0 20px;
      }
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      padding: 0.3125rem 0.875rem;
      border-radius: var(--r-full);
      background: var(--brand-pale);
      border: 1px solid var(--brand-soft);
      font-size: 0.75rem;
      font-weight: 600;
      font-family: var(--ff-heading);
      color: var(--brand-dark);
    }

    /* ─── BUTTONS ─────────────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.75rem 1.625rem;
      border-radius: var(--r-md);
      font-family: var(--ff-heading);
      font-size: 0.9375rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      outline: none;
      transition: all 0.2s ease;
    }

    .btn-primary {
      background: var(--brand);
      color: #fff;
      box-shadow: 0 4px 20px rgba(131, 39, 210, 0.35);
    }

    .btn-primary:hover {
      background: var(--brand-dark);
      transform: translateY(-1px);
      box-shadow: 0 8px 28px rgba(131, 39, 210, 0.45);
    }

    .btn-outline {
      background: transparent;
      color: var(--ink-700);
      border: 1.5px solid var(--border);
    }

    .btn-outline:hover {
      border-color: var(--brand-mid);
      color: var(--brand);
      background: var(--brand-pale);
    }

    .btn-sm {
      padding: 0.5rem 1.125rem;
      font-size: 0.875rem;
      border-radius: var(--r-sm);
    }

    .btn-lg {
      padding: 0.9375rem 2rem;
      font-size: 1rem;
    }


    /* ─── SCROLL REVEAL ───────────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }

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

    .reveal-delay-1 {
      transition-delay: 0.1s;
    }

    .reveal-delay-2 {
      transition-delay: 0.2s;
    }

    .reveal-delay-3 {
      transition-delay: 0.3s;
    }

    .reveal-delay-4 {
      transition-delay: 0.4s;
    }

    /* ════════════════════════════════════════════════════════════════
       1. HERO SECTION
    ════════════════════════════════════════════════════════════════ */
    .testi-hero {
      padding-top: 130px;
      padding-bottom: 80px;
      background: var(--canvas);
      position: relative;
      overflow: hidden;
    }

    .testi-hero-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }

    .testi-hero-orb-1 {
      position: absolute;
      top: -200px;
      right: -150px;
      width: 700px;
      height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle at center, rgba(131, 39, 210, 0.10) 0%, transparent 65%);
    }

    .testi-hero-orb-2 {
      position: absolute;
      bottom: -80px;
      left: -100px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle at center, rgba(131, 39, 210, 0.06) 0%, transparent 65%);
    }

    .testi-hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(131, 39, 210, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(131, 39, 210, 0.04) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 80%);
    }

    .testi-hero-inner {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 760px;
      margin-inline: auto;
    }

    .testi-hero-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.375rem 0.875rem 0.375rem 0.5rem;
      background: var(--brand-pale);
      border: 1px solid var(--brand-soft);
      border-radius: var(--r-full);
      margin-bottom: 1.75rem;
    }

    .testi-hero-label-dot {
      width: 22px;
      height: 22px;
      background: var(--brand);
      border-radius: 50%;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .testi-hero-label span {
      font-family: var(--ff-heading);
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--brand-dark);
    }

    .testi-hero h1 {
      margin-bottom: 1.25rem;
    }

    .testi-hero-desc {
      font-size: 1.0625rem;
      line-height: 1.75;
      color: var(--ink-500);
      max-width: 580px;
      margin: 0 auto 3rem;
    }

    /* Trust bar */
    .testi-hero-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap;
    }

    .testi-trust-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 1.25rem 2.5rem;
      position: relative;
    }

    .testi-trust-item+.testi-trust-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 1px;
      height: 40px;
      background: var(--border-soft);
    }

    .testi-trust-num {
      font-family: var(--ff-heading);
      font-size: 1.875rem;
      font-weight: 800;
      color: var(--ink-900);
      letter-spacing: -0.03em;
      line-height: 1;
      margin-bottom: 0.3rem;
    }

    .testi-trust-num span {
      color: var(--brand);
    }

    .testi-trust-label {
      font-size: 0.8125rem;
      color: var(--ink-400);
      font-weight: 500;
    }

    /* Stars */
    .testi-stars {
      display: flex;
      align-items: center;
      gap: 2px;
      justify-content: center;
      margin-bottom: 0.25rem;
    }

    .testi-stars svg {
      color: #F59E0B;
    }

    /* ════════════════════════════════════════════════════════════════
       2. FEATURED TESTIMONIAL
    ════════════════════════════════════════════════════════════════ */
    .featured-section {
      background: var(--surface);
      padding: 6rem 0;
    }

    .featured-header {
      margin-bottom: 3rem;
    }

    .featured-header .label {
      display: block;
      margin-bottom: 0.75rem;
    }

    .featured-header h2 {
      font-size: clamp(1.6rem, 3vw, 2.25rem);
    }

    .featured-card {
      background: var(--ink-900);
      border-radius: 28px;
      padding: 0;
      overflow: hidden;
      position: relative;
      display: grid;
      grid-template-columns: 1fr 340px;
      box-shadow: var(--shadow-lg);
    }

    .featured-card-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 28px 28px;
    }

    .featured-card-glow {
      position: absolute;
      top: -100px;
      left: -100px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(131, 39, 210, 0.25) 0%, transparent 65%);
      pointer-events: none;
    }

    .featured-card-left {
      position: relative;
      z-index: 1;
      padding: 3.5rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .featured-quote-mark {
      width: 52px;
      height: 52px;
      background: rgba(131, 39, 210, 0.25);
      border: 1px solid rgba(197, 152, 240, 0.25);
      border-radius: var(--r-md);
      display: grid;
      place-items: center;
      color: var(--brand-mid);
      margin-bottom: 2rem;
    }

    .featured-quote {
      font-family: var(--ff-heading);
      font-size: clamp(1.1rem, 2vw, 1.375rem);
      font-weight: 500;
      color: rgba(255, 255, 255, 0.92);
      line-height: 1.7;
      letter-spacing: -0.01em;
      flex: 1;
      margin-bottom: 2.5rem;
    }

    .featured-author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .featured-author-avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
      display: grid;
      place-items: center;
      flex-shrink: 0;
      font-family: var(--ff-heading);
      font-size: 1rem;
      font-weight: 800;
      color: #fff;
      border: 2px solid rgba(197, 152, 240, 0.3);
    }

    .featured-author-name {
      font-family: var(--ff-heading);
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.2rem;
    }

    .featured-author-meta {
      font-size: 0.8125rem;
      color: rgba(255, 255, 255, 0.45);
      line-height: 1.5;
    }

    .featured-author-meta strong {
      color: var(--brand-mid);
      font-weight: 600;
    }

    .featured-card-right {
      position: relative;
      z-index: 1;
      background: rgba(255, 255, 255, 0.04);
      border-left: 1px solid rgba(255, 255, 255, 0.07);
      padding: 3.5rem 2.5rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      justify-content: center;
    }

    .featured-metric {
      background: rgba(131, 39, 210, 0.15);
      border: 1px solid rgba(197, 152, 240, 0.2);
      border-radius: 16px;
      padding: 1.5rem;
      transition: background 0.25s ease, border-color 0.25s ease;
    }

    .featured-metric:hover {
      background: rgba(131, 39, 210, 0.22);
      border-color: rgba(197, 152, 240, 0.35);
    }

    .featured-metric-num {
      font-family: var(--ff-heading);
      font-size: 2.25rem;
      font-weight: 800;
      color: var(--brand-mid);
      line-height: 1;
      margin-bottom: 0.5rem;
      letter-spacing: -0.03em;
    }

    .featured-metric-label {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.5;
    }

    .featured-rating-row {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .featured-rating-stars {
      display: flex;
      gap: 2px;
    }

    .featured-rating-stars svg {
      color: #F59E0B;
    }

    .featured-rating-text {
      font-size: 0.8125rem;
      color: rgba(255, 255, 255, 0.4);
    }

    /* ════════════════════════════════════════════════════════════════
       3. TESTIMONIALS GRID
    ════════════════════════════════════════════════════════════════ */
    .grid-section {
      background: var(--canvas);
      padding: 6rem 0;
    }

    .grid-header {
      margin-bottom: 3.5rem;
    }

    .grid-header .label {
      display: block;
      margin-bottom: 0.75rem;
    }

    .grid-header h2 {
      max-width: 600px;
    }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .testi-card {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 20px;
      padding: 2rem 1.75rem;
      display: flex;
      flex-direction: column;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      position: relative;
      overflow: hidden;
    }

    .testi-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--brand), var(--brand-light));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }

    .testi-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: var(--brand-soft);
    }

    .testi-card:hover::before {
      transform: scaleX(1);
    }

    .testi-card-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 1.25rem;
    }

    .testi-card-stars {
      display: flex;
      gap: 2px;
    }

    .testi-card-stars svg {
      color: #F59E0B;
    }

    .testi-card-quote-icon {
      width: 32px;
      height: 32px;
      background: var(--brand-pale);
      border-radius: var(--r-sm);
      display: grid;
      place-items: center;
      color: var(--brand);
      flex-shrink: 0;
    }

    .testi-card-quote {
      font-size: 0.9375rem;
      line-height: 1.75;
      color: var(--ink-500);
      flex: 1;
      margin-bottom: 1.5rem;
      font-style: italic;
    }

    .testi-card-divider {
      height: 1px;
      background: var(--border-soft);
      margin-bottom: 1.25rem;
    }

    .testi-card-author {
      display: flex;
      align-items: center;
      gap: 0.875rem;
      margin-top: auto;
    }

    .testi-card-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      font-family: var(--ff-heading);
      font-size: 0.8125rem;
      font-weight: 800;
      color: #fff;
    }

    .avatar-purple {
      background: linear-gradient(135deg, var(--brand), var(--brand-light));
    }

    .avatar-blue {
      background: linear-gradient(135deg, #3B82F6, #60A5FA);
    }

    .avatar-green {
      background: linear-gradient(135deg, #10B981, #34D399);
    }

    .avatar-orange {
      background: linear-gradient(135deg, #F97316, #FB923C);
    }

    .avatar-indigo {
      background: linear-gradient(135deg, #6366F1, #818CF8);
    }

    .avatar-teal {
      background: linear-gradient(135deg, #14B8A6, #2DD4BF);
    }

    .testi-card-author-info {}

    .testi-card-author-name {
      font-family: var(--ff-heading);
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--ink-900);
      margin-bottom: 0.15rem;
    }

    .testi-card-author-role {
      font-size: 0.75rem;
      color: var(--ink-400);
      line-height: 1.4;
    }

    .testi-card-author-role strong {
      color: var(--brand);
      font-weight: 600;
    }

    /* ════════════════════════════════════════════════════════════════
       4. IMPACT METRICS
    ════════════════════════════════════════════════════════════════ */
    .metrics-section {
      background: var(--ink-900);
      padding: 6rem 0;
      position: relative;
      overflow: hidden;
    }

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

    .metrics-glow {
      position: absolute;
      top: -200px;
      left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(ellipse at center, rgba(131, 39, 210, 0.18) 0%, transparent 65%);
    }

    .metrics-dot-grid {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 28px 28px;
    }

    .metrics-inner {
      position: relative;
      z-index: 1;
    }

    .metrics-header {
      margin-bottom: 3.5rem;
    }

    .metrics-header .label {
      display: block;
      margin-bottom: 0.75rem;
      color: var(--brand-mid);
    }

    .metrics-header h2 {
      color: #fff;
      max-width: 650px;
    }

    .metrics-header p {
      color: rgba(255, 255, 255, 0.5);
      margin-top: 1rem;
      max-width: 520px;
      font-size: 1.0625rem;
      line-height: 1.75;
    }

    .metrics-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .metrics-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .metric-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 20px;
      padding: 1.75rem 1.5rem;
      transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    }

    .metric-card:hover {
      background: rgba(131, 39, 210, 0.18);
      border-color: rgba(197, 152, 240, 0.25);
      transform: translateY(-3px);
    }

    .metric-icon {
      width: 42px;
      height: 42px;
      background: rgba(131, 39, 210, 0.25);
      border: 1px solid rgba(197, 152, 240, 0.2);
      border-radius: var(--r-md);
      display: grid;
      place-items: center;
      color: var(--brand-mid);
      margin-bottom: 1.25rem;
    }

    .metric-val {
      font-family: var(--ff-heading);
      font-size: 2.5rem;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.04em;
      line-height: 1;
      margin-bottom: 0.4rem;
    }

    .metric-val span {
      color: var(--brand-mid);
    }

    .metric-label {
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.45);
      line-height: 1.5;
    }

    .metrics-right {}

    .metrics-desc {
      font-size: 1.0625rem;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.8;
      margin-bottom: 2.5rem;
    }

    .metrics-points {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .metrics-point {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.25rem;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: var(--r-lg);
      transition: background 0.2s ease, border-color 0.2s ease;
    }

    .metrics-point:hover {
      background: rgba(131, 39, 210, 0.12);
      border-color: rgba(197, 152, 240, 0.15);
    }

    .metrics-point-icon {
      width: 36px;
      height: 36px;
      border-radius: var(--r-sm);
      background: rgba(131, 39, 210, 0.2);
      display: grid;
      place-items: center;
      flex-shrink: 0;
      color: var(--brand-mid);
    }

    .metrics-point-text h4 {
      color: rgba(255, 255, 255, 0.85);
      font-size: 0.9375rem;
      font-weight: 600;
      margin-bottom: 0.2rem;
    }

    .metrics-point-text p {
      font-size: 0.8125rem;
      color: rgba(255, 255, 255, 0.4);
      line-height: 1.6;
    }

    /* ════════════════════════════════════════════════════════════════
       5. VIDEO TESTIMONIALS
    ════════════════════════════════════════════════════════════════ */
    .video-section {
      background: var(--surface);
      padding: 6rem 0;
    }

    .video-section-header {
      margin-bottom: 3.5rem;
      text-align: center;
    }

    .video-section-header .label {
      display: block;
      margin-bottom: 0.75rem;
    }

    .video-section-header h2 {
      max-width: 560px;
      margin-inline: auto;
      margin-bottom: 1rem;
    }

    .video-section-header p {
      max-width: 520px;
      margin-inline: auto;
      font-size: 1.0625rem;
      color: var(--ink-500);
    }

    .video-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .video-card {
      border-radius: 20px;
      overflow: hidden;
      background: var(--canvas);
      border: 1.5px solid var(--border-soft);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      cursor: pointer;
    }

    .video-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: var(--brand-soft);
    }

    .video-thumb {
      position: relative;
      aspect-ratio: 16/9;
      overflow: hidden;
    }

    .video-thumb-bg {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .vbg-1 {
      background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 100%);
    }

    .vbg-2 {
      background: linear-gradient(135deg, #1D4ED8 0%, #3B82F6 100%);
    }

    .vbg-3 {
      background: linear-gradient(135deg, #065F46 0%, #10B981 100%);
    }

    .video-thumb-pattern {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
      background-size: 20px 20px;
    }

    .video-play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
      border: 2px solid rgba(255, 255, 255, 0.3);
      display: grid;
      place-items: center;
      color: #fff;
      z-index: 1;
      transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
      backdrop-filter: blur(8px);
    }

    .video-card:hover .video-play-btn {
      background: rgba(255, 255, 255, 0.25);
      border-color: rgba(255, 255, 255, 0.5);
      transform: translate(-50%, -50%) scale(1.1);
    }

    .video-thumb-name {
      position: absolute;
      bottom: 0.875rem;
      left: 0.875rem;
      font-family: var(--ff-heading);
      font-size: 0.75rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.9);
      z-index: 1;
    }

    .video-thumb-inst {
      position: absolute;
      bottom: 0.875rem;
      right: 0.875rem;
      padding: 0.2rem 0.6rem;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: var(--r-full);
      backdrop-filter: blur(8px);
      font-family: var(--ff-heading);
      font-size: 0.625rem;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.85);
      z-index: 1;
    }

    .video-duration {
      position: absolute;
      top: 0.75rem;
      right: 0.75rem;
      padding: 0.15rem 0.5rem;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 4px;
      backdrop-filter: blur(4px);
      font-size: 0.6875rem;
      font-weight: 600;
      color: #fff;
      z-index: 1;
    }

    .video-card-body {
      padding: 1.25rem 1.5rem;
    }

    .video-card-caption {
      font-size: 0.875rem;
      color: var(--ink-500);
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    .video-card-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .video-card-meta-stars {
      display: flex;
      gap: 2px;
    }

    .video-card-meta-stars svg {
      color: #F59E0B;
    }

    .video-card-watch {
      font-family: var(--ff-heading);
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--brand);
      display: flex;
      align-items: center;
      gap: 0.25rem;
      transition: gap 0.2s ease;
    }

    .video-card:hover .video-card-watch {
      gap: 0.4rem;
    }

    /* ════════════════════════════════════════════════════════════════
       6. CASE STUDY HIGHLIGHTS
    ════════════════════════════════════════════════════════════════ */
    .case-section {
      background: var(--canvas);
      padding: 6rem 0;
    }

    .case-header {
      margin-bottom: 3.5rem;
    }

    .case-header .label {
      display: block;
      margin-bottom: 0.75rem;
    }

    .case-header h2 {
      max-width: 520px;
    }

    .case-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }

    .case-card {
      background: var(--surface);
      border: 1.5px solid var(--border-soft);
      border-radius: 20px;
      overflow: hidden;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      display: flex;
      flex-direction: column;
    }

    .case-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: transparent;
    }

    .case-card-top {
      padding: 1.75rem;
      border-bottom: 1px solid var(--border-soft);
      position: relative;
      overflow: hidden;
    }

    .case-card-top::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(131, 39, 210, 0.04) 0%, transparent 60%);
      pointer-events: none;
    }

    .case-card-inst-row {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
    }

    .case-card-inst-logo {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      font-family: var(--ff-heading);
      font-size: 0.875rem;
      font-weight: 800;
      color: #fff;
      flex-shrink: 0;
    }

    .cil-purple {
      background: linear-gradient(135deg, var(--brand), var(--brand-light));
    }

    .cil-blue {
      background: linear-gradient(135deg, #3B82F6, #60A5FA);
    }

    .cil-green {
      background: linear-gradient(135deg, #10B981, #34D399);
    }

    .case-card-inst-name {
      font-family: var(--ff-heading);
      font-size: 1rem;
      font-weight: 700;
      color: var(--ink-900);
    }

    .case-card-inst-type {
      font-size: 0.75rem;
      color: var(--ink-400);
    }

    .case-card-result-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      padding: 0.25rem 0.75rem;
      background: rgba(18, 183, 106, 0.1);
      border: 1px solid rgba(18, 183, 106, 0.2);
      border-radius: var(--r-full);
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      color: var(--success);
    }

    .case-card-body {
      padding: 1.75rem;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .case-row {
      display: flex;
      gap: 0.75rem;
    }

    .case-row-icon {
      width: 28px;
      height: 28px;
      border-radius: var(--r-sm);
      display: grid;
      place-items: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .cri-challenge {
      background: rgba(240, 68, 56, 0.1);
      color: var(--danger);
    }

    .cri-solution {
      background: rgba(131, 39, 210, 0.1);
      color: var(--brand);
    }

    .cri-result {
      background: rgba(18, 183, 106, 0.1);
      color: var(--success);
    }

    .case-row-content {}

    .case-row-label {
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 0.2rem;
    }

    .case-row-label.challenge {
      color: var(--danger);
    }

    .case-row-label.solution {
      color: var(--brand);
    }

    .case-row-label.result {
      color: var(--success);
    }

    .case-row-text {
      font-size: 0.875rem;
      color: var(--ink-500);
      line-height: 1.6;
    }

    .case-card-footer {
      padding: 1.25rem 1.75rem;
      border-top: 1px solid var(--border-soft);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .case-cta {
      font-family: var(--ff-heading);
      font-size: 0.8125rem;
      font-weight: 700;
      color: var(--brand);
      display: flex;
      align-items: center;
      gap: 0.375rem;
      transition: gap 0.2s ease;
    }

    .case-card:hover .case-cta {
      gap: 0.625rem;
    }

    .case-time-chip {
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 600;
      color: var(--ink-400);
      background: var(--canvas);
      padding: 0.2rem 0.6rem;
      border-radius: var(--r-full);
      border: 1px solid var(--border-soft);
    }

    /* ════════════════════════════════════════════════════════════════
       7. FINAL CTA
    ════════════════════════════════════════════════════════════════ */
    .testi-cta-section {
      background: var(--surface);
      padding: 6rem 0;
    }

    .testi-cta-card {
      background: var(--ink-900);
      border-radius: 32px;
      padding: 5rem;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .testi-cta-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .cta-glow-top {
      position: absolute;
      top: -150px;
      left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(ellipse at center, rgba(131, 39, 210, 0.22) 0%, transparent 65%);
    }

    .cta-dot-grid {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 28px 28px;
    }

    .testi-cta-inner {
      position: relative;
      z-index: 1;
      max-width: 620px;
      margin-inline: auto;
    }

    .testi-cta-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.35rem 1rem;
      background: rgba(131, 39, 210, 0.2);
      border: 1px solid rgba(197, 152, 240, 0.25);
      border-radius: var(--r-full);
      font-family: var(--ff-heading);
      font-size: 0.6875rem;
      font-weight: 700;
      color: var(--brand-mid);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 1.75rem;
    }

    .testi-cta-inner h2 {
      color: #fff;
      font-size: clamp(1.75rem, 3.5vw, 2.75rem);
      margin-bottom: 1rem;
    }

    .testi-cta-inner h2 em {
      background: linear-gradient(135deg, var(--brand-mid) 0%, #fff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .testi-cta-inner>p {
      color: rgba(255, 255, 255, 0.5);
      font-size: 1.0625rem;
      line-height: 1.75;
      margin-bottom: 2.5rem;
    }

    .testi-cta-btns {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }

    .btn-white {
      background: #fff;
      color: var(--brand);
      box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
    }

    .btn-white:hover {
      background: var(--brand-pale);
      transform: translateY(-1px);
      box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
    }

    .btn-outline-white {
      background: transparent;
      color: rgba(255, 255, 255, 0.85);
      border: 1.5px solid rgba(255, 255, 255, 0.2);
    }

    .btn-outline-white:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.35);
      color: #fff;
    }

    .testi-cta-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .testi-cta-trust-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8125rem;
      color: rgba(255, 255, 255, 0.4);
      font-family: var(--ff-heading);
      font-weight: 500;
    }

    .testi-cta-trust-item svg {
      color: var(--success);
    }

    /* ─── RESPONSIVE ──────────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .featured-card {
        grid-template-columns: 1fr;
      }

      .featured-card-right {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
      }

      .featured-rating-row {
        grid-column: 1 / -1;
      }

      .testi-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .video-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .case-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .metrics-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .nav-links {
        display: none;
      }

      .nav-hamburger {
        display: flex;
      }
    }

    @media (max-width: 768px) {
      .testi-hero-trust {
        flex-direction: column;
        gap: 0;
      }

      .testi-trust-item+.testi-trust-item::before {
        display: none;
      }

      .testi-trust-item {
        border-bottom: 1px solid var(--border-soft);
        width: 100%;
        justify-content: center;
      }

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

      .featured-card-left {
        padding: 2rem;
      }

      .featured-card-right {
        padding: 2rem;
        grid-template-columns: 1fr;
      }

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

      .testi-cta-card {
        padding: 3rem 2rem;
      }

      .footer-right-col {
        grid-template-columns: 1fr;
      }
    }

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

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

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

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

      .testi-cta-trust {
        flex-direction: column;
        gap: 1rem;
      }
    }