/* ========================================
   Jaipur Girls — Complete Stylesheet
   Mobile-first · Exact spec colors
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* --- 1. CSS Variables --- */
:root {
    --bg-primary: #fdf2f8;
    --bg-secondary: #fce7f3;
    --card-bg: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --accent-rose: #f43f5e;
    --accent-purple: #a78bfa;
    --accent-lavender: #ede9fe;
    --online-green: #22c55e;
    --whatsapp-green: #25d366;
    --dark-btn: #1a1a1a;
    --dark-btn-hover: #374151;
    --border-light: rgba(0, 0, 0, 0.06);
    --border-medium: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.12);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 2. Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.5;
    min-height: 100vh;
    padding-bottom: 100px;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { text-decoration: none; color: inherit; }

/* --- 3. Container --- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .container { padding: 0 24px; } }

/* --- 4. Header --- */
.header {
    position: sticky;
    top: 12px;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 16px;
    margin: 14px auto 0;
max-width: 1320px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: var(--transition);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark-btn);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}
.header-avatar:hover { transform: scale(1.08); opacity: 0.85; }
.header-avatar svg { width: 20px; height: 20px; }
.header-actions { display: flex; gap: 6px; align-items: center; }
.header-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    color: var(--text-primary);
    position: relative;
}
.header-btn:hover { background: rgba(0, 0, 0, 0.05); }
.header-btn:active { transform: scale(0.9); }





/* --- 5. Hero Section --- */
.hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
    padding: 24px 0 32px;
    position: relative;
}
@media (min-width: 768px) {
    .hero {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        padding: 40px 0 48px;
    }
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-rose);
    margin-bottom: 20px;
}
.hero-badge .heart-icon { font-size: 14px; }
.hero-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 14px;
}
@media (min-width: 768px) { .hero-title { font-size: 44px; } }
@media (min-width: 1024px) { .hero-title { font-size: 48px; } }
.hero-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 380px;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 16px; } }
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-btn);
    color: white;
    padding: 13px 26px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(26, 26, 26, 0.25);
}
.hero-btn:hover {
    background: var(--dark-btn-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(26, 26, 26, 0.35);
}
.hero-btn svg { transition: transform 0.3s ease; }
.hero-btn:hover svg { transform: translateX(3px); }

/* Hero Image Side */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-right: 24px;
    padding-bottom: 24px;
}
@media (max-width: 767px) { .hero-image-wrapper { order: -1; } }
.hero-image-card {
    background: linear-gradient(160deg, #ede9fe 0%, #fce7f3 100%);
    border-radius: 28px;
    padding: 20px 14px 14px;
    width: 100%;
    max-width: 320px;
    position: relative;
    overflow: visible;
}
@media (min-width: 768px) { .hero-image-card { max-width: 380px; padding: 0 18px 18px; } }
.hero-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 20px;
    margin-top: 0;
    position: relative;
    z-index: 2;
}
@media (min-width: 768px) { .hero-image { margin-top: -28px; } }
.hero-floating-heart {
   position: absolute;
    top: -10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: rgba(167, 139, 250, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple);
    font-size: 16px;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}
@media (min-width: 768px) { .hero-floating-heart { top: 4px; right: 28px; } }
.hero-stats-card {
    position: absolute;
    bottom: 0px;
    right: -12px;
    background: white;
    padding: 16px;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    z-index: 4;
    min-width: 175px;
}
@media (min-width: 768px) { .hero-stats-card { bottom: 28px; right: -16px; min-width: 200px; padding: 20px; } }
.hero-stats-card h3 { font-size: 22px; font-weight: 800; color: var(--text-primary); margin-bottom: 2px; }
@media (min-width: 768px) { .hero-stats-card h3 { font-size: 26px; } }
.hero-stats-card p { font-size: 12px; color: var(--text-secondary); margin-bottom: 12px; }
.avatars-row { display: flex; align-items: center; }
.avatars-row img {
    width: 28px; height: 28px; border-radius: 50%;
    border: 2.5px solid white; margin-left: -8px; object-fit: cover;
}
.avatars-row img:first-child { margin-left: 0; }
@media (min-width: 768px) { .avatars-row img { width: 32px; height: 32px; } }
.plus-badge {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--accent-purple); color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700;
    border: 2.5px solid white; margin-left: -8px;
}
@media (min-width: 768px) { .plus-badge { width: 32px; height: 32px; font-size: 12px; } }
.hero-dots {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 12px; z-index: 1; pointer-events: none;
}
.hero-dots span { width: 5px; height: 5px; background: rgba(167, 139, 250, 0.18); border-radius: 50%; }

