body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    color: #fff;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transition: background-image 0.8s cubic-bezier(.55,0,.3,1);
}


#bg-slider {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.bg-slide {
    position: absolute;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-size: cover;
    background-position: center;
    transition: opacity 1.2s;
    opacity: 0;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background: rgba(18,28,46,0.93);
    padding: 10px 0;
    z-index: 100;
    transition: padding 0.35s cubic-bezier(.68,-0.25,.265,1.25), background 0.35s;
    box-shadow: 0 3px 22px rgba(33,209,255,0.07);
    backdrop-filter: blur(3px);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: min-height 0.3s;
}
.logo img {
    height: 150px;
    transition: height 0.35s;
}
header.shrink {
    padding: 10px 0;
    background: rgba(18,28,46,0.97);
    box-shadow: 0 1px 12px rgba(33,209,255,0.08);
}
header.shrink .logo img {
    height: 60px;
}

nav ul {
    display: flex;
    gap: 36px;
    list-style: none;
    margin: 0; padding: 0;
}
nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
nav a:hover {
    color: #21d1ff;
}

.hero {
	padding-top: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 92vh; /* Почти весь экран */
    text-align: center;
    background: rgba(15,25,39, 0.55);
    position: relative;
    z-index: 1;
}
.hero-content {
	padding-bottom: 60px;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}
.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.12;
    letter-spacing: -1px;
}

.hero .subtitle {
    font-size: 1.4rem;
    color: #c9edff;
    margin-bottom: 22px;
    font-weight: 500;
}

.hero-cards {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin: 26px 0 14px 0;
    flex-wrap: wrap;
}

.hero-card {
    background: rgba(20,52,90,0.88);
    border-radius: 18px;
    padding: 32px 30px 28px 30px;
    box-shadow: 0 6px 32px rgba(33,209,255,0.10);
    color: #eafdff;
    width: 270px;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.18s, box-shadow 0.18s;
}
.hero-card:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 12px 44px rgba(33,209,255,0.18);
    background: rgba(25,84,136,0.93);
}
.hero-card-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
    color: #21d1ff;
    display: block;
}
.hero-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #aeeaff;
    font-weight: 700;
}
.hero-card p {
    font-size: 1.04rem;
    color: #eafdff;
    margin-bottom: 0;
    line-height: 1.32;
}

.cta-btn {
    margin-top: 26px;
	margin-bottom: 71px;
    background: #21d1ff;
    color: #00213e;
    font-weight: 700;
    padding: 16px 38px;
    border: none;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1.13rem;
    box-shadow: 0 2px 12px #21d1ff33;
    transition: background 0.2s;
}

.cta-btn:hover {
    background: #0ba9cd;
    color: #fff;
}

/* Адаптив */
@media (max-width: 900px) {
    .hero-cards { gap: 18px; }
    .hero-card { width: 210px; padding: 22px 15px 18px 15px; }
    .hero h1 { font-size: 2.2rem; }
}
@media (max-width: 600px) {
    .hero-cards { flex-direction: column; align-items: center; }
    .hero-card { width: 95%; max-width: 330px; }
    .hero-content { gap: 18px; }
}


.section {
    padding: 80px 0 60px 0;
    background: rgba(18,28,46,0.75);
}

.section h2 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 2rem;
    color: #21d1ff;
}

/* Секция с полупрозрачным светлым фоном */
.brands-section {
    background: rgba(255,255,255,0.13); /* светлый, немного забелённый */
    box-shadow: 0 2px 24px rgba(33,209,255,0.05);
    border-top: 1px solid rgba(33,209,255,0.06);
    border-bottom: 1px solid rgba(33,209,255,0.07);
    backdrop-filter: blur(1.2px);
    padding-top: 70px;
    padding-bottom: 70px;
}

/* Контейнер карточек */
.brands-cards {
    display: flex;
    gap: 36px;
    justify-content: center;
    margin-top: 36px;
    flex-wrap: wrap;
}

/* Карточка бренда */
.brand-card {
    background: rgba(250, 253, 255, 0.93);
    border-radius: 22px;
    box-shadow: 0 6px 36px rgba(18,28,46,0.07);
    color: #14345a;
    width: 290px;
    min-height: 245px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 38px 26px 32px 26px;
    transition: transform 0.16s, box-shadow 0.16s, background 0.18s;
    border: 1.5px solid rgba(33,209,255,0.10);
    position: relative;
    z-index: 1;
}
.brand-card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 16px 44px rgba(33,209,255,0.19);
    background: rgba(255,255,255,0.99);
    border-color: #21d1ff55;
}

