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

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e8e8e8;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 5%;
}

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

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

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 2000;
    display: none;
    box-shadow: 0 -4px 20px 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;
}

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

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

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

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

.btn-accept:hover {
    background: #e8e8e8;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-reject:hover {
    border-color: #ffffff;
}

/* Layout Containers */
.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 5%;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Hero Section - MINIMAL PREMIUM Archetype */
.hero-minimal {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 5% 6rem;
    margin-top: 80px;
}

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

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: #666;
    letter-spacing: 0.01em;
}

/* Sections with Large Spacing */
.section-space {
    padding: 8rem 0;
}

.section-alt {
    padding: 8rem 0;
    background: #fafafa;
}

.section-title-large {
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

.text-large {
    font-size: 1.4rem;
    line-height: 1.8;
    font-weight: 300;
    color: #2a2a2a;
    margin-bottom: 2rem;
}

.text-medium {
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 400;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
}

/* Split Content Layout */
.split-content {
    display: flex;
    gap: 6rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-visual {
    flex: 1;
}

.subtitle-emphasis {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.visual-placeholder {
    width: 100%;
    border-radius: 2px;
}

/* Services Showcase - Premium Cards */
.services-showcase {
    padding: 8rem 0;
    background: #f5f5f5;
}

.section-title-centered {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 5rem;
    letter-spacing: -0.02em;
}

.service-grid-minimal {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-card-premium {
    background: #ffffff;
    padding: 3.5rem;
    border: 1px solid #e0e0e0;
    transition: all 0.4s ease;
}

.service-card-premium:hover {
    border-color: #1a1a1a;
    transform: translateY(-4px);
}

.service-card-premium h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

.service-card-premium p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

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

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

.btn-service:hover {
    background: #333;
}

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

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

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

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

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: #2a2a2a;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #d0d0d0;
    font-size: 1rem;
    font-family: inherit;
    background: #ffffff;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit-large {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 1.3rem 3rem;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit-large:hover {
    background: #333;
}

/* Testimonial */
.testimonial-minimal {
    border-left: 3px solid #1a1a1a;
    padding-left: 3rem;
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.8;
    font-style: italic;
    color: #2a2a2a;
}

.testimonial-minimal cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    color: #4a4a4a;
}

/* Final CTA */
.final-cta {
    padding: 8rem 0;
    text-align: center;
}

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

.final-cta p {
    font-size: 1.1rem;
    color: #4a4a4a;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand p {
    font-size: 0.95rem;
    color: #aaa;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column a {
    display: block;
    color: #aaa;
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

/* Page Hero */
.page-hero {
    padding: 12rem 0 6rem;
    margin-top: 80px;
    text-align: center;
}

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

.page-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: #666;
}

/* Principles & Approach */
.principle-block {
    margin-bottom: 4rem;
}

.principle-block h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

.principle-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #3a3a3a;
}

.approach-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.approach-item h4 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

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

/* CTA Simple */
.cta-simple {
    padding: 6rem 0;
    text-align: center;
    background: #fafafa;
}

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

.cta-simple p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.btn-large {
    display: inline-block;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-large:hover {
    background: #333;
}

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

.service-detail-card {
    background: #fafafa;
    padding: 4rem;
    margin-bottom: 3rem;
    border-left: 4px solid #1a1a1a;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2rem;
}

.service-detail-header h2 {
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.service-price-large {
    font-size: 1.8rem;
    font-weight: 300;
    color: #1a1a1a;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 2rem;
}

.service-includes {
    margin-bottom: 2rem;
}

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

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.service-includes ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
}

.btn-service-inline {
    display: inline-block;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-service-inline:hover {
    background: #333;
}

/* Contact Page */
.contact-section {
    padding: 6rem 0;
}

.contact-grid {
    display: flex;
    gap: 6rem;
}

.contact-info,
.contact-message {
    flex: 1;
}

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

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

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

.contact-item a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    background: #fafafa;
    padding: 1.5rem;
    border-left: 3px solid #1a1a1a;
    margin-top: 2rem;
}

.contact-note p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #3a3a3a;
}

.contact-message h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-spacing {
    margin-top: 3rem;
}

.contact-message ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.contact-message ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* Thanks Page */
.thanks-hero {
    padding: 12rem 0 4rem;
    margin-top: 80px;
    text-align: center;
    background: #fafafa;
}

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

.thanks-message {
    font-size: 1.3rem;
    font-weight: 400;
    color: #4a4a4a;
}

.thanks-details {
    padding: 6rem 0;
}

.thanks-details h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

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

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

.thanks-note {
    background: #fffbf0;
    padding: 2rem;
    border-left: 4px solid #f0ad4e;
    margin-top: 3rem;
}

.thanks-note p {
    font-size: 1rem;
    line-height: 1.6;
    color: #3a3a3a;
}

.thanks-cta {
    padding: 6rem 0;
    text-align: center;
    background: #fafafa;
}

.thanks-cta h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.thanks-cta p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

/* Legal Pages */
.legal-page {
    padding: 6rem 0;
    margin-top: 80px;
}

.legal-page h1 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.legal-intro {
    font-size: 1rem;
    color: #888;
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.legal-page p {
    font-size: 1rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 1.2rem;
}

.legal-page ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.legal-page ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.legal-page a {
    color: #1a1a1a;
    font-weight: 500;
}

.legal-page a:hover {
    text-decoration: none;
}

.legal-date {
    margin-top: 3rem;
    font-style: italic;
    color: #888;
}

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

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

.cookie-table th {
    background: #fafafa;
    font-weight: 600;
    font-size: 0.95rem;
}

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

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

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

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

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

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 5%;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-minimal {
        min-height: auto;
        padding: 6rem 5% 4rem;
    }

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

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

    .section-space,
    .section-alt {
        padding: 4rem 0;
    }

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

    .text-large {
        font-size: 1.2rem;
    }

    .service-card-premium {
        padding: 2rem;
    }

    .price-display {
        font-size: 1.8rem;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .page-hero {
        padding: 8rem 0 4rem;
    }

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

    .service-detail-header {
        flex-direction: column;
        gap: 1rem;
    }

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

    .thanks-links {
        flex-direction: column;
        gap: 1rem;
    }

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

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

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .nav-links {
        font-size: 0.85rem;
        gap: 1rem;
    }

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