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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #8b7355;
    --accent-color: #d4af37;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 20px rgba(0,0,0,0.08);
    --shadow-heavy: 0 4px 30px rgba(0,0,0,0.15);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
}

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

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

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

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

.btn-accept, .btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #e8c048;
}

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

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

.main-nav {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    transition: color 0.3s ease;
}

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    box-shadow: var(--shadow-heavy);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 40px rgba(212,175,55,0.4);
}

.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(26,26,26,0.85), rgba(139,115,85,0.7)),
                url('https://images.unsplash.com/photo-1490578474895-699cd4e2cf59?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    max-width: 900px;
    padding: 0 2rem;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-hero {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: #e8c048;
    transform: translateY(-2px);
}

.story-intro {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.opening-hook {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
}

.emphasis-text {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 2rem;
}

.split-visual {
    flex: 1;
}

.visual-placeholder {
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.visual-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

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

.insight-section .content-narrow {
    text-align: center;
}

.section-title-center {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: white;
}

.insight-section p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.95);
}

.insight-list {
    list-style: none;
    margin: 2.5rem 0;
    text-align: left;
}

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

.insight-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.callout-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 2rem;
}

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

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.transformation-story h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.story-block {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.story-block p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.highlight-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--secondary-color);
    font-weight: 500;
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
    margin-top: 2rem;
}

.cta-inline {
    text-align: center;
    margin-top: 3rem;
}

.btn-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #9d8467;
    transform: translateY(-2px);
}

.trust-building {
    padding: 6rem 2rem;
}

.trust-building h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.trust-points {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.trust-item {
    padding-left: 3rem;
    position: relative;
}

.trust-item:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: var(--accent-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.trust-item p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.testimonials-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.testimonials-section h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-color);
}

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

.testimonial-author {
    font-size: 0.95rem;
    color: var(--text-light);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

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

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

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

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

.services-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.services-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

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

.service-card {
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 2.5rem;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

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

.service-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.service-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 700;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin-bottom: 1.5rem;
}

.service-body p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 0.95rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
}

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

.urgency-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(139,115,85,0.1), rgba(212,175,55,0.1));
}

.urgency-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.urgency-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.urgency-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 2rem;
}

.urgency-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-urgent {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 1.3rem 3.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-urgent:hover {
    background: #e8c048;
    transform: scale(1.05);
}

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

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

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

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

.contact-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--primary-color);
}

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

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

.form-privacy {
    margin: 2rem 0;
}

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

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

.checkbox-label span {
    font-size: 0.95rem;
    color: var(--text-light);
}

.checkbox-label a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #9d8467;
    transform: translateY(-2px);
}

.final-message {
    padding: 6rem 2rem;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.final-message h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
}

.final-message p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.95);
}

.main-footer {
    background: #0f0f0f;
    color: white;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

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

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

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

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

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

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

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

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

    .section-title-center,
    .transformation-story h2,
    .testimonials-section h2,
    .services-section h2 {
        font-size: 2rem;
    }

    .services-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .service-card {
        max-width: none;
    }

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

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

    .contact-form {
        padding: 2rem 1.5rem;
    }
}