<!-- БЛОК 1: ГЛОБАЛЬНЫЙ CSS + ХЕДЕР + HERO -->

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Inter', sans-serif;
    background: #fafcff;
    color: #141824;
    overflow-x: hidden;
    line-height: 1.6;
  }

  /* ===== ХЕДЕР ===== */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(250, 252, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 20, 40, 0.04);
    z-index: 1000;
    transition: all 0.3s ease;
  }

  .header .logo {
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #141824;
  }

  .header .logo span {
    font-weight: 300;
    color: #8a90a8;
  }

  .header .logo .accent {
    background: linear-gradient(135deg, #6c5ce7, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .header .phone {
    font-size: 0.95rem;
    font-weight: 500;
    color: #141824;
    background: rgba(108, 92, 231, 0.06);
    padding: 10px 26px;
    border-radius: 60px;
    border: 1px solid rgba(108, 92, 231, 0.1);
    transition: all 0.25s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .header .phone:hover {
    background: rgba(108, 92, 231, 0.10);
    border-color: rgba(108, 92, 231, 0.25);
    transform: scale(1.02);
  }

  @media (max-width: 640px) {
    .header {
      padding: 14px 20px;
      flex-wrap: wrap;
      gap: 8px;
    }
    .header .logo {
      font-size: 1.4rem;
    }
    .header .phone {
      font-size: 0.8rem;
      padding: 8px 16px;
    }
  }

  /* ===== ГЛАВНЫЙ БЛОК (HERO) ===== */
  .hero {
    margin-top: 80px;
    padding: 80px 30px 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(170deg, #f8faff 0%, #f0f5ff 50%, #f5f3ff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

  .hero .container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    width: 100%;
  }

  /* ===== ВОЛНЫ НА ФОНЕ ===== */
  .hero-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
  }

  .hero-waves svg {
    position: absolute;
    bottom: -5%;
    left: -10%;
    width: 120%;
    height: auto;
    opacity: 0.3;
    animation: waveFloat 20s ease-in-out infinite alternate;
  }

  .hero-waves svg:nth-child(2) {
    bottom: -10%;
    left: 0;
    width: 100%;
    opacity: 0.15;
    animation: waveFloat 25s ease-in-out infinite alternate-reverse;
    animation-delay: 2s;
  }

  .hero-waves svg:nth-child(3) {
    bottom: 0%;
    left: 5%;
    width: 90%;
    opacity: 0.1;
    animation: waveFloat 18s ease-in-out infinite alternate;
    animation-delay: 4s;
  }

  @keyframes waveFloat {
    0% { transform: translateX(0) translateY(0) scale(1); }
    50% { transform: translateX(3%) translateY(-2%) scale(1.02); }
    100% { transform: translateX(-2%) translateY(2%) scale(0.98); }
  }

  /* ===== ПАРЯЩИЕ ЭЛЕМЕНТЫ ===== */
  .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
  }

  .floating-elements .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: floatOrb 15s ease-in-out infinite alternate;
  }

  .floating-elements .orb:nth-child(1) {
    width: 400px;
    height: 400px;
    background: #6c5ce7;
    top: -10%;
    right: -5%;
    animation-delay: 0s;
  }

  .floating-elements .orb:nth-child(2) {
    width: 300px;
    height: 300px;
    background: #4facfe;
    bottom: -10%;
    left: -5%;
    animation-delay: 3s;
    opacity: 0.1;
  }

  .floating-elements .orb:nth-child(3) {
    width: 200px;
    height: 200px;
    background: #f093fb;
    top: 40%;
    left: 30%;
    animation-delay: 6s;
    opacity: 0.08;
  }

  @keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.9); }
    100% { transform: translate(10px, -10px) scale(1.05); }
  }

  /* ===== ГРАДИЕНТНАЯ ЛИНИЯ ===== */
  .grid-line {
    position: absolute;
    width: 200%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(108, 92, 231, 0.06), rgba(79, 172, 254, 0.06), transparent);
    top: 30%;
    left: -50%;
    transform: rotate(-3deg);
    z-index: 1;
    animation: slideGrid 30s linear infinite;
  }

  .grid-line:nth-child(2) {
    top: 70%;
    transform: rotate(2deg);
    animation-duration: 35s;
    animation-direction: reverse;
  }

  @keyframes slideGrid {
    0% { transform: translateX(-10%) rotate(-3deg); }
    100% { transform: translateX(10%) rotate(-3deg); }
  }

  /* ===== КОНТЕНТ ===== */
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108, 92, 231, 0.06);
    border: 1px solid rgba(108, 92, 231, 0.08);
    padding: 6px 20px 6px 16px;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #6c5ce7;
    letter-spacing: 0.3px;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
  }

  .hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6c5ce7;
    display: inline-block;
    animation: pulseDot 2s ease-in-out infinite;
  }

  @keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.7); }
  }

  .hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: #141824;
  }

  .hero h1 .highlight {
    background: linear-gradient(135deg, #6c5ce7, #4facfe, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 6s ease-in-out infinite alternate;
  }

  @keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
  }

  .hero .sub {
    font-size: 1.3rem;
    color: #4a506a;
    max-width: 680px;
    line-height: 1.7;
    margin-bottom: 12px;
    font-weight: 400;
  }

  .hero .sub strong {
    color: #141824;
    font-weight: 600;
  }

  .hero .desc {
    font-size: 1.05rem;
    color: #5a607a;
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 32px;
  }

  /* ===== ФАКТЫ ===== */
  .hero .facts {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 48px;
    margin: 28px 0 36px;
    padding: 20px 0;
    border-top: 1px solid rgba(108, 92, 231, 0.06);
    border-bottom: 1px solid rgba(108, 92, 231, 0.06);
  }

  .hero .facts .item {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 1rem;
    color: #3d4359;
  }

  .hero .facts .item .num {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6c5ce7, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
  }

  .hero .facts .item .label {
    font-weight: 400;
    color: #5a607a;
  }

  /* ===== КНОПКИ ===== */
  .hero .actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
  }

  .hero .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 44px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    background: linear-gradient(135deg, #6c5ce7, #5a4bd1);
    color: white;
    box-shadow: 0 8px 32px rgba(108, 92, 231, 0.15);
  }

  .hero .btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 48px rgba(108, 92, 231, 0.25);
  }

  .hero .btn-outline {
    background: transparent;
    color: #141824;
    box-shadow: none;
    border: 1.5px solid rgba(26, 31, 46, 0.08);
  }

  .hero .btn-outline:hover {
    background: rgba(108, 92, 231, 0.04);
    border-color: #6c5ce7;
    box-shadow: none;
    transform: translateY(-2px);
  }

  .hero .btn .arrow {
    transition: transform 0.3s ease;
  }

  .hero .btn:hover .arrow {
    transform: translateX(4px);
  }

  .hero .bottom-note {
    margin-top: 40px;
    font-size: 0.85rem;
    color: #8a90a8;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .hero .bottom-note .sep {
    width: 1px;
    height: 20px;
    background: rgba(0, 0, 0, 0.06);
  }

  @media (max-width: 900px) {
    .hero h1 { font-size: 3.4rem; }
    .hero .sub { font-size: 1.1rem; }
  }

  @media (max-width: 640px) {
    .hero {
      padding: 60px 20px 70px;
      min-height: auto;
    }
    .hero h1 { font-size: 2.6rem; }
    .hero .facts .item .num { font-size: 1.8rem; }
    .hero .facts { gap: 16px 28px; }
    .hero .btn { padding: 14px 28px; font-size: 0.9rem; }
    .hero-waves svg { display: none; }
  }

  /* ===== СВЯЗКИ-ТЕКСТЫ ===== */
  .bridge {
    padding: 70px 30px;
    position: relative;
    overflow: hidden;
  }

  .bridge .container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
  }

  .bridge .icon {
    font-size: 2.8rem;
    margin-bottom: 16px;
    display: block;
  }

  .bridge h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #141824;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }

  .bridge h3 .highlight {
    background: linear-gradient(135deg, #6c5ce7, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .bridge p {
    font-size: 1.15rem;
    color: #4a506a;
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.8;
  }

  .bridge p strong {
    color: #141824;
  }

  .bridge-light {
    background: linear-gradient(170deg, #f8faff 0%, #f5f3ff 100%);
  }

  .bridge-dark {
    background: linear-gradient(170deg, #f5f3ff 0%, #f0f7ff 100%);
  }

  /* ===== ОБЩИЕ СТИЛИ ДЛЯ БЛОКОВ ===== */
  .section-block {
    position: relative;
    overflow: hidden;
    padding: 100px 30px 110px;
  }

  .section-block .container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .section-block .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 20px 6px 16px;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 18px;
  }

  .section-block .badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
    animation: pulseDot 2s ease-in-out infinite;
  }

  .section-block h2 {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #141824;
    margin: 0;
  }

  .section-block h2 .light {
    font-weight: 300;
    color: #8a90a8;
  }

  .section-block .subhead {
    font-size: 1.2rem;
    color: #4a506a;
    max-width: 720px;
    line-height: 1.7;
    margin-top: 12px;
  }

  .section-block .subhead strong {
    color: #141824;
  }

  .section-block .header-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 4px;
  }

  .section-block .header-tags span {
    padding: 6px 18px;
    border-radius: 60px;
    font-size: 0.8rem;
    color: #4a506a;
  }

  .section-block .trigger-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin: 32px 0 44px;
  }

  .section-block .trigger-card {
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  }

  .section-block .trigger-card .num {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .section-block .trigger-card .label {
    color: #3d4359;
    font-weight: 500;
  }

  .section-block .trigger-card .desc {
    font-size: 0.8rem;
    color: #8a90a8;
    margin-top: 4px;
  }

  .section-block .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-bottom: 50px;
  }

  .section-block .service-card {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    border-radius: 32px;
    padding: 32px 30px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(0,0,0,0.02);
    cursor: pointer;
  }

  .section-block .service-card:hover {
    transform: translateY(-6px);
  }

  .section-block .service-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
    border: 1px solid rgba(0,0,0,0.04);
  }

  .section-block .service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #141824;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
  }

  .section-block .service-card .service-sub {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 14px;
  }

  /* ===== ГАЛОЧКИ ДЛЯ СПИСКОВ ===== */
  .section-block .service-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 6px 0;
  }

  .section-block .service-card ul li {
    position: relative;
    padding: 5px 0 5px 28px;
    color: #3d4359;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .section-block .service-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    color: inherit;
    opacity: 0.7;
  }

  .section-block .service-card ul li strong {
    color: #141824;
  }

  .section-block .service-card ul li .highlight {
    font-weight: 600;
  }

  /* Цвета галочек для разных тем */
  .theme-blue .service-card ul li::before { color: #4facfe; }
  .theme-purple .service-card ul li::before { color: #6c5ce7; }
  .theme-pink .service-card ul li::before { color: #f093fb; }
  .theme-teal .service-card ul li::before { color: #4facfe; }

  .section-block .service-card .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 14px 0 0;
    padding-top: 14px;
    border-top: 1px solid rgba(0,0,0,0.04);
  }

  .section-block .service-card .price-row .price {
    font-size: 1.6rem;
    font-weight: 700;
  }

  .section-block .service-card .price-row .stat {
    color: #8a90a8;
    font-size: 0.8rem;
  }

  .section-block .service-card .footnote {
    font-size: 0.75rem;
    color: #8a90a8;
    margin-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.03);
    padding-top: 10px;
  }

  .section-block .cases {
    padding: 30px 20px;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
    border-radius: 32px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 4px 24px rgba(0,0,0,0.02);
    margin-bottom: 50px;
  }

  .section-block .cases .case-item .number {
    font-size: 2.8rem;
    font-weight: 700;
  }

  .section-block .cases .case-item .lbl {
    color: #3d4359;
    font-weight: 500;
  }

  .section-block .cases .case-item .sub {
    font-size: 0.8rem;
    color: #8a90a8;
  }

  .section-block .form-block {
    padding: 40px 35px 35px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(16px);
    border-radius: 40px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 8px 48px rgba(0,0,0,0.04);
    text-align: center;
  }

  .section-block .form-block h3 {
    font-weight: 600;
    font-size: 1.8rem;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
    color: #141824;
  }

  .section-block .form-block p {
    color: #5a607a;
    max-width: 580px;
    margin: 8px auto 24px;
    font-size: 1.05rem;
  }

  .section-block .form-block .form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    max-width: 600px;
    margin: 0 auto;
  }

  .section-block .form-block .form-row input {
    flex: 2;
    min-width: 200px;
    padding: 16px 24px;
    border-radius: 60px;
    border: 1px solid rgba(0,0,0,0.06);
    background: rgba(255,255,255,0.8);
    font-size: 1rem;
    outline: none;
    transition: border 0.2s;
  }

  .section-block .form-block .form-row button {
    padding: 16px 48px;
    border-radius: 60px;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .section-block .form-block .form-row button:hover {
    transform: scale(1.03);
  }

  .section-block .form-block .safe {
    font-size: 0.8rem;
    color: #8a90a8;
    margin-top: 16px;
  }

  /* ===== ЦВЕТОВЫЕ СХЕМЫ ===== */
  .theme-blue {
    background: linear-gradient(170deg, #f0f7ff 0%, #f8faff 40%, #f5f3ff 100%);
  }
  .theme-blue .badge {
    background: rgba(79,172,254,0.06);
    border: 1px solid rgba(79,172,254,0.08);
    color: #4facfe;
  }
  .theme-blue .badge .dot { background: #4facfe; }
  .theme-blue .trigger-card .num {
    background: linear-gradient(135deg, #4facfe, #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .theme-blue .service-card {
    border: 1px solid rgba(79,172,254,0.08);
  }
  .theme-blue .service-card:hover {
    border-color: rgba(79,172,254,0.2);
    box-shadow: 0 20px 60px rgba(79,172,254,0.08);
  }
  .theme-blue .service-card .icon {
    background: rgba(79,172,254,0.08);
    border-color: rgba(79,172,254,0.06);
  }
  .theme-blue .service-card .service-sub { color: #4facfe; }
  .theme-blue .service-card .price-row .price {
    background: linear-gradient(135deg, #4facfe, #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .theme-blue .form-block .form-row button {
    background: linear-gradient(135deg, #4facfe, #6c5ce7);
    box-shadow: 0 6px 28px rgba(79,172,254,0.2);
  }
  .theme-blue .form-block .form-row button:hover {
    box-shadow: 0 10px 40px rgba(79,172,254,0.3);
  }

  .theme-purple {
    background: linear-gradient(170deg, #f5f3ff 0%, #f8faff 40%, #f0f7ff 100%);
  }
  .theme-purple .badge {
    background: rgba(108,92,231,0.06);
    border: 1px solid rgba(108,92,231,0.08);
    color: #6c5ce7;
  }
  .theme-purple .badge .dot { background: #6c5ce7; }
  .theme-purple .trigger-card .num {
    background: linear-gradient(135deg, #6c5ce7, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .theme-purple .service-card {
    border: 1px solid rgba(108,92,231,0.08);
  }
  .theme-purple .service-card:hover {
    border-color: rgba(108,92,231,0.2);
    box-shadow: 0 20px 60px rgba(108,92,231,0.08);
  }
  .theme-purple .service-card .icon {
    background: rgba(108,92,231,0.08);
    border-color: rgba(108,92,231,0.06);
  }
  .theme-purple .service-card .service-sub { color: #6c5ce7; }
  .theme-purple .service-card .price-row .price {
    background: linear-gradient(135deg, #6c5ce7, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .theme-purple .form-block .form-row button {
    background: linear-gradient(135deg, #6c5ce7, #4facfe);
    box-shadow: 0 6px 28px rgba(108,92,231,0.2);
  }
  .theme-purple .form-block .form-row button:hover {
    box-shadow: 0 10px 40px rgba(108,92,231,0.3);
  }

  .theme-pink {
    background: linear-gradient(170deg, #f5f3ff 0%, #f8faff 40%, #f0f7ff 100%);
  }
  .theme-pink .badge {
    background: rgba(240,147,251,0.06);
    border: 1px solid rgba(240,147,251,0.08);
    color: #f093fb;
  }
  .theme-pink .badge .dot { background: #f093fb; }
  .theme-pink .trigger-card .num {
    background: linear-gradient(135deg, #f093fb, #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .theme-pink .service-card {
    border: 1px solid rgba(240,147,251,0.08);
  }
  .theme-pink .service-card:hover {
    border-color: rgba(240,147,251,0.2);
    box-shadow: 0 20px 60px rgba(240,147,251,0.08);
  }
  .theme-pink .service-card .icon {
    background: rgba(240,147,251,0.08);
    border-color: rgba(240,147,251,0.06);
  }
  .theme-pink .service-card .service-sub { color: #f093fb; }
  .theme-pink .service-card .price-row .price {
    background: linear-gradient(135deg, #f093fb, #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .theme-pink .form-block .form-row button {
    background: linear-gradient(135deg, #f093fb, #6c5ce7);
    box-shadow: 0 6px 28px rgba(240,147,251,0.2);
  }
  .theme-pink .form-block .form-row button:hover {
    box-shadow: 0 10px 40px rgba(240,147,251,0.3);
  }

  .theme-teal {
    background: linear-gradient(170deg, #f0f7ff 0%, #f8faff 40%, #f5f3ff 100%);
  }
  .theme-teal .badge {
    background: rgba(79,172,254,0.06);
    border: 1px solid rgba(79,172,254,0.08);
    color: #4facfe;
  }
  .theme-teal .badge .dot { background: #4facfe; }
  .theme-teal .trigger-card .num {
    background: linear-gradient(135deg, #4facfe, #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .theme-teal .service-card {
    border: 1px solid rgba(79,172,254,0.08);
  }
  .theme-teal .service-card:hover {
    border-color: rgba(79,172,254,0.2);
    box-shadow: 0 20px 60px rgba(79,172,254,0.08);
  }
  .theme-teal .service-card .icon {
    background: rgba(79,172,254,0.08);
    border-color: rgba(79,172,254,0.06);
  }
  .theme-teal .service-card .service-sub { color: #4facfe; }
  .theme-teal .service-card .price-row .price {
    background: linear-gradient(135deg, #4facfe, #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .theme-teal .form-block .form-row button {
    background: linear-gradient(135deg, #4facfe, #6c5ce7);
    box-shadow: 0 6px 28px rgba(79,172,254,0.2);
  }
  .theme-teal .form-block .form-row button:hover {
    box-shadow: 0 10px 40px rgba(79,172,254,0.3);
  }

  /* ===== СПЕЦИАЛЬНЫЙ БЛОК О НАС ===== */
  .section-about {
    position: relative;
    overflow: hidden;
    padding: 100px 30px 120px;
    background: linear-gradient(170deg, #f5f3ff 0%, #f8faff 40%, #f0f7ff 100%);
  }

  .section-about .container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .section-about .about-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .section-about .about-header .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108,92,231,0.06);
    border: 1px solid rgba(108,92,231,0.08);
    padding: 6px 20px 6px 16px;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #6c5ce7;
    letter-spacing: 0.3px;
    margin-bottom: 18px;
  }

  .section-about .about-header .badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6c5ce7;
    display: inline-block;
    animation: pulseDot 2s ease-in-out infinite;
  }

  .section-about .about-header h2 {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #141824;
    margin: 0;
  }

  .section-about .about-header h2 .gradient {
    background: linear-gradient(135deg, #6c5ce7, #4facfe, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: gradientShift 8s ease-in-out infinite alternate;
  }

  .section-about .about-header p {
    font-size: 1.2rem;
    color: #4a506a;
    max-width: 620px;
    line-height: 1.7;
    margin: 12px auto 0;
  }

  .section-about .about-header p strong {
    color: #141824;
  }

  .section-about .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
  }

  .section-about .stats-grid .stat-item {
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(108,92,231,0.06);
    border-radius: 24px;
    padding: 28px 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  }

  .section-about .stats-grid .stat-item .number {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .section-about .stats-grid .stat-item .lbl {
    color: #3d4359;
    font-weight: 500;
  }

  .section-about .stats-grid .stat-item .sub {
    font-size: 0.8rem;
    color: #8a90a8;
    margin-top: 4px;
  }

  .section-about .mini-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 50px;
  }

  .section-about .mini-stats .mini-item {
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(0,0,0,0.02);
    border-radius: 20px;
    padding: 18px 20px;
    text-align: center;
  }

  .section-about .mini-stats .mini-item .number {
    font-size: 1.8rem;
    font-weight: 700;
  }

  .section-about .mini-stats .mini-item .lbl {
    color: #3d4359;
    font-size: 0.9rem;
  }

  .section-about .clients-block {
    padding: 40px 30px;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
    border-radius: 32px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 4px 24px rgba(0,0,0,0.02);
    margin-bottom: 50px;
  }

  .section-about .clients-block .title {
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #141824;
  }

  .section-about .clients-block .title .line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #6c5ce7, #4facfe);
    border-radius: 4px;
    margin: 8px auto 0;
  }

  .section-about .clients-block .tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
  }

  .section-about .clients-block .tags span {
    background: rgba(255,255,255,0.6);
    padding: 6px 20px;
    border-radius: 40px;
    font-size: 0.85rem;
    color: #3d4359;
    border: 1px solid rgba(0,0,0,0.03);
  }

  .section-about .clients-block .note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #8a90a8;
  }

  .section-about .quote-block {
    padding: 36px 30px;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(8px);
    border-radius: 32px;
    border: 1px solid rgba(108,92,231,0.06);
    box-shadow: 0 4px 24px rgba(0,0,0,0.02);
    text-align: center;
    margin-bottom: 50px;
  }

  .section-about .quote-block .text {
    font-size: 1.5rem;
    font-weight: 400;
    color: #3d4359;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
  }

  .section-about .quote-block .text .accent {
    color: #6c5ce7;
    font-weight: 700;
  }

  .section-about .quote-block .text .bold {
    color: #141824;
    font-weight: 500;
  }

  .section-about .form-block {
    padding: 40px 35px 35px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(16px);
    border-radius: 40px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 8px 48px rgba(0,0,0,0.04);
    text-align: center;
  }

  .section-about .form-block h3 {
    font-weight: 600;
    font-size: 1.8rem;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
    color: #141824;
  }

  .section-about .form-block p {
    color: #5a607a;
    max-width: 520px;
    margin: 8px auto 24px;
    font-size: 1.05rem;
  }

  .section-about .form-block .form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    max-width: 560px;
    margin: 0 auto;
  }

  .section-about .form-block .form-row input {
    flex: 2;
    min-width: 200px;
    padding: 16px 24px;
    border-radius: 60px;
    border: 1px solid rgba(0,0,0,0.06);
    background: rgba(255,255,255,0.8);
    font-size: 1rem;
    outline: none;
    transition: border 0.2s;
  }

  .section-about .form-block .form-row button {
    padding: 16px 48px;
    border-radius: 60px;
    border: none;
    background: linear-gradient(135deg, #6c5ce7, #4facfe);
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 28px rgba(108,92,231,0.2);
  }

  .section-about .form-block .form-row button:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 40px rgba(108,92,231,0.3);
  }

  .section-about .form-block .safe {
    font-size: 0.8rem;
    color: #8a90a8;
    margin-top: 16px;
  }

  @media (max-width: 640px) {
    .section-block h2 { font-size: 2.4rem; }
    .section-block .service-grid { grid-template-columns: 1fr; }
    .section-block .form-block .form-row input { min-width: 100%; }
    .bridge h3 { font-size: 1.6rem; }
    .bridge p { font-size: 1rem; }
    .section-about .about-header h2 { font-size: 2.6rem; }
    .section-about .stats-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 480px) {
    .section-about .stats-grid { grid-template-columns: 1fr 1fr; }
  }
</style>