:root {
    --gold: #FFD700;
    --black: #000000;
    --blue: #4169E1;
    --dark-blue: #1E3A8A;
    --gray: #333333;
    --light-gray: #f4f4f4;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--gray);
}

/* Header Styles */
header {
    background: var(--black);
    color: var(--white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
}

.logo span {
    color: var(--blue);
}

/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 150px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.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" opacity="0.1"><path d="M20 20 L80 20 L80 80 L20 80 Z" fill="none" stroke="%23FFD700" stroke-width="2"/><circle cx="50" cy="50" r="15" fill="none" stroke="%234169E1" stroke-width="2"/></svg>') repeat;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(10deg); }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    position: relative;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    margin: 0 10px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(65,105,225,0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

/* Investment Plans */
.plans {
    padding: 80px 20px;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--black);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--blue));
}

.plans-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.plan-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 1px solid rgba(255,215,0,0.3);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(65,105,225,0.2);
}

.plan-header {
    background: linear-gradient(135deg, var(--black), var(--dark-blue));
    color: var(--white);
    padding: 30px 20px;
    text-align: center;
}

.plan-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.plan-price {
    font-size: 2.5rem;
    font-weight: bold;
}

.plan-price span {
    font-size: 1rem;
    opacity: 0.8;
}

.plan-features {
    padding: 30px 20px;
    list-style: none;
}

.plan-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.plan-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
}

.plan-footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

/* Features Section */
.features {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-blue) 100%);
    color: var(--white);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.3);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: scale(1.05);
}

.feature-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.feature-item h3 {
    margin-bottom: 15px;
    color: var(--gold);
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 50px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-col h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        display: block;
        margin: 10px auto;
        max-width: 200px;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .plan-header h3 {
        font-size: 1.5rem;
    }

    .plan-price {
        font-size: 2rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in {
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}
/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--black);
    border: 1px solid var(--gold);
    border-radius: 5px;
    padding: 10px 0;
    min-width: 200px;
    display: none;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: var(--gold);
    color: var(--black);
    padding-left: 25px;
}

.dropdown-menu .divider {
    height: 1px;
    background: rgba(255,215,0,0.3);
    margin: 5px 0;
}

/* Balance Badge */
.balance-badge {
    background: linear-gradient(135deg, var(--gold), var(--blue));
    padding: 5px 15px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.balance-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.balance-amount {
    font-weight: bold;
    color: var(--black);
}

/* Price Ticker Container */
.price-ticker-container {
    background: var(--black);
    border-bottom: 2px solid var(--gold);
    padding: 5px 0;
    position: sticky;
    top: 70px;
    z-index: 999;
}

.ticker-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}

.ticker-label {
    background: var(--gold);
    color: var(--black);
    padding: 3px 10px;
    border-radius: 3px;
    font-weight: bold;
    font-size: 0.8rem;
    white-space: nowrap;
}

.ticker-content {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 5px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--dark-blue);
}

.ticker-content::-webkit-scrollbar {
    height: 3px;
}

.ticker-content::-webkit-scrollbar-track {
    background: var(--dark-blue);
}

.ticker-content::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.9rem;
    white-space: nowrap;
}

.ticker-item .symbol {
    color: var(--gold);
    font-weight: bold;
}

.ticker-item .price {
    font-weight: 500;
}

.ticker-item .change {
    font-size: 0.8rem;
}

.ticker-item .change.positive {
    color: #28a745;
}

.ticker-item .change.negative {
    color: #dc3545;
}

.ticker-loading {
    color: var(--white);
    font-style: italic;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    z-index: 1000;
    font-family: inherit;
}

