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

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1e1e1e;
    background-color: #ffffff;
}

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

/* Header Styles */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
    padding: 12px 0;
}

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

.logo-img {
    height: 32px;
    width: auto;
}

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

.nav-item {
    color: #1e1e1e;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
}

.nav-item:hover {
    color: #4f46e5;
}

.nav-dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 8px 16px;
    color: #1e1e1e;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 60px;
    font-weight: 400;
}

.hero-illustration {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.geometric-shape {
    width: 400px;
    height: 300px;
    opacity: 0.8;
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
    background: #ffffff;
    text-align: center;
}

.partners-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e1e1e;
    margin-bottom: 40px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-logo {
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo img {
    height: 40px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.2s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* Vision Section */
.vision-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.vision-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 24px;
}

.vision-line {
    width: 60px;
    height: 3px;
    background: #4f46e5;
    margin-bottom: 32px;
}

.vision-text p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 24px;
    line-height: 1.7;
}

.vision-illustration svg {
    width: 100%;
    height: auto;
    max-width: 400px;
}

/* Solutions Section */
.solutions-section {
    padding: 100px 0;
    background: #ffffff;
}

.solutions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.solutions-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e1e1e;
}

.solutions-illustration svg {
    width: 300px;
    height: 200px;
}

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

.solution-card {
    position: relative;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 40px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.solution-icon svg {
    width: 30px;
    height: 30px;
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e1e1e;
    margin-bottom: 16px;
}

.solution-card p {
    color: #4b5563;
    margin-bottom: 24px;
    line-height: 1.6;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
}

.learn-more-btn:hover {
    color: #3730a3;
}

.learn-more-btn::after {
    content: "→";
    transition: transform 0.2s ease;
}

.learn-more-btn:hover::after {
    transform: translateX(4px);
}

.solution-bg {
    position: absolute;
    bottom: -20px;
    right: -20px;
    opacity: 0.3;
    z-index: 0;
}

.solution-bg svg {
    width: 200px;
    height: 150px;
}

/* Platforms Section */
.platforms-section {
    padding: 60px 0;
    background: #1c1917;
    color: white;
    text-align: center;
}

.platforms-scroll {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.platform-icon {
    font-size: 2rem;
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.platform-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

.platforms-text {
    color: #d1d5db;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

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

.cta-btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.cta-btn.primary {
    background: white;
    color: #4f46e5;
}

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

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #4f46e5;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 24px;
}

.footer-contact p {
    color: #d1d5db;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

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

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

.footer-column a {
    display: block;
    color: #d1d5db;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        gap: 16px;
    }
    
    .vision-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .solutions-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .partners-grid {
        gap: 30px;
    }
    
    .platforms-scroll {
        gap: 20px;
    }
}

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

.pricing-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 16px;
}

.pricing-hero p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

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

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

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

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e1e1e;
    margin-bottom: 16px;
}

.price {
    margin-bottom: 32px;
}

.currency {
    font-size: 1.5rem;
    color: #6b7280;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1e1e1e;
}

.period {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 4px;
}

.pricing-features ul {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 8px 0;
    color: #4b5563;
    font-size: 0.95rem;
}

.pricing-btn {
    display: inline-block;
    width: 100%;
    padding: 16px 32px;
    background: #4f46e5;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.pricing-btn:hover {
    background: #3730a3;
}

.pricing-faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 60px;
}

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

.faq-item {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e1e1e;
    margin-bottom: 16px;
}

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

.pricing-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%);
    color: white;
    text-align: center;
}

.pricing-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

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

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.contact-info > p {
    color: #4b5563;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.benefit-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e1e1e;
    margin-bottom: 4px;
}

.benefit-text p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-details {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e1e1e;
    margin-bottom: 16px;
}

.contact-item {
    margin-bottom: 8px;
    color: #4b5563;
    font-size: 0.95rem;
}

.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: 500;
    color: #1e1e1e;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

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

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
}

.submit-btn {
    background: #4f46e5;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit-btn:hover {
    background: #3730a3;
}

.success-message {
    background: #10b981;
    color: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.success-message h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .solution-card {
        padding: 24px;
    }
    
    .geometric-shape {
        width: 300px;
        height: 225px;
    }
    
    .pricing-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 24px;
    }
}

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

.features-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 16px;
}

.features-hero p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.features-overview {
    padding: 80px 0;
    background: #ffffff;
}

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

.feature-category {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 40px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.category-icon {
    font-size: 2rem;
}

.category-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e1e1e;
}

.feature-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e5e5;
}

.feature-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e1e1e;
    margin-bottom: 8px;
}

.feature-item p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.95rem;
}

.features-detailed {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-detailed h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 60px;
}

.detailed-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.detailed-feature:last-child {
    margin-bottom: 0;
}

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

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

.feature-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 16px;
}

.feature-content p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 24px;
}

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

.feature-content li {
    color: #4b5563;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.feature-content li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.features-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%);
    color: white;
    text-align: center;
}

.features-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.features-cta p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Product Page Styles */
.product-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.product-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 16px;
}

.product-hero p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.product-overview {
    padding: 80px 0;
    background: #ffffff;
}

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

.overview-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 24px;
}

.overview-text p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.overview-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 60px;
}

.process-steps {
    display: grid;
    gap: 40px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #4f46e5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e1e1e;
    margin-bottom: 12px;
}

.step-content p {
    color: #4b5563;
    line-height: 1.6;
}

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

.competitive-advantages h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 60px;
}

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

.advantage-item {
    text-align: center;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 12px;
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.advantage-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e1e1e;
    margin-bottom: 12px;
}

.advantage-item p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.95rem;
}

.technology-stack {
    padding: 80px 0;
    background: #f8f9fa;
}

.technology-stack h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 60px;
}

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

.tech-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.tech-details h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 24px;
}

.tech-category {
    margin-bottom: 24px;
}

.tech-category h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e1e1e;
    margin-bottom: 12px;
}

.tech-category ul {
    list-style: none;
    padding: 0;
}

.tech-category li {
    color: #4b5563;
    margin-bottom: 6px;
    padding-left: 16px;
    position: relative;
    font-size: 0.95rem;
}

.tech-category li::before {
    content: "•";
    color: #4f46e5;
    position: absolute;
    left: 0;
}

.product-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%);
    color: white;
    text-align: center;
}

.product-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.product-cta p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Legal Pages Styles */
.legal-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.legal-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 16px;
}

.legal-hero p {
    font-size: 1rem;
    color: #6b7280;
}

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

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

.legal-document h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e1e1e;
    margin-top: 40px;
    margin-bottom: 16px;
}

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

.legal-document p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 16px;
}

.legal-document ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.legal-document li {
    color: #4b5563;
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-document .contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 16px;
}

.legal-document .contact-info p {
    margin-bottom: 8px;
    font-weight: 500;
}

.legal-document .contact-info p:last-child {
    margin-bottom: 0;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .detailed-feature {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .detailed-feature.reverse {
        direction: ltr;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tech-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .features-hero h1,
    .product-hero h1,
    .legal-hero h1 {
        font-size: 2rem;
    }
    
    .feature-category {
        padding: 24px;
    }
    
    .advantage-item {
        padding: 24px;
    }
}
