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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
    font-size: 16px;
}

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

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

a:hover {
    color: #1e40af;
}

/* Navigation */
.nav-main {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

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

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

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

.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 {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

.btn-primary,
.btn-secondary {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #1e40af;
}

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

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

/* Hero Split Screen */
.hero-split {
    display: flex;
    min-height: 600px;
}

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

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background: #f9fafb;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

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

.hero-right {
    position: relative;
    overflow: hidden;
}

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

.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-hero:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37,99,235,0.2);
}

/* Split Sections */
.intro-split,
.process-split,
.about-split,
.about-experience,
.insight-split,
.service-split {
    display: flex;
}

.split-img,
.split-text {
    flex: 1;
}

.split-text {
    padding: 5rem 4rem;
    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.3;
    letter-spacing: -0.5px;
}

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

.split-img {
    position: relative;
    overflow: hidden;
}

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

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

.link-underline {
    color: #2563eb;
    font-weight: 600;
    border-bottom: 2px solid #2563eb;
    display: inline-block;
    transition: all 0.3s ease;
}

.link-underline:hover {
    color: #1e40af;
    border-bottom-color: #1e40af;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Value Grid */
.value-grid {
    padding: 6rem 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    letter-spacing: -0.5px;
}

.value-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: #f9fafb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* CTA Inline */
.cta-inline {
    background: #2563eb;
    padding: 3rem 2rem;
    text-align: center;
}

.cta-text {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffffff;
    color: #2563eb;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-cta:hover {
    background: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Services Overview */
.services-overview {
    padding: 6rem 0;
    background: #f9fafb;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

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

.service-content {
    padding: 2.5rem;
}

.service-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: #dbeafe;
    color: #1e40af;
    font-weight: 700;
    border-radius: 6px;
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: #ffffff;
}

.testimonial-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    background: #f9fafb;
    border-left: 4px solid #2563eb;
    border-radius: 8px;
}

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

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

/* Form Section */
.form-section {
    padding: 6rem 0;
    background: #ffffff;
}

.form-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    padding: 0 2rem;
}

.form-left,
.form-right {
    flex: 1;
}

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

.form-left p {
    font-size: 1.15rem;
    color: #6b7280;
    line-height: 1.8;
}

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

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

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

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

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

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

.btn-submit:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37,99,235,0.2);
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background: #1f2937;
    color: #ffffff;
    text-align: center;
}

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

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #d1d5db;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-final {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2563eb;
    color: #ffffff;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-final:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37,99,235,0.3);
}

/* Footer */
.footer {
    background: #111827;
    color: #d1d5db;
    padding: 4rem 0 2rem;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

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

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

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

.footer-col ul li a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 2rem 2rem 0;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
}

/* Page Header */
.page-header {
    padding: 5rem 0 3rem;
    background: #f9fafb;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.header-lead {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

/* About Values */
.about-values {
    padding: 6rem 0;
    background: #ffffff;
}

.values-split-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-block {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: #f9fafb;
    border-radius: 10px;
}

.value-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-block p {
    color: #6b7280;
    line-height: 1.7;
}

/* About Approach */
.about-approach {
    padding: 6rem 0;
    background: #f9fafb;
}

.approach-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-step {
    padding: 2rem;
    background: #ffffff;
    border-left: 4px solid #2563eb;
    border-radius: 8px;
}

.approach-step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.approach-step p {
    color: #6b7280;
    line-height: 1.7;
}

/* About CTA */
.about-cta {
    padding: 6rem 0;
    background: #2563eb;
    text-align: center;
    color: #ffffff;
}

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

.about-cta p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Detail */
.service-detail {
    padding: 4rem 0;
}

.service-detail:nth-child(even) {
    background: #f9fafb;
}

.service-content ul {
    list-style: none;
    margin: 2rem 0;
}

.service-includes {
    padding-left: 0;
}

.service-includes li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #4b5563;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-price-block {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: #dbeafe;
    border-radius: 8px;
    display: inline-block;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #1e40af;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.price-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #1e40af;
}

.price-unit {
    display: block;
    font-size: 0.95rem;
    color: #1e40af;
    margin-top: 0.3rem;
}

/* Services CTA */
.services-cta {
    padding: 5rem 0;
    background: #1f2937;
    text-align: center;
    color: #ffffff;
}

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

.services-cta p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #d1d5db;
}

/* FAQ */
.services-faq {
    padding: 6rem 0;
    background: #ffffff;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.7;
}

/* Contact Page */
.contact-main {
    padding: 5rem 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info,
.contact-message {
    flex: 1;
    min-width: 300px;
}

.contact-info h2,
.contact-message h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

.info-block p {
    color: #6b7280;
    line-height: 1.7;
}

.info-note {
    font-size: 0.95rem;
    margin-top: 0.8rem;
    color: #9ca3af;
}

.contact-benefits,
.contact-process {
    margin-top: 2.5rem;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
}

.contact-benefits h3,
.contact-process h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-benefits ul,
.contact-process ol {
    padding-left: 1.5rem;
    color: #6b7280;
}

.contact-benefits li,
.contact-process li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.contact-map-placeholder {
    padding: 5rem 0;
    background: #f9fafb;
    text-align: center;
}

.contact-map-placeholder h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-map-placeholder p {
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Thanks Page */
.thanks-section {
    padding: 6rem 0;
    text-align: center;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
}

.thanks-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.thanks-lead {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
}

.thanks-details {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-details p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

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

.next-steps {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 1rem;
    color: #6b7280;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.thanks-contact {
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.thanks-contact p {
    color: #6b7280;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
    background: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.legal-updated {
    color: #9ca3af;
    margin-bottom: 3rem;
    font-style: italic;
}

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

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #374151;
}

.legal-container p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-container ul,
.legal-container ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

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

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

.cookies-table th {
    background: #f9fafb;
    font-weight: 700;
    color: #1a1a1a;
}

.cookies-table td {
    color: #6b7280;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .process-split,
    .about-split,
    .about-experience,
    .insight-split,
    .service-split {
        flex-direction: column;
    }

    .reverse {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .split-text,
    .split-img {
        min-height: 400px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .split-text {
        padding: 3rem 2rem;
    }

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

    .nav-links {
        gap: 1.5rem;
    }

    .form-split {
        flex-direction: column;
        gap: 3rem;
    }

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

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

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .values-split-grid {
        flex-direction: column;
    }
}

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

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

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

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

    .split-text p {
        font-size: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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

    .contact-container {
        flex-direction: column;
        gap: 3rem;
    }

    .thanks-actions {
        flex-direction: column;
    }
}