/* SB TRADES - PROFESSIONAL TRADING MENTORSHIP */
/* Premium Design for Serious Traders */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary-gold: #B8860B;
    --dark-gold: #8B6914;
    --premium-black: #0A0A0A;
    --charcoal: #1A1A1A;
    --light-grey: #F5F5F5;
    --text-white: #FFFFFF;
    --text-grey: #CCCCCC;
    --accent-green: #00FF88;
    --gradient-gold: linear-gradient(135deg, #B8860B 0%, #8B6914 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    --shadow-gold: 0 20px 60px rgba(184, 134, 11, 0.3);
    --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.8);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #0a0a0a 50%, #1a1a1a 75%, #000000 100%);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}


/* TERMS MODAL */
.terms-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.terms-modal.show {
    opacity: 1;
}

.terms-content {
    background: var(--gradient-dark);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.terms-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
    background: rgba(184, 134, 11, 0.1);
}

.terms-header h2 {
    color: var(--primary-gold);
    font-size: 1.5em;
    font-weight: 700;
}

.close-btn {
    background: none;
    border: none;
    color: var(--primary-gold);
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(184, 134, 11, 0.2);
    transform: rotate(90deg);
}

.terms-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.terms-body h3 {
    color: var(--primary-gold);
    font-size: 1.1em;
    margin: 20px 0 10px 0;
    font-weight: 600;
}

.terms-body p {
    color: var(--text-grey);
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 14px;
}

    
    .terms-content {
        margin: 10px;
        max-height: 85vh;
    }
    
    .terms-header {
        padding: 20px;
    }
    
    .terms-body {
        padding: 20px;
        max-height: 65vh;
    }
    
    .terms-header h2 {
        font-size: 1.3em;
    }
}

/* PREMIUM SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--premium-black);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-gold);
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* PREMIUM HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 12px 0;
    border-bottom: 2px solid var(--primary-gold);
    box-shadow: 0 2px 10px rgba(184, 134, 11, 0.3);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 8px 0;
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 2px solid var(--primary-gold);
    box-shadow: 0 2px 10px rgba(184, 134, 11, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-white);
    text-shadow: 0 0 30px rgba(184, 134, 11, 0.5);
    letter-spacing: -1px;
}

/* SIMPLE HAMBURGER MENU */
.hamburger-menu {
    width: 25px;
    height: 20px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #B8860B;
    transition: 0.3s;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* SLIDE-OUT MENU */
.hamburger-overlay {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #000000;
    border-left: 2px solid #B8860B;
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 80px 30px 30px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.hamburger-overlay.active {
    right: 0;
}

/* MOBILE CLOSE BUTTON */
.hamburger-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid #B8860B;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #B8860B;
    font-weight: bold;
    transition: all 0.3s ease;
}

.hamburger-close:hover {
    background: rgba(184, 134, 11, 0.2);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .hamburger-close {
        display: flex;
    }
}

.hamburger-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
}

.hamburger-nav li {
    margin-bottom: 20px;
}

.hamburger-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px !important;
    font-weight: 600 !important;
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #333;
    transition: 0.3s;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.hamburger-nav a:hover,
.hamburger-nav a.active {
    color: #B8860B;
    padding-left: 10px;
}

.hamburger-social {
    position: absolute;
    bottom: 140px;
    left: 30px;
    display: flex;
    gap: 15px;
    align-items: center;
}


/* Social Links - Identical Sizing and Behavior */
.social-link {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: socialFloat 3s ease-in-out infinite;
}

.social-link.discord {
    background: #5865F2;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.social-link.discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.5);
    animation-play-state: paused;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.social-link.instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.5);
    animation-play-state: paused;
}

@keyframes socialFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-4px); }
}

.social-link svg {
    width: 26px !important;
    height: 26px !important;
    fill: white;
}

.hamburger-buttons {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
}

.hamburger-login {
    display: block;
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    text-align: center;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.3s;
    background: transparent;
    color: #ffffff;
    border: 1px solid #B8860B;
}

.hamburger-cta:hover,
.hamburger-login:hover {
    transform: translateY(-2px);
}

/* HAMBURGER MENU SOCIAL LINKS */
.social-link.discord {
    /* Fixed positioning removed - Discord only in hamburger menu */
    width: 60px;
    height: 60px;
    background: #5865F2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: floatDiscord 3s ease-in-out infinite;
    text-decoration: none;
}

