/* ==============================================
   ABS VENDOR — DARK MODE + MULTI-COLOR BG
   Brand Blue: #1a4fba | Deep Dark: #080c18
   Multi-color animated background
   ============================================== */

/* ===== BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #080c18;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle 600px at 50% 15%, rgba(236, 72, 153, 0.15) 0%, transparent 55%),
        radial-gradient(circle 550px at 50% 55%, rgba(59, 130, 246, 0.12) 0%, transparent 55%),
        radial-gradient(circle 500px at 50% 85%, rgba(16, 185, 129, 0.12) 0%, transparent 55%),
        radial-gradient(circle 500px at 25% 45%, rgba(245, 158, 11, 0.1) 0%, transparent 55%),
        radial-gradient(circle 500px at 75% 35%, rgba(139, 92, 246, 0.12) 0%, transparent 55%);
    animation: bgDrift 25s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes bgDrift {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-3%, 2%) rotate(3deg); }
    50% { transform: translate(2%, -2%) rotate(-2deg); }
    75% { transform: translate(-1%, -3%) rotate(2deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* ===== ANIMATED BACKGROUND ===== */
.bg-animated {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* --- Multi-Color Gradient Blobs --- */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 1;
}

/* Pink / Rose — top area */
.blob-1 {
    width: 500px;
    height: 500px;
    background: rgba(236, 72, 153, 0.2);
    top: -5%;
    left: 50%;
    transform: translateX(-50%);
    animation: blob1 14s ease-in-out infinite;
}

/* Teal / Emerald — bottom area */
.blob-2 {
    width: 480px;
    height: 480px;
    background: rgba(16, 185, 129, 0.18);
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
    animation: blob2 18s ease-in-out infinite;
}

/* Purple / Violet — middle right */
.blob-3 {
    width: 420px;
    height: 420px;
    background: rgba(139, 92, 246, 0.18);
    top: 35%;
    left: 60%;
    animation: blob3 16s ease-in-out infinite;
}

/* Amber / Gold — middle left */
.blob-4 {
    width: 400px;
    height: 400px;
    background: rgba(245, 158, 11, 0.15);
    top: 20%;
    left: -5%;
    animation: blob4 20s ease-in-out infinite;
}

@keyframes blob1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-50px, 60px) scale(1.12); }
    50% { transform: translate(-90px, 30px) scale(0.95); }
    75% { transform: translate(-20px, 80px) scale(1.18); }
}

@keyframes blob2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(60px, -35px) scale(1.15); }
    50% { transform: translate(90px, -60px) scale(1.05); }
    75% { transform: translate(30px, -20px) scale(1.22); }
}

@keyframes blob3 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(-60px, 50px) scale(1.1) rotate(120deg); }
    66% { transform: translate(-30px, -35px) scale(0.9) rotate(240deg); }
}

@keyframes blob4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(70px, 55px) scale(1.25); }
}

/* --- Multi-Color Floating Shapes --- */
.shape {
    position: absolute;
    border: 2px solid transparent;
    opacity: 0;
    animation-fill-mode: both;
}

/* Pink circle */
.shape-1 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 12%;
    left: 8%;
    border-color: rgba(236, 72, 153, 0.4);
    background: rgba(236, 72, 153, 0.08);
    animation: shapeFloat1 12s 0.5s ease-in-out infinite;
}

/* Blue square */
.shape-2 {
    width: 25px;
    height: 25px;
    border-radius: 6px;
    top: 25%;
    right: 12%;
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.08);
    animation: shapeFloat2 15s 1s ease-in-out infinite;
}

/* Purple dot */
.shape-3 {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    bottom: 20%;
    right: 18%;
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(139, 92, 246, 0.1);
    animation: shapeFloat3 10s 0.8s ease-in-out infinite;
}

/* Teal rounded square */
.shape-4 {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    bottom: 35%;
    left: 5%;
    border-color: rgba(16, 185, 129, 0.35);
    background: rgba(16, 185, 129, 0.06);
    animation: shapeFloat4 18s 1.5s ease-in-out infinite;
}

/* Amber filled dot */
.shape-5 {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.3);
    border: none;
    top: 55%;
    left: 15%;
    animation: shapeFloat5 8s 0.3s ease-in-out infinite;
}

/* Rose rounded square */
.shape-6 {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    top: 70%;
    right: 8%;
    border-color: rgba(244, 114, 182, 0.35);
    background: rgba(244, 114, 182, 0.06);
    animation: shapeFloat6 13s 2s ease-in-out infinite;
}

@keyframes shapeFloat1 {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 1; }
}

@keyframes shapeFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.6; }
    50% { transform: translate(-20px, 25px) rotate(90deg); opacity: 1; }
}

