* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #4a5568;
    --text-color: #1a1a1a;
    --text-light: #6b7280;
    --background: #ffffff;
    --background-alt: #f8f9fa;
    --border-color: #e5e7eb;
    --spacing-unit: 1rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--background);
}

.nav-minimal {
    padding: 2rem 0;
    position: relative;
    background: var(--background);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.ad-disclosure {
    font-size: 0.8rem;
    color: var(--text-light);
    padding: 0.35rem 0.85rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--background-alt);
}

.hero-minimal {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.hero-image {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--background-alt);
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.cta-primary:hover {
    background: var(--secondary-color);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.content-spacious {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-spacious {
    padding: 10rem 0 8rem;
}

.intro-spacious h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
}

.intro-spacious p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.insight-block {
    padding: 8rem 0;
    background: var(--background-alt);
}

.insight-content {
    flex: 1;
}

.insight-content h3 {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.insight-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.insight-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.content-wide {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.trust-builder {
    padding: 10rem 0;
}

.testimonial-large {
    font-size: 1.75rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 3rem;
}

.testimonial-large cite {
    display: block;
    margin-top: 2rem;
    font-size: 1rem;
    font-style: normal;
    color: var(--text-light);
}

.services-minimal {
    padding: 10rem 0;
}

.services-minimal h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 6rem;
    text-align: center;
}

.service-card {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.service-card:last-child {
    border-bottom: none;
}

.service-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.service-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-card .price {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.service-card.featured {
    background: var(--background-alt);
    padding: 4rem 3rem;
    border-radius: 8px;
    border: none;
    margin-top: 3rem;
}

.select-service {
    padding: 0.85rem 2rem;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.select-service:hover {
    background: var(--secondary-color);
}

.form-section {
    padding: 8rem 0;
    background: var(--background-alt);
}

.form-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.form-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

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

.selected-service-display {
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 6px;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: var(--text-color);
    display: none;
}

.selected-service-display.active {
    display: block;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: #ffffff;
    color: var(--text-color);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}

.submit-btn:hover {
    background: var(--secondary-color);
}

.final-cta {
    padding: 10rem 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.final-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.footer-minimal {
    padding: 6rem 0 3rem;
    background: var(--background-alt);
    border-top: 1px solid var(--border-color);
}

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

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

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

.footer-brand p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 400px;
}

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

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

.footer-column a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--text-color);
}

.footer-disclaimer {
    padding: 2rem;
    background: #ffffff;
    border-radius: 6px;
    margin-bottom: 3rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-light);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    padding: 2rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    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.95rem;
    color: var(--text-color);
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: var(--secondary-color);
}

.cookie-btn.reject {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.cookie-btn.reject:hover {
    background: var(--background-alt);
}

.page-hero {
    padding: 8rem 0 6rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.page-hero .lead {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
}

.about-content {
    padding: 6rem 0;
}

.about-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--background-alt);
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.methodology {
    padding: 8rem 0;
    background: var(--background-alt);
}

.methodology h2 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 4rem;
    text-align: center;
}

.method-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.method-step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.method-step p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

.values-section {
    padding: 8rem 0;
}

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

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

.values-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    padding-left: 2rem;
    position: relative;
}

.values-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.values-list strong {
    color: var(--text-color);
}

.cta-about {
    padding: 8rem 0;
    text-align: center;
    background: var(--background-alt);
}

.cta-about h2 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.cta-about p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.services-detailed {
    padding: 6rem 0;
}

.service-detailed {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.service-detailed:last-child {
    border-bottom: none;
}

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

.service-header h2 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.service-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-body h4 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.service-body ul {
    list-style: none;
    margin-bottom: 3rem;
}

.service-body ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.service-body ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.featured-service {
    background: var(--background-alt);
    padding: 4rem 3rem;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    margin-top: 3rem;
}

.services-cta {
    padding: 8rem 0;
    text-align: center;
    background: var(--background-alt);
}

.services-cta h2 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.services-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.contact-content {
    padding: 6rem 0;
}

.contact-split {
    display: flex;
    flex-direction: column;
    gap: 0;
}

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

.contact-info > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 4rem;
}

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

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

.location-visual {
    padding: 6rem 0;
    background: var(--background-alt);
}

.location-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

.thanks-hero {
    padding: 8rem 0 4rem;
    text-align: center;
}

.thanks-hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.thanks-hero .lead {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

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

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

.step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

.thanks-cta {
    text-align: center;
}

.thanks-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.legal-content {
    padding: 6rem 0;
}

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

.legal-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.legal-content ul {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.legal-content ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--accent-color);
}

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

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookies-table th {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--background-alt);
}

.cookies-table td {
    font-size: 1rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

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

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

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

    .footer-main {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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