* {
    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: #2c3e50;
    background: #fff;
}

.ad-disclosure {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

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

.nav-brand {
    font-weight: 700;
    font-size: 1.2rem;
    color: #d35400;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    min-height: 90vh;
    display: flex;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.hero-content-offset {
    width: 45%;
    padding: 120px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 450px;
}

.cta-primary {
    display: inline-block;
    background: #d35400;
    color: #fff;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #b54700;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(211, 84, 0, 0.3);
}

.hero-image-diagonal {
    position: absolute;
    right: -10%;
    top: 0;
    width: 60%;
    height: 100%;
    transform: skewX(-5deg);
    overflow: hidden;
    background-color: #f5e6d3;
}

.hero-image-diagonal img {
    width: 100%;
    height: 100%;
    transform: skewX(5deg) scale(1.2);
}

.story-hook {
    padding: 120px 20px;
    background: #fafafa;
}

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

.story-wrapper-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a1a1a;
    line-height: 1.3;
}

.story-wrapper-narrow p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #444;
}

.offset-visual-section {
    display: flex;
    align-items: center;
    padding: 100px 60px;
    gap: 80px;
}

.section-image-left {
    width: 50%;
    transform: translateX(-40px);
    background-color: #e8d5c4;
}

.section-image-left img {
    width: 100%;
    display: block;
}

.section-content-right {
    width: 50%;
    padding: 40px;
}

.section-content-right h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.section-content-right p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #555;
}

.problem-amplification {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    padding: 120px 20px;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

.problem-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.problem-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 45px 35px;
    border-radius: 12px;
    width: 350px;
    backdrop-filter: blur(10px);
}

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

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

.problem-card h4 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 20px;
}

.problem-card p {
    color: #ddd;
    font-size: 1.05rem;
}

.visual-break-section {
    position: relative;
    margin: 80px 0;
}

.fullwidth-image-container {
    position: relative;
    height: 70vh;
    background-color: #d4c5b0;
}

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

.overlay-text-block {
    position: absolute;
    bottom: 60px;
    left: 80px;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 60px;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.quote-large {
    font-size: 1.6rem;
    font-style: italic;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
}

.quote-author {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.insight-section {
    padding: 140px 60px;
    background: #fff;
}

.container-asymmetric {
    max-width: 1500px;
    margin: 0 auto;
}

.section-title-offset {
    font-size: 3.5rem;
    margin-bottom: 80px;
    margin-left: 120px;
    color: #1a1a1a;
}

.services-layout-staggered {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

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

.service-card.large-card {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.service-card.large-card .card-image-wrapper {
    width: 50%;
    background-color: #e8d5c4;
}

.service-card.large-card .card-content {
    width: 50%;
    padding: 50px;
}

.service-card.medium-card {
    width: calc(50% - 20px);
}

.service-card.medium-card.offset-right {
    transform: translateX(40px);
}

.service-card.medium-card.offset-left {
    transform: translateX(-40px);
}

.service-card.small-card {
    width: calc(33.333% - 27px);
}

.card-image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #f0e6d9;
}

.service-card.large-card .card-image-wrapper {
    height: auto;
}

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

.card-content {
    padding: 35px 30px;
}

.card-content h3 {
    font-size: 1.7rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.card-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin: 25px 0;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #444;
    font-size: 0.95rem;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d35400;
    font-weight: bold;
}

.price-reveal {
    font-size: 2.2rem;
    font-weight: 700;
    color: #d35400;
    margin: 25px 0;
}

.btn-select-service {
    background: #2c3e50;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-select-service:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.testimonials-inline {
    padding: 100px 20px;
    background: #fafafa;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-block {
    margin: 60px 0;
    padding: 40px 50px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.testimonial-block.offset-element {
    margin-left: 80px;
}

.testimonial-block.offset-element-reverse {
    margin-right: 80px;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 1.05rem;
    color: #666;
    font-weight: 600;
}

.trust-building {
    padding: 120px 60px;
    background: #fff;
}

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

.trust-content {
    width: 50%;
}

.trust-content h2 {
    font-size: 2.8rem;
    margin-bottom: 35px;
    color: #1a1a1a;
}

.trust-content p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 25px;
}

.trust-visual {
    width: 50%;
    background-color: #e8d5c4;
}

.trust-visual img {
    width: 100%;
    display: block;
}

.cta-section-embedded {
    padding: 100px 20px;
    background: linear-gradient(135deg, #d35400 0%, #b54700 100%);
}

.cta-box-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
    transform: translateX(-60px);
}

.cta-box-asymmetric h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 25px;
}

.cta-box-asymmetric p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-secondary {
    display: inline-block;
    background: #fff;
    color: #d35400;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.form-section {
    padding: 120px 20px;
    background: #fafafa;
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(40px);
}

.form-container-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background: #f5f5f5;
    color: #2c3e50;
    font-weight: 600;
}

.btn-submit {
    background: #d35400;
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 15px;
}

.btn-submit:hover {
    background: #b54700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 84, 0, 0.3);
}

.disclaimer-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
    text-align: center;
}

.footer-main {
    background: #1a1a1a;
    color: #ddd;
    padding: 80px 60px 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto 50px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-col p {
    color: #aaa;
    font-size: 0.95rem;
}

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

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

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    color: #ddd;
    font-size: 0.95rem;
    margin: 0;
}

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

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

.btn-cookie {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie.accept {
    background: #d35400;
    color: #fff;
}

.btn-cookie.accept:hover {
    background: #b54700;
}

.btn-cookie.reject {
    background: #555;
    color: #fff;
}

.btn-cookie.reject:hover {
    background: #444;
}

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

    .hero-content-offset {
        width: 100%;
        padding: 80px 40px;
    }

    .hero-image-diagonal {
        position: relative;
        width: 100%;
        height: 400px;
        transform: none;
    }

    .hero-image-diagonal img {
        transform: none;
    }

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

    .offset-visual-section {
        flex-direction: column;
        padding: 60px 30px;
    }

    .section-image-left,
    .section-content-right {
        width: 100%;
        transform: none;
    }

    .service-card.large-card {
        flex-direction: column;
    }

    .service-card.large-card .card-image-wrapper,
    .service-card.large-card .card-content {
        width: 100%;
    }

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

    .service-card.small-card {
        width: 100%;
    }

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

    .trust-content,
    .trust-visual {
        width: 100%;
    }

    .nav-floating {
        top: 20px;
        padding: 12px 25px;
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
    }

    .form-container-offset {
        transform: none;
    }

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