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

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --secondary: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border: #e5e7eb;
    --accent: #f59e0b;
}

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(--text-dark);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.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;
    margin: 0;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

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

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

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

.btn-cookie-accept:hover {
    background: var(--primary-dark);
}

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

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

.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;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 90%;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-menu a:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

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

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

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

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

.hero-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-hero:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,99,235,0.3);
}

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-top: -5rem;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transform: rotate(-3deg);
}

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

.intro-overlap-left {
    flex: 1.5;
    transform: translateX(-2rem);
}

.intro-overlap-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.intro-stat-right {
    flex: 1;
    transform: translateY(-3rem);
}

.stat-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.5;
}

.problem-amplification {
    padding: 6rem 5%;
}

.problem-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.problem-card.offset-up {
    transform: translateY(-2rem);
}

.problem-card.offset-down {
    transform: translateY(2rem);
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.trust-insight {
    padding: 6rem 5%;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.insight-content-left {
    flex: 1;
}

.insight-content-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.insight-image-right {
    flex: 1;
}

.insight-image-right img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

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

.services-header-offset {
    max-width: 700px;
    margin-bottom: 4rem;
    transform: translateX(3rem);
}

.services-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

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

.services-asymmetric-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 300px;
    max-width: calc(50% - 1rem);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s;
}

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

.service-card.large-card {
    max-width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.service-card.wide-card {
    max-width: 100%;
}

.service-card.offset-right {
    transform: translateX(2rem);
}

.service-card.offset-left {
    transform: translateX(-2rem);
}

.service-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.large-card p {
    color: rgba(255,255,255,0.9);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.service-features span {
    font-size: 0.95rem;
    color: var(--text-light);
}

.large-card .service-features span {
    color: rgba(255,255,255,0.9);
}

.service-price {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.large-card .price-amount {
    color: white;
}

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

.large-card .price-label {
    color: rgba(255,255,255,0.8);
}

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

.large-card .btn-service {
    background: white;
    color: var(--primary);
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,99,235,0.3);
}

.testimonial-scattered {
    padding: 6rem 5%;
    position: relative;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.08);
    max-width: 400px;
    position: relative;
    margin-bottom: 2rem;
}

.testimonial-card.pos-left {
    margin-left: 0;
    transform: rotate(-2deg);
}

.testimonial-card.pos-center {
    margin-left: auto;
    margin-right: auto;
    transform: translateY(-3rem);
}

.testimonial-card.pos-right {
    margin-left: auto;
    margin-right: 0;
    transform: rotate(2deg) translateY(-2rem);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.testimonial-author {
    display: block;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

.how-it-works-offset {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.how-it-works-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
}

.steps-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.step-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 250px;
    max-width: 280px;
}

.step-card.step-1 {
    transform: translateY(-1rem);
}

.step-card.step-2 {
    transform: translateY(1rem);
}

.step-card.step-3 {
    transform: translateY(-0.5rem);
}

.step-card.step-4 {
    transform: translateY(0.5rem);
}

.step-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    opacity: 0.3;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.cta-sticky-section {
    position: relative;
    height: 100px;
}

.cta-sticky {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(37,99,235,0.3);
    z-index: 999;
    display: none;
}

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

.cta-sticky-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cta-sticky-text {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-sticky {
    padding: 0.75rem 1.75rem;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-sticky:hover {
    transform: scale(1.05);
}

.benefits-reveal {
    padding: 6rem 5%;
}

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

.benefits-grid-offset {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-item {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
}

.benefit-item.offset-benefit {
    transform: translateY(-2rem);
}

.benefit-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.benefit-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.urgency-section {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.urgency-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.urgency-box h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.urgency-box p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-urgency {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #dc2626;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-urgency:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

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

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

.form-container-offset h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.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: 0.875rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    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(--primary);
}

.form-group-checkbox {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.form-group-checkbox input {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
}

.form-group-checkbox label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-group-checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

.btn-submit {
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,99,235,0.3);
}

.final-trust {
    padding: 4rem 5%;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.badge {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    min-width: 200px;
}

.badge h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.badge p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 5% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

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

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        padding-top: 10rem;
    }

    .hero-image-offset {
        margin-top: 2rem;
    }

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

    .intro-overlap-left {
        transform: none;
    }

    .intro-stat-right {
        transform: none;
    }

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

    .services-header-offset {
        transform: none;
    }

    .service-card {
        max-width: 100%;
        transform: none !important;
    }

    .service-card.offset-right,
    .service-card.offset-left {
        transform: none;
    }
}

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

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        border-radius: 0 0 20px 20px;
        transition: left 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-lead {
        font-size: 1.1rem;
    }

    .intro-overlap-left h2,
    .services-header-offset h2,
    .how-it-works-offset h2,
    .benefits-content h2 {
        font-size: 2rem;
    }

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

    .problem-card.offset-up,
    .problem-card.offset-down {
        transform: none;
    }

    .testimonial-card.pos-left,
    .testimonial-card.pos-center,
    .testimonial-card.pos-right {
        transform: none;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

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

    .step-card {
        max-width: 100%;
        transform: none !important;
    }

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

    .benefits-grid-offset {
        flex-direction: column;
    }

    .benefit-item.offset-benefit {
        transform: none;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
