* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #081123;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    inset: 0;
    background: rgba(5, 4, 10, 0.88);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.45s ease;
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
}

.cookie-window {
    width: 90%;
    max-width: 480px;
    padding: 45px 38px;
    border-radius: 26px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0,180,255,0.25);
    backdrop-filter: blur(14px);
    text-align: center;

    transform: translateY(25px);
    opacity: 0;
    transition: 0.55s ease;
    box-shadow:
            0 0 26px rgba(0,160,255,0.25),
            inset 0 0 22px rgba(255,255,255,0.06);
}

.cookie-popup.show .cookie-window {
    transform: translateY(0);
    opacity: 1;
}

.cookie-icon {
    font-size: 56px;
    margin-bottom: 18px;
    filter: drop-shadow(0 0 14px rgba(0,150,255,0.5));
}

.cookie-window h3 {
    font-size: 26px;
    font-weight: 800;
    color: #e8f4ff;
    margin-bottom: 18px;
    text-shadow: 0 0 12px rgba(0,160,255,0.45);
}

.cookie-window p {
    font-size: 15px;
    line-height: 1.7;
    color: #d4e0ff;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-btn {
    padding: 15px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 26px;
    cursor: pointer;
    transition: 0.3s ease;
}

.ok-btn {
    background: linear-gradient(90deg, #00a9ff, #3ecbff);
    border: none;
    color: #fff;
    box-shadow: 0 0 14px rgba(0,160,255,0.45);
}

.ok-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 18px rgba(0,180,255,0.6);
}

.no-btn {
    background: transparent;
    color: #9cd6ff;
    border: 2px solid rgba(0,180,255,0.4);
}

.no-btn:hover {
    background: rgba(0,160,255,0.2);
    color: #fff;
    box-shadow: 0 0 16px rgba(0,160,255,0.45);
}

/* Header */
.header {
    background: rgba(8, 12, 20, 0.92);
    backdrop-filter: blur(18px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 195, 255, 0.25);
    box-shadow: 0 0 25px rgba(0, 140, 220, 0.25);
}

.navbar {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 45px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 200, 255, 0.5));
    transition: 0.35s ease;
}

.logo:hover {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 0 14px rgba(0, 240, 255, 0.7));
}

.brand-name {
    font-size: 26px;
    font-weight: 700;
    color: #e9f8ff;
    letter-spacing: 0.8px;
    text-shadow: 0 0 14px rgba(0, 190, 255, 0.5);
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #d8ecff;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 0;
    position: relative;
    transition: 0.25s ease;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00eaff, #3b8dff);
    transition: 0.3s ease;
    border-radius: 2px;
}

.nav-menu a:hover {
    color: #9bdfff;
    text-shadow: 0 0 8px rgba(0, 170, 255, 0.5);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(90deg, #008cff, #00c6ff);
    padding: 10px 24px !important;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff !important;
    transition: 0.25s ease;
    box-shadow: 0 0 15px rgba(0, 200, 255, 0.45);
}

.nav-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 22px rgba(0, 220, 255, 0.7);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #d3eaff;
    border-radius: 3px;
    transition: 0.3s ease;
}
.hero-section {
    padding: 120px 0;
    background: #06090d;
    position: relative;
    overflow: hidden;
}

.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0,180,255,0.35), transparent 70%);
    filter: blur(70px);
    animation: floatGlow 9s infinite ease-in-out;
}
.hero-section::before { top: -60px; left: -40px; animation-delay: 0s; }
.hero-section::after { bottom: -60px; right: -50px; animation-delay: 2s; }

@keyframes floatGlow {
    0%,100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(25px) translateX(20px); }
}

.hero-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
}

.hero-spotlight {
    position: relative;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20,40,60,0.8), rgba(5,8,12,0.95));
    box-shadow: 0 0 60px rgba(0,150,255,0.35);
    overflow: hidden;
    transform: rotate(-1.5deg);
    transition: 0.5s ease;
    cursor: pointer;
}

.hero-spotlight:hover {
    transform: rotate(0deg) scale(1.03);
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 40%, rgba(255,240,140,0.25), transparent 70%);
    mix-blend-mode: screen;
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.82) contrast(1.1);
    transform: scale(1.02);
    transition: 0.5s ease;
}

