* {
    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: #2c3e50;
    background: #ffffff;
}

.ad-disclosure {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    display: flex;
    min-height: 70vh;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-offset-left {
    flex: 1;
    padding: 80px 60px 40px 40px;
    max-width: 600px;
}

.hero-offset-left h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-subtext {
    font-size: 22px;
    color: #555;
    line-height: 1.5;
}

.hero-visual-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 40px;
}

.hero-visual-right img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.intro-irregular {
    display: flex;
    padding: 100px 40px 80px;
    gap: 60px;
    background: #ffffff;
}

.text-block-offset {
    flex: 1.5;
    padding-left: 120px;
    max-width: 700px;
}

.text-block-offset h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.text-block-offset p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.stat-card-overlap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-item {
    background: #3498db;
    color: white;
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.stat-number {
    display: block;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 18px;
    line-height: 1.4;
}

.services-preview-offset {
    padding: 80px 40px;
    background: #f8f9fa;
}

.services-intro-small {
    padding-left: 40px;
    margin-bottom: 50px;
}

.services-intro-small h2 {
    font-size: 44px;
    color: #1a1a1a;
}

.services-asymmetric-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 0 20px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-card-large {
    flex: 1 1 calc(60% - 25px);
    min-width: 350px;
}

.service-card-medium {
    flex: 1 1 calc(50% - 25px);
    min-width: 300px;
}

.service-card-small {
    flex: 1 1 calc(40% - 25px);
    min-width: 280px;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.cta-service {
    background: #3498db;
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-service:hover {
    background: #2980b9;
}

.problem-amplification {
    display: flex;
    min-height: 500px;
    position: relative;
    margin: 80px 40px;
}

.problem-visual {
    flex: 1;
}

.problem-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.problem-text-overlay {
    flex: 1;
    background: #2c3e50;
    color: white;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 8px;
    margin-left: -80px;
    z-index: 2;
}

.problem-text-overlay h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.problem-list {
    list-style: none;
}

.problem-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 18px;
    line-height: 1.5;
}

.problem-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.insight-section-split {
    display: flex;
    gap: 60px;
    padding: 100px 80px;
    background: white;
}

.insight-left {
    flex: 1.5;
}

.insight-left h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.insight-left p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.citation {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.insight-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.insight-callout {
    background: #ecf0f1;
    padding: 40px;
    border-radius: 8px;
    border-left: 5px solid #3498db;
}

.insight-callout h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.insight-callout p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
}

.trust-elements-scattered {
    padding: 80px 40px;
    background: #f8f9fa;
}

.centered-heading {
    text-align: center;
    font-size: 44px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.trust-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    padding: 0 40px;
}

.trust-card {
    background: white;
    padding: 40px 35px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    max-width: 380px;
}

.trust-card-offset-1 {
    transform: translateY(-20px);
}

.trust-card-offset-2 {
    transform: translateY(20px);
}

.trust-card-offset-3 {
    transform: translateY(-10px);
}

.trust-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

.testimonials-inline {
    padding: 100px 80px;
    background: white;
}

.testimonial-block {
    margin-bottom: 50px;
    padding: 40px;
}

.testimonial-left {
    margin-left: 100px;
    max-width: 700px;
}

.testimonial-right {
    margin-left: auto;
    margin-right: 100px;
    max-width: 700px;
}

.testimonial-block blockquote {
    font-size: 22px;
    line-height: 1.7;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 20px;
    border-left: 4px solid #3498db;
    padding-left: 30px;
}

.testimonial-block cite {
    font-size: 16px;
    color: #7f8c8d;
    font-style: normal;
}

.benefits-visual-first {
    position: relative;
    min-height: 600px;
    margin: 60px 40px;
}

.benefits-visual-first img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
}

.benefits-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 60px;
    border-radius: 8px 8px 0 0;
}

.benefits-overlay h2 {
    font-size: 38px;
    margin-bottom: 35px;
    color: #1a1a1a;
}

.benefits-columns {
    display: flex;
    gap: 40px;
}

.benefit-item {
    flex: 1;
}

.benefit-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.form-section-irregular {
    padding: 100px 40px;
    background: #f8f9fa;
}

.form-intro-offset {
    max-width: 600px;
    margin-left: 80px;
    margin-bottom: 50px;
}

.form-intro-offset h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-intro-offset p {
    font-size: 18px;
    color: #555;
}

.contact-form-asymmetric {
    max-width: 700px;
    margin-left: auto;
    margin-right: 80px;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.cta-submit {
    background: #3498db;
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.cta-submit:hover {
    background: #2980b9;
}

.final-cta-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

.cta-sticky {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 18px 35px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-sticky:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(231, 76, 60, 0.5);
}

.references-section {
    padding: 60px 80px;
    background: white;
}

.references-section h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.references-list {
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 15px;
    line-height: 1.6;
}

.references-list a {
    color: #3498db;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.disclaimer-section {
    padding: 50px 80px;
    background: #ecf0f1;
}

.disclaimer-text {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer-asymmetric {
    background: #2c3e50;
    color: white;
    padding: 60px 40px 30px;
}

.footer-main {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    padding: 0 40px;
}

.footer-col {
    flex: 1;
}

.footer-col-wide {
    flex: 1.5;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 25px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-accept {
    background: #3498db;
    color: white;
}

.cookie-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-offset-left h1 {
        font-size: 36px;
    }

    .intro-irregular {
        flex-direction: column;
        padding: 60px 20px;
    }

    .text-block-offset {
        padding-left: 0;
    }

    .services-asymmetric-grid {
        flex-direction: column;
    }

    .service-card-large,
    .service-card-medium,
    .service-card-small {
        flex: 1 1 100%;
    }

    .problem-amplification {
        flex-direction: column;
        margin: 40px 20px;
    }

    .problem-text-overlay {
        margin-left: 0;
        margin-top: -40px;
    }

    .insight-section-split {
        flex-direction: column;
        padding: 60px 20px;
    }

    .benefits-columns {
        flex-direction: column;
    }

    .testimonial-left,
    .testimonial-right {
        margin-left: 0;
        margin-right: 0;
    }

    .contact-form-asymmetric {
        margin: 0 20px;
    }

    .footer-main {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        display: none;
    }
}