:root {
    --bg-main: #000000;
    --green-dark: #111111;
    --green-soft: #f8c400;
    --gold: #c89b00;
    --light: #fff8dc;
    --muted: #d6c27a;
    --shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    --radius: 22px;

    --accent-green: #f8c400;
    --accent-dark: #c89b00;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
    background: var(--bg-main);
    color: var(--light);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ================= HEADER ================= */
header {
    background: #000000;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--green-soft);
}

.btn {
    padding: 12px 24px;
    border-radius: 30px;
    background: var(--green-soft);
    color: #000;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
    display: inline-block;
}

.btn:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--green-soft);
    color: var(--green-soft);
}

.btn-outline:hover {
    background: var(--green-soft);
    color: #000;
}

/* ================= MOBILE HEADER BUTTON FIX ================= */
@media (max-width: 768px) {
    header .btn {
        padding: 8px 16px;
        font-size: 14px;
        border-radius: 22px;
    }
}

/* ================= HERO ================= */
.hero {
    padding: 90px 0 70px;
    background: linear-gradient(180deg, #000000 0%, #111111 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--light);
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 35px;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: linear-gradient(145deg, #111111, #1a1a1a);
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
    color: #ffffff;
}

/* ================= TRUST ================= */
.trust {
    padding: 40px 0;
    background: #050505;
}

.trust h4 {
    text-align: center;
    color: var(--muted);
    margin-bottom: 20px;
    font-weight: 500;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    opacity: 0.7;
}

.trust-logos div {
    background: #111111;
    width: 120px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--muted);
}

/* ================= SECTION BASE ================= */
section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 40px;
    margin-bottom: 12px;
    color: var(--light);
}

.section-title p {
    color: var(--muted);
    max-width: 700px;
    margin: auto;
    font-size: 17px;
}

/* ================= FEATURES ================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #111111;
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--green-soft), var(--gold));
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 700;
    font-size: 18px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--light);
}

.feature-card p {
    color: var(--muted);
    font-size: 15px;
}

.feature-card strong {
    color: var(--green-soft);
}

/* ================= EARNINGS ================= */
.earnings {
    background: linear-gradient(180deg, #111111 0%, #000000 100%);
}

.earnings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.earning-card {
    background: #111111;
    color: var(--light);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.earning-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--muted);
}

.earning-card h3 {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 6px;
}

.earning-card p {
    font-size: 14px;
    opacity: 0.9;
}

/* ================= HOW IT WORKS ================= */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.step {
    background: #111111;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green-soft);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    position: absolute;
    top: -22px;
    left: 30px;
}

.step h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--light);
}

