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

:root {
    --primary: #1a365d;
    --secondary: #2d5a8c;
    --accent: #e85d04;
    --text-dark: #1a202c;
    --text-light: #4a5568;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border: #e2e8f0;
}

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);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 10000;
    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-content a {
    color: var(--accent);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background: #d04d00;
}

.btn-reject {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-reject:hover {
    background: var(--bg-white);
    color: var(--text-dark);
}

.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 3rem;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 90%;
}

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

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 600px;
    padding-left: 10%;
    z-index: 2;
}

.hero-title-large {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-visual-overlap {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 50%;
    height: 70%;
    z-index: 1;
}

.hero-visual-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: rotate(3deg);
}

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

.intro-narrow {
    flex: 1;
    max-width: 550px;
    padding-left: 5%;
}

.label-tag {
    display: inline-block;
    background: var(--bg-light);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

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

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

.intro-stats-scattered {
    flex: 1;
    position: relative;
    height: 400px;
}

.stat-card {
    position: absolute;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-1 {
    top: 0;
    left: 0;
    transform: rotate(-3deg);
}

.stat-2 {
    top: 30%;
    right: 10%;
    transform: rotate(4deg);
}

.stat-3 {
    bottom: 10%;
    left: 15%;
    transform: rotate(-2deg);
}

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

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

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

.section-header-offset {
    max-width: 600px;
    margin-left: 10%;
    margin-bottom: 4rem;
}

.section-header-offset h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header-offset p {
    font-size: 1.25rem;
    color: var(--text-light);
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

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

.service-large {
    flex: 1 1 calc(60% - 1rem);
    min-width: 400px;
}

.service-medium {
    flex: 1 1 calc(40% - 1rem);
    min-width: 350px;
}

.service-small {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 300px;
}

.service-visual {
    height: 250px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-visual img {
    transform: scale(1.1);
}

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

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

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex: 1;
}

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

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-select-service.selected {
    background: var(--accent);
}

.testimonial-scattered {
    padding: 8rem 2rem;
    background: var(--primary);
    color: var(--bg-white);
}

.testimonial-overlap {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    min-height: 400px;
}

.testimonial-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 450px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-1 {
    top: 0;
    left: 5%;
    transform: rotate(-2deg);
}

.testimonial-2 {
    top: 25%;
    right: 10%;
    transform: rotate(3deg);
}

.testimonial-3 {
    bottom: 0;
    left: 30%;
    transform: rotate(-1deg);
}

.testimonial-card p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 0.95rem;
    opacity: 0.9;
    font-style: normal;
}

.process-visual {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-visual h2 {
    font-size: 3rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 5rem;
}

.process-steps-offset {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    max-width: 700px;
}

.step-left {
    align-self: flex-start;
    margin-left: 5%;
}

.step-right {
    align-self: flex-end;
    margin-right: 5%;
    flex-direction: row-reverse;
    text-align: right;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--bg-light);
    line-height: 1;
}

.process-step h3 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.7;
}

.values-diagonal {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--bg-white);
    transform: skewY(-3deg);
    margin: 4rem 0;
}

.values-content {
    max-width: 1200px;
    margin: 0 auto;
    transform: skewY(3deg);
}

.values-content h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: center;
}

.values-list-staggered {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.value-item {
    max-width: 600px;
}

.value-item:nth-child(odd) {
    align-self: flex-start;
    margin-left: 10%;
}

.value-item:nth-child(even) {
    align-self: flex-end;
    margin-right: 10%;
}

.value-item h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.95;
}

.form-section-offset {
    padding: 8rem 2rem;
    background: var(--bg-light);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transform: rotate(-1deg);
}

.form-intro {
    margin-bottom: 3rem;
}

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

.form-intro p {
    color: var(--text-light);
    font-size: 1.125rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 6px;
    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(--accent);
}

.btn-submit {
    padding: 1.25rem;
    background: var(--accent);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.cta-sticky-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent);
    padding: 1.5rem;
    z-index: 900;
    display: none;
}

.cta-sticky-bottom.show {
    display: block;
}

.cta-sticky-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--bg-white);
    font-weight: 600;
    font-size: 1.125rem;
}

.btn-cta-inline {
    background: var(--bg-white);
    color: var(--accent);
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cta-inline:hover {
    background: var(--primary);
    color: var(--bg-white);
}

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

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

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

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

@media (max-width: 1024px) {
    .hero-title-large {
        font-size: 3rem;
    }

    .hero-visual-overlap {
        width: 60%;
        right: -10%;
    }

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

    .intro-stats-scattered {
        width: 100%;
        height: 500px;
    }

    .service-large,
    .service-medium {
        flex: 1 1 100%;
    }

    .testimonial-card {
        position: static;
        margin-bottom: 2rem;
        transform: none !important;
    }

    .testimonial-overlap {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        top: 1rem;
        padding: 1rem;
        gap: 1rem;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        display: none;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding-top: 6rem;
    }

    .hero-content-offset {
        padding-left: 0;
        text-align: center;
    }

    .hero-title-large {
        font-size: 2.5rem;
    }

    .hero-visual-overlap {
        position: static;
        width: 100%;
        height: 300px;
        margin-top: 2rem;
    }

    .hero-visual-overlap img {
        transform: none;
    }

    .section-header-offset {
        margin-left: 0;
    }

    .section-header-offset h2 {
        font-size: 2rem;
    }

    .service-small {
        flex: 1 1 100%;
    }

    .process-step {
        max-width: 100%;
    }

    .step-left,
    .step-right {
        margin-left: 0;
        margin-right: 0;
        flex-direction: column;
        text-align: left;
    }

    .value-item:nth-child(odd),
    .value-item:nth-child(even) {
        margin-left: 0;
        margin-right: 0;
    }

    .form-container {
        padding: 2rem;
        transform: none;
    }

    .cta-sticky-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title-large {
        font-size: 2rem;
    }

    .intro-narrow h2,
    .section-header-offset h2,
    .process-visual h2,
    .values-content h2 {
        font-size: 1.75rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}