* {
    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-color: #ffffff;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-medium {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 10px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.hero-immersive {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.85), rgba(41, 128, 185, 0.75));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

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

.hero-lead {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 400;
}

.section-narrative {
    padding: 80px 0;
    background-color: #ffffff;
}

.narrative-block {
    margin-bottom: 64px;
}

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

.narrative-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.image-embed {
    margin: 64px 0;
    background-color: #ecf0f1;
}

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

.section-insight {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.insight-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

.insight-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
}

.insight-visual {
    margin-top: 48px;
    background-color: #dee2e6;
}

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

.section-solution {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-solution h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.section-intro {
    font-size: 20px;
    text-align: center;
    margin-bottom: 64px;
    color: #34495e;
}

.products-flow {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.product-card-flow {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.product-card-flow:nth-child(even) {
    flex-direction: row-reverse;
}

.product-image {
    flex: 1;
    min-width: 0;
    background-color: #e9ecef;
}

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

.product-details {
    flex: 1;
    min-width: 0;
}

.product-details h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.product-details p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #34495e;
}

.product-benefit {
    font-weight: 600;
    color: #27ae60;
}

.btn-select {
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 12px;
}

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

.section-trust {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-trust h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
}

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.testimonial-item {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

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

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

.section-form-reveal {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-form-reveal h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

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

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

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

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

.form-field input,
.form-field select {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    background-color: #ffffff;
}

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

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

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

.section-disclaimer {
    padding: 48px 0;
    background-color: #ecf0f1;
}

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

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

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

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

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

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

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

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

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

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #34495e;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-primary {
    padding: 12px 24px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #229954;
}

.btn-secondary {
    padding: 12px 24px;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
    display: inline-block;
}

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

.page-hero {
    padding: 80px 0 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #2c3e50;
}

.about-story {
    padding: 80px 0;
    background-color: #ffffff;
}

.story-content {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.story-content img {
    flex: 1;
    width: 50%;
    height: auto;
    object-fit: cover;
    background-color: #e9ecef;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.about-mission {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-mission h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.about-mission p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
}

.about-values {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-values h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

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

.services-catalog {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-item {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    margin-bottom: 80px;
}

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

.service-visual {
    flex: 1;
    min-width: 0;
    background-color: #e9ecef;
}

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

.service-info {
    flex: 1;
    min-width: 0;
}

.service-info h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-info p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #34495e;
}

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

.service-features li {
    font-size: 16px;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #34495e;
}

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

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 16px;
}

.cta-services {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-services h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-services p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #34495e;
}

.contact-main {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

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

.contact-block {
    margin-bottom: 32px;
}

.contact-block h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.email-display {
    color: #34495e;
    user-select: all;
}

.contact-visual {
    flex: 1;
    background-color: #e9ecef;
}

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

.contact-note {
    padding: 48px 0;
    background-color: #f8f9fa;
}

.contact-note p {
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.thanks-main {
    padding: 120px 0;
    background-color: #f8f9fa;
}

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

.thanks-content h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 48px;
    color: #34495e;
}

.thanks-details {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 48px;
    border-left: 4px solid #3498db;
    text-align: left;
}

.thanks-next h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

.thanks-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 48px;
}

.thanks-steps li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #34495e;
}

.thanks-contact {
    margin-bottom: 48px;
}

.thanks-contact p {
    font-size: 16px;
    color: #34495e;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-date,
.legal-intro {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 32px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.legal-page ul {
    margin-bottom: 16px;
    padding-left: 32px;
}

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

.legal-page a {
    color: #3498db;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #2980b9;
}

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

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

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

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

    .product-card-flow,
    .product-card-flow:nth-child(even),
    .story-content,
    .service-item,
    .service-item.reverse,
    .contact-layout {
        flex-direction: column;
    }

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

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

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

    .thanks-actions {
        flex-direction: column;
    }
}