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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 14px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8B5CF6;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-secondary {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid #8B5CF6;
    color: #8B5CF6;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #8B5CF6;
    color: white;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    color: #10B981;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-rating {
    margin-bottom: 1.5rem;
}

.stars {
    color: #F59E0B;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.hero-description strong {
    color: #8B5CF6;
    font-weight: 700;
}

.hero-subtitle {
    color: #94a3b8;
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 3rem;
}

/* Dashboard Mockup */
.hero-dashboard {
    margin-top: 4rem;
    perspective: 1000px;
}

.dashboard-mockup {
    background: rgba(30, 30, 60, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: rotateX(5deg) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.dashboard-mockup:hover {
    transform: rotateX(0deg) rotateY(0deg);
}

.dashboard-header {
    background: rgba(15, 15, 35, 0.9);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.dashboard-logo {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 10px;
}

.dashboard-nav {
    margin-left: auto;
    color: #8B5CF6;
    font-weight: 600;
}

.dashboard-sidebar {
    position: absolute;
    left: 0;
    top: 60px;
    width: 200px;
    background: rgba(20, 20, 40, 0.9);
    padding: 20px 0;
    border-right: 1px solid rgba(139, 92, 246, 0.1);
    height: calc(100% - 60px);
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: #cbd5e1;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.sidebar-item.active {
    background: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
    border-right: 2px solid #8B5CF6;
}

.sidebar-icon {
    width: 16px;
    height: 16px;
    background: currentColor;
    border-radius: 2px;
    opacity: 0.7;
}

.dashboard-content {
    margin-left: 200px;
    padding: 30px;
    min-height: 300px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.dashboard-card {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon.lead-gen {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
}

.card-icon.analytics {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.card-icon.social {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.card-icon.advertising {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

.card-title {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.card-subtitle {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: rgba(30, 30, 60, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-header p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(30, 30, 60, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(30, 30, 60, 0.8);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-4px);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
}

.about-content p {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: rgba(139, 92, 246, 0.05);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-section p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: rgba(15, 15, 35, 0.9);
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    padding: 60px 0 30px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-nav h3 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-nav ul {
    list-style: none;
}

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

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

.footer-nav a:hover {
    color: #8B5CF6;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-brand p {
    color: #cbd5e1;
    line-height: 1.6;
}

.footer-contact {
    margin-bottom: 2rem;
}

.footer-contact h3 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-contact address {
    font-style: normal;
    color: #cbd5e1;
    line-height: 1.6;
}

.footer-contact a {
    color: #8B5CF6;
    text-decoration: none;
}

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

.footer-bottom {
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .dashboard-mockup {
        transform: none;
    }
    
    .dashboard-sidebar {
        display: none;
    }
    
    .dashboard-content {
        margin-left: 0;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-primary {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Pricing Styles */
.pricing-hero {
    padding: 120px 0 60px;
    text-align: center;
}

.pricing-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.pricing-header p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-section {
    padding: 60px 0 80px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: rgba(30, 30, 60, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.pricing-card.featured {
    border-color: #8B5CF6;
    background: rgba(139, 92, 246, 0.05);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 30, 60, 0.9);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #8B5CF6;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-badge.popular {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: white;
    border-color: #8B5CF6;
}

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

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

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 1rem;
}

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

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
}

.period {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 500;
}

.pricing-description {
    color: #cbd5e1;
    line-height: 1.6;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.pricing-btn {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.pricing-info {
    margin-top: 4rem;
}

.pricing-note {
    background: rgba(30, 30, 60, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.pricing-note h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-note p {
    color: #cbd5e1;
    line-height: 1.6;
}

.pricing-faq h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(30, 30, 60, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.faq-item h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

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

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(30, 30, 60, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #8B5CF6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.success-message {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10B981;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

/* Contact Styles */
.contact-hero {
    padding: 120px 0 60px;
    text-align: center;
}

.contact-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-header p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding: 60px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text h3 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #cbd5e1;
    line-height: 1.5;
}

.contact-text a {
    color: #8B5CF6;
    text-decoration: none;
}

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

.business-hours {
    background: rgba(30, 30, 60, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.business-hours h3 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.business-hours p {
    color: #cbd5e1;
    line-height: 1.6;
}

.contact-form-container {
    background: rgba(30, 30, 60, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.contact-form h2 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-form > p {
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-submit {
    width: 100%;
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #cbd5e1;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: #8B5CF6;
}

.checkbox-label a {
    color: #8B5CF6;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

select.form-input {
    cursor: pointer;
}

select.form-input option {
    background: rgba(30, 30, 60, 0.9);
    color: #ffffff;
}

/* About Page Styles */
.about-hero {
    padding: 120px 0 60px;
    text-align: center;
}

.about-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.about-header p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

.about-story {
    padding: 60px 0 80px;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

.story-content p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: rgba(30, 30, 60, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(30, 30, 60, 0.8);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #8B5CF6;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 500;
}

.about-values {
    padding: 80px 0;
    background: rgba(30, 30, 60, 0.3);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(30, 30, 60, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(30, 30, 60, 0.8);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-4px);
}

.value-icon {
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.value-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

.about-team {
    padding: 80px 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tech-card {
    background: rgba(30, 30, 60, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.tech-card:hover {
    background: rgba(30, 30, 60, 0.5);
    border-color: rgba(139, 92, 246, 0.2);
}

.tech-card h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tech-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

.about-future {
    padding: 80px 0;
    background: rgba(139, 92, 246, 0.05);
}

.future-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.future-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

.future-content p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.future-cta {
    margin-top: 2rem;
}

/* Features Page Styles */
.features-hero {
    padding: 120px 0 60px;
    text-align: center;
}

.features-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.features-header p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

.features-main {
    padding: 60px 0;
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.feature-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-highlight.reverse {
    direction: rtl;
}

.feature-highlight.reverse > * {
    direction: ltr;
}

.feature-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #8B5CF6;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.feature-content p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.feature-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
    font-weight: 500;
}

.feature-visual {
    display: flex;
    justify-content: center;
}

.feature-mockup {
    background: rgba(30, 30, 60, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mockup-header {
    background: rgba(15, 15, 35, 0.9);
    padding: 16px 20px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.mockup-title {
    color: #8B5CF6;
    font-weight: 600;
    font-size: 0.9rem;
}

.mockup-content {
    padding: 20px;
}

.lead-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.stat-box {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8B5CF6;
    margin-bottom: 4px;
}

.stat-label {
    color: #cbd5e1;
    font-size: 0.8rem;
}

.chart-placeholder {
    height: 120px;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 16px;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 100%;
}

.bar {
    width: 20px;
    background: linear-gradient(to top, #8B5CF6, #A855F7);
    border-radius: 2px 2px 0 0;
    min-height: 20%;
}

.social-platforms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.platform-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 8px;
    padding: 12px;
}

.platform-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.platform-icon.facebook {
    background: #1877F2;
}

.platform-icon.twitter {
    background: #1DA1F2;
}

.platform-icon.linkedin {
    background: #0A66C2;
}

.platform-icon.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.platform-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.platform-status.active {
    background: #10B981;
}

.features-grid-section {
    padding: 80px 0;
    background: rgba(30, 30, 60, 0.3);
}

.features-cta {
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

/* Legal Pages Styles */
.legal-hero {
    padding: 120px 0 60px;
    text-align: center;
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

.legal-header p {
    font-size: 1rem;
    color: #94a3b8;
    font-style: italic;
}

.legal-content {
    padding: 60px 0 80px;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
}

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

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
}

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #8B5CF6;
    margin: 1.5rem 0 1rem 0;
}

.legal-section p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    color: #cbd5e1;
    line-height: 1.7;
    margin: 1rem 0 1rem 2rem;
}

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

.contact-info {
    background: rgba(30, 30, 60, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

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

.contact-info a {
    color: #8B5CF6;
    text-decoration: none;
}

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

/* Responsive Design Updates */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .feature-highlight {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .feature-highlight.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .about-header h1,
    .contact-header h1,
    .features-header h1,
    .pricing-header h1,
    .legal-header h1 {
        font-size: 2.5rem;
    }
    
    .feature-content h2,
    .story-content h2,
    .future-content h2,
    .cta-content h2 {
        font-size: 2rem;
    }
}
