:root {
    --primary: #8B4513;
    --primary-dark: #5D2E0C;
    --secondary: #D4A574;
    --accent: #E85D04;
    --text-dark: #2D2D2D;
    --text-light: #F5F0EB;
    --bg-light: #FDF8F3;
    --bg-cream: #F5EDE4;
    --bg-warm: #EDE0D4;
    --shadow: rgba(139, 69, 19, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    z-index: 100;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--text-light);
    margin: 5px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: opacity 0.3s;
    position: relative;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(45, 30, 15, 0.7), rgba(45, 30, 15, 0.8)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="3" fill="%23D4A574" opacity="0.3"/><circle cx="80" cy="40" r="2" fill="%23E85D04" opacity="0.4"/><circle cx="50" cy="70" r="4" fill="%238B4513" opacity="0.3"/><circle cx="30" cy="85" r="2" fill="%23D4A574" opacity="0.4"/><circle cx="70" cy="15" r="3" fill="%23E85D04" opacity="0.3"/></svg>');
    background-size: cover, 150px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding: 60px 20px;
}

.hero-content {
    max-width: 750px;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 16px 42px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 20px rgba(232, 93, 4, 0.4);
}

.btn-primary:hover {
    background: #ff6b1a;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(232, 93, 4, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
    margin-left: 15px;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
}

/* Section Styles */
.section {
    padding: 90px 20px;
}

.section-alt {
    background: var(--bg-cream);
}

.section-dark {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
}

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

.section-title {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.section-dark .section-title {
    color: var(--text-light);
}

.section-subtitle {
    font-size: 1.15rem;
    color: #666;
    max-width: 650px;
}

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.85);
}

/* Story Section */
.story-section {
    padding: 100px 20px;
}

.story-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
}

.story-text p {
    margin-bottom: 20px;
    color: #555;
}

.story-visual {
    flex: 1;
    position: relative;
}

.story-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image svg {
    width: 200px;
    height: 200px;
    opacity: 0.3;
}

/* Problem Section */
.problem-section {
    background: linear-gradient(135deg, #3d2314 0%, #2a1810 100%);
    color: white;
    padding: 100px 20px;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.08);
    padding: 35px;
    border-radius: 16px;
    border-left: 4px solid var(--accent);
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.problem-card p {
    opacity: 0.9;
    line-height: 1.8;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.benefits-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.benefit-item {
    flex: 1;
    min-width: 300px;
    display: flex;
    gap: 25px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px var(--shadow);
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.benefit-content h3 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.benefit-content p {
    color: #666;
}

/* Services/Products */
.services-section {
    padding: 100px 20px;
    background: var(--bg-cream);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px var(--shadow);
}

.service-image {
    height: 200px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image svg {
    width: 80px;
    height: 80px;
    fill: white;
    opacity: 0.8;
}

.service-body {
    padding: 30px;
}

.service-body h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.service-body p {
    color: #666;
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

.service-price span {
    font-size: 1rem;
    color: #999;
    font-weight: 400;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-cream) 100%);
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    color: var(--secondary);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    color: #555;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    color: var(--primary-dark);
    font-size: 1.05rem;
}

.author-info span {
    color: #888;
    font-size: 0.9rem;
}

/* Trust Section */
.trust-section {
    padding: 80px 20px;
    background: var(--bg-warm);
    text-align: center;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.trust-badge-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px var(--shadow);
}

.trust-badge-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--primary);
}

.trust-badge span {
    font-weight: 600;
    color: var(--primary-dark);
}

/* Form Section */
.form-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.form-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-content {
    flex: 1;
    color: white;
}

.form-content h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
}

.form-content p {
    opacity: 0.9;
    margin-bottom: 15px;
}

.form-benefits {
    list-style: none;
    margin-top: 30px;
}

.form-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.form-benefits li svg {
    width: 24px;
    height: 24px;
    fill: var(--secondary);
}

.form-container {
    flex: 1;
    background: white;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0d5ca;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(139, 69, 19, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.form-submit:hover {
    background: #ff6b1a;
    transform: translateY(-2px);
}

/* Urgency Bar */
.urgency-bar {
    background: var(--accent);
    color: white;
    text-align: center;
    padding: 15px 20px;
    font-weight: 600;
}

.urgency-bar span {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    margin-left: 10px;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px 20px;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.15);
    display: none;
    z-index: 999;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-cta-text {
    font-weight: 600;
    color: var(--primary-dark);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 70px 20px 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

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

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.15rem;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: white;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

.cookie-banner h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.cookie-banner p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

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

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

.cookie-reject {
    background: #e5e5e5;
    color: #666;
}

.cookie-reject:hover {
    background: #d5d5d5;
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-header p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Pages */
.content-page {
    padding: 80px 20px;
}

.content-page h2 {
    color: var(--primary-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.content-page h3 {
    color: var(--primary);
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-page p {
    margin-bottom: 20px;
    color: #555;
}

.content-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-page li {
    margin-bottom: 10px;
    color: #555;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px var(--shadow);
    text-align: center;
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.contact-card h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
}

/* Thanks Page */
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 60px;
    height: 60px;
    fill: white;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.thanks-content p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Inline CTA */
.inline-cta {
    background: var(--bg-warm);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin: 50px 0;
}

.inline-cta h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.inline-cta p {
    color: #666;
    margin-bottom: 25px;
}

/* About page */
.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image svg {
    width: 150px;
    height: 150px;
    fill: white;
    opacity: 0.5;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 35px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px var(--shadow);
    text-align: center;
}

.value-card h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
}

/* Responsive */
@media (max-width: 900px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        display: none;
    }

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

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

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

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

    .form-wrapper {
        flex-direction: column;
    }

    .btn-outline-light {
        margin-left: 0;
        margin-top: 15px;
    }

    .sticky-cta-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 60px 15px;
    }

    .hero {
        min-height: 75vh;
        padding: 40px 15px;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .form-container {
        padding: 30px 20px;
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
        padding: 20px;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}
