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

.ad-disclosure {
    background-color: #f8f9fa;
    color: #495057;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    border-bottom: 1px solid #dee2e6;
}

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 32px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 48px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.nav-links a {
    color: #495057;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-cta:hover {
    background-color: #333333;
}

.hero-full {
    position: relative;
    height: 90vh;
    margin-top: 40px;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
}

.hero-content-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    width: 90%;
    max-width: 900px;
}

.hero-content-center h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.story-intro {
    padding: 120px 20px;
    background-color: #f8f9fa;
}

.story-narrow {
    max-width: 740px;
    margin: 0 auto;
}

.story-narrow h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.story-narrow p {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 24px;
}

.insight-block {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.insight-text {
    flex: 1;
}

.insight-text h3 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.insight-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 20px;
}

.insight-image {
    flex: 1;
    background-color: #f8f9fa;
}

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

.ref-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #1a1a1a;
    transition: opacity 0.3s ease;
}

.ref-link:hover {
    opacity: 0.7;
}

.problem-amplify {
    padding: 120px 20px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.problem-amplify .story-narrow h2 {
    color: #ffffff;
}

.problem-amplify .story-narrow p {
    color: rgba(255, 255, 255, 0.85);
}

.solution-reveal {
    padding: 100px 20px;
    background-color: #ffffff;
}

.solution-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: stretch;
}

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

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

.solution-text-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solution-text-side h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.solution-text-side p {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 20px;
}

.benefit-list {
    list-style: none;
    margin: 32px 0;
}

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

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
}

.inline-cta {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 16px;
    transition: background-color 0.3s ease;
}

.inline-cta:hover {
    background-color: #333333;
}

.trust-elements {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

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

.trust-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
}

.trust-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.trust-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
}

.testimonials-inline {
    padding: 120px 20px;
    background-color: #ffffff;
}

.testimonials-inline h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 80px;
    color: #1a1a1a;
}

.testimonial-block {
    margin-bottom: 60px;
    padding: 40px 0;
    border-left: 4px solid #1a1a1a;
    padding-left: 40px;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.6;
    color: #1a1a1a;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 16px;
    color: #6c757d;
    font-weight: 500;
}

.products-section {
    padding: 120px 20px;
    background-color: #f8f9fa;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-center {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 80px;
    color: #1a1a1a;
}

.product-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.product-card {
    flex: 0 1 calc(33.333% - 30px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-image {
    background-color: #f8f9fa;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.product-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 24px 24px 12px 24px;
    color: #1a1a1a;
}

.product-card p {
    font-size: 15px;
    line-height: 1.5;
    color: #6c757d;
    margin: 0 24px 16px 24px;
}

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

.select-product {
    width: calc(100% - 48px);
    margin: 0 24px 24px 24px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-product:hover {
    background-color: #333333;
}

.form-section {
    padding: 120px 20px;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 48px;
}

.order-form {
    background-color: #f8f9fa;
    padding: 48px;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    background-color: #ffffff;
    color: #1a1a1a;
    transition: border-color 0.3s ease;
}

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

.form-submit {
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: #333333;
}

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
    font-style: italic;
    text-align: center;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 20px 32px 20px;
}

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

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.references-list li a {
    word-break: break-word;
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    color: #ffffff;
    padding: 24px;
    z-index: 10000;
    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: 32px;
    flex-wrap: wrap;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

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

.cookie-btn.reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.page-header {
    padding: 160px 20px 80px 20px;
    text-align: center;
    background-color: #f8f9fa;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.page-header p {
    font-size: 20px;
    color: #6c757d;
}

.about-story {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.about-image-left {
    flex: 1;
    background-color: #f8f9fa;
}

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

.about-text-right {
    flex: 1;
}

.about-text-right h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-text-right p {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 20px;
}

.values-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.value-block {
    margin-bottom: 48px;
}

.value-block h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.value-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
}

.team-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.team-image-center {
    margin: 48px 0;
    background-color: #f8f9fa;
}

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

.services-intro {
    padding: 80px 20px;
    background-color: #ffffff;
}

.services-list {
    padding: 60px 20px 120px 20px;
    background-color: #ffffff;
}

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

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

.service-image {
    flex: 1;
    background-color: #f8f9fa;
}

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

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 20px;
}

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

.service-features li {
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 24px 0;
}

.service-cta {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #333333;
}

.cta-final {
    padding: 100px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.inline-cta-large {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    padding: 18px 48px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 24px;
    transition: background-color 0.3s ease;
}

.inline-cta-large:hover {
    background-color: #333333;
}

.contact-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-left {
    flex: 1;
}

.contact-info-left h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

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

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

.contact-image-right {
    flex: 1;
    background-color: #f8f9fa;
}

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

.contact-map-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.legal-content {
    padding: 80px 20px 120px 20px;
    background-color: #ffffff;
}

.legal-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.legal-content ul {
    margin: 16px 0 24px 32px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 8px;
}

.legal-content a {
    color: #1a1a1a;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.legal-content a:hover {
    opacity: 0.7;
}

.thanks-section {
    padding: 160px 20px 120px 20px;
    background-color: #ffffff;
    min-height: 70vh;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #28a745;
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px auto;
}

.thanks-container h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 32px;
}

.thanks-product {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 48px;
}

.thanks-product p {
    font-size: 16px;
    color: #495057;
}

.thanks-next {
    text-align: left;
    margin-bottom: 48px;
}

.thanks-next h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-next ul {
    list-style: none;
    margin-left: 0;
}

.thanks-next ul li {
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
}

.thanks-next ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
}

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

.thanks-btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    display: inline-block;
}

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

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

.thanks-btn.secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.thanks-btn.secondary:hover {
    background-color: #f8f9fa;
}

.thanks-contact {
    padding-top: 32px;
    border-top: 1px solid #dee2e6;
}

.thanks-contact p {
    font-size: 14px;
    color: #6c757d;
}

@media (max-width: 1024px) {
    .floating-nav {
        flex-direction: column;
        gap: 24px;
        padding: 20px;
        top: 10px;
        border-radius: 20px;
    }

    .insight-content,
    .solution-container,
    .about-container,
    .contact-container,
    .service-item-full {
        flex-direction: column;
    }

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

    .product-card {
        flex: 0 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

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

    .story-narrow h2,
    .section-title-center {
        font-size: 32px;
    }

    .product-card {
        flex: 0 1 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}