.brand-logo {
    font-size: 2.4rem;
    margin-bottom: 13px;
    display: block;
}

.brand-card h3 {
    font-size: 1.28rem;
    margin-bottom: 8px;
    color: #1199d3;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.brand-card p {
    font-size: 1.04rem;
    color: #29588e;
    margin-bottom: 0;
    line-height: 1.42;
}

.brand-card ul {
    margin: 10px 0 0 0;
    padding-left: 18px;
    text-align: left;
    font-size: 0.97rem;
    color: #316ca7;
}
.brand-card ul li {
    margin-bottom: 3px;
    list-style: disc;
}

.brand-extra {
    font-size: 0.97rem;
    color: #0a5a99;
    font-style: italic;
    margin-top: 8px;
}

/* Блок "О компании" */
.brands-about {
    margin-top: 48px;
    background: rgba(255,255,255,0.9);
    padding: 22px 28px 18px 28px;
    border-radius: 20px;
    box-shadow: 0 2px 18px rgba(33,209,255,0.08);
    color: #18406a;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
.brands-about h4 {
    color: #21d1ff;
    margin-bottom: 8px;
    font-size: 1.13rem;
}
.brands-about b {
    color: #1199d3;
}

@media (max-width: 950px) {
    .brands-cards { gap: 18px; }
    .brand-card { width: 210px; padding: 24px 10px 15px 10px; min-height: 220px;}
}
@media (max-width: 700px) {
    .brands-cards { flex-direction: column; align-items: center; }
    .brand-card { width: 98%; max-width: 340px; }
    .brands-about { padding: 17px 8px 14px 8px; }
}

/* Секция с полупрозрачным голубым фоном */
.history-section {
    background: rgba(33,209,255,0.11);
    box-shadow: 0 2px 28px rgba(33,209,255,0.07);
    border-top: 1px solid rgba(33,209,255,0.10);
    border-bottom: 1px solid rgba(33,209,255,0.10);
    padding-top: 68px;
    padding-bottom: 68px;
}

/* Контейнер карточек */
.history-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    justify-content: center;
    margin-top: 38px;
}

/* Карточка истории */
.history-card {
    background: rgba(255,255,255,0.90);
    border-radius: 20px;
    box-shadow: 0 6px 36px rgba(18,28,46,0.07);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    min-width: 320px;
    max-width: 420px;
    padding: 32px 28px 26px 28px;
    position: relative;
    border: 1.5px solid rgba(33,209,255,0.11);
    transition: transform 0.17s, box-shadow 0.17s;
    z-index: 1;
}
.history-card:hover {
    transform: translateY(-6px) scale(1.035);
    box-shadow: 0 18px 54px rgba(33,209,255,0.13);
    background: rgba(255,255,255,0.98);
    border-color: #21d1ff44;
}

/* Кружок с годом */
.history-year {
    min-width: 62px;
    height: 62px;
    background: linear-gradient(145deg, #21d1ff 60%, #1182cc 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px #21d1ff22;
    margin-right: 26px;
    margin-top: 3px;
    flex-shrink: 0;
}

.history-content h3 {
    font-size: 1.15rem;
    margin: 0 0 9px 0;
    color: #1182cc;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.history-content p {
    font-size: 1.03rem;
    color: #18406a;
    margin: 0;
    line-height: 1.48;
}

/* Адаптив */
@media (max-width: 900px) {
    .history-cards { gap: 16px; }
    .history-card { min-width: 94vw; max-width: 97vw; padding: 18px 10px 16px 10px; }
    .history-year { min-width: 44px; height: 44px; font-size: 1.07rem; margin-right: 12px; }
}
@media (max-width: 600px) {
    .history-cards { flex-direction: column; gap: 16px; align-items: center; }
    .history-card { flex-direction: row; }
}


form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 420px;
    margin: 0 auto;
}

input, textarea {
    padding: 12px;
    border-radius: 7px;
    border: none;
    background: #f3fbfe;
    color: #222;
    font-size: 1rem;
    resize: vertical;
}
textarea { min-height: 120px; }

