/*
Theme Name: MobCash Theme
Theme URI: https://betongame.com
Author: BetOnGame
Author URI: https://betongame.com
Description: MobCash cashier landing page theme - Earn money as a Betongame MobCash cashier
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mobcash-theme
Tags: one-column, custom-menu, featured-images, theme-options, translation-ready
*/

/* --- RESET & BASE STYLES (DARK THEME) --- */
:root {
    --bg-main: #0B0E14;
    --bg-header: #161A24;
    --bg-card: #1E2330;
    --text-white: #FFFFFF;
    --text-gray: #8A92A6;
    --accent-cyan: #00E599;
    --accent-purple: #6E32F9;
    --border-color: #272C3D;
    --primary-purple: #6E32F9;
    --primary-purple-light: #8A5df2;
    --dark-text: #FFFFFF;
    --gray-text: #8A92A6;
    --light-bg: #0B0E14;
    --dark-bg: #08080A;
    --card-bg: #1E2330;
    --border-dark: #272C3D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: clip;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-white);
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

/* --- REVEAL ANIMATION --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- HEADER STYLES --- */
.header-container {
    background-color: var(--bg-header);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 100;
}
.main-header {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    z-index: 100;
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
}

/* LOGO STYLES */
.header-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: #e9ecfc;
    text-decoration: none;
    z-index: 101;
}

.logo-toggle-icon {
    display: inline-block;
    width: 32px;
    height: 18px;
    background: var(--accent-cyan);
    border-radius: 20px;
    position: relative;
    margin: 0 2px;
    box-shadow: 0 0 10px rgba(0, 229, 153, 0.4);
}

.logo-toggle-icon::after {
    content: '';
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: #111;
    border-radius: 50%;
}

.logo-game-text {
    color: var(--accent-cyan);
}

/* DESKTOP NAV */
.desktop-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.desktop-nav a:hover {
    color: var(--text-white);
}

/* BURGER BUTTON */
.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 101;
}

.burger-icon {
    width: 24px;
    height: 24px;
    stroke: var(--text-white);
}

/* MOBILE MENU */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 998;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-header);
    border-right: 1px solid var(--border-color);
    padding: 80px 30px 30px;
    transition: left 0.3s ease-in-out;
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav a {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    text-decoration: none;
    display: block;
}

.close-menu-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    cursor: pointer;
}

@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    .burger-btn {
        display: block;
    }
}

.mobile-nav.active {
    left: 0;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

/* --- HERO SECTION --- */
.res-hero {
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.res-hero-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.res-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    margin: 0 0 25px 0;
    letter-spacing: -1.5px;
    color: var(--text-white);
}

.res-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
}

.res-hero-btns {
    display: flex;
    gap: 15px;
    flex-direction: row;
}

.res-btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.res-btn-primary {
    background-color: var(--accent-purple);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(110, 50, 249, 0.3);
}

.res-btn-primary:hover {
    background-color: #5b28d6;
    transform: translateY(-2px);
}

.res-btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-white);
}

.res-btn-outline:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.res-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.res-coin {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #a47af5, #6226EA);
    box-shadow: 0 20px 50px rgba(98, 38, 234, 0.4), inset 0 0 20px rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.res-toggle {
    width: 180px;
    height: 100px;
    background: #e0e0e0;
    border-radius: 50px;
    box-shadow: inset 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    transform: rotate(-15deg);
}

.res-toggle::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 10px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6226EA, #4a1bb5);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(98, 38, 234, 0.5);
}

@media (max-width: 768px) {
    .res-hero {
        flex-direction: column;
        padding: 20px 0 50px 0;
        gap: 20px;
    }
    .res-hero-image {
        order: -1;
        margin-bottom: 5px;
    }
    .res-coin {
        width: 160px;
        height: 160px;
    }
    .res-toggle {
        width: 80px;
        height: 44px;
        border-radius: 22px;
    }
    .res-toggle::after {
        width: 36px;
        height: 36px;
        right: 4px;
        top: 4px;
    }
    .res-hero-title {
        font-size: 30px;
        text-align: left;
        margin-bottom: 15px;
    }
    .res-hero-subtitle {
        font-size: 17px;
        text-align: left;
        margin-bottom: 25px;
    }
    .res-hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .res-btn {
        width: 100%;
        padding: 16px;
    }
}

