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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    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;
    min-width: 250px;
}

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

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

.btn-accept, .btn-reject {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

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

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

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

.btn-reject:hover {
    background: #333;
}

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

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #000;
    transition: all 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 15px;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.6;
}

.hero-offset {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-visual {
    position: absolute;
    right: 0;
    top: 0;
    width: 65%;
    height: 100%;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 30%);
}

.hero-text-block {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 60px;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.7;
    color: #444;
}

.intro-asymmetric {
    display: flex;
    gap: 80px;
    padding: 120px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-left {
    flex: 0.4;
}

.eyebrow {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 20px;
}

.intro-left h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 400;
}

.intro-right {
    flex: 0.6;
    padding-top: 40px;
}

.intro-right p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

.story-block {
    background: #f8f8f8;
    padding: 100px 60px;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h3 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.3;
}

.story-content p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.story-image {
    width: 100%;
    margin: 40px 0;
    border-radius: 8px;
}

.cta-inline-block {
    text-align: center;
    padding: 80px 20px;
}

.cta-link-large {
    display: inline-block;
    font-size: 28px;
    color: #000;
    text-decoration: none;
    border-bottom: 3px solid #000;
    padding-bottom: 8px;
    transition: all 0.3s;
}

.cta-link-large:hover {
    border-bottom-color: #666;
    color: #666;
}

.problem-reveal {
    padding: 100px 60px;
    background: #1a1a1a;
    color: #fff;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

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

.problem-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 500;
}

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

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

.insight-quote {
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 32px;
    line-height: 1.5;
    font-style: italic;
    font-weight: 300;
    text-align: center;
}

.quote-attribution {
    text-align: center;
    font-size: 16px;
    color: #666;
}

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

.services-header {
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-label {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 15px;
}

.services-header h2 {
    font-size: 48px;
    font-weight: 400;
}

.service-asymmetric {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 100px;
    align-items: center;
}

.service-asymmetric.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 0.5;
}

.service-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-details {
    flex: 0.5;
}

.service-details h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 500;
}

.service-details p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-price {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-top: 20px;
}

.cta-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: none;
}

.cta-sticky.show {
    display: block;
}

.btn-sticky {
    display: block;
    background: #000;
    color: #fff;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.btn-sticky:hover {
    background: #333;
    transform: translateY(-2px);
}

.trust-section {
    padding: 100px 60px;
    background: #fff;
    text-align: center;
}

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

.trust-content h3 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 400;
}

.trust-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.trust-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.testimonial-blocks {
    padding: 80px 60px;
    background: #f5f5f5;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.testimonial-card p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-name {
    font-size: 14px;
    color: #666;
}

.urgency-block {
    padding: 60px;
    background: #000;
    text-align: center;
}

.urgency-text {
    font-size: 22px;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.form-section {
    padding: 120px 60px;
    background: #fff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 400;
}

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

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

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

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

.btn-submit:hover {
    background: #333;
}

.final-cta {
    padding: 100px 60px;
    background: #f8f8f8;
    text-align: center;
}

.final-cta h2 {
    font-size: 48px;
    margin-bottom: 40px;
    font-weight: 400;
}

.btn-final {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 20px 60px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    transition: all 0.3s;
}

.btn-final:hover {
    background: #333;
    transform: translateY(-2px);
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 60px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

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

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

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

.footer-links a:hover {
    color: #fff;
}

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

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

@media (max-width: 768px) {
    .nav-floating {
        top: 15px;
        padding: 15px 25px;
        width: 90%;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        background: #fff;
        flex-direction: column;
        width: 90%;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

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

    .hero-visual {
        width: 100%;
        opacity: 0.3;
    }

    .intro-asymmetric {
        flex-direction: column;
        gap: 40px;
        padding: 60px 30px;
    }

    .intro-left h2 {
        font-size: 32px;
    }

    .service-asymmetric,
    .service-asymmetric.reverse {
        flex-direction: column;
        margin-bottom: 60px;
    }

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

    .offset-card {
        transform: none;
    }

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

    .offset-testimonial {
        transform: none;
    }

    .cta-sticky {
        bottom: 15px;
        right: 15px;
    }

    .btn-sticky {
        padding: 15px 30px;
        font-size: 14px;
    }
}