/* 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', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

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

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

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

.nav-right a {
    font-size: 0.95rem;
    color: #4a4a4a;
    font-weight: 500;
}

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

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

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: #0a0a0a;
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: #f8f8f8;
}

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #0a0a0a;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #2a2a2a;
    opacity: 1;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #0a0a0a;
    font-weight: 600;
    border: 2px solid #0a0a0a;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #0a0a0a;
    color: #ffffff;
    opacity: 1;
}

/* Split Content Sections */
.split-reverse {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

.split-image {
    flex: 1;
    background-color: #f5f5f5;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.split-content {
    flex: 1;
    padding: 4rem 8%;
}

.split-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.split-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

/* Insight Block */
.insight-block {
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 5rem 8%;
}

.insight-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.insight-wrapper h3 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.insight-wrapper p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #d4d4d4;
    margin-bottom: 1.5rem;
}

/* Services Grid */
.services-preview {
    padding: 5rem 8%;
    background-color: #fafafa;
}

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

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2.5rem;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

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

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

.service-card .price {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0a0a0a;
}

/* Trust Strip */
.trust-strip {
    background-color: #f0f0f0;
    padding: 4rem 8%;
}

.trust-content blockquote {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    color: #1a1a1a;
}

.trust-content cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    color: #6a6a6a;
}

/* Split Approach */
.split-approach {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

/* Capability List */
.capability-list {
    padding: 5rem 8%;
    background-color: #fafafa;
}

.capability-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.capability-wrapper h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

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

.tech-list li {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #4a4a4a;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.tech-list li:before {
    content: "→ ";
    color: #0a0a0a;
    font-weight: 700;
    margin-right: 0.5rem;
}

/* Testimonial Full */
.testimonial-full {
    background-color: #ffffff;
    padding: 5rem 8%;
}

.testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-wrapper p {
    font-size: 1.75rem;
    line-height: 1.5;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.testimonial-wrapper cite {
    display: block;
    font-size: 1rem;
    font-style: normal;
    color: #6a6a6a;
}

/* Form Section */
.form-section {
    padding: 6rem 8%;
    background-color: #fafafa;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.form-container > p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
}

.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;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    font-size: 1rem;
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    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: #0a0a0a;
}

.btn-submit {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: #0a0a0a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #2a2a2a;
}

/* Final CTA */
.final-cta {
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 5rem 8%;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #d4d4d4;
    padding: 4rem 8% 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.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: #a4a4a4;
}

.footer-col a {
    display: block;
    font-size: 0.95rem;
    color: #a4a4a4;
    margin-bottom: 0.75rem;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #7a7a7a;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

.btn-accept:hover {
    background-color: #e5e5e5;
}

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

.btn-reject:hover {
    background-color: #2a2a2a;
}

/* Page Hero */
.page-hero {
    padding: 5rem 8%;
    background-color: #fafafa;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.page-hero p {
    font-size: 1.25rem;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
}

/* Split Content Section */
.split-content-section {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

.split-reverse-section {
    display: flex;
    min-height: 70vh;
    align-items: center;
    flex-direction: row-reverse;
}

/* Approach Block */
.approach-block {
    padding: 5rem 8%;
    background-color: #ffffff;
}

.approach-content {
    max-width: 800px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.approach-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

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

.values-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.02em;
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
}

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

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
}

/* Team Approach */
.team-approach {
    padding: 5rem 8%;
    background-color: #ffffff;
}

.team-content {
    max-width: 800px;
    margin: 0 auto;
}

.team-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.team-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

/* CTA Split */
.cta-split {
    padding: 5rem 8%;
    background-color: #0a0a0a;
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.15rem;
    color: #d4d4d4;
    margin-bottom: 2rem;
}

/* Service Detail Sections */
.service-detail,
.service-detail-reverse {
    padding: 4rem 8%;
    background-color: #ffffff;
}

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

.service-detail-reverse {
    background-color: #fafafa;
}

.service-split {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-info {
    flex: 1;
}

.service-visual {
    flex: 1;
    min-height: 400px;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.service-info h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.service-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.pricing-block {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e5e5;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6a6a6a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #0a0a0a;
}

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

.cta-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-wrapper p {
    font-size: 1.15rem;
    color: #d4d4d4;
    margin-bottom: 2rem;
}

/* Contact Split */
.contact-split {
    display: flex;
    gap: 4rem;
    padding: 4rem 8%;
    align-items: center;
}

.contact-info {
    flex: 1;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
    border-radius: 4px;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

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

.contact-block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #0a0a0a;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.contact-block a {
    color: #0a0a0a;
    font-weight: 600;
}

/* Process Info */
.process-info {
    padding: 5rem 8%;
    background-color: #fafafa;
}

.process-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.process-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.02em;
}

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

.process-step {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #0a0a0a;
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0a0a0a;
}

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

/* FAQ Section */
.faq-section {
    padding: 5rem 8%;
    background-color: #ffffff;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

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

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

.faq-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0a0a0a;
}

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

/* Final CTA Contact */
.final-cta-contact {
    padding: 5rem 8%;
    background-color: #0a0a0a;
    color: #ffffff;
    text-align: center;
}

.final-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.final-wrapper p {
    font-size: 1.15rem;
}

.final-wrapper a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
}

/* Thanks Page */
.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 8%;
    background-color: #fafafa;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.thanks-content > p {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.thanks-service {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 4px;
}

.thanks-service p {
    font-size: 1.1rem;
    color: #4a4a4a;
}

.thanks-next {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 4px;
    text-align: left;
}

.thanks-next h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.thanks-next p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Legal Page */
.legal-page {
    padding: 4rem 8%;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.legal-updated {
    font-size: 0.95rem;
    color: #6a6a6a;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.legal-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.legal-container ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-container li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 0.75rem;
}

.legal-container a {
    color: #0a0a0a;
    font-weight: 600;
    text-decoration: underline;
}

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

.cookie-table thead {
    background-color: #f5f5f5;
}

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

.cookie-table th {
    font-weight: 700;
    color: #0a0a0a;
}

.cookie-table td {
    font-size: 0.95rem;
    color: #4a4a4a;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .hero-split,
    .split-reverse,
    .split-approach,
    .split-content-section,
    .split-reverse-section,
    .service-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-content,
    .split-content {
        padding: 3rem 5%;
    }

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

    .split-image img {
        min-height: 350px;
    }

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

    .split-content h2,
    .service-info h2 {
        font-size: 2rem;
    }

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

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

    .nav-right {
        gap: 1rem;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

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

    .contact-visual img {
        min-height: 350px;
    }

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

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

    .nav-left .brand {
        font-size: 1.25rem;
    }

    .nav-right {
        gap: 0.75rem;
    }

    .nav-right a {
        font-size: 0.85rem;
    }

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

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

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

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

    .insight-wrapper h3 {
        font-size: 1.5rem;
    }

    .trust-content blockquote {
        font-size: 1.25rem;
    }

    .testimonial-wrapper p {
        font-size: 1.35rem;
    }

    .values-grid,
    .process-steps {
        flex-direction: column;
    }

    .value-card,
    .process-step {
        flex: 1 1 100%;
    }
}
