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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    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;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #2563eb;
    color: #ffffff;
}

.btn-accept:hover {
    background: #1d4ed8;
}

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

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

.nav-floating {
    position: sticky;
    top: 20px;
    z-index: 1000;
    margin: 20px;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background: #f3f4f6;
    border-radius: 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.hero-offset {
    display: flex;
    min-height: 90vh;
    align-items: center;
    gap: 4rem;
    padding: 4rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
}

.hero-content-left {
    flex: 1;
    padding-left: 5%;
    padding-top: 8%;
}

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.hero-image-right {
    flex: 1;
    position: relative;
    margin-top: -5%;
}

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

.intro-asymmetric {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.intro-block-overlap {
    flex: 1.5;
    background: #f9fafb;
    padding: 3rem;
    border-radius: 20px;
    margin-top: -10%;
    position: relative;
    z-index: 10;
}

.intro-block-overlap h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-block-overlap p {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.8;
}

.intro-stats-offset {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 10%;
}

.stat-card {
    background: #2563eb;
    color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.story-section {
    display: flex;
    gap: 4rem;
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.story-image-left {
    flex: 1;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    margin-left: -5%;
}

.story-text-right {
    flex: 1.3;
    padding-right: 5%;
}

.story-text-right h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-text-right p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.problem-amplification {
    background: #111827;
    color: #ffffff;
    padding: 8rem 2rem;
    margin: 4rem 0;
}

.problem-content-centered {
    max-width: 1200px;
    margin: 0 auto;
}

.problem-content-centered h2 {
    font-size: 2.8rem;
    margin-bottom: 4rem;
    text-align: center;
    line-height: 1.2;
}

.problem-grid-irregular {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.problem-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid #2563eb;
}

.problem-item.offset-1 {
    margin-left: 0;
}

.problem-item.offset-2 {
    margin-left: 10%;
}

.problem-item.offset-3 {
    margin-left: 5%;
}

.problem-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.problem-item p {
    font-size: 1.05rem;
    color: #d1d5db;
    line-height: 1.7;
}

.insight-section-split {
    display: flex;
    gap: 5rem;
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.insight-left {
    flex: 1;
    padding-right: 3rem;
}

.insight-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.insight-left p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.insight-right {
    flex: 1;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    margin-right: -5%;
}

.trust-building {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-building h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.trust-description {
    font-size: 1.15rem;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.testimonials-inline {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial-card {
    background: #f9fafb;
    padding: 3rem;
    border-radius: 20px;
    border-left: 5px solid #2563eb;
    max-width: 700px;
}

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

.testimonial-card.offset-right {
    margin-left: auto;
    margin-right: 0;
}

.testimonial-text {
    font-size: 1.2rem;
    color: #1a1a1a;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.benefits-reveal {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-reveal h2 {
    font-size: 2.8rem;
    margin-bottom: 4rem;
    text-align: center;
    color: #1a1a1a;
}

.benefits-offset-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.benefit-block {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.benefit-block.offset-down {
    margin-left: 15%;
}

.benefit-block img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.benefit-block p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
}

.services-preview {
    background: #f9fafb;
    padding: 8rem 2rem;
    margin: 4rem 0;
}

.services-preview h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.services-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

.service-selection-form {
    max-width: 1400px;
    margin: 0 auto;
}

.form-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-option {
    cursor: pointer;
}

.service-option input[type="radio"] {
    display: none;
}

.service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
}

.service-option input[type="radio"]:checked + .service-card {
    border-color: #2563eb;
    background: #eff6ff;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
    display: block;
}

.form-fields-asymmetric {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 500;
    color: #1a1a1a;
}

.form-group input {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2563eb;
}

.btn-submit {
    padding: 1.25rem 3rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.final-cta-offset {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #ffffff;
    margin: 4rem 0 0 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-secondary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #ffffff;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.footer-asymmetric {
    background: #111827;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #9ca3af;
    line-height: 1.6;
}

.page-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #ffffff;
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-section h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: #1a1a1a;
}

.content-section h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
}

.content-section p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-section ul,
.content-section ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-section li {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.contact-info {
    background: #f9fafb;
    padding: 3rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-info p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-info strong {
    color: #1a1a1a;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-box {
    background: #f9fafb;
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.thanks-box h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.thanks-box p {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thanks-box .selected-service {
    background: #eff6ff;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #2563eb;
}

.thanks-box .selected-service strong {
    color: #2563eb;
}

.thanks-box a {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-box a:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .hero-content-left h1 {
        font-size: 2.5rem;
    }

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

    .story-section {
        flex-direction: column;
    }

    .insight-section-split {
        flex-direction: column;
    }

    .benefit-block {
        flex-direction: column;
    }

    .benefit-block.offset-down {
        margin-left: 0;
    }

    .benefit-block img {
        width: 100%;
        max-width: 500px;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-content-left h1 {
        font-size: 2rem;
    }

    .form-services-grid {
        grid-template-columns: 1fr;
    }
}
