* {
    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: #2c3e50;
    background: #fff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.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 {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

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

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

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

.btn-reject {
    background: #7f8c8d;
    color: #fff;
}

.btn-reject:hover {
    background: #6c7a7b;
}

.floating-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 16px 0;
}

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

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

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

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

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

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 12px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #2c3e50;
}

.hero-full {
    margin-top: 70px;
}

.hero-image {
    height: 85vh;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #34495e;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: #fff;
    max-width: 720px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-text p {
    font-size: 22px;
    margin-bottom: 36px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 16px 48px;
    background: #e74c3c;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(231, 76, 60, 0.3);
}

.story-intro {
    padding: 100px 0;
    background: #fff;
}

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

.story-intro p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: #34495e;
}

.reference {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.reference:hover {
    text-decoration: underline;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 48px 0;
    border-radius: 8px;
    object-fit: cover;
}

.problem-amplify {
    padding: 100px 0;
    background: #ecf0f1;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.split-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #34495e;
}

.problem-list {
    list-style: none;
    margin-top: 32px;
}

.problem-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 17px;
    color: #2c3e50;
}

.problem-list li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #bdc3c7;
}

.insight-section {
    padding: 100px 0;
    background: #fff;
}

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

.insight-section > p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: #34495e;
    text-align: center;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.ingredient-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 48px;
}

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

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

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

.trust-building {
    padding: 100px 0;
    background: #2c3e50;
    color: #fff;
}

.trust-building h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 36px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial cite {
    font-size: 15px;
    opacity: 0.8;
    font-style: normal;
}

.benefits-reveal {
    padding: 100px 0;
    background: #fff;
}

.benefits-reveal h2 {
    font-size: 38px;
    margin-bottom: 48px;
    color: #2c3e50;
}

.timeline-benefits {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.benefit-point {
    padding: 24px;
    background: #ecf0f1;
    border-radius: 6px;
    font-size: 17px;
    line-height: 1.7;
    color: #2c3e50;
}

.benefit-point strong {
    color: #3498db;
    display: block;
    margin-bottom: 8px;
}

.services-pricing {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #34495e;
    margin-bottom: 60px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    background: #fff;
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.service-card.featured {
    border: 3px solid #3498db;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #3498db;
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

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

.service-card > p {
    font-size: 15px;
    line-height: 1.6;
    color: #7f8c8d;
    margin-bottom: 24px;
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 24px;
}

.price span {
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 400;
}

.service-card ul {
    list-style: none;
    margin-bottom: 32px;
}

.service-card ul li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 15px;
    color: #34495e;
}

.service-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

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

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

.select-service:active {
    transform: scale(0.98);
}

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

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

.form-section > div > p {
    text-align: center;
    font-size: 18px;
    color: #34495e;
    margin-bottom: 48px;
}

.order-form {
    max-width: 540px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 48px;
    border-radius: 8px;
}

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

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

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

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

.selected-service-display {
    background: #3498db;
    color: #fff;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 24px;
    display: none;
}

.selected-service-display.active {
    display: block;
}

.selected-service-display h4 {
    margin-bottom: 8px;
    font-size: 18px;
}

.selected-service-display p {
    margin: 0;
    font-size: 15px;
    opacity: 0.9;
}

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

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

.btn-submit:active {
    transform: scale(0.98);
}

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

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

.final-cta p {
    font-size: 19px;
    color: #34495e;
    margin-bottom: 36px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 48px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.3);
}

.disclaimer-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.7;
    color: #7f8c8d;
    border-left: 3px solid #e67e22;
    padding-left: 20px;
}

.references-section {
    padding: 60px 0;
    background: #fff;
}

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

.references-list {
    list-style-position: inside;
    font-size: 14px;
    line-height: 2;
}

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

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

.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 24px;
}

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

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

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

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

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

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

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

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

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

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.thanks-container {
    padding: 120px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

.thanks-container p {
    font-size: 19px;
    color: #34495e;
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-details {
    background: #ecf0f1;
    padding: 32px;
    border-radius: 8px;
    margin: 32px 0;
    max-width: 540px;
}

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

.thanks-details p {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 8px;
}

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

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

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

.page-content h2 {
    font-size: 32px;
    margin: 48px 0 24px;
    color: #2c3e50;
}

.page-content h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: #34495e;
}

.page-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 32px;
}

.page-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #34495e;
}

.contact-info {
    background: #f8f9fa;
    padding: 48px;
    border-radius: 8px;
    margin: 48px 0;
}

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

.contact-info p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-info strong {
    color: #3498db;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

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

    .hero-text p {
        font-size: 18px;
    }

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

    .service-cards {
        flex-direction: column;
        align-items: stretch;
    }

    .service-card {
        max-width: none;
    }

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

    .story-intro h2,
    .insight-section h2,
    .benefits-reveal h2 {
        font-size: 30px;
    }

    .services-pricing h2,
    .final-cta h2 {
        font-size: 32px;
    }
}
