* {
    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: #1a1a1a;
    background: #fafafa;
}

#mainNav {
    position: fixed;
    top: 20px;
    right: 40px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

.nav-disclaimer {
    font-size: 0.7rem;
    color: #666;
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 3px;
}

.nav-links {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.hero-asymmetric {
    min-height: 100vh;
    padding: 120px 40px 60px;
    background: linear-gradient(135deg, #f5f3ef 0%, #e8e4dc 100%);
}

.hero-content-offset {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text-block {
    flex: 1;
    padding-top: 80px;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-lead {
    font-size: 1.3rem;
    color: #4a4a4a;
    line-height: 1.5;
}

.hero-image-overlap {
    flex: 1.2;
    position: relative;
    transform: translateY(-40px);
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    object-fit: cover;
    background-color: #d4cfc4;
}

.hero-secondary-text {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 40px;
    background: white;
    border-left: 4px solid #7a6f5d;
    transform: translateX(100px);
}

.hero-secondary-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.cta-inline {
    display: inline-block;
    color: #7a6f5d;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #7a6f5d;
    transition: all 0.3s;
}

.cta-inline:hover {
    color: #5a4f3d;
    border-bottom-color: #5a4f3d;
}

.intro-offset {
    display: flex;
    gap: 80px;
    max-width: 1300px;
    margin: 120px auto;
    padding: 0 40px;
    align-items: flex-start;
}

.intro-left {
    flex: 1.2;
    transform: translateY(60px);
}

.intro-left h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.2;
}

.intro-left p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444;
}

.intro-right-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-card {
    background: white;
    padding: 35px;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #7a6f5d;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
}

.citation {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.85rem;
    color: #7a6f5d;
    text-decoration: none;
    border: 1px solid #7a6f5d;
    padding: 2px 8px;
    border-radius: 3px;
    transition: all 0.2s;
}

.citation:hover {
    background: #7a6f5d;
    color: white;
}

.problem-amplification {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    align-items: center;
}

.problem-visual {
    flex: 1;
    background-color: #e8e4dc;
}

.problem-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.problem-text-staggered {
    flex: 1.1;
    transform: translateX(-30px);
}

.problem-text-staggered h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.problem-text-staggered p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

.problem-insight {
    background: #f5f3ef;
    padding: 25px;
    border-left: 3px solid #7a6f5d;
    font-style: italic;
    margin: 30px 0;
}

.problem-cta {
    margin-top: 35px;
}

.cta-button {
    display: inline-block;
    background: #2c2c2c;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.services-preview {
    background: white;
    padding: 100px 40px;
}

.section-header-offset {
    max-width: 800px;
    margin: 0 0 60px 120px;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #7a6f5d;
    margin-bottom: 10px;
}

.section-header-offset h2 {
    font-size: 2.8rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.services-asymmetric-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background: #fafafa;
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.3s;
    flex: 1 1 calc(50% - 15px);
    display: flex;
    flex-direction: column;
}

.service-card.large-card {
    flex: 1 1 100%;
    flex-direction: row;
    transform: translateX(60px);
}

.service-card:nth-child(3) {
    transform: translateY(40px);
}

.service-card:nth-child(5) {
    transform: translateY(-20px);
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-image {
    background-color: #d4cfc4;
}

.service-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.large-card .service-image {
    flex: 1;
}

.large-card .service-image img {
    height: 100%;
    min-height: 400px;
}

.service-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.large-card .service-content {
    flex: 1.2;
    padding: 50px;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.service-content p {
    color: #555;
    line-height: 1.6;
    flex: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #7a6f5d;
    margin-top: 15px;
}

.select-service-btn {
    background: #2c2c2c;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

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

.testimonial-offset {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
}

.testimonial-block {
    flex: 1;
    background: white;
    padding: 40px;
    border-left: 4px solid #7a6f5d;
}

.testimonial-block:first-child {
    transform: translateY(40px);
}

.testimonial-block:last-child {
    transform: translateY(-40px);
}

.testimonial-block blockquote {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-block cite {
    font-size: 0.9rem;
    color: #666;
    font-style: normal;
}

.form-section {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    padding: 100px 40px;
}

.form-container-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    transform: rotate(-1deg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 1.1rem;
    color: #555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #2c2c2c;
    font-size: 0.95rem;
}

.form-group input {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 2px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #7a6f5d;
}

.service-display {
    background: #f5f3ef;
    padding: 15px;
    border-radius: 2px;
    color: #555;
    font-weight: 600;
}

.submit-btn {
    background: #7a6f5d;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.submit-btn:hover {
    background: #5a4f3d;
    transform: translateY(-2px);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #ccc;
    padding: 80px 40px 30px;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.footer-brand h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #999;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-left: 3px solid #7a6f5d;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bbb;
}

.footer-references {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    border-top: 1px solid #333;
}

.footer-references h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-references p {
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-references a {
    color: #7a6f5d;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-references a:hover {
    color: #a08f7a;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #777;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: white;
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 2000;
    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: 0.95rem;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: #7a6f5d;
    color: white;
}

.cookie-btn.accept:hover {
    background: #5a4f3d;
}

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

.cookie-btn.reject:hover {
    background: white;
    color: #2c2c2c;
}

@media (max-width: 768px) {
    #mainNav {
        top: 10px;
        right: 20px;
    }

    .hero-content-offset {
        flex-direction: column;
    }

    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .hero-secondary-text {
        transform: none;
    }

    .intro-offset {
        flex-direction: column;
        gap: 40px;
    }

    .intro-left {
        transform: none;
    }

    .problem-amplification {
        flex-direction: column;
    }

    .problem-text-staggered {
        transform: none;
    }

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

    .service-card,
    .service-card.large-card {
        flex: 1 1 100%;
        flex-direction: column;
        transform: none !important;
    }

    .testimonial-offset {
        flex-direction: column;
    }

    .testimonial-block {
        transform: none !important;
    }

    .form-container-asymmetric {
        padding: 30px;
        transform: none;
    }

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