/* --- 6. Filter Tabs --- */
.filter-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 0 0 32px;
    flex-wrap: wrap;
}
.tab {
    padding: 9px 20px;
    border-radius: 50px;
    border: 1.5px solid var(--border-medium);
    background: white;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.tab:active { transform: scale(0.93); }
@keyframes ripple { to { transform: scale(3); opacity: 0; } }


.tab:hover { border-color: var(--text-primary); color: var(--text-primary); transform: translateY(-1px); }
.tab.active {
    background: var(--dark-btn); color: white;
    border-color: var(--dark-btn);
    box-shadow: 0 4px 15px rgba(26, 26, 26, 0.25);
}
.tab .online-indicator {
    width: 7px; height: 7px;
    background: var(--online-green);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}
@media (max-width: 767px) {
    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0 -16px 28px;
        padding: 0 16px;
    }
    .filter-tabs::-webkit-scrollbar { display: none; }
    .tab { padding: 8px 16px; font-size: 12px; }
}

/* --- 7. Profile Grid --- */
.profile-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 36px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
@media (min-width: 420px) { .profile-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (min-width: 768px) { .profile-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 1024px) { .profile-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

/* --- 8. Profile Card --- */
.profile-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
    border: 1px solid var(--border-light);
}
.profile-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.profile-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f3f4f6;
}
@media (min-width: 768px) { .profile-img-container { aspect-ratio: 1 / 1.05; } }
.profile-img-container img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.profile-card:hover .profile-img-container img { transform: scale(1.06); }
.online-dot {
    position: absolute; top: 10px; left: 10px;
    width: 12px; height: 12px;
    background: var(--online-green);
    border-radius: 50%;
    border: 2.5px solid white;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
    z-index: 2;
}
.distance-badge {
    position: absolute; top: 10px; right: 10px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    padding: 5px 11px;
    border-radius: var(--radius-full);
    font-size: 11px; font-weight: 700;
    color: var(--text-primary);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.01em;
}
.profile-info {
    padding: 14px 14px 16px;
}
@media (min-width: 768px) { .profile-info { padding: 14px 16px 18px; } }
.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}
.profile-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
}
@media (min-width: 768px) { .profile-name { font-size: 16px; } }
.heart-btn {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--border-medium);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 15px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: white; flex-shrink: 0;
}
.heart-btn:hover {
    border-color: var(--accent-rose);
    color: var(--accent-rose);
    background: rgba(244, 63, 94, 0.05);
    transform: scale(1.12);
}
.heart-btn:active { transform: scale(0.9); }
.heart-btn.liked {
    background: var(--accent-rose);
    border-color: var(--accent-rose);
    color: white;
    box-shadow: 0 2px 12px rgba(244, 63, 94, 0.35);
}
.location {
    display: flex; align-items: center; gap: 5px;
    font-size: 12px; color: var(--text-muted);
    margin-bottom: 8px; font-weight: 500;
}
.location svg { width: 13px; height: 13px; color: var(--text-muted); flex-shrink: 0; }
.bio {
    font-size: 13px; color: var(--text-secondary);
    line-height: 1.55;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}

/* Mobile card: horizontal layout for single-column */
/* Make sure 2 columns on phones */
@media (max-width: 639px) {
    .profile-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .profile-card {
        display: block;  /* normal vertical card */
    }
    .profile-img-container {
        aspect-ratio: 3 / 4;
    }
    .profile-info {
        padding: 10px 8px 12px;
    }
    .profile-name {
        font-size: 13px;
    }
    .location {
        font-size: 10px;
        margin-bottom: 4px;
    }
    .bio {
        font-size: 11px;
        -webkit-line-clamp: 2;
    }
    .heart-btn {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
}


/* Modal styles */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.modal-content {
    background: white;
    padding: 24px 20px 28px;
    border-radius: 28px;
    width: 85%;
    max-width: 320px;
    text-align: center;
    animation: modalFadeIn 0.25s ease;
}
@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.close-modal {
    float: right;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    color: #aaa;
    margin-top: -12px;
}
.close-modal:hover { color: black; }
.modal-content h3 {
    margin: 8px 0 20px;
    font-size: 20px;
}
.modal-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 12px;
}
.modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}
.whatsapp-btn {
    background: #25d366;
    color: white;
}
.call-btn {
    background: #1a1a1a;
    color: white;
}
.modal-btn:active { transform: scale(0.96); }

