/* 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: #000;
    background-color: #fafafa;
}

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

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

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

.nav-logo .logo {
    font-size: 24px;
    font-weight: 700;
    color: #502274;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #502274;
}

.nav-button {
    background: #8B5CF6;
    color: white !important;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: #7C3AED;
    transform: translateY(-1px);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 500;
}

.badge-new {
    background: #8B5CF6;
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #000;
}

.hero-title .highlight {
    color: #8B5CF6;
}

.hero-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: #181b1b;
    color: white;
}

.btn-primary:hover {
    background: #000;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #000;
    border: 2px solid #000;
}

.btn-secondary:hover {
    background: #000;
    color: white;
    transform: translateY(-2px);
}

/* Hero Demo */
.hero-demo {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.demo-window {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.demo-header {
    background: #2a2a2a;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.demo-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ff5f57; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #28ca42; }

.demo-url {
    background: #3a3a3a;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 14px;
    color: #ccc;
    flex: 1;
    text-align: center;
}

.demo-content {
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.demo-profile {
    text-align: center;
    color: white;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto 20px;
    position: relative;
}

.profile-avatar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.profile-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.profile-info p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.5;
}

.demo-arrow {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.demo-arrow svg {
    width: 80px;
    height: 40px;
    margin-bottom: 10px;
}

.arrow-text {
    font-size: 14px;
}

.arrow-main {
    display: block;
    font-weight: 600;
    color: #8B5CF6;
}

.arrow-sub {
    display: block;
    color: #666;
    font-size: 12px;
}

/* Features Preview */
.features-preview {
    padding: 80px 0;
    background: #fff;
}

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

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.feature-icon.photos { background: #4F46E5; }
.feature-icon.videos { background: #7C3AED; }
.feature-icon.biography { background: #DC2626; }
.feature-icon.history { background: #059669; }

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000;
}

.feature-card p {
    color: #666;
    font-size: 14px;
}

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

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

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #502274;
}

.about-content > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

.about-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about-feature i {
    font-size: 24px;
    color: #8B5CF6;
    margin-top: 5px;
}

.about-feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.about-feature p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #fff;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #502274;
}

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

.testimonial {
    background: #fafafa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #8B5CF6;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 14px;
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
    text-align: center;
}

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

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: #8B5CF6;
}

.cta-section .btn-primary:hover {
    background: #f0f0f0;
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

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

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.footer-brand .logo {
    font-size: 28px;
    font-weight: 700;
    color: #8B5CF6;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 16px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #ccc;
}

.footer-contact i {
    color: #8B5CF6;
    width: 16px;
}

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

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
    }
    
    .nav-button {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .demo-arrow {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Pricing Page Styles */
.pricing-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
}

.pricing-hero h1 {
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #000;
}

.pricing-hero .highlight {
    color: #8B5CF6;
}

.pricing-hero p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-toggle {
    display: flex;
    background: #fff;
    border-radius: 8px;
    padding: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    justify-content: center;
    max-width: 300px;
    margin: 0 auto;
}

.pricing-toggle button {
    padding: 12px 24px;
    border: none;
    background: transparent;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.pricing-toggle button.active {
    background: #8B5CF6;
    color: white;
}

.discount {
    font-size: 12px;
    color: #059669;
    font-weight: 500;
}

.pricing-plans {
    padding: 80px 0;
    background: #fff;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.plan-card.starter {
    border: 2px solid #e5e7eb;
}

.plan-card.pro {
    border: 2px solid #8B5CF6;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
}

.plan-card.enterprise {
    border: 2px solid #1f2937;
    background: #1f2937;
    color: white;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #059669;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.plan-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.plan-price {
    margin-bottom: 15px;
}

.plan-price .currency {
    font-size: 24px;
    font-weight: 600;
    vertical-align: top;
}

.plan-price .amount {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
}

.plan-price .period {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.plan-card.pro .plan-price .period,
.plan-card.enterprise .plan-price .period {
    color: rgba(255, 255, 255, 0.8);
}

.plan-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.plan-card.pro .plan-description,
.plan-card.enterprise .plan-description {
    color: rgba(255, 255, 255, 0.9);
}

.plan-features {
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
}

.feature.included i {
    color: #059669;
}

.feature.not-included i {
    color: #dc2626;
}

.plan-card.pro .feature.included i,
.plan-card.enterprise .feature.included i {
    color: #10b981;
}

.plan-footer .btn {
    width: 100%;
    justify-content: center;
}

.faq-section {
    padding: 80px 0;
    background: #fafafa;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #502274;
}

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

.faq-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

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

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
}

.contact-hero h1 {
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.contact-hero .highlight {
    color: #fbbf24;
}

.contact-hero p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.contact-form-section {
    padding: 80px 0;
    background: #fafafa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #502274;
}

.contact-info > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-benefits {
    margin-bottom: 40px;
}

.benefit {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.benefit i {
    font-size: 20px;
    color: #8B5CF6;
    margin-top: 2px;
}

.benefit h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #000;
}

.benefit p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.contact-details h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #502274;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 16px;
    color: #8B5CF6;
    margin-top: 2px;
    width: 20px;
}

.contact-item strong {
    display: block;
    font-weight: 600;
    color: #000;
    margin-bottom: 2px;
}

.contact-item p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B5CF6;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.submit-btn {
    grid-column: 1 / -1;
    margin-top: 10px;
}

.thank-you-message {
    text-align: center;
    padding: 60px 40px;
}

.thank-you-content i {
    font-size: 48px;
    color: #059669;
    margin-bottom: 20px;
}

.thank-you-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.thank-you-content p {
    color: #666;
    font-size: 16px;
}

.why-choose-section {
    padding: 80px 0;
    background: #fff;
}

.why-choose-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #502274;
}

.why-choose-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-item .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #8B5CF6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.feature-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .demo-content {
        padding: 20px;
    }
    
    .about-content h2,
    .testimonials h2,
    .cta-section h2 {
        font-size: 28px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .pricing-toggle {
        max-width: 280px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Page Styles */
.product-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
}

.product-hero h1 {
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.product-hero .highlight {
    color: #fbbf24;
}

.product-hero p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: #fbbf24;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.how-it-works {
    padding: 80px 0;
    background: #fafafa;
}

.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #502274;
}

.section-description {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: #8B5CF6;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.step-features span {
    background: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.key-features {
    padding: 80px 0;
    background: #fff;
}

.key-features h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #502274;
}

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

.key-features .feature-card {
    background: #fafafa;
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.key-features .feature-card:hover {
    transform: translateY(-5px);
}

.key-features .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #8B5CF6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
}

.key-features .feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.key-features .feature-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.key-features .feature-card ul {
    list-style: none;
    padding: 0;
}

.key-features .feature-card li {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.key-features .feature-card li::before {
    content: '•';
    color: #8B5CF6;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.technology-stack {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

.technology-stack h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.technology-stack .section-description {
    color: #ccc;
}

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

.tech-item {
    text-align: center;
    padding: 30px 20px;
}

.tech-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #8B5CF6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.tech-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.tech-item p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

.competitive-advantages {
    padding: 80px 0;
    background: #fafafa;
}

.competitive-advantages h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #502274;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.comparison-item.photonvex {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
}

.comparison-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.comparison-item ul {
    list-style: none;
    padding: 0;
}

.comparison-item li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
}

.traditional-list i {
    color: #dc2626;
}

.photonvex-list i {
    color: #10b981;
}

/* Features Page Styles */
.features-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
}

.features-hero h1 {
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #000;
}

.features-hero .highlight {
    color: #8B5CF6;
}

.features-hero p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.core-features {
    padding: 80px 0;
    background: #fff;
}

.core-features h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #502274;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.core-features .feature-item {
    background: #fafafa;
    padding: 40px;
    border-radius: 16px;
    border-left: 4px solid #8B5CF6;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.core-features .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #8B5CF6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.feature-title h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
}

.feature-title p {
    color: #666;
    font-size: 16px;
}

.feature-details {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.feature-description p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

.feature-capabilities h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.feature-capabilities ul {
    list-style: none;
    padding: 0;
}

.feature-capabilities li {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.feature-capabilities li::before {
    content: '•';
    color: #8B5CF6;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.integration-features {
    padding: 80px 0;
    background: #fafafa;
}

.integration-features h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #502274;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.integration-category {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.integration-category h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
    text-align: center;
}

.integration-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #fafafa;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.integration-item:hover {
    background: rgba(139, 92, 246, 0.1);
}

.integration-item i {
    color: #8B5CF6;
    font-size: 16px;
}

.integration-item span {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.advanced-features {
    padding: 80px 0;
    background: #fff;
}

.advanced-features h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #502274;
}

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

.advanced-feature {
    background: #fafafa;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

.advanced-feature:hover {
    transform: translateY(-5px);
}

.advanced-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #8B5CF6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.advanced-feature h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.advanced-feature p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.advanced-feature ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.advanced-feature li {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.advanced-feature li::before {
    content: '•';
    color: #8B5CF6;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.feature-comparison {
    padding: 80px 0;
    background: #fafafa;
}

.feature-comparison h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #502274;
}

.comparison-table {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: #8B5CF6;
    color: white;
    font-weight: 600;
    padding: 20px;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    align-items: center;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:nth-child(even) {
    background: #fafafa;
}

.feature-name {
    font-weight: 600;
    color: #000;
}

.plan-column {
    text-align: center;
    font-size: 14px;
    color: #666;
}

.plan-column i.fa-check {
    color: #059669;
    font-size: 16px;
}

.plan-column i.fa-times {
    color: #dc2626;
    font-size: 16px;
}

/* Blog Page Styles */
.blog-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, #502274 0%, #8B5CF6 100%);
    color: white;
}

.blog-hero h1 {
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 40px;
}

.blog-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background: white;
    color: #8B5CF6;
    border-color: white;
}

