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

.floating-nav {
    position: fixed;
    top: 30px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.nav-brand {
    font-weight: 600;
    font-size: 16px;
    color: #1a1a1a;
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    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: color 0.3s;
}

.nav-menu a:hover {
    color: #0066cc;
}

.hero-asymmetric {
    display: flex;
    min-height: 90vh;
    padding: 120px 20px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-offset-left {
    flex: 0 0 55%;
    display: flex;
    align-items: center;
    padding-right: 60px;
}

.hero-text-block h1 {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 30px;
    color: #0a0a0a;
}

.hero-lead {
    font-size: 22px;
    color: #4a4a4a;
    line-height: 1.5;
}

.hero-offset-right {
    flex: 0 0 45%;
    position: relative;
    margin-top: 80px;
}

.hero-offset-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.irregular-intro {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 20px;
    display: flex;
    gap: 80px;
}

.intro-fragment {
    flex: 1;
}

.intro-left {
    padding-top: 60px;
    font-size: 19px;
    line-height: 1.8;
    color: #2a2a2a;
}

.intro-right h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-right p {
    font-size: 18px;
    line-height: 1.7;
    color: #3a3a3a;
}

.overlap-section {
    background: #f8f8f8;
    padding: 120px 20px;
    margin: 120px 0;
}

.overlap-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: -80px;
    position: relative;
}

.overlap-image {
    flex: 0 0 48%;
    z-index: 1;
}

.overlap-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.overlap-text {
    flex: 0 0 52%;
    background: #ffffff;
    padding: 60px;
    margin-left: -80px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.overlap-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.overlap-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #3a3a3a;
}

.cta-inline {
    display: inline-block;
    margin-top: 20px;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 3px;
    transition: all 0.3s;
}

.cta-inline:hover {
    color: #0052a3;
    border-color: #0052a3;
}

.diagonal-break {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    padding: 100px 20px;
    position: relative;
    transform: skewY(-2deg);
    margin: 150px 0;
}

.diagonal-content {
    transform: skewY(2deg);
    max-width: 900px;
    margin: 0 auto;
}

.client-voice {
    font-size: 26px;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    font-weight: 300;
}

.client-voice cite {
    display: block;
    margin-top: 25px;
    font-size: 16px;
    font-style: normal;
    opacity: 0.9;
}

.stacked-insight {
    max-width: 1300px;
    margin: 120px auto;
    padding: 0 20px;
}

.insight-narrow {
    max-width: 700px;
    margin-bottom: 60px;
}

.insight-narrow h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.insight-narrow p {
    font-size: 19px;
    line-height: 1.7;
    color: #3a3a3a;
}

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

.insight-card {
    flex: 1;
    background: #f9f9f9;
    padding: 40px 35px;
    border-radius: 6px;
    border-left: 4px solid #0066cc;
}

.card-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.insight-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.insight-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

.side-by-side-contrast {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
}

.contrast-left,
.contrast-right {
    flex: 1;
    padding: 50px 40px;
    border-radius: 8px;
}

.contrast-left {
    background: #f5f5f5;
}

.contrast-right {
    background: #e8f4ff;
}

.contrast-left h3,
.contrast-right h3 {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 700;
}

.contrast-list {
    list-style: none;
}

.contrast-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
}

.contrast-list li:before {
    content: '×';
    position: absolute;
    left: 0;
    color: #999;
    font-size: 24px;
}

.contrast-list.highlight li:before {
    content: '✓';
    color: #0066cc;
    font-weight: 700;
}

.floating-cta-section {
    padding: 100px 20px;
}

.floating-cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: #0a0a0a;
    color: #ffffff;
    padding: 70px 60px;
    border-radius: 12px;
    text-align: center;
}

.floating-cta-box h3 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.floating-cta-box p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.btn-primary-large {
    display: inline-block;
    background: #0066cc;
    color: #ffffff;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
}

.btn-primary-large:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.offset-pricing {
    padding: 100px 20px;
    background: #fafafa;
}

.pricing-header-offset {
    max-width: 750px;
    margin: 0 0 70px 100px;
}