.hero-spotlight:hover .hero-image {
    transform: scale(1.05);
    filter: brightness(0.95);
}

.hero-lines::before,
.hero-lines::after {
    content: "";
    position: absolute;
    background: rgba(255,40,40,0.75);
    height: 2px;
    width: 140px;
    top: 40%;
    left: 15%;
    transform-origin: left;
    transform: rotate(18deg);
    box-shadow: 0 0 6px rgba(255,50,50,0.55);
}
.hero-lines::after {
    width: 190px;
    top: 65%;
    left: 10%;
    transform: rotate(-22deg);
}

.note-paper {
    background: rgba(255,255,255,0.08);
    padding: 30px 35px;
    border-radius: 14px;
    max-width: 550px;
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 0 25px rgba(0,180,255,0.15);
    transform: rotate(1.3deg);
    transition: 0.4s ease;
}

.note-paper:hover {
    transform: rotate(0deg) translateY(-6px);
}

.note-paper h1 {
    font-size: 36px;
    color: #e9f4ff;
    margin-bottom: 20px;
    line-height: 1.25;
}

.note-paper p {
    font-size: 17px;
    color: #c6d7e4;
    line-height: 1.7;
    margin-bottom: 25px;
}

.google-play-btn {
    display: inline-block;
    background: linear-gradient(90deg, #00a9ff, #22d4ff);
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 0 14px rgba(0,190,255,0.45);
    transition: 0.3s ease;
}

.google-play-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 18px rgba(0,240,255,0.7);
}

.reviews-section {
    padding: 130px 0;
    background: #070b10;
    position: relative;
    overflow: hidden;
}

.reviews-section::before,
.reviews-section::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(0,150,255,0.32), transparent 70%);
    filter: blur(90px);
    animation: driftFog 14s infinite ease-in-out;
}
.reviews-section::before { top: -80px; left: -70px; animation-delay: 0s; }
.reviews-section::after { bottom: -110px; right: -90px; animation-delay: 3s; }

@keyframes driftFog {
    0%,100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(25px) translateX(20px); }
}

.reviews-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.reviews-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: #e9f4ff;
    margin-bottom: 80px;
    text-shadow: 0 0 20px rgba(0,160,255,0.35);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
}

.review-card {
    position: relative;
    padding: 45px;
    border-radius: 18px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.12);
    transform: rotate(-1.8deg);
    transition: 0.4s ease;
    box-shadow:
            0 0 25px rgba(0,160,255,0.15),
            inset 0 0 22px rgba(0,150,255,0.12);
}

.review-pin {
    position: absolute;
    top: -12px;
    left: 40px;
    width: 18px;
    height: 18px;
    background: radial-gradient(circle, #ff4040, #9a0000);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255,60,60,0.65);
}

.review-card:hover {
    transform: rotate(0deg) translateY(-10px);
    box-shadow:
            0 0 35px rgba(0,190,255,0.25),
            0 0 60px rgba(255,220,90,0.15);
}

.review-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #d4e3ef;
    font-style: italic;
    margin-bottom: 25px;
}

.reviewer-name {
    font-size: 15px;
    font-weight: 700;
    color: #eaf5ff;
    margin-bottom: 8px;
}

.stars {
    font-size: 18px;
    letter-spacing: 3px;
    color: #ffc14d;
    text-shadow: 0 0 10px rgba(255,210,90,0.55);
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .review-card {
        transform: rotate(0deg);
    }
}

.about-section {
    padding: 120px 0;
    background: #06090d;
    position: relative;
    overflow: hidden;
}

.about-section::before,
.about-section::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(0,130,200,0.28), transparent 70%);
    filter: blur(80px);
    animation: fogMove 14s infinite ease-in-out;
}
.about-section::before { top: -60px; left: -80px; animation-delay: 0s; }
.about-section::after { bottom: -90px; right: -60px; animation-delay: 3s; }

@keyframes fogMove {
    0%,100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(30px) translateX(20px); }
}

.about-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 0.95fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image {
    position: relative;
    width: 100%;
    height: auto;
}