/* --- 9. Load More --- */
.load-more { display: flex; justify-content: center; margin: 40px 0 50px; }
.load-more-btn {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 32px;
    border: 1.5px solid var(--border-medium);
    background: white;
    border-radius: 50px;
    font-weight: 600; font-size: 14px;
    color: var(--text-primary);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.load-more-btn:hover { border-color: var(--text-primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.load-more-btn:active { transform: scale(0.97); }
.load-more-btn svg { transition: transform 0.3s ease; }
.load-more-btn:hover svg { transform: rotate(180deg); }

/* --- 10. Bottom Navigation --- */
.bottom-nav {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 500px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 12px 8px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
    z-index: 100;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), bottom 0.4s ease;
    will-change: transform;
}
.bottom-nav { transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.nav-item {
    display: flex; flex-direction: column; align-items: center;
    gap: 4px; color: var(--text-muted);
    font-size: 10px; font-weight: 500;
    transition: var(--transition);
    padding: 6px 14px;
    border-radius: 16px;
    flex: 1;
}
.nav-item:hover { color: var(--text-primary); background: rgba(0,0,0,0.03); }
.nav-item.active { color: var(--text-primary); font-weight: 700; }


.nav-icon {
    width: 22px; height: 22px;
    display: flex; align-items: center; justify-content: center;
}
.nav-item.whatsapp {
    padding: 0;
    flex: 0 0 56px;
}
.nav-item.whatsapp .nav-icon {
    width: 52px; height: 52px;
    background: var(--whatsapp-green);
    border-radius: 50%; color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    animation: whatsappPulse 2.5s ease-in-out infinite;
    transition: var(--transition);
    margin-bottom: 4px;
}
.nav-item.whatsapp .nav-icon:hover { animation: none; box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6); transform: scale(1.1); }
.nav-item.whatsapp span { color: var(--whatsapp-green); font-weight: 700; font-size: 10px; }

/* --- 11. Toast --- */
.toast {
    position: fixed; bottom: 100px; left: 50%;
    transform: translateX(-50%) translateY(16px);
    background: var(--dark-btn); color: white;
    padding: 11px 22px; border-radius: 50px;
    font-size: 13px; font-weight: 600; font-family: 'Inter', sans-serif;
    z-index: 200; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    opacity: 0; transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 17px;
    color: var(--text-primary);
    text-decoration: none;
}

/* --- 12. Animations --- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.08); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}
.profile-card { animation: fadeInUp 0.45s ease backwards; }
.profile-card:nth-child(1) { animation-delay: 0.03s; }
.profile-card:nth-child(2) { animation-delay: 0.06s; }
.profile-card:nth-child(3) { animation-delay: 0.09s; }
.profile-card:nth-child(4) { animation-delay: 0.12s; }
.profile-card:nth-child(5) { animation-delay: 0.15s; }
.profile-card:nth-child(6) { animation-delay: 0.18s; }
.profile-card:nth-child(7) { animation-delay: 0.21s; }
.profile-card:nth-child(8) { animation-delay: 0.24s; }
.heart-particle {
    position: fixed; font-size: 15px; color: var(--accent-rose);
    pointer-events: none; z-index: 999;
    transition: all 0.7s ease-out; opacity: 1;
}

/* --- 13. Responsive Fine-tuning --- */
@media (max-width: 360px) {
    .hero-title { font-size: 26px; }
    .hero-image-card { max-width: 260px; }
    .profile-name { font-size: 14px; }
    .bio { font-size: 12px; }
}
@media (min-width: 1440px) {
    .container { max-width: 1360px; }
    .profile-grid { gap: 28px; }
}
@media (min-width: 768px) {
    body { padding-bottom: 90px; }
}
@media (max-width: 767px) {
    body { padding-bottom: 110px; }
}





/* SEO Content & FAQ */
.seo-content {
    max-width: 1200px;
    margin: 60px auto 40px;
    padding: 0 20px;
}
.seo-content h1 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}
.seo-content h2 {
    font-size: 24px;
    margin: 40px 0 20px;
    border-left: 4px solid var(--accent-rose);
    padding-left: 15px;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin: 30px 0;
}
.benefit-card {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}
.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--accent-rose);
}
.faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.faq-item {
    background: white;
    padding: 16px 20px;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}
.faq-item h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    cursor: pointer;
}
.faq-item p {
    color: var(--text-secondary);
    font-size: 14px;
}
@media (min-width: 768px) {
    .faq-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .seo-content h1 {
        font-size: 36px;
    }
}



