* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

/* Header Section */
.header {
    background: white;
    padding: 24px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header .logo {
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #d94a2a 0%, #ff5722 100%);
    color: white;
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: visible;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero .subhead {
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: 400;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

/* Demo Images */
.demo-images {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    margin-top: -80px;
    z-index: 10;
}

.demo-image-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 24px;
}

.demo-desktop {
    width: 60%;
    max-width: 700px;
    height: 500px;
    object-fit: cover;
    object-position: top;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 8px solid #e5e7eb;
}

.demo-mobile {
    width: 25%;
    max-width: 250px;
    height: 500px;
    object-fit: cover;
    object-position: top;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 4px solid #e5e7eb;
}

/* Section Styles */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #d94a2a;
}

section p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4b5563;
    max-width: 90%;
}

/* Problem Section */
.problem {
    background-color: #f9fafb;
    position: relative;
}

/* Solution Section */
.solution {
    background-color: #ffffff;
    padding-bottom: 0;
}

.highlight-section {
    padding-top: 0;
}

.highlight {
    background-color: #fff5f2;
    border-left: 4px solid #ff5722;
    padding: 24px;
    margin-top: 32px;
    font-size: 1.35rem;
    font-weight: 600;
    color: #d94a2a;
}

/* Case Study Section */
.case-study {
    background: linear-gradient(to bottom, #fff5f2 0%, #ffffff 100%);
    border-top: 2px solid #ff5722;
}

.case-study-logo {
    text-align: center;
    margin-bottom: 24px;
}

.case-study-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.case-study h2 {
    text-align: center;
}

.case-study-company {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    margin: -16px 0 32px;
}

.case-study-content {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.case-study-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid #e5e7eb;
}

.case-study-header h3 {
    font-size: 1.1rem;
    color: #ff5722;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 600;
}

.case-study-header p {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin: 0;
}

.case-study-results {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 32px;
    border-radius: 8px;
    margin: 32px 0;
    text-align: center;
}

.case-study-results p {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.case-study-results span {
    font-size: 1.1rem;
    opacity: 0.9;
    display: block;
    margin-top: 8px;
}

.quote {
    font-style: italic;
    font-size: 1.35rem;
    color: #374151;
    padding: 24px;
    background: #f9fafb;
    border-left: 4px solid #10b981;
    margin-top: 32px;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%);
    text-align: center;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-highlight {
    background: linear-gradient(135deg, #d94a2a 0%, #ff5722 100%);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    padding: 48px;
    border-radius: 12px;
    margin: 0 auto 32px;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(217, 74, 42, 0.2);
}

.pricing > .container > p {
    font-size: 1.35rem;
    margin: 24px auto;
    max-width: 800px;
    color: #1a1a1a;
}

.pricing > .container > p:first-of-type {
    font-size: 1.5rem;
    font-weight: 600;
    color: #10b981;
    margin-top: 0;
}

.pricing ol {
    background: white;
    max-width: 800px;
    margin: 48px auto 0;
    padding: 48px 48px 48px 72px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
    border: 2px solid #e5e7eb;
}

.pricing ol li {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: 16px;
    padding-left: 8px;
}

.pricing ol li:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: #d94a2a;
}

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

.cta h2 {
    color: white;
    margin-bottom: 24px;
}

.cta p {
    font-size: 1.35rem;
    color: white;
    opacity: 0.95;
    margin: 0 auto;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    background: white;
    color: #d94a2a;
    padding: 18px 48px;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 80px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subhead {
        font-size: 1.25rem;
    }

    .demo-image-container {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .demo-desktop {
        width: 90%;
        max-width: 500px;
        height: 400px;
    }

    .demo-mobile {
        width: 50%;
        max-width: 200px;
        height: 400px;
    }

    section h2 {
        font-size: 2rem;
    }

    section p {
        font-size: 1.1rem;
    }

    .case-study-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .case-study-content {
        padding: 32px 24px;
    }

    .solution .highlight {
        font-size: 1.15rem;
    }

    .pricing-highlight {
        font-size: 1.5rem;
        padding: 32px 24px;
    }

    .pricing ol {
        padding: 32px 32px 32px 48px;
    }

    .pricing ol li {
        font-size: 1.1rem;
    }
}

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

    .hero h1 {
        font-size: 2rem;
    }

    .hero .subhead {
        font-size: 1.1rem;
    }

    .demo-desktop {
        width: 100%;
        height: auto;
        border: 4px solid #e5e7eb;
    }

    .demo-mobile {
        display: none;
    }

    section {
        padding: 60px 0;
    }

    .case-study-content {
        padding: 24px 16px;
    }

    .pricing-highlight {
        font-size: 1.25rem;
        padding: 24px 16px;
    }

    .pricing > .container > p:first-of-type {
        font-size: 1.25rem;
    }

    .pricing ol {
        padding: 24px 24px 24px 40px;
        margin-top: 32px;
    }

    .pricing ol li {
        font-size: 1rem;
    }
}
