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

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

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

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

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

.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: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    flex: 1;
    padding: 120px 8% 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a252f;
    font-weight: 800;
}

.hero-content-offset p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #4a5568;
}

.hero-image-floating {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 55%;
    height: 75%;
    transform: rotate(3deg);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    overflow: hidden;
}

.hero-image-floating img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    align-self: flex-start;
    transition: background 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.problem-amplification {
    padding: 100px 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.content-narrow-offset {
    max-width: 720px;
    margin-left: 15%;
}

.content-narrow-offset h2 {
    font-size: 42px;
    margin-bottom: 35px;
    font-weight: 700;
}

.content-narrow-offset p {
    font-size: 19px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.insight-diagonal {
    display: flex;
    min-height: 600px;
}

.insight-block-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.insight-image {
    width: 100%;
    height: 450px;
    transform: rotate(-2deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.insight-block-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.insight-block-right h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
}

.insight-block-right p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #4a5568;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    margin-top: 20px;
    transition: transform 0.3s;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.link-arrow::after {
    content: ' →';
    margin-left: 8px;
}

.services-stacked {
    padding: 120px 5%;
    background: #ffffff;
}

.section-title-offset {
    font-size: 48px;
    margin-bottom: 80px;
    margin-left: 10%;
    font-weight: 700;
    color: #1a252f;
}

.service-card-asymmetric {
    display: flex;
    margin-bottom: 60px;
    min-height: 350px;
    gap: 50px;
    align-items: center;
}

.service-card-asymmetric.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    padding: 40px;
}

.service-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #4a5568;
}

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

.service-visual {
    flex: 1;
    height: 350px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.btn-service-select {
    background: #2ecc71;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-service-select:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.testimonial-inline {
    padding: 100px 5%;
    background: linear-gradient(120deg, #f093fb 0%, #f5576c 100%);
}

.testimonial-content-wide {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-content-wide blockquote {
    font-size: 32px;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 25px;
    font-weight: 300;
}

.testimonial-content-wide cite {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    font-style: normal;
}

.form-section-diagonal {
    padding: 120px 5%;
    background: #f8f9fa;
    position: relative;
}

.form-container-offset {
    max-width: 650px;
    margin-left: auto;
    margin-right: 15%;
}

.form-container-offset h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a252f;
}

.form-container-offset > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #4a5568;
}

.contact-form {
    background: #ffffff;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    border-radius: 5px;
    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;
}

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

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

.trust-building {
    padding: 80px 5%;
    background: #ffffff;
}

.trust-grid-irregular {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
    padding: 35px;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a252f;
}

.trust-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.footer-asymmetric {
    background: #1a252f;
    color: #ffffff;
    padding: 80px 5% 30px;
}

.footer-main {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col-large {
    flex: 2;
}

.footer-col {
    flex: 1;
}

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

.footer-col-large p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
}

.disclaimer-footer {
    font-size: 13px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    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 rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a252f;
    color: #ffffff;
    padding: 25px 5%;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-accept {
    background: #2ecc71;
    color: #ffffff;
}

.btn-accept:hover {
    background: #27ae60;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background: rgba(255,255,255,0.1);
}

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

    .hero-content-offset {
        max-width: 100%;
        padding: 60px 5%;
    }

    .hero-content-offset h1 {
        font-size: 40px;
    }

    .hero-image-floating {
        position: relative;
        width: 90%;
        height: 400px;
        right: auto;
        top: auto;
        margin: 0 auto 40px;
    }

    .insight-diagonal {
        flex-direction: column;
    }

    .service-card-asymmetric,
    .service-card-asymmetric.reverse {
        flex-direction: column;
    }

    .service-visual {
        width: 100%;
    }

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

    .trust-grid-irregular {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }
}