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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

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

.ad-disclosure {
    background: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.header-minimal {
    background: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #c7511f;
}

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

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #c7511f;
}

.hero-visual {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #2c3e50;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(199,81,31,0.85) 0%, rgba(44,62,80,0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    padding: 40px;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
}

.story-intro {
    padding: 80px 20px;
    background: #f8f9fa;
}

.story-intro h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.3;
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #495057;
}

.insight-section {
    padding: 100px 20px;
}

.insight-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-image {
    flex: 1;
    background-color: #e9ecef;
}

.insight-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.insight-content {
    flex: 1;
}

.insight-content h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #c7511f;
}

.insight-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #495057;
}

.benefits-reveal {
    padding: 80px 20px;
    background: #2c3e50;
    color: #ffffff;
}

.benefits-reveal h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
}

.benefits-asymmetric {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-card {
    background: #ffffff;
    color: #2c3e50;
    padding: 30px;
    border-radius: 8px;
}

.benefit-card.large {
    flex: 1 1 100%;
    background-color: #f8f9fa;
}

.benefit-card.large img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 4px;
    object-fit: cover;
}

.benefit-card.small {
    flex: 1 1 calc(50% - 15px);
}

.benefit-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #c7511f;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
}

.social-proof-inline {
    padding: 80px 20px;
    background: #fff5f0;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    padding: 30px;
    background: #ffffff;
    border-left: 4px solid #c7511f;
}

.quote {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 12px;
    color: #495057;
}

.author {
    font-size: 15px;
    font-weight: 600;
    color: #6c757d;
}

.products-showcase {
    padding: 100px 20px;
}

.products-showcase h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 60px;
}

.products-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.product-card {
    flex: 1 1 calc(50% - 20px);
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #e9ecef;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.product-info p {
    font-size: 16px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-price {
    font-size: 32px;
    font-weight: 700;
    color: #c7511f;
    margin-bottom: 20px;
}

.cta-button {
    width: 100%;
    background: #c7511f;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #a84318;
}

.trust-building {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.trust-item {
    flex: 1;
    text-align: center;
    padding: 30px;
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #c7511f;
}

.trust-item p {
    font-size: 15px;
    color: #6c757d;
}

.order-section {
    padding: 100px 20px;
    background: #2c3e50;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #6c757d;
    margin-bottom: 40px;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c7511f;
}

.form-group input[readonly] {
    background: #e9ecef;
    cursor: not-allowed;
}

.submit-button {
    background: #c7511f;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #a84318;
}

.disclaimer-section {
    padding: 60px 20px;
    background: #fff5f0;
}

.disclaimer {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    text-align: center;
    font-style: italic;
}

.site-footer {
    background: #1a252f;
    color: #ffffff;
    padding: 60px 20px 20px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #c7511f;
}

.footer-col p {
    font-size: 14px;
    color: #adb5bd;
}

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

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

.footer-col ul li a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #343a40;
}

.footer-bottom p {
    font-size: 13px;
    color: #6c757d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a252f;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    margin: 0;
}

.cookie-content a {
    color: #c7511f;
    text-decoration: underline;
}

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

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

.cookie-accept {
    background: #c7511f;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #a84318;
}

.cookie-reject {
    background: #495057;
    color: #ffffff;
}

.cookie-reject:hover {
    background: #343a40;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: #f8f9fa;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #c7511f;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #495057;
}

.thanks-button {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #c7511f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-button:hover {
    background: #a84318;
}

.contact-page {
    padding: 80px 20px;
}

.contact-page h1 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 600px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #c7511f;
}

.contact-item p {
    font-size: 16px;
    color: #495057;
}

.legal-page {
    padding: 80px 20px;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #495057;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #6c757d;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #495057;
    line-height: 1.7;
}

.legal-page ul {
    margin: 16px 0 16px 30px;
    color: #495057;
}

.legal-page ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

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

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

    .benefits-asymmetric {
        flex-direction: column;
    }

    .benefit-card.small {
        flex: 1 1 100%;
    }

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

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

    .product-card {
        flex: 1 1 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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