.chat-header {
    background: linear-gradient(135deg, var(--gold), var(--blue));
    color: var(--black);
    padding: 15px;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.chat-header i:first-child {
    font-size: 1.2rem;
}

.chat-header i:last-child {
    margin-left: auto;
}

.chat-body {
    background: var(--white);
    border: 2px solid var(--gold);
    border-top: none;
    border-radius: 0 0 10px 10px;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.chat-body.active {
    height: 350px;
}

.chat-messages {
    height: 250px;
    overflow-y: auto;
    padding: 15px;
    background: #f9f9f9;
}

.message {
    margin-bottom: 15px;
    max-width: 80%;
}

.message.received {
    margin-right: auto;
}

.message.sent {
    margin-left: auto;
    text-align: right;
}

.message strong {
    display: block;
    color: var(--dark-blue);
    font-size: 0.8rem;
    margin-bottom: 3px;
}

.message p {
    background: var(--white);
    padding: 8px 12px;
    border-radius: 10px;
    margin: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    color: var(--gray);
}

.message.sent p {
    background: linear-gradient(135deg, var(--gold), var(--blue));
    color: var(--black);
}

.message small {
    font-size: 0.7rem;
    color: #999;
    display: block;
    margin-top: 3px;
}

.chat-input {
    display: flex;
    padding: 10px;
    gap: 10px;
    background: var(--light-gray);
    border-top: 1px solid #ddd;
}

.chat-input input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
}

.chat-input input:focus {
    border-color: var(--gold);
}

.chat-input button {
    background: linear-gradient(135deg, var(--gold), var(--blue));
    color: var(--black);
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    cursor: pointer;
    transition: transform 0.3s;
}

.chat-input button:hover {
    transform: scale(1.05);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--blue));
    color: var(--black);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    transition: all 0.3s;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}

.back-to-top.visible {
    display: flex;
}

/* Newsletter Section */
.newsletter-container {
    background: linear-gradient(135deg, var(--black), var(--dark-blue));
    padding: 40px 20px;
    margin-top: 40px;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.newsletter-content h3 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.newsletter-content p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--gold);
    border-radius: 5px;
    background: transparent;
    color: var(--white);
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form input:focus {
    border-color: var(--blue);
}

.newsletter-form button {
    padding: 12px 30px;
    white-space: nowrap;
}

/* Footer Enhancements */
.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.accepted-payments {
    display: flex;
    align-items: center;
    gap: 10px;
}

.accepted-payments span {
    color: var(--gold);
    font-size: 0.9rem;
}

.accepted-payments i {
    font-size: 1.3rem;
    color: var(--white);
    transition: color 0.3s;
}

.accepted-payments i:hover {
    color: var(--gold);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info li i {
    margin-top: 3px;
}

.contact-info li a,
.contact-info li span {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info li a:hover {
    color: var(--gold);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        display: none;
        background: rgba(0,0,0,0.5);
        border: none;
        padding-left: 20px;
    }
    
    .dropdown:hover .dropdown-menu {
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .balance-badge {
        margin: 10px 0;
    }
    
    .ticker-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .ticker-label {
        align-self: flex-start;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .accepted-payments {
        justify-content: center;
    }
    
    .chat-widget {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .chat-widget {
        width: 200px;
    }
    
    .chat-body.active {
        height: 300px;
    }
}
/* Hero Section Updates */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-blue) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.welcome-back {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid var(--gold);
}

.quick-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 20px 0;
}

.quick-stats .stat {
    text-align: center;
}

.quick-stats .stat span {
    display: block;
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.quick-stats .stat strong {
    font-size: 1.5rem;
}

.market-badge {
    margin-top: 30px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50px;
    display: inline-block;
}

/* Market Stats Section */
.market-stats {
    background: var(--white);
    padding: 40px 20px;
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background: linear-gradient(135deg, var(--black), var(--dark-blue));
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stat-card i {
    font-size: 2rem;
    color: var(--gold);
}

.stat-info h3 {
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-info .stat-value {
    font-size: 1.3rem;
    font-weight: bold;
}

/* Live Market Preview */
.live-market-preview {
    padding: 60px 20px;
    background: var(--light-gray);
}

.market-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.market-card {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.market-card:hover {
    transform: translateY(-5px);
}

.market-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.asset-symbol {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--gold);
}

.asset-name {
    color: var(--gray);
    font-size: 0.9rem;
}

.market-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: bold;
}

.market-volume {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.view-all {
    text-align: center;
    margin-top: 30px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 20px;
    background: var(--white);
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--blue));
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--blue));
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
    border: 3px solid var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.step-content h3 {
    margin-bottom: 10px;
    color: var(--black);
}

.step-content p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--black), var(--dark-blue));
    color: var(--white);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content i {
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0.5;
    margin-bottom: 10px;
}

.testimonial-content p {
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--black);
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--gold);
}

.author-info p {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--black), var(--dark-blue));
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gold);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.plan-card {
    position: relative;
}

.roi-calculator {
    background: var(--light-gray);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
}

.roi-calculator p {
    margin: 5px 0;
}

.roi-amount {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--gold);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .steps-container::before {
        display: none;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .quick-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .market-grid {
        grid-template-columns: 1fr;
    }
}