 :root {
            --bg: #F9F9F7;
            --dark: #121212;
            --accent: #2A4B7C;
            --accent-light: #3d66a3;
            --border: rgba(18, 18, 18, 0.08);
            --white: #ffffff;
            --gray-text: #666666;
            --safe-bottom: env(safe-area-inset-bottom, 20px);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg);
            color: var(--dark);
            overflow-x: hidden;
        }

.foote-links p{margin-bottom:20px;}
.foote-links a {color:#fff}
.show-more-btn {
            background-color:var(--accent);
            color: white;
            border: none;
            padding: 10px 20px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 16px;
            margin: 10px 0;
            cursor: pointer;
            border-radius: 5px;
        }
        
        .show-more-btn:hover {
            background-color: rgb(219, 73, 5);
        }

.categorylinks{display: flex;
  flex-wrap: wrap;
  gap: 12px;}

.categorylinks a {
  padding: 8px 16px;
  background:var(--accent);
  border: 1px solid var(--accent);
  border-radius: 30px;
  color:#fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  transition: all 0.3s ease;
}
        /* Фото в блоке конфиденциальности */
        .confidential-image {
            width: 100%;
            overflow: hidden;max-height: 700px;
            border-radius: 2px;
        }
        
        .confidential-image img {
            width: 100%;
            height: auto;
            min-height: 400px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .confidential-image:hover img {
            transform: scale(1.02);
        }
        
        @media (max-width: 1024px) {
            .confidential-image img {
                min-height: 300px;
            }
        }

        /* ===== НОВЫЕ БЛОКИ УТП - ПРЕМИУМ ВЕРСИЯ ===== */
        
        /* Блок "Почему выбирают нас" - матрица преимуществ */
        .why-matrix {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
            background: var(--border);
            margin-top: 40px;
        }
        
        .why-card {
            background: var(--bg);
            padding: 50px 40px;
            transition: all 0.4s ease;
            position: relative;
        }
        
        .why-card:hover {
            background: white;
        }
        
        .why-icon {
            margin-bottom: 30px;
        }
        
        .why-icon svg {
            width: 48px;
            height: 48px;
            stroke: var(--accent);
            stroke-width: 1.5;
            fill: none;
        }
        
        .why-title {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
            letter-spacing: -0.02em;
        }
        
        .why-text {
            color: var(--gray-text);
            font-size: 14px;
            line-height: 1.6;
        }
        
        /* Блок "Технологии и безопасность" */
        .tech-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2px;
            background: var(--border);
            margin-top: 50px;
        }
        
        .tech-card {
            background: white;
            padding: 60px 50px;
            transition: 0.3s;
        }
        
        .tech-card:hover {
            background: #fafaf8;
        }
        
        .tech-icon {
            margin-bottom: 25px;
        }
        
        .tech-icon svg {
            width: 52px;
            height: 52px;
            stroke: var(--accent);
            stroke-width: 1.5;
            fill: none;
        }
        
        .tech-title {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }
        
        .tech-list {
            list-style: none;
            margin-top: 20px;
        }
        
        .tech-list li {
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            font-size: 15px;
            display: flex;
            justify-content: space-between;
        }
        
        .tech-list span:first-child {
            color: var(--gray-text);
        }
        
        .tech-list span:last-child {
            font-weight: 500;
            color: var(--dark);text-align: right;
        }
        
        /* Блок "Гарантии" */
        .guarantees-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2px;
            background: var(--border);
            margin-top: 50px;
        }
        
        .guarantee-item {
            background: var(--bg);
            padding: 45px 30px;
            transition: 0.3s;
            text-align: left;
        }
        
        .guarantee-item:hover {
            background: white;
        }
        
        .guarantee-icon svg {
            width: 40px;
            height: 40px;
            stroke: var(--accent);
            stroke-width: 1.5;
            fill: none;
            margin-bottom: 25px;
        }
        
        .guarantee-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
        }
        
        .guarantee-text {
            font-size: 13px;
            color: var(--gray-text);
            line-height: 1.5;
        }
        
        /* Блок "Отраслевая экспертиза" */
        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2px;
            background: var(--border);
            margin-top: 50px;
        }
        
        .expertise-item {
            background: var(--bg);
            padding: 50px 30px;
            text-align: center;
            transition: 0.3s;
        }
        
        .expertise-item:hover {
            background: white;
        }
        
        .expertise-icon svg {
            width: 42px;
            height: 42px;
            stroke: var(--accent);
            stroke-width: 1.3;
            fill: none;
            margin-bottom: 20px;
        }
        
        .expertise-name {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .expertise-desc {
            font-size: 12px;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Блок "Процесс работы" */
                /* Блок "Процесс работы" - десктоп версия */
        .process-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 60px;
            flex-wrap: wrap;
            position: relative;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 10%;
            width: 80%;
            height: 1px;
            background: var(--border);
            z-index: 0;
        }
        
        .step {
            text-align: center;
            flex: 1;
            min-width: 180px;
            position: relative;
            z-index: 1;
            background: var(--bg);
            padding: 0 20px;
        }
        
        .step-number {
            width: 70px;
            height: 70px;
            background: var(--accent);
            color: white;
            font-size: 28px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            border-radius: 50%;
            font-family: 'Plus Jakarta Sans', sans-serif;
            transition: 0.3s;
        }
        
        .step:hover .step-number {
            transform: scale(1.05);
            background: var(--dark);
        }
        
        .step-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
        }
        
        .step-text {
            font-size: 13px;
            color: var(--gray-text);
            line-height: 1.5;
        }
        
        /* Адаптивность для мобильных устройств - ЦЕНТРИРОВАНИЕ */
        @media (max-width: 768px) {
            .process-steps::before {
                display: none;
            }
            
            .process-steps {
                flex-direction: column;
                gap: 40px;
                align-items: center;
            }
            
            .step {
                text-align: center;
                max-width: 280px;
                width: 100%;
                padding: 0;
            }
            
            .step-number {
                margin: 0 auto 20px;
            }
            
            .step-title {
                text-align: center;
            }
            
            .step-text {
                text-align: center;
                padding: 0 10px;
            }
        }
        
        /* Блок "Конфиденциальность" */
        .confidential-section {
            background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
            color: white;
        }
        
        .confidential-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px;
            align-items: center;
        }
        
        .confidential-icon svg {
            width: 80px;
            height: 80px;
            stroke: var(--accent-light);
            stroke-width: 1.3;
            fill: none;
        }
        
        .confidential-title {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }
        
        .confidential-text {
            font-size: 16px;
            line-height: 1.6;
            opacity: 0.8;
            margin-bottom: 25px;
        }
        
        .confidential-list {
            list-style: none;
        }
        
        .confidential-list li {
            padding: 14px 0;
            display: flex;
            align-items: center;
            gap: 14px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-size: 14px;
        }
        
        /* Блок "Сравнение" */
               /* Блок сравнения - адаптивная таблица */
        .compare-wrapper {
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin-top: 40px;
        }
        
        .compare-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
            min-width: 500px;
        }
        
        .compare-table th,
        .compare-table td {
            padding: 18px 20px;
            text-align: center;
            border-bottom: 1px solid var(--border);
        }
        
        .compare-table th:first-child,
        .compare-table td:first-child {
            text-align: left;
            font-weight: 600;
            position: sticky;
            left: 0;
            background: #f5f5f3;
        }
        
        .compare-table th {
            background: var(--dark);
            color: white;
            font-weight: 600;
        }
        
        .compare-table .check {
            color: var(--accent);
            font-size: 18px;
            font-weight: bold;
        }
        
        .compare-table .cross {
            color: #ccc;
            font-size: 18px;
        }
        
        /* Адаптив для планшетов */
        @media (max-width: 768px) {
            .compare-wrapper {
                margin: 40px -4vw 0;
                width: calc(100% + 8vw);
                padding: 0 4vw;
            }
            
            .compare-table {
                font-size: 12px;
                min-width: 450px;
            }
            
            .compare-table th,
            .compare-table td {
                padding: 12px 15px;
            }
            
            .compare-table th:first-child,
            .compare-table td:first-child {
                background: #f5f5f3;
                font-size: 13px;
            }
        }
        
        /* Адаптив для мобильных */
        @media (max-width: 640px) {
            .compare-wrapper {
                margin: 30px -4vw 0;
                width: calc(100% + 8vw);
            }
            
            .compare-table {
                font-size: 11px;
                min-width: 400px;
            }
            
            .compare-table th,
            .compare-table td {
                padding: 10px 12px;
            }
            
            .compare-table .check,
            .compare-table .cross {
                font-size: 14px;
            }
        }
        
        /* Блок "Форма под отрасль" */
        .industry-form-section {
            background: var(--white);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        
        .industry-form-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .industry-left .industry-title {
            font-size: 42px;
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        
        .industry-left .industry-sub {
            font-size: 16px;
            color: var(--gray-text);
            line-height: 1.6;
            margin-bottom: 30px;
        }
        
        .industry-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 30px;
        }
        
        .industry-badge {
            background: var(--bg);
            padding: 8px 18px;
            font-size: 13px;
            font-weight: 500;
            border-radius: 30px;
            color: var(--dark);
            border: 1px solid var(--border);
        }
        
        .industry-right {
            background: var(--bg);
            padding: 45px;
        }
        
        .industry-form-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .industry-form-sub {
            font-size: 13px;
            color: var(--gray-text);
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border);
        }
        
        .form-row-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .industry-input {
            width: 100%;
            padding: 16px 18px;
            background: white;
            border: 1px solid var(--border);
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            transition: 0.2s;
        }
        
        .industry-input:focus {
            outline: none;
            border-color: var(--accent);
        }
        
        .industry-select {
            width: 100%;
            padding: 16px 18px;
            background: white;
            border: 1px solid var(--border);
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            cursor: pointer;
            appearance: none;
            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='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 18px center;
        }
        
        .industry-submit {
            width: 100%;
            padding: 16px;
            background: var(--accent);
            color: white;
            border: none;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 13px;
            cursor: pointer;
            margin-top: 20px;
            transition: 0.3s;
        }
        
        .industry-submit:hover {
            background: var(--dark);
        }
        
        .industry-note {
            font-size: 11px;
            color: var(--gray-text);
            margin-top: 15px;
            text-align: center;
        }
        
        /* Рейтинги */
        .ratings-grid {
            display: flex;
            justify-content: center;
            gap: 60px;
            flex-wrap: wrap;
            align-items: center;
        }
        
        .rating-item {
            opacity: 0.5;
            transition: opacity 0.3s;
        }
        
        .rating-item:hover {
            opacity: 0.8;
        }
        
        .rating-item svg {
            width: 100px;
            height: auto;
        }
        
        /* Адаптивность */
        @media (max-width: 1024px) {
            .why-matrix,
            .guarantees-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .expertise-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .tech-grid,
            .confidential-grid,
            .industry-form-wrapper {
                grid-template-columns: 1fr;
            }
            .process-steps::before {
                display: none;
            }
            .process-steps {
                flex-direction: column;
                gap: 30px;
            }
            .step {
         display: block;

    text-align: center;
                gap: 20px;
                align-items: center;
            }
            .step-number {
              margin: 0 auto;
    margin-bottom: 0px;
    margin-bottom: 30px;
            }
            .confidential-icon {
                text-align: center;
            }
        }
        
        @media (max-width: 640px) {
            .why-matrix,
            .guarantees-grid,
            .expertise-grid {
                grid-template-columns: 1fr;
            }
            .form-row-grid {
                grid-template-columns: 1fr;
            }
            .compare-table {
                font-size: 11px;
            }
            .compare-table th,
            .compare-table td {
                padding: 10px;
            }
            .industry-left .industry-title {
                font-size: 32px;
            }
            .industry-right {
                padding: 30px 25px;
            }
        }
        
        /* Анимации */
        .reveal-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .reveal-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
