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

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

.ad-notice {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.floating-nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

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

.nav-links a {
    color: #5a6c7d;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c3e50;
}

.hero-story {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 80px 40px;
    overflow: hidden;
}

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

.hero-content {
    position: relative;
    max-width: 580px;
    z-index: 10;
    padding-right: 60px;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    color: #5a6c7d;
    line-height: 1.6;
}

.story-intro {
    padding: 100px 40px;
    background: #f8f9fa;
}

.narrow-text {
    max-width: 720px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.8;
}

.narrow-text p {
    margin-bottom: 24px;
}

.narrow-text h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.narrow-text h3 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.image-break {
    width: 100%;
    background-color: #dee2e6;
}

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

.problem-deep {
    padding: 110px 40px;
}

.content-offset-left {
    max-width: 1200px;
    margin-left: 80px;
}

.content-offset-left h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.problem-points {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.point-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.point-number {
    font-size: 48px;
    font-weight: 700;
    color: #d6d8db;
    flex-shrink: 0;
}

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

.point-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
}

.insight-reveal {
    background: #2c3e50;
    color: #ffffff;
    padding: 120px 40px;
}

.insight-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 40px;
    margin-bottom: 28px;
    line-height: 1.3;
}

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

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

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

.trust-science {
    padding: 90px 40px;
    background: #f1f3f5;
}

.citation {
    color: #495057;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #adb5bd;
}

.citation:hover {
    color: #2c3e50;
    border-bottom-color: #2c3e50;
}

.testimonials-inline {
    padding: 100px 40px;
    background: #ffffff;
    display: flex;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    padding: 40px;
    background: #f8f9fa;
    border-left: 4px solid #2c3e50;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    color: #495057;
}

.testimonial-author {
    display: block;
    font-size: 15px;
    color: #6c757d;
    font-style: normal;
}

.benefits-reveal {
    padding: 110px 40px;
    background: #ffffff;
}

.benefits-reveal h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 70px;
    color: #1a1a1a;
}

.benefits-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.benefit-card {
    flex: 1;
    background-color: #f8f9fa;
}

.benefit-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.benefit-card h3 {
    font-size: 22px;
    margin: 28px 30px 14px;
    color: #2c3e50;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin: 0 30px 30px;
}

.services-pricing {
    padding: 120px 40px;
    background: #f1f3f5;
}

.services-pricing h2 {
    text-align: center;
    font-size: 46px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 70px;
    color: #5a6c7d;
}

.pricing-cards {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 35px;
}

.price-card {
    flex: 1;
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.price-card.featured {
    border: 2px solid #2c3e50;
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #2c3e50;
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.price-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.price-desc {
    font-size: 15px;
    color: #5a6c7d;
    margin-bottom: 28px;
    line-height: 1.6;
}

.price-features {
    list-style: none;
    margin-bottom: 35px;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 15px;
    color: #495057;
}

.price-features li:before {
    content: "✓ ";
    color: #2c3e50;
    font-weight: 700;
    margin-right: 8px;
}

.price-amount {
    font-size: 38px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
}

.cta-select {
    width: 100%;
    padding: 16px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-select:hover {
    background: #1a252f;
}

.form-section {
    padding: 110px 40px;
    background: #ffffff;
}

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.form-container > p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 45px;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 18px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #1a252f;
}

.references-section {
    padding: 70px 40px;
    background: #f8f9fa;
}

.references-list {
    list-style-position: inside;
    color: #495057;
}

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

.references-list a {
    color: #495057;
    text-decoration: none;
    border-bottom: 1px solid #adb5bd;
}

.references-list a:hover {
    color: #2c3e50;
    border-bottom-color: #2c3e50;
}

.main-footer {
    background: #1a1a1a;
    color: #e9ecef;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1300px;
    margin: 0 auto 30px;
    padding: 25px;
    background: #2c2c2c;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.7;
    color: #adb5bd;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #343a40;
    font-size: 13px;
    color: #6c757d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    color: #ffffff;
    padding: 25px 40px;
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

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

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

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

.btn-cookie.accept {
    background: #2c3e50;
    color: #ffffff;
}

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

.btn-cookie.reject {
    background: #6c757d;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background: #5a6268;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 18px;
}

.thanks-content .service-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
    font-size: 16px;
    color: #2c3e50;
}

.thanks-content a {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 32px;
    background: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-content a:hover {
    background: #1a252f;
}

.page-header {
    background: #2c3e50;
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

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

.page-header p {
    font-size: 18px;
    color: #e9ecef;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.page-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

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

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

.contact-info {
    max-width: 800px;
    margin: 60px auto;
    padding: 45px;
    background: #f8f9fa;
    border-radius: 8px;
}

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

.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #495057;
}

.contact-info strong {
    color: #2c3e50;
}

@media (max-width: 1024px) {
    .hero-image {
        width: 50%;
    }

    .insight-container,
    .testimonials-inline,
    .benefits-grid,
    .pricing-cards {
        flex-direction: column;
    }

    .footer-content {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

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

    .hero-story {
        flex-direction: column;
        min-height: auto;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: 300px;
        order: -1;
    }

    .hero-content {
        padding-right: 0;
        padding-top: 40px;
    }

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

    .content-offset-left {
        margin-left: 0;
    }

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