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

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-position: inside;
}

/* Navigation - Split Style */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

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

.nav-right a {
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem 5%;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: #0f172a;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #475569;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    background: #f1f5f9;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

/* Split Sections */
.split-standard,
.split-reverse {
    display: flex;
    min-height: 600px;
}

.split-reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
    padding: 6rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.split-text p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #475569;
}

.split-visual {
    flex: 1;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

/* Centered Block Section */
.centered-block {
    padding: 5rem 5%;
    text-align: center;
    background: #f8fafc;
}

.centered-block h2 {
    font-size: 2.75rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.large-text {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #334155;
    max-width: 900px;
    margin: 0 auto;
}

/* Three Column Layout */
.three-col {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.col-item {
    flex: 1;
    text-align: left;
}

.col-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.col-item p {
    color: #64748b;
    line-height: 1.7;
}

/* Testimonial Block */
.testimonial-block {
    padding: 6rem 5%;
    background: #0f172a;
    color: #ffffff;
}

.testimonial-block blockquote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-block p {
    font-size: 1.75rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-block cite {
    font-size: 1rem;
    font-style: normal;
    color: #94a3b8;
}

/* Services Pricing Section */
.services-pricing {
    padding: 5rem 5%;
    background: #ffffff;
}

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

.services-intro {
    text-align: center;
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 4rem;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #f8fafc;
    padding: 2.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    transition: transform 0.3s, border-color 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #2563eb;
}

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

.service-card p {
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.select-service {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

/* Form Section */
.form-section {
    padding: 5rem 5%;
    background: #0f172a;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #1e293b;
    padding: 3rem;
    border-radius: 8px;
}

.form-container h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

#selected-service-display {
    color: #60a5fa;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    background: #334155;
    border: 1px solid #475569;
    border-radius: 6px;
    color: #ffffff;
    font-size: 1rem;
}

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 6px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #1d4ed8;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: #2563eb;
    font-weight: 600;
    font-size: 1.125rem;
    border: 2px solid #2563eb;
    border-radius: 6px;
    transition: all 0.3s;
}

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

/* CTA Block */
.cta-block {
    padding: 6rem 5%;
    background: #f1f5f9;
    text-align: center;
}

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

.cta-block p {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 2rem;
    background: #dc2626;
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 90;
    transition: transform 0.3s;
}

.sticky-cta:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 4rem 5% 2rem;
}

.footer-grid {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    line-height: 1.7;
}

.footer-col a {
    display: block;
    margin-bottom: 0.75rem;
    color: #94a3b8;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #60a5fa;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    padding: 1.5rem 5%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    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: 2rem;
}

.cookie-content p {
    color: #e2e8f0;
    flex: 1;
}

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

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.cookie-btn.reject {
    background: #64748b;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background: #475569;
}

/* Page Hero */
.page-hero {
    padding: 6rem 5% 4rem;
    text-align: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-hero p {
    font-size: 1.5rem;
    color: #cbd5e1;
}

/* Services Detail */
.services-detail {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 5%;
}

.service-detail-block {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.service-detail-block.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.service-detail-content h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-detail-content ul {
    margin-bottom: 2rem;
    color: #475569;
}

.service-detail-content ul li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Process Section */
.process-section {
    padding: 5rem 5%;
    background: #f8fafc;
}

.process-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

.process-steps {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    text-align: center;
}

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

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step p {
    color: #64748b;
    line-height: 1.6;
}

/* Contact Split */
.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 5%;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.contact-detail h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #2563eb;
}

.contact-detail p,
.contact-detail a {
    color: #475569;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

/* Info Section */
.info-section {
    padding: 5rem 5%;
    background: #f8fafc;
}

.info-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

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

.faq-item p {
    color: #64748b;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-hero {
    display: flex;
    min-height: 70vh;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 5%;
    gap: 4rem;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #0f172a;
}

.thanks-message {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2rem;
}

.service-confirmation {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
    margin-bottom: 2rem;
}

.selected-service-display {
    color: #1e40af;
    font-size: 1.125rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.thanks-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

/* Next Steps Section */
.next-steps {
    padding: 5rem 5%;
    background: #f8fafc;
}

.next-steps h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

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

.step-item {
    flex: 1;
    text-align: center;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #dbeafe;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 5rem 5%;
    background: #ffffff;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
}

/* Legal Page */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 5%;
}

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

.legal-intro {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #0f172a;
}

.legal-page h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-page p,
.legal-page ul,
.legal-page ol {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-page ul,
.legal-page ol {
    margin-left: 1.5rem;
}

.legal-page li {
    margin-bottom: 0.75rem;
}

.legal-page a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-date {
    margin-top: 4rem;
    font-style: italic;
    color: #94a3b8;
}

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e2e8f0;
}

.cookie-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #0f172a;
}

.cookie-table td {
    color: #475569;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .nav-right {
        gap: 1rem;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

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

    .hero-visual {
        min-height: 400px;
    }

    .split-standard,
    .split-reverse {
        flex-direction: column;
        min-height: auto;
    }

    .three-col {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    .service-detail-block,
    .service-detail-block.reverse {
        flex-direction: column;
    }

    .process-steps {
        flex-direction: column;
    }

    .contact-split {
        flex-direction: column;
    }

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

    .faq-item {
        flex: 1 1 100%;
    }

    .thanks-hero {
        flex-direction: column;
        min-height: auto;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 640px) {
    .nav-split {
        padding: 1rem 4%;
    }

    .nav-right {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-content {
        padding: 3rem 4%;
    }

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

    .hero-content p {
        font-size: 1.125rem;
    }

    .split-text {
        padding: 4rem 4%;
    }

    .split-text h2 {
        font-size: 2rem;
    }

    .centered-block h2 {
        font-size: 2rem;
    }

    .testimonial-block p {
        font-size: 1.25rem;
    }

    .services-pricing h2 {
        font-size: 2rem;
    }

    .form-container {
        padding: 2rem;
    }

    .cta-block h2 {
        font-size: 2rem;
    }

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

    .page-hero p {
        font-size: 1.125rem;
    }

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