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

:root {
    --primary: #8B4513;
    --secondary: #D2691E;
    --accent: #F4A460;
    --dark: #2C1810;
    --light: #FDF5E6;
    --text: #3D2914;
    --muted: #A0826D;
    --white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

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

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

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(44, 24, 16, 0.95);
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--light);
    transition: 0.3s;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark) 0%, #4A2C1A 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1558171813-4c088753af8f?w=1920') center/cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    padding: 40px 20px;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 300;
}

.hero h1 strong {
    font-weight: 700;
    color: var(--accent);
}

.hero-text {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 35px;
    opacity: 0.9;
}

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

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

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

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

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

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

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

/* Sections */
.section {
    padding: 80px 0;
}

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

.section-muted {
    background: #EDE4D8;
}

.section-accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    font-weight: 300;
}

.section-title strong {
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
}

/* Hook Section */
.hook {
    padding: 100px 0;
    text-align: center;
}

.hook-question {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    color: var(--primary);
    margin-bottom: 30px;
}

.hook-answer {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Story Section */
.story {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.story-image {
    flex: 1;
    min-width: 300px;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 20px 20px 0 var(--accent);
}

.story-content {
    flex: 1;
    min-width: 300px;
}

.story-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
}

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

/* Insight Section */
.insight-block {
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.insight-block h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Benefits */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 800px;
    margin: 40px auto 0;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 8px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.benefit-text h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

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

.testimonial {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

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

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

.service-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 200px;
    background: var(--muted);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-body {
    padding: 30px;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--muted);
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
}

.service-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--muted);
}

/* Form */
.form-section {
    background: linear-gradient(180deg, var(--dark) 0%, #3D2914 100%);
    padding: 100px 0;
}

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

.form-info {
    flex: 1;
    min-width: 300px;
    color: var(--light);
}

.form-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.form-info p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.form-container {
    flex: 1;
    min-width: 320px;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E5DDD5;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

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

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

/* CTA Sticky */
.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s;
}

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

.cta-sticky p {
    color: var(--light);
    font-size: 1rem;
}

/* CTA Inline */
.cta-inline {
    background: var(--accent);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin: 40px 0;
}

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

/* Gallery */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
}

.gallery-item {
    flex: 1;
    min-width: 200px;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--light);
    padding: 60px 0 30px;
}

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

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

.footer-col h4 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--light);
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 250px;
}

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

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

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

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

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

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 15px;
}

.page-content {
    padding: 80px 0;
}

.content-block {
    margin-bottom: 50px;
}

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

.content-block p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Contact */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

/* Thanks Page */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    text-align: center;
    color: var(--white);
    padding: 20px;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Legal Pages */
.legal-content {
    padding: 40px 0;
}

.legal-content h2 {
    color: var(--primary);
    font-size: 1.6rem;
    margin: 40px 0 15px;
}

.legal-content h3 {
    color: var(--secondary);
    font-size: 1.3rem;
    margin: 30px 0 10px;
}

.legal-content p,
.legal-content li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        display: none;
    }

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

    .hamburger {
        display: flex;
    }

    .hero {
        padding-top: 100px;
    }

    .section {
        padding: 60px 0;
    }

    .story {
        gap: 40px;
    }

    .story-image img {
        box-shadow: 10px 10px 0 var(--accent);
    }

    .form-wrapper {
        gap: 40px;
    }

    .form-container {
        padding: 25px;
    }

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

    .footer-grid {
        gap: 30px;
    }

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

@media (max-width: 480px) {
    .btn {
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .service-card {
        min-width: 100%;
    }

    .testimonial {
        min-width: 100%;
    }

    .problem-card {
        min-width: 100%;
    }
}