/* --- MARQUEE --- */
.marquee-wrapper {
    background-color: #000;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

.marquee-content {
    display: flex;
    animation: scroll 20s linear infinite;
}

.marquee-item {
    color: white;
    font-size: 18px;
    font-weight: 500;
    margin-right: 50px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* --- CALCULATOR SECTION --- */
.calculator {
    padding: 60px 0;
    text-align: center;
}

.calculator h2 {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--text-white);
}

.calc-label {
    font-size: 14px;
    margin-bottom: 30px;
    color: var(--text-gray);
}

.slider-container {
    max-width: 400px;
    margin: 0 auto 30px;
    position: relative;
}

.range-value-display {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.arrows {
    color: #ccc;
    font-size: 10px;
    display: flex;
    flex-direction: column;
    line-height: 8px;
}

input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid var(--accent-cyan);
    cursor: pointer;
    margin-top: -9px;
    box-shadow: 0 0 10px rgba(0, 229, 153, 0.4);
    transition: transform 0.1s;
}

input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    cursor: pointer;
    background: var(--border-color);
    border-radius: 4px;
}

.income-title {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.income-result {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--text-white);
}

.purple-num {
    color: var(--primary-purple);
}

/* --- PARTNER SECTION --- */
.res-partner-section {
    background-color: var(--bg-main);
    color: white;
    padding: 60px 0;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.res-partner-grid {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.res-partner-content {
    flex: 1;
    max-width: 600px;
}

.res-partner-title {
    font-size: 40px;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-white);
}

.res-partner-desc {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.res-stats-row {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    flex-direction: row;
}

.res-stat-item h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-cyan);
    margin: 0 0 5px 0;
    line-height: 1;
}

.res-stat-item p {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.res-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    flex: 1;
    max-width: 500px;
}

.res-feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    aspect-ratio: 1 / 1;
    transition: all 0.3s ease;
    position: relative;
}

.res-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 229, 153, 0.1);
}

.res-feature-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 15px;
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
}

.res-feature-text {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .res-partner-section {
        padding: 60px 0;
    }
    .res-partner-grid {
        flex-direction: column;
        gap: 40px;
    }
    .res-partner-content {
        max-width: 100%;
    }
    .res-stats-row {
        flex-direction: column;
        gap: 25px;
        margin: 30px 0;
    }
    .res-features-grid {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .res-partner-title {
        font-size: 28px;
    }
    .res-stat-item h3 {
        font-size: 32px;
    }
    .res-features-grid {
        gap: 15px;
    }
}

/* --- PROCESS SECTION --- */
.res-process-section {
    padding: 60px 0;
    background-color: var(--bg-main);
    text-align: center;
    font-family: 'Inter', sans-serif;
    color: var(--text-white);
}

.res-process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.res-process-title {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.res-process-desc {
    max-width: 700px;
    margin: 0 auto 70px;
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 16px;
}

.res-steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.res-steps-line-desktop {
    position: absolute;
    top: 35px;
    left: 15%;
    right: 15%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 0;
    display: block;
}

.res-steps-line-desktop::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
    opacity: 0.3;
}

.res-step-item {
    position: relative;
    z-index: 1;
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.res-step-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background-color: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-white);
    flex-shrink: 0;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.res-step-icon.filled {
    background-color: var(--accent-purple);
    border-color: var(--accent-purple);
    color: white;
    box-shadow: 0 10px 25px rgba(110, 50, 249, 0.4);
}

.res-step-text {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-white);
    font-weight: 500;
    max-width: 240px;
}

