* {
    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: #1a1a1a;
    background-color: #ffffff;
}

img {
    object-fit: cover;
}

.ad-disclosure {
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    padding: 8px 20px;
    font-size: 11px;
    z-index: 9999;
    font-style: italic;
}

.nav-floating {
    position: fixed;
    top: 50px;
    left: 30px;
    right: 30px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
}

.nav-brand {
    font-size: 26px;
    font-weight: 800;
    color: #ff6b35;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
    padding-top: 140px;
    background-color: #f5f5f0;
}

.hero-content-offset {
    position: absolute;
    left: 8%;
    top: 25%;
    z-index: 10;
    max-width: 580px;
}

.hero-title-large {
    font-size: 68px;
    font-weight: 900;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-text {
    font-size: 21px;
    line-height: 1.6;
    color: #4a4a4a;
}

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

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

.intro-irregular {
    padding: 160px 60px 140px;
    background-color: #ffffff;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.intro-block-left {
    flex: 1.2;
    padding-right: 40px;
}

.intro-block-left h2 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 30px;
}

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

.intro-stats-offset {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-top: 60px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 72px;
    font-weight: 900;
    color: #ff6b35;
    line-height: 1;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
}

.problem-amplification {
    padding: 100px 60px 120px 200px;
    background-color: #2a2a2a;
    position: relative;
    display: flex;
    gap: 60px;
    align-items: center;
}

.problem-image-layer {
    flex: 1;
    height: 500px;
    background-color: #444;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transform: translateY(-40px) rotate(-2deg);
}

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

.problem-content-overlay {
    flex: 1;
    color: #ffffff;
}