/* Стили для кастомного чекбокса */

.custom-checkbox input.error + .checkbox {
  background: red;
  border: 2px solid red;
}
.politik-f h2{margin-bottom:20px;margin-top:20px;} 
.politik-f ul {margin-left:20px;margin-top:20px;}
.custom-checkbox {
  position: relative;

  cursor: pointer;
  font-size: 11px;
  line-height: 1.4;
  color: rgba(69, 53, 47, 1);
  padding-left: 30px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.custom-checkbox:hover {
  color: rgba(29, 26, 25, 1);
}

.hidden-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.error input[placeholder]          {-o-text-overflow:ellipsis;text-overflow:ellipsis; font-style:italic; color:#ff0048 !important}
.error::-webkit-input-placeholder {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important}
.error::-moz-placeholder     {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important} 
.error:-moz-placeholder      {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important} 
.error:-ms-input-placeholder {text-overflow:ellipsis; font-style:italic; color:#ff0048 !important}
.checkbox {
  position: absolute;
  top: -5px;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: white;
  border: 2px solid var(--accent);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.custom-checkbox:hover .checkbox {
  border-color: rgba(225, 51, 0, 1);
}

.checkmark {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 20px;
  height: 20px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
  background-color: rgba(255, 81, 0, 1);
  border-radius: 2px;
}

.hidden-checkbox:checked ~ .checkbox {
  background-color: rgba(255, 81, 0, 1);
  border-color: rgba(255, 81, 0, 1);
}

.hidden-checkbox:checked ~ .checkbox .checkmark {
  opacity: 1;
  transform: scale(1);
}

.custom-checkbox a {
  color: rgba(255, 81, 0, 1);
  text-decoration: underline;
  transition: all 0.3s ease;
}

.custom-checkbox a:hover {
  color: rgba(225, 51, 0, 1);
  text-decoration: none;
}

/* Стиль для неактивного состояния */
.custom-checkbox.error .checkbox {
  border-color: #ff0048;
}

.custom-checkbox.error {
  color: #ff0048;
}

.hidden-text {
            display: none;
        }
        header {
            position: fixed;
            width: 100%;
            padding: 25px 4vw;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(249, 249, 247, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
        }

        .logo {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 22px;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: var(--dark);
            text-decoration: none;
        }

        nav a {
            margin-left: 35px;
            text-decoration: none;
            color: var(--dark);
            font-size: 13px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
.hero {
  color: var(--white);
}
.section-links-l  p {margin-bottom:20px;}
.section-links-l h2 {margin-bottom:20px;}
		
        /* Hero */
        .hero {
            height:100vh; display:flex; flex-direction:column; justify-content:center; padding:0 4vw;
            position:relative; background:url('/i/slide.jpg') no-repeat center;
            background-size:cover; color:var(--white);
        }
        .hero::before {
            content:''; position:absolute; inset:0;
            background:linear-gradient(90deg,rgba(18,18,18,0.7) 0%,rgba(18,18,18,0.2) 60%,rgba(18,18,18,0.5) 100%);
        }
        .hero-content { position:relative; z-index:2; max-width:1000px; }
.section-links-l h1{margin-bottom:30px;}

        .hero h1 { font-family:'Plus Jakarta Sans',sans-serif; font-size:clamp(48px,8vw,110px); font-weight:800;
                    line-height:1; letter-spacing:-0.04em; margin-bottom:30px; text-shadow:0 10px 30px rgba(0,0,0,0.3); }
        .hero h1 span { display:block; overflow:hidden; }


   .hero div.las{ font-family:'Plus Jakarta Sans',sans-serif; font-size:clamp(48px,8vw,110px); font-weight:800;
                    line-height:1; letter-spacing:-0.04em; margin-bottom:30px; text-shadow:0 10px 30px rgba(0,0,0,0.3); }
        .hero div.las span { display:block; overflow:hidden; }


        .hero-sub { font-size:clamp(18px,2vw,22px); max-width:650px; opacity:0.95; margin-bottom:45px; line-height:1.5; }
        .btn-primary {
            display:inline-block; padding:22px 45px; background:var(--accent); color:white; text-decoration:none;
            font-weight:700; text-transform:uppercase; letter-spacing:2px; font-size:14px; transition:.3s;
            border-radius:2px; box-shadow:0 10px 20px rgba(0,0,0,0.2);
        }
        .btn-primary:hover { background:var(--white); color:var(--dark); transform:translateY(-3px); }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
            background: var(--border);
            margin-top: 60px;
        }

        .adv-card {
            background: var(--bg);
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .adv-num { font-family: 'Plus Jakarta Sans'; font-size: 48px; color: var(--accent); font-weight: 700; }
        .adv-title { font-size: 20px; font-weight: 500; }
        .adv-text { color: var(--gray-text); font-size: 15px; line-height: 1.6; }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 60px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--dark);
        }

        .section-title { font-family: 'Plus Jakarta Sans'; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }

        .services-list { display: flex; flex-direction: column; }

        .service-item {
            display: grid;
            grid-template-columns: 0.1fr 0.15fr 1fr 0.25fr;
            padding: 35px 0;
            border-bottom: 1px solid var(--border);
            text-decoration: none;
            color: var(--dark);
            transition: 0.4s;
            cursor: pointer;
            align-items: center;
        }

        .service-item:hover {
            padding-left: 30px;
            background: white;
        }

        .s-num { font-size: 14px; color: var(--gray-text); opacity: 0.5; }
        
        .s-icon {
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }
        
        .s-icon svg {
            width: 32px;
            height: 32px;
            stroke: var(--accent);
            stroke-width: 1.5;
            fill: none;
            opacity: 0.7;
            transition: 0.3s;
        }
        
        .service-item:hover .s-icon svg {
            opacity: 1;
            stroke-width: 2;
        }
        
        .s-name { font-size: clamp(20px, 3vw, 36px); font-weight: 400; letter-spacing: -0.02em; }
        .s-tag { font-size: 12px; text-transform: uppercase; color: var(--accent); font-weight: 600; text-align: right; letter-spacing: 1px; }

        .testimonials-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .testi-card {
            background: white;
            padding: 50px;
            border-radius: 4px;
            border: 1px solid var(--border);
        }

        .testi-quote { font-size: 20px; font-style: italic; margin-bottom: 30px; line-height: 1.5; color: #444; }
        .testi-author { font-weight: 600; font-size: 16px; }
        .testi-pos { color: var(--gray-text); font-size: 14px; margin-top: 5px; }

        footer {
            background: var(--dark);
            color: white;
            padding: 120px 4vw 60px;
        }

        .footer-cta-block {
            display: flex;
            align-items: center;text-align:center;
            justify-content: center;
            margin-bottom: 80px;
            flex-wrap: wrap;
            gap: 40px;
        }

        .footer-cta-text {
            font-family: 'Plus Jakarta Sans';
            font-size: clamp(32px, 6vw, 90px);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1;
        }

        .footer-form-wrapper {
            background: rgba(255,255,255,0.05);
            padding: 40px;
            border-radius: 2px;
            min-width: 380px;
            border: 1px solid #333;
        }

        .footer-form-title {
            font-size: 18px;
            margin-bottom: 25px;
            font-weight: 500;
            color: #ddd;
        }

        .footer-input {
            width: 100%;
            padding: 16px 20px;
            background: transparent;
            border: 1px solid #444;
            color: white;
            font-family: 'Inter';
            font-size: 15px;
            margin-bottom: 15px;
            transition: 0.2s;
        }
.white{color:#fff !important}
        .footer-input:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,0.03); }
        .footer-input::placeholder { color: #888; }

        .footer-submit {
            background: white;
            color: var(--dark);
            border: none;
            padding: 16px 30px;margin-top:25px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 13px;
            cursor: pointer;
            width: 100%;
            transition: 0.3s;
            font-family: 'Plus Jakarta Sans';
        }
        .footer-submit:hover { background: var(--accent); color: white; }

        .modal-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(18, 18, 18, 0.85);
            backdrop-filter: blur(8px);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0; visibility: hidden;
            transition: 0.3s;
            padding: 20px;
        }
        .modal-overlay.active { opacity: 1; visibility: visible; }
        .modal-container {
            background: var(--bg);
            max-width: 900px; width: 100%;
            max-height: 90vh; overflow-y: auto;
            border-radius: 2px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
            position: relative;
            transform: scale(0.95);
            transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        }
        .active .modal-container { transform: scale(1); }
        .modal-close {
            position: absolute; top: 30px; right: 30px;
            background: white; border: none; font-size: 28px;
            cursor: pointer; width: 40px; height: 40px;
            display: flex; align-items: center; justify-content: center;
            border-radius: 50%; box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            z-index: 10;
        }
        .modal-close:hover { background: var(--dark); color: white; }
        .modal-content { padding: 60px 50px; }
        .modal-tag { font-size: 13px; text-transform: uppercase; color: var(--accent); font-weight: 700; letter-spacing: 2px; margin-bottom: 15px; }
        .modal-title { font-family: 'Plus Jakarta Sans'; font-size: 48px; font-weight: 800; line-height: 1.1; margin-bottom: 25px; }
        .modal-desc { font-size: 18px; line-height: 1.6; color: var(--gray-text); margin-bottom: 40px; padding-bottom: 30px; border-bottom: 1px solid var(--border); }
        .modal-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px 40px; margin-bottom: 50px; }
        .feature-item { display: flex; gap: 15px; }
        .feature-marker { color: var(--accent); font-weight: 700; font-size: 18px; }
        .feature-text { font-size: 16px; font-weight: 500; }
        .feature-sub { font-size: 13px; color: var(--gray-text); margin-top: 5px; }
        .order-form {
            background: white; padding: 35px;
            border: 1px solid var(--border); margin-top: 20px;
        }
        .form-title { font-family: 'Plus Jakarta Sans'; font-size: 22px; font-weight: 700; margin-bottom: 10px; }
        .form-sub { color: var(--gray-text); margin-bottom: 30px; }
        .form-group { margin-bottom: 20px; }
        .form-group input, .form-group textarea {
            width: 100%; padding: 18px 20px;
            border: 1px solid var(--border); background: var(--bg);
            font-family: 'Inter'; font-size: 15px;
        }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .form-submit {
            background: var(--dark); color: white; border: none;margin-top:20px;
            padding: 18px 35px; font-weight: 600; text-transform: uppercase;
            letter-spacing: 2px; cursor: pointer; width: 100%;
            font-family: 'Plus Jakarta Sans';
        }
        .form-submit:hover { background: var(--accent); }

        .reveal-up { opacity: 0; transform: translateY(30px); }

        @media (max-width: 1024px) {
            .advantages-grid { grid-template-columns: 1fr; }
            .service-item { grid-template-columns: 0.3fr 0.3fr 1fr; gap: 10px; }
            .s-icon { justify-content: flex-start; }
            .s-tag { text-align: left; }
            .testimonials-container { grid-template-columns: 1fr; }
            nav { display: none; }
            .modal-features { grid-template-columns: 1fr; }
            .modal-content { padding: 40px 25px; }
            .footer-form-wrapper { min-width: 100%; }
        }

        /* ========= ДОПОЛНЕНИЯ ДЛЯ МОБИЛЬНОЙ ВЕРСИИ КАК ПРИЛОЖЕНИЕ ========= */
        /* Нижняя панель навигации с SVG иконками */
        .mobile-tab-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            justify-content: space-around;
            align-items: center;
            padding: 10px 16px calc(12px + var(--safe-bottom));
            z-index: 1100;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
        }

        .tab-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            background: none;
            border: none;
            font-family: 'Inter', sans-serif;
            font-size: 10px;
            font-weight: 600;
            color: #8e8e93;
            transition: 0.2s;
            cursor: pointer;
            padding: 6px 12px;
            border-radius: 30px;
        }

        .tab-btn.active {
            color: var(--accent);
        }

        .tab-btn svg {
            width: 24px;
            height: 24px;
            stroke: currentColor;
            stroke-width: 1.7;
            fill: none;
        }

        .tab-btn.active svg {
            stroke: var(--accent);
            fill: rgba(42, 75, 124, 0.1);
        }

        .tab-label {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.3px;
        }

        /* Адаптация для мобильных устройств: показываем панель и добавляем отступ */
        @media (max-width: 768px) {
            .mobile-tab-bar {
                display: flex;
            }
            body {
                padding-bottom: calc(70px + var(--safe-bottom));
            }
        }
.black {color:var(--accent) !important;}
        /* Эффект нажатия для мобильных кнопок */
        @media (max-width: 768px) {
            .tab-btn:active {
                transform: scale(0.92);
                transition: 0.05s;
            }
			.modal-title {

				font-size: 24px !important;  }
				
				.service-item:active {
                transform: scale(0.99);
                background: rgba(0,0,0,0.02);
            }
            .btn-primary:active {
                transform: scale(0.97);
            }
        }

/* ===== СТРАНИЦА РЕКВИЗИТОВ ===== */

/* Контейнер для страницы реквизитов */
.requisites-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 5% 100px;
}

