@font-face {
    font-family: 'Proxima Nova';
    src: url('../font/ProximaNova-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../font/ProximaNova-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../font/ProximaNova-Semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../font/ProximaNova-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Bebas Neue';
    src: url('../font/bebasneuebold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Применяем шрифт ко всему сайту */
body {
    font-family: 'Proxima Nova', sans-serif;
}



/*
 * 1. Установка модели блока (Box Sizing) в 'border-box' для упрощения работы с макетом.
 * 2. Сброс стандартных margin и padding у всех элементов.
 */
*,
*::before,
*::after {
    box-sizing: border-box; /* 1. Границы и отступы включаются в общую ширину/высоту элемента */
    margin: 0;             /* 2. Сброс внешних отступов */
    padding: 0;            /* 2. Сброс внутренних отступов */
}

/* * Сброс базовых стилей для HTML и BODY
 */
html {
    /* Обеспечивает, что минимальная высота занимает весь видимый экран */
    min-height: 100%;
    /* Плавная прокрутка (опционально) */
    scroll-behavior: smooth; 
}

body {
    /* Установка базового шрифта и межстрочного интервала */
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 400; /* Ensures the Regular file is used by default */
    line-height: 1.2; /* Оптимальная высота строки для чтения */
    font-size: 16px; /* Установка базового размера шрифта */
    color: #1D1D1F;
    -webkit-font-smoothing: antialiased; /* Улучшенное сглаживание шрифтов */
    -moz-osx-font-smoothing: grayscale;   
}

/* * 3. Удаление маркеров у списков и подчёркивания у ссылок.
 */
ul,
ol {
    list-style: none; /* 3. Удаление маркеров/нумерации */
}

a {
    text-decoration: none; /* 3. Удаление подчёркивания */
    color: inherit; /* Наследование цвета текста от родительского элемента */
    transition: .3s;
}

/* * 4. Обеспечивает, что изображения, видео и SVG не превышают ширину своего контейнера.
 */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%; /* 4. Делает медиа-элементы "отзывчивыми" (responsive) */
    height: auto;
}

/* * 5. Сброс настроек для заголовков и текстовых элементов (опциональные, но полезные).
 */
h1, h2, h3, h4, h5, h6, p, blockquote {
    /* Улучшенная расстановка переносов и пробелов (в современных браузерах) */
    text-wrap: pretty; 
}
h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 1;
}
h2 {
    font-size: 50px;
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 36px;
}

/* * 6. Стиль для кнопок и форм
 * Сброс специфического внешнего вида элементов формы для удобства стилизации.
 */
button,
input,
textarea,
select {
    font: inherit; /* Наследование шрифта из body */
    border: none;
    outline: none;
    background: none;
    color: inherit;
}

button {
    cursor: pointer;
    color: #fff;
    background: #084BF3;
    padding: 16px 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border-radius: 4px;
    font-weight: 400;
    font-size: 17px;
    border: none;
    transition: all 0.3s ease;
}
button:hover {
    background: #0639c2;         /* темнее */
    transform: translateY(-3px); /* лёгкий подъём */
    box-shadow: 0 6px 15px rgba(8, 75, 243, 0.3);
}
/* * Ограничение возможности изменения размера текстовых полей
 */
textarea {
    resize: vertical; /* Разрешено менять размер только по вертикали */
}
header {
    height: 60px;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    box-shadow: 0 0 50px rgba(0, 72, 255, 0.16);
}
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    padding: 0 16px; /* безопасные отступы */
}
.flexed {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main-nav {
    display: flex;
    gap: 60px;
    align-items: center;
}
.mainmenu {
  display: flex;
}
.mainmenu li {
    margin-left: 12px;
    font-size: 16px;
    font-weight: 600;
}   
.mainmenu a:hover {
    color:blue;
}
.mobile-contact {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    gap: 12px;
}
.mobile-contact:hover {
    color: #17C671;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #1D1D1F;
  border-radius: 2px;
}
.blue {
    color: #084BF3;
}
.hero {
    height: 760px;
    background: radial-gradient(circle, #F5F5F7 0%, #F6F6F6 100%);
}
.title-text {
    flex: 0 0 45%; /* занимает ровно 60% */
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.sub-title {
    font-size: 18px;
    line-height: 1.2;
}
.icon-left {
    display: flex;
    gap: 6px;
}
.icon-left-cover {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.section-padding {
    padding-top: 72px;
    padding-bottom: 72px;
}
.white-panel {
    background: #fff;
    box-shadow: 0 0 50px rgba(0, 72, 255, 0.16);
    padding: 24px;
    border-radius: 6px;
}
.flexed-v {
    display: flex;
    flex-direction: column;
}
.half-box {
    max-width: 880px;
}
.half-box-servis {
    display: flex;
    gap: 24px;
    background: linear-gradient(
    to right,
    #CEDCFF 0%,     /* светло-фиолетовый */
    #e9edff 17%,    /* до 40% идёт фиолетовый */
    #ffffff 17%,    /* резкий переход */
    #ffffff 100%
  );
}
.half-box-servis img{
 width: 160px;
 height: 160px;
}
.title-bold {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 6px;
}
.text-service {
    font-size: 17px;
    color: #454545;
}
.jumper {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 50/50 */
    gap: 24px;
}
.steps {
    background: #F5F5F7;
}
.grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    transition: all 0.3s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 6px;
  background: linear-gradient(90deg, #cfe3ff, #a8c8ff);
  border-radius: 0 0 6px 6px;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(6, 63, 221, 0.452);
}
.card-text {
    font-size: 15px;
    color: #454545;
}
.faq-section-cover{
    display: grid;
    gap: 24PX;
    grid-template-columns: 1fr 3fr;
}
.faq-section {
    background: #F5F5F7;
}
.manager {
    gap: 24px;
}
.number {
    font-size: 20px;
}
.faq-title {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}




/* ===== Переменные (можно держать вверху файла) ===== */
:root{
  --qna-accent:#247bff;   /* цвет плюса/минуса и заголовка */
  --qna-dots:#9ec3ff;     /* пунктир разделителя */
  --qna-text:#1d1d1f;     /* текст вопросов */
  --qna-muted:#454545;    /* текст ответов */
  --qna-radius:8px;
}

/* ===== Сброс только для кнопок внутри .qna ===== */
.qna button,
.qna .button{            /* если где-то используется .button */
  all: unset;            /* обнуление оформления */
  box-sizing: border-box;
  display: block;
  cursor: pointer;
}

/* ===== Контейнер и заголовок ===== */
.qna{
  max-width: 960px;
  margin: 0 auto;
  padding: 8px 16px;
  width: 100%;
  text-align: left;
  line-height: 1.3;
}
.qna__title{
  text-align: center;
  color: var(--qna-accent);
  font-weight: 800;
  margin: 0 0 18px;
}
.qna__title::after{
  content:"";
  display:block;
  width:24px; height:2px;
  background: var(--qna-accent);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ===== Список и элементы ===== */
.qna__list{
  list-style:none;
  margin:0;
  padding:0;
  font-size: 17px;
}
.qna-item{
  border-bottom: 1px dotted var(--qna-dots);
}

/* ===== Кнопка-вопрос ===== */
.qna .qna-question{
  display:flex;
  align-items:center;
  gap:12px;
  width:100%;
  padding:14px 0;
  text-align:left;
  font-weight: 600;
}
.qna .qna-question:hover{ opacity:.9; }
.qna .qna-question:focus-visible{
  outline: 2px solid var(--qna-accent);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ===== Значок + / − ===== */
.qna .qna-sign{
  position:relative;
  width:16px; height:16px;
  flex:0 0 16px;
}
.qna .qna-sign::before,
.qna .qna-sign::after{
  content:"";
  position:absolute;
  background: var(--qna-accent);
  border-radius:2px;
}
.qna .qna-sign::before{               /* горизонтальная черта (минус) */
  left:0; right:0;
  top:50%; height:2px;
  transform: translateY(-50%);
}
.qna .qna-sign::after{                /* вертикальная черта (для плюса) */
  top:0; bottom:0;
  left:50%; width:2px;
  transform: translateX(-50%);
}
.qna-item.active .qna-sign::after{    /* при открытии − скрываем вертикаль */
  opacity:0;
}

/* ===== Ответ ===== */
.qna .qna-answer{
  max-height:0;
  overflow:hidden;
  transition: max-height .3s ease;
  color: var(--qna-muted);
  padding: 0 0 0 28px;          /* отступ под знак */
}
.qna-item.active .qna-answer{
  padding-bottom:12px;
}

/* Мелкая типографика внутри ответа */
.qna .qna-answer > *:first-child{ margin-top:8px; }
.qna .qna-answer p{ margin:0 0 8px; }



/* ===== Защита от агрессивных глобальных button !important (опционально) ===== */
.qna .qna-question{
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.pref {
    background: #F5F5F7;
    padding-bottom: 36px;
}
.card-h {
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-align: left;
}
.card-h::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 6px;
  background: linear-gradient(90deg, #cfe3ff, #a8c8ff);
  border-radius: 0 0 6px 6px;
}
.card-h:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(6, 63, 221, 0.452);
}
.call {
    background: #EAF0FF;
}
.call-back {
  display: grid;
  grid-template-columns: 30% 1fr; /* 1fr — оставшееся пространство */
  width: 100%;
  gap: 24px;
}
.text {
    line-height: 1.4;
    font-size: 17px;
}

.input-box {
  position: relative;
  margin-bottom: 12px;
}

.input-box .icon {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  font-size: 16px;
  color: #777;
}

.input-box input {
  width: 100%;
  padding: 10px 10px 10px 35px;
  border: 1px solid #ddd;
  font-size: 15px;
  border-radius: 2px;
  transition: border-color 0.2s ease;
  border-radius: 4px;
}

.input-box input:focus {
  border-color: #247bff;
  outline: none;
}
#form-status {
  margin-top: 10px;
  font-size: 14px;
}
.callback-form {
    text-align: left;
    gap: 24px;
    padding-top: 50px;
}
.contactForms {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: left;
}
footer {
    background-color: #ffffff; /* Цвет фона футера, как на изображении */
    padding: 20px 0;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 15px;
}

.footer-top .logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #007bff; /* Цвет логотипа */
}

.footer-top .logo img {
    height: 30px; /* Размер иконки */
    margin-right: 10px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}

.footer-nav a {
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #007bff; /* Цвет при наведении */
}

.contact-info .phone-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.contact-info .whatsapp-icon {
    margin-right: 8px;
    font-size: 20px;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
}
footer a {
  color: #212529;
}