.blog-posts {
    padding: 80px 0;
    background: #fafafa;
}

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

.blog-post {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.post-image {
    height: 200px;
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-post.featured .post-image {
    height: auto;
    min-height: 300px;
}

.post-image-placeholder {
    color: white;
    font-size: 48px;
}

.post-content {
    padding: 30px;
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.post-date {
    color: #666;
}

.post-category {
    color: #8B5CF6;
    font-weight: 500;
}

.blog-post h2,
.blog-post h3 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
    line-height: 1.3;
}

.blog-post h2 {
    font-size: 28px;
}

.blog-post h3 {
    font-size: 20px;
}

.blog-post p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #8B5CF6;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #7C3AED;
}

.newsletter-section {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

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

.newsletter-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 15px 25px;
    white-space: nowrap;
}

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

.legal-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #502274;
}

.legal-hero p {
    color: #666;
    font-size: 16px;
}

.legal-content {
    padding: 80px 0;
    background: #fff;
}

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

.legal-document h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 20px 0;
    color: #502274;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document p {
    color: #666;
    margin-bottom: 20px;
}

.legal-document ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-document li {
    color: #666;
    margin-bottom: 10px;
}

.contact-info {
    background: #fafafa;
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
}

.contact-info p {
    margin-bottom: 5px;
    color: #666;
}

.contact-info strong {
    color: #000;
}

/* Additional Responsive Styles */
@media (max-width: 768px) {
    .hero-stats {
        gap: 30px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .integrations-grid {
        grid-template-columns: 1fr;
    }
    
    .advanced-grid {
        grid-template-columns: 1fr;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        font-size: 12px;
    }
    
    .blog-post.featured {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .category-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}
