

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

        :root {
            --primary: #1a1a1a;
            --accent: #3964ce;
            --accent-light: #818cf8;
            --secondary: #10b981;
            --text: #1f2937;
            --text-light: #6b7280;
            --bg: #ffffff;
            --bg-alt: #fafafa;
            --border: #e5e7eb;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background: var(--bg);
        }

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

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

        /* Header */
        header {
            background: rgba(255,255,255,0.95);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: -0.5px;
            background: url(/img/logo.svg) no-repeat;
            width: 199px;
            height: 30px;
            background-size: contain;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-ctas {
            display: flex;
            gap: 1rem;
                position: relative;
    left: 20px;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s;
            display: inline-block;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
        }

        .btn-primary {
            background: linear-gradient(45deg, #3964ce, #874cfb);
            color: white;
            box-shadow: 0 0 20px 10px #3964ce26;
        }

        .btn-primary:hover {
            background: linear-gradient(45deg, #3c73f9, #6c2fe4);
            transform: translateY(-1px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: white;
        }

        /* Sticky Bar */
        .sticky-bar {
            background: var(--primary);
            color: white;
            text-align: center;
            padding: 0.875rem;
            font-size: 0.875rem;
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        /* Hero Section */
        .hero {
            padding: 8rem 0 6rem;
            text-align: center;
                background: linear-gradient(180deg, #d5deec, #cad3e1 96%);

    margin: 60px;
    border-radius: 30px;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            margin-top: 4rem;
            line-height: 1.1;
            color: var(--primary);
            letter-spacing: -2px;
        }
 .hero h1 small {
   font-size: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
 }
        .hero .subtitle {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--text-light);
            max-width: 900px;
            margin-left: auto; 
            margin-right: auto;
            font-weight: 400;
            line-height: 1.5;
        }

        .hero .kpi-focus {
            max-width: 800px;
            margin: 0 auto;
            font-size: 13px;
            line-height: 1.8;
            color: #9e9e9e;
        }

        .hero .target-audience {
    font-size: 1.125rem;
    color: var(--text-light);
    font-weight: 300;
    margin-top: 40px;
    background: #fff;
    border-radius: 100px;
    padding: 15px;
        }

        .hero-ctas {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2.5rem;
        }

        /* Section Styles */
        section {
            padding: 6rem 0;
        }

        section.alt-bg {
               background: #e9ebf0;
    margin: 60px;
    border-radius: 30px;
        }

        h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            text-align: center;
            color: var(--primary);
            font-weight: 800;
            letter-spacing: -1px;
             position: relative;
    padding-bottom: 15px; 
        }
            h2::after {
               content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background-color: #3c73f9;
            }
        h3 {
            font-size: 1.875rem;
            margin-bottom: 1rem;
            color: var(--primary);
            font-weight: 700;
        }

        h4 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: var(--primary);
            font-weight: 600;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.25rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto 4rem;
            line-height: 1.6;
        }

        /* Why This Matters Box */
        .why-matters {
            text-align: center;
        }

        .why-matters h3 {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .why-matters p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .why-matters ul {
            list-style: none;
            margin-top: 1rem;
        }

        .why-matters li {
            padding: 0.75rem 0;
            padding-left: 2rem;
            position: relative;
            color: var(--text);
            line-height: 1.7;
        }

        .why-matters li:before {
            content: "•";
            position: absolute;
            left: 0.5rem;
            color: var(--accent);
            font-weight: bold;
            font-size: 1.5rem;
        }

        /* Value Props Grid */
        .value-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 1rem;
            margin-top: 4rem;
        }
        .angid {
             grid-template-columns: repeat(auto-fit, minmax(216px, 0fr));
        }
        .angid .value-card  {
            padding: 1.5rem;
        }

        .value-card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid var(--border);
            transition: all 0.3s;
        }

        .value-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.08);
            border-color: var(--accent);
        }
        .value-card .icon img {
                filter: invert(41%) sepia(98%) saturate(444%) hue-rotate(185deg) brightness(80%) contrast(104%);
                  margin-bottom: 15px;
        }

        .value-card h4 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.375rem;
        }

        .value-card p {
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Steps Timeline */
        .steps-container {
            max-width: 800px;
            margin: 4rem auto;
        }

        .step {
            display: flex;
            gap: 2rem;
            margin-bottom: 3rem;
            align-items: flex-start;
        }

        .step-number {
            background: var(--primary);
            color: white;
            min-width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .step-content {
            flex: 1;
        }

        .step-content h4 {
            margin-bottom: 0.5rem;
            font-size: 1.5rem;
        }

        .step-content p {
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Core-4 */
        .core-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 1rem;
            margin-top: 4rem;
        }

        .feature-card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid var(--border);
            transition: all 0.3s;
        }

        .feature-card:hover {
            border-color: var(--accent);
            box-shadow: 0 8px 16px rgba(0,0,0,0.06);
        }

        .feature-card h4 {
            color: var(--accent);
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }

        /* Fit Checker */
        .fit-checker {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .fit-card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid var(--border);
        }

        .fit-card.yes {
            border-color: var(--secondary);
            background: linear-gradient(to bottom, white, rgba(16, 185, 129, 0.05));
        }

        .fit-card.no {
            border-color: #ef4444;
            background: linear-gradient(to bottom, white, rgba(239, 68, 68, 0.05));
        }

        .fit-card h3 {
            text-align: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .fit-card ul {
            list-style: none;
        }

        .fit-card li {
            padding: 0.75rem 0;
            padding-left: 2rem;
            position: relative;
            line-height: 1.6;
        }

        .fit-card.yes li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: bold;
            font-size: 1.25rem;
        }

        .fit-card.no li:before {
            content: "✗";
            position: absolute;
            left: 0;
            color: #ef4444;
            font-weight: bold;
            font-size: 1.25rem;
        }

        /* Timeline Details */
        .timeline-detail {
            background: #fafbfd;
            padding: 2rem;
            border-radius: 12px;
            border-left: 4px solid var(--accent);
            margin-bottom: 2rem;
        }

        .timeline-detail h4 {
            color: var(--accent);
            margin-bottom: 0.75rem;
        }

        /* Specialties Grid */
        .specialties-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .specialty-card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid var(--border);
            transition: all 0.3s;
            text-align: center;
        }

        .specialty-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.08);
        }

        .specialty-card h3 {
            color: var(--primary);
            font-size: 1.5rem;
            text-align: left;
            margin-bottom: 1rem;
        }

        .specialty-card .pain {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            font-style: italic;
        }

        .specialty-card ul {
            list-style: none;
            margin-top: 1rem;
        }

        .specialty-card li {
            padding: 0.5rem 0;
            color: var(--text);
            font-size: 0.95rem;
        }

        .specialty-card li:before {
            content: "→ ";
            color: var(--secondary);
            font-weight: bold;
            margin-right: 0.5rem;
        }

        .specialty-card .value-note {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border);
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* Pricing Cards */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 1rem;
            margin-top: 4rem;
        }

        .pricing-card {
            background: white;
            padding: 3rem;
            border-radius: 12px;
            border: 1px solid var(--border);
            text-align: center;
            transition: all 0.3s;
        }

        .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.08);
        }

        .pricing-card.featured {
            background: linear-gradient(135deg, #4691e5 0%, #8f3aed 100%);
            color: white;
        }

        .pricing-card.featured h3,
        .pricing-card.featured .price {
            color: white;
        }

        .pricing-card.featured .btn-primary {
            background: white;
            color: var(--primary);
        }

        .pricing-card.featured .btn-primary:hover {
            background: var(--bg-alt);
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .price {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            margin: 1.5rem 0;
            letter-spacing: -1px;
        }

        .price-subtitle {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }

        .pricing-card.featured .price-subtitle {
            color: rgba(255,255,255,0.8);
        }

        .pricing-card ul {
            list-style: none;
            margin: 2rem 0;
            text-align: left;
        }

        .pricing-card li {
            padding: 0.875rem 0;
            border-bottom: 1px solid var(--border);
            font-size: 0.95rem;
        }

        .pricing-card.featured li {
            border-bottom-color: rgba(255,255,255,0.2);
            color: rgba(255,255,255,0.9);
        }

        .pricing-card li:before {
            content: "✓ ";
            color: var(--secondary);
            font-weight: bold;
            margin-right: 0.5rem;
        }
        #outcomes b {
               display: block;
                margin-top: 40px;
                font-weight: 500;
                font-size: 10px;
                line-height: initial;
                border-top: 1px solid #e3e3e3;
                padding-top: 12px;
                color: #aeb3c0;
                margin-bottom: 10px;
        }
        #outcomes span {
 display: block;
        }

        /* Table */
        .outcomes-table {
            width: 100%;
            margin-top: 3rem;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border);
        }

        .outcomes-table th,
        .outcomes-table td {
            padding: 1.25rem;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }

        .outcomes-table th {
            background: var(--primary);
            color: white;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .outcomes-table tr:last-child td {
            border-bottom: none;
        }

        .outcomes-table tr:hover {
            background: var(--bg-alt);
        }

        /* ROI Box */
        .roi-box {
            background: white;
            padding: 3rem;
            border-radius: 12px;
            margin-top: 3rem;
            border: 1px solid var(--border);
        }

        .roi-examples {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .roi-example {
            background: var(--bg-alt);
            padding: 2rem;
            border-radius: 8px;
        }

        .roi-example h4 {
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        .roi-example .highlight {
            background: var(--accent);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-weight: 700;
            font-size: 1.25rem;
            display: inline-block;
            margin-top: 1rem;
        }

        /* FAQ */
        .faq-list {
            max-width: 800px;
            margin: 4rem auto;
        }

        .faq-item {
            background: white;
            padding: 2rem;
            margin-bottom: 1rem;
            border-radius: 12px;
            border: 1px solid var(--border);
            transition: all 0.2s;
        }

        .faq-item:hover {
            border-color: var(--accent);
        }

        .faq-item h4 {
            color: var(--primary);
            margin-bottom: 0.75rem;
            font-size: 1.125rem;
        }

        .faq-item p {
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Contact Form */
        .contact-form {
            max-width: 600px;
            margin: 4rem auto;
            background: white;
            padding: 3rem;
            border-radius: 12px;
            border: 1px solid var(--border);
        }

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

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--primary);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.875rem;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.2s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        /* Info Box */
        .info-box {
            background: var(--bg-alt);
            padding: 2rem;
            border-radius: 12px;
            margin-top: 3rem;
            border-left: 4px solid var(--accent);
        }

        .info-box h4 {
            margin-bottom: 0.75rem;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 6rem 0;
            background: var(--primary);
            color: white;
        }

        .cta-section h2 {
            color: white;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 1rem auto 2.5rem;
            opacity: 0.9;
        }

        .cta-section .btn-primary {
            background: white;
            color: var(--primary);
        }

        .cta-section .btn-primary:hover {
            background: var(--bg-alt);
        }

        .cta-section .btn-secondary {
            border-color: white;
            color: white;
        }

        .cta-section .btn-secondary:hover {
            background: white;
            color: var(--primary);
        }

        /* Footer */
        footer {
            background: var(--primary);
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.125rem;
        }

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

        .footer-section a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            display: block;
            padding: 0.375rem 0;
            transition: color 0.2s;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
            font-size: 0.95rem;
        }

        .disclaimer {
            background: rgba(255,255,255,0.05);
            padding: 1.5rem;
            border-radius: 8px;
            margin-top: 2rem;
            font-size: 0.95rem;
            color: rgba(255,255,255,0.8);
            border-left: 3px solid rgba(255,255,255,0.3);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero .subtitle {
                font-size: 1.125rem;
            }

            h2 {
                font-size: 2rem;
            }

            .nav-links {
                display: none;
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            section {
                padding: 4rem 0;
            }

            .specialties-grid {
                grid-template-columns: 1fr;
            }
        }


        .hero {
  position: relative;
  overflow: hidden;
}

.marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    padding: 15px 0;
    overflow: hidden;
    font-size: 18px;
    white-space: nowrap;
    background: #0000001f;
    border-radius: 28px;
    margin: 10px;
    backdrop-filter: blur(8px);
}

.marquee-inner {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 50s linear infinite;
}

@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}


.safety-block {
  background: linear-gradient(135deg, #4691e5 0%, #8f3aed 100%);
  color: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.safety-block h4 {
  color: #fff;
  margin-top: 0;
}

.safety-block p {
  color: #f8f9fa;
  margin: 0;
}
.info-box-small {
       text-align: center;
    font-size: 12px;
    margin-top: 30px;
    color: #838383;;
}


.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.hero-ctas .btn {
        width: 175px;
}







@media (max-width: 768px) {
  .blue-section {
    margin-left: 5%;
    margin-right: 5%;
    width: 90%; 
    box-sizing: border-box;
  }
  .alt-bg {
           margin: 5% !important;
  }
  .angid {
             grid-template-columns: repeat(auto-fit, minmax(100%, 0fr));
        }
}

.hero.blue-section {
      position: relative;
      overflow: hidden;
      background: #dce2ec;
      padding: 60px 0;
      box-sizing: border-box;
    }

    .hero.blue-section .video-wrap {
    position: absolute;
    bottom: -52px;
    right: -200px;
    width: 100%;
    height: 75%;
    pointer-events: none;
    z-index: 0;
    }

    .hero.blue-section .video-wrap video {
width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1) -200%, rgba(0, 0, 0, 0) 100%);
     -webkit-mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1) -200%, rgba(0, 0, 0, 0) 100%); 
    /* filter: blur(2px); */
    transform: translateZ(0);
    }

    .hero.blue-section .container {
      position: relative;
      z-index: 2;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
      box-sizing: border-box;
    }

    .hero.blue-section .marquee {
      position: relative;
      z-index: 2;
      margin-top: 60px;
    }

    @media (max-width: 980px) {
      .hero.blue-section .video-wrap {
        width: 65%;
        height: 45%;
      }
    }

    @media (max-width: 768px) {
      .hero.blue-section .container {
        margin-left: 5%;
        margin-right: 5%;
        width: 90%;
      }
      .hero.blue-section .video-wrap {
        width: 80%;
        height: 40%;
      }
    }







    .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}


@media (min-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

.about-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.06);
}

.about-card h2 {
    font-size: 26px;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 16px;
}


.about-card h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90px;
    height: 6px;
    background: #216bff;
    border-radius: 3px;
}

.about-card p {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 17px;
}

.profile-link {
    font-weight: 600;
    color: #216bff;
    text-decoration: none;
    font-size: 16px;
}

.profile-link:hover {
    text-decoration: underline;
}

/* Фото */
.about-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 10px solid #eee;
}

.about-photo-small img{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #eee;
    float: left;
    margin-right: 20px; 
}