* {
    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: #ffffff;
}

.ad-notice {
    background: #f5f5f5;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.nav-floating {
    position: sticky;
    top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    margin: 20px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 100;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 25px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

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

.btn-accept:hover {
    background: #229954;
}

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

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

.hero-asymmetric {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    overflow: hidden;
}

.hero-content-offset {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin-left: 8%;
}

.hero-content-offset h1 {
    font-size: 68px;
    line-height: 1.1;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.hero-lead {
    font-size: 22px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.5;
}

.cta-hero {
    display: inline-block;
    padding: 18px 40px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-hero:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

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

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

.intro-offset {
    display: flex;
    gap: 80px;
    padding: 120px 60px;
    align-items: center;
    background: #f9f9f9;
}

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

.intro-block-left h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-block-left p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.intro-image-right {
    flex: 1;
    background: #ddd;
    border-radius: 12px;
    overflow: hidden;
    height: 450px;
}

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

.problem-full {
    padding: 100px 60px;
    background: #ffffff;
}

.problem-container h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 70px;
    color: #1a1a1a;
}

.problem-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    flex: 1;
    background: #f5f5f5;
    padding: 40px;
    border-radius: 12px;
    transition: all 0.3s;
}

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

.problem-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.problem-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.insight-diagonal {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    padding: 100px 60px;
    transform: skewY(-2deg);
    margin: 80px 0;
}

.insight-content {
    max-width: 800px;
    margin: 0 auto;
    transform: skewY(2deg);
    color: #fff;
}

.insight-content h2 {
    font-size: 44px;
    margin-bottom: 30px;
}

.insight-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.95;
}

.link-inline {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.link-inline:hover {
    opacity: 0.8;
}

.services-preview {
    padding: 100px 60px;
    background: #fafafa;
}

.services-preview h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.services-asymmetric {
    display: flex;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto 50px;
    flex-wrap: wrap;
}

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

.service-card.large {
    flex: 2;
    min-width: 400px;
}

.service-card.medium {
    flex: 1.5;
    min-width: 350px;
}

.service-card.small {
    flex: 1;
    min-width: 300px;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    background: #e0e0e0;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.price {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #3498db;
}

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

.cta-center {
    text-align: center;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 35px;
    background: #2c3e50;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.testimonial-split {
    display: flex;
    min-height: 500px;
}

.testimonial-image {
    flex: 1;
    background: #ddd;
}

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

.testimonial-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: #f0f0f0;
}

blockquote {
    max-width: 500px;
}

blockquote p {
    font-size: 20px;
    font-style: italic;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
}

cite {
    font-size: 16px;
    color: #666;
    font-style: normal;
}

.method-stacked {
    padding: 100px 60px;
    background: #ffffff;
}

.method-header {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.method-header h2 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.method-header p {
    font-size: 18px;
    color: #666;
}

.form-offset {
    max-width: 600px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.trust-elements {
    padding: 80px 60px;
    background: #f5f5f5;
}

.trust-grid {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.trust-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 60px 30px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 60px;
}

.footer-brand h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #999;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

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

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-references {
    background: #252525;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.footer-references h4 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 16px;
}

.footer-references p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.5;
}

.footer-references a {
    color: #3498db;
    text-decoration: none;
}

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

.footer-disclaimer {
    background: #252525;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
}

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

@media (max-width: 1024px) {
    .hero-content-offset h1 {
        font-size: 48px;
    }

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

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

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

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

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

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

    .footer-main {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        margin: 10px;
        padding: 15px 20px;
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .hero-asymmetric {
        padding: 40px 20px;
    }

    .hero-content-offset {
        margin-left: 0;
    }

    .hero-content-offset h1 {
        font-size: 36px;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        width: 100%;
        margin-top: 40px;
    }
}