/* GLOBAL */
section {
    padding: 110px 0;
}

.section-tag {
    color: #cfa21b;
    font-size: 13px;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    margin: 15px 0 60px;
}

/* HERO */
.hero-premium {
    background:
        radial-gradient(
            circle at 30% 40%,
            rgba(207, 162, 27, 0.15),
            transparent 40%
        ),
        linear-gradient(135deg, #0a0f1c 0%, #0f172a 100%);
    padding: 170px 0 140px;
    color: #fff;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
}

.hero-title span {
    color: #cfa21b;
}

.hero-subtitle {
    max-width: 680px;
    margin: 25px auto 45px;
    font-size: 18px;
    color: #cbd5e1;
}

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 30px;
    background: rgba(207, 162, 27, 0.15);
    color: #cfa21b;
    font-size: 13px;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* BUTTONS */
.btn-primary-premium {
    background: linear-gradient(135deg, #cfa21b, #b88a00);
    padding: 14px 36px;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    transition: 0.25s ease;
    text-decoration: none;
}

.btn-primary-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(207, 162, 27, 0.4);
    color: #fff;
}

.btn-outline-premium {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 36px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
}

.btn-outline-premium:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* TRUST */
.trust-strip {
    background: #0f172a;
    color: #94a3b8;
    padding: 40px 0;
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}
/* HOW SECTION */
.how-section {
    background: #f8fafc;
    padding: 110px 0;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.how-card {
    background: #ffffff;
    padding: 45px 30px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.how-card:hover {
    transform: translateY(-6px);
}

.step-number {
    font-size: 42px;
    font-weight: 800;
    color: rgba(207, 162, 27, 0.2);
    margin-bottom: 15px;
}

/* WHY */
.why-section {
    background: #f8fafc;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.glass-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: 0.25s ease;
}

.glass-card:hover {
    transform: translateY(-6px);
}

/* ================= PLANS ================= */
.plans-section {
    padding: 60px 15px;
    background: #0f172a;
    color: #fff;
}

.section-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #cfa21b;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 40px;
}

/* Card */
.plan-card-premium {
    background: #1e293b;
    color: #fff;
    padding: 25px 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.plan-card-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Plan Header */
.plan-card-premium h5 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #fff;
}

.plan-card-premium .price {
    font-size: 22px;
    font-weight: 700;
    color: #cfa21b;
}

.plan-card-premium .price span {
    display: block;
    font-size: 12px;
    color: #94a3b8;
}
/* Default - hide arrow on desktop */
.phase-title .arrow {
    display: none;
    margin-right: 8px;
    transition: transform 0.3s ease;
}

/* Show on mobile */
@media (max-width: 767px) {
    .phase-title .arrow {
        display: inline-block;
    }

    /* Collapse content by default */
    .phase-box ul,
    .funded-box ul {
        display: none;
    }

    .phase-box.active ul,
    .funded-box.active ul {
        display: block;
    }

    /* Rotate arrow when active */
    .phase-title.active .arrow {
        transform: rotate(180deg);
    }
}

/* Phase & Funded Boxes */
.phase-box,
.funded-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.phase-title {
    font-weight: 600;
    font-size: 13px;
    color: #cbd5e1;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.phase-title.funded {
    color: #cfa21b;
}

.phase-box ul,
.funded-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.phase-box li,
.funded-box li {
    font-size: 12px;
    margin-bottom: 4px;
    color: #e2e8f0;
}

/* CTA Button */
.btn-primary-premium {
    background: linear-gradient(135deg, #cfa21b, #d4af37);
    border: none;
    color: #0f172a;
    font-weight: 600;
    padding: 12px 0;
    border-radius: 10px;
    transition: 0.3s;
}

.btn-primary-premium:hover {
    background: linear-gradient(135deg, #d4af37, #cfa21b);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 767px) {
    .plan-card-premium {
        padding: 20px;
    }

    .phase-box,
    .funded-box {
        padding: 12px;
        margin-bottom: 10px;
    }

    .phase-title {
        cursor: pointer;
    }

    /* Collapsible Phases */
    .phase-box ul,
    .funded-box ul {
        display: none;
    }

    .phase-box.active ul,
    .funded-box.active ul {
        display: block;
    }
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
}

/* Hero Buttons Wrapper */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px; /* space between buttons */
    margin-top: 30px;
}

/* Primary Button */
.btn-primary-premium {
    background: linear-gradient(135deg, #cfa21b, #d4af37);
    color: #0f172a;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 36px; /* bigger padding for premium feel */
    border-radius: 12px; /* slightly more rounded */
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary-premium:hover {
    background: linear-gradient(135deg, #d4af37, #cfa21b);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(207, 162, 27, 0.35);
}

/* Outline Button */
.btn-outline-premium {
    background: transparent;
    border: 2px solid #cfa21b;
    color: #cfa21b;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 36px;
    border-radius: 12px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline-premium:hover {
    background: #cfa21b;
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(207, 162, 27, 0.35);
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .btn-primary-premium,
    .btn-outline-premium {
        width: 100%; /* full width on mobile */
        text-align: center;
    }
}

/* Trading Community style */
.floating-community-btn {
    position: fixed;
    right: 20px; /* moved to right */
    bottom: 20px; /* better than top:94% */

    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;

    border-radius: 8px; /* cleaner for right side */
    z-index: 9999;

    background:
        radial-gradient(
            circle at 30% 40%,
            rgba(207, 162, 27, 0.15),
            transparent 40%
        ),
        linear-gradient(135deg, #0a0f1c 0%, #0f172a 100%);

    border-left: 3px solid #cfa21b;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);

    transition: all 0.3s ease;

    animation: glowPulse 2.5s infinite;
}

/* Hover Effect */
.floating-community-btn:hover {
    transform: translateY(-3px); /* nicer effect */
    color: #cfa21b;
    box-shadow: 0 6px 20px rgba(207, 162, 27, 0.3);
}

/* Glow animation */
@keyframes glowPulse {
    0% {
        box-shadow: 0 0 5px rgba(207, 162, 27, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(207, 162, 27, 0.4);
    }
    100% {
        box-shadow: 0 0 5px rgba(207, 162, 27, 0.2);
    }
}