@keyframes shapeFloat3 {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
    50% { transform: translateY(-40px) scale(1.3); opacity: 1; }
}

@keyframes shapeFloat4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.5; }
    33% { transform: translate(20px, -30px) rotate(60deg); opacity: 0.8; }
    66% { transform: translate(10px, 20px) rotate(120deg); opacity: 0.7; }
}

@keyframes shapeFloat5 {
    0%, 100% { transform: translate(0, 0); opacity: 0.6; }
    50% { transform: translate(15px, -20px); opacity: 1; }
}

@keyframes shapeFloat6 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.6; }
    50% { transform: translate(-25px, -15px) rotate(45deg); opacity: 1; }
}

/* --- Subtle Grid Overlay --- */
.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* ===== CARD CONTAINER ===== */
.linktree-card {
    position: relative;
    z-index: 1;
    background: rgba(12, 17, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 40px 30px;
    animation: fadeInUp 0.7s ease-out;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== PROFILE SECTION ===== */
.profile-img-wrapper {
    width: 115px;
    height: 115px;
    position: relative;
}

.profile-img-wrapper::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6, #10b981, #f59e0b);
    background-size: 400% 400%;
    animation: gradient-spin 4s ease infinite;
    z-index: -1;
}

@keyframes gradient-spin {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.profile-img-logo {
    width: 115px;
    height: 115px;
    border-radius: 50%;
    object-fit: cover;
    background: #0c1123;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.brand-name {
    font-size: 1.9rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.brand-tagline {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

/* ===== SOCIAL ICONS ===== */
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ===== SECTION LABELS ===== */
.section-label {
    margin-bottom: 14px;
    text-align: left;
}

.section-label span {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-label i {
    font-size: 0.68rem;
}

/* ===== PROMO BANNER ===== */
.promo-banner {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(251, 191, 36, 0.08));
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: promo-pulse 3s ease-in-out infinite;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
    animation: promo-shimmer 5s ease-in-out infinite;
}

@keyframes promo-shimmer {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20%, 20%); }
}

@keyframes promo-pulse {
    0%, 100% { box-shadow: 0 2px 15px rgba(245, 158, 11, 0.05); }
    50% { box-shadow: 0 4px 30px rgba(245, 158, 11, 0.15); }
}

.promo-badge {
    display: inline-block;
    font-size: 0.58rem;
    font-weight: 700;
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.2);
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.promo-title {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
    position: relative;
}

.promo-text {
    font-size: 0.82rem;
    color: rgba(251, 191, 36, 0.7);
    margin: 0;
    line-height: 1.5;
    position: relative;
}

/* ===== APP DOWNLOAD BUTTONS ===== */
.app-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 16px;
    background: linear-gradient(145deg, #3b82f6, #2563eb);
    border: none;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.app-btn:hover {
    background: linear-gradient(145deg, #2563eb, #1d4ed8);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
    color: #fff;
}

.app-btn:active { transform: translateY(-1px); }

.app-btn i { font-size: 1.6rem; }

.app-btn-text {
    text-align: left;
    line-height: 1.2;
}

.app-btn-text small {
    font-size: 0.52rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    opacity: 0.75;
    display: block;
}

.app-btn-text strong {
    font-size: 0.95rem;
    font-weight: 600;
}

/* ===== WEBSITE BUTTON (3rd option alongside app stores) ===== */
.app-btn.app-btn-web {
    background: linear-gradient(145deg, #8b5cf6, #6d28d9);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.35);
}
.app-btn.app-btn-web:hover {
    background: linear-gradient(145deg, #7c3aed, #5b21b6);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.45);
}
.app-btn-glow.app-btn-web:hover {
    box-shadow: 0 10px 35px rgba(139, 92, 246, 0.5);
}

/* Make the 3-button row responsive.
   > 420px: three equal columns. <= 420px: app stores row, website full-width row. */
.app-download-row {
    row-gap: 10px !important;
}
.app-download-row .app-btn {
    min-width: 30%;
    flex: 1 1 calc(33.333% - 8px);
}
@media (max-width: 420px) {
    .app-download-row .app-btn {
        flex: 1 1 calc(50% - 8px);
    }
    .app-download-row .app-btn.app-btn-web {
        flex: 1 1 100%;
    }
}

/* ===== DOWNLOAD NOTE ===== */
.download-note {
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0;
}

.download-note i { font-size: 0.68rem; }

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px 12px;
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.1rem;
    color: #60a5fa;
}

/* Highlight feature */
.highlight-feature {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.05));
    border-color: rgba(245, 158, 11, 0.2);
    padding: 22px 16px;
    position: relative;
    overflow: hidden;
}

.highlight-feature::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.highlight-feature .feature-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(251, 191, 36, 0.1));
    color: #fbbf24;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

.highlight-feature strong { font-size: 0.88rem !important; color: #fbbf24 !important; }
.highlight-feature p { font-size: 0.76rem !important; color: rgba(251, 191, 36, 0.6) !important; }

.feature-item strong {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    line-height: 1.3;
}

/* ===== SIGN UP SECTION ===== */
.signup-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.signup-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ec4899, #8b5cf6, #3b82f6, transparent);
}

.signup-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.88rem;
    font-weight: 600;
}

.signup-header i {
    font-size: 1.1rem;
    color: #60a5fa;
}

.signup-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
    margin-bottom: 18px;
}

