:root {
 --bg-dark: #060f2e;
 --card-bg: #242529;
 --text: #f5f7ff;
 --muted: #a7adc1;
 --accent: #d73b4d;
 --radius: 40px;
}

* {
 box-sizing: border-box;
}

.visually-hidden {
 position: absolute;
 width: 1px;
 height: 1px;
 padding: 0;
 margin: -1px;
 overflow: hidden;
 clip: rect(0, 0, 0, 0);
 white-space: nowrap;
 border: 0;
}


html,
body {
 margin: 0;
 padding: 0;
}

html {
 overflow-x: hidden;
 scroll-behavior: smooth;
}

body {
 font-family: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
 font-weight: 300;
 color: var(--text);
 background: linear-gradient(180deg, #081741 0%, #091636 48%, #0a1530 100%);
 min-height: 100vh;
 overflow-x: clip;
}

.site-bg {
 position: fixed;
 inset: 0;
 pointer-events: none;
 background: none;
 z-index: -1;
}

.page {
 width: 100%;
 max-width: none;
 margin: 0;
 padding-top: 0;
}

.top-nav {
 width: 100%;
 margin: 0;
 padding: 0;
 position: fixed;
 top: 0;
 left: 0;
 z-index: 20;
 background: transparent;
 transition: background 240ms ease, box-shadow 240ms ease;
}

.top-nav.is-scrolled {
 background: linear-gradient(180deg, rgba(8, 23, 65, 0.88) 0%, rgba(9, 22, 54, 0.88) 48%, rgba(10, 21, 48, 0.88) 100%);
 box-shadow: 0 8px 24px rgba(4, 10, 25, 0.35);
}

.top-nav-inner {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 24px;
 width: min(100%, 1440px);
 margin: 0 auto;
 padding: 16px 30px;
 position: relative;
}

.brand,
.phone,
.menu a {
 color: #fff;
 font-family: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
 text-decoration: none;
 font-size: 16px;
 text-transform: uppercase;
}

.brand {
 font-weight: 700;
 letter-spacing: 0.08em;
 display: inline-flex;
 align-items: center;
}

.brand-logo {
 display: block;
 width: min(300px, 24vw);
 max-width: 300px;
 height: auto;
}

.menu {
 display: flex;
 list-style: none;
 gap: 42px;
 margin: 0;
 padding: 0;
}

.menu-toggle {
 display: none;
 align-items: center;
 justify-content: center;
 height: 38px;
 padding: 0 14px;
 border-radius: 12px;
 border: 1px solid rgba(116, 143, 233, 0.25);
 background: rgba(6, 20, 58, 0.25);
 color: #fff;
 cursor: pointer;
 font-family: inherit;
 text-transform: uppercase;
 letter-spacing: 0.08em;
 transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.menu-toggle:active {
 transform: translateY(1px);
}

.menu a {
 color: #fff;
 letter-spacing: 0.08em;
 display: inline-block;
 transition: color 200ms ease, transform 200ms ease;
 will-change: transform;
 font-family: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
 text-decoration: none;
}

.menu a:hover,
.menu a:focus-visible {
 color: var(--accent);
 transform: translateY(-1px);
}

.menu a::after {
 content: "";
 display: block;
 height: 2px;
 width: 0%;
 background: var(--accent);
 transition: width 220ms ease;
 margin-top: 6px;
}

.menu a:hover::after,
.menu a:focus-visible::after {
 width: 100%;
}

.hero {
 position: relative;
 min-height: calc(100vh);
 padding: 120px 30px 170px;
 overflow: hidden;
 background-image: none;
}

.hero::before,
.hero::after {
 content: "";
 position: absolute;
 pointer-events: none;
}

.hero::before {
 width: 720px;
 height: 720px;
 right: 0;
 top: 175px;
 z-index: 3;
 background-image: url("/new/sova.svg");
 background-repeat: no-repeat;
 background-size: contain;
 background-position: right center;
 opacity: 0;
 transform: translate3d(0, 0, 0) rotate(0deg);
 transform-origin: 64% 56%;
 animation: sovaIn 1100ms ease forwards, sovaSway 8s ease-in-out 1200ms infinite;
}

.hero::after {
 inset: 0;
 z-index: 1;
 background-image: url("/new/g9.svg");
 background-repeat: no-repeat;
 background-size: 100% 100%;
 background-position: center top;
 opacity: 0.64;
 transform: none;
}

.hero-content {
 position: relative;
 z-index: 4;
 width: min(100%, 1440px);
 max-width: 1440px;
 margin: 0 auto;
 padding: 85px 30px 0;
}

@keyframes heroBgZoom {
 0% {
 transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
 }

 40% {
 transform: translate3d(-120px, -18px, 0) rotate(1.1deg) scale(1.08);
 }

 60% {
 transform: translate3d(-120px, -18px, 0) rotate(1.1deg) scale(1.08);
 }

 100% {
 transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
 }
}

@keyframes sovaIn {
 0% {
 opacity: 0;
 }

 100% {
 opacity: 0.95;
 }
}

@keyframes sovaSway {
 0% {
 transform: translate3d(0, 0, 0) rotate(0deg);
 }

 50% {
 transform: translate3d(10px, -6px, 0) rotate(1.6deg);
 }

 100% {
 transform: translate3d(0, 0, 0) rotate(0deg);
 }
}

.reveal {
 opacity: 0;
 transform: translate3d(0, 34px, 0) scale(0.98);
 transition: opacity 560ms ease, transform 560ms ease;
 will-change: opacity, transform;
}

.reveal.revealed {
 opacity: 1;
 transform: translate3d(0, 0, 0) scale(1);font-family: 'Manrope';

}

.container-1440 {
 width: 100%;
 max-width: 1440px;
 margin: 0 auto;
}

h1 {
 margin: 0;
 font-size: 74px;
 line-height: 1.2;
 letter-spacing: 0.01em;
 text-transform: uppercase;
}

.hero-list {
 margin: 34px 0 0;
 padding: 0;
 list-style: none;
}

.hero-list li {
 position: relative;
 padding-left: calc(1em + 22px);
 margin-bottom: 15px;
 color: #fff;
 font-size: 28px;
 line-height: 1.25;font-family: "Montserrat";
 font-weight: 400;
}

.hero-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2em;
    top: calc(0.5lh - 0.5em);
    width: 3em;
    height: 3em;
    max-width: 30px;
    max-height: 30px;
    border: 2px solid var(--accent);
    border-radius: 6px;
    box-sizing: border-box;
    background: radial-gradient(circle 6px at 50% 50%, #ffffff 99%, transparent 100%);
}


.content-card {
 margin-top: -100px;
 position: relative;
 z-index: 6;
 background: linear-gradient(180deg, #333232 0%, #0c0c0c 100%);
 border-radius: 100px;
 padding: 100px 64px 70px;
 box-shadow: 0 36px 90px rgba(0, 0, 0, 0.35);
 border-top: 2px solid #7b7b7b;
}


h2 {
 margin: 0 0 60px;
 font-size: 64px;
 letter-spacing: 0.02em;
 line-height: 1;
 text-transform: uppercase;
 font-family: 'Manrope';
 font-weight: 600;
}
#contact h2 {
 margin: 0 0 20px;
 font-size: 64px;
 
}
h3 {
 margin: 0 0 14px;
 font-size: 38px;
 text-transform: uppercase;
 line-height: 1.06;font-family: 'Manrope';
 font-weight: 400;
}
#partners h2
{
 margin: 0 0 10px;
}
.services-grid {
 display: flex;
 flex-direction: column;
 gap: 24px;
 max-width: 760px;
 padding-right: 0;
}

.services {
 position: relative;
 overflow: visible;
}

.services .container-1440 {
 position: relative;
 z-index: 2;
}

.services::after {
 content: "";
 position: absolute;
 top: 46px;
 right: -100px;
 width: 836px;
 height: 836px;
 background-image: url("/new/1с_img 1.svg");
 background-repeat: no-repeat;
 background-size: contain;
 background-position: right center;
 pointer-events: none;
 z-index: 1;
 transform-origin: right center;
 animation: swayOneC 6.8s ease-in-out infinite;
 will-change: transform;
 transform: translate3d(0, 0, 0);
}

.services article {
 color: #e9ecff;
 margin-bottom: 0;
}

.services p,
.about p {
 margin: 0 0 20px;
 color: #fff;
 line-height: 1.7;
 font-size: 18px;
 font-weight: 300;
}

.about p {
 font-family: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
 font-weight: 300;
}

.services ul {
 margin: 0;
 padding-left: 18px;
 color: #fff;
}

.services li {
 margin-bottom: 8px;
 font-size: 16px;
 line-height: 1.3;
}

@keyframes swayOneC {
 0% {
 transform: translate3d(0, 0, 0) rotate(0deg);
 }

 50% {
 transform: translate3d(12px, -8px, 0) rotate(1.6deg);
 }

 100% {
 transform: translate3d(0, 0, 0) rotate(0deg);
 }
}

@keyframes sova2Sway {
 0% {
 transform: translate3d(0, 0, 0) rotate(0deg);
 }

 50% {
 transform: translate3d(8px, -5px, 0) rotate(1.3deg);
 }

 100% {
 transform: translate3d(0, 0, 0) rotate(0deg);
 }
}

.partners {
 margin-top: 70px;
 text-align: center;
}

.partners .container-1440 {
 position: relative;
 padding: 8px 24px 0;
}

.partner-grid {
 display: grid;
 grid-template-columns: repeat(6, minmax(0, 1fr));
 gap: 15px 0px;
 margin-top: 34px;
 align-items: center;
}

.partner-grid span {
 border: 0;
 border-radius: 0;
 min-height: 88px;
 display: grid;
 place-items: center;
 padding: 6px 10px;
 background: transparent;
}

.partner-grid span img {
 display: block;
 max-width: 100%;
 max-height: 150px;
 width: auto;
 height: auto;
 object-fit: contain; border-radius: 10px;
}

.partner-item {
 transform-origin: center;
 transition: transform 240ms ease;
}

.partner-item:hover {
 transform: scale(1.04);
}

.partner-grid span:nth-child(1) {
 grid-column: 1 / 3;
}

.partner-grid span:nth-child(2) {
 grid-column: 3 / 5;
}

.partner-grid span:nth-child(3) {
 grid-column: 5 / 7;
}

.partner-grid span:nth-child(4) {
 grid-column: 1 / 4;
 min-height: 112px;

}

.partner-grid span:nth-child(5) {
 grid-column: 4 / 7;
 min-height: 112px;

}

.partners-pagination {
 display: none;
}

.about {
 margin-top: 66px;
}

.about .container-1440 {
 position: relative;
}

.contact {
 position: relative;
 margin-top: -90px;
 padding: 210px 64px 67px;
 height: 1080px;
 background: radial-gradient(120% 140% at -10% 50%, rgba(13, 56, 170, 0.28) 0%, rgba(13, 56, 170, 0) 55%), linear-gradient(90deg, #03103a 0%, #041247 45%, #051651 100%);
 border-radius: var(--radius);
 box-shadow: 0 36px 90px rgba(0, 0, 0, 0.35);
 overflow: hidden;
}

.contact::before {
 content: "";
 position: absolute;
 inset: -10% -6%;
 background-image: url("/new/g9.svg");
 background-repeat: no-repeat;
 background-size: 100% auto;
 background-position: center top;
 opacity: 0.28;
 pointer-events: none;
 z-index: 1;
}

.contact::after {
 content: "";
 position: absolute;
 right: 0px;
 bottom: -30px;
 width: 830px;
 height: 840px;
 max-height: 850px;
 pointer-events: none;
 background-image: url("/new/sova2.png");
 background-repeat: no-repeat;
 background-size: contain;
 background-position: right bottom;
 opacity: 0.98;
 z-index: 2;
 transform-origin: 70% 58%;
 animation: sova2Sway 9s ease-in-out infinite;
}

.contact .container-1440 {
 position: relative;
 z-index: 3;
}

.contact p {
 margin: 0 0 60px;
 color: #cad3f6;
 font-size: 17px;
 width: min(100%, 557px);
 line-height: 1.5;
}

.contact-form {
 position: relative;
 z-index: 2;
 width: min(430px, 100%);
 background: #f5f7ff;
 border-radius: 14px;
 padding: 35px;
 display: grid;
 gap: 15px;
}

.contact-form input,
.contact-form textarea {
 width: 100%;
 height: 60px;
 border: 0;
 border-radius: 10px;
 background: #2c55a2;
 color: #ffffff;
 padding: 11px 14px;
 font-family: inherit;
 font-size: 16px;
 line-height: 1.1;
}

.contact-form textarea {
 resize: vertical;
 min-height: 60px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
 color: #b9c7ec;
}

.policy {

 align-items: center;
 gap: 8px;
 font-size: 11px;
 line-height: 1.25;
 color: #041842;
}

.policy input {
 width: 14px;
 height: 14px;
 margin: 0;
 flex-shrink: 0;
}

.policy a {
 color: #0d3d9e;
 text-decoration: underline;
}

.policy a:hover,
.policy a:focus-visible {
 color: var(--accent);
}

.contact-form button {
 border: 0;
 border-radius: 10px;
 height: 60px;
 padding: 13px;
 font-weight: 700;
 color: white;
 font-size: 13px;
 background: linear-gradient(90deg, #ef4553, #c72f43);
 cursor: pointer;
}

.footer {
 width: 100%;
 margin: 0;
 background: #06143a;
 color: #d2dbfb;
 border-top: 1px solid rgba(116, 143, 233, 0.2);
 position: relative;
 overflow: hidden;
 isolation: isolate;
}



.footer-inner {
 width: min(100%, 1440px);
 margin: 0 auto;
 min-height: 88px;
 padding: 14px 22px;
 display: grid;
 grid-template-columns: 1.4fr 1fr 1fr 1fr;
 align-items: center;
 gap: 20px;
 position: relative;
 z-index: 2;
}

.footer-col {
 color: #d6defa;
 text-decoration: none;
 font-size:16px;
 letter-spacing: 0.01em;
}

.footer-address p {
 margin: 0;
 line-height: 1.5;
 font-size:16px;
 text-align: left;
}

.footer-address {
 align-self: center;
}

.footer-phone {
 justify-self: center;
 white-space: nowrap;
}

.footer-mail {
 position: relative;
 justify-self: center;
 white-space: nowrap;
 padding-left: 28px;
}

.footer-mail::before {
 content: "✉";
 position: absolute;
 left: 0;
 top: 50%;
 transform: translateY(-52%);
 font-size: 18px;
 line-height: 1;
 opacity: 0.9;
}

.footer-logo {
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 justify-self: center;
 gap: 10px;
}

.footer-logo-link {
 display: inline-flex;
 align-items: center;
 justify-content: center;
}

.footer-logo img {
 display: block;
 width: min(280px, 22vw);
 max-width: 280px;
 height: auto;
}

.footer a {
 color: inherit;
 text-decoration: none;
}

.footer-policy {
 display: block;
 font-size: 14px;
 opacity: 0.95;
 width: 100%;
 text-align: center;
 text-decoration: underline;
 text-decoration-color: rgba(255, 255, 255, 0.35);
 transition: color 200ms ease, text-decoration-color 200ms ease, opacity 200ms ease;
}

.footer-policy:hover,
.footer-policy:focus-visible {
 color: var(--text);
 opacity: 1;
 text-decoration-color: var(--accent);
}@media (max-width: 1400px) {
.hero::before {
 
 top: 175px;
 
}
h1 {
 margin: 0;
 font-size: 58px;
 line-height: 1.2;
 letter-spacing: 0.01em;
 text-transform: uppercase;
}
.services::after {

 right: -260px;
 
}
}
@media (max-width: 1280px) {
 h1 {
 font-size: 56px;
 } .hero-content {
 margin-left: 0;
 margin-right: auto;
 width: 100%;
 max-width: min(720px, 55vw);
 padding: 53px 0 0;
 text-align: left;
 }
}

@media (max-width: 1200px) {
 .menu {
 display: none;
 }
 .container-1440 {
 
 padding: 0px 30px 0px 00px;
}
 .menu-toggle {
 display: none;
 }

 .page,
 .footer {
 width: min(100%, calc(100vw - 0px));
 }

 .footer {
 width: 100%;
 }

 .footer-inner {
 width: min(100%, 1440px);
 padding-left: 30px;
 padding-right: 30px;
 grid-template-columns: 1fr 1fr;
 row-gap: 14px;
 min-height: auto;
 }

 .footer-col,
 .footer-address p {
 font-size: 16px;
 }

 .footer-logo {
 justify-content: flex-start;
 align-items: flex-start;
 }

 .footer-logo img {
 width: 200px;
 max-width: 200px;
 }

 .footer-policy {
 margin-top: 6px;
 }

 /* dropdown menu removed: keep desktop layout without icon */

 .top-nav-inner {
 width: min(100%, calc(100vw - 24px));
 padding: 12px 16px;
 }

 .hero {
 min-height: 100svh;
 }

 .hero::before {
 width: 380px;
 height: 380px;
 right: 0;
 top: 200px;
 }

 .hero-content {
 width: min(100%, 680px);
 padding-top: 36px;
 }

 h1 {
 font-size: 52px;
 }

 .hero-list li {
 font-size: 20px;
 }

 .content-card {
 margin-top: -56px;
 padding: 70px 0 64px 30px;
 border-radius: 24px;
 }

 h2 {
 font-size: 42px;
 }

 h3 {
 font-size: 28px;
 }

 .services-grid {
 max-width: 100%;
 gap: 20px;
 padding-right: 0;
 }

 .services::after {
 width: 572px;
 height: 572px;
 right: 0;
 top: 140px;
 transform: translate3d(0, 0, 0);
 }

 .partner-grid span {
 font-size: 20px;
 min-height: 60px;
 }

 .partner-grid span:nth-child(4),
 .partner-grid span:nth-child(5) {
 min-height: 86px;
 }

 .contact {
 height: auto;
 min-height: 760px;
 margin-top: -28px;
 padding: 120px 30px 100px 20px;
}

 .contact::after {
 width: 460px;
 height: 460px;
 right: -90px;
 bottom: -20px;
 }

 .contact p {
 font-size: 15px;
 width: min(100%, 540px);
 }

 .contact-form {
 width: min(100%, 420px);
 }
}

@media (max-width: 1024px) {
 .hero {
 min-height: 620px;
 }
 .hero-content {
 
 padding: 0px 0px 0;
}
 h1 {
 font-size: 54px;
 max-width: none;
 }

 h2 {
 font-size: 38px;
 margin-bottom: 56px;
 }

 h3 {
 font-size: 26px;
 }

 .hero-list li {
 font-size: 18px;
 }
 .services p{
 font-size: 16px;
 width: 80%;
 max-width: none;
 }
 
 .about p {
 font-size: 16px;
 width: 100%;
 max-width: none;
 }

 .services::after {
 width: 506px;
 height: 506px;
 top: 120px;
 right: 0;
 }

 .services {
 overflow: hidden;
 }

 .hero-content {
 width: 100%;
 max-width: none;
 }

 .contact p {
 width: 50%;
 max-width: none;
 }

 .contact-form {
 width: 50%;
 max-width: 50%;
 }

 .contact::after {
 width: 920px;
 height: 920px;
 right: -62px;
 bottom: -50px;
 }
}

@media (max-width: 1100px) and (min-width: 1025px) {
 .hero {
 min-height: clamp(640px, 90vh, 100svh);
 }
}

@media (max-width: 900px) {
 .services-grid {
 max-width: 100%;
 gap: 18px;
 }

 .content-card {
 padding: 30px 30px 64px;
 border-radius: 28px;
 }

 .services::after {
 width: 462px;
 height: 462px;
 top: 108px;
 right: 0;
 opacity: 0.85;
 }
}

@media (max-width: 991px) {
 h2 {
 font-size: 36px;
 margin-bottom: 48px;
 }

 h3 {
 font-size: 25px;
 }
}

@media (min-width: 901px) and (max-width: 991px) {
 .content-card {
 padding: 48px 28px 60px;
 border-radius: 26px;
 }

 .services::after {
 width: 484px;
 height: 484px;
 top: 114px;
 }
}

@media (max-width: 820px) and (min-width: 641px) {
 .contact p,
 .contact-form {
 width: 100%;
 max-width: 520px;
 }

 .contact::after {
 width: min(720px, 92vw);
 height: min(720px, 92vw);
 right: -90px;
 bottom: -36px;
 }
}

@media (max-width: 768px) and (min-width: 641px) {
 .hero {
 min-height: clamp(520px, 72vh, 620px);
 padding-left: clamp(16px, 4vw, 24px);
 padding-right: clamp(16px, 4vw, 24px);
 }

 h1 {
 font-size: clamp(40px, 6.5vw, 54px);
 }

 .container-1440 {
 padding-left: clamp(16px, 3.5vw, 30px);
 padding-right: clamp(16px, 3.5vw, 30px);
 }
}

/* Горизонтальный планшет: без растягивания hero/contact по высоте экрана, отступы как у услуг (30px), текст слева, сова ×2 */
@media (orientation: landscape) and (min-width: 641px) and (max-width: 1366px) and (min-height: 500px) {
 .hero {
 min-height: 760px;
 padding: 88px 30px 48px;
 }

 .hero-content {
 margin-left: 0;
 margin-right: auto;
 width: 100%;
 max-width: min(720px, 55vw);
 padding: 24px 0 0;
 text-align: left;
 }
 .services::after {
 
 right: -73px;
 
}
 .hero::before {
 width: 760px;
 height: 530px;
 right: -40px;
 /*top: clamp(48px, 10vh, 120px);*/
 transform: translate3d(0, 0, 0) rotate(0deg);
 transform-origin: 64% 56%;
 animation: sovaIn 1100ms ease forwards, sovaSway 8s ease-in-out 1200ms infinite;
 }

 .contact {
 height: auto;
 min-height: 0;
 margin-top: -28px;
 padding: 64px 30px 48px;
 }

 .contact p,
 .contact-form {
 width: min(100%, 420px);
 max-width: 420px;
 margin-left: 0;
 }

 .contact::after {
 width: min(1240px, 72vw);
 height: min(1260px, 100vh);
 right: -8%;
 bottom: -12%;
 max-height: none;
 }
}

@media (min-width: 641px) and (max-width: 1200px) {
 .footer-inner {
 grid-template-columns: 1fr auto;
 grid-template-areas:
 "address phone"
 "address mail"
 "logo logo";
 row-gap: 10px;
 column-gap: 20px;
 align-items: start;
 }

 .footer-address {
 grid-area: address;
 align-self: start;
 }

 .footer-address p {
 text-align: left;
 }

 .footer-phone {
 grid-area: phone;
 justify-self: end;
 text-align: right;
 white-space: nowrap;
 }

 .footer-mail {
 grid-area: mail;
 justify-self: end;
 text-align: right;
 padding-left: 22px;
 white-space: nowrap;
 }

 .footer-logo {
 grid-area: logo;
 width: 100%;
 display: flex;
 flex-direction: row;
 justify-content: space-between;
 align-items: center;
 gap: 14px;
 }

 .footer-logo-link {
 justify-content: flex-start;
 }

 .footer-policy {
 margin-top: 0;
 width: auto;
 text-align: right;
 }
}

@media (max-width: 640px) {
 .footer-inner {
 grid-template-columns: 1fr 1fr;
 grid-template-areas:
 "addr addr"
 "lcol phone"
 "lcol mail";
 gap: 12px 16px;
 padding: 12px 14px;
 align-items: start;
 }

 .footer-address {
 grid-area: addr;
 width: 100%;
 }

 .footer-address p {
 text-align: left;
 }

 .footer-phone {
 grid-area: phone;
 justify-self: end;
 text-align: right;
 white-space: normal;
 }

 .footer-mail {
 grid-area: mail;
 justify-self: end;
 text-align: right;
 padding-left: 0;
 white-space: normal;
 }

 .footer-mail::before {
 display: none;
 }

 .footer-logo {
 grid-area: lcol;
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 justify-content: flex-start;
 gap: 10px;
 width: 100%;
 max-width: 100%;
 }

 .footer-logo-link {
 display: inline-flex;
 }

 .footer-col,
 .footer-address p {
 font-size: 13px;
 }

 .footer-logo img {
 width: 170px;
 max-width: 100%;
 }

 .footer-policy {
 font-size: 12px;
 text-align: left;
 width: 100%;
 margin-top: 0;
 }

 .page {
 width: 100%;
 }

 .top-nav-inner {
 gap: 8px;
 }

 .menu-toggle {
 height: 34px;
 font-size: 13px;
 padding: 0 12px;
 }

 .menu-toggle {
 display: none;
 }

 .menu {
 left: 14px;
 right: 14px;
 width: auto;
 }

 .menu {
 display: none;
 opacity: 0;
 pointer-events: none;
 }

 .brand,
 .phone {
 font-size: 14px;
 }

 .hero {
 min-height: auto;
 padding: 82px 14px 120px;
 }

 .hero-content {
 width: 100%;
 max-width: none;
 padding-top: 6px;
 }

 h1 {
 font-size: clamp(30px, 7.8vw, 38px);
 line-height: 1.04;
 max-width: none;
 overflow-wrap: anywhere;
 }

 .hero-list {
 margin-top: 12px;
 }

 .hero-list li {
 display: flex;
 align-items: flex-start;
 gap: 10px;
 padding-left: 0;
 font-size: 14px;
 line-height: 1.28;
 margin-bottom: 8px;
 }

 .hero-list li::before {
 position: relative;
 left: auto;
 top: 0.22em;
 width: 14px;
 height: 14px;
 min-width: 14px;
 flex: 0 0 14px;
 border: 1px solid var(--accent);
 border-radius: 4px;
 box-sizing: border-box;
 background: radial-gradient(circle 2.5px at 50% 50%, #ffffff 99%, transparent 100%);
 }
 .hero::before {
 width: min(82vw, 380px);
 height: min(60vw, 380px);
 right: 0;
 left: auto;
 top: auto;
 bottom: -10px;
 transform: translate3d(0, 0, 0) rotate(0deg);
 transform-origin: right bottom;
 background-position: right bottom;
 animation: sovaIn 1100ms ease forwards, sovaSway 8s ease-in-out 1200ms infinite;
 }

 .content-card {
 margin-top: -56px;
 padding: 50px 14px 64px;
 border-radius: 28px;
 }

 .content-card,
 .contact {
 padding-left: 14px;
 padding-right: 0px;
 }

 .contact {
 border-radius: inherit;
 }

 .contact::after {
 z-index: 5;
 }

 h2 {
 font-size: 30px;
 max-width: none;
 margin-bottom: 30px;
 }

 #contact h2 {
 margin: 0 0 20px;
 font-size: clamp(30px, 7.8vw, 38px);
 }

 h3 {
 font-size: 22px;
 max-width: none;
 }

 .about {
 margin-top: 30px;
 }

 .partners {
 margin-top: 30px;
 text-align: center;
 }

 .services p,
 .about p {
 font-size: 14px;
 }
 .services::after {
 width: 308px;
 height: 250px;
 right: -50px;
 top: 160px;
 opacity: 0.85;
 transform: translate3d(0, 0, 0);
 }

 .partners-slider {
 overflow: hidden;
 padding-bottom: 20px;
 }

 .partner-grid {
 display: flex;
 gap: 0;
 margin-top: 18px;
 }

 .partner-item {
 min-height: 88px;
 background: transparent;
 border-radius: 0;
 padding: 6px 10px;
 }

 .partner-grid span:nth-child(n) {
 grid-column: auto;
 min-height: 88px;
 background: transparent;
 }

 .partners-pagination {
 display: block;
 position: relative;
 margin-top: 8px;
 text-align: center;
 }

 .partners-pagination .swiper-pagination-bullet {
 width: 6px;
 height: 6px;
 opacity: 0.45;
 background: #ffffff;
 }

 .partners-pagination .swiper-pagination-bullet-active {
 opacity: 1;
 }

 .contact::after {
 width: 270px;
 height: 270px;
 right: -70px;
 bottom: -10px;
 }

 .contact p {
 font-size: 13px;
 width: 100%;
 max-width: none;
 }

 .contact-form {
 width: 100%;
 max-width: none;
 }

 .policy {
 align-items: flex-start;
 font-size: 11px;
 }

 .brand-logo {
 width: 210px;
 max-width: 210px;
 }
}

@media (max-width: 480px) {
 .hero {
 padding: clamp(72px, 17vw, 82px) 12px clamp(96px, 26vw, 120px);
 }

 .footer-inner {
 padding: 10px 12px;
 gap: 10px 12px;
 }

 .contact::after {
 width: min(240px, 72vw);
 height: min(240px, 72vw);
 right: -58px;
 }
}
.softunit-contact-status
{
margin: 0px!important; 
    color: #2c55a2!important;
    }