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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 0;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a5f7a;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

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

.nav-links a:hover {
    color: #1a5f7a;
}

.ad-label {
    font-size: 0.75rem;
    background: #e8f4f8;
    color: #1a5f7a;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-weight: 600;
}

.hero-visual {
    position: relative;
    height: 90vh;
    min-height: 600px;
    margin-top: 70px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #d4e7ed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.75), rgba(57, 125, 149, 0.65));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 4rem;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    max-width: 900px;
}

.hero-overlay p {
    font-size: 1.5rem;
    color: #f0f8ff;
    max-width: 700px;
}

.story-intro {
    padding: 8rem 2rem;
    background: #f9fafb;
}

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

.narrow-content p {
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
    color: #34495e;
}

.visual-break {
    height: 60vh;
    min-height: 500px;
    position: relative;
}

.image-section {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #c9dce1;
}

.problem-amplification {
    padding: 7rem 2rem;
    background: #ffffff;
}

.content-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.content-wrap h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a5f7a;
    font-weight: 700;
}

.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.text-col {
    flex: 1;
}

.text-col p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.image-col {
    flex: 1;
}

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

.insight-reveal {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #e8f4f8 0%, #d1e9f0 100%);
}

.insight-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a5f7a;
}

.insight-reveal a {
    color: #1a5f7a;
    font-weight: 600;
}

.trust-building {
    padding: 7rem 2rem;
    background: #ffffff;
}

.ingredient-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.ingredient-card {
    flex: 1;
    min-width: 280px;
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #1a5f7a;
}

.ingredient-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.ingredient-card p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.testimonials-inline {
    padding: 6rem 2rem;
    background: #2c3e50;
}

.testimonial {
    margin-bottom: 3rem;
}

.quote {
    font-size: 1.4rem;
    font-style: italic;
    color: #e8f4f8;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.author {
    color: #9fb8c4;
    font-size: 1rem;
}

.benefits-visual {
    padding: 7rem 2rem;
    background: #f9fafb;
}

.benefits-layout {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.benefit-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    background-color: #d4e7ed;
}

.benefit-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefit-item p {
    font-size: 1rem;
    color: #5a6c7d;
}

.pricing-reveal {
    padding: 8rem 2rem;
    background: #ffffff;
}

.pricing-reveal h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a5f7a;
}

.pricing-reveal > .narrow-content > p {
    text-align: center;
    margin-bottom: 4rem;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #e1e8ed;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: #1a5f7a;
    box-shadow: 0 8px 24px rgba(26, 95, 122, 0.12);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a5f7a;
    margin: 1.5rem 0;
}

.cta-service {
    background: #1a5f7a;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.cta-service:hover {
    background: #15495e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 95, 122, 0.3);
}

.form-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #e8f4f8 0%, #d1e9f0 100%);
}

.form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a5f7a;
}

#selected-service-display {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 600;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #d1e9f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: #ffffff;
}

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

.btn-submit {
    background: #1a5f7a;
    color: #ffffff;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: #15495e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 95, 122, 0.3);
}

.final-cta {
    padding: 6rem 2rem;
    background: #2c3e50;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.final-cta p {
    color: #e8f4f8;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-scroll {
    display: inline-block;
    background: #ffffff;
    color: #1a5f7a;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-scroll:hover {
    background: #e8f4f8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.2);
}

footer {
    background: #1a2634;
    color: #a8b7c7;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

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

.footer-col li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    color: #a8b7c7;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.references {
    font-size: 0.85rem;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 38, 52, 0.97);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    z-index: 2000;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
    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: 2rem;
}

.cookie-content p {
    color: #e8f4f8;
    font-size: 0.95rem;
    margin: 0;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

#cookie-accept {
    background: #1a5f7a;
    color: #ffffff;
}

#cookie-accept:hover {
    background: #15495e;
}

#cookie-reject {
    background: transparent;
    color: #e8f4f8;
    border: 2px solid #5a6c7d;
}

#cookie-reject:hover {
    border-color: #7fb3d5;
    color: #ffffff;
}

