.hero-note {
    font-size: 14px !important;
    font-weight: 700;
    margin-top: 20px !important;
    margin-bottom: 0 !important;
}

.hero-import {
    background: linear-gradient(135deg, #d52d26 0%, #a01f1c 100%);
    border-bottom: 0;
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
}

.hero-import .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 510px);
    gap: 48px;
    position: relative;
    z-index: 1;
}

.hero-import .hero-pill {
    background: rgba(255, 255, 255, .2);
    color: #fff;
    border-radius: 999px;
    letter-spacing: 0;
    text-transform: none;
    font-size: 14px;
    font-weight: 500;
    padding: 4px 16px;
    margin-bottom: 16px;
}

.hero-import h1 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 22px;
}

.hero-import p {
    color: rgba(255, 255, 255, .9);
}

.hero-import .btn-primary {
    background: #d52d26;
    border-color: #d52d26;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    border-radius: 12px;
    padding: 14px 30px;
    transition: background .2s, border-color .2s, color .2s, transform .2s;
}

.hero-import .btn-primary:hover {
    background: #a01f1c;
    border-color: #a01f1c;
    color: #fff;
    transform: translateY(-2px);
}

.hero-import .btn-ghost {
    border-color: rgba(255, 255, 255, .45);
    border-radius: 12px;
    color: #fff;
    padding: 14px 30px;
    transition: background .2s, border-color .2s, color .2s, transform .2s;
}

.hero-import .btn-ghost:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .65);
    color: #fff;
    transform: translateY(-2px);
}

.hero-import .hero-note {
    color: rgba(255, 255, 255, .82);
}

.hero-import .hero-media {
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.hero-circle {
    position: absolute;
    display: block;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    pointer-events: none;
    --hero-float-base: translateY(0);
    animation: hero-float 3s ease-in-out infinite;
}

.hero-circle-top {
    width: 384px;
    height: 384px;
    top: 0;
    left: 50%;
    --hero-float-base: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.hero-circle-bottom {
    width: 288px;
    height: 288px;
    right: 25%;
    bottom: 0;
}

.hero-import .hero-actions {
    --hero-float-base: translateY(0);
    animation: hero-float 3s ease-in-out infinite;
}

.hero-import ~ .section {
    padding-top: 52px;
    padding-bottom: 52px;
}

.hero-import + .section {
    padding-top: 30px;
    padding-bottom: 28px;
}

.trust-grid {
    gap: 12px;
}

.trust-item {
    border: 1px solid #e2e2e2;
    border-left: 0;
    background: #fafafa;
    color: #555;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    box-shadow: none;
}

#how-it-works {
    padding-top: 48px;
    padding-bottom: 26px;
}

.downloads-section {
    padding-top: 0;
    padding-bottom: 42px;
}

.download-actions {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 12px;
    align-items: stretch;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
}

.download-actions .btn {
    width: 100%;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 11px 18px;
    text-align: center;
}

.download-actions .btn-secondary {
    background: #fff;
    color: #d52d26;
    border-color: #d52d26;
}

.download-actions .btn-secondary:hover {
    background: #fff5f5;
    color: #a01f1c;
    border-color: #d52d26;
}

@keyframes hero-float {
    0%,
    100% {
        transform: var(--hero-float-base) translateY(0);
    }

    50% {
        transform: var(--hero-float-base) translateY(-10px);
    }
}

@media (max-width: 768px) {
    .hero-import {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .hero-import .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-import .hero-actions {
        justify-content: center;
    }

    .download-actions {
        grid-template-columns: 1fr;
        padding: 12px;
    }
}
