:root { --bg1: #0b2d63; --bg2: #0a2758; --text: #eaf2ff; --muted: #7fb0ff; --active: #1f4f95; --cta: #d5352a; --ctaHover: #c12c23; --accent: #d5352a; }
* { box-sizing: border-box; }
body { margin: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; background: #071a3a; color: var(--text); padding-top: 75px; }
.container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
.site-header { background: linear-gradient(180deg, var(--bg1), var(--bg2)); position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }
.header-row { height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--text); text-decoration: none; min-width: 260px; }
.brand__logo { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex: 0 0 44px; background: rgba(255, 255, 255, 0.08); box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25); }
.brand__logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand__title { font-weight: 800; font-size: 22px; line-height: 1.05; letter-spacing: 0.2px; }
.brand__subtitle { display: block; margin-top: 3px; font-size: 12px; color: #ffb43b; font-weight: 700; }
.nav { display: flex; align-items: center; gap: 10px; padding: 6px; border-radius: 10px; }
.nav__link { color: var(--text); text-decoration: none; font-weight: 700; font-size: 14px; padding: 10px 14px; border-radius: 8px; transition: background 0.15s ease, transform 0.15s ease, opacity 0.15s ease; opacity: 0.95; }
.nav__link:hover { background: rgba(255, 255, 255, 0.08); transform: translateY(-1px); opacity: 1; }
.nav__link.is-active { background: rgba(255, 255, 255, 0.14); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08); }
.cta { display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 6px; background: var(--cta); color: #fff; font-weight: 800; text-decoration: none; letter-spacing: 0.4px; text-transform: uppercase; box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28); transition: background 0.15s ease, transform 0.15s ease; white-space: nowrap; }
.cta:hover { background: var(--ctaHover); transform: translateY(-1px); }
.cta__icon { width: 20px; height: 20px; display: grid; place-items: center; opacity: 0.95; }
.header-accent { height: 3px; background: var(--accent); }
.hero { background: radial-gradient(1200px 500px at 50% -10%, rgba(255, 255, 255, 0.08), transparent 60%), linear-gradient(180deg, #0b2d63 0%, #072455 100%); padding: 70px 0 90px; }
.hero__wrap { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero__title { margin: 0; font-size: 48px; line-height: 1.12; font-weight: 900; color: #f2f7ff; padding: 18px 28px; border-radius: 8px; background: rgba(0, 0, 0, 0.22); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); }
.hero__badge { margin-top: 18px; padding: 12px 22px; border-radius: 6px; background: #b2342a; color: #fff; font-weight: 800; letter-spacing: 0.2px; }
.hero__info { width: min(980px, 100%); margin-top: 46px; border-radius: 8px; background: rgba(150, 165, 185, 0.35); box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22); padding: 26px 32px; position: relative; }
.hero__info::before { content: ""; position: absolute; left: 0; top: 18px; bottom: 18px; width: 4px; background: #ffcc2a; border-radius: 2px; }
.hero__list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 18px; text-align: left; }
.hero__item { display: flex; align-items: center; gap: 14px; font-weight: 800; color: #eaf2ff; }
.hero__check { width: 22px; height: 22px; border-radius: 50%; background: #ffcc2a; flex: 0 0 22px; position: relative; box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18); }
.hero__check::after { content: ""; position: absolute; left: 6px; top: 6px; width: 8px; height: 4px; border-left: 3px solid #0b2d63; border-bottom: 3px solid #0b2d63; transform: rotate(-45deg); }
.hero__actions { margin-top: 34px; display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; align-items: center;}
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none; font-weight: 800; border-radius: 6px; padding: 14px 18px; transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease; white-space: nowrap; }
.btn__icon { width: 18px; height: 18px; display: block; }
.btn--ghost { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.14); color: #eaf2ff; min-width: 240px; }
.btn--ghost:hover { transform: translateY(-1px); background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.22); }
.btn--primary { background: #d5352a; color: #fff; padding: 14px 22px; box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28); }
.btn--primary:hover { transform: translateY(-1px); background: #c12c23; }
.hero__cta { margin-top: 18px; min-width: 260px; }
.stats { background: #eef3fb; padding: 62px 0 74px; position: relative; overflow: hidden; }
.stats__wrap { display: flex; flex-direction: column; align-items: center; }
.stats__grid { width: min(1180px, 100%); display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat-card { background: #fff; border-radius: 14px; padding: 34px 18px 30px; text-align: center; position: relative; box-shadow: 0 14px 28px rgba(12, 26, 75, 0.1); transform: translateY(0); transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease; overflow: hidden; border: 1px solid rgba(13, 43, 99, 0.06); }
.stat-card::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 5px; background: #0b2d63; }
.stat-card::after { content: ""; position: absolute; top: -40%; left: -60%; width: 60%; height: 180%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent); transform: rotate(18deg); opacity: 0; transition: opacity 0.18s ease, left 0.35s ease; pointer-events: none; }
.stat-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(12, 26, 75, 0.16); filter: saturate(1.02); }
.stat-card:hover::after { opacity: 1; left: 120%; }
.stat-card__value { margin-top: 6px; font-size: 44px; font-weight: 900; letter-spacing: 0.2px; color: #0b2d63; }
.stat-card__label { margin-top: 14px; font-size: 16px; font-weight: 600; color: #5a667e; }
.stat-card.is-active { box-shadow: 0 26px 56px rgba(12, 26, 75, 0.18); transform: translateY(-2px); }
.stats__cta { margin-top: 44px; padding: 14px 22px; border-radius: 8px; text-transform: uppercase; letter-spacing: 0.35px; box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22); }
.services { background: #eef3fb; padding: 80px 0 90px; position: relative; overflow: hidden; }
.services__wrap { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; position: relative; z-index: 2; }
.services__title { margin: 0; font-size: 34px; font-weight: 800; color: #0b2d63; }
.services__underline { width: 70px; height: 4px; background: #d5352a; border-radius: 2px; margin: 14px 0 18px; }
.services__subtitle { max-width: 620px; font-size: 16px; color: #5a667e; margin: 0 0 26px; }
.services__cta { margin-bottom: 46px; padding: 14px 22px; border-radius: 8px; text-transform: uppercase; letter-spacing: 0.3px; box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22); }
.services__grid { width: 100%; max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: 40px; justify-content: center; }
.service-card { background: #fff; border-radius: 14px; padding: 28px 22px; box-shadow: 0 14px 30px rgba(12, 26, 75, 0.12); position: relative; transition: transform 0.18s ease, box-shadow 0.18s ease; display: flex; flex-direction: column; align-items: center; text-align: center; min-height: 320px; z-index: 1; }
.service-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: #0b2d63; border-top-left-radius: 14px; border-top-right-radius: 14px; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(12, 26, 75, 0.18); z-index: 10; }
.service-card__icon { width: 74px; height: 74px; border-radius: 50%; background: #eef3fb; display: flex; align-items: center; justify-content: center; margin-top: 6px; margin-bottom: 18px; }
.service-card__icon img { width: 34px; height: 34px; }
.service-card__title { margin: 0; font-size: 18px; font-weight: 800; color: #0b2d63; }
.service-card__text { margin: 10px 0 20px; font-size: 14px; color: #5a667e; line-height: 1.45; flex-grow: 1; }
.btn--danger { background: #d5352a; color: #fff; border-radius: 6px; padding: 12px 8px; font-weight: 800; font-size: 12px; letter-spacing: 0.3px; text-transform: uppercase; box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22); width: 100%; max-width: none; text-align: center; white-space: normal; line-height: 1.15; min-height: 46px; display: flex; align-items: center; justify-content: center; word-break: break-word; margin-top: auto; }
.btn--danger:hover { background: #c12c23; transform: translateY(-1px); }
.process { background: linear-gradient(180deg, #eef3fb 0%, #ffffff 100%); padding: 80px 0 90px; position: relative; }
.process__wrap { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; }
.process__title { margin: 0; font-size: 34px; font-weight: 800; color: #0b2d63; }
.process__underline { width: 70px; height: 4px; background: #d5352a; border-radius: 2px; margin: 14px 0 18px; }
.process__subtitle { max-width: 620px; font-size: 16px; color: #5a667e; margin: 0 0 46px; }
.process__grid { width: 100%; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.process-card { background: #fff; border-radius: 14px; padding: 32px 20px 28px; box-shadow: 0 14px 30px rgba(12, 26, 75, 0.12); position: relative; text-align: center; transition: transform 0.18s ease, box-shadow 0.18s ease; display: flex; flex-direction: column; align-items: center; }
.process-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: #0b2d63; border-top-left-radius: 14px; border-top-right-radius: 14px; }
.process-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(12, 26, 75, 0.18); }
.process-card__number { width: 60px; height: 60px; border-radius: 50%; background: #d5352a; color: #fff; font-size: 28px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; box-shadow: 0 10px 20px rgba(213, 53, 42, 0.3); }
.process-card__title { margin: 0 0 12px 0; font-size: 18px; font-weight: 800; color: #0b2d63; }
.process-card__text { margin: 0; font-size: 14px; color: #5a667e; line-height: 1.5; }
.guarantees { background: linear-gradient(180deg, #ffffff 0%, #eef3fb 100%); padding: 80px 0 90px; position: relative; }
.guarantees__wrap { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; }
.guarantees__title { margin: 0; font-size: 34px; font-weight: 800; color: #0b2d63; }
.guarantees__underline { width: 70px; height: 4px; background: #d5352a; border-radius: 2px; margin: 14px 0 18px; }
.guarantees__subtitle { max-width: 620px; font-size: 16px; color: #5a667e; margin: 0 0 46px; }
.guarantees__grid { width: 100%; max-width: 1000px; margin: 0 auto 50px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.guarantee-card { background: #fff; border-radius: 14px; padding: 32px 24px; box-shadow: 0 14px 30px rgba(12, 26, 75, 0.12); position: relative; text-align: center; transition: transform 0.18s ease, box-shadow 0.18s ease; display: flex; flex-direction: column; align-items: center; }
.guarantee-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: #0b2d63; border-top-left-radius: 14px; border-top-right-radius: 14px; }
.guarantee-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(12, 26, 75, 0.18); }
.guarantee-card__icon { width: 70px; height: 70px; border-radius: 50%; background: #eef3fb; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.guarantee-card__icon img { width: 32px; height: 32px; }
.guarantee-card__title { margin: 0 0 12px 0; font-size: 18px; font-weight: 800; color: #0b2d63; }
.guarantee-card__text { margin: 0; font-size: 14px; color: #5a667e; line-height: 1.5; }
.guarantees__cta { padding: 14px 22px; border-radius: 8px; text-transform: uppercase; letter-spacing: 0.3px; box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22); }
.reviews { background: #eef3fb; padding: 80px 0 90px; position: relative; }
.reviews__wrap { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; }
.reviews__title { margin: 0; font-size: 34px; font-weight: 800; color: #0b2d63; }
.reviews__underline { width: 70px; height: 4px; background: #d5352a; border-radius: 2px; margin: 14px 0 18px; }
.reviews__subtitle { max-width: 620px; font-size: 16px; color: #5a667e; margin: 0 0 46px; }
.reviews__grid { width: 100%; max-width: 1200px; margin: 0 auto 50px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card { background: #fff; border-radius: 14px; padding: 32px 24px; box-shadow: 0 14px 30px rgba(12, 26, 75, 0.12); position: relative; text-align: left; transition: transform 0.18s ease, box-shadow 0.18s ease; }
.review-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(12, 26, 75, 0.18); }
.review-card__header { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.review-card__avatar { width: 50px; height: 50px; border-radius: 50%; background: #0b2d63; color: #fff; font-size: 20px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review-card__name { margin: 0 0 4px 0; font-size: 18px; font-weight: 800; color: #0b2d63; }
.review-card__position { margin: 0; font-size: 14px; color: #5a667e; }
.review-card__rating { color: #ffb43b; font-size: 22px; letter-spacing: 2px; margin-bottom: 16px; }
.review-card__text { margin: 0; font-size: 15px; color: #5a667e; line-height: 1.5; }
.reviews__cta { padding: 14px 22px; border-radius: 8px; text-transform: uppercase; letter-spacing: 0.3px; box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22); }
.faq { background: #eef3fb; padding: 80px 0 90px; position: relative; }
.faq__wrap { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; }
.faq__title { margin: 0; font-size: 34px; font-weight: 800; color: #0b2d63; }
.faq__underline { width: 70px; height: 4px; background: #d5352a; border-radius: 2px; margin: 14px 0 18px; }
.faq__subtitle { max-width: 620px; font-size: 16px; color: #5a667e; margin: 0 0 46px; }
.faq__accordion { width: 100%; max-width: 800px; margin: 0 auto 50px; }
.faq-item { background: #fff; border-radius: 12px; margin-bottom: 16px; box-shadow: 0 8px 20px rgba(12, 26, 75, 0.08); overflow: hidden; border: 1px solid rgba(13, 43, 99, 0.08); }
.faq-item:last-child { margin-bottom: 0; }
.faq-item__question { width: 100%; padding: 24px 28px; background: none; border: none; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; font-size: 17px; font-weight: 800; color: #0b2d63; transition: background-color 0.2s ease; }
.faq-item__question:hover { background-color: rgba(11, 45, 99, 0.03); }
.faq-item__text { flex-grow: 1; padding-right: 20px; }
.faq-item__icon { width: 28px; height: 28px; border-radius: 50%; background: #d5352a; color: #fff; font-size: 20px; font-weight: 400; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.active .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer { padding: 0 28px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.active .faq-item__answer { padding: 0 28px 24px 28px; max-height: 500px; }
.faq-item__answer p { margin: 0; font-size: 15px; color: #5a667e; line-height: 1.6; }
.faq__cta { padding: 14px 22px; border-radius: 8px; text-transform: uppercase; letter-spacing: 0.3px; box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22); }
.contacts { background: #eef3fb; padding: 80px 0 90px; position: relative; }
.contacts__wrap { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; }
.contacts__title { margin: 0; font-size: 34px; font-weight: 800; color: #0b2d63; }
.contacts__underline { width: 70px; height: 4px; background: #d5352a; border-radius: 2px; margin: 14px 0 18px; }
.contacts__subtitle { max-width: 620px; font-size: 16px; color: #5a667e; margin: 0 0 46px; }
.contacts__grid { width: 100%; max-width: 800px; margin: 0 auto 50px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.contact-card { background: #fff; border-radius: 14px; padding: 36px 30px; box-shadow: 0 14px 30px rgba(12, 26, 75, 0.12); position: relative; text-align: center; transition: transform 0.18s ease, box-shadow 0.18s ease; display: flex; flex-direction: column; align-items: center; }
.contact-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: #0b2d63; border-top-left-radius: 14px; border-top-right-radius: 14px; }
.contact-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(12, 26, 75, 0.18); }
.contact-card__icon { width: 70px; height: 70px; border-radius: 50%; background: #eef3fb; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.contact-card__icon img { width: 34px; height: 34px; }
.contact-card__title { margin: 0 0 12px 0; font-size: 20px; font-weight: 800; color: #0b2d63; }
.contact-card__link { margin: 0 0 8px 0; font-size: 18px; font-weight: 700; color: #d5352a; text-decoration: none; transition: color 0.2s ease; }
.contact-card__link:hover { color: #c12c23; text-decoration: underline; }
.contact-card__text { margin: 0; font-size: 15px; color: #5a667e; line-height: 1.5; }
.contacts__cta { padding: 14px 22px; border-radius: 8px; text-transform: uppercase; letter-spacing: 0.3px; box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22); }
.scroll-top { position: fixed; right: 30px; bottom: 30px; width: 50px; height: 50px; background: #d5352a; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 999; opacity: 0; visibility: hidden; transition: all 0.3s ease; box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: #c12c23; transform: translateY(-3px); }
.footer { background: #0b2d63; color: #eaf2ff; padding: 60px 0 30px; }
.footer__wrap { display: flex; flex-direction: column; }
.footer__top { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 40px; }
.footer__brand .brand { margin-bottom: 20px; justify-content: flex-start; }
.footer__description { font-size: 14px; line-height: 1.5; color: #7fb0ff; margin-bottom: 20px; }
.footer__social { display: flex; gap: 15px; }
.footer__social a { width: 40px; height: 40px; background: rgba(255, 255, 255, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.3s ease; }
.footer__social a:hover { background: rgba(255, 255, 255, 0.2); }
.footer__social img { width: 20px; height: 20px; }
.footer__title { font-size: 18px; font-weight: 800; color: #fff; margin: 0 0 20px 0; }
.footer__list { list-style: none; margin: 0; padding: 0; }
.footer__list li { margin-bottom: 10px; }
.footer__list a { color: #7fb0ff; text-decoration: none; font-size: 14px; transition: color 0.3s ease; }
.footer__list a:hover { color: #fff; text-decoration: underline; }
.footer__info { display: flex; flex-direction: column; gap: 20px; }
.footer__contact strong { display: block; color: #fff; font-size: 14px; margin-bottom: 5px; }
.footer__contact p { margin: 0; font-size: 14px; color: #7fb0ff; line-height: 1.5; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 20px; text-align: center; }
.footer__copyright { font-size: 14px; color: #7fb0ff; }
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85); display: none; justify-content: center; align-items: center; z-index: 9999; padding: 20px; backdrop-filter: blur(5px); }
.modal-form { background: linear-gradient(180deg, #0b2d63 0%, #0a2758 100%); border-radius: 16px; width: 100%; max-width: 600px; max-height: 90vh; overflow-y: auto; position: relative; border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5); }
.close-btn { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; background: rgba(213, 53, 42, 0.2); border: 1px solid rgba(213, 53, 42, 0.4); border-radius: 50%; color: #fff; font-size: 24px; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; transition: all 0.3s ease; }
.close-btn:hover { background: #d5352a; transform: rotate(90deg); }
.modal-header { padding: 30px 40px 20px; text-align: center; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.modal-header h2 { margin: 0; font-size: 28px; font-weight: 800; color: #fff; }
.application-form { padding: 30px 40px; }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 700; color: #eaf2ff; font-size: 16px; }
.form-group label.required::after { content: " *"; color: #ff4757; }
.form-group input[type="text"], .form-group textarea { width: 100%; padding: 14px 18px; background: rgba(255, 255, 255, 0.08); border: 2px solid rgba(255, 255, 255, 0.1); border-radius: 8px; color: #fff; font-size: 16px; transition: all 0.3s ease; }
.form-group input[type="text"]:focus, .form-group textarea:focus { outline: none; border-color: #d5352a; background: rgba(255, 255, 255, 0.12); box-shadow: 0 0 0 3px rgba(213, 53, 42, 0.2); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255, 255, 255, 0.5); }
.form-group textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.services-checkboxes { background: rgba(255, 255, 255, 0.05); border-radius: 8px; padding: 20px; margin-top: 10px; border: 1px solid rgba(255, 255, 255, 0.08); }
.checkbox-row { display: flex; gap: 20px; margin-bottom: 15px; }
.checkbox-row:last-child { margin-bottom: 0; }
.checkbox-item { flex: 1; min-width: 0; }
.checkbox-item input[type="checkbox"] { display: none; }
.checkbox-item label { display: block; padding: 12px 15px; background: rgba(255, 255, 255, 0.08); border: 2px solid rgba(255, 255, 255, 0.1); border-radius: 6px; color: #eaf2ff; font-weight: 600; cursor: pointer; text-align: center; transition: all 0.3s ease; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.checkbox-item input[type="checkbox"]:checked + label { background: #d5352a; border-color: #d5352a; color: #fff; box-shadow: 0 5px 15px rgba(213, 53, 42, 0.3); }
.checkbox-item label:hover { background: rgba(213, 53, 42, 0.3); border-color: rgba(213, 53, 42, 0.5); }
.error { color: #ff4757; font-size: 14px; margin-top: 5px; display: none; }
.success-message { background: rgba(46, 213, 115, 0.2); border: 1px solid rgba(46, 213, 115, 0.3); color: #2ed573; padding: 15px 20px; border-radius: 8px; margin: 0 40px 20px; text-align: center; display: none; font-weight: 600; }
.loading { display: none; flex-direction: column; align-items: center; gap: 15px; margin-top: 20px; color: #7fb0ff; text-align: center; }
.loading-spinner { width: 40px; height: 40px; border: 3px solid rgba(255, 255, 255, 0.1); border-top-color: #d5352a; border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.submit-btn { width: 100%; margin-top: 10px; padding: 16px; font-size: 16px; border-radius: 8px; box-shadow: 0 10px 25px rgba(213, 53, 42, 0.3) !important; }
.submit-btn:hover { transform: translateY(-2px) !important; box-shadow: 0 15px 30px rgba(213, 53, 42, 0.4) !important; }
.modal-footer { padding: 20px 40px; border-top: 1px solid rgba(255, 255, 255, 0.1); text-align: center; color: #7fb0ff; font-size: 14px; }
@media (max-width: 768px) { .modal-form { max-width: 95%; margin: 0 auto; } .modal-header, .application-form { padding: 25px 20px; } .checkbox-row { flex-direction: column; gap: 10px; } .checkbox-item label { padding: 10px; } .modal-footer { padding: 15px 20px; } }
@media (max-width: 480px) { .modal-header h2 { font-size: 24px; } .form-group input[type="text"], .form-group textarea { padding: 12px 15px; } }
@media (max-width: 1200px) { .services__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 1024px) { .process__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } .reviews__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } .footer__top { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .guarantees__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } .hero__title { font-size: 34px; padding: 16px 18px; } .hero__info { padding: 22px 18px; } .btn--ghost { min-width: 220px; } }
@media (max-width: 768px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .reviews__grid { grid-template-columns: 1fr; gap: 20px; } .reviews { padding: 60px 0 70px; } .contacts__grid { grid-template-columns: 1fr; gap: 30px; max-width: 400px; } .contacts { padding: 60px 0 70px; } .faq { padding: 60px 0 70px; } .faq-item__question { padding: 20px 22px; font-size: 16px; } .faq-item__answer { padding: 0 22px; } .faq-item.active .faq-item__answer { padding: 0 22px 20px 22px; } }
@media (max-width: 600px) { .process__grid { grid-template-columns: 1fr; gap: 20px; } .process { padding: 60px 0 70px; } .guarantees__grid { grid-template-columns: 1fr; gap: 20px; } .guarantees { padding: 60px 0 70px; } .footer__top { grid-template-columns: 1fr; } .footer { padding: 40px 0 20px; } }
@media (max-width: 480px) { .services__grid { grid-template-columns: 1fr; } .services { padding: 60px 0 70px; } }
@media (max-width: 1050px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .stats__grid { grid-template-columns: 1fr; gap: 18px; } .stat-card { padding: 28px 16px 24px; } .stat-card__value { font-size: 40px; } }
@media (max-width: 980px) { .nav { display: none; } .brand { min-width: auto; } }
@media (max-width: 980px) {
  .nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: linear-gradient(180deg, var(--bg1), var(--bg2)); flex-direction: column; padding: 20px; border-top: 1px solid rgba(255,255,255,0.1); box-shadow: 0 10px 30px rgba(0,0,0,0.3); z-index: 1000; border-radius: 0 0 16px 16px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
  .nav.active { display: flex; max-height: 500px; padding: 20px; }
  .nav__link { width: 100%; text-align: center; padding: 15px; margin: 5px 0; font-size: 16px; border: 1px solid rgba(255,255,255,0.1); }
  .brand { min-width: auto; }
  .header-row { position: relative; padding-right: 100px; }
  
  .header-row::before { content: ""; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); width: 30px; height: 21px; display: flex; flex-direction: column; justify-content: space-between; cursor: pointer; z-index: 1001; }
  .header-row::after { content: ""; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); width: 30px; height: 2px; background: #fff; transition: all 0.3s ease; z-index: 1001; }
  .header-row::before { background: linear-gradient(to bottom, #fff 0%, #fff 20%, transparent 20%, transparent 40%, #fff 40%, #fff 60%, transparent 60%, transparent 80%, #fff 80%, #fff 100%); }
  
  .cta { position: absolute; right: 60px; padding: 10px 14px; font-size: 12px; }
  .cta__icon { width: 16px; height: 16px; }
}

@media (max-width: 768px) {
  body { padding-top: 60px; }
  .header-row { height: 60px; }
  .hero { padding: 40px 0 60px; }
  .hero__wrap { padding: 0 15px; }
  .hero__title { font-size: 28px; padding: 15px 20px; line-height: 1.3; }
  .hero__badge { font-size: 14px; padding: 10px 15px; margin-top: 15px; }
  .hero__info { padding: 20px 15px; margin-top: 30px; }
  .hero__item { font-size: 15px; }
  .hero__actions { display: none !important; }
  .btn--ghost { min-width: 100%; width: 100%; }
  .hero__cta { min-width: 100%; width: 100%; margin-top: 10px; }
}

@media (max-width: 768px) {
  .services { padding: 50px 0 60px; }
  .services__title { font-size: 28px; }
  .services__subtitle { font-size: 15px; padding: 0 15px; }
  .services__grid { gap: 20px; }
  .service-card { padding: 20px 15px; min-height: 280px; }
  .service-card__icon { width: 60px; height: 60px; }
  .service-card__icon img { width: 28px; height: 28px; }
  .service-card__title { font-size: 16px; }
  .service-card__text { font-size: 13px; }
  .btn--danger { font-size: 11px; padding: 10px 6px; }
}

@media (max-width: 768px) {
  .process { padding: 50px 0 60px; }
  .process__title { font-size: 28px; }
  .process__subtitle { font-size: 15px; padding: 0 15px; }
  .process__grid { gap: 20px; }
  .process-card { padding: 25px 15px; }
  .process-card__number { width: 50px; height: 50px; font-size: 24px; }
  .process-card__title { font-size: 16px; }
  .process-card__text { font-size: 13px; }
}

@media (max-width: 768px) {
  .guarantees { padding: 50px 0 60px; }
  .guarantees__title { font-size: 28px; }
  .guarantees__subtitle { font-size: 15px; padding: 0 15px; }
  .guarantee-card { padding: 25px 15px; }
  .guarantee-card__icon { width: 60px; height: 60px; }
  .guarantee-card__icon img { width: 28px; height: 28px; }
  .guarantee-card__title { font-size: 16px; }
  .guarantee-card__text { font-size: 13px; }
}

@media (max-width: 768px) {
  .reviews { padding: 50px 0 60px; }
  .reviews__title { font-size: 28px; }
  .reviews__subtitle { font-size: 15px; padding: 0 15px; }
  .review-card { padding: 25px 15px; }
  .review-card__header { flex-direction: column; text-align: center; gap: 10px; }
  .review-card__name { font-size: 16px; }
  .review-card__position { font-size: 13px; }
  .review-card__rating { font-size: 18px; }
  .review-card__text { font-size: 14px; }
}

@media (max-width: 768px) {
  .faq { padding: 50px 0 60px; }
  .faq__title { font-size: 28px; }
  .faq__subtitle { font-size: 15px; padding: 0 15px; }
  .faq-item__question { padding: 18px 15px; font-size: 15px; }
  .faq-item__answer { padding: 0 15px; }
  .faq-item.active .faq-item__answer { padding: 0 15px 18px 15px; }
  .faq-item__answer p { font-size: 14px; }
}

@media (max-width: 768px) {
  .contacts { padding: 50px 0 60px; }
  .contacts__title { font-size: 28px; }
  .contacts__subtitle { font-size: 15px; padding: 0 15px; }
  .contact-card { padding: 25px 15px; }
  .contact-card__icon { width: 60px; height: 60px; }
  .contact-card__icon img { width: 28px; height: 28px; }
  .contact-card__title { font-size: 16px; }
  .contact-card__link { font-size: 16px; }
  .contact-card__text { font-size: 13px; }
}

@media (max-width: 768px) {
  .stats { padding: 40px 0 50px; }
  .stats__grid { gap: 15px; }
  .stat-card { padding: 25px 15px; }
  .stat-card__value { font-size: 36px; }
  .stat-card__label { font-size: 14px; }
}

@media (max-width: 768px) {
  .footer { padding: 40px 0 20px; }
  .footer__top { gap: 30px; }
  .footer__description { font-size: 13px; }
  .footer__title { font-size: 16px; }
  .footer__list a { font-size: 13px; }
  .footer__contact p { font-size: 13px; }
  .footer__copyright { font-size: 12px; }
}

@media (max-width: 768px) {
  .scroll-top { width: 45px; height: 45px; right: 15px; bottom: 15px; }
  .scroll-top svg { width: 20px; height: 20px; }
}

@media (max-width: 768px) {
  .modal-form { max-width: 95%; margin: 0 auto; }
  .modal-header, .application-form { padding: 25px 20px; }
  .checkbox-row { flex-direction: column; gap: 10px; }
  .checkbox-item label { padding: 10px; }
  .modal-footer { padding: 15px 20px; }
  .modal-header h2 { font-size: 24px; }
  .form-group input[type="text"], .form-group textarea { padding: 12px 15px; }
}

@media (max-width: 360px) {
  .brand__title { font-size: 18px; }
  .brand__subtitle { font-size: 10px; }
  .hero__title { font-size: 24px; padding: 12px 15px; }
  .hero__badge { font-size: 12px; padding: 8px 12px; }
  .hero__item { font-size: 14px; }
  .btn { padding: 12px 15px; font-size: 14px; }
  .btn__icon { width: 16px; height: 16px; }
  .services__grid, .process__grid, .guarantees__grid, .reviews__grid { gap: 15px; }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .guarantees__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero { padding: 30px 0 40px; }
  .hero__title { font-size: 24px; padding: 10px 15px; }
  .hero__info { padding: 15px; margin-top: 20px; }
  .hero__actions { margin-top: 20px; }
  .modal-form { max-height: 80vh; }
  .nav.active { max-height: 300px; overflow-y: auto; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav.active .nav__link {
  animation: fadeIn 0.3s ease forwards;
  opacity: 0;
}

.nav.active .nav__link:nth-child(1) { animation-delay: 0.1s; }
.nav.active .nav__link:nth-child(2) { animation-delay: 0.2s; }
.nav.active .nav__link:nth-child(3) { animation-delay: 0.3s; }
.nav.active .nav__link:nth-child(4) { animation-delay: 0.4s; }
.nav.active .nav__link:nth-child(5) { animation-delay: 0.5s; }
.nav.active .nav__link:nth-child(6) { animation-delay: 0.6s; }

@media (max-width: 768px) {
  .nav__link, .btn, .service-card, .process-card, .guarantee-card, .review-card, .contact-card, .faq-item__question, .checkbox-item label {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
    min-height: 44px;
  }
  
  input, textarea, button, select {
    font-size: 16px;
  }
}

@media (max-width: 980px) {
  .cta span {
    display: none !important;
  }
  
  .cta {
    display: none !important; 
  }
  
  .cta__icon {
    width: 24px !important;
    height: 24px !important;
    margin: 0 !important;
  }
  
  .header-row::before {
    width: 40px !important;
    height: 40px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    right: 15px !important;
    cursor: pointer !important;
    background: linear-gradient(to bottom, 
      #fff 0%, #fff 20%, 
      transparent 20%, transparent 40%, 
      #fff 40%, #fff 60%, 
      transparent 60%, transparent 80%, 
      #fff 80%, #fff 100%);
  }
  
  .header-row::after {
    display: none;
  }
  
  .nav.active ~ .header-row::before {
    background: linear-gradient(to bottom, 
      transparent 45%, #fff 45%, #fff 55%, transparent 55%),
      linear-gradient(to bottom, 
      transparent 45%, #fff 45%, #fff 55%, transparent 55%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px 2px, 2px 20px;
  }
}

@media (max-width: 480px) {
  .header-row {
    padding-right: 80px !important;
  }
  
  .cta {
    right: 10px !important;
  }
  
  .header-row::before {
    right: 10px !important;
  }
  
  .brand__title {
    font-size: 16px !important;
  }
  
  .brand__subtitle {
    font-size: 9px !important;
  }
  
  .brand__logo {
    width: 36px !important;
    height: 36px !important;
  }
}

@media (max-width: 980px) {
  .header-row::before {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
    tap-highlight-color: rgba(255, 255, 255, 0.2);
  }
  
  .header-row:active::before {
    opacity: 0.7;
    transform: translateY(-50%) scale(0.95) !important;
  }
}

@media (min-width: 769px) and (max-width: 980px) {
  .cta span {
    display: inline !important;
    font-size: 10px !important;
  }
  
  .cta {
    width: auto !important;
    height: auto !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    right: 60px !important;
  }
}

@media (max-width: 768px) {
  section.hero .hero__actions {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    pointer-events: none !important;
  }
}