:root {
    --primary-bg: #121212;
    --secondary-bg: #1e1e1e;
    --primary-text: #ffffff;
    --secondary-text: #a0a0a0;
    --accent-color: #FFA500;
    --accent-hover: #F08C00;
    --positive-green: #00C087;
    --negative-red: #FF5757;
    --button-color: #FFA500;
    --form-bg: #2a2a2a;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-bg);
    color: var(--primary-text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--secondary-bg);
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
}

.discount-banner {
    text-align: center;
}

.discount-banner p {
    font-weight: 600;
    margin-bottom: 5px;
}

.countdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown {
    display: flex;
    gap: 10px;
}

.time-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-group {
    display: flex;
    gap: 2px;
}

.time-box {
    background-color: var(--secondary-bg);
    border-radius: 4px;
    width: 30px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
}

.time-label {
    font-size: 12px;
    color: var(--secondary-text);
    margin-top: 5px;
}

.contact-btn {
    background-color: var(--button-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-btn:hover {
    background-color: var(--accent-hover);
}

/* Hero Section */
.hero {
    padding: 80px 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: var(--accent-color);
}

.hero-content p {
    color: var(--secondary-text);
    margin-bottom: 30px;
    font-size: 18px;
    max-width: 90%;
}

.get-started-btn {
    background-color: var(--button-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.get-started-btn:hover {
    background-color: var(--accent-hover);
}

.dashboard-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
    padding: 60px 0;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.feature-icon.blue {
    background-color: rgba(255, 165, 0, 0.2);
}

.feature-icon.purple {
    background-color: rgba(255, 165, 0, 0.2);
}

.feature-icon img {
    width: 30px;
    height: 30px;
    filter: invert(65%) sepia(54%) saturate(1352%) hue-rotate(360deg) brightness(103%) contrast(106%);
}

.feature-box h3 {
    font-size: 18px;
    font-weight: 600;
}

/* Better Bot Section */
.better-bot {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 40px;
}

.subtitle {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
}

.bot-description p {
    color: var(--secondary-text);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.bot-description .get-started-btn {
    margin-top: 20px;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background-color: var(--secondary-bg);
}

.section-header.centered {
    text-align: center;
}

.section-description {
    color: var(--secondary-text);
    max-width: 700px;
    margin: 20px auto 60px;
    font-size: 18px;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-box {
    padding: 30px 20px;
    text-align: center;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.benefit-icon img {
    filter: invert(65%) sepia(54%) saturate(1352%) hue-rotate(360deg) brightness(103%) contrast(106%);
}

.benefit-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.benefit-box p {
    color: var(--secondary-text);
    font-size: 15px;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
}

.pricing-subtitle {
    color: var(--secondary-text);
    font-size: 18px;
    line-height: 1.5;
    margin-top: 15px;
    text-align: center;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background-color: var(--secondary-bg);
    border-radius: 10px;
    padding: 30px;
    width: 350px;
    position: relative;
}

.pricing-card.premium {
    background-color: #2a2a2a;
    border: 1px solid var(--accent-color);
}

.pricing-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-card.premium h3 {
    color: var(--primary-text);
}

.pricing-description {
    color: var(--secondary-text);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.pricing-card.premium .pricing-description {
    color: var(--secondary-text);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.check-icon {
    color: var(--accent-color);
    margin-right: 10px;
    font-weight: bold;
}

.pricing-card.premium .check-icon {
    color: var(--accent-color);
}

.buy-now-btn {
    background-color: var(--button-color);
    color: white;
    border: none;
    padding: 12px 0;
    width: 100%;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.buy-now-btn:hover {
    background-color: var(--accent-hover);
}

/* Performance Dashboard Section */
.performance-dashboard {
    padding: 40px 0 80px;
}

.dashboard-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 5px solid var(--accent-color);
}

.full-dashboard-img {
    width: 100%;
    display: block;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 24px;
    color: var(--secondary-text);
    line-height: 1.4;
    margin-bottom: 25px;
}

.buy-now-small-btn {
    background-color: var(--button-color);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
}

.buy-now-small-btn:hover {
    background-color: var(--accent-hover);
}

/* Contact Form Section */
.contact-form-section {
    padding: 40px 0 80px;
}

.form-heading {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    background-color: var(--form-bg);
    color: white;
    font-size: 14px;
}

.form-group input::placeholder {
    color: #64748b;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 0;
}

.privacy-link {
    color: var(--accent-color);
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.submit-btn {
    background-color: var(--button-color);
    color: white;
    border: none;
    padding: 12px 0;
    width: 100%;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
}

.submit-btn:hover {
    background-color: var(--accent-hover);
}

/* Footer Section */
.footer {
    background-color: var(--secondary-bg);
    padding: 40px 0 20px;
    font-size: 12px;
}

.disclaimer {
    color: var(--secondary-text);
    margin-bottom: 30px;
    max-width: 1100px;
    margin: 0 auto 30px;
}

.disclaimer p {
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: var(--secondary-text);
    font-size: 12px;
}

.social-icons {
    display: flex;
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: white;
    transition: opacity 0.3s;
}

.whatsapp-icon:hover {
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
        order: 1;
    }
    
    .hero-content p {
        max-width: 100%;
    }
    
    .hero-image {
        order: 0;
        margin-bottom: 40px;
    }
    
    .features .container,
    .benefits {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .countdown {
        gap: 5px;
    }
    
    .time-box {
        width: 25px;
        height: 35px;
        font-size: 20px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 350px;
    }
}

/* Add this to the media queries section */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-icons {
        justify-content: center;
    }
}