.elementor-2115 .elementor-element.elementor-element-4396d4e{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-2115 .elementor-element.elementor-element-4396d4e.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-2115 .elementor-element.elementor-element-d6276dc{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-2115 .elementor-element.elementor-element-05e08bc{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-2115 .elementor-element.elementor-element-4396d4e{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}}@media(min-width:768px){.elementor-2115 .elementor-element.elementor-element-4396d4e{--width:104.05%;}}/* Start custom CSS for html, class: .elementor-element-d6276dc *//* TOGGLE SWITCH TABS */
.tabs-nav {
    display: inline-flex;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 5px;
    margin: 0 auto 40px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.tab-btn {
    padding: 10px 24px;
    background: transparent;
    border: none;
    border-radius: 50px;
    color: var(--text-2);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s var(--ease);
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--text);
}

.tab-btn.active {
    color: #fff;
}

.tab-indicator {
    position: absolute;
    background: var(--red);
    border-radius: 50px;
    transition: all 0.3s var(--ease);
    z-index: 1;
    box-shadow: 0 2px 8px rgba(196, 22, 28, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tabs-nav {
        width: auto;
        padding: 4px;
    }

    .tab-btn {
        padding: 9px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .tabs-nav {
        padding: 3px;
    }

    .tab-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-44b6ad1 */:root {
            --bg: #0b0b0b;
            --bg-2: #111;
            --border: #1f1f1f;
            --text: #f2f2f2;
            --text-2: #b5b5b5;
            --text-3: #8a8a8a;
            --red: #c4161c;
            --ease: cubic-bezier(0.4,0,0.2,1);
        }

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

        body {
            background: var(--bg);
            color: var(--text);
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .faq-section {
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .title {
            font-size: clamp(1.75rem, 3.5vw, 2.5rem);
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin-bottom: 12px;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-2);
            border: 1px solid var(--border);
            border-radius: 10px;
            margin-bottom: 8px;
            overflow: hidden;
            transition: border-color 0.2s var(--ease);
        }

        .faq-item:hover {
            border-color: var(--text-3);
        }

        .faq-item.active {
            border-color: var(--red);
        }

        .faq-question {
            width: 100%;
            padding: 20px 24px;
            background: transparent;
            border: none;
            color: var(--text);
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            transition: color 0.2s var(--ease);
        }

        .faq-question:hover {
            color: var(--red);
        }

        .faq-icon {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            position: relative;
            transition: transform 0.3s var(--ease);
        }

        .faq-icon::before,
        .faq-icon::after {
            content: '';
            position: absolute;
            background: var(--text-2);
            transition: all 0.3s var(--ease);
        }

        .faq-icon::before {
            top: 50%;
            left: 0;
            width: 100%;
            height: 2px;
            transform: translateY(-50%);
        }

        .faq-icon::after {
            top: 0;
            left: 50%;
            width: 2px;
            height: 100%;
            transform: translateX(-50%);
        }

        .faq-item.active .faq-icon::after {
            transform: translateX(-50%) rotate(90deg);
            opacity: 0;
        }

        .faq-item.active .faq-icon::before {
            background: var(--red);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s var(--ease);
        }

        .faq-answer-content {
            padding: 0 24px 20px;
            color: var(--text-2);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .faq-answer-content strong {
            color: var(--text);
            font-weight: 600;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .faq-section {
                padding: 60px 0;
            }

            .section-header {
                margin-bottom: 32px;
            }

            .faq-question {
                padding: 16px 20px;
                font-size: 0.95rem;
            }

            .faq-answer-content {
                padding: 0 20px 16px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }

            .title {
                font-size: 1.5rem;
            }

            .faq-question {
                padding: 14px 18px;
                font-size: 0.9rem;
            }

            .faq-answer-content {
                padding: 0 18px 14px;
                font-size: 0.85rem;
            }

            .faq-icon {
                width: 18px;
                height: 18px;
            }
        }/* End custom CSS */
/* Start custom CSS */:root {
    --bg: #0b0b0b;
    --bg-2: #111;
    --border: #1f1f1f;
    --text: #f2f2f2;
    --text-2: #b5b5b5;
    --text-3: #8a8a8a;
    --red: #c4161c;
    --green: #22c55e;
    --ease: cubic-bezier(0.4,0,0.2,1);
}

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* SECTION */
.membership-section,
.faq-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 12px;
}

.subtitle {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: var(--text-2);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
}

/* TABS */
.tabs-nav {
    display: inline-flex;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 4px;
    margin: 0 auto 40px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.tab-btn {
    padding: 8px 20px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text-2);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    z-index: 2;
}

.tab-btn:hover {
    color: var(--text);
}

.tab-btn.active {
    color: #fff;
}

.tab-indicator {
    position: absolute;
    background: var(--red);
    border-radius: 8px;
    transition: all 0.3s var(--ease);
    z-index: 1;
}

/* TAB CONTENT */
.tab-pane {
    display: none;
    animation: fadeIn 0.3s var(--ease);
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.guarantee-text {
    text-align: center;
    color: var(--text-3);
    font-size: 0.9rem;
    margin-bottom: 32px;
    line-height: 1.5;
}

/* PRICING GRID */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 16px;
}

.pricing-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    transition: all 0.25s var(--ease);
}

.pricing-card:hover {
    border-color: var(--red);
    transform: translateY(-2px);
}

.pricing-card.popular {
    border-color: var(--red);
    position: relative;
    order: -1;
}

.ribbon {
    position: absolute;
    top: -10px;
    right: 16px;
    background: var(--red);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.card-header h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.card-header .sub {
    font-size: 0.75rem;
    color: var(--text-3);
}

.price {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--red);
    margin: 16px 0 4px;
    line-height: 1;
}

.price .currency {
    font-size: 1.15rem;
    vertical-align: top;
}

.price .decimals {
    font-size: 1.15rem;
}

.price .period {
    display: block;
    font-size: 0.85rem;
    color: var(--text-3);
    font-weight: 500;
    margin-top: 4px;
}

.features {
    list-style: none;
    margin: 20px 0;
}

.features li {
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--text-2);
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.features .check {
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.75rem;
}

.cta-btn {
    display: block;
    width: 100%;
    padding: 11px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s var(--ease);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.cta-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.cta-btn.primary {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.cta-btn.primary:hover {
    background: #d61a20;
}

/* COURSE GRID */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
    gap: 16px;
}

.course-card {
    position: relative;
    height: 340px;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: transform 0.25s var(--ease);
    cursor: pointer;
}

.course-card:hover {
    transform: translateY(-4px);
}

.course-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
}

.course-price {
    align-self: flex-end;
    background: var(--red);
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
}

.course-info {
    text-align: center;
}

.course-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.course-info h5 {
    font-size: 0.9rem;
    color: var(--text-2);
    font-weight: 500;
    margin-bottom: 12px;
}

.course-btn {
    display: inline-block;
    padding: 9px 20px;
    background: #fff;
    color: #000;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s var(--ease);
}

.course-btn:hover {
    background: var(--red);
    color: #fff;
}

/* FAQ SECTION */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.25s var(--ease);
}

.faq-item:hover {
    border-color: var(--red);
}

.faq-item[open] {
    border-color: var(--red);
}

.faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    transition: all 0.2s var(--ease);
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--red);
}

.faq-item[open] summary {
    color: var(--red);
    border-bottom: 1px solid var(--border);
}

.faq-question-text {
    flex: 1;
    padding-right: 16px;
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--red);
    transition: all 0.3s var(--ease);
}

.faq-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-icon::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq-item[open] .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer-content {
    padding: 20px 24px 24px 24px;
    color: var(--text-2);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-answer-content strong {
    color: var(--text);
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .membership-section,
    .faq-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .tabs-nav {
        width: auto;
    }

    .pricing-card {
        padding: 20px;
    }

    .price {
        font-size: 2rem;
    }

    .features li {
        padding: 7px 0;
        font-size: 0.8rem;
    }

    .course-card {
        height: 320px;
    }

    .course-info h4 {
        font-size: 1.15rem;
    }

    .faq-item summary {
        font-size: 0.95rem;
        padding: 18px 20px;
    }

    .faq-answer-content {
        padding: 16px 20px 20px 20px;
        font-size: 0.9rem;
    }

    .faq-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .title {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .tabs-nav {
        padding: 3px;
    }

    .tab-btn {
        padding: 7px 16px;
        font-size: 0.85rem;
    }

    .pricing-card {
        padding: 18px;
    }

    .card-header h3 {
        font-size: 1.2rem;
    }

    .price {
        font-size: 1.85rem;
    }

    .course-card {
        height: 300px;
    }

    .faq-item summary {
        padding: 16px 18px;
        font-size: 0.9rem;
    }

    .faq-answer-content {
        padding: 14px 18px 18px 18px;
    }

    .faq-question-text {
        padding-right: 12px;
    }
}/* End custom CSS */