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

:root {
    --primary-color: #2d5016;
    --secondary-color: #7fa650;
    --accent-color: #c77d3a;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f9f7;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

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

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 90%;
    max-width: 900px;
}

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

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

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

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

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

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

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0.9;
}

.hero-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 40px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 18px 48px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(199, 125, 58, 0.3);
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(199, 125, 58, 0.4);
}

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

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

section {
    position: relative;
}

section:nth-child(even) {
    background-color: var(--bg-light);
}

h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-color);
    line-height: 1.2;
}

h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.story-block {
    padding: 100px 0;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.story-text {
    flex: 1;
}

.story-visual {
    flex: 1;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 12px;
}

.insight-reveal {
    padding: 100px 0;
    background: var(--primary-color);
    color: white;
}

.insight-reveal h2 {
    color: white;
}

.insight-reveal p {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-inline {
    font-size: 24px;
    font-style: italic;
    border-left: 4px solid var(--accent-color);
    padding-left: 30px;
    margin: 40px 0;
    color: rgba(255, 255, 255, 0.95);
}

.value-showcase {
    padding: 100px 0;
}

.showcase-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.value-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    margin-bottom: 20px;
}

.trust-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.testimonial-box {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.testimonial-box p {
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.author {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.curiosity-driver {
    padding: 100px 0;
}

.benefits-deep {
    padding: 100px 0;
    background: var(--bg-light);
}

.benefits-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefit-item {
    display: flex;
    gap: 40px;
    align-items: center;
}

.benefit-item:nth-child(even) {
    flex-direction: row-reverse;
}

.benefit-visual-small {
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    border-radius: 8px;
    flex-shrink: 0;
}

.social-proof {
    padding: 80px 0;
    background: var(--accent-color);
    color: white;
}

.social-proof h3,
.social-proof p {
    color: white;
}

.pricing-reveal {
    padding: 100px 0;
}

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

.product-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
}

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

.product-card.featured {
    border: 3px solid var(--accent-color);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.product-card h4 {
    padding: 20px 20px 10px;
}

.product-card p {
    padding: 0 20px;
    font-size: 16px;
}

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

.btn-select {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.urgency-block {
    padding: 80px 0;
    background: #fff3e0;
}

.urgency-content {
    text-align: center;
}

.urgency-content h3 {
    color: var(--accent-color);
}

.form-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

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

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

.final-cta {
    padding: 100px 0;
    text-align: center;
}

.cta-large {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 20px 60px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-large:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.site-footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

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

.sticky-btn {
    display: block;
    background: var(--accent-color);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(199, 125, 58, 0.4);
    transition: all 0.3s;
}

.sticky-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(199, 125, 58, 0.5);
}

.page-hero {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    margin-top: 80px;
}

.page-hero h1 {
    font-size: 56px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
}

.about-intro,
.services-intro {
    padding: 80px 0;
}

.mission-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.mission-visual {
    flex: 1;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 12px;
}

.values-section {
    padding: 100px 0;
}

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

.value-box {
    flex: 1 1 calc(50% - 15px);
    min-width: 250px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.team-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.impact-section {
    padding: 100px 0;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.stat-box {
    flex: 1;
    text-align: center;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 18px;
    color: var(--text-dark);
}

.cta-about,
.cta-services,
.cta-contact {
    padding: 80px 0;
    text-align: center;
    background: var(--bg-light);
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 48px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.services-intro {
    background: var(--bg-light);
}

.products-catalog {
    padding: 80px 0;
}

.catalog-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 50px;
}

.service-card {
    display: flex;
    gap: 40px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.featured-service {
    border: 3px solid var(--accent-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 10;
}

.service-image {
    width: 40%;
    min-height: 300px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.service-content {
    flex: 1;
    padding: 40px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.btn-service {
    padding: 14px 40px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.guarantee-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-info {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 1;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.info-block a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-block a:hover {
    text-decoration: underline;
}

.contact-visual {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 12px;
}

.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    margin-top: 80px;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 40px;
}

.order-summary {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
}

.product-summary {
    margin-top: 15px;
}

.product-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
}

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

.next-steps {
    text-align: left;
    margin: 40px 0;
}

.next-steps h3 {
    text-align: center;
    margin-bottom: 20px;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 15px 0;
    padding-left: 45px;
    position: relative;
    font-size: 18px;
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 15px;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

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

.reassurance {
    padding: 80px 0;
    background: var(--bg-light);
}

.legal-page {
    padding: 100px 0;
    margin-top: 80px;
}

.legal-page h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.update-date {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page h4 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-page ul,
.legal-page ol {
    margin: 20px 0;
    padding-left: 40px;
}

.legal-page li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.gdpr-table,
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.gdpr-table th,
.gdpr-table td,
.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.gdpr-table th,
.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.gdpr-table td,
.cookie-table td {
    color: var(--text-light);
}

.last-update {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

@media (max-width: 768px) {
    .floating-nav {
        top: 10px;
        padding: 12px 20px;
    }

    .nav-links {
        display: none;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 24px;
    }

    .split-content,
    .showcase-grid,
    .testimonials-row,
    .footer-content,
    .stats-row,
    .contact-layout,
    .thanks-actions {
        flex-direction: column;
    }

    .story-visual,
    .mission-visual {
        height: 250px;
    }

    .benefit-item,
    .benefit-item:nth-child(even) {
        flex-direction: column;
    }

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

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

    .service-card,
    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .service-image {
        width: 100%;
        min-height: 200px;
    }

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

    .page-hero h1 {
        font-size: 36px;
    }

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

    .content-narrow,
    .content-wide {
        padding: 60px 20px;
    }
}
