/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Animated background - subtle */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.03;
}

.animated-background svg {
    width: 100%;
    height: 100%;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 50;
}

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

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

/* Hero Section */
.hero {
    padding: 80px 0 120px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

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

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-benefits {
    margin-top: 40px;
}

.hero-benefits h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 24px;
}

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

.benefit-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #10b981;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
    line-height: 1.4;
}

.benefit-content p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Hero Form */
.hero-form {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
}

.hero-form h3 {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.form-subtitle {
    color: #6b7280;
    margin-bottom: 24px;
    font-size: 16px;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.consultation-form input {
    padding: 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.consultation-form input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.cta-button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

.cta-button:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.cta-button:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

.privacy-note {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    margin-top: 16px;
}

/* Social Proof */
.social-proof {
    padding: 60px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.social-proof-text {
    text-align: center;
    color: #6b7280;
    margin-bottom: 32px;
    font-weight: 500;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.logo-placeholder {
    padding: 12px 24px;
    background: #f3f4f6;
    border-radius: 8px;
    color: #6b7280;
    font-weight: 500;
    font-size: 14px;
}

/* Sections */
.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #111827;
    margin-bottom: 64px;
}

/* Solutions */
.solutions {
    padding: 100px 0;
    background: white;
}

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

.solution-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid #e5e7eb;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.solution-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.solution-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

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

.solution-features {
    list-style: none;
    padding: 0;
}

.solution-features li {
    padding: 8px 0;
    color: #374151;
    position: relative;
    padding-left: 24px;
    font-size: 15px;
}

.solution-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 600;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: white;
}

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

.testimonial-quote {
    font-size: 28px;
    font-weight: 400;
    color: #111827;
    line-height: 1.4;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 16px;
}

/* Business Sections */
.business-sections {
    padding: 100px 0;
    background: #f8fafc;
}

.business-section {
    margin-bottom: 120px;
}

.business-section:last-child {
    margin-bottom: 0;
}

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

.business-section.reverse .business-content {
    grid-template-columns: 1fr 1fr;
}

.business-section.reverse .business-text {
    order: 2;
}

.business-section.reverse .business-visual {
    order: 1;
}

.business-category {
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.business-headline {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 24px;
}

.business-description {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
}

.business-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-image {
    background: white;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.placeholder-image p {
    color: #6b7280;
    font-style: italic;
    line-height: 1.5;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: #111827;
    color: white;
}

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

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

.final-cta p {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 40px;
}

.cta-form {
    display: flex;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto 24px;
}

.cta-form input {
    flex: 1;
    padding: 16px;
    border: 1px solid #374151;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
}

.cta-form input::placeholder {
    color: #9ca3af;
}

.cta-form input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.cta-note {
    color: #9ca3af;
    font-size: 14px;
}

/* Footer */
.footer {
    padding: 60px 0 32px;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 32px;
}

.footer-left p {
    color: #6b7280;
    margin-top: 8px;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #111827;
}

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

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-title {
        font-size: 40px;
    }

    .business-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .business-section.reverse .business-text,
    .business-section.reverse .business-visual {
        order: unset;
    }

    .business-headline {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 60px 0 80px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .benefit-item {
        gap: 12px;
        margin-bottom: 20px;
    }

    .benefit-content h4 {
        font-size: 15px;
    }

    .benefit-content p {
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 48px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-quote {
        font-size: 24px;
    }

    .business-section {
        margin-bottom: 80px;
    }

    .business-headline {
        font-size: 24px;
    }

    .business-description {
        font-size: 16px;
    }

    .placeholder-image {
        padding: 24px;
        min-height: 200px;
    }

    .nav {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
    }

    .footer-links {
        justify-content: center;
    }

    .cta-form {
        flex-direction: column;
        max-width: 300px;
    }

    .final-cta h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-form {
        padding: 24px;
    }

    .solution-card,
    .pricing-card {
        padding: 24px;
    }

    .logos {
        gap: 16px;
    }

    .logo-placeholder {
        font-size: 12px;
        padding: 8px 16px;
    }
}