:root {
    --primary-color: #0078D7;
    --primary-hover: #005a9e;
    --accent-color: #4CC9F0;
    --text-main: #1a202c;
    --text-secondary: #4a5568;

    /* Цвета для Aero/Glass эффектов */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.9);
    --glass-shine: rgba(255, 255, 255, 0.8);
    --glass-shadow: 0 8px 32px rgba(0, 120, 215, 0.15);

    /* Отступы и скругления */
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
}

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

html {
    scroll-behavior: smooth;
    /* Компенсация высоты фиксированной шапки при скролле */
    scroll-padding-top: 120px;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    background: #f0f8ff;
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

/* --- ФОН И АНИМАЦИЯ --- */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(135deg, #E0F7FA 0%, #E3F2FD 50%, #F3E5F5 100%);
}

.bubbles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.aero-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(0, 191, 255, 0.4));
    filter: blur(40px);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: 10%;
    right: -5%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(76, 201, 240, 0.4));
    animation-delay: -5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 30%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(130, 220, 255, 0.3));
    animation-delay: -10s;
}

@keyframes float {

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

    33% {
        transform: translate(30px, -50px) rotate(10deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

/* --- КОМПОНЕНТ "ПЛИТА" (GLASS PLATE) --- */
.glass-plate {
    background: var(--glass-bg);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-top: 1px solid white;
    box-shadow: var(--glass-shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-plate::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 40%);
    pointer-events: none;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.glass-plate:hover {
    box-shadow: 0 12px 40px rgba(0, 120, 215, 0.25);
}

/* --- HEADER --- */
header {
    position: sticky;
    top: 10px;
    z-index: 1000;
    margin: 0 auto;
    width: 95%;
    max-width: 1200px;
    transition: all 0.3s ease;
}

.header-container {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

/* LOGO IMAGE STYLE */
.logo-img {
    height: 24px;
    width: auto;
    -webkit-text-fill-color: initial;
    background: none;
    display: block;
}

.logo-container h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #0078D7 0%, #4CC9F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Nav */
.nav-links {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    transition: all 0.3s ease;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-size: 0.95rem;
    display: inline-block;
}

.nav-links a:hover {
    background: rgba(0, 120, 215, 0.1);
    color: var(--primary-color);
}

/* Анимация нажатия */
.nav-links a:active {
    transform: scale(0.92);
    background: rgba(0, 120, 215, 0.2);
}

.nav-links .nav-cta {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 10px rgba(0, 120, 215, 0.3);
}

.nav-links .nav-cta:hover {
    background: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
}

.nav-links .nav-cta:active {
    transform: translateY(0) scale(0.95);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: transform 0.2s;
    padding: 0.5rem;
}

.mobile-menu-btn:active {
    transform: scale(0.9);
}

/* --- HERO --- */
#hero {
    padding: 8rem 1rem 4rem;
    text-align: center;
}

.hero-glass-panel {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid white;
}

.glossy-text {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #0078D7 0%, #00BFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 15px rgba(0, 120, 215, 0.3));
    word-wrap: break-word;
    /* Prevent text overflow */
}

#hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    /* Ensure buttons wrap on small screens */
}

/* Кнопка с улучшенной привлекательностью */
.cta-button {
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
}

.cta-button.primary {
    background: linear-gradient(180deg, #4dabf5 0%, #0078D7 50%, #0060ac 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 4px 15px rgba(0, 120, 215, 0.5),
        0 0 0 4px rgba(0, 120, 215, 0.1);
    animation: btn-pulse 3s infinite;
}

.cta-button.small-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    width: auto;
    min-width: 140px;
}

@keyframes btn-pulse {
    0% {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 4px 15px rgba(0, 120, 215, 0.5), 0 0 0 0 rgba(0, 120, 215, 0.4);
    }

    70% {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 4px 15px rgba(0, 120, 215, 0.5), 0 0 0 10px rgba(0, 120, 215, 0);
    }

    100% {
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 4px 15px rgba(0, 120, 215, 0.5), 0 0 0 0 rgba(0, 120, 215, 0);
    }
}

.cta-button.primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 8px 30px rgba(0, 120, 215, 0.7),
        0 0 0 4px rgba(0, 120, 215, 0.1);
}

.cta-button:active {
    transform: translateY(1px) scale(0.98);
}

.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-20deg);
    animation: shine-anim 4s infinite;
}