.social-link.discord:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.6);
}

.social-link.discord svg {
    width: 28px;
    height: 28px;
    fill: white;
}

@keyframes floatDiscord {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .social-link.discord {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .social-link.discord svg {
        width: 24px;
        height: 24px;
    }
}

/* HAMBURGER MENU SOCIAL LINKS */
.social-link.discord {
    /* Fixed positioning removed - Discord only in hamburger menu */
    width: 60px;
    height: 60px;
    background: #5865F2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: floatDiscord 3s ease-in-out infinite;
    text-decoration: none;
}

.social-link.discord:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.6);
}

.social-link.discord svg {
    width: 28px;
    height: 28px;
    fill: white;
}

@keyframes floatDiscord {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .social-link.discord {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .social-link.discord svg {
        width: 24px;
        height: 24px;
    }
}

/* HIDE OLD NAVIGATION */
.nav-links {
    display: none;
}

/* VIP LOGIN MODAL */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.login-modal.show {
    opacity: 1;
    visibility: visible;
}

.login-content {
    background: var(--premium-black);
    border: 2px solid var(--primary-gold);
    border-radius: 25px;
    width: 90%;
    max-width: 450px;
    padding: 0;
    position: relative;
    box-shadow: var(--shadow-gold);
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.login-modal.show .login-content {
    transform: translateY(0);
}

.login-header {
    background: var(--gradient-gold);
    color: var(--premium-black);
    padding: 25px 30px;
    border-radius: 23px 23px 0 0;
    text-align: center;
    position: relative;
}

.login-header h2 {
    margin: 0;
    font-size: 1.5em;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.login-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    color: var(--premium-black);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-close:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: scale(1.1);
}

.login-body {
    padding: 40px 30px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.95em;
    letter-spacing: 0.3px;
}

.form-group input {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(184, 134, 11, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus {
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(184, 134, 11, 0.2);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.login-btn {
    background: var(--gradient-gold);
    color: var(--premium-black);
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: var(--shadow-gold);
    margin-top: 10px;
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 80px rgba(184, 134, 11, 0.4);
}

.login-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.login-info {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(184, 134, 11, 0.2);
}

.login-info p {
    color: var(--text-grey);
    font-size: 0.85em;
    margin: 0;
    line-height: 1.5;
}

/* TERMS BEFORE PURCHASE MODAL */
.terms-purchase-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.terms-purchase-modal.show {
    opacity: 1;
    visibility: visible;
}

.terms-purchase-content {
    background: var(--premium-black);
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    padding: 0;
    position: relative;
    box-shadow: var(--shadow-gold);
}

.terms-purchase-header {
    background: var(--gradient-gold);
    color: var(--premium-black);
    padding: 20px 30px;
    border-radius: 18px 18px 0 0;
    text-align: center;
}

.terms-purchase-header h2 {
    margin: 0;
    font-size: 1.4em;
    font-weight: 700;
}

.terms-purchase-body {
    padding: 30px;
    max-height: 400px;
    overflow-y: auto;
    color: var(--text-white);
    line-height: 1.6;
}

.terms-purchase-body h3 {
    color: var(--primary-gold);
    margin: 20px 0 10px 0;
    font-size: 1.1em;
}

.terms-purchase-body p {
    margin-bottom: 15px;
    font-size: 0.9em;
}

.terms-purchase-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(184, 134, 11, 0.3);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.terms-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    font-size: 0.9em;
}

.terms-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-gold);
}

.terms-purchase-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.terms-accept-btn {
    background: var(--gradient-gold);
    color: var(--premium-black);
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
    pointer-events: none;
}

.terms-accept-btn.enabled {
    opacity: 1;
    pointer-events: auto;
}

.terms-accept-btn.enabled:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.terms-cancel-btn {
    background: transparent;
    color: var(--text-grey);
    padding: 12px 30px;
    border: 1px solid var(--text-grey);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.terms-cancel-btn:hover {
    color: var(--text-white);
    border-color: var(--text-white);
}

/* JESUS LOVES YOU SPARKLE ANIMATION */
.jesus-message {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-gold);
    font-size: 16px;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(184, 134, 11, 0.5);
    overflow: hidden;
}

.jesus-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 20%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0.2) 80%,
        transparent 100%
    );
    animation: sparkle 5s infinite;
    z-index: 1;
}

