* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: #d4a574;
    color: #fff;
}

.btn-cookie:hover {
    background: #c29563;
}

.btn-cookie-alt {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.nav-floating {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 15px 0;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: 1px;
}

.nav-disclaimer {
    font-size: 11px;
    color: #666;
    font-style: italic;
    max-width: 200px;
}

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

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.hero-asymmetric {
    min-height: 85vh;
    padding: 80px 40px;
    background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 100%);
}

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

.hero-text-block {
    flex: 1;
    z-index: 2;
    padding-right: 40px;
}

.hero-text-block h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-text-block p {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
    max-width: 480px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #d4a574;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.cta-primary:hover {
    background: #c29563;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-top: -40px;
    background: #e8e5e0;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-narrative {
    padding: 100px 40px;
    background: #fff;
}

.narrative-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.narrative-sidebar {
    width: 380px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    background: #f5f3f0;
}

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

.narrative-main {
    flex: 1;
}

.narrative-main h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.narrative-main p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 24px;
}

.problem-amplification {
    padding: 100px 40px;
    background: #f8f6f3;
}

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

.problem-text-irregular {
    flex: 1.2;
}

.problem-text-irregular h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.2;
}

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

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: #555;
}

.problem-list li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-size: 24px;
    font-weight: 700;
}

.problem-image-stack {
    flex: 1;
    background: #e0ddd8;
}

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

.services-showcase {
    padding: 120px 40px;
    background: #fff;
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 60px;
    text-align: left;
    padding-left: 120px;
}

.services-header-offset h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.services-header-offset p {
    font-size: 20px;
    color: #666;
}

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

.service-card {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-large {
    width: calc(60% - 15px);
}

.service-medium {
    width: calc(50% - 15px);
}

.service-small {
    width: calc(40% - 15px);
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    background: #e8e5e0;
}

.service-info {
    padding: 32px;
}

.service-info h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.price {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px 28px;
    background: #2c2c2c;
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #d4a574;
}

.btn-select-service.selected {
    background: #d4a574;
}

.trust-building {
    padding: 100px 40px;
    background: #2c2c2c;
    color: #fff;
}

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

.trust-container h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #fff;
}

.trust-elements {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    flex: 1;
    min-width: 280px;
}

.trust-number {
    font-size: 64px;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 16px;
    opacity: 0.4;
}

.trust-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #ccc;
}

.testimonials-inline {
    padding: 100px 40px;
    background: #f8f6f3;
}

.testimonials-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-wrapper h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #d4a574;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 15px;
    color: #888;
    font-style: normal;
    font-weight: 600;
}

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

.form-container-asymmetric {
    max-width: 900px;
    margin: 0 auto;
}

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

.form-intro h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

.contact-form {
    background: #f8f6f3;
    padding: 50px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: #d4a574;
    color: #fff;
    border: none;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    padding: 60px 40px;
    background: #f0ede9;
}

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

.disclaimer-text {
    font-size: 13px;
    line-height: 1.7;
    color: #666;
    text-align: center;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: #999;
    margin-bottom: 8px;
}

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

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

.footer-column ul li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #d4a574;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #777;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: #f8f6f3;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.thanks-container h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.thanks-container .btn-home {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 36px;
    background: #d4a574;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-container .btn-home:hover {
    background: #c29563;
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

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

    .hero-text-block h1 {
        font-size: 38px;
    }

    .narrative-container {
        flex-direction: column;
    }

    .narrative-sidebar {
        width: 100%;
        position: static;
    }

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

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

    .service-large,
    .service-medium,
    .service-small {
        width: 100%;
    }

    .trust-elements {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

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