/* Базовые настройки и переменные */
:root {
    --bg-dark: #071510;
    --text-main: #ffffff;
    --text-muted: #8ca398;
    --accent-green: #2ce871;
    --accent-green-hover: #24c961;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Фон с картой (заглушка для позиционирования) */
.bg-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Навигация --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.logo-icon {
    height: 32px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-main);
}

/* --- Кнопки --- */
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-nav {
    background-color: var(--accent-green);
    color: #000;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 15px;
}

.btn-primary {
    background-color: var(--accent-green);
    color: #000;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
}

.btn-primary:hover, .btn-nav:hover {
    background-color: var(--accent-green-hover);
    transform: translateY(-2px);
}

/* --- Главный экран --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
}

.hero-content {
    flex: 1;
    max-width: 100%;
}

.badge {
    display: inline-block;
    background-color: rgba(44, 232, 113, 0.1);
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(44, 232, 113, 0.2);
    margin-bottom: 30px;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 84px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight {
    color: var(--accent-green);
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.play-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid var(--text-main);
    border-radius: 50%;
    font-size: 10px;
}

.features-list {
    list-style: none;
    display: flex;
    gap: 24px;
}

.features-list li {
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.check {
    color: var(--accent-green);
    font-size: 14px;
}

/* --- Визуал справа --- */
.hero-visuals {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.main-mockup {
    max-width: 130%;
    margin-right: -15%;
    z-index: 1;
}

/* Эффект стекла для парящих карточек */
.glass-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 16px 24px;
    border-radius: 16px;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card-title {
    color: var(--accent-green);
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 4px;
}

.card-desc {
    color: var(--text-main);
    font-size: 14px;
}

.card-weekly { top: 50%; left: -10%; }
.card-start-1 { top: 25%; right: -5%; }
.card-start-2 { bottom: 20%; right: -5%; }

/* =========================================
   СЕКЦИЯ "HOW IT WORKS"
========================================= */
.how-it-works {
    margin-top: 150px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
    line-height: 1.5;
}

.steps-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 80px;
}

.glow-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 2px;
    background: var(--accent-green);
    box-shadow: 0 0 15px 2px rgba(44, 232, 113, 0.8), 
                0 0 40px 10px rgba(44, 232, 113, 0.2);
    z-index: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.step-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(44, 232, 113, 0.5);
}

.step-number {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: block;
}

.step-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.step-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 12px;
}

.step-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.5;
}

.cta-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 600;
}

.btn-glow {
    background-color: var(--accent-green);
    color: #000;
    padding: 16px 36px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 0 30px rgba(44, 232, 113, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-glow:hover {
    background-color: var(--accent-green-hover);
    box-shadow: 0 0 45px rgba(44, 232, 113, 0.5);
    transform: scale(1.02);
}

/* =========================================
   СЕКЦИЯ "WHY CHOOSE STAKING"
========================================= */
.why-choose {
    margin-top: 150px;
    padding-bottom: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
}

.bg-grid {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100vw;
    height: 120%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center;
    z-index: -2;
    mask-image: radial-gradient(ellipse 60% 50% at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

.features-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    text-align: left;
    min-height: 280px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(44, 232, 113, 0.5);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(44, 232, 113, 0.1);
    border: 1px solid rgba(44, 232, 113, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(44, 232, 113, 0.2);
}

.feature-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 12px;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.bg-laptop-mockup {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 60%;
    z-index: 1;
    opacity: 0.9;
    pointer-events: none;
}

.tags-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 60px;
    z-index: 2;
    position: relative;
}

.tag-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 12px 24px;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 500;
}

.bottom-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 2;
    position: relative;
}

.bottom-cta-text {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--text-main);
}

.bg-phone-mockup {
    position: absolute;
    bottom: -80px;
    left: -5%;
    max-width: 220px;
    z-index: 1;
    pointer-events: none;
}

.sparkle-deco {
    position: absolute;
    bottom: 0px;
    right: 5%;
    width: 40px;
    opacity: 0.7;
    pointer-events: none;
}

/* =========================================
   СЕКЦИЯ "BUILT FOR CONTROL"
========================================= */
.built-for-control {
    margin-top: 100px;
    padding-bottom: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
}