@keyframes sparkle {
    0% {
        left: -100%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Mobile Jesus Message Centering */
@media (max-width: 768px) {
    .jesus-message {
        left: 50% !important;
        transform: translateX(-50%) !important;
        position: absolute !important;
        text-align: center !important;
        white-space: nowrap !important;
    }
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(184, 134, 11, 0.5);
}

.cta-button {
    background: var(--gradient-gold);
    color: var(--premium-black);
    padding: 8px 16px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: var(--shadow-gold);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 80px rgba(184, 134, 11, 0.4);
    background: var(--gradient-gold);
}

.customer-login-btn {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-white);
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.customer-login-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}


/* MOBILE HEADER OPTIMIZATIONS */

@media (max-width: 480px) {
    .nav-links {
        gap: 6px;
    }
    
    .nav-links a {
        font-size: 12px;
    }
    
    .cta-button, .customer-login-btn {
        padding: 5px 8px;
        font-size: 10px;
    }
    
    .logo {
        font-size: 18px;
    }
}

/* PREMIUM HERO SECTION */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(184, 134, 11, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(184, 134, 11, 0.04) 0%, transparent 60%),
        linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    overflow: hidden;
    padding: 60px 0 40px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,215,0,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-left: 60px;
}

.hero-text h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 0 50px rgba(184, 134, 11, 0.3);
    text-align: center;
}

.hero-text .gold-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-text .subtitle {
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 500px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--premium-black);
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 100px rgba(255, 215, 0, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    padding: 14px 28px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
}

/* ULTRA-REALISTIC 3D IPHONE MOCKUP */
.phone-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

/* Floating Stats Cards */
.floating-stats-card {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-gold);
    border-radius: 15px;
    padding: 15px 20px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(184, 134, 11, 0.2);
    animation: float 3s ease-in-out infinite;
    z-index: 1;
}

.stats-label {
    font-size: 11px;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 500;
}

.stats-value {
    font-size: 18px;
    color: var(--text-white);
    font-weight: 800;
    text-shadow: 0 0 10px rgba(184, 134, 11, 0.3);
}

/* Positioning for different cards - all on left side */
.stats-card-1 {
    top: 20%;
    left: -16%;
    animation-delay: 0s;
}

.stats-card-2 {
    top: 50%;
    left: -16%;
    animation-delay: 1s;
}

.stats-card-3 {
    top: 80%;
    left: -16%;
    animation-delay: 2s;
}

