:root {
    --primary: #5b6cff;
    --secondary: #7bdcb5;
    --dark: #132238;
    --muted: #6c757d;
    --bg-soft: #f5f8ff;
    --card-shadow: 0 18px 55px rgba(19, 34, 56, 0.08);
}

body {
    background: linear-gradient(180deg, #fbfcff 0%, #f5f8ff 100%);
    color: var(--dark);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.gradient-text {
    background: linear-gradient(120deg, var(--primary), #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section {
    padding: 70px 0 30px;
}

.hero-section-enhanced {
    position: relative;
}

.hero-section-enhanced::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(91, 108, 255, 0.10), transparent 35%);
    pointer-events: none;
}

.hero-card,
.soft-card,
.extension-card,
.admin-card {
    border: 1px solid rgba(91, 108, 255, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--card-shadow);
}

.hero-badge,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(91, 108, 255, 0.1);
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 18px;
}

.section-kicker {
    font-size: 0.9rem;
}

.extension-card {
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.extension-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(91, 108, 255, 0.14);
}

.extension-card img,
.extension-thumb {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #eef2ff;
}

.extension-excerpt {
    line-height: 1.7;
}

.price-chip {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(32, 201, 151, 0.12);
    color: #108763;
    font-weight: 700;
    white-space: nowrap;
}

.feature-list li {
    margin-bottom: 10px;
}

.footer-section {
    background: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(19, 34, 56, 0.08);
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    text-decoration: none;
    background: #25d366;
    color: #fff;
    padding: 14px 18px;
    border-radius: 999px;
    box-shadow: 0 16px 32px rgba(37, 211, 102, 0.25);
    font-weight: 700;
}

.auth-wrapper,
.admin-wrapper {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.stats-pill {
    border-radius: 20px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(91, 108, 255, 0.12), rgba(123, 220, 181, 0.16));
}

.hero-mini-stats .stats-pill {
    height: 100%;
}

.trust-list {
    margin-top: 10px;
}

.trust-item {
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(91, 108, 255, 0.04));
    border: 1px solid rgba(91, 108, 255, 0.08);
}

.trust-item strong,
.feature-strip,
.info-icon {
    display: block;
}

.trust-item span {
    color: var(--muted);
    display: block;
    margin-top: 6px;
    line-height: 1.6;
}

.info-card {
    transition: transform .2s ease, box-shadow .2s ease;
}

.info-card:hover {
    transform: translateY(-4px);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(91, 108, 255, 0.1);
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 16px;
}

.feature-strip {
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(91, 108, 255, 0.06);
    border: 1px solid rgba(91, 108, 255, 0.08);
    font-weight: 600;
}

.table thead th {
    white-space: nowrap;
}

.video-wrap iframe {
    border: 0;
    border-radius: 18px;
    min-height: 320px;
    width: 100%;
}

@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 42px;
    }

    .extension-card img,
    .extension-thumb {
        height: 180px;
    }

    .video-wrap iframe {
        min-height: 220px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding: 12px 14px;
        font-size: 0.9rem;
    }
}
