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

:root {
    --color-bg: #fafaf8;
    --color-text: #1a1a1a;
    --color-accent: #2d3b2d;
    --color-light: #e8e6df;
    --color-white: #ffffff;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --spacing-xs: 1rem;
    --spacing-sm: 2rem;
    --spacing-md: 4rem;
    --spacing-lg: 6rem;
    --spacing-xl: 10rem;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(250, 250, 248, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.nav-brand {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-accent);
}

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

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

.nav-links a:hover {
    opacity: 0.6;
}

.hero-minimal {
    padding: 12rem 4rem 4rem;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
}

.hero-spacer {
    height: 4rem;
}

.hero-title {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    color: #666;
    margin-bottom: 4rem;
}

.hero-image-container {
    margin-top: auto;
    max-width: 1200px;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

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

.spacer-small {
    height: 2rem;
}

.spacer-medium {
    height: 4rem;
}

.spacer-large {
    height: 6rem;
}

.spacer-xlarge {
    height: 10rem;
}

.intro-text {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.insight-section {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 8rem 4rem;
    margin: 8rem 0;
}

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

.section-heading {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.body-text {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.image-full {
    width: 100%;
    margin: 6rem 0;
}

.image-full img {
    width: 100%;
    height: auto;
    display: block;
}

.problem-section {
    margin: 6rem 0;
}

.testimonial-inline {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    padding: 2rem 0;
    border-left: 3px solid var(--color-accent);
    padding-left: 2rem;
    margin: 3rem 0;
}

.testimonial-author {
    display: block;
    font-size: 1rem;
    font-style: normal;
    margin-top: 1rem;
    opacity: 0.7;
}

.reveal-section {
    padding: 8rem 4rem;
    background-color: var(--color-light);
}

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

.section-heading-alt {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.body-text-large {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.5;
}

.reveal-image {
    width: 100%;
    height: auto;
    margin-top: 3rem;
}

.subheading {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.cta-inline {
    text-align: center;
    padding: 6rem 0;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.5rem 4rem;
    background-color: var(--color-accent);
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: opacity 0.3s;
}

.btn-primary-large:hover {
    opacity: 0.85;
}

.trust-section {
    padding: 6rem 4rem;
}

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

.trust-card {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.trust-card h4 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.trust-card p {
    font-size: 1.1rem;
    color: #666;
}

.testimonials-section {
    padding: 4rem 2rem;
}

.testimonial-main {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 2rem;
    padding: 3rem 0;
    border-top: 1px solid var(--color-light);
    border-bottom: 1px solid var(--color-light);
}

.testimonial-author-main {
    display: block;
    font-size: 1.1rem;
    font-style: normal;
    margin-top: 1.5rem;
    opacity: 0.7;
    font-weight: 400;
}

.services-reveal {
    padding: 8rem 4rem;
    background-color: var(--color-white);
}

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

.section-heading-center {
    font-size: 4rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 3rem 0;
    border-bottom: 1px solid var(--color-light);
    gap: 3rem;
}

.service-item:first-of-type {
    border-top: 1px solid var(--color-light);
}

.service-content {
    flex: 1;
}

.service-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    font-weight: 300;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-accent);
    white-space: nowrap;
}

.urgency-section {
    padding: 6rem 2rem;
    text-align: center;
}

.urgency-text {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.urgency-text-small {
    font-size: 1.3rem;
    color: #666;
    font-weight: 300;
}

.form-section {
    padding: 8rem 4rem;
    background-color: var(--color-light);
}

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

.form-heading {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.form-intro {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    background-color: var(--color-white);
    font-family: var(--font-primary);
}

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

.btn-submit {
    padding: 1.5rem 3rem;
    background-color: var(--color-accent);
    color: var(--color-white);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: opacity 0.3s;
    font-family: var(--font-primary);
}

.btn-submit:hover {
    opacity: 0.85;
}

.footer-minimal {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 4rem 4rem 3rem;
}

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

.footer-brand {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

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

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

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

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

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

.sticky-cta-btn {
    display: block;
    padding: 1.2rem 2.5rem;
    background-color: var(--color-accent);
    color: var(--color-white);
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 1.5rem 2rem;
    z-index: 1000;
    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;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: var(--color-white);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: opacity 0.3s;
    font-family: var(--font-primary);
}

.btn-accept {
    background-color: var(--color-white);
    color: var(--color-accent);
}

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

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

    .nav-links {
        gap: 1.5rem;
    }

    .hero-minimal {
        padding: 8rem 2rem 3rem;
    }

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

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

    .intro-text {
        font-size: 1.4rem;
    }

    .section-heading {
        font-size: 2.5rem;
    }

    .section-heading-alt {
        font-size: 2.8rem;
    }

    .body-text {
        font-size: 1.1rem;
    }

    .body-text-large {
        font-size: 1.5rem;
    }

    .testimonial-main {
        font-size: 1.4rem;
    }

    .section-heading-center {
        font-size: 2.8rem;
    }

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

    .service-price {
        font-size: 2rem;
    }

    .urgency-text {
        font-size: 1.5rem;
    }

    .form-heading {
        font-size: 2.5rem;
    }

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

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

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

.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-header {
    padding: 10rem 4rem 4rem;
    background-color: var(--color-light);
}

.page-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    max-width: 900px;
}

.page-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #666;
    max-width: 700px;
}

.page-content {
    padding: 6rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    flex: 1;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.content-section h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

.content-section p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.content-section ul,
.content-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    font-weight: 300;
}

.contact-info {
    background-color: var(--color-light);
    padding: 3rem;
    margin: 3rem 0;
}

.contact-info-item {
    margin-bottom: 2rem;
}

.contact-info-item h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    font-size: 1.2rem;
    margin: 0;
}

.contact-info-item a {
    color: var(--color-accent);
    text-decoration: none;
}

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

.thanks-container {
    text-align: center;
    padding: 8rem 2rem;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thanks-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.thanks-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.thanks-message {
    font-size: 1.5rem;
    font-weight: 300;
    color: #666;
    max-width: 600px;
    margin-bottom: 3rem;
}

.thanks-details {
    background-color: var(--color-light);
    padding: 2rem 3rem;
    margin-bottom: 3rem;
    display: inline-block;
}

.btn-back {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--color-accent);
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: opacity 0.3s;
}

.btn-back:hover {
    opacity: 0.85;
}