/* HYPER-REALISTIC IPHONE */
.floating-phone {
    position: relative;
    width: 280px;
    height: 560px;
    transform: perspective(1200px) rotateY(-30deg) rotateX(10deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}

.floating-phone:hover {
    transform: perspective(1200px) rotateY(-15deg) rotateX(5deg) translateY(-10px);
}

/* iPhone Frame Container */
.iphone-frame {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    border-radius: 50px;
    background: linear-gradient(145deg, 
        #e8e8e8 0%, 
        #d4d4d4 10%, 
        #b8b8b8 25%, 
        #a0a0a0 50%, 
        #b8b8b8 75%, 
        #d4d4d4 90%, 
        #e8e8e8 100%);
    box-shadow: 
        inset 0 2px 8px rgba(255, 255, 255, 0.9),
        inset 0 -2px 8px rgba(0, 0, 0, 0.3),
        0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Metallic Side Frame */
.iphone-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(145deg, 
        #f0f0f0 0%, 
        #c8c8c8 15%, 
        #a8a8a8 30%, 
        #888888 50%, 
        #a8a8a8 70%, 
        #c8c8c8 85%, 
        #f0f0f0 100%);
    border-radius: 52px;
    z-index: -1;
    box-shadow: 
        0 0 0 1px rgba(0, 0, 0, 0.1),
        inset 0 1px 3px rgba(255, 255, 255, 0.8),
        inset 0 -1px 3px rgba(0, 0, 0, 0.2);
}

/* Inner Frame Depth */
.iphone-frame::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: #0a0a0a;
    border-radius: 47px;
    z-index: 0;
    box-shadow: 
        inset 0 0 15px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Main Screen */
.phone-screen {
    position: absolute;
    top: 6px;
    left: 6px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    background: #000;
    border-radius: 44px;
    overflow: hidden;
    z-index: 1;
    box-shadow: 
        inset 0 0 5px rgba(0, 0, 0, 0.9),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Dynamic Island (Modern iPhone) */
.notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: #000;
    border-radius: 20px;
    z-index: 100;
    box-shadow: 
        inset 0 0 8px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Speaker Grill */
.speaker {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #1a1a1a;
    border-radius: 2px;
    z-index: 101;
    box-shadow: 
        inset 0 1px 2px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Front Camera */
.camera {
    position: absolute;
    top: 18px;
    right: 40px;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #0a0a0a 30%, #333 70%, #555 100%);
    border-radius: 50%;
    border: 1px solid #444;
    z-index: 101;
    box-shadow: 
        inset 0 0 3px rgba(0, 0, 0, 0.9),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* ULTRA-REALISTIC SIDE BUTTONS */
.power-button {
    position: absolute;
    right: -4px;
    top: 120px;
    width: 6px;
    height: 65px;
    background: linear-gradient(to right, 
        #888 0%, 
        #bbb 20%, 
        #ddd 50%, 
        #bbb 80%, 
        #888 100%);
    border-radius: 0 3px 3px 0;
    box-shadow: 
        inset 1px 0 3px rgba(255, 255, 255, 0.6),
        inset -1px 0 3px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.8),
        inset 0 -1px 2px rgba(0, 0, 0, 0.3),
        2px 0 4px rgba(0, 0, 0, 0.3);
    transform: translateZ(12px);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-left: none;
}

.volume-up {
    position: absolute;
    left: -4px;
    top: 95px;
    width: 6px;
    height: 40px;
    background: linear-gradient(to left, 
        #888 0%, 
        #bbb 20%, 
        #ddd 50%, 
        #bbb 80%, 
        #888 100%);
    border-radius: 3px 0 0 3px;
    box-shadow: 
        inset -1px 0 3px rgba(255, 255, 255, 0.6),
        inset 1px 0 3px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.8),
        inset 0 -1px 2px rgba(0, 0, 0, 0.3),
        -2px 0 4px rgba(0, 0, 0, 0.3);
    transform: translateZ(12px);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-right: none;
}

.volume-down {
    position: absolute;
    left: -4px;
    top: 145px;
    width: 6px;
    height: 40px;
    background: linear-gradient(to left, 
        #888 0%, 
        #bbb 20%, 
        #ddd 50%, 
        #bbb 80%, 
        #888 100%);
    border-radius: 3px 0 0 3px;
    box-shadow: 
        inset -1px 0 3px rgba(255, 255, 255, 0.6),
        inset 1px 0 3px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.8),
        inset 0 -1px 2px rgba(0, 0, 0, 0.3),
        -2px 0 4px rgba(0, 0, 0, 0.3);
    transform: translateZ(12px);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-right: none;
}

.mute-switch {
    position: absolute;
    left: -4px;
    top: 55px;
    width: 6px;
    height: 30px;
    background: linear-gradient(to left, 
        #888 0%, 
        #bbb 20%, 
        #ddd 50%, 
        #bbb 80%, 
        #888 100%);
    border-radius: 3px 0 0 3px;
    box-shadow: 
        inset -1px 0 3px rgba(255, 255, 255, 0.6),
        inset 1px 0 3px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.8),
        inset 0 -1px 2px rgba(0, 0, 0, 0.3),
        -2px 0 4px rgba(0, 0, 0, 0.3);
    transform: translateZ(12px);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-right: none;
}

/* Screen Glass Effect */
.screen-glass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 44px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.06) 25%,
        transparent 50%,
        transparent 75%,
        rgba(255, 255, 255, 0.04) 100%);
    pointer-events: none;
    z-index: 200;
}

/* Screen Reflection */
.screen-reflection {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 0.3) 0%, 
        transparent 40%);
    transform: rotate(-45deg);
    pointer-events: none;
    z-index: 201;
    opacity: 0.6;
}

/* Phone Content - SB Trades Interface */
.phone-content {
    padding: 35px 15px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: var(--text-white);
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
}

/* Trading Interface Header */
.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 15px;
    padding: 0 5px;
}

