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

:root {
    --primary: #8B4513;
    --secondary: #D4A574;
    --accent: #C9A86C;
    --dark: #2C1810;
    --light: #FDF8F3;
    --cream: #F5E6D3;
    --text: #3D2914;
    --muted: #7A6B5A;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

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

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

/* Navigation */
.nav-floating {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.nav-toggle {
    width: 50px;
    height: 50px;
    background: var(--dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: transform 0.3s ease;
}

.nav-toggle:hover {
    transform: scale(1.1);
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--cream);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--dark);
    padding: 100px 40px 40px;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.nav-menu.active {
    right: 0;
}

.nav-menu a {
    color: var(--cream);
    font-size: 1.2rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-menu a:hover {
    color: var(--accent);
    padding-left: 10px;
}

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

.hero-immersive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-badge {
    background: var(--accent);
    color: var(--dark);
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.hero-immersive h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: var(--cream);
    text-align: center;
    max-width: 900px;
    line-height: 1.1;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--secondary);
    text-align: center;
    max-width: 600px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--accent);
    color: var(--dark);
    padding: 18px 40px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--cream);
    padding: 18px 40px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--cream);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--cream);
    color: var(--dark);
}

/* Story Section */
.story-section {
    padding: 100px 20px;
    background: var(--light);
}

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

.story-lead {
    font-size: 1.8rem;
    color: var(--primary);
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 300;
}

.story-text {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 20px;
}

.story-highlight {
    background: var(--cream);
    padding: 30px 40px;
    margin: 40px -40px;
    border-left: 4px solid var(--primary);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--primary);
}

/* Problem Section */
.problem-section {
    background: var(--dark);
    padding: 80px 20px;
    color: var(--cream);
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-item {
    flex: 1 1 280px;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.problem-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--dark);
}

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

.problem-item p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

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

.insight-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.insight-visual {
    flex: 1 1 400px;
    position: relative;
}

.insight-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.insight-image-placeholder::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px dashed rgba(255,255,255,0.3);
    border-radius: 8px;
}

.insight-image-placeholder svg {
    width: 80px;
    height: 80px;
    fill: rgba(255,255,255,0.5);
}

.insight-content {
    flex: 1 1 400px;
}

.section-label {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.insight-content h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.insight-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text);
}

.inline-cta {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    margin-top: 20px;
    padding-bottom: 3px;
    border-bottom: 2px solid var(--primary);
}

.inline-cta:hover {
    color: var(--dark);
    border-color: var(--dark);
}

/* Services Section */
.services-section {
    padding: 100px 20px;
    background: var(--light);
}

.services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.services-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.services-header p {
    color: var(--muted);
    font-size: 1.1rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 320px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

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

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

.service-content {
    padding: 30px;
}

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

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

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

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

/* Testimonials */
.testimonials-section {
    padding: 80px 20px;
    background: var(--cream);
}

.testimonials-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-item::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-size: 1.2rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 25px;
    padding-left: 40px;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.author-info strong {
    display: block;
    color: var(--dark);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--muted);
}

/* Benefits Section */
.benefits-section {
    padding: 100px 20px;
    background: white;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-item {
    flex: 1 1 300px;
    display: flex;
    gap: 20px;
}

.benefit-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

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

.benefit-content p {
    color: var(--muted);
    line-height: 1.6;
}

/* Urgency Section */
.urgency-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    text-align: center;
}

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

.urgency-content h2 {
    color: var(--cream);
    font-size: 2rem;
    margin-bottom: 15px;
}

.urgency-content p {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Form Section */
.form-section {
    padding: 100px 20px;
    background: var(--light);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--muted);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--cream);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--light);
}

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

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

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

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

/* Sticky CTA */
.sticky-cta {
    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: 900;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

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

.sticky-cta .btn-primary {
    padding: 12px 30px;
}

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

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

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

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

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    padding: 5px 0;
    font-size: 0.95rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    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: 12px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

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

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

.cookie-banner p {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 20px;
}

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

.cookie-accept {
    background: var(--primary);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.cookie-reject {
    background: transparent;
    color: var(--muted);
    padding: 12px 25px;
    border: 1px solid var(--muted);
    border-radius: 6px;
    cursor: pointer;
}

/* About Page */
.page-hero {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, var(--dark) 0%, #4A3228 100%);
    text-align: center;
}

.page-hero h1 {
    color: var(--cream);
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-hero p {
    color: var(--secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 80px 20px;
}

.content-section:nth-child(even) {
    background: var(--cream);
}

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

.content-block h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 25px;
}

.content-block p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text);
}

.content-block ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-block li {
    margin-bottom: 10px;
    color: var(--text);
}

/* Contact Page */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    flex: 1 1 300px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

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

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
}

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

.contact-item p {
    color: var(--muted);
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
}

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

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

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

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

.thanks-content p {
    font-size: 1.2rem;
    color: var(--muted);
    margin-bottom: 30px;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--dark);
    margin: 40px 0 20px;
}

.legal-content p {
    margin-bottom: 15px;
    color: var(--text);
}

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

.legal-content li {
    margin-bottom: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-immersive h1 {
        font-size: 2.2rem;
    }

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

    .hero-cta {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .story-highlight {
        margin: 30px -10px;
        padding: 20px;
    }

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

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

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

    .sticky-cta p {
        font-size: 0.85rem;
    }

    .nav-menu {
        width: 100%;
    }

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

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