@media (max-width: 768px) {
    .res-process-section {
        padding: 60px 0;
    }
    .res-process-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .res-process-desc {
        margin-bottom: 40px;
    }
    .res-steps-container {
        flex-direction: column;
        gap: 0;
    }
    .res-steps-line-desktop {
        display: none;
    }
    .res-step-item {
        width: 100%;
        max-width: 100%;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding-bottom: 40px;
    }
    .res-step-item:last-child {
        padding-bottom: 0;
    }
    .res-step-icon {
        margin-bottom: 0;
        margin-right: 20px;
        position: relative;
        z-index: 2;
    }
    .res-step-text {
        font-size: 15px;
        max-width: 100%;
        padding-top: 10px;
    }
    .res-step-item:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 60px;
        left: 29px;
        width: 2px;
        height: calc(100% - 20px);
        background-color: var(--border-color);
        z-index: 1;
    }
}

/* --- INCOME SECTION --- */
.inc-section {
    padding: 80px 0;
    font-family: 'Inter', sans-serif;
    color: white;
    position: relative;
    z-index: 2;
}

.inc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bg-dollar {
    position: absolute;
    top: 10%;
    right: -50px;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 400px;
    line-height: 1;
    color: #ffffff;
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.inc-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    font-weight: 600;
}

.inc-cards-wrapper {
    display: flex;
    gap: 20px;
    margin-bottom: 120px;
    flex-wrap: wrap;
    justify-content: center;
}

.inc-card {
    background-color: var(--bg-header);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 200px;
    flex: 1;
    min-height: 220px;
    transition: all 0.3s ease;
}

.inc-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    background-color: var(--bg-card);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.inc-card-icon {
    margin-bottom: 15px;
    color: var(--accent-cyan);
}

.inc-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.inc-card p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.4;
}

