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

:root {
    --primary: #2c1810;
    --secondary: #8b4513;
    --accent: #c17754;
    --light: #f5f1ed;
    --white: #ffffff;
    --text: #3a3a3a;
    --gray: #7a7a7a;
    --border: #e0dcd8;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

h1, h2, h3, h4 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.3;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    color: var(--primary);
}

h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

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

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.cta-nav-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-nav-btn:hover {
    background: var(--secondary);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta button {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(193, 119, 84, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-cta button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(193, 119, 84, 0.5);
}

.hero-story {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--light) 0%, #faf8f5 100%);
}

.hero-content-narrow {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.hero-label {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
}

.hero-intro {
    font-size: 1.25rem;
    margin-top: 2rem;
    color: var(--gray);
    line-height: 1.8;
}

.hero-image {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.content-story {
    padding: 6rem 2rem;
    background: var(--white);
}

.story-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.story-narrow h2 {
    margin-bottom: 2rem;
}

.story-narrow p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.inline-cta-box {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: center;
    border-left: 4px solid var(--accent);
}

.inline-cta-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.btn-inline {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.btn-inline:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.btn-inline-large {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.btn-inline-large:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

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

.problem-amplification {
    padding: 6rem 2rem;
    background: var(--primary);
    color: var(--white);
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    color: var(--white);
}

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

.problem-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.3rem;
}

.split-image {
    flex: 1;
}

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

.insight-reveal {
    padding: 6rem 2rem;
    background: var(--white);
}

.section-label {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.transformation-story {
    padding: 6rem 2rem;
    background: var(--light);
}

.centered-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.benefit-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.7;
}

.trust-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.testimonial-block {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--gray);
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.method-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #2c1810 0%, #1a0f0a 100%);
    color: var(--white);
}

.method-section .centered-title {
    color: var(--white);
}

.method-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 4rem;
}

.method-step {
    flex: 1;
    min-width: 250px;
    position: relative;
    padding-top: 4rem;
}

.step-number {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.3;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.method-step h3 {
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
}

.method-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.pricing-reveal {
    padding: 6rem 2rem;
    background: var(--light);
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--border);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 3px solid var(--accent);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.pricing-desc {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

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

.btn-select.featured-btn:hover {
    background: var(--secondary);
}

.additional-services {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border);
}

.additional-services h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.additional-item {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    text-align: center;
}

.additional-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.additional-item p {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.price-small {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.btn-small {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

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

.urgency-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.form-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--light) 0%, #faf8f5 100%);
}

.form-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
}

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

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

.btn-submit {
    width: 100%;
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.form-privacy {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 1rem;
}

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

.final-push {
    padding: 6rem 2rem;
    background: var(--white);
}

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

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    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;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

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

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

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

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

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .nav-links {
        display: none;
    }

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

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

    .pricing-card.featured {
        transform: scale(1);
    }

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

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

    .sticky-cta button {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
}