@keyframes shine-anim {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

/* --- SECTIONS GENERAL --- */
.content-section {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #0078D7 0%, #00BFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- ABOUT STATS --- */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.stat-card {
    padding: 2rem;
    text-align: center;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E0F7FA, #fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 120, 215, 0.15);
}

/* --- GALLERY CAROUSEL (STACK EFFECT) --- */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
}

.carousel-track-wrapper {
    /* Создаем grid-контекст, чтобы все слайды лежали друг на друге */
    display: grid;
    grid-template-areas: "stack";
    width: 100%;
    /* Ограничиваем ширину контента */
    max-width: 800px;
    margin: 0 auto;
    perspective: 1000px;
    /* Для глубины 3D */
    touch-action: pan-y;
    /* Разрешаем вертикальный скролл, блокируем горизонтальный для JS свайпов */
}

/* Сама рамка (трек) нам не нужна для прокрутки, используем wrapper */
.carousel-track {
    display: contents;
    /* Игнорируем этот div в layout, берем детей сразу в wrapper */
}

.carousel-slide {
    grid-area: stack;
    /* Все слайды в одну ячейку */
    width: 100%;
    opacity: 0;
    transform: scale(0.9) translateZ(-50px);
    /* По умолчанию сзади и маленькие */
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Пружинистая анимация Aero */
    z-index: 1;
    pointer-events: none;
    /* Чтобы не кликать по скрытым */
    display: flex;
    justify-content: center;
    filter: blur(5px) brightness(0.8);
    /* Блюр и затемнение для неактивных */
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1) translateZ(0);
    /* Активный спереди */
    z-index: 10;
    pointer-events: all;
    filter: blur(0) brightness(1);
}

.photo-frame {
    aspect-ratio: 16 / 9;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 120, 215, 0.25), inset 0 0 20px rgba(255, 255, 255, 0.5);
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
    transition: transform 0.5s ease;
}

.photo-frame:hover img {
    transform: scale(1.03);
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(0, 120, 215, 0.4);
    font-weight: 600;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

/* CAROUSEL BUTTONS */
.carousel-btn {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow:
        0 8px 20px rgba(0, 120, 215, 0.2),
        inset 0 2px 5px rgba(255, 255, 255, 0.9);
    z-index: 20;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 10px 25px rgba(0, 120, 215, 0.35);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

@media (max-width: 768px) {
    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* CAROUSEL INDICATORS */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(0, 120, 215, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 0 15px var(--primary-color), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    border-color: white;
}

/* --- LIGHTBOX (IMAGE VIEWER) --- */
.image-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(224, 247, 250, 0.3);
    /* Aero tint */
    backdrop-filter: blur(15px);
    /* Сильное размытие фона */
    -webkit-backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* CRITICAL FOR SWIPES: Allows horizontal pan without browser interference */
    touch-action: none;
}

.image-viewer.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 120, 215, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.8);

    /* Animation base state */
    transform: scale(1) translateZ(0);
    opacity: 1;
    filter: blur(0);

    /* SAME BEZIER AS CAROUSEL for that springy feel */
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Prevent image dragging interfering with swipe */
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
    will-change: transform, opacity, filter;
}

/* State when image is switching (mimics inactive carousel slide) */
.modal-content.switching {
    transform: scale(0.85) translateZ(-50px);
    opacity: 0;
    filter: blur(10px);
}

.close-viewer {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: 300;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    z-index: 2001;
    background: rgba(255, 255, 255, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-viewer:hover {
    color: var(--primary-color);
    background: white;
    transform: rotate(90deg);
}

/* --- SECURITY NEW (Split Card) --- */
.security-centered-wrapper {
    display: flex;
    justify-content: center;
    padding: 0 1rem;
}

.security-card-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
    padding: 3rem;
    gap: 2rem;
    text-align: left;
}

.security-content-side {
    flex: 1;
    z-index: 2;
}

.security-content-side h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.security-content-side p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.security-list {
    list-style: none;
}

.security-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .security-list li {
        white-space: normal;
    }
}

.security-list li i {
    color: var(--accent-color);
    margin-top: 5px;
    flex-shrink: 0;
}

