* {
    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.6;
    color: #333;
    background: #fff;
}

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

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

.header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f8f9fa;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2980b9;
}

.hero-narrative {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1a1a1a;
}

.hero-narrative img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 40px;
}

.hero-text-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.hero-text-narrow h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-intro {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 300;
}

.story-block {
    padding: 100px 20px;
    background: #fafafa;
}

.story-block h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.story-block p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #555;
}

.story-block img {
    width: 100%;
    margin: 40px 0;
    border-radius: 8px;
    background: #e0e0e0;
}

.problem-amplify {
    padding: 120px 20px;
    background: #fff;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #e74c3c;
    font-weight: 700;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.split-image {
    flex: 1;
    background: #f0f0f0;
}

.split-image img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

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

.insight-reveal h2 {
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 700;
}

.insight-reveal p {
    font-size: 19px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.cta-inline {
    margin-top: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 18px 40px;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    border-radius: 50px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.trust-builder {
    padding: 100px 20px;
    background: #fff;
}

.trust-builder h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.ingredient-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.ingredient-card {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    border-left: 4px solid #3498db;
}

.ingredient-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.ingredient-card p:first-of-type {
    font-weight: 700;
    color: #3498db;
    margin-bottom: 15px;
}

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

.testimonials-inline {
    padding: 100px 20px;
    background: #ecf0f1;
}

.testimonials-inline h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.testimonial {
    background: #fff;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 12px;
    border-left: 5px solid #16a085;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 700;
    color: #16a085;
    font-style: normal;
}

.benefits-cascade {
    padding: 100px 20px;
    background: #fff;
}

.benefits-cascade h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 70px;
    color: #2c3e50;
}

.benefits-stagger {
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.benefit-item img {
    flex: 1;
    border-radius: 12px;
    background: #e0e0e0;
}

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.benefit-text p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
}

.benefit-left {
    flex-direction: row;
}

.benefit-right {
    flex-direction: row-reverse;
}

.pricing-reveal {
    padding: 100px 20px;
    background: #f8f9fa;
}

.pricing-reveal h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.pricing-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.pricing-cards {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.price-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    border: 2px solid #e0e0e0;
    position: relative;
    transition: all 0.3s;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.price-card.featured {
    border-color: #3498db;
    box-shadow: 0 10px 30px rgba(52,152,219,0.2);
}

.price-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-desc {
    font-size: 15px;
    color: #777;
    margin-bottom: 25px;
    min-height: 60px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    color: #555;
}

.price {
    font-size: 38px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 25px;
}

.btn-select {
    width: 100%;
    padding: 15px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #e74c3c;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

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

.form-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
    color: #2c3e50;
}

.form-section > div > p {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

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

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

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

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

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

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

.form-checkbox {
    margin: 30px 0;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.form-checkbox input {
    margin-top: 5px;
}

.form-checkbox label {
    font-size: 14px;
    color: #555;
}

.form-checkbox a {
    color: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

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

.disclaimer-section {
    padding: 60px 20px;
    background: #fff8dc;
    border-top: 3px solid #f39c12;
    border-bottom: 3px solid #f39c12;
}

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

.references-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.references-section h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.references-list {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

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

.references-list a {
    color: #3498db;
    text-decoration: none;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 20px;
}

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

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

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

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

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

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #3498db;
}

.footer-col p {
    color: #bdc3c7;
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: #fff;
    padding: 25px;
    z-index: 1000;
    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;
    margin: 0;
    font-size: 15px;
}

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

.btn-cookie {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.btn-cookie.reject {
    background: #95a5a6;
    color: #fff;
}

.btn-cookie.reject:hover {
    background: #7f8c8d;
}

.page-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

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

.lead {
    font-size: 20px;
    font-weight: 300;
}

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

.about-content img {
    width: 100%;
    margin: 40px 0;
    border-radius: 8px;
    background: #e0e0e0;
}

.about-content h2 {
    font-size: 32px;
    margin: 50px 0 20px;
    color: #2c3e50;
}

.about-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

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

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

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-item p {
    font-size: 15px;
    color: #666;
}

.services-detailed {
    padding: 80px 20px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-description {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #2c3e50;
}

.composition-list {
    list-style: none;
    margin-bottom: 25px;
}

.composition-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.service-detail-image {
    flex: 1;
    background: #e0e0e0;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
}

.btn-service {
    display: inline-block;
    padding: 15px 35px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.badge-inline {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.additional-services {
    margin-top: 80px;
}

.additional-services h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.additional-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.additional-card {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.additional-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.additional-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

.additional-price {
    font-size: 26px;
    font-weight: 800;
    color: #27ae60;
}

.service-cta {
    padding: 80px 20px;
    background: #ecf0f1;
    text-align: center;
}

.service-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-cta p {
    font-size: 17px;
    color: #666;
    margin-bottom: 30px;
}

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

.contact-layout {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #3498db;
}

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.contact-item .note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 10px;
}

.contact-map {
    flex: 1;
    background: #e0e0e0;
}

.contact-map img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.map-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.map-info p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}

.map-info ul {
    list-style: none;
    margin-bottom: 15px;
}

.map-info li {
    padding: 5px 0;
    color: #555;
    font-size: 14px;
}

.faq-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.faq-item {
    background: #fff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 20px;
    min-height: 60vh;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 30px;
}

.thanks-lead {
    font-size: 20px;
    color: #555;
    margin-bottom: 50px;
}

.thanks-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-steps {
    list-style: none;
}

.thanks-steps li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

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

.thanks-note {
    background: #fff3cd;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-note p {
    font-size: 15px;
    color: #7f6f4f;
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background: #95a5a6;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

.thanks-additional {
    text-align: left;
}

.thanks-additional h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.thanks-additional p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.resource-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.resource-links a {
    padding: 10px 20px;
    background: #ecf0f1;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s;
}

.resource-links a:hover {
    background: #bdc3c7;
}

.legal-content {
    padding: 60px 20px;
    background: #fff;
}

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.legal-date {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #34495e;
}

.legal-content h4 {
    font-size: 18px;
    margin: 25px 0 12px;
    color: #555;
}

.legal-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-content ul,
.legal-content ol {
    margin: 15px 0 25px 20px;
    color: #555;
    line-height: 1.7;
}

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

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-text-narrow h1 {
        font-size: 32px;
    }

    .hero-intro {
        font-size: 17px;
    }

    .split-layout,
    .benefit-item,
    .service-detail-card,
    .contact-layout {
        flex-direction: column;
    }

    .benefit-right {
        flex-direction: column;
    }

    .story-block h2,
    .split-text h2,
    .insight-reveal h2 {
        font-size: 28px;
    }

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

    .pricing-cards {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-narrative {
        height: 60vh;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }
}