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

:root {
    --primary-color: #2d4059;
    --secondary-color: #ea5455;
    --accent-color: #f07b3f;
    --text-dark: #1a1a1a;
    --text-light: #6b6b6b;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: #d96a30;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid white;
}

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

.ad-disclosure {
    background: var(--bg-light);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.header-asymmetric {
    position: sticky;
    top: 0;
    background: white;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.nav-floating {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    align-items: center;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-text-block {
    flex: 1;
    padding-left: 3rem;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-inline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: #d43f3f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(234,84,85,0.3);
}

.hero-image-block {
    flex: 1;
    position: relative;
    margin-top: -3rem;
}

.hero-image-block img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    object-fit: cover;
    background-color: var(--bg-light);
}

.intro-asymmetric {
    display: flex;
    gap: 3rem;
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.intro-narrow {
    flex: 1.5;
    padding-right: 2rem;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-narrow p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-side-element {
    flex: 1;
    margin-top: 4rem;
}

.intro-side-element img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
    background-color: var(--bg-light);
}

.problem-amplification {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2a3a 100%);
    padding: 5rem 2rem;
    margin: 4rem 0;
    position: relative;
}

.overlay-block {
    max-width: 900px;
    margin: 0 auto;
    color: white;
}

.overlay-block h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.scenario-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.scenario-list li {
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.7;
}

.scenario-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.insight-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.insight-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.insight-text {
    flex: 1;
    padding-right: 2rem;
}

.insight-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.insight-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.insight-visual {
    flex: 1;
}

.insight-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
    background-color: var(--bg-light);
}

.services-offset {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.services-header-side {
    max-width: 800px;
    margin: 0 0 4rem 5rem;
}

.services-header-side h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-header-side p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.services-cards-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    transition: transform 0.3s ease;
}

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

.card-offset-1 {
    margin-left: 2rem;
    flex-direction: row;
}

.card-offset-2 {
    margin-left: 10rem;
    flex-direction: row-reverse;
}

.card-offset-3 {
    margin-left: 5rem;
    flex-direction: row;
}

.card-offset-4 {
    margin-left: 12rem;
    flex-direction: row-reverse;
}

.card-offset-5 {
    margin-left: 7rem;
    flex-direction: row;
}

.service-card img {
    width: 45%;
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h4 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.select-service {
    padding: 0.9rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #1a2a3a;
    transform: translateX(5px);
}

.trust-building {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.trust-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.trust-statement {
    flex: 1;
    padding-right: 3rem;
}

.trust-statement h3 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.trust-statement p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.trust-visual-overlap {
    flex: 1;
    position: relative;
    margin-top: -5rem;
}

.trust-visual-overlap img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    object-fit: cover;
    background-color: var(--bg-light);
}

.testimonials-inline {
    background: var(--bg-light);
    padding: 5rem 2rem;
    display: flex;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-block {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.cta-section-asymmetric {
    padding: 5rem 2rem;
    background: linear-gradient(120deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

.cta-content-offset {
    max-width: 900px;
    margin: 0 auto 0 8rem;
    color: white;
}

.cta-content-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-content-offset p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.form-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

.form-container-asymmetric {
    max-width: 700px;
    margin: 0 auto 0 10rem;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-container-asymmetric h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit {
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #d43f3f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(234,84,85,0.3);
}

.disclaimer-section {
    padding: 3rem 2rem;
    background: #fffbf0;
    border-top: 1px solid #f0e5cc;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.footer-asymmetric {
    background: var(--primary-color);
    color: white;
    padding: 4rem 2rem 2rem;
}

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

.footer-brand h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    color: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
    .hero-offset {
        flex-direction: column;
        padding: 2rem 1rem;
    }

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

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

    .intro-asymmetric {
        flex-direction: column;
    }

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

    .service-card {
        flex-direction: column !important;
        margin-left: 0 !important;
    }

    .service-card img {
        width: 100%;
        height: 250px;
    }

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

    .testimonials-inline {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .form-container-asymmetric {
        margin: 0 auto;
    }

    .cta-content-offset {
        margin: 0 auto;
    }
}