.bg-shield-deco {
    position: absolute;
    top: 0;
    right: -10%;
    width: 600px;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

.control-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
    margin-bottom: 60px;
    z-index: 2;
}

.control-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(44, 232, 113, 0.3);
    filter: blur(100px);
    border-radius: 50%;
    z-index: 0;
}

.laptop-secure-img {
    position: relative;
    width: 110%;
    margin-left: -10%;
    z-index: 2;
}

.control-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.control-card {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.control-card:hover {
    transform: translateX(10px);
    border-color: rgba(44, 232, 113, 0.4);
}

.card-icons-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-box {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
}

.icon-plus {
    color: var(--accent-green);
    font-size: 20px;
    font-weight: 500;
}

.card-text-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.control-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-main);
}

.control-card-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

.control-tags {
    margin-bottom: 40px;
}

/* =========================================
   СЕКЦИЯ FAQ (1 колонка, четкие кнопки)
========================================= */
.faq-section {
    margin-top: 100px;
    padding-bottom: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
}

.bg-waves-deco {
    position: absolute;
    top: 0;
    left: -10%;
    width: 50%;
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

.bg-dashboard-deco {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 45%;
    opacity: 0.2;
    z-index: -1;
    pointer-events: none;
}

/* ВАЖНО: Делаем 1 колонку по центру */
.faq-container {
    display: flex;
    flex-direction: column; /* Все элементы идут сверху вниз */
    gap: 16px;
    width: 100%;
    max-width: 900px; /* Идеальная ширина для одиночной колонки */
    margin: 0 auto 60px auto;
    z-index: 2;
}

/* Колонки внутри контейнера тоже выстраиваем вертикально */
.faq-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

/* Сама карточка FAQ */
.faq-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: border-color 0.3s ease, background 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    width: 100%;
}

.faq-card:hover {
    border-color: rgba(44, 232, 113, 0.4);
}

/* Скрытый по умолчанию ответ */
.faq-expanded-view {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, visibility 0.4s;
}

/* Когда карточка раскрыта */
.faq-card.expanded .faq-expanded-view {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
}

.faq-card.expanded .faq-collapsed-view {
    display: none;
}

.faq-card.expanded {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-color: rgba(44, 232, 113, 0.3);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* Вид свернутой карточки (Вопрос + Кнопка справа) */
.faq-collapsed-view {
    display: flex;
    justify-content: space-between; /* Расталкиваем текст влево, кнопку вправо */
    align-items: center;
    width: 100%;
    gap: 20px;
    padding: 24px 30px;
}

/* Текст вопроса */
.faq-collapsed-view .faq-question {
    margin: 0;
    flex-grow: 1; /* Забирает всё свободное место */
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--text-main);
}

