/* 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.7;
    color: #1a1a1a;
    background: #ffffff;
    font-size: 16px;
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
}

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

a:hover {
    opacity: 0.7;
}

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

ul {
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
}

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

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

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

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

.btn-cookie:hover {
    background: #f0f0f0;
}

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

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

/* Navigation - Split Style */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    border-bottom: 1px solid #e0e0e0;
}

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

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

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

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

.hero-text {
    flex: 1;
    padding: 5rem 5% 5rem 8%;
    background: #f8f8f8;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-lead {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #444444;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-submit,
.btn-service {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

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

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

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

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

.btn-submit,
.btn-service {
    background: #1a1a1a;
    color: #ffffff;
    width: 100%;
}

.btn-submit:hover,
.btn-service:hover {
    background: #333333;
}

/* Alternating Sections */
.intro-alternate {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
}

.intro-image-left {
    flex: 1;
}

.intro-content-right {
    flex: 1.2;
}

.split-advantage {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
    background: #f8f8f8;
}

.advantage-text {
    flex: 1.2;
}

.advantage-visual {
    flex: 1;
}

.advantage-list {
    list-style: none;
    margin-left: 0;
}

.advantage-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.advantage-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-weight: bold;
}

.link-inline {
    font-weight: 600;
    text-decoration: underline;
}

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

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

.insight-container h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Services Overview */
.services-overview {
    padding: 6rem 5%;
    background: #ffffff;
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.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: 300px;
    background: #f8f8f8;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.service-card p {
    flex-grow: 1;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

/* Trust Section */
.trust-section {
    padding: 5rem 8%;
    background: #f8f8f8;
    text-align: center;
}

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

/* Method Explanation */
.method-explanation {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: center;
}

.method-split-left {
    flex: 1.2;
}

.method-split-right {
    flex: 1;
}

/* Testimonial */
.testimonial-inline {
    padding: 5rem 8%;
    background: #1a1a1a;
    color: #ffffff;
}

.testimonial-inline blockquote {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.3rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-inline cite {
    display: block;
    margin-top: 2rem;
    font-size: 1rem;
    font-style: normal;
    opacity: 0.8;
}

/* Form Section */
.cta-form-section {
    padding: 6rem 5%;
    background: #f8f8f8;
}

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

.form-container h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

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

.main-form input,
.main-form select,
.main-form textarea {
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #d0d0d0;
    background: #ffffff;
    font-family: inherit;
}

.main-form input:focus,
.main-form select:focus,
.main-form textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

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

.final-cta-content h2 {
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 5% 2rem;
}

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

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

.footer-col h4 {
    margin-bottom: 1.2rem;
}

.footer-col a {
    display: block;
    margin-bottom: 0.8rem;
    opacity: 0.8;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    opacity: 0.7;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.sticky-btn {
    background: #1a1a1a;
    color: #ffffff;
    padding: 1rem 2rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

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

.page-lead {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* About Page */
.about-split {
    padding: 5rem 5%;
}

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

.split-background {
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.split-bg-image {
    flex: 1;
    height: 100%;
}

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

.split-bg-text {
    flex: 1;
    padding: 5rem;
    background: #1a1a1a;
    color: #ffffff;
}

.philosophy-section {
    padding: 6rem 5%;
    background: #f8f8f8;
}

.philosophy-container {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.philosophy-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.phil-block {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
}

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

.approach-text-left {
    flex: 1.2;
}

.approach-image-right {
    flex: 1;
}

.who-we-work-with {
    padding: 6rem 5%;
    background: #ffffff;
}

.who-we-work-with h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.client-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: #f8f8f8;
    padding: 2.5rem;
}

.cta-about {
    padding: 5rem 8%;
    text-align: center;
    background: #1a1a1a;
    color: #ffffff;
}

.cta-about-content h2 {
    margin-bottom: 1.5rem;
}

.cta-about-content p {
    margin-bottom: 2rem;
}

.cta-about .btn-primary {
    background: #ffffff;
    color: #1a1a1a;
}

.cta-about .btn-primary:hover {
    background: #f0f0f0;
}

/* Services Page */
.services-detailed {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-card {
    margin-bottom: 3rem;
    background: #f8f8f8;
    padding: 3rem;
}

.service-detail-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #d0d0d0;
}

.service-detail-header h2 {
    margin-bottom: 0.5rem;
}

.service-detail-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.service-detail-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-description h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.services-faq {
    padding: 5rem 8%;
    background: #ffffff;
}

.services-faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    margin-bottom: 0.8rem;
}

.cta-services {
    padding: 5rem 8%;
    text-align: center;
    background: #f8f8f8;
}

.cta-services-content h2 {
    margin-bottom: 1.5rem;
}

.cta-services-content p {
    margin-bottom: 2rem;
}

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

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

.contact-info {
    flex: 1;
}

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

.contact-block h3 {
    margin-bottom: 0.8rem;
}

.contact-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #f8f8f8;
}

.contact-map-placeholder {
    flex: 1;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-approach {
    padding: 5rem 8%;
    background: #f8f8f8;
}

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

/* Thanks Page */
.thanks-hero {
    padding: 6rem 8%;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content h1 {
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.service-selected {
    font-weight: 600;
    color: #444444;
    margin-bottom: 2rem;
}

.thanks-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.thanks-next-steps {
    padding: 5rem 5%;
    background: #f8f8f8;
}

.next-steps-container {
    max-width: 1200px;
    margin: 0 auto;
}

.next-steps-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.step-item {
    flex: 1 1 calc(25% - 2rem);
    min-width: 200px;
    background: #ffffff;
    padding: 2rem;
}

.step-item h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

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

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

    .hero-text {
        padding: 4rem 5%;
    }

    .intro-alternate,
    .split-advantage,
    .method-explanation,
    .approach-detail,
    .contact-split {
        flex-direction: column;
    }

    .nav-right {
        gap: 1.5rem;
    }

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

    .phil-block,
    .client-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .hero-split {
        min-height: auto;
    }

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

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

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

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

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

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

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-text,
    .insight-block,
    .trust-section,
    .testimonial-inline,
    .page-hero,
    .legal-page {
        padding: 3rem 5%;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
    }
}