/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Top Banner */
.top-banner {
    background: #1a1a1a;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.banner-link {
    color: #4ADE80;
    text-decoration: none;
    margin-left: 10px;
}

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

/* Header */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a1a1a;
}

.logo i {
    margin-right: 8px;
    color: #4ADE80;
}

.nav-link {
    font-weight: 500;
    color: #666 !important;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4ADE80 !important;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.brand-text {
    background: linear-gradient(135deg, #4ADE80, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 1rem;
    max-width: 600px;
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.cta-button {
    background: #000000;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.3s ease;
    color: #ffffff;
}

.cta-button:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    color: #ffffff;
}

/* Hero Shapes */
.hero-shapes {
    position: relative;
    height: 400px;
}

.shape {
    position: absolute;
    border-radius: 20px;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: #4ADE80;
    top: 50px;
    right: 100px;
    transform: rotate(15deg);
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: #ec4899;
    top: 200px;
    right: 200px;
    transform: rotate(-20deg);
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: #3b82f6;
    top: 150px;
    right: 50px;
    transform: rotate(30deg);
}

.shape-4 {
    width: 60px;
    height: 60px;
    background: #f59e0b;
    top: 100px;
    right: 250px;
    transform: rotate(-10deg);
}

.shape-5 {
    width: 90px;
    height: 90px;
    background: #8b5cf6;
    top: 280px;
    right: 150px;
    transform: rotate(25deg);
}

/* Introduction Section */
.introduction {
    background: white;
}

.intro-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.intro-content .lead {
    font-size: 1.3rem;
    color: #4ADE80;
    font-weight: 600;
}

/* Stats Section */
.stats {
    background: #f8f9fa;
}

.stat-item {
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #4ADE80;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
}

/* Features Section */
.features {
    background: white;
}

.features h2 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.feature-demo {
    margin-top: 2rem;
}

.demo-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #4ADE80;
}

.demo-card i {
    color: #4ADE80;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-icons i {
    font-size: 2rem;
    color: #4ADE80;
    transition: transform 0.3s ease;
}

.social-icons i:hover {
    transform: scale(1.2);
}

.score-demo {
    margin-top: 2rem;
}

.score-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
}

.score-bar {
    flex: 1;
    height: 10px;
    background: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    background: linear-gradient(90deg, #4ADE80, #22c55e);
    transition: width 0.3s ease;
}

.score-value {
    font-weight: bold;
    color: #4ADE80;
}

.channel-icons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.channel-icons i {
    font-size: 2rem;
    color: #4ADE80;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.channel-icons i:hover {
    background: #4ADE80;
    color: white;
    transform: translateY(-3px);
}

/* How It Works Section */
.step-icon {
    width: 80px;
    height: 80px;
    background: #4ADE80;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon i {
    font-size: 2rem;
    color: white;
}

/* Pricing Preview */
.pricing-highlight {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #4ADE80;
}

.pricing-highlight h3 {
    color: #4ADE80;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #4ADE80;
    box-shadow: 0 0 0 0.2rem rgba(74, 222, 128, 0.25);
}

/* Footer */
.footer {
    background: #1a1a1a !important;
}

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.footer-brand i {
    margin-right: 8px;
    color: #4ADE80;
}

.footer h5 {
    color: #4ADE80;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #4ADE80;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-shapes {
        display: none;
    }
    
    .contact-form {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .social-icons,
    .channel-icons {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.shape {
    animation: fadeInUp 0.8s ease-out;
}

.shape:nth-child(2) { animation-delay: 0.1s; }
.shape:nth-child(3) { animation-delay: 0.2s; }
.shape:nth-child(4) { animation-delay: 0.3s; }
.shape:nth-child(5) { animation-delay: 0.4s; }

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.pricing-card.featured {
    border-color: #4ADE80;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #4ADE80;
    color: white;
    padding: 8px 20px;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #666;
}

.amount {
    font-size: 3rem;
    font-weight: 900;
    color: #4ADE80;
}

.period {
    font-size: 1rem;
    color: #666;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-list i {
    color: #4ADE80;
    font-size: 1rem;
}

.best-for {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #666;
}

.factor-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
}

.factor-icon {
    width: 60px;
    height: 60px;
    background: #4ADE80;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.factor-icon i {
    font-size: 1.5rem;
    color: white;
}

.channel-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.channel-table .table {
    margin-bottom: 0;
}

.channel-table th {
    background: #4ADE80;
    color: white;
    font-weight: 600;
    border: none;
    padding: 1rem;
}

.channel-table td {
    padding: 1rem;
    border-color: #e9ecef;
}

.channel-table i {
    margin-right: 0.5rem;
    color: #4ADE80;
}

.accordion-button {
    font-weight: 600;
    background: white;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: #f8f9fa;
    color: #4ADE80;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #4ADE80;
}

.accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.pricing-cta {
    background: linear-gradient(135deg, #4ADE80, #22c55e);
    color: white;
}

.pricing-cta .btn-primary {
    background: #000000;
    border: none;
    border-radius: 9999px;
    padding: 15px 30px;
    font-weight: 600;
}

.pricing-cta .btn-primary:hover {
    background: #333;
    color: white;
}

.legal-content {
    background: white;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #4ADE80;
}

.legal-section h3 {
    color: #333;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-bottom: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.contact-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #4ADE80;
}

.contact-details a {
    color: #4ADE80;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}