.phone-logo {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.phone-status {
    font-size: 11px;
    color: var(--accent-green);
    display: flex;
    align-items: center;
    gap: 5px;
}

.phone-status::before {
    content: '●';
    animation: pulse 2s infinite;
}

/* SB Trades Chart - ensure vertical centering and fixed height */
.trading-chart {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.chart-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 215, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

/* Candlestick Container - fixed height for animation */
.candlestick-container {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    position: relative;
}

/* Individual Candlesticks */
.candlestick {
    width: 6px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

/* Candle Wrapper for Animation */
.candle-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: candleMove 1s ease-in-out infinite;
}

/* Different animation delays and patterns */
.candle-1 .candle-wrapper { animation-delay: 0s; animation-duration: 1.1s; }
.candle-2 .candle-wrapper { animation-delay: 0.1s; animation-duration: 1.0s; }
.candle-3 .candle-wrapper { animation-delay: 0.2s; animation-duration: 1.2s; }
.candle-4 .candle-wrapper { animation-delay: 0.3s; animation-duration: 1.1s; }
.candle-5 .candle-wrapper { animation-delay: 0.4s; animation-duration: 1.0s; }
.candle-6 .candle-wrapper { animation-delay: 0.5s; animation-duration: 1.2s; }
.candle-7 .candle-wrapper { animation-delay: 0.6s; animation-duration: 1.1s; }
.candle-8 .candle-wrapper { animation-delay: 0.7s; animation-duration: 1.0s; }
.candle-9 .candle-wrapper { animation-delay: 0.8s; animation-duration: 1.2s; }
.candle-10 .candle-wrapper { animation-delay: 0.9s; animation-duration: 1.1s; }

/* Candle Movement Animation - centered and smooth */
@keyframes candleMove {
    0% { transform: translateY(0px); }
    25% { transform: translateY(-15px); }
    50% { transform: translateY(-5px); }
    75% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Wick (High/Low) */
.candle-wick {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Body (Open/Close) */
.candle-body {
    width: 100%;
    height: 20px;
    border-radius: 1px;
    position: absolute;
    bottom: 10px;
    transition: all 0.3s ease;
}

/* Green Candles (Bullish) */
.candle-green .candle-body {
    background: #00ff88;
    box-shadow: 
        0 0 10px rgba(0, 255, 136, 0.6),
        inset 0 0 3px rgba(255, 255, 255, 0.3);
}

.candle-green .candle-wick {
    background: #00ff88;
    opacity: 0.5;
}

/* Red Candles (Bearish) */
.candle-red .candle-body {
    background: #ff3366;
    box-shadow: 
        0 0 10px rgba(255, 51, 102, 0.6),
        inset 0 0 3px rgba(255, 255, 255, 0.3);
}

.candle-red .candle-wick {
    background: #ff3366;
    opacity: 0.5;
}

/* Dynamic height variations - longer for more drama */
.candle-1 .candle-wick { height: 70px; }
.candle-1 .candle-body { height: 38px; bottom: 18px; }

.candle-2 .candle-wick { height: 85px; }
.candle-2 .candle-body { height: 32px; bottom: 32px; }

.candle-3 .candle-wick { height: 60px; }
.candle-3 .candle-body { height: 44px; bottom: 14px; }

.candle-4 .candle-wick { height: 80px; }
.candle-4 .candle-body { height: 40px; bottom: 28px; }

.candle-5 .candle-wick { height: 95px; }
.candle-5 .candle-body { height: 28px; bottom: 44px; }

.candle-6 .candle-wick { height: 74px; }
.candle-6 .candle-body { height: 48px; bottom: 16px; }

.candle-7 .candle-wick { height: 88px; }
.candle-7 .candle-body { height: 36px; bottom: 34px; }

.candle-8 .candle-wick { height: 78px; }
.candle-8 .candle-body { height: 40px; bottom: 24px; }

.candle-9 .candle-wick { height: 90px; }
.candle-9 .candle-body { height: 31px; bottom: 38px; }

.candle-10 .candle-wick { height: 68px; }
.candle-10 .candle-body { height: 46px; bottom: 14px; }

/* Moving Average Line */
.moving-average {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    pointer-events: none;
}

.ma-line {
    position: absolute;
    bottom: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--primary-gold) 0%, 
        rgba(255, 215, 0, 0.8) 25%, 
        var(--primary-gold) 50%, 
        rgba(255, 215, 0, 0.8) 75%, 
        var(--primary-gold) 100%);
    opacity: 0.9;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.8));
    animation: maWave 8s ease-in-out infinite;
    border-radius: 2px;
}

