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

:root {
    --primary: #8B4513;
    --primary-dark: #654321;
    --accent: #D2691E;
    --text-dark: #2C1810;
    --text-light: #5C4033;
    --bg-light: #FFF8F0;
    --bg-cream: #F5E6D3;
    --white: #FFFFFF;
    --border: #E0D0C0;
    --success: #228B22;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

.nav-minimal {
    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: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-visual-first {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

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

.narrow-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
    line-height: 1.3;
}

.narrow-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.inline-cta {
    margin-top: 2.5rem;
}

.cta-link {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--primary);
    transition: opacity 0.3s;
}

.cta-link:hover {
    opacity: 0.7;
}

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

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

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

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

.problem-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-light);
}

.problem-list li::before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.split-visual {
    flex: 1;
}

.comparison-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.comparison-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.comparison-item.bad {
    background: #FFE5E5;
    border-left: 4px solid #D32F2F;
}

.comparison-item.good {
    background: #E8F5E9;
    border-left: 4px solid var(--success);
}

.comparison-item strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.comparison-item span {
    display: block;
    margin: 0.3rem 0;
    font-size: 0.95rem;
}

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

.centered-content {
    max-width: 1100px;
    margin: 0 auto;
}

.centered-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.insight-card {
    flex: 1;
    background: rgba(255,255,255,0.1);
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.insight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.insight-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.insight-card p {
    font-size: 1rem;
    opacity: 0.9;
}

.trust-building {
    padding: 5rem 2rem;
    background: var(--bg-cream);
}

.testimonial-flow {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-flow h3 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

.testimonial-cards {
    display: flex;
    gap: 2rem;
}

.testimonial {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.testimonial cite {
    font-size: 0.9rem;
    font-style: normal;
    color: var(--primary);
    font-weight: 600;
}

.benefits-stack {
    padding: 0;
}

.benefit-blocks {
    display: flex;
    flex-direction: column;
}

.benefit-block {
    padding: 5rem 2rem;
    text-align: center;
}

.benefit-block.dark {
    background: var(--text-dark);
    color: var(--white);
}

.benefit-block.light {
    background: var(--bg-light);
    color: var(--text-dark);
}

.benefit-block.accent {
    background: var(--accent);
    color: var(--white);
}

.benefit-block h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.benefit-block p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

.services-pricing {
    padding: 6rem 2rem;
    background: var(--white);
}

.pricing-container {
    max-width: 1300px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-header h2 {
    font-size: 2.8rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.pricing-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.price-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    width: calc(33.333% - 1.5rem);
    min-width: 300px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.price-card.featured {
    border-color: var(--primary);
    border-width: 3px;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.price-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.service-desc {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.price-note {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.select-service:hover {
    background: var(--primary-dark);
}

.urgency-block {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
}

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

.urgency-content h3 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.urgency-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.urgency-indicator {
    margin-top: 2rem;
}

.stock-bar {
    height: 30px;
    background: rgba(0,0,0,0.1);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.stock-fill {
    height: 100%;
    width: 37%;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 20px;
}

.urgency-indicator span {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
}

.final-cta-section {
    padding: 5rem 2rem;
    background: var(--primary);
    color: var(--white);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-secondary {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.3s;
}

.cta-secondary:hover {
    transform: scale(1.05);
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.selected-product-info {
    background: var(--bg-cream);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.selected-product-info strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.selected-product-info span {
    display: block;
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    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 textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.95rem;
    opacity: 0.8;
}

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

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

.footer-col a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

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

.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;
    opacity: 0.7;
}

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

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

.sticky-btn:hover {
    transform: scale(1.05);
}

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

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

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

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

.cookie-btn:hover {
    opacity: 0.8;
}

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

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .split-layout {
        flex-direction: column;
        gap: 2rem;
    }

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

    .testimonial-cards {
        flex-direction: column;
    }

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

    .price-card {
        width: 100%;
    }

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

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

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