/* KitVPN — нижние секции главной (connect, why, faq, download) */

.kit-home-section {
    position: relative;
    padding: 3.5rem 1rem 4rem;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .kit-home-section {
        padding: 5rem 1rem 6rem;
    }
}

.kit-home-section__inner {
    max-width: 72rem;
    margin: 0 auto;
    width: 100%;
}

.kit-home-head {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 2.75rem;
    padding: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

#connect .kit-home-head,
#plus .kit-home-head,
#faq .kit-home-head {
    background: transparent !important;
    border: none !important;
}

.kit-home-head__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #7dd3fc;
    background: rgba(51, 187, 255, 0.08);
    border: 1px solid rgba(51, 187, 255, 0.22);
    margin-bottom: 1rem;
}

.kit-home-head__title {
    margin: 0;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #f0f9ff;
}

.kit-home-head__lead {
    margin: 1rem 0 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(203, 213, 225, 0.75);
}

.kit-home-head__title .kit-home-head__accent {
    background: linear-gradient(120deg, #33bbff 0%, #67e8f9 45%, #0088cc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Scroll reveal */
.kit-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.kit-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.kit-reveal--delay-1 { transition-delay: 0.08s; }
.kit-reveal--delay-2 { transition-delay: 0.16s; }
.kit-reveal--delay-3 { transition-delay: 0.24s; }
.kit-reveal--delay-4 { transition-delay: 0.32s; }
.kit-reveal--delay-5 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
    .kit-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Connect path */
.kit-home-section--connect {
    padding-top: 2rem;
}

.kit-connect-path {
    position: relative;
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 900px) {
    .kit-connect-path {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.75rem;
    }

    .kit-connect-path::before {
        content: '';
        position: absolute;
        top: 2.1rem;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(90deg,
            transparent,
            rgba(51, 187, 255, 0.35) 15%,
            rgba(51, 187, 255, 0.65) 50%,
            rgba(51, 187, 255, 0.35) 85%,
            transparent);
        z-index: 0;
        animation: kit-connect-pulse 3s ease-in-out infinite;
    }
}

@keyframes kit-connect-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.kit-connect-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.35rem 1rem 1.2rem;
    border-radius: 1.25rem;
    background: rgba(3, 18, 32, 0.55);
    border: 1px solid rgba(51, 187, 255, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.kit-connect-step:hover {
    transform: translateY(-4px);
    border-color: rgba(51, 187, 255, 0.35);
    box-shadow: 0 12px 40px rgba(0, 136, 204, 0.15), 0 0 0 1px rgba(51, 187, 255, 0.08);
}

.kit-connect-step__num {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 800;
    color: #020608;
    background: linear-gradient(135deg, #33bbff, #0088cc);
    box-shadow: 0 0 20px rgba(51, 187, 255, 0.45);
    margin-bottom: 0.85rem;
}

.kit-connect-step__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 0.65rem;
    color: #67e8f9;
}

.kit-connect-step__icon svg {
    width: 1.35rem;
    height: 1.35rem;
    fill: currentColor;
}

.kit-connect-step__text {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.45;
    color: #e2e8f0;
}

.kit-connect-help {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.kit-connect-help__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    color: #7dd3fc;
    background: transparent !important;
    background-image: none !important;
    border: 1px solid rgba(51, 187, 255, 0.4);
    box-shadow: none !important;
    backdrop-filter: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.kit-connect-help__btn:hover {
    transform: translateY(-2px);
    background: rgba(51, 187, 255, 0.08) !important;
    border-color: rgba(103, 232, 249, 0.55);
    box-shadow: 0 0 18px rgba(51, 187, 255, 0.12) !important;
    color: #a5f3fc;
    filter: none;
}

.kit-connect-help__btn svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: currentColor;
}

.kit-connect-help__btn--channel svg {
    fill: #67e8f9;
}

/* Dark glass panel (locations) */
.kit-home-panel {
    margin-top: 2.5rem;
    padding: 1.75rem 1.25rem 2rem;
    border-radius: 1.5rem;
    background: rgba(3, 14, 26, 0.45);
    border: 1px solid rgba(51, 187, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

@media (min-width: 1024px) {
    .kit-home-panel {
        padding: 2.5rem 2.5rem 3rem;
        margin-top: 3rem;
    }
}

/* Why section */
.kit-why-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .kit-why-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.kit-why-stat {
    padding: 1.25rem 1rem;
    border-radius: 1.15rem;
    text-align: center;
    background: rgba(3, 18, 32, 0.5);
    border: 1px solid rgba(51, 187, 255, 0.1);
    transition: border-color 0.3s ease;
}

.kit-why-stat:hover {
    border-color: rgba(51, 187, 255, 0.28);
}

.kit-why-stat__value {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.1;
    color: #67e8f9;
    font-variant-numeric: tabular-nums;
}

.kit-why-stat__label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.8rem;
    color: rgba(148, 163, 184, 0.9);
    line-height: 1.35;
}

.kit-why-features {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .kit-why-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .kit-why-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.kit-why-feature {
    padding: 1.35rem 1.25rem;
    border-radius: 1.15rem;
    background: rgba(3, 18, 32, 0.45);
    border: 1px solid rgba(51, 187, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.kit-why-feature:hover {
    transform: translateY(-3px);
    border-color: rgba(51, 187, 255, 0.25);
}

.kit-why-feature__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.85rem;
    border-radius: 0.85rem;
    color: #67e8f9;
    background: rgba(51, 187, 255, 0.1);
    border: 1px solid rgba(51, 187, 255, 0.2);
    box-shadow: 0 0 20px rgba(51, 187, 255, 0.08);
}

.kit-why-feature__icon svg {
    display: block;
    fill: currentColor;
}

.kit-why-feature__title {
    margin: 0 0 0.4rem;
    font-size: 1rem;
    font-weight: 700;
    color: #f1f5f9;
}

.kit-why-feature__text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: rgba(148, 163, 184, 0.95);
}

/* Guides (devices) */
.kit-guides-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .kit-guides-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
    }
}

.kit-guide-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
    padding: 1.5rem 1rem 1.35rem;
    border-radius: 1.35rem;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    background: rgba(3, 18, 32, 0.55);
    border: 1px solid rgba(51, 187, 255, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.kit-guide-card__glow {
    position: absolute;
    inset: -40% -20% auto;
    height: 70%;
    background: radial-gradient(circle, rgba(51, 187, 255, 0.25) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.kit-guide-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(103, 232, 249, 0.45);
    box-shadow: 0 20px 40px rgba(0, 136, 204, 0.2), 0 0 0 1px rgba(51, 187, 255, 0.12);
    color: inherit;
}

.kit-guide-card:hover .kit-guide-card__glow {
    opacity: 1;
}

.kit-guide-card__icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 0.5rem;
    border-radius: 1rem;
    color: #67e8f9;
    background: linear-gradient(145deg, rgba(51, 187, 255, 0.18), rgba(0, 136, 204, 0.08));
    border: 1px solid rgba(51, 187, 255, 0.28);
    animation: kit-guide-float 4.5s ease-in-out infinite;
}

.kit-guide-card:nth-child(2) .kit-guide-card__icon { animation-delay: -0.6s; }
.kit-guide-card:nth-child(3) .kit-guide-card__icon { animation-delay: -1.2s; }
.kit-guide-card:nth-child(4) .kit-guide-card__icon { animation-delay: -1.8s; }
.kit-guide-card:nth-child(5) .kit-guide-card__icon { animation-delay: -2.4s; }

@keyframes kit-guide-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.kit-guide-card__icon svg {
    display: block;
    fill: currentColor;
}

.kit-guide-card__name {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    font-weight: 700;
    color: #f1f5f9;
}

.kit-guide-card__hint {
    position: relative;
    z-index: 1;
    font-size: 0.75rem;
    color: rgba(148, 163, 184, 0.85);
}

@media (max-width: 767px) {
    .kit-guide-card:last-child {
        grid-column: 1 / -1;
        max-width: 12rem;
        justify-self: center;
        width: 100%;
    }
}

/* Dive CTA */
.kit-dive {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 2rem;
    align-items: center;
    padding: 2.75rem 1.5rem;
    border-radius: 2rem;
    background: linear-gradient(155deg, rgba(0, 70, 110, 0.55) 0%, rgba(2, 8, 14, 0.92) 48%, rgba(0, 120, 180, 0.25) 100%);
    border: 1px solid rgba(51, 187, 255, 0.28);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(103, 232, 249, 0.15);
}

@media (min-width: 900px) {
    .kit-dive {
        grid-template-columns: 1.35fr 0.9fr;
        padding: 3.5rem 3rem;
        gap: 2.5rem;
    }
}

.kit-dive__waves {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.kit-dive__wave {
    position: absolute;
    left: -10%;
    width: 120%;
    height: 120px;
    border-radius: 45%;
    background: radial-gradient(ellipse at center, rgba(51, 187, 255, 0.12) 0%, transparent 70%);
    animation: kit-wave-drift 10s ease-in-out infinite;
}

.kit-dive__wave--1 { bottom: -40px; animation-duration: 9s; }
.kit-dive__wave--2 { bottom: 20px; opacity: 0.6; animation-duration: 12s; animation-delay: -3s; }
.kit-dive__wave--3 { bottom: 80px; opacity: 0.35; animation-duration: 14s; animation-delay: -6s; }

@keyframes kit-wave-drift {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    50% { transform: translateX(4%) rotate(1deg); }
}

.kit-dive__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
    background: radial-gradient(circle, rgba(51, 187, 255, 0.35) 0%, transparent 70%);
    animation: kit-orb-float 8s ease-in-out infinite;
}

.kit-dive__orb--a {
    width: 220px;
    height: 220px;
    top: -60px;
    right: 10%;
}

.kit-dive__orb--b {
    width: 160px;
    height: 160px;
    bottom: -40px;
    left: 5%;
    animation-delay: -4s;
    background: radial-gradient(circle, rgba(103, 232, 249, 0.2) 0%, transparent 70%);
}

@keyframes kit-orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.55; }
    50% { transform: translate(-18px, 12px) scale(1.12); opacity: 1; }
}

.kit-dive__content {
    position: relative;
    z-index: 1;
}

.kit-dive__eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7dd3fc;
}

.kit-dive__title {
    margin: 0;
    font-size: clamp(1.65rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #f0f9ff;
}

.kit-dive__title span {
    background: linear-gradient(120deg, #33bbff, #a5f3fc 50%, #0088cc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.kit-dive__lead {
    margin: 1rem 0 1.75rem;
    max-width: 32rem;
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(203, 213, 225, 0.88);
}

.kit-dive__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.kit-dive__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.kit-dive__btn--primary {
    color: #7dd3fc;
    background: transparent;
    border: 1px solid rgba(51, 187, 255, 0.45);
    box-shadow: none;
}

.kit-dive__btn--primary:hover {
    transform: translateY(-3px);
    background: rgba(51, 187, 255, 0.1);
    border-color: rgba(103, 232, 249, 0.65);
    box-shadow: 0 0 24px rgba(51, 187, 255, 0.18);
    color: #a5f3fc;
}

.kit-dive__btn--primary svg {
    fill: currentColor;
}

.kit-dive__btn--ghost {
    color: #e0f2fe;
    background: rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(125, 211, 252, 0.3);
}

.kit-dive__btn--ghost:hover {
    transform: translateY(-2px);
    border-color: rgba(125, 211, 252, 0.55);
    color: #fff;
}

.kit-dive__apps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    width: 100%;
    max-width: 22rem;
}

.kit-dive-app {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.55rem 0.9rem;
    border-radius: 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    color: #e2e8f0;
    background: rgba(2, 12, 22, 0.55);
    border: 1px solid rgba(51, 187, 255, 0.15);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

@media (min-width: 640px) {
    .kit-dive__apps {
        display: flex;
        flex-wrap: wrap;
        max-width: none;
    }

    .kit-dive-app {
        justify-content: flex-start;
    }
}

.kit-dive-app svg {
    fill: currentColor;
    color: #67e8f9;
}

.kit-dive-app:hover {
    transform: translateY(-2px);
    border-color: rgba(51, 187, 255, 0.4);
    background: rgba(3, 22, 40, 0.8);
    color: #fff;
}

.kit-dive-app--tg:hover {
    border-color: rgba(34, 158, 217, 0.6);
}

.kit-dive__visual {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.kit-dive__logo {
    position: relative;
    z-index: 2;
    width: clamp(120px, 28vw, 180px);
    height: auto;
    filter: drop-shadow(0 0 28px rgba(51, 187, 255, 0.45));
    animation: kit-logo-bob 5s ease-in-out infinite;
}

@keyframes kit-logo-bob {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.kit-dive__ring {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid rgba(51, 187, 255, 0.25);
    animation: kit-ring-spin 12s linear infinite;
}

.kit-dive__ring--2 {
    width: 260px;
    height: 260px;
    border-color: rgba(103, 232, 249, 0.12);
    animation-direction: reverse;
    animation-duration: 18s;
}

@keyframes kit-ring-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .kit-guide-card__icon,
    .kit-dive__wave,
    .kit-dive__orb,
    .kit-dive__logo,
    .kit-dive__ring {
        animation: none !important;
    }
}

/* Footer */
.kit-footer {
    position: relative;
    margin-top: 1rem;
    padding: 2.5rem 0 2rem;
    border-top: 1px solid rgba(51, 187, 255, 0.12);
    background: linear-gradient(180deg, transparent, rgba(0, 20, 35, 0.5));
}

.kit-footer__inner {
    max-width: 72rem;
    width: 100%;
}

.kit-footer__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .kit-footer__top {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.kit-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    min-width: 0;
}

.kit-footer__brand-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem;
    width: auto;
}

.kit-footer__tg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: center;
    margin-left: 0.35rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    color: #67e8f9;
    background: rgba(51, 187, 255, 0.1);
    border: 1px solid rgba(51, 187, 255, 0.35);
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.kit-footer__tg:hover {
    transform: translateY(-2px);
    background: rgba(51, 187, 255, 0.18);
    border-color: rgba(103, 232, 249, 0.55);
    box-shadow: 0 0 16px rgba(51, 187, 255, 0.2);
    color: #a5f3fc;
}

.kit-footer__tg svg {
    width: 1.35rem;
    height: 1.35rem;
    fill: currentColor;
}

.kit-footer__logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(51, 187, 255, 0.35));
    transition: transform 0.35s ease;
}

.kit-footer__brand:hover .kit-footer__logo {
    transform: scale(1.06) rotate(-4deg);
}

.kit-footer__brand-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 0.2rem !important;
    position: relative;
    line-height: 1.25;
    min-width: 0;
}