.security-visual-side {
    flex: 0 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.big-shield-icon {
    font-size: 14rem;
    background: linear-gradient(135deg, #0078D7 0%, #4CC9F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 15px 30px rgba(0, 120, 215, 0.4));
    z-index: 2;
    line-height: 0.8;
}

.shield-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(76, 201, 240, 0.7) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
}

/* --- DOWNLOADS --- */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.release-card {
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.release-card:hover {
    transform: translateY(-5px);
}

.release-card i {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.status-soon {
    color: #a0aec0;
    font-weight: 600;
    margin-top: 1.5rem;
}

/* --- COMMUNITY --- */
.community-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.community-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    min-width: 160px;
    text-decoration: none;
    color: var(--text-main);
}

.community-link i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.community-link span {
    font-weight: bold;
    font-size: 1.1rem;
}

/* --- FOOTER --- */
footer {
    margin-top: 4rem;
    padding: 3rem 1rem;
    background: rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* STATUS FOOTER PULSE */
.status-indicator-footer {
    font-size: 0.95rem;
    margin-top: 0.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-indicator-footer.online {
    color: #2ecc71;
    text-shadow: 0 0 10px rgba(46, 204, 113, 0.3);
}

.status-indicator-footer.offline {
    color: #e74c3c;
    text-shadow: 0 0 10px rgba(231, 76, 60, 0.3);
}

.status-indicator-footer .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: relative;
    background-color: currentColor;
    box-shadow: 0 0 8px currentColor;
}

/* Pulsing effect */
.status-indicator-footer .dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* --- MOBILE RESPONSIVE FIXES --- */
@media (max-width: 768px) {

    /* Header Layout - Flex Ordering & Wrapping */
    header {
        top: 0;
        width: 100%;
        padding: 0;
    }

    .header-container {
        border-radius: 0 0 20px 20px;
        padding: 0.8rem 1rem;
        flex-wrap: wrap;
        /* Allows menu to drop to next line */
        gap: 0;
        justify-content: space-between;
    }

    /* 1. Logo First (Left) */
    .logo-container {
        order: 1;
        flex: 0 1 auto;
    }

    /* 2. Burger Button Second (Right) */
    .mobile-menu-btn {
        display: block;
        margin-left: auto;
        order: 2;
        padding: 0.5rem;
    }

    /* 3. Navigation Menu Third (Full Width Row) */
    nav {
        order: 3;
        width: 100%;
        /* Margin helps separate menu from header bar */
        margin-top: 0.5rem;
    }

    /* Mobile Nav Dropdown */
    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Centers items horizontally */
        width: 100%;
        gap: 0;
        padding: 0;

        /* Hidden State Props */
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        margin-top: 0;

        /* Animation */
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: top;
    }

    .nav-links.active {
        max-height: 400px;
        opacity: 1;
        margin-top: 0.5rem;
        padding-bottom: 1.5rem;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links li {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    /* 
       FIX: UNIFIED BUTTON STYLE 
       Ensure uniform width and center alignment for all mobile links
    */
    .nav-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 80%;
        max-width: 280px;
        margin: 6px 0;
        padding: 0.8rem 1.5rem;
        border-radius: 30px;
        text-align: center;
        background: rgba(255, 255, 255, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.6);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .nav-links a:active {
        transform: scale(0.96);
        background: rgba(255, 255, 255, 0.8);
    }

    /* CTA Button Override - Blue Style */
    .nav-links .nav-cta {
        background: var(--primary-color);
        color: white;
        margin-top: 12px;
        border: none;
        box-shadow: 0 4px 15px rgba(0, 120, 215, 0.25);
    }

    .nav-links .nav-cta:hover {
        background: var(--primary-hover);
    }

    /* Hero */
    #hero {
        padding-top: 4rem;
        padding-bottom: 2rem;
    }

    .glossy-text {
        font-size: 2.2rem;
    }

    .hero-glass-panel {
        padding: 2rem 1rem;
    }

    /* FIX: Mobile buttons layout */
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 1rem;
    }

    .cta-button {
        width: auto;
        max-width: 80%;
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }

    /* Security */
    .security-card-split {
        flex-direction: column-reverse;
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .security-content-side {
        width: 100%;
    }

    .security-list li {
        justify-content: center;
        text-align: left;
    }

    .big-shield-icon {
        font-size: 8rem;
    }

    .shield-glow {
        width: 100px;
        height: 100px;
    }

    /* Carousel */
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .prev-btn {
        left: 0;
    }

    .next-btn {
        right: 0;
    }

    .carousel-container {
        padding: 0 10px;
    }
}