* {
    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.5;
    color: #333;
    background: #fff;
}

nav {
    background: #fff;
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-bottom: 1px solid #e0e0e0;
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
    font-weight: 500;
}

.nav-links a:hover {
    color: #ff6b35;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #333;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle:hover {
    color: #ff6b35;
}

.hero-with-form {
    background: linear-gradient(135deg, #5a6c7d 0%, #4a5568 100%);
    color: white;
    padding: 60px 20px;
}

.hero-form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.hero-content .benefits-list {
    list-style: none;
    margin-top: 20px;
}

.hero-content .benefits-list li {
    padding: 8px 0;
    font-size: 16px;
    color: #e0e0e0;
}

.hero-content .benefits-list li:before {
    content: "✓ ";
    color: #ff6b35;
    font-weight: bold;
    margin-right: 8px;
}

.hero-form-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.hero-form-box h3 {
    color: #1a1a1a;
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
}

.hero-form-box p {
    color: #666;
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    background: #ff6b35;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #e85a28;
}

.privacy-note {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 10px;
}

.stats {
    background: #f8fafc;
    padding: 35px 20px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 38px;
    color: #ff6b35;
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-item p {
    font-size: 15px;
    color: #666;
}

.content-section {
    padding: 50px 20px;
}

.content-section.alt {
    background: #f8fafc;
}

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

.content-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.content-section p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.benefit-card {
    padding: 25px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: #ff6b35;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.testimonials {
    background: #4a5568;
    color: white;
    padding: 50px 20px;
}

.testimonials h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 35px;
    font-weight: 700;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: #5a6c7d;
    padding: 25px;
    border-radius: 8px;
    border-left: 3px solid #ff6b35;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #e0e0e0;
    font-size: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: #ff6b35;
    font-size: 14px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.value-card {
    padding: 20px;
    background: white;
    border-radius: 8px;
    border-left: 3px solid #ff6b35;
    border: 1px solid #e2e8f0;
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.feature-list {
    list-style: none;
    margin-top: 25px;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 15px;
    line-height: 1.5;
    color: #555;
}

.feature-list li:last-child {
    border-bottom: none;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.step {
    text-align: center;
    padding: 25px;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 19px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.service-card {
    padding: 25px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.service-card ul {
    list-style: none;
    margin-top: 12px;
}

.service-card li {
    padding: 6px 0;
    color: #666;
    font-size: 14px;
}

.service-card li:before {
    content: "✓ ";
    color: #ff6b35;
    font-weight: bold;
    margin-right: 6px;
}

.case-studies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 35px;
}

.case-study {
    background: #f8fafc;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
}

.case-study h3 {
    font-size: 21px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 600;
}

.case-study .industry {
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 13px;
}

.case-study p {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #555;
    font-size: 14px;
}

.case-study .results {
    background: white;
    padding: 18px;
    border-radius: 5px;
    margin-top: 15px;
}

.case-study .results h4 {
    color: #1a1a1a;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
}

.case-study .results ul {
    list-style: none;
}

.case-study .results li {
    padding: 5px 0;
    color: #555;
    font-size: 14px;
}

.case-study .results li:before {
    content: "→ ";
    color: #ff6b35;
    font-weight: bold;
    margin-right: 5px;
}

.page-hero {
    background: linear-gradient(135deg, #5a6c7d 0%, #4a5568 100%);
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 36px;
    margin-bottom: 12px;
    font-weight: 700;
}

.page-hero p {
    font-size: 17px;
    color: #e0e0e0;
}

.final-cta {
    padding: 50px 20px;
    text-align: center;
    background: linear-gradient(135deg, #ff6b35 0%, #e85a28 100%);
    color: white;
}

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

.final-cta p {
    font-size: 18px;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.cta-button-white {
    display: inline-block;
    background: white;
    color: #ff6b35;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

footer {
    background: #4a5568;
    color: #e0e0e0;
    padding: 30px 20px;
    text-align: center;
}

footer a {
    color: #ff6b35;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer p {
    margin: 8px 0;
    font-size: 14px;
}

@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: white;
        flex-direction: column;
        padding: 30px 20px;
        gap: 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links a {
        font-size: 16px;
        display: block;
        width: 100%;
    }

    .hero-form-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 26px;
        margin-bottom: 12px;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .hero-content .benefits-list {
        text-align: left;
        max-width: 400px;
        margin: 15px auto;
    }

    .hero-content .benefits-list li {
        font-size: 13px;
        padding: 4px 0;
    }

    .hero-with-form {
        padding: 25px 15px;
    }

    .page-hero h1 {
        font-size: 24px;
    }

    .logo {
        font-size: 20px;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 22px;
    }

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

    .logo {
        font-size: 18px;
    }
}

.stats-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.stats-inline .stat h3 {
    font-size: 36px;
    color: #ff6b35;
    margin-bottom: 10px;
}

.stats-inline .stat p {
    font-size: 16px;
    color: #666;
}

.assessment-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.assessment-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.assessment-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.assessment-intro {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    font-size: 18px;
}
