/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #1d4ed8;
}

/* Navigation */
.nav-main {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.2rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.brand-logo:hover {
    color: #2563eb;
}

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

.nav-links a {
    color: #4b5563;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1a1a1a;
}

/* Editorial Story Layout - Centered Content Flow */
.content-flow {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Hero Section - Editorial Style */
.hero-editorial {
    margin-bottom: 4rem;
}

.hero-wrapper {
    margin-bottom: 2.5rem;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #475569;
    font-weight: 400;
}

.hero-image-block img {
    width: 100%;
    border-radius: 8px;
    margin-top: 2rem;
}

/* Text Sections */
.intro-story,
.trust-proof,
.problem-section,
.detail-section,
.methodology,
.philosophy,
.about-intro {
    margin-bottom: 3.5rem;
}

.text-column {
    max-width: 100%;
}

.text-column p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.text-column h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    line-height: 1.3;
}

.text-column h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.text-column ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.text-column ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

/* Alternating Content Grid */
.content-grid-alt {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.method-text,
.method-image {
    width: 100%;
}

.method-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.method-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.6;
}

.method-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.method-image img {
    border-radius: 8px;
}

/* CTA Inline */
.cta-inline {
    background: #f8fafc;
    padding: 2rem;
    border-left: 4px solid #2563eb;
    margin: 3rem 0;
    border-radius: 4px;
}

.cta-inline p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.link-cta {
    color: #2563eb;
    font-weight: 600;
    border-bottom: 2px solid #2563eb;
}

.link-cta:hover {
    color: #1d4ed8;
    border-color: #1d4ed8;
}

/* Services Cards */
.services-preview {
    margin: 4rem 0;
}

.services-preview h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-align: center;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 2rem;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

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

.services-link-wrap {
    text-align: center;
    margin-top: 2rem;
}

.link-arrow {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2563eb;
}

.link-arrow:hover {
    color: #1d4ed8;
}

/* Testimonial Block */
.testimonial-block {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: #f1f5f9;
    border-radius: 8px;
}

.testimonial {
    font-style: italic;
    text-align: center;
}

.testimonial p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.testimonial footer {
    font-style: normal;
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
}

/* Image Break */
.image-break {
    margin: 4rem 0;
}

.image-break img {
    width: 100%;
    border-radius: 8px;
}

/* CTA Visual Box */
.cta-visual {
    margin: 4rem 0;
}

.cta-box {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
}

.cta-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-submit {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
}

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

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

.btn-secondary {
    background: #ffffff;
    color: #2563eb;
    border: 2px solid #2563eb;
}

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

.btn-submit {
    background: #059669;
    color: #ffffff;
    width: 100%;
}

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

/* Report Preview */
.report-preview {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.report-item {
    padding: 1.5rem;
    background: #f8fafc;
    border-left: 3px solid #2563eb;
    border-radius: 4px;
}

.report-item strong {
    display: block;
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.report-item p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

/* Form Section */
.form-container {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: #f9fafb;
    border-radius: 8px;
}

.form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
}

.form-intro {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

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

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

.form-group textarea {
    resize: vertical;
}

/* Final CTA */
.final-cta {
    margin: 4rem 0;
    text-align: center;
    padding: 3rem 2rem;
    background: #f8fafc;
    border-radius: 8px;
}

.final-cta h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: #0f172a;
    color: #e2e8f0;
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e1;
}

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

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

.footer-col ul li a {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-content a {
    color: #60a5fa;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.btn-cookie-accept {
    background: #059669;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background: #047857;
}

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

.btn-cookie-reject:hover {
    border-color: #ffffff;
}

/* Services Detail Page */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.header-lead {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
}

.services-detail {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.service-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.price-large {
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
}

.service-body {
    padding: 2rem;
}

.service-body h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-body ul li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.service-body p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.featured-service {
    border: 2px solid #2563eb;
}

.service-cta {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: #f1f5f9;
    border-radius: 8px;
}

.service-cta h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-cta p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.process-info {
    margin: 4rem 0;
}

.process-info h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #0f172a;
}

.process-step p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
}

/* About Page */
.lab-image {
    margin: 3rem 0;
}

.lab-image img {
    width: 100%;
    border-radius: 8px;
}

.equipment-section {
    margin: 4rem 0;
}

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

.equipment-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.equipment-item {
    padding: 1.5rem;
    background: #f8fafc;
    border-left: 4px solid #2563eb;
    border-radius: 4px;
}

.equipment-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.8rem;
}

.equipment-item p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

.team-section {
    margin: 4rem 0;
}

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

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

.team-member {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.team-member p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.team-member p strong {
    color: #2563eb;
}

.contact-teaser {
    margin: 4rem 0;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: #ffffff;
    border-radius: 8px;
}

.contact-teaser h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-teaser p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Page */
.contact-info-section {
    margin: 3rem 0;
}

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

.contact-info-block {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 8px;
}

.contact-info-block h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

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

.contact-info-block a {
    color: #2563eb;
    font-weight: 600;
}

.info-note {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.contact-note {
    margin: 3rem 0;
    padding: 2rem;
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 4px;
}

.faq-section {
    margin: 4rem 0;
}

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

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.8rem;
}

.faq-item p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
}

.map-placeholder {
    margin: 3rem 0;
    padding: 3rem 2rem;
    background: #f1f5f9;
    border-radius: 8px;
    text-align: center;
}

.map-notice p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-page {
    text-align: center;
}

.thanks-hero {
    margin-bottom: 3rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #059669;
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.2rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.thanks-info-box {
    background: #f0fdf4;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border: 1px solid #86efac;
    text-align: left;
}

.thanks-info-box h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.thanks-steps {
    list-style: none;
    padding-left: 0;
}

.thanks-steps li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-confirm {
    margin: 2rem 0;
}

.service-selected {
    background: #dbeafe;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #93c5fd;
}

.service-selected h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.service-selected p {
    font-size: 1.1rem;
    color: #1e3a8a;
    margin: 0;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.thanks-additional {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 8px;
}

.thanks-additional h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.thanks-additional p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Legal Pages */
.legal-page .content-flow {
    max-width: 900px;
}

.legal-updated {
    font-size: 0.95rem;
    color: #64748b;
    font-style: italic;
}

.legal-content {
    margin-top: 2rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table thead {
    background: #f1f5f9;
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #1e293b;
    border-bottom: 2px solid #cbd5e1;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .content-grid-alt {
        flex-direction: row;
        gap: 3rem;
    }

    .method-text,
    .method-image {
        width: 50%;
    }

    .services-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .contact-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-info-block {
        flex: 1 1 calc(50% - 1rem);
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1 1 calc(50% - 1rem);
    }

    .team-grid {
        flex-direction: row;
    }

    .team-member {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .process-steps {
        flex-wrap: nowrap;
    }

    .process-step {
        flex: 1;
    }

    .contact-info-block {
        flex: 1 1 calc(33.333% - 1rem);
    }
}