body {
    margin: 0;
    padding: 0;
    font-family: 'Whitney', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #dcddde;
}

.business-bg {
    min-height: 100vh;
    background: #36393f;
}

/* Hero Section - Sales Hook */
.hero {
    padding: 6rem 0;
    text-align: center;
    color: white;
    background: linear-gradient(rgba(54, 57, 63, 0.8), rgba(32, 34, 37, 0.8)),
                url('https://images.unsplash.com/photo-1517077304055-6e89abbf09b0?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    width: 100%;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    color: #b9bbbe;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.hero-problem {
    font-size: 1.4rem;
    color: #faa61a;
    margin-bottom: 3rem;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.hero-cta {
    display: inline-block;
    background: #5865f2;
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: #4752c4;
    transform: translateY(-2px);
    color: white;
}

/* Full Width Sections */
.full-width-section {
    width: 100%;
    padding: 0;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Problem Section */
.problem-section {
    background: #2f3136;
    padding: 6rem 0;
    width: 100%;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.section-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4rem;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.problem-item {
    text-align: center;
    padding: 3rem 2rem;
    background: #36393f;
    border-radius: 12px;
    border: 1px solid #40444b;
    transition: all 0.3s ease;
}

.problem-item:hover {
    border-color: #ed4245;
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.problem-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ed4245;
    margin-bottom: 1.5rem;
}

.problem-item p {
    color: #b9bbbe;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Solution Section */
.solution-section {
    background: #36393f;
    padding: 6rem 0;
    width: 100%;
}

.solution-intro {
    font-size: 1.5rem;
    color: #dcddde;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Section - 2x2 Grid */
.services-section {
    background: #2f3136;
    padding: 6rem 0;
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    background: #36393f;
    border-radius: 12px;
    border: 1px solid #40444b;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #5865f2;
    box-shadow: 0 12px 32px rgba(88, 101, 242, 0.2);
}

.service-card.featured {
    border: 2px solid #5865f2;
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.3);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #5865f2;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
}

.service-image {
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: all 0.3s ease;
}

.service-card:hover .service-image img {
    filter: brightness(0.6) grayscale(20%);
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1rem;
    color: #dcddde;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-benefits {
    margin-bottom: 2rem;
}

.benefit {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: #b9bbbe;
    padding: 0.3rem 0;
}

.service-pricing {
    margin-bottom: 1.5rem;
    text-align: center;
    padding: 1.2rem;
    background: #2f3136;
    border-radius: 8px;
    margin: 0 -0.5rem 1.5rem -0.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: #72767d;
    display: block;
    margin-bottom: 0.3rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #00b0f4;
}

.price-unit {
    font-size: 1rem;
    color: #72767d;
    font-weight: 400;
}

.btn-primary {
    background: #5865f2;
    color: white;
    padding: 1rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
    font-size: 1rem;
    margin-top: auto;
}

.btn-primary:hover {
    background: #4752c4;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Credibility Section */
.credibility-section {
    background: #36393f;
    padding: 6rem 0;
    width: 100%;
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.credibility-item {
    text-align: center;
    padding: 3rem 2rem;
    background: #2f3136;
    border-radius: 12px;
    border: 1px solid #40444b;
    transition: all 0.3s ease;
}

.credibility-item:hover {
    border-color: #00b0f4;
    transform: translateY(-5px);
}

.credibility-number {
    font-size: 4rem;
    font-weight: 700;
    color: #00b0f4;
    margin-bottom: 1rem;
}

.credibility-text {
    font-size: 1.2rem;
    color: #b9bbbe;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
    padding: 6rem 0;
    color: white;
    text-align: center;
    width: 100%;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
}

.cta-description {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: #b9bbbe;
    line-height: 1.6;
}

.cta-buttons {
    margin-bottom: 2rem;
}

.btn-primary-large {
    display: inline-block;
    background: #57f287;
    color: #2f3136;
    padding: 1.5rem 4rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: #3ba55d;
    transform: translateY(-3px);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(87, 242, 135, 0.3);
}

.contact-info {
    margin: 2rem 0;
    color: #b9bbbe;
    font-size: 1.1rem;
}

.email-link {
    color: #00b0f4;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.2rem;
}

.email-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.guarantee {
    font-size: 1rem;
    color: #72767d;
    font-style: italic;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .credibility-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-content h2, .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .credibility-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-container, .section-content, .cta-content {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .service-pricing {
        margin: 0 0 1.5rem 0;
    }
}

/* Footer Styles */
.footer-section {
    background: #202225;
    color: #b9bbbe;
    padding: 4rem 0 2rem 0;
    margin-top: 4rem;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    width: 100%;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #40444b;
}

.footer-brand h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #72767d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-contact {
    margin-top: 1rem;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    color: #00b0f4;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.2s ease;
}

.footer-email:hover {
    color: #ffffff;
    text-decoration: none;
}

.email-icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.footer-services h4,
.footer-legal h4,
.footer-support h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-services ul,
.footer-legal ul,
.footer-support ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services li,
.footer-legal li,
.footer-support li {
    margin-bottom: 0.8rem;
}

.footer-services a,
.footer-legal a,
.footer-support a {
    color: #b9bbbe;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.footer-services a:hover,
.footer-legal a:hover,
.footer-support a:hover {
    color: #00b0f4;
    text-decoration: none;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-bottom-left p {
    margin: 0;
    color: #72767d;
    font-size: 0.9rem;
}

.footer-meta {
    font-size: 0.8rem !important;
    color: #5865f2 !important;
    margin-top: 0.5rem !important;
}

.footer-certifications {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cert-badge {
    background: #36393f;
    color: #b9bbbe;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #40444b;
    white-space: nowrap;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-support {
        grid-column: 1 / -1;
        margin-top: 1rem;
    }
    
    .footer-support ul {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0.8rem;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 3rem 0 1.5rem 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-certifications {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-main {
        gap: 1.5rem;
    }
    
    .cert-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .footer-certifications {
        flex-direction: column;
        align-items: center;
    }
}

/* Link States */
.footer-legal a[href*="algemene-voorwaarden"]:hover {
    color: #57f287;
}

.footer-legal a[href*="privacy-beleid"]:hover {
    color: #faa61a;
}

.footer-support a[href*="voorwaarden"]:hover {
    color: #5865f2;
}

.footer-services a:hover {
    color: #00b0f4;
}

/* Print Styles */
@media print {
    .footer-section {
        background: white !important;
        color: black !important;
        border-top: 2px solid #000;
    }
    
    .footer-certifications {
        display: none;
    }
}