.about-image img {
    width: 100%;
    border-radius: 26px;
    transform: perspective(650px) rotateX(3deg) rotateY(-3deg);
    filter: brightness(0.82) contrast(1.12);
    transition: 0.5s ease;
    box-shadow:
            0 30px 55px rgba(0,0,0,0.55),
            0 0 25px rgba(0,160,255,0.35),
            0 0 40px rgba(255,200,120,0.25);
}

.about-image:hover img {
    transform: perspective(650px) rotateX(0deg) rotateY(0deg) scale(1.03);
}

.about-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 40%, rgba(255,230,130,0.22), transparent 70%);
    mix-blend-mode: screen;
}

.about-frame::before,
.about-frame::after {
    content: "";
    position: absolute;
    background: rgba(255,45,45,0.8);
    height: 2px;
    width: 160px;
    box-shadow: 0 0 6px rgba(255,50,50,0.55);
}
.about-frame::before {
    top: 28%;
    left: -20px;
    transform: rotate(18deg);
}
.about-frame::after {
    bottom: 22%;
    right: -15px;
    transform: rotate(-24deg);
}

.note-board {
    background: rgba(255,255,255,0.07);
    padding: 40px 45px;
    border-radius: 18px;
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.12);
    transform: rotate(1.8deg);
    transition: 0.35s ease;
    box-shadow: 0 0 22px rgba(0,170,255,0.18);
}

.note-board:hover {
    transform: rotate(0deg) translateY(-6px);
}

.about-text h2 {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
    color: #e9f4ff;
    margin-bottom: 25px;
    text-shadow: 0 0 14px rgba(0,150,255,0.4);
}

.about-content p {
    font-size: 17px;
    line-height: 1.75;
    color: #c7d6e2;
    margin-bottom: 22px;
    opacity: 0.95;
}

.features-section {
    padding: 130px 0;
    background: #06090d;
    position: relative;
    overflow: hidden;
}

.features-section::before,
.features-section::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(0,160,255,0.28), transparent 70%);
    filter: blur(90px);
    animation: fogDrift 16s infinite ease-in-out;
}
.features-section::before { top: -80px; left: -60px; animation-delay: 0s; }
.features-section::after { bottom: -90px; right: -80px; animation-delay: 4s; }

@keyframes fogDrift {
    0%,100% { transform: translate(0); }
    50% { transform: translate(25px, 20px); }
}

.features-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.features-section h2 {
    text-align: center;
    color: #e9f4ff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 80px;
    text-shadow: 0 0 20px rgba(0,160,255,0.35);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /*grid-auto-rows: 240px;*/
    gap: 35px;
}

.size-wide { grid-column: span 4; }
.size-small { grid-column: span 2; }
.size-tall { grid-column: span 2; grid-row: span 2; }

.feature-card {
    position: relative;
    padding: 35px 32px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    backdrop-filter: blur(14px);
    overflow: hidden;
    transform: rotate(-2deg);
    transition: 0.4s ease;
    box-shadow:
            0 0 25px rgba(0,160,255,0.15),
            inset 0 0 20px rgba(0,160,255,0.12);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-pin {
    position: absolute;
    top: -12px;
    left: 32px;
    width: 18px;
    height: 18px;
    background: radial-gradient(circle, #ff4040, #a40000);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255,50,50,0.65);
}

.feature-card:hover {
    transform: rotate(0deg) translateY(-10px);
    box-shadow:
            0 0 35px rgba(0,190,255,0.25),
            0 0 50px rgba(255,220,90,0.15);
}

.feature-icon {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 22px;
}

.spotlight-circle {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,230,120,0.28), transparent 70%);
    border-radius: 50%;
    filter: blur(4px);
}

.feature-icon svg {
    position: relative;
    z-index: 2;
    color: #d4e7ff;
    filter: drop-shadow(0 0 8px rgba(0,160,255,0.35));
    transition: 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
    color: #ffffff;
}

.feature-card h3 {
    font-size: 20px;
    color: #eef8ff;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 15px;
    color: #c7d6e2;
    line-height: 1.65;
}

@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .size-wide { grid-column: span 3; }
    .size-tall { grid-column: span 3; grid-row: span 2; }
}

@media (max-width: 700px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .feature-card {
        transform: rotate(0);
    }
}