/* ========== LEGAL SECTION (Privacy + Disclaimer) - IMPROVED ========== */
.legal-section {
    max-width: 1280px;
    margin: 70px auto 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

/* Individual card styling */
.legal-card {
    background: var(--card-bg);
    border-radius: 28px;
    padding: 32px 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-light);
}

.legal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.12);
}

/* Headings */
.legal-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 12px 0;
    background: linear-gradient(135deg, var(--accent-rose), var(--accent-purple));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
    letter-spacing: -0.3px;
}

/* Optional: add a small icon before h2 (you can use ::before) */
.legal-card h2::before {
    content: "⚖️";
    font-size: 26px;
    background: none;
    -webkit-background-clip: unset;
    color: var(--accent-rose);
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

/* Different icons per card – you can override manually in HTML, but this is a neat trick */
.legal-card:first-child h2::before { content: "🤖"; }   /* AI images */
.legal-card:nth-child(2) h2::before { content: "🔒"; } /* Privacy */
.legal-card:nth-child(3) h2::before { content: "📢"; } /* Disclaimer */

.legal-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 24px 0 12px 0;
    color: var(--text-primary);
    border-left: 3px solid var(--accent-rose);
    padding-left: 14px;
}

.legal-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.legal-card strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* List inside legal cards (if any) */
.legal-card ul, .legal-card ol {
    margin: 12px 0 16px 24px;
    color: var(--text-secondary);
}
.legal-card li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Responsive: tablet and desktop */
@media (min-width: 768px) {
    .legal-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    /* Make the first card (AI disclaimer) span full width on tablet+ ? 
       Optional but can be nice. Uncomment if you want emphasis:
    .legal-card:first-child {
        grid-column: span 2;
    }
    */
}

@media (min-width: 1024px) {
    .legal-section {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    /* Optional: first card full width on desktop too – comment out if you prefer 3 equal columns */
    /* .legal-card:first-child { grid-column: span 3; } */
}

/* Extra small devices (below 480px) */
@media (max-width: 480px) {
    .legal-card {
        padding: 24px 18px;
    }
    .legal-card h2 {
        font-size: 24px;
    }
    .legal-card h2::before {
        font-size: 22px;
        margin-right: 8px;
    }
    .legal-card h3 {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .premium-big-buttons a {
        width: 80%;
        justify-content: center;
    }
}















/* ========== Keyword Targeted Content (4000+ line) ========== */
.keyword-targeted-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: inherit;
    line-height: 1.6;
    color: var(--text-primary);
}

.keyword-targeted-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-rose);
    border-left: 5px solid var(--accent-rose);
    padding-left: 18px;
    margin: 48px 0 20px 0;
}

.keyword-targeted-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 20px 0 10px;
    color: var(--text-primary);
}

.keyword-targeted-content p {
    margin-bottom: 1.2em;
    color: var(--text-secondary);
}

.keyword-targeted-content ul, 
.keyword-targeted-content ol {
    margin: 1.2em 0 1.5em 1.8em;
    color: var(--text-secondary);
}

.keyword-targeted-content li {
    margin-bottom: 8px;
}

/* Top rated box */
.top-rated-box {
    background: var(--bg-secondary);
    padding: 24px;
    border-radius: var(--radius-lg);
    margin: 24px 0;
    border: 1px solid rgba(244, 63, 94, 0.2);
}

.top-rated-box h3 {
    color: var(--accent-rose);
    margin-top: 0;
    font-size: 1.2rem;
}

.top-rated-box p {
    margin-bottom: 0.8em;
}

/* Testimonial box */
.testimonial-box {
    background: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    margin: 24px 0;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.testimonial-box p {
    margin-bottom: 1em;
}

.testimonial-box strong {
    color: var(--text-primary);
}

/* Contact highlight (phone number badge) */
.contact-highlight {
    display: inline-block;
    background: var(--whatsapp-green);
    color: white;
    padding: 4px 12px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* FAQ inside keyword content */
.keyword-targeted-content .faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
}

@media (min-width: 768px) {
    .keyword-targeted-content .faq-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.keyword-targeted-content .faq-item {
    background: var(--card-bg);
    padding: 18px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.keyword-targeted-content .faq-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-rose);
}

.keyword-targeted-content .faq-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .keyword-targeted-content h2 {
        font-size: 1.5rem;
        padding-left: 14px;
    }
    .top-rated-box, .testimonial-box {
        padding: 16px;
    }
    .contact-highlight {
        font-size: 0.8rem;
        padding: 3px 10px;
    }
}

/* --- 14. Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 50px; }
::-webkit-scrollbar-thumb:hover { background: #9ca3af; }