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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

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

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

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

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

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

.btn-accept, .btn-reject {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #27ae60;
    color: white;
}

.btn-accept:hover {
    background: #229954;
}

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

.btn-reject:hover {
    background: rgba(255,255,255,0.1);
}

.header-sticky {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 1000;
    border-bottom: 1px solid #e8e8e8;
}

.container-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    background: #ecf0f1;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 500;
}

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

.main-nav a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #2c3e50;
}

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

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52,73,94,0.7) 0%, rgba(44,62,80,0.5) 100%);
}

.hero-content-center {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 30px;
}

.hero-content-center h1 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    opacity: 0.95;
}

.story-opener {
    padding: 90px 20px;
    background: #f8f9fa;
}

.narrow-container {
    max-width: 720px;
    margin: 0 auto;
}

.opening-line {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.6;
}

.story-opener p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #34495e;
}

.insight-reveal {
    padding: 100px 20px;
    background: white;
}

.split-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 28px;
    line-height: 1.3;
}

.split-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
}

.split-text a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.split-text a:hover {
    text-decoration: underline;
}

.split-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.problem-amplification {
    padding: 90px 20px;
    background: #fef5f1;
}

.problem-amplification h2 {
    font-size: 36px;
    font-weight: 700;
    color: #c0392b;
    margin-bottom: 30px;
    text-align: center;
}

.problem-amplification p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #34495e;
}

.problem-card {
    background: white;
    padding: 32px;
    border-radius: 8px;
    margin: 40px 0;
    box-shadow: 0 4px 12px rgba(192,57,43,0.1);
    border-left: 4px solid #c0392b;
}

.problem-card p {
    font-size: 18px;
    font-weight: 500;
    color: #c0392b;
    margin: 0;
}

.solution-bridge {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.container-wide {
    max-width: 1100px;
    margin: 0 auto;
}

.bridge-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 28px;
    text-align: center;
}

.bridge-content p {
    font-size: 19px;
    text-align: center;
    margin-bottom: 50px;
    opacity: 0.95;
}

.bridge-content img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    background-color: #5a67d8;
    object-fit: cover;
}

.trust-building {
    padding: 90px 20px;
    background: white;
}

.trust-building h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 26px;
    text-align: center;
}

.trust-building p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #34495e;
}

.social-proof {
    padding: 100px 20px;
    background: #f8f9fa;
}

.testimonials-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #7f8c8d;
}

.benefits-reveal {
    padding: 100px 20px;
    background: white;
}

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

.benefits-reveal h2 {
    font-size: 40px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 60px;
    text-align: center;
}

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

.benefit-block {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.benefit-block h4 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 14px;
}

.benefit-block p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.6;
}

.product-showcase {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #f8f9fa 0%, white 100%);
}

.product-showcase h2 {
    font-size: 40px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 60px;
    text-align: center;
}

.products-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.product-item {
    min-width: 340px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-6px);
}

.product-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.product-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin: 24px 24px 12px;
}

.product-item p {
    font-size: 15px;
    color: #7f8c8d;
    margin: 0 24px 16px;
    line-height: 1.5;
}

.product-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 24px;
}

.btn-select {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select:hover {
    background: #2980b9;
}

.ingredients-section {
    padding: 90px 20px;
    background: #f0f7ff;
}

.ingredients-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.ingredients-section > div > p {
    font-size: 17px;
    color: #34495e;
    margin-bottom: 30px;
    text-align: center;
}

.ingredients-list {
    list-style: none;
    padding: 0;
}

.ingredients-list li {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 18px;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.ingredients-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.ingredients-list a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.ingredients-list a:hover {
    text-decoration: underline;
}

.cta-immersive {
    padding: 120px 20px;
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
    color: white;
}

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

.cta-centered h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-centered p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-primary-large {
    padding: 18px 48px;
    background: white;
    color: #16a085;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.form-section {
    padding: 100px 20px;
    background: white;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    text-align: center;
}

.form-container > p {
    font-size: 17px;
    color: #7f8c8d;
    margin-bottom: 40px;
    text-align: center;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #2980b9;
}

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

.disclaimer-text {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.7;
    text-align: center;
}

.main-footer {
    background: #2c3e50;
    color: white;
    padding: 60px 20px 30px;
}

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column p,
.footer-column li {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-column ul,
.footer-column ol {
    list-style: none;
    padding: 0;
}

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

.footer-column a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 0.7;
}

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

.references-list li {
    margin-bottom: 12px;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .container-header {
        padding: 16px 20px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

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

    .mobile-toggle {
        display: block;
    }

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

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

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

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

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

    .testimonials-flow {
        flex-direction: column;
    }
}