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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #d4a574;
    --accent-color: #8b4f3f;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --bg-light: #faf8f5;
    --bg-dark: #2a2a2a;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
}

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', sans-serif;
    line-height: 1.3;
    font-weight: 300;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: var(--spacing-md) var(--spacing-sm);
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-md) var(--spacing-sm);
}

.centered {
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(42, 42, 42, 0.97);
    color: var(--text-light);
    padding: var(--spacing-sm);
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: center;
}

.cookie-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

.btn-accept, .btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-links {
    display: flex;
    gap: var(--spacing-md);
}

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.sticky-cta {
    position: fixed;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
}

.sticky-btn {
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.hero-visual {
    position: relative;
    height: 90vh;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: var(--spacing-md);
    background: rgba(0, 0, 0, 0.4);
    max-width: 800px;
}

.hero-sub {
    font-size: 1.5rem;
    margin-top: var(--spacing-sm);
}

section {
    padding: var(--spacing-lg) 0;
}

.narrative-hook {
    background: white;
}

.narrative-hook h2 {
    color: var(--accent-color);
    margin-bottom: var(--spacing-md);
}

.narrative-hook p {
    font-size: 1.125rem;
}

.inline-cta {
    margin-top: var(--spacing-md);
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    display: inline-block;
    border-radius: 4px;
    font-size: 1.125rem;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.problem-amplification {
    background: var(--bg-light);
}

.split-content {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.curiosity-section {
    background: var(--primary-color);
    color: white;
}

.curiosity-section h2 {
    color: white;
}

.story-depth {
    background: white;
}

.asymmetric-layout {
    display: flex;
    gap: var(--spacing-lg);
    align-items: flex-start;
}

.content-block {
    flex: 1;
}

.offset-image {
    border-radius: 8px;
    transform: translateY(40px);
}

.insight-reveal {
    background: var(--bg-dark);
    color: var(--text-light);
}

.insight-reveal h2 {
    color: var(--secondary-color);
}

.emphasis-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: var(--spacing-md) 0;
}

.trust-building {
    background: white;
}

.three-column {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.trust-card {
    flex: 1;
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
}

.testimonials-flow {
    background: var(--bg-light);
}

.testimonial-card {
    background: white;
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-author {
    text-align: right;
    color: var(--primary-color);
    font-weight: 600;
}

.benefit-cascade {
    background: white;
}

.benefit-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.benefit-item {
    flex: 1 1 calc(50% - var(--spacing-md));
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: 8px;
}

.transformation-proof {
    background: var(--bg-light);
}

.image-showcase {
    display: flex;
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.showcase-img {
    flex: 1;
    border-radius: 8px;
}

.caption {
    text-align: center;
    font-size: 0.875rem;
    color: #666;
}

.anticipation-builder {
    background: var(--bg-dark);
    color: var(--text-light);
}

.service-selection {
    background: white;
    padding: var(--spacing-xl) 0;
}

.section-intro {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.service-card {
    flex: 1 1 calc(33.333% - var(--spacing-md));
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

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

.service-card.featured {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, var(--bg-light) 0%, #f0ebe5 100%);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: var(--spacing-sm);
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-price {
    font-size: 1.75rem;
    color: var(--accent-color);
    font-weight: 600;
    margin: var(--spacing-sm) 0;
}

.btn-select {
    width: 100%;
    padding: 0.875rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select:hover {
    background: var(--accent-color);
}

.form-section {
    background: var(--bg-light);
}

.contact-form {
    background: white;
    padding: var(--spacing-md);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
    font-weight: normal;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.urgency-section {
    background: var(--secondary-color);
    color: white;
}

.urgency-section h3 {
    color: white;
}

.urgency-section strong {
    font-size: 1.25rem;
}

.final-reassurance {
    background: white;
}

.reassurance-grid {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.reassurance-item {
    flex: 1;
    text-align: center;
    padding: var(--spacing-md);
}

.site-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

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

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section a {
    color: var(--text-light);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: var(--spacing-md);
        display: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .split-content,
    .asymmetric-layout,
    .three-column,
    .benefit-grid,
    .reassurance-grid,
    .footer-content {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .image-showcase {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: var(--spacing-sm);
        right: var(--spacing-sm);
    }

    .sticky-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

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

@media (min-width: 769px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }
}