:root {
    --primary: #8B4B6B;
    --primary-dark: #6D3A54;
    --secondary: #D4A5A5;
    --accent: #F5E6E0;
    --dark: #2C2C2C;
    --light: #FEFAF9;
    --text: #3D3D3D;
    --text-light: #6B6B6B;
    --gold: #C9A962;
    --shadow: rgba(139, 75, 107, 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);
    background-color: var(--light);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

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

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

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

/* Header */
.site-header {
    background: var(--light);
    border-bottom: 1px solid var(--accent);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ad-disclosure {
    background: var(--accent);
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--text);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

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

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

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

/* Hero Section */
.hero-funnel {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 60px 40px;
}

.hero-hook {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--shadow);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 14px 35px;
    border: 2px solid var(--primary);
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Problem Section */
.section-problem {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light) 0%, var(--accent) 100%);
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

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

.problem-visual {
    flex: 1;
    min-width: 300px;
    background-color: var(--secondary);
    border-radius: 20px;
    overflow: hidden;
}

.section-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-title {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

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

.problem-list li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    border-bottom: 1px solid rgba(139, 75, 107, 0.1);
}

.problem-list li::before {
    content: '?';
    position: absolute;
    left: 0;
    top: 15px;
    width: 24px;
    height: 24px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary);
    font-size: 14px;
}

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

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

.story-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--text);
}

.story-highlight {
    background: var(--accent);
    padding: 30px 40px;
    border-left: 4px solid var(--primary);
    margin: 40px 0;
    font-style: italic;
    font-size: 20px;
    color: var(--primary-dark);
}

/* Insight Section */
.section-insight {
    padding: 80px 0;
    background: var(--primary);
    color: white;
}

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

.insight-content .section-label {
    color: var(--secondary);
}

.insight-content .section-title {
    color: white;
    font-size: 32px;
}

.insight-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.insight-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 5px;
}

/* Trust Section */
.section-trust {
    padding: 100px 0;
    background: var(--accent);
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.trust-card h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 15px;
}

.trust-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* Testimonials */
.section-testimonials {
    padding: 100px 0;
    background: var(--light);
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    position: relative;
}

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

.testimonial-text {
    padding-top: 30px;
    font-size: 16px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

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

.author-info h4 {
    font-size: 16px;
    color: var(--dark);
}

.author-info span {
    font-size: 13px;
    color: var(--text-light);
}

/* Benefits Section */
.section-benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--light) 100%);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 50px auto 0;
}

.benefit-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

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

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

.benefit-content p {
    color: var(--text-light);
    font-size: 16px;
}

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

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

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

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

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

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

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-content p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 20px;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.price-note {
    font-size: 12px;
    color: var(--text-light);
}

/* CTA Section */
.section-cta {
    padding: 100px 0;
    background: var(--primary);
    text-align: center;
}

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

.cta-content .section-title {
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    margin-bottom: 35px;
}

.btn-cta {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 18px 50px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: var(--gold);
    color: white;
    transform: scale(1.05);
}

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

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

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

.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(--accent);
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

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

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

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

/* Ingredients Section */
.section-ingredients {
    padding: 80px 0;
    background: var(--light);
}

.ingredients-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
}

.ingredient-card {
    flex: 1;
    min-width: 220px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--accent);
}

.ingredient-card h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 18px;
}

.ingredient-card p {
    font-size: 14px;
    color: var(--text-light);
}

.reference-link {
    font-size: 12px;
    color: var(--primary);
    display: inline-block;
    margin-top: 10px;
}

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

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--gold);
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
    font-size: 14px;
}

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

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

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

.footer-legal a:hover {
    color: white;
}

/* References */
.references-section {
    background: var(--accent);
    padding: 40px 0;
}

.references-list {
    max-width: 800px;
    margin: 0 auto;
}

.references-list h4 {
    margin-bottom: 20px;
    color: var(--dark);
}

.references-list ol {
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--text-light);
}

.references-list a {
    color: var(--primary);
    word-break: break-all;
}

/* Disclaimer */
.disclaimer {
    background: var(--accent);
    padding: 30px;
    margin: 40px auto;
    max-width: 900px;
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: white;
    padding: 20px;
    z-index: 9999;
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    min-width: 250px;
}

.cookie-content p a {
    color: var(--gold);
}

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

.cookie-btn {
    padding: 12px 25px;
    border-radius: 5px;
    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: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-reject:hover {
    border-color: white;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px var(--shadow);
}

.sticky-cta a:hover {
    background: var(--primary-dark);
    color: white;
    transform: scale(1.05);
}

/* About Page */
.page-header {
    background: var(--accent);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 15px;
}

.page-header p {
    color: var(--text-light);
    font-size: 18px;
}

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

.about-section {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-section.reverse {
    flex-direction: row-reverse;
}

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

.about-text h2 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 20px;
}

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

.about-image {
    flex: 1;
    min-width: 300px;
    background-color: var(--secondary);
    border-radius: 15px;
    overflow: hidden;
}

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

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

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 10px;
}

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

/* 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: 100px;
    height: 100px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 50px;
    color: var(--primary);
}

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

.thanks-content p {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 30px;
}

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

.legal-content h1 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 30px;
    text-align: center;
}

.legal-content h2 {
    font-size: 22px;
    color: var(--dark);
    margin: 30px 0 15px;
}

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

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

.legal-content ul li {
    margin-bottom: 8px;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        display: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

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

    .nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .insight-stats {
        gap: 30px;
    }

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

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

    .footer-grid {
        gap: 30px;
    }

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

    .sticky-cta a {
        padding: 12px 20px;
        font-size: 14px;
    }
}
