/* ERP Hero Section */
.erp-hero {
    background-color: #0D0D0F;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 75px;
}

.erp-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    width: 100%;
}

.erp-hero-content {
    max-width: 800px;
    margin-bottom: 60px;
}

.erp-hero-headline {
    font-family: 'Libre Baskerville', serif;
    font-size: 58px;
    line-height: 1.1;
    color: #FFFFFF;
    font-weight: normal;
    margin-bottom: 24px;
}

.erp-hero-subtext {
    font-size: 18px;
    line-height: 1.6;
    color: #CCCCCC;
    margin-bottom: 40px;
    max-width: 700px;
}

.erp-hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 80px;
}

.erp-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
}

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

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-family: 'Libre Baskerville', serif;
    font-size: 48px;
    font-weight: normal;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #999999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Video Demo Section */
.video-demo-section {
    background-color: #0D0D0F;
    padding: 40px 40px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-demo-section .spreadsheet-mockup {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Problem Section */
.problem-section {
    background-color: #FAFAFA;
    padding: 90px 40px 80px;
}

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

.problem-headline {
    font-family: 'Libre Baskerville', serif;
    font-size: 46px;
    line-height: 1.15;
    color: #111111;
    font-weight: 400;
    text-align: center;
    margin-bottom: 70px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.01em;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
    align-items: stretch;
}

.problem-card {
    text-align: center;
    padding: 44px 32px;
    background-color: #F9FAFB;
    border: 1px solid #EAEAEA;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.problem-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.problem-icon {
    font-size: 46px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.problem-card:hover .problem-icon {
    transform: scale(1.05);
    filter: brightness(0.9);
}

.problem-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 22px;
    font-weight: normal;
    color: #111111;
    margin-bottom: 14px;
    max-width: 300px;
    line-height: 1.3;
}

.problem-description {
    font-size: 15px;
    line-height: 1.5;
    color: #666666;
    max-width: 330px;
}

/* How It Works Section */
.how-it-works-section {
    background-color: #F7F7F7;
    padding: 100px 40px;
}

.how-it-works-container {
    max-width: 1000px;
    margin: 0 auto;
}

.how-it-works-headline {
    font-family: 'Libre Baskerville', serif;
    font-size: 48px;
    line-height: 1.2;
    color: #111111;
    font-weight: normal;
    text-align: center;
    margin-bottom: 20px;
}

.how-it-works-subtext {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.process-step {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    align-items: start;
}

.step-number {
    font-family: 'Libre Baskerville', serif;
    font-size: 72px;
    font-weight: normal;
    color: #E5E5E5;
    line-height: 1;
}

.step-content {
    padding-top: 8px;
}

.step-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 28px;
    font-weight: normal;
    color: #111111;
    margin-bottom: 16px;
}

.step-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 20px;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-list li {
    font-size: 15px;
    line-height: 1.6;
    color: #444444;
    padding-left: 28px;
    margin-bottom: 10px;
    position: relative;
}

.step-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #111111;
    font-weight: bold;
}

/* Key Features Section */
.key-features-section {
    background-color: #FFFFFF;
    padding: 100px 40px;
}

.key-features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.key-features-headline {
    font-family: 'Libre Baskerville', serif;
    font-size: 48px;
    line-height: 1.2;
    color: #111111;
    font-weight: normal;
    text-align: center;
    margin-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.feature-item {
    text-align: left;
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    background-color: #F7F7F7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon {
    width: 28px;
    height: 28px;
    stroke: #111111;
    stroke-width: 2;
}

.feature-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 12px;
}

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

/* Platforms Section */
.platforms-section {
    background-color: #F7F7F7;
    padding: 100px 40px;
}

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

.platforms-headline {
    font-family: 'Libre Baskerville', serif;
    font-size: 48px;
    line-height: 1.2;
    color: #111111;
    font-weight: normal;
    text-align: center;
    margin-bottom: 60px;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.platform-card {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #E5E5E5;
    transition: all 0.3s ease;
}

.platform-card:hover {
    border-color: #111111;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.platform-name {
    font-family: 'Libre Baskerville', serif;
    font-size: 24px;
    font-weight: normal;
    color: #111111;
    margin-bottom: 12px;
}

.platform-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
}

/* CTA Logo Image */
.cta-logo-icon-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Collaborative Section Override */
.collaborative-section {
    background-color: #FFFFFF;
}

/* Hide mobile menu toggle */
.mobile-menu-toggle {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .erp-hero-headline {
        font-size: 48px;
    }

    .erp-hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    .video-demo-section {
        padding: 40px 30px 90px;
    }

    .video-demo-section .spreadsheet-mockup {
        padding: 0 20px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .erp-hero {
        min-height: auto;
    }

    .erp-hero-container {
        padding: 60px 20px;
    }

    .erp-hero-headline {
        font-size: 36px;
    }

    .erp-hero-subtext {
        font-size: 16px;
    }

    .erp-hero-cta {
        flex-direction: column;
        margin-bottom: 60px;
    }

    .erp-hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: 24px 20px;
    }

    .video-demo-section {
        padding: 40px 12px 80px;
    }

    .video-demo-section .spreadsheet-mockup {
        padding: 0 !important;
        margin-top: 0;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .video-demo-section .spreadsheet-container {
        width: 100%;
        margin: 0;
    }

    .video-demo-section .spreadsheet-content {
        width: 100%;
    }

    .video-demo-section .spreadsheet-gif {
        width: 100%;
        max-width: 100%;
    }

    .problem-section {
        padding: 60px 20px;
    }

    .problem-headline {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .how-it-works-section {
        padding: 40px 20px;
    }

    .how-it-works-headline {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .how-it-works-subtext {
        font-size: 15px;
        margin-bottom: 40px;
        padding: 0 12px;
        max-width: 100%;
        line-height: 1.6;
    }

    .process-steps {
        gap: 32px;
    }

    .process-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .step-number {
        font-size: 56px;
        margin-bottom: 0;
    }

    .step-content {
        padding: 0 24px;
    }

    .step-title {
        font-size: 23px;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .step-description {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .step-list {
        text-align: left;
        max-width: 400px;
        margin: 0 auto;
    }

    .step-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding-left: 0;
        margin-bottom: 12px;
        font-size: 14px;
        line-height: 1.6;
    }

    .step-list li:before {
        position: static;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .key-features-section {
        padding: 60px 20px;
    }

    .key-features-headline {
        font-size: 32px;
        margin-bottom: 48px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .platforms-section {
        padding: 60px 20px;
    }

    .platforms-headline {
        font-size: 32px;
    }
}