.pricing-header-offset h2 {
    font-size: 44px;
    margin-bottom: 18px;
    font-weight: 700;
}

.pricing-header-offset p {
    font-size: 20px;
    color: #4a4a4a;
}

.pricing-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 20px;
}

.pricing-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.pricing-card-featured {
    border: 2px solid #0066cc;
    transform: scale(1.02);
}

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

.service-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #5a5a5a;
    margin-bottom: 20px;
    min-height: 75px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-features li {
    padding: 10px 0 10px 25px;
    position: relative;
    font-size: 15px;
    line-height: 1.5;
}

.service-features li:before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #0066cc;
    font-size: 20px;
}

.btn-select {
    width: 100%;
    background: #0066cc;
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background: #0052a3;
    transform: translateY(-1px);
}

.btn-select.selected {
    background: #28a745;
}

.testimonial-break {
    max-width: 900px;
    margin: 120px auto;
    padding: 0 20px;
}

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

.testimonial-offset blockquote {
    font-size: 24px;
    line-height: 1.7;
    font-style: italic;
    color: #2a2a2a;
    border-left: 5px solid #0066cc;
    padding-left: 40px;
}

.testimonial-offset cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: #6a6a6a;
}

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

.form-container-irregular {
    max-width: 800px;
    margin: 0 auto 0 150px;
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

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

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

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

.form-row {
    display: flex;
    gap: 20px;
}

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

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

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

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

.form-group textarea {
    resize: vertical;
}

.form-submit {
    margin-top: 15px;
}

.btn-submit {
    width: 100%;
    background: #0066cc;
    color: #ffffff;
    border: none;
    padding: 18px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #0052a3;
    transform: translateY(-1px);
}

.final-trust {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.trust-elements {
    display: flex;
    gap: 50px;
}

.trust-item {
    flex: 1;
    padding: 35px;
    background: #f9f9f9;
    border-radius: 6px;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

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

.sticky-cta-button {
    display: block;
    background: #0066cc;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.35);
    transition: all 0.3s;
}

.sticky-cta-button:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.45);
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
}

.footer-column {
    flex: 1;
}

.footer-column h5 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
}

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

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

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2a2a2a;
    color: #ffffff;
    padding: 20px;
    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 {
    font-size: 15px;
    margin: 0;
}

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

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

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

.btn-accept {
    background: #0066cc;
    color: #ffffff;
}

.btn-accept:hover {
    background: #0052a3;
}

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

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

.thanks-state {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.thanks-content {
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #0066cc;
}

.thanks-content p {
    font-size: 20px;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.thanks-service {
    display: inline-block;
    background: #f0f8ff;
    padding: 15px 25px;
    border-radius: 6px;
    margin: 20px 0;
    font-weight: 600;
    color: #0066cc;
}

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

    .hero-offset-left,
    .hero-offset-right {
        flex: 1;
        padding-right: 0;
    }

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

    .hero-offset-right {
        margin-top: 40px;
    }

    .irregular-intro {
        flex-direction: column;
        gap: 40px;
    }

    .overlap-container {
        flex-direction: column;
        gap: 0;
    }

    .overlap-image,
    .overlap-text {
        flex: 1;
        margin: 0;
    }

    .overlap-text {
        margin-top: -60px;
    }

    .insight-cards {
        flex-direction: column;
    }

    .side-by-side-contrast {
        flex-direction: column;
        gap: 30px;
    }

    .pricing-grid-irregular {
        flex-direction: column;
    }

    .pricing-card {
        flex: 1;
    }

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

    .form-container-irregular {
        margin: 0 auto;
    }

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

    .testimonial-offset {
        margin-left: 0;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        border-radius: 12px;
        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-lead {
        font-size: 18px;
    }

    .insight-narrow h2 {
        font-size: 32px;
    }

    .pricing-header-offset h2 {
        font-size: 34px;
    }

    .form-intro h2 {
        font-size: 28px;
    }

    .form-container-irregular {
        padding: 40px 25px;
    }

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

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }

    .sticky-cta-button {
        width: 100%;
        text-align: center;
    }
}