@keyframes maWave {
    0% { 
        transform: translateX(0) translateY(0);
        clip-path: polygon(
            0% 50%,
            8% 45%, 16% 52%, 24% 38%, 32% 48%,
            40% 42%, 48% 55%, 56% 35%, 64% 50%,
            72% 45%, 80% 52%, 88% 40%, 96% 48%, 100% 45%
        );
    }
    25% {
        transform: translateX(-12.5%) translateY(-2px);
        clip-path: polygon(
            0% 48%,
            8% 52%, 16% 40%, 24% 48%, 32% 35%,
            40% 50%, 48% 42%, 56% 55%, 64% 38%,
            72% 50%, 80% 45%, 88% 52%, 96% 40%, 100% 48%
        );
    }
    50% { 
        transform: translateX(-25%) translateY(0);
        clip-path: polygon(
            0% 45%,
            8% 40%, 16% 48%, 24% 35%, 32% 50%,
            40% 38%, 48% 52%, 56% 42%, 64% 55%,
            72% 40%, 80% 48%, 88% 45%, 96% 52%, 100% 42%
        );
    }
    75% {
        transform: translateX(-37.5%) translateY(2px);
        clip-path: polygon(
            0% 52%,
            8% 38%, 16% 50%, 24% 42%, 32% 55%,
            40% 45%, 48% 40%, 56% 48%, 64% 35%,
            72% 52%, 80% 42%, 88% 48%, 96% 45%, 100% 50%
        );
    }
    100% { 
        transform: translateX(-50%) translateY(0);
        clip-path: polygon(
            0% 50%,
            8% 45%, 16% 52%, 24% 38%, 32% 48%,
            40% 42%, 48% 55%, 56% 35%, 64% 50%,
            72% 45%, 80% 52%, 88% 40%, 96% 48%, 100% 45%
        );
    }
}

/* Price Labels */
.price-labels {
    position: absolute;
    right: 5px;
    top: 10px;
    bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 7px;
    color: #666;
    font-family: monospace;
}

.price-label {
    padding: 1px 3px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 2px;
}

/* Trading Stats */
.trading-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.stat-box {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}

.stat-label {
    font-size: 9px;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-top: 3px;
}

/* AI Activity Indicator */
.ai-activity {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ai-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ai-icon {
    width: 20px;
    height: 20px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    animation: aiPulse 2s ease-in-out infinite;
}

@keyframes aiPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.5); }
    50% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
}

.ai-text {
    font-size: 10px;
    color: var(--text-white);
}

.ai-indicator {
    display: flex;
    gap: 2px;
}

.ai-dot {
    width: 3px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 50%;
    animation: aiDot 1.5s ease-in-out infinite;
}

.ai-dot:nth-child(2) { animation-delay: 0.2s; }
.ai-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes aiDot {
    0%, 60%, 100% { opacity: 0.3; }
    30% { opacity: 1; }
}

/* EXCLUSIVE FEATURES SECTION */
.features-section {
    padding: 80px 0;
    background: var(--gradient-dark);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 30px 25px;
    position: relative;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
    background: rgba(255, 255, 255, 0.18);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-white);
}

.feature-card p {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 80px 0;
    background: var(--gradient-dark);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px 25px;
    position: relative;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.08);
}

