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

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

        /* ─── LAYOUT ─────────────────────────────────────────────────── */
        .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;
            }
        }

        .section {
            padding: 6rem 0;
        }

        .section-sm {
            padding: 4rem 0;
        }

        /* ─── UTILITIES ──────────────────────────────────────────────── */
        .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);
        }

        .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;
            text-decoration: none;
        }

        .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-lg {
            padding: 0.9375rem 2rem;
            font-size: 1rem;
        }

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

        /* ════════════════════════════════════════════════════════════
       HERO SECTION
    ════════════════════════════════════════════════════════════ */
        .tut-hero {
            position: relative;
            padding: 7rem 0 0 0;
            overflow: hidden;
            background: var(--canvas);
        }

        /* Grid pattern background */
        .tut-hero-bg {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
        }

        /* Main grid lines */
        .tut-hero-bg::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(131, 39, 210, 0.055) 1px, transparent 1px),
                linear-gradient(90deg, rgba(131, 39, 210, 0.055) 1px, transparent 1px);
            background-size: 52px 52px;
            mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, black 0%, transparent 80%);
        }

        /* Decorative filled grid blocks — scattered across the grid */
        .tut-hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                /* Row 1 */
                linear-gradient(var(--brand-pale), var(--brand-pale)),
                linear-gradient(var(--brand-pale), var(--brand-pale)),
                linear-gradient(var(--brand-soft), var(--brand-soft)),
                /* Row 2 */
                linear-gradient(var(--brand-soft), var(--brand-soft)),
                linear-gradient(var(--brand-pale), var(--brand-pale)),
                /* Row 3 */
                linear-gradient(var(--brand-pale), var(--brand-pale)),
                linear-gradient(var(--brand-soft), var(--brand-soft)),
                linear-gradient(var(--brand-pale), var(--brand-pale));
            background-size:
                50px 50px, 50px 50px, 50px 50px,
                50px 50px, 50px 50px,
                50px 50px, 50px 50px, 50px 50px;
            background-position:
                104px 52px, 364px 104px, 624px 52px,
                52px 156px, 520px 156px,
                208px 260px, 468px 208px, 780px 104px;
            background-repeat: no-repeat;
            opacity: 0.55;
            mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 0%, transparent 75%);
        }

        /* Purple orb glow at top */
        .tut-hero-orb {
            position: absolute;
            top: -160px;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 400px;
            background: radial-gradient(ellipse, rgba(131, 39, 210, 0.10) 0%, transparent 68%);
            pointer-events: none;
            z-index: 0;
        }

        .tut-hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 720px;
            margin-inline: auto;
        }

        .tut-hero-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .tut-hero-label .label-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--brand);
            box-shadow: 0 0 0 3px rgba(131, 39, 210, 0.18);
        }

        .tut-hero-heading {
            margin-bottom: 1.375rem;
        }

        .tut-hero-desc {
            font-size: 1.0625rem;
            line-height: 1.75;
            color: var(--ink-500);
            max-width: 560px;
            margin-inline: auto;
            margin-bottom: 2.5rem;
        }

        /* Stats row */
        .tut-hero-stats {
            display: inline-flex;
            align-items: center;
            gap: 0;
            background: var(--surface);
            border: 1.5px solid var(--border-soft);
            border-radius: 16px;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
        }

        .tut-stat-item {
            padding: 0.875rem 2rem;
            text-align: center;
            position: relative;
        }

        .tut-stat-item+.tut-stat-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 20%;
            height: 60%;
            width: 1px;
            background: var(--border);
        }

        .tut-stat-num {
            font-family: var(--ff-heading);
            font-size: 1.375rem;
            font-weight: 800;
            color: var(--ink-900);
            letter-spacing: -0.03em;
            line-height: 1.2;
        }

        .tut-stat-num em {
            font-size: inherit;
        }

        .tut-stat-lbl {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--ink-400);
            margin-top: 0.125rem;
        }

        /* ════════════════════════════════════════════════════════════
       TUTORIALS SECTION
    ════════════════════════════════════════════════════════════ */
        .tut-section {
            padding: 6rem 0 7rem;
            background: var(--canvas);
        }

        /* Filter bar */
        .tut-filter-bar {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
            padding-bottom: 1.75rem;
            border-bottom: 1.5px solid var(--border-soft);
        }

        .tut-filter-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.4375rem 1rem;
            border-radius: var(--r-full);
            font-family: var(--ff-heading);
            font-size: 0.8125rem;
            font-weight: 600;
            cursor: pointer;
            border: 1.5px solid var(--border);
            background: var(--surface);
            color: var(--ink-500);
            transition: all 0.18s ease;
        }

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

        .tut-filter-btn.active {
            background: var(--brand);
            color: #fff;
            border-color: var(--brand);
            box-shadow: 0 3px 12px rgba(131, 39, 210, 0.28);
        }

        .tut-filter-count {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.25);
            font-size: 0.625rem;
            font-weight: 700;
        }

        .tut-filter-btn:not(.active) .tut-filter-count {
            background: var(--brand-pale);
            color: var(--brand);
        }

        /* Section header layout */
        .tut-section-hdr {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2.5rem;
        }

        .tut-section-hdr-left {
            max-width: 480px;
        }

        .tut-section-hdr-label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .tut-section-hdr-label .label-line {
            display: block;
            width: 28px;
            height: 2px;
            background: linear-gradient(90deg, var(--brand), var(--brand-light));
            border-radius: 2px;
        }

        .tut-section-hdr h2 {
            font-size: clamp(1.5rem, 2.8vw, 2.1rem);
            margin-bottom: 0.5rem;
        }

        .tut-section-hdr p {
            font-size: 0.9375rem;
            color: var(--ink-400);
        }

        .tut-view-all {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-family: var(--ff-heading);
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--brand);
            white-space: nowrap;
            transition: gap 0.2s ease;
        }

        .tut-view-all:hover {
            gap: 0.65rem;
        }

        .tut-view-all svg {
            transition: transform 0.2s ease;
        }

        .tut-view-all:hover svg {
            transform: translateX(2px);
        }

        /* ── VIDEO GRID ── */
        .tut-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.375rem;
        }

        /* ── VIDEO CARD ── */
        .vid-card {
            background: var(--surface);
            border: 1.5px solid var(--border-soft);
            border-radius: 20px;
            overflow: hidden;
            transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease, border-color 0.22s ease;
            cursor: pointer;
            position: relative;
        }

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

        /* Top accent line on hover */
        .vid-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2.5px;
            border-radius: 20px 20px 0 0;
            background: linear-gradient(90deg, var(--brand), var(--brand-light));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
            z-index: 2;
        }

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

        /* Thumbnail */
        .vid-thumb {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: var(--canvas-alt);
        }

        .vid-thumb-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .vid-card:hover .vid-thumb-img {
            transform: scale(1.04);
        }

        /* Gradient overlay on thumbnail */
        .vid-thumb-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom,
                    rgba(15, 11, 26, 0) 40%,
                    rgba(15, 11, 26, 0.52) 100%);
        }

        /* Play button */
        .vid-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.88);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22), 0 0 0 0 rgba(131, 39, 210, 0.4);
            transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
            color: var(--brand);
        }

        .vid-card:hover .vid-play-btn {
            transform: translate(-50%, -50%) scale(1);
            box-shadow: 0 6px 28px rgba(0, 0, 0, 0.25), 0 0 0 6px rgba(131, 39, 210, 0.14);
        }

        /* Duration badge */
        .vid-duration {
            position: absolute;
            bottom: 10px;
            right: 10px;
            padding: 0.225rem 0.6rem;
            background: rgba(15, 11, 26, 0.72);
            backdrop-filter: blur(6px);
            border-radius: var(--r-sm);
            font-family: var(--ff-heading);
            font-size: 0.6875rem;
            font-weight: 600;
            color: #fff;
            letter-spacing: 0.01em;
        }

        /* Difficulty badge on thumb */
        .vid-difficulty {
            position: absolute;
            top: 10px;
            left: 10px;
            padding: 0.225rem 0.6rem;
            border-radius: var(--r-sm);
            font-family: var(--ff-heading);
            font-size: 0.6rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .vid-difficulty.beginner {
            background: rgba(18, 183, 106, 0.15);
            color: #0e9860;
            border: 1px solid rgba(18, 183, 106, 0.28);
        }

        .vid-difficulty.intermediate {
            background: rgba(247, 144, 9, 0.14);
            color: #c47a06;
            border: 1px solid rgba(247, 144, 9, 0.26);
        }

        .vid-difficulty.advanced {
            background: rgba(131, 39, 210, 0.13);
            color: var(--brand-dark);
            border: 1px solid rgba(131, 39, 210, 0.22);
        }

        /* Card body */
        .vid-body {
            padding: 1.375rem 1.5rem 1.5rem;
        }

        /* Module tag */
        .vid-module-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            margin-bottom: 0.75rem;
            padding: 0.25rem 0.7rem;
            border-radius: var(--r-full);
            background: var(--brand-pale);
            border: 1px solid var(--brand-soft);
            font-family: var(--ff-heading);
            font-size: 0.6875rem;
            font-weight: 700;
            color: var(--brand-dark);
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .vid-module-tag svg {
            color: var(--brand);
            flex-shrink: 0;
        }

        /* Card title */
        .vid-title {
            font-family: var(--ff-heading);
            font-size: 0.9875rem;
            font-weight: 600;
            color: var(--ink-900);
            line-height: 1.45;
            margin-bottom: 0.6rem;
            letter-spacing: -0.015em;
            transition: color 0.18s ease;
        }

        .vid-card:hover .vid-title {
            color: var(--brand);
        }

        /* Card description */
        .vid-desc {
            font-size: 0.875rem;
            line-height: 1.6;
            color: var(--ink-400);
            margin-bottom: 1.125rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Card footer */
        .vid-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 0.875rem;
            border-top: 1px solid var(--border-soft);
        }

        .vid-meta {
            display: flex;
            align-items: center;
            gap: 0.9rem;
        }

        .vid-meta-item {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--ink-400);
        }

        .vid-meta-item svg {
            color: var(--ink-300);
        }

        .vid-watch-link {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            font-family: var(--ff-heading);
            font-size: 0.78125rem;
            font-weight: 600;
            color: var(--brand);
            transition: gap 0.18s ease;
        }

        .vid-watch-link:hover {
            gap: 0.5rem;
        }

        .vid-watch-link svg {
            transition: transform 0.18s ease;
        }

        .vid-watch-link:hover svg {
            transform: translateX(2px);
        }

        /* ════════════════════════════════════════════════════════════
       LOAD MORE
    ════════════════════════════════════════════════════════════ */
        .tut-load-more {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2.5rem;
            border-top: 1.5px solid var(--border-soft);
        }

        .tut-load-more-inner {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .tut-progress-wrap {
            display: flex;
            align-items: center;
            gap: 0.875rem;
        }

        .tut-progress-bar {
            width: 120px;
            height: 4px;
            background: var(--border);
            border-radius: 99px;
            overflow: hidden;
        }

        .tut-progress-fill {
            width: 75%;
            height: 100%;
            background: linear-gradient(90deg, var(--brand), var(--brand-light));
            border-radius: 99px;
        }

        .tut-progress-label {
            font-family: var(--ff-heading);
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--ink-400);
        }

        /* ════════════════════════════════════════════════════════════
       CTA SECTION
    ════════════════════════════════════════════════════════════ */
        .tut-cta-section {
            padding: 6rem 0;
            background: var(--ink-900);
            position: relative;
            overflow: hidden;
        }

        /* Top-center glow */
        .tut-cta-glow {
            position: absolute;
            top: -200px;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 500px;
            background: radial-gradient(ellipse, rgba(131, 39, 210, 0.35) 0%, transparent 65%);
            pointer-events: none;
        }

        /* Dot grid overlay */
        .tut-cta-grid {
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
            background-size: 28px 28px;
            pointer-events: none;
            mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 0%, transparent 80%);
        }

        /* Subtle decorative lines */
        .tut-cta-lines {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
            background-size: 48px 48px;
            pointer-events: none;
        }

        .tut-cta-inner {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 680px;
            margin-inline: auto;
        }

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

        .tut-cta-eyebrow-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--brand-mid);
            animation: ctaPulse 2.4s ease-in-out infinite;
        }

        @keyframes ctaPulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.5;
                transform: scale(0.7);
            }
        }

        .tut-cta-heading {
            font-family: var(--ff-heading);
            font-size: clamp(1.9rem, 3.5vw, 2.75rem);
            font-weight: 800;
            letter-spacing: -0.025em;
            line-height: 1.15;
            color: #fff;
            margin-bottom: 1.125rem;
        }

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

        .tut-cta-desc {
            font-size: 1.0625rem;
            line-height: 1.75;
            color: rgba(176, 162, 200, 0.85);
            margin-bottom: 2.5rem;
        }

        .tut-cta-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 2.25rem;
        }

        .btn-cta-white {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.9375rem 2rem;
            border-radius: var(--r-md);
            background: #fff;
            color: var(--brand-dark);
            font-family: var(--ff-heading);
            font-size: 0.9375rem;
            font-weight: 700;
            cursor: pointer;
            border: none;
            outline: none;
            transition: all 0.2s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
        }

        .btn-cta-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);
            background: var(--brand-pale);
            color: var(--brand);
        }

        .btn-cta-ghost {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.9375rem 2rem;
            border-radius: var(--r-md);
            background: transparent;
            color: rgba(255, 255, 255, 0.8);
            font-family: var(--ff-heading);
            font-size: 0.9375rem;
            font-weight: 600;
            cursor: pointer;
            border: 1.5px solid rgba(255, 255, 255, 0.14);
            outline: none;
            transition: all 0.2s ease;
        }

        .btn-cta-ghost:hover {
            border-color: rgba(197, 152, 240, 0.45);
            color: #fff;
            background: rgba(131, 39, 210, 0.14);
        }

        /* CTA trust items */
        .tut-cta-trust {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.75rem;
            flex-wrap: wrap;
        }

        .tut-cta-trust-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-family: var(--ff-heading);
            font-size: 0.75rem;
            font-weight: 600;
            color: rgba(176, 162, 200, 0.7);
        }

        .tut-cta-trust-item svg {
            color: var(--brand-mid);
        }

        /* ════════════════════════════════════════════════════════════
       ANIMATIONS
    ════════════════════════════════════════════════════════════ */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(22px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .anim-fade-up {
            animation: fadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
        }

        /* Stagger children */
        .anim-stagger>* {
            animation: fadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
        }

        .anim-stagger>*:nth-child(1) {
            animation-delay: 0.05s;
        }

        .anim-stagger>*:nth-child(2) {
            animation-delay: 0.12s;
        }

        .anim-stagger>*:nth-child(3) {
            animation-delay: 0.19s;
        }

        .anim-stagger>*:nth-child(4) {
            animation-delay: 0.26s;
        }

        .anim-stagger>*:nth-child(5) {
            animation-delay: 0.33s;
        }

        .anim-stagger>*:nth-child(6) {
            animation-delay: 0.40s;
        }

        /* Scroll reveal */
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }

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

        /* ════════════════════════════════════════════════════════════
       RESPONSIVE
    ════════════════════════════════════════════════════════════ */
        @media (max-width: 1024px) {
            .tut-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .tut-section-hdr {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
        }

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

            .tut-hero-stats {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                gap: 0;
            }

            .tut-stat-item {
                padding: 0.875rem 1rem;
            }

            .tut-stat-item+.tut-stat-item::before {
                top: 20%;
                left: 0;
                width: 1px;
                height: 60%;
            }

            .tut-cta-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .btn-cta-white,
            .btn-cta-ghost {
                justify-content: center;
            }

            .tut-cta-trust {
                gap: 1rem;
            }

            .tut-filter-bar {
                gap: 0.4rem;
            }
        }

        @media (max-width: 480px) {
            .tut-hero {
                padding: 5rem 0 4rem;
            }

            .tut-section {
                padding: 4rem 0 5rem;
            }
        }