.download-page {
    min-height: 100vh;
    padding-top: 98px;
    background:
        radial-gradient(circle at 20% 15%, rgba(32, 103, 117, 0.24), transparent 42%),
        radial-gradient(circle at 85% 12%, rgba(66, 132, 160, 0.18), transparent 48%),
        linear-gradient(135deg, #07151b 0%, #0e2b33 50%, #0a2128 100%);
    color: #eaf4f7;
    font-family: "Space Grotesk", "Poppins", "Segoe UI", sans-serif;
}

.download-shell {
    position: relative;
    padding: 56px 0 88px;
    overflow: hidden;
}

.download-shell::before,
.download-shell::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(6px);
}

.download-shell::before {
    width: 340px;
    height: 340px;
    top: -120px;
    right: -80px;
    background: radial-gradient(circle at 35% 35%, rgba(121, 213, 235, 0.28), rgba(16, 52, 61, 0));
    animation: floatA 14s ease-in-out infinite;
}

.download-shell::after {
    width: 280px;
    height: 280px;
    left: -90px;
    bottom: -100px;
    background: radial-gradient(circle at 60% 40%, rgba(29, 149, 177, 0.22), rgba(16, 52, 61, 0));
    animation: floatB 16s ease-in-out infinite;
}

.download-shell .container {
    position: relative;
    z-index: 2;
}

.download-copy {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(208, 241, 248, 0.14);
    border-radius: 28px;
    padding: 36px 34px;
    box-shadow: 0 30px 75px rgba(3, 12, 15, 0.42);
    height: 100%;
}

.download-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: #b8e8f3;
    border: 1px solid rgba(173, 232, 245, 0.35);
    background: rgba(255, 255, 255, 0.04);
    margin-bottom: 16px;
}

.download-title {
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.05;
    font-weight: 700;
    color: #f8fdff;
    margin: 0 0 14px;
}

.download-subtitle {
    color: rgba(232, 246, 250, 0.86);
    font-size: 17px;
    line-height: 1.68;
    margin: 0 0 24px;
    max-width: 560px;
}

.value-list {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(233, 247, 252, 0.92);
}

.value-item i {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    background: rgba(98, 206, 232, 0.18);
    color: #8ce6ff;
    font-size: 13px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 9px 14px;
    border: 1px solid rgba(183, 232, 242, 0.24);
    background: rgba(255, 255, 255, 0.04);
    color: #d5f2f8;
    font-size: 13px;
    font-weight: 600;
}

.download-card {
    background: linear-gradient(180deg, rgba(12, 43, 52, 0.88), rgba(9, 34, 41, 0.96));
    border: 1px solid rgba(168, 226, 237, 0.24);
    border-radius: 24px;
    padding: 34px 30px;
    box-shadow: 0 24px 65px rgba(2, 10, 13, 0.5);
    height: 100%;
    backdrop-filter: blur(4px);
}

.download-card h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.12;
    font-weight: 700;
    color: #fbfeff;
}

.download-card p {
    margin: 12px 0 20px;
    color: rgba(223, 243, 249, 0.85);
    font-size: 14px;
    line-height: 1.7;
}

.download-alert {
    border-radius: 14px;
    border: 1px solid rgba(255, 120, 120, 0.4);
    background: rgba(180, 46, 46, 0.2);
    color: #ffe0e0;
    padding: 12px 14px;
    margin-bottom: 16px;
}

.download-form .field-group {
    margin-bottom: 16px;
}

.download-label {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(203, 238, 246, 0.86);
}

.download-input {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(173, 227, 238, 0.25);
    background: rgba(246, 252, 255, 0.08);
    color: #f3fbff;
    padding: 12px 14px;
    font-size: 14px;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.download-input::placeholder {
    color: rgba(209, 235, 242, 0.6);
}

.download-input:focus {
    outline: none;
    border-color: rgba(134, 224, 243, 0.8);
    box-shadow: 0 0 0 0.2rem rgba(91, 192, 219, 0.22);
    background: rgba(247, 252, 255, 0.14);
}

.btn-download {
    width: 100%;
    margin-top: 6px;
    border: 0;
    border-radius: 14px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #2ea8c6 0%, #1f879d 52%, #156476 100%);
    color: #f8fdff;
    font-weight: 700;
    letter-spacing: 0.02em;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    box-shadow: 0 14px 28px rgba(17, 94, 111, 0.38);
    cursor: pointer;
}

.btn-download:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.btn-download:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(99, 203, 227, 0.35);
}

.privacy-note {
    margin: 16px 0 0;
    color: rgba(197, 230, 238, 0.74);
    font-size: 12px;
    text-align: center;
}

.download-bottom {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.bottom-card {
    border-radius: 14px;
    border: 1px solid rgba(189, 234, 244, 0.2);
    background: rgba(255, 255, 255, 0.04);
    padding: 12px;
    text-align: center;
    font-size: 13px;
    color: #d8f2f8;
    line-height: 1.45;
}

.bottom-card strong {
    display: block;
    color: #f3fbff;
    font-size: 15px;
    margin-bottom: 4px;
}

@keyframes floatA {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(14px);
    }
}

@keyframes floatB {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

@media (max-width: 991.98px) {
    .download-shell {
        padding: 38px 0 68px;
    }

    .download-copy,
    .download-card {
        padding: 28px 24px;
    }

    .download-title {
        font-size: clamp(28px, 7vw, 42px);
    }

    .download-bottom {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .download-shell {
        padding: 26px 0 58px;
    }

    .download-copy,
    .download-card {
        border-radius: 20px;
        padding: 24px 18px;
    }

    .download-title {
        line-height: 1.1;
    }

    .btn-download {
        font-size: 14px;
    }
}
