/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
    background: linear-gradient(135deg, #e8eaf6 0%, #f5f5f5 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.stock-animation {
    width: 100%;
    height: 100%;
    position: relative;
}

.chart-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #daa520 50%, transparent 100%);
    top: 30%;
    animation: chartMove 8s linear infinite;
}

.chart-line::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ff6b6b 50%, transparent 100%);
    top: 40px;
    animation: chartMove 6s linear infinite reverse;
}

@keyframes chartMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.stock-ticker {
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    animation: tickerFloat 4s ease-in-out infinite;
}

.stock-ticker span {
    color: #daa520;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(218, 165, 32, 0.5);
}

@keyframes tickerFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: #daa520;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #daa520;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 5px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
    color: white;
    padding: 18px 36px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s infinite;
    transition: 0.5s;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(184, 134, 11, 0.4);
}

.cta-primary.large {
    font-size: 1.4rem;
    padding: 22px 44px;
}

.trust-indicators {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.trust-indicators i {
    color: #daa520;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.dashboard-preview {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.chart-container {
    width: 100%;
    height: 200px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.chart-container::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.3) 0%, rgba(184, 134, 11, 0.1) 100%);
    clip-path: polygon(0 100%, 0 70%, 15% 60%, 30% 75%, 45% 50%, 60% 65%, 75% 40%, 90% 55%, 100% 30%, 100% 100%);
    animation: chartPulse 3s ease-in-out infinite;
}

@keyframes chartPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.stock-cards {
    display: flex;
    gap: 15px;
}

.stock-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stock-card.positive {
    border-left: 4px solid #daa520;
}

.stock-symbol {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 5px;
}

.stock-price {
    display: block;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 5px;
}

.stock-change {
    display: block;
    color: #daa520;
    font-weight: 600;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: #f8f9fa;
}

.reviews h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.review-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
}

.review-card:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.review-card.animate-in {
    animation: fadeInScale 0.6s ease forwards;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-info h4 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-size: 1.1rem;
}

.reviewer-info p {
    margin: 0 0 8px 0;
    color: #666;
    font-size: 0.9rem;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating i {
    color: #daa520;
    font-size: 0.9rem;
}

.review-content p {
    color: #555;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.review-content p::before {
    content: '"';
    font-size: 3rem;
    color: #daa520;
    position: absolute;
    left: -15px;
    top: -10px;
    line-height: 1;
    opacity: 0.3;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #999;
}

.review-verified {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #28a745;
    font-weight: 500;
}

.review-verified i {
    color: #28a745;
}

.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #daa520;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-item .stat-label {
    color: #666;
    font-size: 1rem;
    margin-bottom: 10px;
}

.stat-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.stat-stars i {
    color: #daa520;
    font-size: 1.2rem;
}

.features h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-card.animate-in {
    animation: slideInFromBottom 0.6s ease forwards;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9e9e9e 0%, #757575 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    transform: none !important;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Content Modules */
.content-modules {
    padding: 100px 0;
    background: #f8f9fa;
}

.content-module {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.content-module.reverse {
    grid-template-columns: 1fr 1fr;
}

.content-module.reverse .module-content {
    order: 1;
}

.content-module.reverse .module-image {
    order: 2;
}

.module-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.module-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.module-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9e9e9e 0%, #757575 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.module-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.module-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.module-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.module-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #555;
}

.module-benefits i {
    color: #daa520;
    font-size: 1.1rem;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #b8860b;
    padding: 12px 24px;
    border: 2px solid #b8860b;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #b8860b;
    color: white;
    transform: translateY(-2px);
}

/* Rules Section */
.rules {
    padding: 100px 0;
    background: white;
}

.rules h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.rule-item {
    display: flex;
    gap: 25px;
    padding: 35px 30px;
    background: white;
    border-radius: 20px;
    border-left: 5px solid #b8860b;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    align-items: flex-start;
}

.rule-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.rule-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9e9e9e 0%, #757575 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.rule-item h4 {
    margin-bottom: 12px;
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
}

.rule-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
}

.disclaimer h4 {
    color: #856404;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer p {
    color: #856404;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #37474f 0%, #546e7a 100%);
    text-align: center;
}

.final-cta h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

.final-cta p {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.final-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 500;
}

.trust-item i {
    color: #daa520;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #daa520;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #daa520;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #95a5a6;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    animation: floatPulse 2s ease-in-out infinite;
}

@keyframes floatPulse {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

/* New animations for enhanced interactivity */
@keyframes slideInFromLeft {
    0% { 
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% { 
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromBottom {
    0% { 
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    0% { 
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInScale {
    0% { 
        opacity: 0;
        transform: scale(0.9) rotate(-2deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(218, 165, 32, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(218, 165, 32, 0); }
    100% { box-shadow: 0 0 0 0 rgba(218, 165, 32, 0); }
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 16px 28px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.floating-btn i {
    font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .content-module {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .content-module.reverse .module-content {
        order: 2;
    }
    
    .content-module.reverse .module-image {
        order: 1;
    }
    
    .module-content {
        padding: 0 10px;
    }
    
    .module-content h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .module-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .features h2,
    .rules h2,
    .reviews h2 {
        font-size: 2.2rem;
    }
    
    .final-cta h2 {
        font-size: 2.2rem;
    }
    
    .final-trust {
        flex-direction: column;
        gap: 20px;
    }
    
    .floating-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .floating-btn span {
        display: inline;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .rule-item {
        padding: 25px 20px;
        gap: 20px;
    }
    
    .rule-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* Reviews mobile optimization */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .reviews-stats {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .reviewer-avatar {
        width: 50px;
        height: 50px;
    }
    
    .review-content p::before {
        font-size: 2rem;
        left: -10px;
        top: -5px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .cta-primary {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .features,
    .content-modules,
    .rules,
    .reviews,
    .final-cta {
        padding: 60px 0;
    }
    
    .module-image img {
        height: 250px;
    }
    
    /* Enhanced mobile optimization for reviews */
    .review-card {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .review-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        align-self: center;
    }
    
    .review-footer {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .stat-item .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat {
        min-width: 120px;
    }
    
    .dashboard-preview {
        padding: 20px;
    }
    
    .stock-cards {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Better content module spacing on small screens */
    .content-module {
        margin-bottom: 40px;
    }
    
    /* Ensure reverse modules show image first on mobile */
    .content-module.reverse .module-content {
        order: 2;
    }
    
    .content-module.reverse .module-image {
        order: 1;
    }
    
    .module-content {
        padding: 0 5px;
    }
    
    .module-content h3 {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .module-benefits {
        margin-bottom: 25px;
    }
    
    .module-benefits li {
        margin-bottom: 10px;
        font-size: 0.9rem;
    }
    
    /* Rules better spacing */
    .rule-item {
        padding: 20px 15px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .rule-icon {
        align-self: center;
        margin-bottom: 10px;
    }
    
    .rule-item h4 {
        font-size: 1.1rem;
        text-align: center;
    }
    
    /* Floating button responsive */
    .floating-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

