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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #0f3460;
    --accent-color: #e94560;
    --text-color: #2d2d2d;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --light-gray: #e9ecef;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

.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-buttons {
    display: flex;
    gap: 1rem;
}

.nav-asymmetric {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

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

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

.hero-offset {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 600px;
    padding-right: 3rem;
    position: relative;
    z-index: 2;
}

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

.hero-lead {
    font-size: 1.3rem;
    color: var(--gray);
    line-height: 1.5;
}

.hero-visual-offset {
    flex: 1;
    position: relative;
    margin-left: -5%;
    margin-top: -5%;
}

.hero-visual-offset img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.intro-asymmetric {
    padding: 6rem 5%;
    display: flex;
    gap: 4rem;
    background: var(--light-bg);
}

.intro-left {
    flex: 1.5;
}

.intro-left h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.intro-left p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.intro-right-offset {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 1rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.insight-section {
    padding: 6rem 5%;
    background: var(--white);
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.insight-image-float {
    flex: 0 0 400px;
    margin-top: -4rem;
}

.insight-image-float img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    box-shadow: 20px 20px 0 var(--secondary-color);
}

.insight-content {
    flex: 1;
}

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

.insight-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.services-preview-stacked {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.section-title-offset {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
    margin-left: 10%;
}

.service-item-offset {
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    background: var(--white);
    padding: 2rem;
}

.service-item-offset.reverse {
    flex-direction: row-reverse;
    margin-left: auto;
    margin-right: 10%;
}

.service-visual {
    flex: 0 0 450px;
}

.service-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-details {
    flex: 1;
}

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

.service-details p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

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

.btn-select-service {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: var(--primary-color);
}

.trust-layer {
    padding: 5rem 5%;
    background: var(--secondary-color);
    color: var(--white);
}

.trust-content-asymmetric {
    max-width: 900px;
    margin-left: 15%;
}

.trust-content-asymmetric h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

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

.trust-list li {
    font-size: 1.2rem;
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.trust-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.testimonials-cards {
    padding: 6rem 5%;
    background: var(--white);
}

.testimonials-cards h2 {
    font-size: 3rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 4rem;
}

.testimonial-grid-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: var(--light-bg);
    padding: 2.5rem;
    border-left: 4px solid var(--accent-color);
}

.testimonial-card.offset-up {
    margin-top: -3rem;
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--gray);
}

.form-section-asymmetric {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.form-container-offset {
    max-width: 700px;
    margin-left: 20%;
    background: var(--white);
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-container-offset h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-intro {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--light-gray);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.closing-cta {
    padding: 8rem 5%;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-overlay-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-overlay-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--light-gray);
}

.btn-cta-large {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-cta-large:hover {
    background: #d63851;
}

.footer-asymmetric {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 5%;
}

.footer-main {
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: var(--light-gray);
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: var(--light-gray);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: var(--light-gray);
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #d63851;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 0.8rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

.content-page {
    padding: 8rem 5% 4rem 5%;
    min-height: 70vh;
}

.content-page h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.content-page h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-page p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-page ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.contact-info {
    background: var(--light-bg);
    padding: 2rem;
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info strong {
    color: var(--primary-color);
}

.thanks-page {
    padding: 10rem 5%;
    text-align: center;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thanks-page h1 {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.thanks-page p {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 1rem;
    max-width: 600px;
}

.thanks-page .btn-cta-large {
    margin-top: 2rem;
}

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

    .hero-text-block {
        padding-right: 0;
        margin-bottom: 2rem;
    }

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

    .hero-visual-offset {
        margin-left: 0;
        margin-top: 0;
    }

    .hero-visual-offset img {
        height: 400px;
        clip-path: none;
    }

    .intro-asymmetric {
        flex-direction: column;
        gap: 2rem;
    }

    .intro-right-offset {
        margin-top: 0;
    }

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

    .insight-image-float {
        flex: none;
        width: 100%;
        margin-top: 0;
    }

    .insight-image-float img {
        height: 400px;
        box-shadow: 10px 10px 0 var(--secondary-color);
    }

    .section-title-offset {
        margin-left: 0;
        font-size: 2rem;
    }

    .service-item-offset,
    .service-item-offset.reverse {
        flex-direction: column;
        margin-right: 0;
    }

    .service-visual {
        flex: none;
        width: 100%;
    }

    .trust-content-asymmetric {
        margin-left: 0;
    }

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

    .testimonial-card.offset-up {
        margin-top: 0;
    }

    .form-container-offset {
        margin-left: 0;
        padding: 2rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }
}
