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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #666;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.nav-floating {
    position: fixed;
    top: 50px;
    right: 40px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 15px;
}

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

.nav-menu {
    list-style: none;
}

.nav-menu li {
    margin-bottom: 10px;
}

.nav-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2563eb;
}

.hero-asymmetric {
    display: flex;
    min-height: 100vh;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 580px;
    padding-top: 120px;
    padding-left: 40px;
}

.hero-title-large {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 45px;
}

.cta-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.hero-image-overlap {
    position: absolute;
    right: -100px;
    top: 15%;
    width: 700px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(3deg);
    background-color: #e9ecef;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
}

.intro-offset {
    display: flex;
    padding: 140px 60px;
    gap: 80px;
    background-color: #ffffff;
}

.intro-block-left {
    flex: 1;
    max-width: 600px;
    padding-right: 40px;
}

.intro-block-left h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.intro-block-left p {
    font-size: 19px;
    line-height: 1.8;
    color: #4a5568;
}

.intro-stats-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 60px;
}

.stat-card {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 40px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.story-section {
    background-color: #f8f9fa;
    padding: 120px 60px;
}

.story-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.story-lead {
    font-size: 24px;
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 500;
}

.story-narrow p {
    font-size: 19px;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 25px;
}

.services-asymmetric {
    padding: 140px 60px;
    background-color: #ffffff;
}

.section-title-offset {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 80px;
    margin-left: 80px;
    color: #1a1a1a;
}

.service-card-irregular {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
    padding: 0 40px;
}

.service-card-irregular.reverse {
    flex-direction: row-reverse;
    margin-left: 120px;
}

.service-card-irregular:nth-child(odd) {
    margin-left: 0;
}

.service-card-irregular:nth-child(even) {
    margin-right: 80px;
}

.service-image {
    flex: 1;
    min-width: 400px;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    background-color: #e9ecef;
    transform: rotate(-2deg);
}

.service-card-irregular.reverse .service-image {
    transform: rotate(2deg);
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-content {
    flex: 1;
    max-width: 500px;
}

.service-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 25px;
}

.service-price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.service-select {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select:hover {
    background-color: #2563eb;
    transform: translateX(5px);
}

.form-section-offset {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
    padding: 120px 60px;
    position: relative;
}

.form-container-creative {
    max-width: 600px;
    margin-left: 160px;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-container-creative h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-intro {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-submit:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.trust-section {
    background-color: #f8f9fa;
    padding: 140px 60px;
}

.trust-content-asymmetric h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 80px;
    text-align: center;
    color: #1a1a1a;
}

.testimonials-staggered {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-card.offset-1 {
    margin-left: 0;
}

.testimonial-card.offset-2 {
    margin-left: 120px;
}

.testimonial-card.offset-3 {
    margin-left: 60px;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #2563eb;
}

.cta-final-creative {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 120px 60px;
    position: relative;
    overflow: hidden;
}

.cta-content-overlap {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content-overlap h2 {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
}

.cta-content-overlap p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 45px;
}

.cta-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #2563eb;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 60px 40px;
}

.footer-main {
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
}

.footer-brand h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2563eb;
}

.footer-brand p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

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

.footer-col ul li a:hover {
    color: #2563eb;
}

.footer-disclaimer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 25px 40px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    font-size: 15px;
    color: #4a5568;
    flex: 1;
}

.cookie-content a {
    color: #2563eb;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #2563eb;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #1d4ed8;
}

.cookie-reject {
    background-color: #e0e0e0;
    color: #1a1a1a;
}

.cookie-reject:hover {
    background-color: #d1d1d1;
}

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px;
}

.thanks-content {
    max-width: 700px;
    background-color: #ffffff;
    padding: 80px 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    font-size: 80px;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.thanks-service {
    background-color: #f8f9fa;
    padding: 20px 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.thanks-service strong {
    color: #2563eb;
    font-size: 20px;
}

.btn-home {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

@media (max-width: 1024px) {
    .nav-floating {
        top: 20px;
        right: 20px;
        padding: 15px 20px;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 60px 30px;
    }

    .hero-content-offset {
        padding-left: 0;
        padding-top: 40px;
        max-width: 100%;
    }

    .hero-title-large {
        font-size: 48px;
    }

    .hero-image-overlap {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        height: 400px;
        transform: rotate(0);
        margin-top: 40px;
    }

    .intro-offset {
        flex-direction: column;
        padding: 80px 30px;
        gap: 40px;
    }

    .intro-block-left {
        padding-right: 0;
    }

    .intro-stats-right {
        padding-top: 0;
    }

    .story-section {
        padding: 80px 30px;
    }

    .services-asymmetric {
        padding: 80px 30px;
    }

    .section-title-offset {
        font-size: 40px;
        margin-left: 0;
    }

    .service-card-irregular {
        flex-direction: column;
        margin-left: 0 !important;
        margin-right: 0 !important;
        gap: 30px;
        padding: 0;
    }

    .service-card-irregular.reverse {
        flex-direction: column;
        margin-left: 0;
    }

    .service-image {
        min-width: 100%;
        transform: rotate(0) !important;
    }

    .form-section-offset {
        padding: 80px 30px;
    }

    .form-container-creative {
        margin-left: 0;
        padding: 40px 30px;
    }

    .trust-section {
        padding: 80px 30px;
    }

    .testimonial-card.offset-1,
    .testimonial-card.offset-2,
    .testimonial-card.offset-3 {
        margin-left: 0;
    }

    .cta-final-creative {
        padding: 80px 30px;
    }

    .footer-asymmetric {
        padding: 60px 30px 30px;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-accept,
    .cookie-reject {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        margin-top: 15px;
    }

    .nav-menu.active {
        display: block;
    }

    .hero-title-large {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}