.inc-badge {
    background-color: rgba(110, 50, 249, 0.1);
    border: 1px solid rgba(110, 50, 249, 0.3);
    color: var(--accent-purple);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.inc-diagram-title {
    font-size: 36px;
    margin: 0 0 60px;
    font-weight: 800;
}

.diagram-box {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 260px;
    margin: 0 auto 60px;
}

.d-icon-group {
    position: absolute;
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.d-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.d-label {
    font-size: 12px;
    color: #ccc;
}

.pos-tl {
    top: 0;
    left: 0;
}

.pos-tl .d-icon-box {
    background: #1A1A1D;
    border: 1px solid #333;
}

.pos-tr {
    top: 0;
    right: 0;
}

.pos-tr .d-icon-box {
    background: #6226EA;
}

.pos-bc {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.pos-bc .d-icon-box {
    background: #1A1A1D;
    border: 1px solid #333;
}

.diagram-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: visible;
}

@media (max-width: 768px) {
    .bg-dollar {
        font-size: 250px;
        right: -20px;
        top: 5%;
    }
    .inc-cards-wrapper {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .inc-cards-wrapper::-webkit-scrollbar {
        display: none;
    }
    .inc-card {
        min-width: 260px;
        max-width: 260px;
        scroll-snap-align: center;
        flex: 0 0 auto;
    }
    .diagram-box {
        transform: scale(0.9);
    }
}

/* --- HOW TO START SECTION --- */
.how-to-start-section {
    padding: 100px 0 60px;
}

.how-to-start-section h2 {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.steps-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.step-item {
    flex: 1;
    min-width: 180px;
}

.step-num {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
}

.step-line {
    height: 1px;
    background-color: #ddd;
    width: 100%;
    margin-bottom: 15px;
}

.step-item p {
    font-size: 14px;
    line-height: 1.5;
    color: #111;
}

/* --- TIMELINE SECTION --- */
.timeline-section {
    padding: 60px 0 100px;
}

.timeline-section h2 {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 60px;
    text-align: center;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-bg-line {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #E0E0E0;
    z-index: 0;
}

.timeline-progress-line {
    position: absolute;
    top: 25px;
    left: 0;
    width: 25%;
    height: 2px;
    background-color: #111;
    z-index: 0;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
    text-align: center;
}

.timeline-step-num {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
}

.timeline-step-num.active {
    background-color: #08080A;
    color: white;
}

.timeline-step-num.inactive {
    background-color: #D4D4D4;
    color: white;
}

.timeline-step p {
    font-size: 13px;
    color: #111;
    line-height: 1.4;
}

.timeline-step.inactive p {
    color: #444;
}

/* --- FAQ SECTION --- */
.faq-section {
    padding: 60px 0;
    background-color: var(--bg-main);
}

.faq-title {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: var(--text-white);
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 25px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    color: var(--text-white);
    transition: color 0.3s ease;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
    max-width: 90%;
}

.faq-contacts {
    margin-top: 60px;
}

.faq-contacts h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-white);
}

.faq-contacts > p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.faq-btns {
    display: flex;
    gap: 15px;
}

.btn-telegram {
    background-color: var(--accent-purple);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-telegram:hover {
    background-color: #5b28d6;
    transform: translateY(-2px);
}

.btn-email {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-email:hover {
    border-color: var(--text-white);
}

/* --- CONTACT FORM SECTION --- */
.contact-section {
    background-color: #08080A;
    color: white;
    padding: 100px 0;
}

.contact-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.contact-header h2 {
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-header p {
    font-size: 14px;
    color: #B0B0B0;
    line-height: 1.5;
}

.contact-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.form-field {
    margin-bottom: 15px;
}

.form-field input,
.form-field select {
    width: 100%;
    background-color: #1F1F23;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 16px;
    color: white;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    font-family: inherit;
}

.form-field select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    color: #B0B0B0;
}

.phone-field {
    display: flex;
    align-items: center;
    background-color: #1F1F23;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 0 16px;
}

.phone-prefix {
    display: flex;
    align-items: center;
    padding-right: 15px;
    border-right: 1px solid #333;
    height: 50px;
}

.phone-field input {
    flex: 1;
    background-color: transparent;
    border: none;
    padding: 16px;
    color: white;
    font-size: 14px;
    outline: none;
    font-family: inherit;
}

.select-wrapper {
    position: relative;
}

.select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-submit {
    width: 100%;
    background-color: #6226EA;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s ease;
    margin-top: 25px;
}

.form-submit:hover {
    background-color: #5020c0;
}

.form-legal {
    font-size: 12px;
    color: #888;
    margin-top: 20px;
    line-height: 1.5;
}

.form-legal a {
    color: #B0B0B0;
    text-decoration: underline;
}

.contact-icons {
    margin-top: 30px;
}

.contact-icons p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.contact-icons-row {
    display: flex;
    gap: 10px;
}

.contact-icon-link {
    width: 40px;
    height: 40px;
    background-color: #1F1F23;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.contact-icon-link:hover {
    background-color: #6226EA;
}

/* --- REVIEWS SECTION --- */
.reviews-section {
    background-color: var(--bg-main);
    padding: 60px 0;
    overflow: hidden;
}

.reviews-title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--text-white);
    letter-spacing: 2px;
}

.reviews-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 60px;
}

.reviews-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: transparent;
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.slider-btn:hover {
    background-color: var(--bg-card);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.reviews-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
    justify-content: flex-start;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.review-card {
    background: linear-gradient(145deg, rgba(30, 35, 48, 0.9) 0%, rgba(15, 17, 24, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    min-width: 360px;
    flex: 0 0 auto;
    max-width: 360px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 150px;
    font-family: serif;
    color: rgba(0, 229, 153, 0.03);
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 229, 153, 0.4);
    box-shadow: 0 30px 60px rgba(0, 229, 153, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.review-name {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-white);
}

.review-income {
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(110, 50, 249, 0.1);
    border: 1px solid rgba(110, 50, 249, 0.2);
    padding: 8px 16px;
    border-radius: 30px;
}

.review-income span {
    color: var(--accent-purple);
    font-weight: 700;
    font-size: 18px;
}

.review-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-weight: 400;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.review-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.review-dot.active {
    background-color: var(--accent-cyan);
}

.review-dot.inactive {
    background-color: var(--border-color);
}

/* --- FOOTER --- */
.main-footer {
    background-color: #050608;
    color: white;
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
    margin-top: 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-tagline {
    color: var(--text-gray);
    font-size: 14px;
    max-width: 300px;
    text-align: right;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 13px;
    color: #5a6072;
}

.footer-nav {
    display: flex;
    gap: 25px;
}

.footer-nav a {
    font-size: 13px;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--accent-cyan);
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .footer-tagline {
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}