.testimonial-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.testimonial-card.featured {
    border-color: var(--primary-gold);
    background: rgba(10, 10, 10, 0.95);
    transform: scale(1.02);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--premium-black);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.profile-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 20px;
    border: 2px solid var(--primary-gold);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.profile-info h4 {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.profile-location {
    color: var(--text-grey);
    font-size: 14px;
    margin-bottom: 10px;
}

.quote-text {
    color: var(--text-white);
    font-size: 15px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    font-weight: 300;
}

.quote-text::before {
    content: '"';
    color: var(--primary-gold);
    font-size: 24px;
    font-weight: 700;
}

.quote-text::after {
    content: '"';
    color: var(--primary-gold);
    font-size: 24px;
    font-weight: 700;
}

.star-rating {
    display: flex;
    gap: 5px;
    margin-top: 20px;
}

.star {
    color: var(--primary-gold);
    font-size: 16px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

/* PRICING SECTION */
.pricing-section {
    padding: 80px 0;
    background: var(--gradient-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 60px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 40px 30px;
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-20px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.pricing-card.popular {
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--premium-black);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header h3 {
    font-size: 22px;
    color: var(--text-white);
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 20px;
}

.currency {
    font-size: 24px;
    color: var(--primary-gold);
    font-weight: 700;
}

.amount {
    font-size: 48px;
    color: var(--primary-gold);
    font-weight: 900;
    margin: 0 8px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.period {
    font-size: 16px;
    color: var(--text-grey);
    font-weight: 400;
}

.savings {
    color: var(--accent-green);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.pricing-features {
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-white);
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 400;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* CTA SECTION */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: 
        radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: var(--text-white);
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-grey);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.6;
}

/* ANIMATIONS */
@keyframes float {
    0%, 100% { 
        transform: perspective(1200px) rotateY(-30deg) rotateX(10deg) translateY(0px);
        filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
    }
    50% { 
        transform: perspective(1200px) rotateY(-28deg) rotateX(8deg) translateY(-15px);
        filter: drop-shadow(0 35px 70px rgba(0, 0, 0, 0.4));
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease-out both;
}

.floating-phone {
    animation: float 6s ease-in-out infinite;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 1200px) {
    .container {
        padding: 0 25px;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        margin: 0 auto;
        text-align: center;
    }
    
    /* Mobile Pricing Card Fix */
    .pricing-card {
        max-width: 350px !important;
        width: 350px !important;
        margin: 0 auto !important;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .cta-button, .customer-login-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .hero {
        min-height: 100vh;
        padding: 80px 0 60px;
        text-align: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        max-width: 100%;
        padding-left: 0;
        margin: 0 auto;
    }
    
    .hero-text {
        text-align: center;
        margin: 0 auto;
    }
    
    .section-title {
        text-align: center;
    }
    
    .section-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-text h1 {
        font-size: clamp(1.4rem, 6vw, 2rem);
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .hero-text .subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .phone-mockup {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 0 auto;
        position: relative;
        overflow: visible;
        padding: 0 40px;
    }
    
    .floating-phone {
        width: 240px;
        height: 480px;
        transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
        margin: 0 auto;
        margin-right: -40px;
    }
    
    /* Mobile Candlestick Adjustments */
    .candlestick-container {
        height: 90px;
    }
    
    .candlestick {
        width: 5px;
    }
    
    .candle-1 .candle-wick { height: 55px; }
    .candle-1 .candle-body { height: 28px; bottom: 16px; }
    
    .candle-2 .candle-wick { height: 65px; }
    .candle-2 .candle-body { height: 24px; bottom: 22px; }
    
    .candle-3 .candle-wick { height: 48px; }
    .candle-3 .candle-body { height: 32px; bottom: 12px; }
    
    .candle-4 .candle-wick { height: 60px; }
    .candle-4 .candle-body { height: 28px; bottom: 18px; }
    
    .candle-5 .candle-wick { height: 72px; }
    .candle-5 .candle-body { height: 22px; bottom: 28px; }
    
    .candle-6 .candle-wick { height: 52px; }
    .candle-6 .candle-body { height: 34px; bottom: 14px; }
    
    .candle-7 .candle-wick { height: 66px; }
    .candle-7 .candle-body { height: 26px; bottom: 22px; }
    
    .candle-8 .candle-wick { height: 58px; }
    .candle-8 .candle-body { height: 30px; bottom: 16px; }
    
    .candle-9 .candle-wick { height: 68px; }
    .candle-9 .candle-body { height: 24px; bottom: 24px; }
    
    .candle-10 .candle-wick { height: 50px; }
    .candle-10 .candle-body { height: 32px; bottom: 12px; }
    
    .trading-chart {
        min-height: 110px;
        padding: 12px;
    }
    
    .trading-stats {
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .stat-box {
        padding: 8px;
    }
    
    .stat-label {
        font-size: 7px;
    }
    
    .stat-value {
        font-size: 11px;
    }
    
    .ai-activity {
        padding: 8px;
        margin-bottom: 8px;
    }
    
    .ai-text {
        font-size: 8px;
    }
    
    /* Mobile Floating Stats Cards */
    .floating-stats-card {
        padding: 12px 16px;
        border-radius: 12px;
        border-width: 2px;
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.6),
            0 0 15px rgba(184, 134, 11, 0.3);
    }
    
    .stats-label {
        font-size: 10px;
        margin-bottom: 4px;
        font-weight: 600;
    }
    
    .stats-value {
        font-size: 14px;
        font-weight: 700;
    }
    
    .stats-card-1 {
        top: 5%;
        left: 5px;
    }
    
    .stats-card-2 {
        top: 35%;
        left: 5px;
    }
    
    .stats-card-3 {
        top: 65%;
        left: 5px;
    }
    
    .features-section,
    .testimonials-section,
    .pricing-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card,
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 40px 0;
    }
    
    .pricing-card {
        padding: 30px 25px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .amount {
        font-size: 36px;
    }
    
    .currency {
        font-size: 20px;
    }
    
    .period {
        font-size: 14px;
    }
    
    .testimonial-card.featured {
        transform: none;
    }
    
    .profile-image {
        width: 45px;
        height: 45px;
        margin-right: 15px;
    }
    
    .profile-info h4 {
        font-size: 14px;
    }
    
    .quote-text {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .star {
        font-size: 14px;
    }
    
    .cta-content h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 15px;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 70px 0 30px;
    }
    
    .hero-text h1 {
        font-size: clamp(1.2rem, 7vw, 1.8rem);
        line-height: 1.2;
    }
    
    .hero-text .subtitle {
        font-size: 0.85rem;
        padding: 0 5px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .floating-phone {
        width: 200px;
        height: 400px;
        transform: perspective(800px) rotateY(-8deg) rotateX(3deg);
        margin-right: -30px;
    }
    
    /* Smaller Mobile Candlestick Adjustments */
    .candlestick-container {
        height: 75px;
    }
    
    .candlestick {
        width: 4px;
    }
    
    .candle-1 .candle-wick { height: 45px; }
    .candle-1 .candle-body { height: 22px; bottom: 12px; }
    
    .candle-2 .candle-wick { height: 52px; }
    .candle-2 .candle-body { height: 18px; bottom: 18px; }
    
    .candle-3 .candle-wick { height: 38px; }
    .candle-3 .candle-body { height: 25px; bottom: 8px; }
    
    .candle-4 .candle-wick { height: 48px; }
    .candle-4 .candle-body { height: 21px; bottom: 15px; }
    
    .candle-5 .candle-wick { height: 58px; }
    .candle-5 .candle-body { height: 17px; bottom: 22px; }
    
    .candle-6 .candle-wick { height: 42px; }
    .candle-6 .candle-body { height: 26px; bottom: 10px; }
    
    .candle-7 .candle-wick { height: 50px; }
    .candle-7 .candle-body { height: 19px; bottom: 17px; }
    
    .candle-8 .candle-wick { height: 46px; }
    .candle-8 .candle-body { height: 23px; bottom: 13px; }
    
    .candle-9 .candle-wick { height: 54px; }
    .candle-9 .candle-body { height: 18px; bottom: 19px; }
    
    .candle-10 .candle-wick { height: 40px; }
    .candle-10 .candle-body { height: 24px; bottom: 9px; }
    
    .trading-chart {
        min-height: 95px;
        padding: 10px;
    }
    
    .trading-stats {
        gap: 6px;
        margin-bottom: 8px;
    }
    
    .stat-box {
        padding: 6px;
    }
    
    .stat-label {
        font-size: 6px;
    }
    
    .stat-value {
        font-size: 10px;
    }
    
    .ai-activity {
        padding: 6px;
        margin-bottom: 6px;
    }
    
    .ai-text {
        font-size: 7px;
    }
    
    /* Smaller Mobile Floating Stats Cards */
    .floating-stats-card {
        padding: 10px 14px;
        border-radius: 10px;
        border-width: 2px;
        box-shadow: 
            0 6px 20px rgba(0, 0, 0, 0.6),
            0 0 12px rgba(184, 134, 11, 0.3);
    }
    
    .stats-label {
        font-size: 9px;
        margin-bottom: 3px;
        font-weight: 600;
    }
    
    .stats-value {
        font-size: 12px;
        font-weight: 700;
    }
    
    .stats-card-1 {
        top: 5%;
        left: 2px;
    }
    
    .stats-card-2 {
        top: 35%;
        left: 2px;
    }
    
    .stats-card-3 {
        top: 65%;
        left: 2px;
    }
    
    /* Hide some details on mobile */
    .mute-switch,
    .volume-up,
    .volume-down {
        display: none;
    }
    
    .screen-reflection {
        opacity: 0.3;
    }
    
    .features-section,
    .testimonials-section,
    .pricing-section,
    .cta-section {
        padding: 50px 0;
    }
    
    .feature-card,
    .testimonial-card,
    .pricing-card {
        padding: 20px 15px;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }
}

/* PREMIUM LOADING ANIMATION */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--premium-black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 215, 0, 0.3);
    border-top: 3px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* PREMIUM EFFECTS */
.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.glow-effect:hover::before {
    left: 100%;
} 