.signup-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.signup-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.signup-btn:hover::before { left: 100%; }

.signup-btn i {
    font-size: 1.1rem;
    color: #fff;
}

.signup-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.45);
    color: #fff;
}

.ios-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ios-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.ios-link i { font-size: 0.85rem; }

/* ===== LINK BUTTONS ===== */
.link-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
    transition: left 0.5s ease;
}

.link-btn:hover::before { left: 100%; }

.link-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.link-btn:active { transform: translateY(0); }

.link-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.whatsapp-bg  { background: linear-gradient(135deg, #25D366, #128C7E); }
.instagram-bg { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.facebook-bg  { background: linear-gradient(135deg, #1877F2, #0d5bbd); }
.tiktok-bg    { background: #1a1a2e; }
.twitter-bg   { background: #1a1a2e; }
.email-bg     { background: linear-gradient(135deg, #EA4335, #c5221f); }
.store-bg     { background: linear-gradient(135deg, #3b82f6, #6366f1); }
.website-bg   { background: linear-gradient(135deg, #3b82f6, #6366f1); }

.website-btn {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.15);
}

.website-btn:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.link-text {
    flex: 1;
    font-size: 0.92rem;
    font-weight: 500;
    text-align: left;
    color: rgba(255, 255, 255, 0.85);
}

.link-arrow {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.link-btn:hover .link-arrow {
    color: rgba(255, 255, 255, 0.6);
    transform: translateX(5px);
}

/* ===== BOTTOM CTA ===== */
.bottom-cta-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 14px;
}

.app-btn-glow {
    animation: btn-glow 2.5s ease-in-out infinite;
}

@keyframes btn-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25); }
    50% { box-shadow: 0 6px 30px rgba(59, 130, 246, 0.45); }
}

.app-btn-glow:hover {
    animation: none;
    box-shadow: 0 10px 35px rgba(59, 130, 246, 0.45);
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 8px;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 16px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.review-avatar {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.review-meta { flex: 1; }

.review-name {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.83rem;
    display: block;
    line-height: 1.2;
    font-weight: 600;
}

.review-date {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 1px;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars i {
    color: #fbbf24;
    font-size: 0.65rem;
    filter: drop-shadow(0 0 3px rgba(251, 191, 36, 0.4));
}

.review-badge {
    font-size: 0.58rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.review-text {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

/* ===== TRUST BADGES ===== */
.trust-badge { padding-top: 8px; }

.badge-item {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.04);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    white-space: nowrap;
}

.badge-item i { font-size: 0.6rem; }

/* ===== FOOTER ===== */
.footer-text {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 0;
}

/* ==============================================
   STAGGER ANIMATIONS
   ============================================== */
.profile-section { animation: fadeInUp 0.5s ease-out both; }
.promo-banner { animation: fadeInUp 0.5s 0.1s ease-out both, promo-pulse 3s ease-in-out infinite; }
.app-download-row { animation: fadeInUp 0.5s 0.2s ease-out both; }
.features-grid { animation: fadeInUp 0.5s 0.3s ease-out both; }
.signup-section { animation: fadeInUp 0.5s 0.35s ease-out both; }
.reviews-section { animation: fadeInUp 0.5s 0.4s ease-out both; }
.bottom-cta { animation: fadeInUp 0.5s 0.45s ease-out both; }
.links-section { animation: fadeInUp 0.5s 0.5s ease-out both; }

/* ==============================================
   RESPONSIVE — MOBILE FIRST
   ============================================== */

/* Reduce background complexity on mobile for performance */
@media (max-width: 480px) {
    .blob { filter: blur(60px); }
    .blob-3, .blob-4 { display: none; }
    .shape-4, .shape-6 { display: none; }
    .bg-grid { background-size: 40px 40px; }
}

@media (max-width: 480px) {
    .container { padding-left: 10px; padding-right: 10px; }
    .row { margin: 0; }
    .col-12 { padding-left: 6px; padding-right: 6px; }

    .linktree-card {
        padding: 24px 16px;
        border-radius: 22px;
        border: none;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    }

    .profile-img-wrapper { width: 92px; height: 92px; }
    .profile-img-logo { width: 92px; height: 92px; }
    .brand-name { font-size: 1.5rem; }
    .brand-tagline { font-size: 0.76rem; padding: 0 6px; }
    .social-icon { width: 36px; height: 36px; font-size: 0.9rem; }

    .promo-banner { padding: 22px 16px; border-radius: 16px; }
    .promo-title { font-size: 1.2rem; }
    .promo-text { font-size: 0.76rem; }

    .section-label { margin-bottom: 12px; }
    .section-label span { font-size: 0.68rem; }

    .app-download-row { flex-direction: column !important; gap: 10px !important; }
    .app-btn { padding: 13px 16px; border-radius: 12px; }
    .app-btn i { font-size: 1.4rem; }
    .app-btn-text strong { font-size: 0.88rem; }
    .download-note { font-size: 0.68rem; }

    .features-grid { gap: 8px; }
    .feature-item { padding: 14px 10px; border-radius: 12px; }
    .feature-icon { width: 40px; height: 40px; font-size: 0.95rem; margin-bottom: 8px; }
    .feature-item strong { font-size: 0.72rem; }
    .feature-item p { font-size: 0.64rem; }
    .highlight-feature { padding: 18px 14px; }
    .highlight-feature .feature-icon { width: 44px; height: 44px; }

    .signup-card { padding: 22px 16px; border-radius: 16px; }
    .signup-header { font-size: 0.82rem; }
    .signup-text { font-size: 0.74rem; }
    .signup-btn { padding: 13px 22px; font-size: 0.82rem; gap: 8px; width: 100%; justify-content: center; }
    .ios-link { font-size: 0.73rem; }

    .links-section { gap: 10px !important; }
    .link-btn { padding: 12px 14px; gap: 10px; border-radius: 12px; }
    .link-icon { width: 38px; height: 38px; min-width: 38px; border-radius: 10px; font-size: 1rem; }
    .link-text { font-size: 0.84rem; }

    .reviews-section { gap: 8px; }
    .review-card { padding: 14px 12px; border-radius: 12px; }
    .review-avatar { width: 34px; height: 34px; min-width: 34px; font-size: 0.75rem; }
    .review-name { font-size: 0.78rem; }
    .review-date { font-size: 0.6rem; }
    .review-stars i { font-size: 0.58rem; }
    .review-badge { font-size: 0.52rem; padding: 2px 7px; }
    .review-text { font-size: 0.74rem; }

    .bottom-cta-text { font-size: 0.76rem; }
    .badge-item { font-size: 0.62rem; padding: 4px 10px; }
    .footer-text { font-size: 0.65rem; }
}

@media (max-width: 360px) {
    .linktree-card { padding: 20px 12px; }
    .profile-img-wrapper, .profile-img-logo { width: 78px; height: 78px; }
    .brand-name { font-size: 1.3rem; }
    .brand-tagline { font-size: 0.7rem; }
    .promo-title { font-size: 1.05rem; }
    .features-grid { grid-template-columns: 1fr; gap: 8px; }
    .signup-btn { padding: 12px 18px; font-size: 0.78rem; }
    .review-header { gap: 8px; }
}

@media (min-width: 481px) and (max-width: 576px) {
    .linktree-card { padding: 30px 22px; }
    .app-download-row { flex-direction: row !important; }
}

@media (min-width: 577px) and (max-width: 768px) {
    .linktree-card { padding: 38px 32px; }
}

@media (min-width: 992px) {
    .linktree-card { padding: 45px 40px; }
    .link-btn { padding: 16px 22px; }
}

@media (max-height: 500px) and (orientation: landscape) {
    .row { align-items: flex-start !important; }
    .linktree-card { padding: 16px 18px; }
    .profile-section { margin-bottom: 10px !important; }
    .profile-img-wrapper, .profile-img-logo { width: 56px; height: 56px; }
    .brand-name { font-size: 1.15rem; }
    .brand-tagline { font-size: 0.68rem; }
    .promo-banner { padding: 14px 16px; }
    .promo-title { font-size: 1rem; }
    .features-grid { gap: 6px; }
    .feature-item { padding: 10px 8px; }
    .links-section { gap: 6px !important; }
    .link-btn { padding: 8px 12px; }
    .reviews-section { gap: 6px; }
    .review-card { padding: 10px; }
    .signup-card { padding: 14px; }
    .app-download-row { flex-direction: row !important; }
}

@media (hover: none) and (pointer: coarse) {
    .link-btn { min-height: 52px; }
    .app-btn { min-height: 52px; }
    .social-icon { width: 42px; height: 42px; }
    .signup-btn { min-height: 48px; }
}
