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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background: #ffffff;
}

.ad-disclosure {
    background: #fed7d7;
    color: #742a2a;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
}

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

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: #2d3748;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-links a {
    color: #4a5568;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2d3748;
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    position: relative;
}

.hero-content-offset {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px 80px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-text-block {
    max-width: 580px;
    color: #ffffff;
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-image-asymmetric {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.hero-image-asymmetric img {
    width: 100%;
    height: 100%;
    display: block;
}

.problem-section {
    padding: 120px 80px;
    background: #f7fafc;
}

.problem-container {
    display: flex;
    gap: 70px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.problem-visual {
    flex: 0 0 420px;
    border-radius: 16px;
    overflow: hidden;
    transform: rotate(-3deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.problem-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    line-height: 1.3;
    color: #2d3748;
}

.problem-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.insight-offset {
    padding: 100px 80px 100px 200px;
    background: #2d3748;
    color: #ffffff;
}

.insight-wrapper {
    max-width: 800px;
}

.insight-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.insight-wrapper h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 24px;
}

.insight-wrapper p {
    font-size: 19px;
    line-height: 1.7;
    opacity: 0.9;
}

.services-asymmetric {
    padding: 120px 80px;
    background: #ffffff;
}

.services-header-offset {
    max-width: 650px;
    margin-bottom: 80px;
    margin-left: 120px;
}

.services-header-offset h2 {
    font-size: 44px;
    margin-bottom: 18px;
    color: #2d3748;
}

.services-header-offset p {
    font-size: 19px;
    color: #718096;
}

.services-grid-irregular {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-card-1 {
    margin-left: 0;
}

.service-card-2 {
    margin-left: 100px;
    flex-direction: row-reverse;
}

.service-card-3 {
    margin-left: 40px;
}

.service-card-4 {
    margin-left: 140px;
    flex-direction: row-reverse;
}

.service-card-5 {
    margin-left: 20px;
}

.service-image {
    flex: 0 0 450px;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

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

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2d3748;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 24px;
}

.cta-service {
    background: #667eea;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.cta-service:hover {
    background: #5a67d8;
    transform: translateY(-2px);
}

.testimonials-offset {
    padding: 120px 80px 120px 140px;
    background: #edf2f7;
}

.testimonials-wrapper h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #2d3748;
}

.testimonials-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1100px;
}

.testimonial-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.testimonial-card:nth-child(2) {
    margin-left: 80px;
}

.testimonial-card:nth-child(3) {
    margin-left: 160px;
}

.testimonial-text {
    font-size: 19px;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 20px;
    font-style: italic;
}

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

.form-section-offset {
    padding: 100px 80px 100px 200px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.form-container-asymmetric {
    max-width: 700px;
    background: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2d3748;
}

.form-intro p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.6;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.btn-submit {
    background: #667eea;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-submit:hover {
    background: #5a67d8;
    transform: translateY(-2px);
}

.btn-submit:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
    transform: none;
}

.trust-section {
    padding: 100px 80px;
    background: #2d3748;
    color: #ffffff;
    text-align: center;
}

.trust-content {
    max-width: 900px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    line-height: 1.4;
}

.trust-content p {
    font-size: 19px;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-asymmetric {
    background: #1a202c;
    color: #e2e8f0;
    padding: 80px 80px 40px;
}

.footer-main {
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col-wide {
    flex: 1;
    max-width: 500px;
}

.footer-col h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 600;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #cbd5e0;
}

.footer-col a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #ffffff;
}

.disclaimer-text {
    margin-top: 24px;
    font-size: 13px;
    line-height: 1.6;
    color: #a0aec0;
    font-style: italic;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
    color: #a0aec0;
    font-size: 14px;
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #90cdf4;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-cookie {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-accept {
    background: #48bb78;
    color: #ffffff;
}

.btn-accept:hover {
    background: #38a169;
    transform: translateY(-1px);
}

.btn-reject {
    background: #718096;
    color: #ffffff;
}

.btn-reject:hover {
    background: #4a5568;
    transform: translateY(-1px);
}

@media (max-width: 1200px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-image-asymmetric {
        flex: 0 0 400px;
    }

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

    .problem-visual {
        transform: rotate(0);
    }

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

    .service-image {
        flex: 0 0 300px;
    }

    .nav-floating {
        position: static;
        border-radius: 0;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .nav-links {
        flex-direction: row;
    }

    .testimonial-card:nth-child(2),
    .testimonial-card:nth-child(3) {
        margin-left: 0;
    }

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

@media (max-width: 768px) {
    .hero-content-offset {
        padding: 60px 30px;
    }

    .hero-text-block h1 {
        font-size: 36px;
    }

    .problem-section,
    .services-asymmetric,
    .testimonials-offset,
    .trust-section {
        padding: 60px 30px;
    }

    .insight-offset,
    .form-section-offset {
        padding: 60px 30px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}