.kit-footer__wordmark {
    display: block;
    position: static;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.kit-footer__copy {
    display: block;
    position: static;
    margin: 0;
    padding: 0;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(148, 163, 184, 0.85);
    line-height: 1.3;
    white-space: nowrap;
}

.kit-footer__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    width: 100%;
    max-width: 22rem;
}

.kit-footer__nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.55rem 0.65rem;
    border-radius: 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #e2e8f0;
    text-decoration: none;
    background: rgba(2, 12, 22, 0.55);
    border: 1px solid rgba(51, 187, 255, 0.15);
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.kit-footer__nav a:hover {
    color: #67e8f9;
    border-color: rgba(103, 232, 249, 0.4);
    background: rgba(51, 187, 255, 0.1);
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .kit-footer__nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        max-width: none;
        gap: 0.35rem 1.15rem;
    }

    .kit-footer__nav a {
        padding: 0;
        border: none;
        background: transparent;
        font-size: 0.875rem;
        font-weight: 500;
        color: rgba(148, 163, 184, 0.95);
    }

    .kit-footer__nav a:hover {
        background: transparent;
        border: none;
        transform: none;
        color: #67e8f9;
    }
}

/* Banner spacing in sections */
.kit-section-banner {
    max-width: min(100%, 46rem);
    margin: 0 auto 2.5rem;
}

/* Why-section photo: native 3:2, not crop-cropped wide strip */
.kit-section-banner--why {
    max-width: min(100%, 28rem);
}

@media (min-width: 640px) {
    .kit-section-banner--why {
        max-width: min(100%, 34rem);
    }
}

@media (min-width: 1024px) {
    .kit-section-banner {
        margin-bottom: 3rem;
    }

    .kit-section-banner--why {
        max-width: min(100%, 38rem);
        margin-bottom: 2.75rem;
    }
}

.kit-section-banner--why .kitvpn-promo-banner,
.kitvpn-promo-banner--natural {
    width: 100%;
    max-width: 100% !important;
    aspect-ratio: 3 / 2 !important;
    overflow: hidden;
}

.kitvpn-promo-banner--natural .kitvpn-promo-banner__photo {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
}

.hero-cta-below-tv-banner,
.plus-section-above-banner,
.faq-section-above-banner {
    max-width: min(100%, 46rem);
}