.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    margin-top: 70px;
    overflow: hidden;
}

.page-hero.small {
    height: 40vh;
    min-height: 300px;
}

.about-intro {
    padding: 6rem 2rem;
    background: #ffffff;
}

.values-section {
    padding: 6rem 2rem;
    background: #f9fafb;
}

.values-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
}

.value-item h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: #1a5f7a;
}

.mission-visual {
    background: #ffffff;
}

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

.image-side {
    flex: 1;
    background-color: #d4e7ed;
}

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

.text-side {
    flex: 1;
    padding: 5rem 4rem;
}

.text-side h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a5f7a;
}

.text-side p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.process-section {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, #e8f4f8 0%, #d1e9f0 100%);
}

.process-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 240px;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1a5f7a;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.products-intro {
    padding: 6rem 2rem;
    background: #ffffff;
}

.products-catalog {
    padding: 4rem 2rem 7rem;
    background: #f9fafb;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.product-item {
    display: flex;
    gap: 4rem;
    align-items: center;
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
}

.product-item.reverse {
    flex-direction: row-reverse;
}

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

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

.product-info {
    flex: 1;
}

.product-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a5f7a;
}

.product-benefits,
.product-ingredients {
    margin-top: 1.5rem;
}

.product-benefits h4,
.product-ingredients h4 {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    color: #2c3e50;
}

.product-benefits ul {
    list-style: none;
    padding-left: 0;
}

.product-benefits li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: #5a6c7d;
}

.product-benefits li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: bold;
}

.product-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a5f7a;
    margin: 1.5rem 0;
}

.btn-product {
    background: #1a5f7a;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-product:hover {
    background: #15495e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 95, 122, 0.3);
}

.product-cta {
    padding: 6rem 2rem;
    background: #2c3e50;
    text-align: center;
}

.product-cta h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.product-cta p {
    color: #e8f4f8;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-contact {
    display: inline-block;
    background: #ffffff;
    color: #1a5f7a;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s;
}

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

.contact-section {
    padding: 6rem 2rem;
    background: #f9fafb;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a5f7a;
}

.info-block p {
    color: #5a6c7d;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #d4e7ed;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 95, 122, 0.9);
    padding: 1.5rem;
    text-align: center;
    color: #ffffff;
    font-weight: 600;
}

.faq-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a5f7a;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.faq-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.faq-item a {
    color: #1a5f7a;
    text-decoration: underline;
}

.thanks-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #e8f4f8 0%, #d1e9f0 100%);
    min-height: calc(100vh - 70px);
    margin-top: 70px;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 3rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 2.5rem;
}

.order-details {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 600px;
    text-align: left;
}

.order-details h3 {
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.next-steps {
    margin: 3rem auto;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.next-steps ol {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 2;
    padding-left: 1.5rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-primary {
    background: #1a5f7a;
    color: #ffffff;
}

.btn-primary:hover {
    background: #15495e;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #ffffff;
    color: #1a5f7a;
    border: 2px solid #1a5f7a;
}

.btn-secondary:hover {
    background: #e8f4f8;
}

.legal-page {
    padding: 8rem 2rem 4rem;
    background: #ffffff;
    margin-top: 70px;
}

.legal-page h1 {
    font-size: 2.8rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.legal-page .updated {
    color: #7a8a99;
    font-size: 0.95rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-page h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-page h3 {
    font-size: 1.5rem;
    color: #1a5f7a;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page p {
    margin-bottom: 1.2rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.legal-page ul,
.legal-page ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: #5a6c7d;
}

.legal-page li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-page a {
    color: #1a5f7a;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #d1e9f0;
}

.cookie-table th {
    background: #e8f4f8;
    color: #1a5f7a;
    font-weight: 600;
}

.cookie-table td {
    color: #5a6c7d;
}

@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .hero-overlay p {
        font-size: 1.2rem;
    }

    .split-content,
    .split-layout,
    .contact-layout,
    .product-item {
        flex-direction: column;
    }

    .product-item.reverse {
        flex-direction: column;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }
}