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

html {
    scroll-behavior: smooth;
}

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 {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* 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: 1000;
}

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

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

.nav-right a {
    color: #4a4a4a;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-right a:hover {
    color: #1a1a1a;
}

/* 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.2rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

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

.hero-visual {
    flex: 1;
    position: relative;
}

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

/* Page Hero Split */
.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
    background: #f8f8f8;
}

.page-hero-split .hero-content {
    flex: 1;
    padding: 3rem 5% 3rem 8%;
}

.page-hero-split .hero-content h1 {
    font-size: 2.8rem;
}

.page-hero-split .hero-visual {
    flex: 1;
}

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

/* Split Sections */
.split-reverse,
.split-even {
    display: flex;
    min-height: 70vh;
}

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

.split-visual {
    flex: 1;
}

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

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

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

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

/* Container Styles */
.container-narrow {
    max-width: 780px;
    margin: 0 auto;
    padding: 5rem 5%;
}

.container-narrow h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

/* Trust Block */
.trust-block {
    background: #f8f8f8;
    padding: 5rem 0;
}

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

.testimonial-inline blockquote {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-inline p {
    font-size: 1.6rem;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-size: 1rem;
    font-style: normal;
    color: #b0b0b0;
}

/* Problem Amplify Section */
.problem-amplify {
    background: #f8f8f8;
    padding: 5rem 0;
}

.question-grid {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
}

.question-card {
    flex: 1;
}

.question-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

/* Value Reveal */
.value-reveal {
    padding: 5rem 0;
}

.value-list {
    list-style: disc;
    margin-left: 1.5rem;
    margin-top: 2rem;
}

.value-list li {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* Services Preview */
.services-preview {
    padding: 5rem 8%;
    background: #f8f8f8;
}

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

.services-split-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.service-split-card {
    display: flex;
    background: #ffffff;
    overflow: hidden;
}

.service-visual {
    flex: 1;
}

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

.service-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.price-indicator {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 1.5rem;
}

/* Urgency Section */
.urgency-soft {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0;
}

.urgency-soft h2 {
    color: #ffffff;
}

.urgency-soft p {
    color: #d0d0d0;
}

/* Form Section */
.form-section {
    padding: 5rem 8%;
}

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

.form-intro {
    flex: 1;
}

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

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

.form-container {
    flex: 1;
}

.quote-form {
    background: #f8f8f8;
    padding: 2.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    background: #ffffff;
    font-size: 1rem;
    font-family: inherit;
}

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

/* Buttons and CTAs */
.cta-primary,
.cta-secondary,
.cta-text {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

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

.cta-primary:hover {
    background: #333333;
}

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

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

.cta-text {
    padding: 0;
    color: #1a1a1a;
    text-decoration: underline;
}

.cta-text:hover {
    color: #4a4a4a;
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

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

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

.cta-sticky:hover {
    background: #333333;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.footer-col a {
    display: block;
    color: #d0d0d0;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

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

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

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

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

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

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #d0d0d0;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    font-family: inherit;
}

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

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

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

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

/* Services Detail Page */
.services-detail {
    padding: 3rem 0;
}

.service-full-split {
    display: flex;
    margin-bottom: 4rem;
}

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

.service-visual-large {
    flex: 1;
}

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

.service-info {
    flex: 1;
    padding: 4rem 6%;
    background: #f8f8f8;
}

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

.service-info h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-info ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-info li {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.pricing-detail {
    background: #ffffff;
    padding: 1.5rem;
    margin: 2rem 0;
}

.price-main {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.price-context {
    font-size: 0.95rem;
    color: #666666;
}

.pricing-notes {
    background: #f8f8f8;
    padding: 4rem 0;
}

/* Principles Section */
.principles-section {
    padding: 5rem 0;
}

.principles-grid {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
}

.principle-card {
    flex: 1;
    padding: 2rem;
    background: #f8f8f8;
}

.principle-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

/* Team Section */
.team-section {
    background: #f8f8f8;
    padding: 5rem 0;
}

/* Values Final */
.values-final {
    padding: 5rem 0;
}

/* Contact Page */
.contact-split {
    display: flex;
    min-height: 70vh;
}

.contact-info-block {
    flex: 1;
    padding: 4rem 6%;
    background: #f8f8f8;
}

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

.contact-method {
    margin-bottom: 3rem;
}

.contact-method h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

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

.contact-method a {
    color: #1a1a1a;
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    color: #888888;
    margin-top: 0.5rem;
}

.contact-visual-block {
    flex: 1;
}

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

.contact-cta {
    padding: 4rem 0;
}

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

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

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

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

.next-steps {
    text-align: left;
    margin: 3rem 0;
    background: #f8f8f8;
    padding: 2.5rem;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 3rem;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #1a1a1a;
    color: #ffffff;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.steps-list strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.steps-list p {
    font-size: 0.95rem;
    color: #666666;
    margin: 0;
}

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

/* Legal Pages */
.legal-page {
    padding: 4rem 5%;
}

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

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

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

.legal-page ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.legal-page a {
    color: #1a1a1a;
    text-decoration: underline;
}

.updated {
    font-size: 0.9rem;
    color: #888888;
    margin-bottom: 2rem;
}

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

    .split-content h2,
    .container-narrow h2 {
        font-size: 2rem;
    }

    .question-grid,
    .principles-grid,
    .footer-main {
        flex-direction: column;
    }
}

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

    .nav-right {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-split,
    .split-reverse,
    .split-even,
    .page-hero-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-visual img,
    .page-hero-split .hero-visual img {
        height: 50vh;
    }

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

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

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

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

    .service-split-card,
    .service-full-split,
    .form-split {
        flex-direction: column;
    }

    .testimonial-inline p {
        font-size: 1.2rem;
    }

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

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

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

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

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