* {
    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;
    backdrop-filter: blur(10px);
}

.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: 1rem;
}

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

.cookie-actions {
    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);
}

.ad-disclosure {
    background: #f3f4f6;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #6b7280;
    border-bottom: 1px solid #e5e7eb;
}

.floating-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    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.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 3rem;
}

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

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

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

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

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 550px;
    padding: 4rem 2rem;
    margin-left: 5%;
    margin-top: 8%;
}

.hero-content-offset h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-hero {
    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-hero:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

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

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

.discovery-block {
    padding: 8rem 5%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    background: #f9fafb;
}

.discovery-text-wide {
    max-width: 800px;
    margin-left: 10%;
}

.discovery-text-wide h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.discovery-text-wide p {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.insight-card-offset {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-left: 15%;
    margin-right: 5%;
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.insight-card-offset img {
    width: 40%;
    border-radius: 12px;
    object-fit: cover;
    background: #e5e7eb;
}

.insight-content {
    flex: 1;
}

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

.insight-content p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
}

.scenario-visual {
    display: flex;
    align-items: center;
    padding: 6rem 5%;
    gap: 4rem;
}

.scenario-image-left {
    width: 45%;
    background: #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
}

.scenario-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scenario-text-right {
    flex: 1;
}

.scenario-text-right h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.scenario-text-right p {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.link-inline {
    display: inline-block;
    margin-top: 1.5rem;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.link-inline:hover {
    color: #1d4ed8;
    transform: translateX(5px);
}

.how-section-stacked {
    padding: 8rem 5%;
    background: #1a1a1a;
    color: #ffffff;
}

.section-title-center {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    font-weight: 700;
}

.how-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.how-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.how-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.card-large {
    flex: 1 1 100%;
}

.card-medium {
    flex: 1 1 calc(50% - 1rem);
}

.card-number {
    font-size: 3rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 1rem;
}

.how-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.how-card p {
    font-size: 1.1rem;
    color: #d1d5db;
    line-height: 1.7;
}

.trust-section-layered {
    padding: 8rem 5%;
    background: #f3f4f6;
}

.trust-content-narrow {
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: center;
}

.trust-content-narrow h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.trust-content-narrow p {
    font-size: 1.15rem;
    color: #6b7280;
    line-height: 1.8;
}

.testimonials-offset {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    min-width: 280px;
}

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

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

.benefits-reveal {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.benefits-reveal img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #1a1a1a;
}

.benefits-overlay {
    position: relative;
    z-index: 2;
    background: rgba(26, 26, 26, 0.85);
    padding: 5rem;
    margin: 4rem 10%;
    border-radius: 16px;
    color: #ffffff;
}

.benefits-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.benefits-list li {
    font-size: 1.15rem;
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.3rem;
}

.services-intro {
    padding: 8rem 5%;
}

.services-intro h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-text {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-card-offset-1 {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 300px;
}

.service-card-offset-2 {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
}

.service-card-offset-3 {
    flex: 1 1 calc(66.666% - 1.25rem);
    min-width: 300px;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: #e5e7eb;
}

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

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

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
    margin: 1rem 1.5rem;
}

.btn-select-service {
    margin: 1.5rem;
    padding: 1rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section {
    padding: 8rem 5%;
    background: #f9fafb;
}

.form-container-asymmetric {
    max-width: 800px;
    margin: 0 5% 0 10%;
    background: #ffffff;
    padding: 4rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-submit {
    padding: 1.25rem;
    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 10px 25px rgba(37, 99, 235, 0.3);
}

.service-selected-indicator {
    background: #dbeafe;
    color: #1d4ed8;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.science-section {
    padding: 6rem 5%;
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
}

.science-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.citation {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.citation:hover {
    color: #1d4ed8;
}

.disclaimer-inline {
    background: #fef3c7;
    padding: 1.5rem;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #78350f;
    line-height: 1.7;
    margin-top: 2rem;
}

.footer {
    background: #1a1a1a;
    color: #d1d5db;
    padding: 4rem 5%;
}

.footer-grid {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

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

.footer-col a:hover {
    color: #2563eb;
}

.footer-references {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.footer-references h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-references ol {
    padding-left: 1.5rem;
}

.footer-references li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-references a {
    color: #60a5fa;
    text-decoration: none;
}

.footer-references a:hover {
    color: #93c5fd;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 0.9rem;
}

.contact-page {
    padding: 10rem 5% 5rem;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-info {
    background: #f9fafb;
    padding: 3rem;
    border-radius: 16px;
    margin-bottom: 3rem;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.contact-detail strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.contact-detail p {
    color: #6b7280;
    font-size: 1.05rem;
}

.about-page {
    padding: 10rem 5% 5rem;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.services-page {
    padding: 10rem 5% 5rem;
}

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

.services-content h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
}

.legal-page {
    padding: 10rem 5% 5rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

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

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #4b5563;
}

.legal-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

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

.thanks-container {
    max-width: 600px;
    text-align: center;
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-container p {
    font-size: 1.15rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-reference {
    background: #dbeafe;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    color: #1d4ed8;
    margin-bottom: 2rem;
}

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

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

@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 6rem 1rem 2rem;
    }

    .hero-content-offset {
        margin: 0;
        padding: 2rem 1rem;
    }

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

    .hero-visual-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 400px;
        transform: none;
    }

    .scenario-visual {
        flex-direction: column;
    }

    .scenario-image-left {
        width: 100%;
    }

    .insight-card-offset {
        flex-direction: column;
        margin: 0;
    }

    .insight-card-offset img {
        width: 100%;
    }

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

    .card-medium {
        flex: 1 1 100%;
    }

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

    .testimonial-card {
        flex: 1 1 100%;
    }

    .benefits-overlay {
        margin: 2rem 5%;
        padding: 2rem;
    }

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

    .service-card-offset-1,
    .service-card-offset-2,
    .service-card-offset-3 {
        flex: 1 1 100%;
    }

    .form-container-asymmetric {
        margin: 0;
        padding: 2rem;
    }

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