.gallery-section {
    padding: 140px 0;
    background: #06090d;
    position: relative;
    overflow: hidden;
}

.gallery-section::before,
.gallery-section::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(0,140,255,0.28), transparent 70%);
    filter: blur(95px);
    animation: galleryFog 16s infinite ease-in-out;
}
.gallery-section::before { top: -90px; right: -70px; animation-delay: 0s; }
.gallery-section::after { bottom: -90px; left: -80px; animation-delay: 4s; }

@keyframes galleryFog {
    0%,100% { transform: translate(0,0); }
    50% { transform: translate(25px, 20px); }
}

.gallery-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.gallery-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: #e9f4ff;
    margin-bottom: 40px;
    text-shadow: 0 0 18px rgba(0,160,255,0.45);
}

.gallery-description {
    margin-bottom: 80px;
}

.gallery-description p {
    font-size: 17px;
    line-height: 1.75;
    color: #c7d6e2;
    margin-bottom: 20px;
    opacity: 0.92;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 240px;
    gap: 35px;
}

.size-big { grid-column: span 3; grid-row: span 2; }
.size-tall { grid-column: span 2; grid-row: span 3; }
.size-wide { grid-column: span 3; grid-row: span 1; }

/* Карточка */
.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    transform: rotate(-1.5deg);
    transition: 0.45s ease;
    box-shadow:
            0 0 28px rgba(0,150,255,0.18),
            inset 0 0 20px rgba(255,200,90,0.12);
}

.gallery-item:hover {
    transform: rotate(0deg) translateY(-10px) scale(1.03);
    box-shadow:
            0 0 38px rgba(0,190,255,0.3),
            0 0 55px rgba(255,200,120,0.25);
}

.gallery-pin {
    position: absolute;
    top: -12px;
    left: 35px;
    width: 18px;
    height: 18px;
    background: radial-gradient(circle, #ff4040, #9a0000);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255,50,50,0.65);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

@media (max-width: 1100px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .size-big { grid-column: span 3; grid-row: span 2; }
    .size-tall { grid-column: span 3; grid-row: span 2; }
    .size-wide { grid-column: span 3; }
}

@media (max-width: 700px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item {
        transform: rotate(0);
    }
}

.contact-section {
    padding: 140px 0;
    background: #06080d;
    position: relative;
    overflow: hidden;
}

.contact-section::before,
.contact-section::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(0,150,255,0.28), transparent 70%);
    filter: blur(95px);
    animation: fogFloatContact 16s infinite ease-in-out;
}
.contact-section::before { top: -80px; right: -70px; }
.contact-section::after { bottom: -80px; left: -70px; animation-delay: 4s; }

@keyframes fogFloatContact {
    0%,100% { transform: translate(0,0); }
    50% { transform: translate(25px, 20px); }
}

.contact-container {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.contact-left h2 {
    font-size: 42px;
    font-weight: 800;
    color: #e9f4ff;
    margin-bottom: 40px;
    text-shadow: 0 0 18px rgba(0,160,255,0.45);
}

.contact-hints {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 45px;
}

.hint-item {
    font-size: 17px;
    padding-left: 25px;
    position: relative;
    color: #c7d6e2;
    opacity: 0.92;
}

.hint-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: #00aaff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,150,255,0.6);
}

.dl-btn {
    display: inline-block;
    margin-top: 20px;
    transition: 0.35s ease;
}

.dl-btn:hover {
    transform: translateY(-4px) scale(1.04);
    filter: drop-shadow(0 0 14px rgba(0,180,255,0.5));
}

.contact-form-wrapper {
    position: relative;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 55px;
    backdrop-filter: blur(14px);
    box-shadow:
            inset 0 0 20px rgba(255,255,255,0.06),
            0 0 30px rgba(0,150,255,0.15);
    overflow: hidden;
}

.scan-effect {
    position: absolute;
    top: -150px;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(180deg, rgba(0,170,255,0.18), transparent);
    animation: scannerMove 4s infinite ease-in-out;
}

@keyframes scannerMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(450px); }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.floating-field {
    position: relative;
    width: 100%;
}

.floating-field input {
    width: 100%;
    padding: 18px 18px;
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    color: #e9f4ff;
    font-size: 16px;
    transition: 0.35s ease;
}

