    /* ========================================
    Shohaz NEXT — Minimal, Clean, Creative
    ======================================== */

    @font-face {
        font-family: 'Kalameh';
        src: url('../fonts/woff2/KalamehWebFaNum-Thin.woff2') format('woff2'),
            url('../fonts/woff/KalamehWebFaNum-Thin.woff') format('woff');
        font-weight: 100;
        font-display: swap;
    }

    @font-face {
        font-family: 'Kalameh';
        src: url('../fonts/woff2/KalamehWebFaNum-Regular.woff2') format('woff2'),
            url('../fonts/woff/KalamehWebFaNum-Regular.woff') format('woff');
        font-weight: 400;
        font-display: swap;
    }

    @font-face {
        font-family: 'Kalameh';
        src: url('../fonts/woff2/KalamehWebFaNum-Bold.woff2') format('woff2'),
            url('../fonts/woff/KalamehWebFaNum-Bold.woff') format('woff');
        font-weight: 700;
        font-display: swap;
    }

    @font-face {
        font-family: 'Kalameh';
        src: url('../fonts/woff2/KalamehWebFaNum-Black.woff2') format('woff2'),
            url('../fonts/woff/KalamehWebFaNum-Black.woff') format('woff');
        font-weight: 900;
        font-display: swap;
    }

    *,
    *::before,
    *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --black: #0a0a0a;
        --white: #ffffff;
        --gray-50: #fafafa;
        --gray-100: #f5f5f5;
        --gray-200: #e5e5e5;
        --gray-400: #a3a3a3;
        --gray-600: #525252;
        --gray-800: #262626;
        --accent: #22c55e;
        --accent-light: #f0fdf4;
        --green: #10b981;
        --red: #ef4444;
        --font: 'Kalameh', system-ui, sans-serif;
        --ease: cubic-bezier(0.16, 1, 0.3, 1);
    }

    html {
        scroll-behavior: smooth;
        font-size: 16px;
    }

    body {
        font-family: var(--font);
        color: var(--gray-800);
        background: var(--white);
        line-height: 1.7;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
    }

    input,
    button,
    textarea,
    select {
        font-family: var(--font);
    }

    /* Layout */
    .container {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .container-sm {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .section {
        padding: 120px 0;
    }

    /* Header */
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        transition: all 0.4s var(--ease);
    }

    .site-header.scrolled .top-bar {
        padding: 5px 24px;
    }

    .site-header.scrolled .nav {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        padding: 12px 32px;
        box-shadow: 0 1px 0 var(--gray-200);
    }

    .top-bar {
        padding: 7px 24px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .top-bar-inner {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        max-width: 1300px;
        margin: 0 auto;
    }

    .top-bar-text {
        font-size: 0.75rem;
        font-weight: 700;
    }

    .top-bar-btn {
        font-size: 0.7rem;
        font-weight: 700;
        padding: 4px 14px;
        border: 1.5px solid currentColor;
        border-radius: 6px;
        text-decoration: none;
        color: inherit;
        transition: opacity 0.2s;
    }

    .top-bar-btn:hover {
        opacity: 0.75;
    }

    .top-bar-row-1 {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .top-bar-row-1 svg {
        color: #dc2626;
        min-width: 14px;
    }

    .top-bar-row-1 span {
        font-size: 0.73rem;
        font-weight: 700;
    }

    .top-bar-row-2 {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .top-bar-price-old {
        font-size: 0.72rem;
        text-decoration: line-through;
        opacity: 0.5;
    }

    .top-bar-price-new {
        font-size: 0.78rem;
        font-weight: 900;
        color: #166534;
    }

    .top-bar-discount {
        font-size: 0.65rem;
        font-weight: 700;
        background: #dcfce7;
        color: #166534;
        border: 1px solid #bbf7d0;
        padding: 2px 8px;
        border-radius: 100px;
    }

    .nav {
        padding: 16px 32px;
        transition: all 0.4s var(--ease);
    }

    .nav-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1300px;
        margin: 0 auto;
    }

    .logo {
        font-size: 1.3rem;
        font-weight: 900;
        letter-spacing: -0.5px;
        text-decoration: none;
        color: var(--black);
    }

    .logo span {
        font-weight: 400;
        color: var(--accent);
        margin-right: 2px;
    }

    .nav-cta {
        text-decoration: none;
        color: var(--black);
        font-size: 0.85rem;
        font-weight: 700;
        padding: 10px 24px;
        border: 1.5px solid var(--gray-200);
        border-radius: 100px;
        transition: all 0.3s var(--ease);
    }

    .nav-cta:hover {
        background: var(--black);
        color: var(--white);
        border-color: var(--black);
    }

    /* Hero */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        background: var(--gray-50);
    }

    .hero-bg-text {
        position: absolute;
        font-size: clamp(150px, 25vw, 350px);
        font-weight: 900;
        color: var(--gray-100);
        letter-spacing: -10px;
        user-select: none;
        pointer-events: none;
    }

    .hero-inner {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        max-width: 1300px;
        margin: 0 auto;
        padding: 140px 24px 80px;
        width: 100%;
    }

    .hero-content {
        text-align: right;
    }

    .hero-tag {
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--accent);
        margin-bottom: 20px;
        letter-spacing: 0.5px;
        background: var(--accent-light);
        display: inline-block;
        padding: 6px 16px;
        border-radius: 100px;
        border: 1px solid #bbf7d0;
    }

    .hero h1 {
        font-size: clamp(1.7rem, 3.5vw, 2.5rem);
        font-weight: 900;
        line-height: 1.4;
        letter-spacing: -1px;
        margin-bottom: 18px;
    }

    .hero-highlight {
        background: linear-gradient(135deg, #22c55e, #4ade80);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-desc {
        font-size: 1rem;
        color: var(--gray-600);
        margin-bottom: 36px;
        font-weight: 400;
        line-height: 1.8;
    }

    .hero-btns {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    /* ===== Minimal Video Player ===== */
    .hero-video-wrap {
        position: relative;
        width: 100%;
    }

    .video-player {
        position: relative;
        border-radius: 14px;
        overflow: hidden;
        background: #000;
        aspect-ratio: 16/9;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    }

    .video-player video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* Overlay */
    .vp-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.3);
        z-index: 2;
        cursor: pointer;
        transition: opacity 0.3s;
    }

    .video-player.playing .vp-overlay {
        opacity: 0;
        pointer-events: none;
    }

    .vp-play-big {
        width: 64px;
        height: 64px;
        background: rgba(255, 255, 255, 0.95);
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: transform 0.2s;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    }

    .vp-play-big svg {
        width: 22px;
        height: 22px;
        color: var(--black);
        margin-right: -2px;
    }

    .vp-play-big:hover {
        transform: scale(1.08);
    }

    /* Controls bar */
    .vp-controls {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px 12px 8px;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
        z-index: 3;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .video-player:hover .vp-controls,
    .video-player.playing .vp-controls {
        opacity: 1;
    }

    /* Progress */
    .vp-progress {
        height: 4px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 4px;
        cursor: pointer;
        margin-bottom: 8px;
        transition: height 0.15s;
    }

    .vp-progress:hover {
        height: 6px;
    }

    .vp-progress-bar {
        height: 100%;
        width: 0%;
        background: var(--accent);
        border-radius: 4px;
        transition: width 0.1s linear;
    }

    /* Controls row */
    .vp-row {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .vp-btn {
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        transition: background 0.15s;
    }

    .vp-btn:hover {
        background: rgba(255, 255, 255, 0.12);
    }

    .vp-btn svg {
        width: 16px;
        height: 16px;
    }

    .vp-time {
        font-size: 0.72rem;
        color: rgba(255, 255, 255, 0.8);
        direction: ltr;
        min-width: 36px;
    }

    .vp-spacer {
        flex: 1;
    }

    /* Icon toggle states */
    .video-player.playing .vp-ico-play {
        display: none;
    }

    .video-player:not(.playing) .vp-ico-pause {
        display: none;
    }

    .video-player.muted .vp-ico-vol {
        display: none;
    }

    .video-player:not(.muted) .vp-ico-mute {
        display: none;
    }

    /* Close button (floating only) */
    .vp-close {
        display: none;
        position: absolute;
        top: 8px;
        right: 8px;
        width: 26px;
        height: 26px;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        border: none;
        border-radius: 50%;
        font-size: 13px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        z-index: 5;
    }

    .vp-close:hover {
        background: rgba(0, 0, 0, 0.9);
    }

    /* Floating mini player */
    .video-player.floating {
        position: fixed;
        bottom: 20px;
        left: 20px;
        width: 300px;
        height: 169px;
        aspect-ratio: auto;
        border-radius: 12px;
        z-index: 999;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
        animation: vpFloatIn 0.3s ease;
    }

    .video-player.floating .vp-close {
        display: flex;
    }

    .video-player.floating .vp-play-big {
        width: 44px;
        height: 44px;
    }

    .video-player.floating .vp-play-big svg {
        width: 16px;
        height: 16px;
    }

    @keyframes vpFloatIn {
        from {
            opacity: 0;
            transform: scale(0.9) translateY(12px);
        }

        to {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }

    /* CTA Button */
    .cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 28px;
        background: var(--black);
        color: var(--white);
        text-decoration: none;
        border-radius: 10px;
        font-size: 0.88rem;
        font-weight: 700;
        border: 1.5px solid var(--black);
        transition: all 0.3s var(--ease);
        cursor: pointer;
    }

    .cta-btn:hover {
        background: var(--gray-800);
        border-color: var(--gray-800);
    }

    .cta-btn svg {
        transition: transform 0.3s var(--ease);
    }

    .cta-btn:hover svg {
        transform: translateX(-3px);
    }

    .cta-btn-outline {
        background: transparent;
        color: var(--gray-800);
        border-color: var(--gray-200);
    }

    .cta-btn-outline:hover {
        background: var(--gray-50);
        border-color: var(--gray-400);
        color: var(--black);
    }

    .cta-btn-light {
        background: var(--white);
        color: var(--black);
        border-color: var(--gray-200);
    }

    .cta-btn-light:hover {
        border-color: var(--black);
        background: var(--gray-50);
    }

    /* Section Titles */
    .section-overline {
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 12px;
        text-align: center;
    }

    .section-title {
        font-size: clamp(1.7rem, 4vw, 2.4rem);
        font-weight: 900;
        text-align: center;
        letter-spacing: -1px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    /* Intro / Compare */
    .intro {
        background: var(--white);
    }

    .intro-text {
        text-align: center;
        color: var(--gray-600);
        font-size: 1.05rem;
        margin-bottom: 60px;
    }

    .compare {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 0;
        align-items: stretch;
    }

    .compare-col {
        padding: 36px 32px;
        border-radius: 16px;
    }

    .compare-old {
        background: var(--gray-50);
        border: 1px solid var(--gray-200);
    }

    .compare-new {
        background: var(--accent-light);
        border: 1px solid #bbf7d0;
    }

    .compare-label {
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 1px;
        margin-bottom: 20px;
        text-transform: uppercase;
        color: var(--gray-400);
    }

    .compare-new .compare-label {
        color: var(--accent);
    }

    .compare-col ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .compare-col li {
        font-size: 0.95rem;
        font-weight: 400;
    }

    .compare-old li::before {
        content: '✕  ';
        color: var(--red);
        opacity: 0.5;
        font-weight: 300;
    }

    .compare-new li::before {
        content: '✓  ';
        color: var(--green);
    }

    .compare-divider {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 16px;
    }

    .compare-divider span {
        font-size: 0.7rem;
        font-weight: 900;
        color: var(--gray-400);
        background: var(--white);
        border: 1px solid var(--gray-200);
        padding: 8px 12px;
        border-radius: 8px;
    }

    /* Pain Points */
    .pains {
        background: var(--gray-50);
    }

    .pains-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-top: 48px;
    }

    .pain-card {
        background: var(--white);
        padding: 28px 20px;
        border-radius: 14px;
        text-align: center;
        border: 1px solid var(--gray-200);
        transition: all 0.3s var(--ease);
    }

    .pain-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
        border-color: transparent;
    }

    .pain-icon {
        width: 32px;
        height: 32px;
        margin: 0 auto 14px;
        color: var(--gray-400);
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .pain-card:hover .pain-icon {
        color: var(--accent);
    }

    .pain-card p {
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--gray-800);
    }

    /* Skills */
    .skills-section {
        background: var(--white);
    }

    .skills-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 48px;
    }

    .skill-item {
        padding: 32px;
        border-radius: 16px;
        border: 1px solid var(--gray-200);
        transition: all 0.4s var(--ease);
        position: relative;
        overflow: hidden;
    }

    .skill-item:hover {
        border-color: var(--accent);
        background: var(--accent-light);
    }

    .skill-num {
        font-size: 2.5rem;
        font-weight: 900;
        color: var(--gray-100);
        position: absolute;
        top: 12px;
        left: 16px;
        line-height: 1;
        letter-spacing: -2px;
    }

    .skill-item:hover .skill-num {
        color: #bbf7d0;
    }

    .skill-icon-wrap {
        margin-bottom: 16px;
    }

    .skill-icon-wrap svg {
        width: 28px;
        height: 28px;
        color: var(--accent);
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .skill-item h3 {
        font-size: 1.05rem;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .skill-item p {
        font-size: 0.85rem;
        color: var(--gray-600);
        font-weight: 400;
    }

    /* Method - Accordion Section */
    .method-section {
        background: #166534;
        color: var(--white);
    }

    .method-section .section-overline {
        color: #86efac;
    }

    .method-section .section-title {
        color: var(--white);
    }

    .method-subtitle {
        text-align: center;
        color: rgba(255, 255, 255, 0.75);
        margin-bottom: 48px;
        font-size: 0.95rem;
    }

    .method-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .method-card {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 18px 20px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 12px;
        transition: background 0.2s;
    }

    .method-card:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .method-num {
        width: 34px;
        height: 34px;
        min-width: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        font-weight: 900;
        font-size: 0.85rem;
        color: var(--white);
    }

    .method-title {
        flex: 1;
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--white);
    }

    .method-texts {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .method-subtitle-text {
        font-size: 0.78rem;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.5);
    }

    .method-lock {
        color: rgba(255, 255, 255, 0.4);
        min-width: 16px;
    }

    /* Test Section */
    .test-section {
        background: var(--gray-50);
        text-align: center;
    }

    .test-desc {
        color: var(--gray-600);
        margin-bottom: 28px;
        font-size: 0.95rem;
    }

    .test-tags {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-bottom: 40px;
    }

    .test-tags span {
        padding: 8px 16px;
        border-radius: 100px;
        font-size: 0.8rem;
        font-weight: 700;
        background: var(--white);
        border: 1px solid var(--gray-200);
        color: var(--gray-800);
    }

    .test-after {
        background: var(--white);
        padding: 32px;
        border-radius: 16px;
        border: 1px solid var(--gray-200);
        text-align: right;
    }

    .test-after h4 {
        font-weight: 700;
        margin-bottom: 16px;
        font-size: 0.95rem;
    }

    .test-steps {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .test-step {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.85rem;
        font-weight: 400;
        color: var(--gray-600);
    }

    .test-step svg {
        width: 18px;
        height: 18px;
        min-width: 18px;
        color: var(--green);
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    /* Achievements */
    .achieve-section {
        background: var(--white);
    }

    .achieve-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 48px;
    }

    .achieve-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 16px 20px;
        border-radius: 12px;
        background: var(--gray-50);
        border: 1px solid var(--gray-200);
        transition: all 0.3s var(--ease);
    }

    .achieve-item:hover {
        background: #ecfdf5;
        border-color: #a7f3d0;
    }

    .achieve-item svg {
        width: 18px;
        height: 18px;
        min-width: 18px;
        color: var(--green);
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .achieve-item span {
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--gray-800);
    }

    /* Instructor - Redesigned */
    .instructor-section {
        background: var(--gray-50);
    }

    .instructor-hero {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .instructor-image {
        border-radius: 20px;
        overflow: hidden;
        aspect-ratio: 3/4;
        background: linear-gradient(135deg, var(--accent-light), #f0fdf4);
    }

    .instructor-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .instructor-name {
        font-size: clamp(2rem, 4vw, 2.8rem);
        font-weight: 900;
        letter-spacing: -1px;
        line-height: 1.2;
        margin-bottom: 12px;
        text-align: right;
    }

    .instructor-tagline {
        font-size: 1rem;
        color: var(--gray-600);
        margin-bottom: 32px;
    }

    .instructor-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-item {
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: 14px;
        padding: 20px;
        text-align: center;
    }

    .stat-num {
        display: block;
        font-size: 1.6rem;
        font-weight: 900;
        color: var(--accent);
        margin-bottom: 4px;
    }

    .stat-label {
        font-size: 0.75rem;
        color: var(--gray-600);
        font-weight: 400;
    }

    /* Gift Section - Enhanced */
    .gift-section {
        background: var(--gray-50);
    }

    .gift-box {
        background: linear-gradient(145deg, #f0fdf4 0%, #ecfdf5 50%, #dcfce7 100%);
        border: 1.5px solid #bbf7d0;
        border-radius: 28px;
        padding: 56px 48px;
        position: relative;
        overflow: hidden;
    }

    .gift-box::before {
        content: '';
        position: absolute;
        top: -80px;
        left: -80px;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .gift-box::after {
        content: '';
        position: absolute;
        bottom: -60px;
        right: -60px;
        width: 180px;
        height: 180px;
        background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .gift-box-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: var(--white);
        border: 1px solid #bbf7d0;
        color: #166534;
        font-size: 0.8rem;
        font-weight: 700;
        padding: 8px 20px;
        border-radius: 100px;
        margin-bottom: 24px;
        box-shadow: 0 2px 12px rgba(34, 197, 94, 0.1);
    }

    .gift-box-content {
        position: relative;
        z-index: 1;
    }

    .gift-box-title {
        font-size: clamp(1.6rem, 3.5vw, 2.2rem);
        font-weight: 900;
        letter-spacing: -1px;
        line-height: 1.3;
        margin-bottom: 12px;
        color: var(--gray-800);
    }

    .gift-box-title span {
        background: linear-gradient(135deg, #166534, #22c55e);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .gift-box-desc {
        font-size: 1rem;
        color: var(--gray-600);
        margin-bottom: 40px;
        max-width: 500px;
    }

    .gift-videos-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .gift-video-item {
        background: var(--white);
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        overflow: hidden;
    }

    .gift-video-item summary {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px 18px;
        cursor: pointer;
        list-style: none;
        transition: background 0.2s;
    }

    .gift-video-item summary::-webkit-details-marker {
        display: none;
    }

    .gift-video-item summary:hover {
        background: #f8fafc;
    }

    .gift-video-num {
        width: 32px;
        height: 32px;
        min-width: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: var(--gray-100);
        border: 1px solid var(--gray-200);
        font-weight: 900;
        font-size: 0.82rem;
        color: var(--gray-800);
    }

    .gift-video-unlocked .gift-video-num {
        background: var(--accent-light);
        border-color: #bbf7d0;
        color: #166534;
    }

    .gift-video-title {
        flex: 1;
        font-size: 0.88rem;
        font-weight: 700;
        color: var(--gray-800);
    }

    .gift-lock-icon {
        color: var(--gray-400);
        min-width: 16px;
    }

    .gift-lock-icon.unlocked {
        color: var(--accent);
    }

    .gift-video-content {
        padding: 0 18px 18px;
    }

    .gift-mini-player {
        border-radius: 10px;
        overflow: hidden;
        background: #000;
        max-width: 480px;
        margin: 0 auto;
    }

    .gift-mini-player video {
        width: 100%;
        display: block;
        aspect-ratio: 16/9;
    }

    .gift-locked-msg {
        display: flex;
        align-items: center;
        gap: 10px;
        background: #fffbeb;
        border: 1px solid #fde68a;
        border-radius: 10px;
        padding: 12px 14px;
        margin-bottom: 12px;
    }

    .gift-locked-msg svg {
        color: #d97706;
        min-width: 18px;
    }

    .gift-locked-msg span {
        font-size: 0.8rem;
        font-weight: 700;
        color: #92400e;
    }

    .gift-cta-btn {
        font-size: 0.8rem;
        padding: 10px 20px;
    }

    /* Process */
    .process-section {
        background: var(--gray-50);
    }

    .process-flow {
        margin-top: 48px;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .process-item {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 22px 0;
        border-bottom: 1px solid var(--gray-200);
    }

    .process-item:last-child {
        border-bottom: none;
    }

    .process-num {
        width: 38px;
        height: 38px;
        min-width: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--accent);
        color: var(--white);
        font-weight: 900;
        font-size: 0.85rem;
    }

    .process-item strong {
        display: block;
        font-size: 0.95rem;
        margin-bottom: 2px;
    }

    .process-item p {
        font-size: 0.8rem;
        color: var(--gray-600);
    }

    /* FAQ */
    .faq-section {
        background: var(--white);
    }

    .faq-list {
        margin-top: 48px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .faq-item {
        border: 1px solid var(--gray-200);
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s var(--ease);
    }

    .faq-item[open] {
        background: var(--gray-50);
    }

    .faq-item summary {
        padding: 18px 24px;
        font-weight: 700;
        font-size: 0.95rem;
        cursor: pointer;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .faq-item summary::-webkit-details-marker {
        display: none;
    }

    .faq-item summary::after {
        content: '+';
        font-size: 1.3rem;
        font-weight: 300;
        color: var(--gray-400);
        transition: transform 0.3s var(--ease);
    }

    .faq-item[open] summary::after {
        transform: rotate(45deg);
    }

    .faq-item p {
        padding: 0 24px 18px;
        color: var(--gray-600);
        font-size: 0.9rem;
        line-height: 1.8;
    }

    /* Final CTA */
    .final-cta {
        background: #166534;
        color: var(--white);
        text-align: center;
        padding: 140px 24px;
    }

    .final-title {
        font-size: clamp(1.7rem, 4vw, 2.6rem);
        font-weight: 900;
        line-height: 1.3;
        letter-spacing: -1px;
        margin-bottom: 32px;
        color: var(--white);
    }

    .final-gifts {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-bottom: 40px;
    }

    .final-gifts span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 18px;
        border-radius: 100px;
        font-size: 0.8rem;
        font-weight: 400;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: var(--white);
    }

    .final-gifts span svg {
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .final-note {
        margin-top: 24px;
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.7);
    }

    /* Footer */
    .footer {
        padding: 40px 24px;
        text-align: center;
        border-top: 1px solid var(--gray-200);
    }

    .footer-logo {
        display: inline-block;
        margin-bottom: 8px;
    }

    .footer p {
        font-size: 0.8rem;
        color: var(--gray-400);
    }

    /* Animations */
    [data-animate] {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    }

    [data-animate].visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .section {
            padding: 80px 0;
        }

        .top-bar-inner {
            flex-direction: column;
            gap: 3px;
        }

        .top-bar-price {
            display: flex;
        }

        .site-header {
            position: fixed;
        }

        .hero-inner {
            grid-template-columns: 1fr;
            gap: 32px;
            padding: 110px 20px 60px;
            direction: rtl;
        }

        .hero-video-wrap {
            order: -1;
        }

        .hero-content {
            text-align: center;
        }

        .hero-tag {
            font-size: 0.75rem;
            padding: 5px 12px;
        }

        .hero-btns {
            justify-content: center;
            flex-direction: row;
            gap: 10px;
        }

        .hero-btns .cta-btn {
            padding: 10px 18px;
            font-size: 0.8rem;
        }

        .video-player.floating {
            width: 200px;
            height: 112px;
            bottom: 16px;
            left: 16px;
        }

        .compare {
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }

        .compare-divider {
            display: none;
        }

        .compare-col {
            padding: 20px 14px;
            border-radius: 12px;
        }

        .compare-col ul {
            gap: 8px;
        }

        .compare-col li {
            font-size: 0.82rem;
        }

        .compare-label {
            font-size: 0.6rem;
            margin-bottom: 12px;
        }

        .pains-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .skills-grid {
            grid-template-columns: 1fr;
        }

        .achieve-list {
            grid-template-columns: repeat(2, 1fr);
        }

        .test-steps {
            grid-template-columns: 1fr;
        }

        .final-cta {
            padding: 100px 24px;
        }

        .gift-box {
            padding: 40px 24px;
        }

        .nav {
            padding: 12px 16px;
        }

        .final-gifts {
            flex-direction: column;
            align-items: center;
        }
    }

    @media (max-width: 480px) {
        .pains-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
        }

        .pain-card {
            padding: 20px 12px;
        }

        .pain-card p {
            font-size: 0.8rem;
        }

        .pain-icon {
            width: 26px;
            height: 26px;
            margin-bottom: 10px;
        }

        .hero h1 {
            font-size: 2.2rem;
            letter-spacing: -1px;
        }

        .cta-btn {
            padding: 16px 32px;
            font-size: 0.9rem;
        }
    }

    /* Modal */
    .modal-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        z-index: 9999;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 24px;
    }

    .modal-overlay.active {
        display: flex;
    }

    .modal {
        background: var(--white);
        border-radius: 20px;
        padding: 28px 28px;
        max-width: 680px;
        width: 100%;
        position: relative;
        animation: modalIn 0.4s var(--ease);
    }

    .modal-body {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 24px;
    }

    .modal-step-nav {
        display: none;
    }

    .modal-next-btn {
        display: none;
    }

    .modal-col-form h3,
    .modal-col-summary h3 {
        font-size: 0.9rem;
        font-weight: 900;
        margin-bottom: 12px;
    }

    .modal-col-summary {
        background: var(--gray-50);
        border: 1px solid var(--gray-200);
        border-radius: 14px;
        padding: 18px;
        display: flex;
        flex-direction: column;
    }

    .modal-summary-product {
        margin-bottom: 8px;
    }

    .modal-summary-name {
        font-size: 0.8rem;
        font-weight: 700;
    }

    .modal-summary-divider {
        height: 1px;
        background: var(--gray-200);
        margin: 6px 0 8px;
    }

    .modal-pricing-rows {
        display: flex;
        flex-direction: column;
        gap: 4px;
        margin-bottom: 12px;
    }

    .modal-pricing-row {
        display: flex;
        justify-content: space-between;
        font-size: 0.75rem;
        color: var(--gray-600);
    }

    .modal-pricing-row .modal-price-old {
        text-decoration: line-through;
        font-size: 0.75rem;
    }

    .modal-pricing-row.discount {
        color: #16a34a;
    }

    .modal-pricing-row.total {
        background: #d3f5e0;
        font-weight: 500;
        font-size: 0.88rem;
        color: var(--black);
        padding: 10px;
        border-radius: 10px;
    }

    .modal-col-summary .form-submit {
        margin-top: auto;
    }

    /* Modal Coupon Accordion */
    .modal-coupon-accordion {
        margin-bottom: 12px;
    }

    .modal-coupon-accordion summary {
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--accent);
        cursor: pointer;
        list-style: none;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .modal-coupon-accordion summary::-webkit-details-marker {
        display: none;
    }

    .modal-coupon-accordion summary::before {
        content: '+';
        font-size: 0.9rem;
        font-weight: 700;
    }

    .modal-coupon-accordion[open] summary::before {
        content: '−';
    }

    .modal-coupon-content {
        margin-top: 8px;
    }

    /* Modal Gateways */
    .modal-gateways {
        margin-bottom: 12px;
    }

    .modal-gateways h4 {
        font-size: 0.75rem;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .modal-gateways-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5px;
    }

    .modal-gateway-option {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 7px 9px;
        border: 1.5px solid var(--gray-200);
        border-radius: 8px;
        cursor: pointer;
        font-size: 0.72rem;
        transition: border-color 0.2s;
    }

    .modal-gateway-option:has(input:checked) {
        border-color: var(--accent);
        background: var(--accent-light);
    }

    .modal-gateway-option input {
        display: none;
    }

    .modal-gateway-radio {
        width: 14px;
        height: 14px;
        border: 2px solid var(--gray-300);
        border-radius: 50%;
        position: relative;
        flex-shrink: 0;
    }

    .modal-gateway-option:has(input:checked) .modal-gateway-radio {
        border-color: var(--accent);
    }

    .modal-gateway-option:has(input:checked) .modal-gateway-radio::after {
        content: '';
        position: absolute;
        inset: 2px;
        background: var(--accent);
        border-radius: 50%;
    }

    .modal-col-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .modal-col-form {
        display: flex;
        flex-direction: column;
    }

    /* Redirect timer */
    .modal-redirect {
        display: none;
        text-align: center;
        padding: 40px 0;
        grid-column: 1 / -1;
    }

    .modal-redirect.active {
        display: block;
    }

    .modal-redirect-spinner {
        width: 48px;
        height: 48px;
        border: 3px solid var(--gray-200);
        border-top-color: var(--accent);
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
        margin: 0 auto 20px;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    .modal-redirect h4 {
        font-size: 1rem;
        font-weight: 900;
        margin-bottom: 8px;
    }

    .modal-redirect p {
        font-size: 0.85rem;
        color: var(--gray-600);
    }

    .modal-redirect .timer-count {
        display: inline-block;
        font-weight: 900;
        color: var(--accent);
        font-size: 1.1rem;
        min-width: 20px;
    }

    @keyframes modalIn {
        from {
            opacity: 0;
            transform: scale(0.95) translateY(10px);
        }

        to {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }

    .modal-close {
        position: absolute;
        top: 16px;
        left: 16px;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--gray-400);
        padding: 4px;
        border-radius: 8px;
        transition: all 0.2s;
    }

    .modal-close:hover {
        color: var(--black);
        background: var(--gray-100);
    }

    .modal-body h3 {
        font-size: 1.1rem;
        font-weight: 900;
        margin-bottom: 12px;
    }

    .modal-pricing {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
        padding: 10px 14px;
        background: var(--gray-50);
        border-radius: 10px;
        border: 1px solid var(--gray-200);
    }

    .modal-price-old {
        font-size: 0.8rem;
        color: var(--gray-400);
        text-decoration: line-through;
    }

    .modal-price-new {
        font-size: 1rem;
        font-weight: 900;
        color: var(--accent);
    }

    .modal-price-new small {
        font-size: 0.75rem;
        font-weight: 400;
        color: var(--gray-600);
    }

    .modal-price-badge {
        font-size: 0.65rem;
        font-weight: 700;
        background: #fef2f2;
        color: #dc2626;
        padding: 3px 10px;
        border-radius: 100px;
        border: 1px solid #fecaca;
        margin-right: auto;
    }

    .modal-desc {
        font-size: 0.85rem;
        color: var(--gray-600);
        margin-bottom: 28px;
    }

    .form-group {
        margin-bottom: 10px;
    }

    .form-group label {
        display: block;
        font-size: 0.75rem;
        font-weight: 700;
        margin-bottom: 4px;
        color: var(--gray-800);
    }

    .form-group input {
        width: 100%;
        padding: 10px 12px;
        border: 1.5px solid var(--gray-200);
        border-radius: 10px;
        font-size: 0.85rem;
        font-family: var(--font);
        outline: none;
        transition: border-color 0.2s;
    }

    .form-group input:focus {
        border-color: var(--accent);
    }

    .captcha-group .captcha-row {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .captcha-row input {
        flex: 1;
        padding: 10px 12px;
        border: 1.5px solid var(--gray-200);
        border-radius: 10px;
        font-size: 0.85rem;
        font-family: var(--font);
        outline: none;
        transition: border-color 0.2s;
    }

    .captcha-row input:focus {
        border-color: var(--accent);
    }

    .captcha-display {
        position: relative;
        background: var(--gray-100);
        border: 1px solid var(--gray-200);
        border-radius: 10px;
        padding: 10px 20px;
        font-size: 1.1rem;
        font-weight: 900;
        letter-spacing: 3px;
        color: var(--gray-800);
        user-select: none;
        direction: ltr;
    }

    .captcha-refresh {
        position: absolute;
        top: 2px;
        right: 2px;
        background: var(--white);
        border: none;
        border-radius: 6px;
        padding: 3px;
        cursor: pointer;
        color: var(--gray-400);
        transition: color 0.2s;
        display: flex;
        line-height: 1;
    }

    .captcha-refresh svg {
        width: 12px;
        height: 12px;
    }

    .captcha-refresh:hover {
        color: var(--accent);
    }

    .form-submit {
        width: 100%;
        justify-content: center;
        margin-top: 8px;
        font-family: var(--font);
        cursor: pointer;
    }

    /* Coupon row */
    .coupon-row {
        display: flex;
        gap: 8px;
    }

    .coupon-row input {
        flex: 1;
        padding: 10px 12px;
        border: 1.5px solid var(--gray-200);
        border-radius: 10px;
        font-size: 0.85rem;
        font-family: var(--font);
        outline: none;
        transition: border-color 0.2s;
    }

    .coupon-row input:focus {
        border-color: var(--accent);
    }

    .coupon-apply-btn {
        padding: 8px 16px;
        background: var(--gray-100);
        border: 1px solid var(--gray-200);
        border-radius: 8px;
        font-size: 0.8rem;
        font-weight: 700;
        cursor: pointer;
        font-family: var(--font);
        transition: background 0.2s;
    }

    .coupon-apply-btn:hover {
        background: var(--gray-200);
    }

    .coupon-msg {
        display: block;
        font-size: 0.75rem;
        margin-top: 4px;
    }

    .coupon-msg.success {
        color: #16a34a;
    }

    .coupon-msg.error {
        color: #dc2626;
    }

    /* Terms */
    .form-group-terms {
        margin-top: 2px;
        margin-bottom: 12px;
    }

    .terms-label {
        display: flex;
        align-items: flex-start;
        gap: 6px;
        font-size: 0.72rem;
        cursor: pointer;
    }

    .terms-label input[type="checkbox"] {
        margin-top: 3px;
        width: 16px;
        height: 16px;
    }

    .terms-label a {
        color: var(--accent);
        text-decoration: underline;
    }

    /* Secure note */
    .modal-secure-note {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        font-size: 0.68rem;
        color: var(--gray-500);
        margin-top: 8px;
    }

    /* Modal Success */
    .modal-success {
        text-align: center;
        padding: 20px 0;
    }

    .success-icon {
        width: 64px;
        height: 64px;
        color: var(--green);
        margin: 0 auto 20px;
        display: block;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .modal-success h3 {
        font-size: 1.3rem;
        font-weight: 900;
        margin-bottom: 8px;
    }

    .modal-success p {
        font-size: 0.9rem;
        color: var(--gray-600);
    }

    .modal-success .cta-btn {
        font-family: var(--font);
        cursor: pointer;
        border: none;
    }

    /* Responsive additions */
    @media (max-width: 768px) {
        .instructor-hero {
            grid-template-columns: 1fr;
            gap: 32px;
        }

        .instructor-image {
            aspect-ratio: 1/1;
            max-width: 280px;
            margin: 0 auto;
        }

        .instructor-name {
            text-align: center;
        }

        .instructor-tagline {
            text-align: center;
        }

        .instructor-section .section-overline {
            text-align: center !important;
        }

        .gift-box {
            padding: 36px 20px;
        }

        .gift-box-footer {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }

        .modal {
            padding: 24px 20px;
            max-width: 100%;
        }

        .modal-body {
            display: block;
        }

        .modal-col-form {
            display: block;
        }

        .modal-col-summary {
            display: none;
        }

        .modal-body.step-2 .modal-col-form {
            display: none;
        }

        .modal-body.step-2 .modal-col-summary {
            display: flex;
        }

        .modal-step-nav {
            display: flex;
            gap: 8px;
            margin-bottom: 16px;
        }

        .modal-step-btn {
            flex: 1;
            padding: 8px;
            font-size: 0.75rem;
            font-weight: 700;
            text-align: center;
            border: 1.5px solid var(--gray-200);
            border-radius: 8px;
            background: var(--white);
            color: var(--gray-500);
            cursor: pointer;
            font-family: var(--font);
            transition: all 0.2s;
        }

        .modal-step-btn.active {
            border-color: var(--accent);
            color: var(--accent);
            background: var(--accent-light);
        }

        .modal-col-form .modal-next-btn {
            display: block;
            width: 100%;
            margin-top: 12px;
        }

        .modal-redirect {
            grid-column: 1;
        }
    }