button[type="submit"] {
    background: #21d1ff;
    color: #00374f;
    font-weight: 700;
    padding: 14px;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}
button[type="submit"]:hover {
    background: #0ba9cd;
    color: #fff;
}

footer {
    background: rgba(18,28,46, 0.98);
    color: #cce7ff;
    padding: 54px 0 30px 0;
    font-size: 1.09rem;
    border-top: 1.5px solid #21d1ff22;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

.footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.footer-logo img {
    height: 88px !important;
    max-width: 95vw;
    filter: drop-shadow(0 2px 8px #21d1ff33);
    transition: height 0.3s;
    display: block;
}

.footer-links {
    display: flex;
    gap: 32px;
}
.footer-links a {
    color: #21d1ff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: color 0.18s;
}
.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #1d3557;
    padding-top: 22px;
    font-size: 0.98rem;
    color: #8fd1ff;
    text-align: center;
}

.footer-legal {
    background: rgba(255,255,255,0.15);
    color: #12496c;
    padding: 30px 18px 22px 18px;
    border-radius: 18px;
    max-width: 750px;
    margin: 42px auto 0 auto;
    box-shadow: 0 2px 18px rgba(33,209,255,0.07);
}
.footer-legal h4 {
    margin-top: 0;
    color: #21d1ff;
    font-size: 1.17rem;
    font-weight: 700;
}
.footer-legal a {
    color: #1199d3;
    text-decoration: underline;
}
.footer-legal-content {
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 700px) {
    .footer-main { flex-direction: column; gap: 16px; }
    .footer-logo img { height: 40px; }
    .footer-links { gap: 18px; }
    .footer-legal { padding: 18px 4vw 14px 4vw; }
}


/* адаптивность */
@media (max-width: 768px) {
    .header-inner { flex-direction: column; gap: 16px; }
    .brands { flex-direction: column; gap: 20px; }
    .section { padding: 48px 0; }
    .hero h1 { font-size: 2.0rem; }
}
.cookie-banner {
    position: fixed;
    bottom: 22px;
    left: 0; right: 0;
    background: rgba(18,28,46,0.96);
    color: #fff;
    padding: 20px 15px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 18px rgba(33,209,255,0.1);
    font-size: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
}
.cookie-banner.show {
    opacity: 1;
    pointer-events: all;
}
.cookie-content {
    display: flex;
    gap: 24px;
    align-items: center;
    max-width: 700px;
}
.cookie-btn {
    background: #21d1ff;
    color: #00213e;
    font-weight: 700;
    padding: 10px 28px;
    border: none;
    border-radius: 9px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.cookie-btn:hover {
    background: #0ba9cd;
    color: #fff;
}
@media (max-width: 600px) {
    .cookie-content { flex-direction: column; gap: 12px; }
    .cookie-btn { width: 100%; }
}
.contact-section {
    background: linear-gradient(120deg, rgba(25,32,54,0.96) 75%, rgba(33,209,255,0.07) 100%);
    padding-top: 64px;
    padding-bottom: 64px;
}

.contact-flex {
    display: flex;
    align-items: stretch;
    gap: 44px;
    max-width: 950px;
    margin: 0 auto;
}

.contact-form {
    flex: 1 1 320px;
    background: rgba(20, 28, 46, 0.98);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(33,209,255,0.09);
    padding: 28px 18px 22px 18px;
    min-width: 210px;
    max-width: 400px;
    margin: 0 auto;
}

.contact-form h2 {
    color: #21d1ff;
    font-size: 1.4rem;
    margin-bottom: 18px;
    font-weight: 800;
    letter-spacing: -1px;
    text-align: center;
}

.contact-form {
    max-width: 420px;
    padding: 36px 24px;
    background: #1a2433;
    border-radius: 22px;
    margin: 0 auto;
    box-sizing: border-box;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 12px 14px;
    border-radius: 9px;
    border: 1.5px solid #27495d;
    background: #182438;
    color: #eaf6ff;
    font-size: 1.05rem;
    display: block;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #21d1ff;
    background: #1f334a;
    color: #fff;
}
.contact-form textarea {
    min-height: 70px;
    max-height: 140px;
    resize: vertical;
}

.cta-btn {
    display: block;
    margin: 10px auto 0 auto;
    background: linear-gradient(90deg, #21d1ff 55%, #1199d3 100%);
    color: #fff;
    font-weight: 700;
    padding: 10px 26px;
    border: none;
    border-radius: 999px;
    font-size: 1rem;
    box-shadow: 0 1px 8px #21d1ff22;
    transition: background 0.22s, color 0.14s;
    cursor: pointer;
    letter-spacing: 0.03em;
}
.cta-btn:hover {
    background: linear-gradient(90deg, #1199d3 20%, #21d1ff 100%);
    color: #fff;
}

.contact-image {
    flex: 1 1 310px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 8px;
}
.contact-image img {
    max-width: 500px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 22px rgba(33,209,255,0.11);
    object-fit: cover;
    background: #d7f3ff;
}

@media (max-width: 900px) {
    .contact-flex { gap: 18px; }
    .contact-form, .contact-image { min-width: 0; padding: 14px; }
    .contact-image img { max-width: 220px; }
}
@media (max-width: 700px) {
    .contact-flex {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
    }
    .contact-image img {
        max-width: 100%;
        min-width: 120px;
        border-radius: 12px;
    }
    .contact-form {
        padding: 20px 8px 15px 8px;
    }
}
.form-success-msg {
    background: linear-gradient(90deg, #21d1ff 45%, #1199d3 100%);
    color: #fff;
    border-radius: 9px;
    padding: 13px 18px;
    font-size: 1.05rem;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px #21d1ff22;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: opacity 0.35s;
}
.brand-logo img {
    height: 100px;
    width: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px; /* если нужен округлый край */
}
.about-section {
    background: rgba(255,255,255,0.10);
    padding: 70px 0;
    box-shadow: 0 2px 28px rgba(33,209,255,0.05);
}

.about-flex {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-text {
    background: rgba(18,28,46,0.45);
    border: 1.5px solid rgba(33,209,255,0.14);
    backdrop-filter: blur(2px);
    border-radius: 24px;
    box-shadow: 0 4px 28px rgba(33,209,255,0.07);
    padding: 36px 28px;
    color: #eaf6ff;
}

.about-text h2 {
    font-size: 2.1rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: #21d1ff;
}
.about-text p {
    font-size: 1.08rem;
    line-height: 1.6;
    margin-bottom: 14px;
}

.about-text p {
    font-size: 1.08rem;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #c8eaff;
}

.about-highlights {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 220px;
}

.highlight-card {
    background: rgba(18,28,46,0.75);
    border: 1.4px solid rgba(33,209,255,0.14);
    padding: 18px 22px;
    border-radius: 18px;
    color: #eafdff;
    text-align: center;
    box-shadow: 0 2px 12px rgba(33,209,255,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.highlight-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 26px rgba(33,209,255,0.13);
}

.highlight-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 10px;
}
.highlight-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #21d1ff; /* яркий фирменный голубой */
}
.impressum-section {
    padding-top: 250px; /* компенсирует высоту фиксированного хедера */
    padding-bottom: 70px;
    background: rgba(18,28,46,0.75);
}

.impressum-content {
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(33,209,255,0.14);
    backdrop-filter: blur(3px);
    border-radius: 24px;
    box-shadow: 0 4px 28px rgba(33,209,255,0.07);
    padding: 36px 28px;
    max-width: 800px;
    margin: 0 auto;
    color: #eaf6ff;
}
.impressum-content h3 {
    margin-top: 24px;
    color: #21d1ff;
}
.impressum-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 12px;
}
.datenschutz-section {
    padding-top: 250px; /* компенсирует высоту фиксированного хедера */
    padding-bottom: 70px;
    background: rgba(18,28,46,0.75);
}

.datenschutz-content {
	padding-top: 180px;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(33,209,255,0.14);
    backdrop-filter: blur(3px);
    border-radius: 24px;
    box-shadow: 0 4px 28px rgba(33,209,255,0.07);
    padding: 36px 28px;
    max-width: 900px;
    margin: 0 auto;
    color: #eaf6ff;
}

.datenschutz-content h1 {
    font-size: 2.3rem;
    margin-bottom: 24px;
    font-weight: 800;
    color: #21d1ff;
}

.datenschutz-content h2 {
    font-size: 1.5rem;
    margin-top: 32px;
    margin-bottom: 14px;
    font-weight: 700;
    color: #21d1ff;
}

.datenschutz-content p {
    font-size: 1.08rem;
    line-height: 1.65;
    margin-bottom: 14px;
    color: #eaf6ff;
}
