/* 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.7;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

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

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

a:hover {
    opacity: 0.7;
}

/* 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;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s 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 - Minimal Style */
.nav-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

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

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

/* Hero Section - Spacious */
.hero-space {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
}

.hero-content-center {
    max-width: 900px;
    text-align: center;
}

.hero-title-large {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

.hero-subtitle-space {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.cta-hero {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: #333;
    transform: translateY(-2px);
    opacity: 1;
}

/* Section - Narrow Story */
.section-narrow-story {
    padding: 8rem 2rem;
    background: #ffffff;
}

.story-block {
    max-width: 680px;
    margin: 0 auto;
}

.story-lead {
    font-size: 1.5rem;
    line-height: 1.5;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
}

.heading-story {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

/* Image Full Overlap */
.image-full-overlap {
    padding: 6rem 0;
    background: #fafafa;
}

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

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

/* Section Offset Content */
.section-offset-content {
    padding: 8rem 2rem;
    background: #ffffff;
}

.offset-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

.offset-text {
    max-width: 600px;
    padding-left: 3rem;
}

.heading-accent {
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.text-medium {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.5rem;
}

/* Quote Massive */
.quote-massive {
    padding: 10rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

.quote-large {
    max-width: 900px;
    margin: 0 auto;
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.02em;
    font-style: normal;
    text-align: center;
}

.quote-large cite {
    display: block;
    font-size: 1rem;
    margin-top: 3rem;
    font-style: normal;
    opacity: 0.7;
}

/* Insight Split */
.section-insight-split {
    padding: 8rem 2rem;
    background: #fafafa;
}

.insight-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
}

.insight-item {
    text-align: center;
    max-width: 300px;
}

.insight-number {
    font-size: 4rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.insight-desc {
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
}

/* Testimonial Floating */
.testimonial-floating {
    padding: 6rem 2rem;
    background: #ffffff;
}

.testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    border-left: 3px solid #1a1a1a;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 300;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

/* CTA Block Inline */
.cta-block-inline {
    padding: 6rem 2rem;
    background: #f5f5f5;
}

.cta-inline-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-inline-heading {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.cta-inline-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.cta-inline-button:hover {
    background: #333;
    transform: translateY(-2px);
    opacity: 1;
}

/* Benefits Stacked */
.section-benefits-stacked {
    padding: 8rem 2rem;
    background: #ffffff;
}

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

.heading-benefits {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.benefit-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 3.5rem;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 2rem;
    font-weight: 300;
    color: #ccc;
    min-width: 60px;
}

.benefit-content h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.benefit-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

/* Image Text Overlap */
.section-image-text-overlap {
    padding: 8rem 2rem;
    background: #fafafa;
}

.overlap-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.overlap-image {
    flex: 1;
}

.overlap-image img {
    width: 100%;
    height: auto;
}

.overlap-text-box {
    flex: 1;
    padding: 3rem;
    background: #ffffff;
    border-left: 4px solid #1a1a1a;
}

.overlap-text-box h3 {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.overlap-text-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

/* Services Section */
.section-services-reveal {
    padding: 8rem 2rem;
    background: #ffffff;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 5rem;
    text-align: center;
}

.heading-services {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.services-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

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

.service-card {
    background: #fafafa;
    padding: 3rem;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.service-card.featured .service-title,
.service-card.featured .service-description,
.service-card.featured .service-price {
    color: #ffffff;
}

.service-card.featured .service-features li {
    color: #ddd;
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ffffff;
    color: #1a1a1a;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
}

.service-price {
    font-size: 2rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.service-select {
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card.featured .service-select {
    background: #ffffff;
    color: #1a1a1a;
}

.service-select:hover {
    background: #333;
    transform: translateY(-2px);
}

.service-card.featured .service-select:hover {
    background: #f0f0f0;
}

/* Form Section */
.form-section-embedded {
    padding: 8rem 2rem;
    background: #fafafa;
}

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

.form-heading {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.form-intro {
    font-size: 1.1rem;
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.main-form {
    background: #ffffff;
    padding: 3rem;
    border: 1px solid #eee;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.7rem;
    color: #1a1a1a;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    background: #fafafa;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

.form-submit {
    width: 100%;
    padding: 1.2rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Urgency Block */
.urgency-block {
    padding: 3rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.urgency-text {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.urgency-indicator {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Final CTA Minimal */
.final-cta-minimal {
    padding: 10rem 2rem;
    background: #fafafa;
    text-align: center;
}

.final-heading {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 3rem;
    letter-spacing: -0.03em;
}

.cta-final {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.cta-final:hover {
    background: #333;
    transform: translateY(-2px);
    opacity: 1;
}

/* Footer */
.footer-clean {
    padding: 5rem 2rem 3rem;
    background: #1a1a1a;
    color: #ffffff;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.95rem;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.8;
}

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

.footer-copy {
    font-size: 0.85rem;
    opacity: 0.6;
}

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

.sticky-cta.show {
    display: block;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #333;
    transform: translateY(-2px);
    opacity: 1;
}

/* Page Hero Simple */
.page-hero-simple {
    padding: 12rem 2rem 6rem;
    background: #fafafa;
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

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

.contact-heading {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

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

.contact-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
    color: #999;
}

.contact-detail {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1a1a1a;
}

.contact-detail a {
    color: #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.contact-map {
    flex: 1;
    min-width: 300px;
}

.map-placeholder {
    background: #fafafa;
    padding: 3rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
}

.map-placeholder p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

/* Thanks Section */
.thanks-section {
    padding: 12rem 2rem 6rem;
    background: #fafafa;
    text-align: center;
}

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

.thanks-icon {
    font-size: 5rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.thanks-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.thanks-service {
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 3rem;
}

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

.btn-thanks-primary,
.btn-thanks-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.btn-thanks-primary:hover {
    background: #333;
    transform: translateY(-2px);
    opacity: 1;
}

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

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

/* Thanks Next Steps */
.thanks-next-steps {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.next-steps-title {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.steps-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step-item {
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 300;
    color: #ccc;
    margin-bottom: 1rem;
}

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

.step-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* Legal Content */
.legal-content {
    padding: 4rem 2rem 6rem;
    background: #ffffff;
}

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

.legal-container h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

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

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

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

.legal-container a {
    color: #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

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

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

.cookies-table th {
    font-weight: 600;
    background: #fafafa;
}

.cookies-table td {
    font-size: 0.95rem;
    color: #555;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-minimal {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .hero-title-large {
        font-size: 2.5rem;
    }

    .hero-subtitle-space {
        font-size: 1.1rem;
    }

    .hero-space {
        padding: 6rem 1.5rem 3rem;
    }

    .section-narrow-story,
    .section-offset-content,
    .section-benefits-stacked,
    .section-services-reveal {
        padding: 4rem 1.5rem;
    }

    .quote-massive {
        padding: 5rem 1.5rem;
    }

    .quote-large {
        font-size: 1.5rem;
    }

    .heading-accent,
    .heading-services {
        font-size: 2rem;
    }

    .final-heading {
        font-size: 2.2rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .offset-wrapper {
        justify-content: center;
    }

    .offset-text {
        padding-left: 0;
    }

    .insight-grid {
        flex-direction: column;
        gap: 2.5rem;
    }

    .overlap-container {
        flex-direction: column;
    }

    .benefit-row {
        flex-direction: column;
        gap: 1rem;
    }

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

    .service-card {
        min-width: 100%;
    }

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

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

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

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

    .cookie-content {
        gap: 0.8rem;
    }

    .main-form {
        padding: 2rem 1.5rem;
    }
}