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

:root {
    --color-primary: #1a1a1a;
    --color-secondary: #4a4a4a;
    --color-accent: #2563eb;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fa;
    --color-border: #e5e7eb;
    --spacing-unit: 1rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-primary);
    background: var(--color-bg);
}

a {
    color: var(--color-accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    border-bottom: 1px solid var(--color-border);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
}

.nav-brand a {
    color: var(--color-primary);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--color-secondary);
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-primary);
    text-decoration: none;
}

.hero-minimal {
    padding: 8rem 4rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-spacer {
    height: 6rem;
}

.hero-spacer-small {
    height: 3rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-secondary);
    font-weight: 400;
}

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

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

.insight-block {
    background: var(--color-bg-alt);
    padding: 6rem 2rem;
}

.insight-text {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--color-secondary);
    font-style: italic;
}

.problem-reveal {
    padding: 6rem 2rem;
}

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

.split-left,
.split-right {
    flex: 1;
}

.split-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.split-right h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.split-right p {
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

.story-section {
    background: var(--color-primary);
    color: #ffffff;
    padding: 6rem 2rem;
}

.story-section .container-narrow {
    padding: 0 2rem;
}

.story-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.story-section p {
    color: #e5e7eb;
    margin-bottom: 1.5rem;
}

.story-cta {
    margin-top: 3rem;
}

.btn-inline {
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
    font-weight: 500;
    transition: opacity 0.3s;
}

.btn-inline:hover {
    opacity: 0.8;
    text-decoration: none;
}

.trust-layer {
    padding: 6rem 2rem;
    background: var(--color-bg-alt);
}

.section-title-centered {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.trust-grid {
    display: flex;
    gap: 4rem;
    justify-content: center;
}

.trust-item {
    text-align: center;
}

.trust-stat {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 1rem;
    color: var(--color-secondary);
}

.testimonial-inline {
    padding: 6rem 2rem;
}

.testimonial-quote {
    font-size: 1.6rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--color-primary);
    border-left: 4px solid var(--color-accent);
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    color: var(--color-secondary);
    font-size: 1.1rem;
    padding-left: 2rem;
}

.mechanism-section {
    padding: 6rem 2rem;
    background: var(--color-bg-alt);
}

.mechanism-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.mechanism-flow {
    display: flex;
    gap: 2rem;
}

.mechanism-step {
    flex: 1;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.mechanism-step h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.mechanism-step p {
    color: var(--color-secondary);
    font-size: 1rem;
}

.benefit-reveal {
    padding: 6rem 2rem;
}

.benefit-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.benefit-list {
    list-style: none;
    margin: 2rem 0;
}

.benefit-list li {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 1.2rem;
    color: var(--color-secondary);
}

.benefit-list li:before {
    content: "✓";
    color: var(--color-accent);
    font-weight: 700;
    margin-right: 1rem;
}

.benefit-cta {
    margin-top: 3rem;
}

.services-preview {
    padding: 6rem 2rem;
    background: var(--color-bg-alt);
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: var(--color-secondary);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    position: relative;
}

.service-card.featured {
    border: 2px solid var(--color-accent);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--color-accent);
    color: #ffffff;
    padding: 0.3rem 1rem;
    font-size: 0.85rem;
    border-radius: 20px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    min-height: 100px;
}

.service-duration {
    font-size: 0.95rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

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

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

.urgency-section {
    padding: 6rem 2rem;
    background: #fef3c7;
}

.urgency-section h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.urgency-section p {
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.form-section {
    padding: 6rem 2rem;
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: var(--color-secondary);
    margin-bottom: 3rem;
}

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

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

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

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

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--color-accent);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #1d4ed8;
    text-decoration: none;
}

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

.btn-secondary:hover {
    background: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
}

.btn-large {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
}

.final-cta {
    padding: 6rem 2rem;
    background: var(--color-bg-alt);
}

.final-message {
    font-size: 1.5rem;
    text-align: center;
    color: var(--color-secondary);
    font-style: italic;
}

.footer {
    background: var(--color-primary);
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-column p {
    color: #9ca3af;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: #9ca3af;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #60a5fa;
}

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

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

.sticky-btn {
    padding: 1rem 2rem;
    background: var(--color-accent);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: #1d4ed8;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
    text-decoration: none;
    transform: translateY(-2px);
}

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

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--color-secondary);
}

.about-story,
.about-method,
.about-cta {
    padding: 4rem 2rem;
}

.about-story h2,
.about-method h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.about-story p,
.about-method p {
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

.team-philosophy {
    padding: 4rem 2rem;
    background: var(--color-bg-alt);
}

.team-philosophy h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.philosophy-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 2rem;
}

.philosophy-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.philosophy-item p {
    color: var(--color-secondary);
}

.about-numbers {
    padding: 4rem 2rem;
}

.about-numbers h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.number-item {
    text-align: center;
    min-width: 200px;
}

.number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.number-label {
    color: var(--color-secondary);
}

.about-cta {
    text-align: center;
    background: var(--color-bg-alt);
}

.about-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-cta p {
    color: var(--color-secondary);
    margin-bottom: 2rem;
}

.services-detail {
    padding: 2rem;
}

.service-detail-card {
    max-width: 900px;
    margin: 0 auto 3rem;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-card.featured-card {
    border: 2px solid var(--color-accent);
    position: relative;
}

.badge-large {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-accent);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
}

.service-detail-header {
    padding: 2.5rem;
    background: var(--color-bg-alt);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-detail-header h2 {
    font-size: 2.2rem;
    margin: 0;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
}

.service-detail-body {
    padding: 2.5rem;
}

.service-detail-body h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.service-detail-body h3:first-child {
    margin-top: 0;
}

.service-detail-body ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-detail-body li {
    margin-bottom: 0.8rem;
    color: var(--color-secondary);
}

.service-detail-body p {
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.services-comparison {
    padding: 4rem 2rem;
    background: var(--color-bg-alt);
}

.services-comparison h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

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

.comparison-table th {
    background: var(--color-primary);
    color: #ffffff;
    font-weight: 600;
}

.comparison-table td {
    color: var(--color-secondary);
}

.services-cta {
    padding: 4rem 2rem;
    text-align: center;
}

.services-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.services-cta p {
    color: var(--color-secondary);
    margin-bottom: 2rem;
}

.contact-info {
    padding: 4rem 2rem;
}

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

.contact-item {
    text-align: center;
    min-width: 250px;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-item p {
    color: var(--color-secondary);
    line-height: 1.8;
}

.contact-note {
    padding: 4rem 2rem;
    background: var(--color-bg-alt);
}

.contact-note p {
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.legal-page {
    padding: 2rem;
}

.legal-updated {
    color: var(--color-secondary);
    font-style: italic;
    margin-bottom: 3rem;
}

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

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

.legal-page p {
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

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

.legal-page li {
    color: var(--color-secondary);
    margin-bottom: 0.8rem;
}

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

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

.legal-table th {
    background: var(--color-bg-alt);
    font-weight: 600;
}

.legal-table td {
    color: var(--color-secondary);
}

.thanks-section {
    padding: 8rem 2rem;
    text-align: center;
}

.thanks-section h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.thanks-message {
    font-size: 1.3rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.thanks-section p {
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

#service-confirmation {
    font-weight: 600;
    color: var(--color-accent);
    font-size: 1.2rem;
}

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

@media (max-width: 768px) {
    .nav-minimal {
        padding: 1.5rem 2rem;
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-minimal {
        padding: 4rem 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

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

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

    .trust-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .mechanism-flow {
        flex-direction: column;
    }

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

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

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

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

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

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

    .numbers-grid {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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