/* Hero блок */
.requisites-hero {
    text-align: center;
    margin-bottom: 60px;
}

.requisites-badge {
    display: inline-block;
    background: var(--accent, #2A4B7C);
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 40px;
    margin-bottom: 24px;
}

.requisites-hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--dark, #121212);
}

.requisites-hero p {
    font-size: 18px;
    color: var(--gray, #666);
    max-width: 600px;
    margin: 0 auto;
}

/* Сетка карточек */
.requisites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Карточка */
.requisite-card {
    background: var(--white, #ffffff);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border, rgba(0,0,0,0.08));
    transition: all 0.3s ease;
}

.requisite-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}

/* Заголовок карточки */
.card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border, rgba(0,0,0,0.08));
}

.card-icon {
    width: 52px;
    height: 52px;
    background: rgba(42, 75, 124, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent, #2A4B7C);
    stroke-width: 1.5;
}

.card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

/* Список реквизитов */
.requisites-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.requisite-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border, rgba(0,0,0,0.05));
}

.requisite-label {
    font-weight: 600;
    color: var(--gray, #666);
    min-width: 110px;
}

.requisite-value {
    color: var(--dark, #121212);
    text-align: right;
    word-break: break-word;
    flex: 1;
    font-weight: 500;
}

/* Банковский блок */
.bank-details {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border, rgba(0,0,0,0.08));
}

/* Полная карточка на всю ширину */
.requisite-card-full {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--accent, #2A4B7C) 0%, #1e3a5f 100%);
    color: white;
}

.requisite-card-full .card-header {
    border-bottom-color: rgba(255,255,255,0.2);
}

.requisite-card-full .card-icon {
    background: rgba(255,255,255,0.15);
}

.requisite-card-full .card-icon svg {
    stroke: white;
}

.requisite-card-full .card-title {
    color: white;
}

.requisite-card-full .requisite-label {
    color: rgba(255,255,255,0.7);
}

.requisite-card-full .requisite-value {
    color: white;
}

.requisite-card-full .requisite-item {
    border-bottom-color: rgba(255,255,255,0.1);
}

.requisite-card-full .bank-details {
    border-top-color: rgba(255,255,255,0.2);
}

/* Кнопка копирования */
.copy-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.copy-btn:hover {
    opacity: 1;
}

.copy-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.copy-success {
    color: var(--success, #2e7d64);
    font-size: 11px;
    margin-left: 8px;
}

/* Кнопка скачать */
.download-section {
    text-align: center;
    margin: 50px 0 30px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 2px solid var(--accent, #2A4B7C);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent, #2A4B7C);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.download-btn:hover {
    background: var(--accent, #2A4B7C);
    color: white;
}

/* Юридическая информация */
.legal-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(0,0,0,0.02);
    border-radius: 16px;
    font-size: 12px;
    color: var(--gray, #666);
}

.legal-note a {
    color: var(--accent, #2A4B7C);
    text-decoration: none;
}

.legal-note a:hover {
    text-decoration: underline;
}

/* Кнопка назад */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    color: var(--gray, #666);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--accent, #2A4B7C);
}

/* Адаптивность */
@media (max-width: 860px) {
    .requisites-grid {
        grid-template-columns: 1fr;
    }
    
    .requisite-item {
        flex-direction: column;
        gap: 6px;
    }
    
    .requisite-label {
        min-width: auto;
    }
    
    .requisite-value {
        text-align: left;
        word-break: break-all;
    }
    
    .requisites-page {
        padding: 120px 5% 80px;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .requisite-card {
        padding: 24px 20px;
    }
    
    .card-title {
        font-size: 20px;
    }
}

/* Анимация при копировании */
@keyframes fadeOut {
    0% { opacity: 1; }
    70% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}

.copy-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark, #121212);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    z-index: 1000;
    animation: fadeOut 2s forwards;
}
/* ===== НОВЫЙ СТИЛЬ ПОДВАЛА ===== */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 60px;
}

.footer-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: white;
}

.footer-description {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    transition: 0.3s;
    color: #aaa;
}

.social-link:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

.footer-nav h4,
.footer-contacts h4,
.footer-legal h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    color: #ddd;
}

.footer-nav ul,
.footer-contacts ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
}

.footer-nav li,
.footer-contacts li,
.footer-legal li {
    margin-bottom: 14px;
}

.footer-nav a,
.footer-contacts a,
.footer-legal a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.footer-nav a:hover,
.footer-contacts a:hover,
.footer-legal a:hover {
    color: white;
}

.footer-contacts li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #888;
    font-size: 14px;
}

.footer-contacts svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.footer-contacts a {
    color: #888;
    text-decoration: none;
}

.footer-contacts a:hover {
    color: white;
}

.footer-contacts span {
    color: #888;
    font-size: 14px;
    line-height: 1.4;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    font-size: 12px;
    color: #555;
}

/* Адаптация подвала для планшетов */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    .footer-brand {
        grid-column: span 2;
    }
    .footer-description {
        max-width: 100%;
    }
}

/* Адаптация подвала для мобильных */
@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-brand {
        grid-column: span 1;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
        /* Плавный скролл для всей страницы */
        html {
            scroll-behavior: smooth;
        }