.floating-field input:focus {
    outline: none;
    border-color: #00aaff;
    box-shadow: 0 0 15px rgba(0,160,255,0.45);
}

.floating-field label {
    position: absolute;
    left: 18px;
    top: 16px;
    font-size: 16px;
    color: #9db5c7;
    pointer-events: none;
    transition: 0.3s ease;
}

.floating-field input:focus + label,
.floating-field input:not(:placeholder-shown) + label {
    top: -10px;
    left: 12px;
    padding: 0 6px;
    font-size: 13px;
    background: rgba(0,0,0,0.8);
    color: #00c8ff;
}

.submit-btn {
    padding: 18px 40px;
    border-radius: 40px;
    border: none;
    background: linear-gradient(90deg, #008cff, #00c8ff);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    transition: 0.35s ease;
    box-shadow: 0 0 12px rgba(0,150,255,0.45);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0,180,255,0.55);
}

@media (max-width: 950px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .contact-left h2 {
        text-align: center;
    }
    .contact-hints {
        text-align: center;
    }
    .dl-btn {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Footer */
.footer {
    padding: 120px 0 60px;
    background: #05070c;
    position: relative;
    overflow: hidden;
}

.footer::before,
.footer::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    filter: blur(90px);
    background: radial-gradient(circle, rgba(0,140,255,0.33), transparent 70%);
    animation: footerFog 14s infinite ease-in-out;
}
.footer::before { top: -70px; left: -80px; }
.footer::after  { bottom: -90px; right: -70px; animation-delay: 4s; }

@keyframes footerFog {
    0%,100% { transform: translate(0,0); }
    50% { transform: translate(25px,20px); }
}

.footer-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0,180,255,0.15);
    padding-bottom: 35px;
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-brand img {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    filter: drop-shadow(0 0 15px rgba(0,160,255,0.45));
    transition: 0.35s ease;
}

.footer-brand img:hover {
    transform: scale(1.08);
}

.footer-brand span {
    font-size: 28px;
    font-weight: 800;
    color: #eaf4ff;
    letter-spacing: 0.6px;
    text-shadow: 0 0 20px rgba(0,160,255,0.4);
}

.footer-nav {
    display: flex;
    gap: 32px;
}

.footer-nav a {
    font-size: 16px;
    font-weight: 500;
    color: #c6d8e9;
    text-decoration: none;
    position: relative;
    transition: 0.3s ease;
}

.footer-nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #00c8ff, #58aaff);
    transition: width 0.3s ease;
}

.footer-nav a:hover {
    color: #e9f5ff;
}

.footer-nav a:hover::after {
    width: 100%;
}

.footer-copy {
    max-width: 1400px;
    margin: 35px auto 0;
    padding: 0 40px;
    text-align: center;
    color: #b4c6d8;
    position: relative;
    z-index: 2;
}

.footer-copy p {
    font-size: 15px;
    opacity: 0.85;
}

@media (max-width: 900px) {
    .footer-wrap {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .navbar,
    .hero-container,
    .about-container,
    .features-container,
    .reviews-container,
    .gallery-container,
    .contact-container,
    .footer-content,
    .footer-bottom {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1068px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(12, 12, 20, 0.96);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        gap: 30px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        font-size: 20px;
        padding: 15px 30px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-container,
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .about-text h2,
    .features-section h2,
    .reviews-section h2,
    .gallery-section h2 {
        font-size: 28px;
    }
    
    .contact-info h2 {
        font-size: 26px;
    }
    
    .features-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    .hero-container{
        display: flex;
        /*flex-wrap: wrap;*/
        justify-content: center;
        flex-direction: column-reverse;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 24px;
    }
    
    .about-text h2,
    .features-section h2,
    .reviews-section h2,
    .gallery-section h2 {
        font-size: 22px;
    }
    
    .feature-card,
    .review-card {
        padding: 25px 20px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .contact-form-container {
        padding: 25px 20px;
    }
    
    .brand-name {
        font-size: 20px;
    }
    
    .navbar {
        padding: 0 15px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.review-card,
.gallery-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Loading states */
img {
    transition: opacity 0.3s ease;
}