/* ==================== 
   Global Styles
   ==================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #61CE70;
    --primary-dark: #28246E;
    --secondary-color: #1F1F1F;
    --danger-color: #e60000;
    --text-dark: #333;
    --text-light: #7A7A7A;
    --bg-light: #f8f8f8;
    --white: #ffffff;
    --whatsapp: #25D366;
    --border-color: #ddd;
    --shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(90deg, #1F1F1F 0%, #28246E 100%);
}

body {
    font-family: 'Outfit', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #f5f5f5;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== 
   Hero Section
   ==================== */

.hero {
    background: #ffffff;
    padding: 60px 20px 40px;
    text-align: center;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ff0000;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #2d4a1e;
    text-transform: uppercase;
}

.hero .highlight {
    color: #61CE70;
    font-weight: 700;
    display: block;
    margin-top: 15px;
    font-size: 2.2rem;
    text-transform: uppercase;
}

.hero-message {
    font-size: 1.5rem;
    margin-top: 30px;
    font-weight: 400;
    color: #333;
}

.hero-message strong {
    color: #2d4a1e;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #61CE70;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

/* ==================== 
   Video Section
   ==================== */

.video-section {
    padding: 0 20px 40px;
    background-color: #ffffff;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.main-video {
    width: 100%;
    height: auto;
    display: block;
}

/* ==================== 
   Analysis Section
   ==================== */

.analysis-section {
    padding: 40px 20px 80px;
    background-color: #f5f5f5;
}

.analysis-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stock-input {
    padding: 18px 20px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s;
    background-color: #ffffff;
    color: #999;
}

.stock-input:focus {
    border-color: #6aad37;
    background-color: #ffffff;
    color: #333;
}

.stock-input::placeholder {
    color: #999;
}

.btn-primary {
    padding: 18px 30px;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    background: #6aad37;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(106, 173, 55, 0.3);
    text-transform: none;
}

.btn-primary:hover:not(:disabled) {
    background: #5a9630;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(106, 173, 55, 0.4);
}

.btn-primary:disabled {
    background: #cccccc;
    cursor: not-allowed;
    animation: none;
}

/* ==================== 
   Modal Styles
   ==================== */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: none;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content h2 {
    margin-bottom: 20px;
    color: #020202;
    font-size: 1.8rem;
    font-weight: 600;
    font-family: inherit;
}

/* ==================== 
   Progress Bars
   ==================== */

.progress-list {
    margin-top: 30px;
}

.progress-item {
    margin-bottom: 25px;
    text-align: left;
}

.progress-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.progress-bar {
    height: 12px;
    background-color: #eee;
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #6aad37;
    border-radius: 6px;
    width: 0%;
    transition: width 0.5s ease;
}

/* ==================== 
   Report Modal
   ==================== */

.report-content {
    max-width: 550px;
}

.report-title {
    color: #6aad37;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.report-intro {
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.8;
}

.report-features {
    text-align: left;
    margin: 25px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
}

.features-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.report-features ul {
    padding-left: 25px;
    margin: 0;
}

.report-features li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.report-info {
    margin: 25px 0;
    color: var(--danger-color);
    font-weight: 600;
}

.report-info p {
    margin: 8px 0;
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: var(--white);
    border: none;
    padding: 14px 25px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-whatsapp:hover {
    transform: scale(1.03);
    background-color: #20b358;
}

/* ==================== 
   Footer
   ==================== */

.footer {
    background-color: #f5f5f5;
    padding: 40px 20px 30px;
    margin-top: 0;
    border-top: none;
}

.footer-nav {
    text-align: center;
    margin-bottom: 30px;
}

.nav-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    gap: 25px;
}

.nav-list a {
    color: #7a7a7a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    font-weight: 400;
}

.nav-list a:hover {
    color: #6aad37;
    text-decoration: none;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: none;
    color: #999;
    font-size: 0.9rem;
}

/* ==================== 
   Responsive Design
   ==================== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero .highlight {
        font-size: 1.4rem;
    }

    .hero-message {
        font-size: 1.1rem;
    }

    .modal-content {
        padding: 25px;
        width: 95%;
    }

    .report-title {
        font-size: 1.5rem;
    }

    .btn-whatsapp {
        font-size: 16px;
        padding: 12px 20px;
    }

    .nav-list {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 15px 30px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero .highlight {
        font-size: 1.1rem;
    }

    .hero-message {
        font-size: 1rem;
    }

    .analysis-form {
        padding: 0 10px;
    }

    .stock-input {
        padding: 12px 15px;
        font-size: 14px;
    }

    .btn-primary {
        font-size: 16px;
        padding: 12px 25px;
    }
}