/* ВАЖНО: Та самая жестко зафиксированная кнопка плюса */
.faq-plus-btn {
    width: 36px;
    height: 36px;
    flex-shrink: 0; /* Запрещаем кнопке сжиматься */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.faq-plus-btn:hover,
.faq-card:hover .faq-plus-btn {
    background: rgba(44, 232, 113, 0.15);
    border-color: rgba(44, 232, 113, 0.4);
}

.faq-plus-btn i {
    font-size: 14px;
}

/* Внутренности раскрытого ответа */
.faq-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-icon-box {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-title-group, .faq-card-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-answer {
    color: var(--text-main);
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.faq-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 2;
}

.cta-footer-text {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 5px;
    word-spacing: 2px;
}

.bg-phone-mockup-left {
    position: absolute;
    bottom: -60px;
    left: 2%;
    max-width: 200px;
    z-index: 1;
    pointer-events: none;
}

.sparkle-deco-right {
    position: absolute;
    bottom: 20px;
    right: 8%;
    width: 40px;
    opacity: 0.7;
    pointer-events: none;
}

/* =========================================
   ФИНАЛЬНАЯ СЕКЦИЯ И ФУТЕР
========================================= */
.final-cta {
    margin-top: 80px;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.center-glow {
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    opacity: 0.5;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 10px;
    margin-bottom: 60px;
    z-index: 2;
}

.link-secondary {
    color: var(--text-muted);
    font-size: 16px;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.link-secondary:hover {
    color: var(--text-main);
}

.cta-showcase {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    padding-bottom: 80px;
    z-index: 2;
}

.glass-shelf {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%) perspective(1000px) rotateX(75deg);
    width: 120vw;
    height: 300px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 100%);
    border-top: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 -10px 40px rgba(44, 232, 113, 0.1);
    z-index: 0;
}

.square-features {
    display: flex;
    gap: 16px;
    z-index: 2;
    margin-bottom: 30px;
}

.square-card {
    width: 110px;
    height: 110px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.square-card:hover {
    transform: translateY(-5px);
    border-color: rgba(44, 232, 113, 0.5);
}

.square-card span {
    font-size: 12px;
    color: var(--text-main);
    line-height: 1.3;
}

.cta-laptop-wrapper {
    position: relative;
    z-index: 2;
    margin-bottom: -10px;
}

.cta-laptop {
    max-width: 600px;
    display: block;
}

.cta-card-left { top: 30%; left: -20%; }
.cta-card-right { bottom: 25%; right: -15%; }

.bg-phone-mockup-bottom {
    position: absolute;
    bottom: -20px;
    left: 2%;
    max-width: 180px;
    z-index: 3;
}

/* =========================================
   МЕГА-ФУТЕР
========================================= */
.mega-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-top: 60px;
    padding-bottom: 40px;
    z-index: 2;
}

.footer-box {
    background: linear-gradient(180deg, rgba(20, 30, 25, 0.6) 0%, rgba(10, 15, 12, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    width: 100%;
    max-width: 1200px;
    padding: 60px 80px 0;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
}

.nintech-icon { height: 36px; width: auto; }

.footer-desc {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.5;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--text-main);
}

.footer-features-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, rgba(255,255,255,0.01) 0%, rgba(44, 232, 113, 0.08) 50%, rgba(255,255,255,0.01) 100%);
    border-top: 2px solid rgba(44, 232, 113, 0.6);
    box-shadow: 0 -15px 40px rgba(44, 232, 113, 0.15);
    border-radius: 20px;
    padding: 24px 60px;
    margin: 0 -40px;
    transform: translateY(20px);
}

.ff-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ff-item img {
    width: 32px;
    height: 32px;
    opacity: 0.9;
    filter: drop-shadow(0 0 10px rgba(44, 232, 113, 0.4));
}

.ff-item span {
    color: var(--text-main);
    font-size: 15px;
    line-height: 1.3;
    font-weight: 500;
}

.footer-bottom-info {
    margin-top: 60px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.copyright { opacity: 0.6; }

.footer-phone-mockup {
    position: absolute;
    bottom: 20px;
    left: 2%;
    max-width: 200px;
    z-index: 5;
    pointer-events: none;
}

.footer-sparkle-deco {
    position: absolute;
    bottom: 40px;
    right: 5%;
    width: 40px;
    opacity: 0.7;
    pointer-events: none;
}

/* =========================================
   АДАПТИВНОСТЬ (MOBILE & TABLET)
========================================= */
@media (max-width: 1024px) {
    .hero-title { font-size: 64px; }
    .hero-subtitle { font-size: 16px; }
    .steps-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
    .control-layout { flex-direction: column; }
    .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
    .bg-laptop-mockup { opacity: 0.2; right: -20%; }
    .main-mockup { max-width: 100%; margin-right: 0; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .nav-links { display: none; }
    .hero { flex-direction: column; text-align: center; margin-top: 40px; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .hero-title { font-size: 42px; }
    .hero-actions, .cta-actions { flex-direction: column; width: 100%; }
    .btn-primary, .btn-glow { width: 100%; }
    .steps-grid, .features-grid { grid-template-columns: 1fr; }
    .control-card { flex-direction: column; text-align: center; }
    .tags-row { flex-direction: column; width: 100%; }
    .footer-links-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-features-bar { flex-direction: column; align-items: center; text-align: center; }
    .ff-item { flex-direction: column; }
    
    .hero-visuals, .main-mockup, .glass-card, .bg-laptop-mockup, 
    .bg-phone-mockup, .bg-phone-mockup-left, .bg-phone-mockup-bottom, 
    .footer-phone-mockup, .bg-shield-deco, .sparkle-deco, .sparkle-deco-right,
    .footer-sparkle-deco, .laptop-secure-img, .glow-line, .glass-shelf {
        display: none; 
    }
}