.problem-content-overlay h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.problem-content-overlay p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.citation {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.insight-section {
    padding: 140px 100px;
    background-color: #f9f9f6;
}

.insight-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.insight-title {
    font-size: 52px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 80px;
    color: #1a1a1a;
}

.insight-cards-asymmetric {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.insight-card {
    background-color: #ffffff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 300px;
}

.card-offset-1 {
    transform: translateY(-30px);
}

.card-offset-2 {
    transform: translateY(20px);
}

.card-offset-3 {
    transform: translateY(-15px);
}

.insight-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
}

.insight-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.trust-building-irregular {
    padding: 80px 60px 80px 150px;
    background-color: #ffffff;
}

.trust-content-split {
    display: flex;
    gap: 100px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.trust-left {
    flex: 1.2;
}

.trust-left h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.trust-left p {
    font-size: 19px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.trust-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trust-list li {
    font-size: 17px;
    color: #333;
    padding-left: 30px;
    position: relative;
}

.trust-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: 700;
    font-size: 20px;
}

.trust-right {
    flex: 0.8;
    height: 450px;
    background-color: #ddd;
    border-radius: 20px;
    overflow: hidden;
    transform: rotate(2deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.trust-right img {
    width: 100%;
    height: 100%;
}

.testimonials-scattered {
    padding: 120px 80px;
    background-color: #f5f5f0;
}

.testimonials-title {
    font-size: 50px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 100px;
    color: #1a1a1a;
}

.testimonials-grid-irregular {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    min-width: 320px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-pos-1 {
    transform: translateY(-25px);
}

.testimonial-pos-2 {
    transform: translateY(15px);
}

.testimonial-pos-3 {
    transform: translateY(-10px);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
    font-style: italic;
}

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

.benefits-reveal {
    padding: 100px 60px 100px 120px;
    background-color: #ffffff;
}

.benefits-layout-offset {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-image-block {
    flex: 0.9;
    height: 500px;
    background-color: #ddd;
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(30px) rotate(-3deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

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

.benefits-content-block {
    flex: 1.1;
}

.benefits-content-block h2 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.benefit-item {
    margin-bottom: 40px;
}

.benefit-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.products-asymmetric {
    padding: 140px 80px;
    background-color: #f9f9f6;
}

.products-title {
    font-size: 52px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 100px;
    color: #1a1a1a;
}

.products-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.product-offset-1 {
    transform: translateY(-20px);
}

.product-offset-2 {
    transform: translateY(30px);
}

.product-offset-3 {
    transform: translateY(-15px);
}

.product-offset-4 {
    transform: translateY(20px);
}

.product-card img {
    width: 100%;
    height: 250px;
    background-color: #ddd;
}

.product-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    padding: 30px 30px 15px;
}

.product-card > p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    padding: 0 30px 15px;
}

.product-composition {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    padding: 0 30px 20px;
}

.product-price {
    font-size: 36px;
    font-weight: 800;
    color: #ff6b35;
    padding: 0 30px 25px;
}

.btn-select-service {
    width: calc(100% - 60px);
    margin: 0 30px 30px;
    padding: 16px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #ff6b35;
    transform: scale(1.02);
}

.btn-select-service.selected {
    background-color: #2ecc71;
}

.form-section-offset {
    padding: 120px 60px 120px 150px;
    background-color: #ffffff;
}

.form-wrapper-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-intro {
    flex: 0.8;
}

.form-intro h2 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.contact-form-irregular {
    flex: 1.2;
    background-color: #f9f9f6;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-row-offset-1,
.form-row-offset-2,
.form-row-offset-3 {
    margin-bottom: 30px;
}

.contact-form-irregular label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.contact-form-irregular input {
    width: 100%;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form-irregular input:focus {
    outline: none;
    border-color: #ff6b35;
}

.contact-form-irregular input[readonly] {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

.btn-submit-form {
    width: 100%;
    padding: 18px;
    background-color: #ff6b35;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-form:hover {
    background-color: #e55a28;
    transform: scale(1.02);
}

.disclaimer-section {
    padding: 80px 60px;
    background-color: #fff8e1;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #856404;
    margin-bottom: 20px;
}

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #856404;
}

.references-section {
    padding: 80px 60px;
    background-color: #f5f5f0;
}

.references-section h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.references-list {
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 25px;
}

.references-list li {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.references-list a {
    color: #ff6b35;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

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

.footer-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

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

.footer-col-1 {
    flex: 1.5;
}

.footer-col h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

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

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

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

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

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

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

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 30px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    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;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #ff6b35;
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

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

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

.btn-cookie-accept {
    background-color: #2ecc71;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #27ae60;
}

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

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

.page-header {
    padding: 180px 60px 80px;
    background-color: #2a2a2a;
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 20px;
    color: #e0e0e0;
}

.page-content {
    padding: 100px 60px;
    background-color: #ffffff;
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
}

.content-container h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 50px;
    margin-bottom: 25px;
}

.content-container h3 {
    font-size: 26px;
    font-weight: 600;
    color: #333;
    margin-top: 35px;
    margin-bottom: 18px;
}

.content-container p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.content-container ul {
    margin-bottom: 25px;
    padding-left: 30px;
}

.content-container ul li {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.contact-info-box {
    background-color: #f9f9f6;
    padding: 50px;
    border-radius: 20px;
    margin: 50px 0;
}

.contact-info-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.contact-info-box p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 60px;
    background-color: #f9f9f6;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    font-size: 90px;
    color: #2ecc71;
    margin-bottom: 30px;
}

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

.thanks-container p {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.thanks-cta {
    display: inline-block;
    padding: 16px 45px;
    background-color: #ff6b35;
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.thanks-cta:hover {
    background-color: #e55a28;
    transform: scale(1.02);
}

@media (max-width: 1200px) {
    .nav-floating {
        left: 20px;
        right: 20px;
        padding: 15px 30px;
    }

    .hero-content-offset {
        left: 5%;
        max-width: 500px;
    }

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

    .intro-irregular,
    .trust-building-irregular,
    .benefits-reveal,
    .problem-amplification {
        flex-direction: column;
        padding-left: 60px;
        padding-right: 60px;
    }

    .form-wrapper-asymmetric {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 20px;
        border-radius: 20px;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .hero-content-offset {
        position: static;
        max-width: 100%;
    }

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

    .hero-image-overlap {
        position: static;
        width: 100%;
        height: 400px;
        transform: none;
        margin-top: 40px;
    }

    .intro-irregular,
    .products-asymmetric,
    .testimonials-scattered,
    .form-section-offset,
    .trust-building-irregular,
    .benefits-reveal,
    .problem-amplification,
    .insight-section,
    .disclaimer-section,
    .references-section,
    .footer-irregular,
    .page-content {
        padding: 60px 30px;
    }

    .products-grid-irregular,
    .testimonials-grid-irregular,
    .insight-cards-asymmetric {
        gap: 40px;
    }

    .product-offset-1,
    .product-offset-2,
    .product-offset-3,
    .product-offset-4,
    .testimonial-pos-1,
    .testimonial-pos-2,
    .testimonial-pos-3,
    .card-offset-1,
    .card-offset-2,
    .card-offset-3 {
        transform: none;
    }

    .footer-grid-asymmetric {
        gap: 50px;
    }
}