.step p {
    color: var(--muted);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .dashboard-block {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dashboard-text h2 {
        font-size: 28px;
    }

    .dashboard-text p {
        font-size: 15px;
    }
}

/* ================= PRICING ================= */
.pricing {
    background: linear-gradient(180deg, #000000 0%, #111111 100%);
}

.pricing-card {
    max-width: 720px;
    margin: auto;
    background: #111111;
    color: var(--light);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.pricing-card h2 {
    font-size: 38px;
    margin-bottom: 10px;
    color: var(--light);
}

.pricing-card p {
    opacity: 0.9;
    margin-bottom: 30px;
    color: var(--muted);
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(248, 196, 0, 0.18);
    font-size: 15px;
}

.price-row:last-child {
    border-bottom: none;
}

.pricing-highlight {
    margin-top: 25px;
    background: rgba(248, 196, 0, 0.08);
    padding: 20px;
    border-radius: 14px;
    font-size: 16px;
    color: var(--gold);
    font-weight: 600;
}

.pricing-actions {
    margin-top: 30px;
}

/* ================= TESTIMONIALS ================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial {
    background: #111111;
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.testimonial p {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 18px;
}

.testimonial .user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--gold);
}

.testimonial .name {
    font-weight: 600;
    font-size: 14px;
    color: var(--light);
}

.testimonial .role {
    font-size: 12px;
    color: var(--muted);
}

/* ================= FAQ ================= */
.faq {
    background: linear-gradient(180deg, #111111 0%, #000000 100%);
    padding: 80px 0;
}

.section-title h2 {
    font-size: 38px;
    margin-bottom: 16px;
    text-align: center;
    color: var(--light);
}

.section-title p {
    text-align: center;
    color: var(--muted);
    font-size: 17px;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    background: #111111;
    margin-bottom: 16px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: none;
}

.faq-question {
    padding: 20px 24px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--light);
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--muted);
    font-size: 15px;
    display: none;
}

/* Show answer when active */
.faq-item.active .faq-answer {
    display: block;
}

/* Icon */
.faq-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
    color: var(--gold);
}

/* Rotate icon when active */
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* ================= FOOTER ================= */
footer {
    background: #000000;
    color: var(--muted);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    margin-bottom: 16px;
    color: var(--light);
}

.footer-column a {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    opacity: 0.9;
    color: var(--muted);
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    opacity: 0.7;
    border-top: 1px solid rgba(248, 196, 0, 0.12);
    padding-top: 20px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {

    .hero-grid,
    .dashboard-preview {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 40px;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .pricing-card {
        padding: 35px 25px;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 34px;
    }

    .cta h2 {
        font-size: 34px;
    }

    .hero-image,
    .dashboard-image {
        height: 300px;
    }

    .nav-links {
        display: none;
    }
}

.feature-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* ================= SOCIAL PROOF NOTIFICATION ================= */
#socialProofNotification {
    position: fixed;
    bottom: 40px;
    left: 20px;
    background: rgba(17, 17, 17, 0.96);
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.5s ease;
    border-left: 5px solid var(--green-soft);
    z-index: 1500;
    color: #ffffff;
}

#socialProofNotification.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.social-name {
    font-weight: 700;
    color: var(--gold);
}

.social-plan {
    font-weight: 600;
    color: var(--light);
}

.social-time {
    font-size: 0.8rem;
    color: var(--muted);
    display: block;
    margin-top: 3px;
}

/* ================= MOBILE VISIBILITY FIX ================= */
@media (max-width: 600px) {
    body {
        overflow-x: hidden;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-grid,
    .steps-grid,
    .features-grid,
    .earnings-grid,
    .testimonials-grid,
    .footer-grid {
        grid-template-columns: 1fr !important;
    }

    .hero-image {
        height: auto !important;
        min-height: 240px;
    }

    .feature-card,
    .earning-card,
    .step,
    .testimonial,
    .pricing-card {
        padding: 22px 18px !important;
    }

    h1 {
        font-size: 32px !important;
    }

    h2 {
        font-size: 28px !important;
    }

    h3 {
        font-size: 18px !important;
    }

    p {
        font-size: 15px !important;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
    }

    .nav {
        flex-wrap: wrap;
    }

    .logo img {
        height: 34px;
    }

    .pricing-card h2 {
        font-size: 30px !important;
    }

    .cta h2 {
        font-size: 30px !important;
    }

    .cta p {
        font-size: 16px !important;
    }

    .testimonial-modal {
        max-height: 90vh;
    }

    .testimonial-content {
        padding-right: 0;
    }

    .faq-question {
        font-size: 15px;
    }
}

/* ================= PROMOTIONS & CERTIFICATION ================= */
.promo-certification {
    padding: 60px 0;
    background: linear-gradient(180deg, #111111 0%, #000000 100%);
}

.promo-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    padding: 20px 0;
}

.promo-text h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--light);
}

.promo-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--muted);
}

.promo-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.responsive-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .promo-block {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .promo-text h2 {
        font-size: 28px;
    }

    .promo-text p {
        font-size: 15px;
    }

    .promo-block:last-child {
        margin-bottom: 0;
    }
}

.testimonial-card p {
    color: #000000 !important;
}