/* ============ GLOBAL RESET & VARIABLES ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #E8513F;
    --primary-dark: #C4402F;
    --primary-light: #FF8A7A;
    --accent: #FF6B5A;
    --dark: #0F0F12;
    --dark-2: #1A1A22;
    --dark-3: #24242F;
    --dark-4: #2E2E3A;
    --light: #FFFFFF;
    --gray: #9CA3AF;
    --gray-light: #D1D5DB;
    --gradient: linear-gradient(135deg, #E8513F 0%, #FF8A7A 50%, #FFB199 100%);
    --gradient-text: linear-gradient(135deg, #E8513F, #FF8A7A, #FFD4C8);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.4);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.5);
    --radius: 12px;
    --radius-lg: 20px;
}
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { font-family: 'Inter', sans-serif; font-weight: 800; line-height: 1.15; }
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 16px; }
.section-header p { color: var(--gray); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.section-tag {
    display: inline-block;
    background: rgba(232,81,63,0.15);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 50px; font-weight: 600;
    font-size: 0.95rem; text-decoration: none; cursor: pointer;
    transition: all 0.3s ease; border: 2px solid transparent;
}
.btn-primary {
    background: var(--gradient); color: white; border-color: transparent;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232,81,63,0.4); }
.btn-outline {
    background: transparent; color: var(--light); border-color: rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-ghost { background: transparent; color: var(--gray-light); }
.btn-ghost:hover { color: white; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* ============ NAVBAR ============ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(15,15,18,0.85); backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 14px 0;
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; color: white; font-size: 1.4rem; font-weight: 800;
}
.logo i { color: var(--primary); font-size: 1.5rem; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
    color: var(--gray); text-decoration: none; font-size: 0.9rem;
    font-weight: 500; transition: color 0.3s;
}
.nav-links a:hover { color: white; }
.nav-actions { display: flex; gap: 12px; align-items: center; }

/* ============ HERO ============ */
.hero {
    padding: 160px 0 100px; position: relative; overflow: hidden;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(232,81,63,0.1); border: 1px solid rgba(232,81,63,0.2);
    padding: 8px 20px; border-radius: 50px; font-size: 0.85rem;
    color: var(--primary-light); margin-bottom: 24px;
}
.hero h1 { font-size: 3.8rem; margin-bottom: 20px; letter-spacing: -1px; }
.hero-subtitle { color: var(--gray); font-size: 1.15rem; line-height: 1.7; margin-bottom: 36px; max-width: 520px; }
.hero-cta { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat-number { display: block; font-size: 1.8rem; font-weight: 800; color: white; }
.stat-label { font-size: 0.85rem; color: var(--gray); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; }
.shape {
    position: absolute; border-radius: 50%; opacity: 0.06;
    background: var(--primary);
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.shape-2 { width: 400px; height: 400px; bottom: -150px; left: -100px; }
.shape-3 { width: 200px; height: 200px; top: 50%; left: 30%; }

/* Phone Mockup */
.phone-mockup {
    width: 280px; margin: 0 auto;
    background: var(--dark-3); border-radius: 36px;
    padding: 12px; border: 2px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow-lg);
}
.phone-notch {
    width: 120px; height: 24px; background: var(--dark);
    border-radius: 0 0 16px 16px; margin: 0 auto 12px;
}
.phone-screen { background: var(--dark-2); border-radius: 24px; padding: 16px; min-height: 360px; }
.app-header {
    text-align: center; padding: 12px; font-weight: 700; font-size: 0.9rem;
    color: var(--primary-light); border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 12px;
}
.search-bar-mock {
    display: flex; align-items: center; gap: 10px;
    background: var(--dark-3); padding: 10px 16px; border-radius: 10px;
    color: var(--gray); font-size: 0.8rem; margin-bottom: 16px;
}
.app-post {
    display: flex; gap: 10px; padding: 12px; background: var(--dark-3);
    border-radius: 10px; margin-bottom: 10px;
}
.post-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--gradient); display: flex; align-items: center;
    justify-content: center; font-weight: 700; font-size: 0.8rem; flex-shrink: 0;
}
.post-name { font-size: 0.75rem; font-weight: 600; color: var(--gray-light); margin-bottom: 4px; }
.post-text { font-size: 0.7rem; color: var(--gray); line-height: 1.5; margin-bottom: 6px; }
.post-meta { display: flex; gap: 12px; font-size: 0.65rem; color: var(--gray); }
.post-meta i { color: var(--primary-light); }

/* ============ PROBLEM SECTION ============ */
.problem-section { padding: 100px 0; background: var(--dark-2); }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.problem-card {
    background: var(--dark-3); padding: 32px; border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05); transition: all 0.3s;
}
.problem-card:hover { border-color: rgba(232,81,63,0.2); transform: translateY(-4px); }
.problem-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: rgba(232,81,63,0.1); display: flex; align-items: center;
    justify-content: center; margin-bottom: 20px;
}
.problem-icon i { color: var(--primary); font-size: 1.3rem; }
.problem-card h3 { font-size: 1.1rem; margin-bottom: 10px; font-weight: 700; }
.problem-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }

/* ============ FEATURES ============ */
.features-section { padding: 100px 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card {
    background: var(--dark-2); padding: 28px; border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05); transition: all 0.3s;
    position: relative; overflow: hidden;
}
.feature-card:hover { border-color: rgba(232,81,63,0.3); transform: translateY(-4px); }
.feature-card.featured { border-color: rgba(232,81,63,0.3); }
.feature-card.featured::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient);
}
.feature-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(232,81,63,0.1); display: flex; align-items: center;
    justify-content: center; margin-bottom: 16px;
}
.feature-icon i { color: var(--primary-light); font-size: 1.2rem; }
.feature-card h3 { font-size: 1rem; margin-bottom: 8px; font-weight: 700; }
.feature-card p { color: var(--gray); font-size: 0.85rem; line-height: 1.6; }
.feature-badge {
    position: absolute; top: 16px; right: 16px;
    background: var(--gradient); color: white; font-size: 0.7rem;
    padding: 4px 10px; border-radius: 50px; font-weight: 600;
}

/* ============ HOW IT WORKS ============ */
.how-section { padding: 100px 0; background: var(--dark-2); }
.steps-grid {
    display: flex; align-items: center; justify-content: center; gap: 24px;
}
.step-card {
    background: var(--dark-3); padding: 40px 32px; border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05); text-align: center;
    flex: 1; max-width: 320px; position: relative;
 transition: all 0.3s ease;
}
.step-number {
    font-size: 4rem; font-weight: 900; color: rgba(232,81,63,0.1);
    position: absolute; top: 16px; right: 24px;
}
.step-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(232,81,63,0.1); display: flex; align-items: center;
    justify-content: center; margin: 0 auto 20px;
}
.step-icon i { color: var(--primary); font-size: 1.5rem; }
.step-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.step-card p { color: var(--gray); font-size: 0.9rem; }
.step-connector { color: var(--primary); font-size: 1.2rem; opacity: 0.3; }

/* ============ SAFETY ============ */
.safety-section { padding: 100px 0; }
.safety-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.safety-text h2 { font-size: 2.2rem; margin: 16px 0 32px; }
.safety-list { list-style: none; }
.safety-list li {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 20px; font-size: 0.95rem; color: var(--gray-light);
}
.safety-list i { color: var(--primary); margin-top: 4px; flex-shrink: 0; }
.shield-graphic {
    width: 300px; height: 300px; margin: 0 auto; position: relative;
    display: flex; align-items: center; justify-content: center;
}
.shield-ring {
    position: absolute; border-radius: 50%;
    border: 2px solid rgba(232,81,63,0.15);
    animation: pulse-ring 3s ease-in-out infinite;
}
.ring-1 { width: 100%; height: 100%; }
.ring-2 { width: 75%; height: 75%; animation-delay: 0.5s; }
.ring-3 { width: 50%; height: 50%; animation-delay: 1s; }
.shield-center i { font-size: 4rem; color: var(--primary); }
@keyframes pulse-ring {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.05); }
}

/* ============ GUIDELINES ============ */
.guidelines-section { padding: 100px 0; background: var(--dark-2); }
.guidelines-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 800px; margin: 0 auto; }
.guideline-card {
    padding: 32px; border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05); transition: all 0.3s ease;
}
.guideline-card.green { background: rgba(34,197,94,0.05); border-color: rgba(34,197,94,0.2); }
.guideline-card.red { background: rgba(239,68,68,0.05); border-color: rgba(239,68,68,0.2); }
.guideline-card h3 { font-size: 1.1rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.guideline-card.green h3 i { color: #22c55e; }
.guideline-card.red h3 i { color: #ef4444; }
.guideline-card ul { list-style: none; }
.guideline-card li {
    padding: 8px 0; font-size: 0.9rem; color: var(--gray-light);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.guideline-card li:last-child { border: none; }

/* ============ PRICING ============ */
.pricing-section { padding: 100px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.pricing-card {
    background: var(--dark-2); padding: 36px; border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05); position: relative; transition: all 0.3s ease;
}
.pricing-card.popular {
    border-color: var(--primary); transform: scale(1.05);
    background: linear-gradient(180deg, rgba(232,81,63,0.08) 0%, var(--dark-2) 100%);
}
.popular-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--gradient); color: white; padding: 6px 20px;
    border-radius: 50px; font-size: 0.8rem; font-weight: 600;
}
.pricing-tier { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.pricing-price { font-size: 3rem; font-weight: 900; margin-bottom: 4px; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--gray); }
.pricing-desc { color: var(--gray); font-size: 0.9rem; margin-bottom: 28px; }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0; font-size: 0.9rem; color: var(--gray-light);
}
.pricing-features i { color: var(--primary); font-size: 0.85rem; }

/* ============ CTA ============ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
}
.cta-content { text-align: center; max-width: 550px; margin: 0 auto; }
.cta-content h2 { font-size: 2.4rem; margin-bottom: 16px; }
.cta-content > p { color: var(--gray); margin-bottom: 36px; }
.cta-form { display: flex; flex-direction: column; gap: 14px; margin-bottom: 16px; }
.input-group {
    display: flex; align-items: center; gap: 12px;
    background: var(--dark-3); padding: 14px 20px; border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
}
.input-group i { color: var(--gray); }
.input-group input, .input-group select {
    background: none; border: none; color: white; font-size: 1rem;
    width: 100%; outline: none; font-family: inherit;
}
.input-group select option { background: var(--dark-3); }
.cta-disclaimer { font-size: 0.8rem; color: var(--gray); }

/* ============ FOOTER ============ */
.footer { padding: 60px 0 30px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: var(--gray); font-size: 0.9rem; margin: 12px 0 20px; max-width: 280px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--dark-3); display: flex; align-items: center;
    justify-content: center; color: var(--gray); text-decoration: none;
    transition: all 0.3s;
}
.social-links a:hover { background: var(--primary); color: white; }
.footer-links h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; }
.footer-links a {
    display: block; color: var(--gray); text-decoration: none;
    font-size: 0.85rem; padding: 4px 0; transition: color 0.3s;
}
.footer-links a:hover { color: var(--primary-light); }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom p { color: var(--gray); font-size: 0.85rem; }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero h1 { font-size: 2.5rem; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-visual { display: none; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { flex-direction: column; }
  .step-connector { transform: rotate(90deg); }
  .safety-content { grid-template-columns: 1fr; }
  .guidelines-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .section-header h2 { font-size: 2rem; }
}

/* ============= SAFETY TOOLS ============= */
.safety-tools {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 50%, var(--dark-2) 100%);
    position: relative;
    overflow: hidden;
}
.safety-tools::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(232,81,63,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
    align-items: start;
}
.tool-card {
    background: var(--dark-3);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}
.tool-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(232,81,63,0.12);
    border-color: rgba(232,81,63,0.2);
}
.tool-card-header {
    padding: 32px 32px 0;
}
.tool-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.tool-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(232,81,63,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.tool-card:hover .tool-icon {
    background: rgba(232,81,63,0.25);
    transform: scale(1.1);
}
.tool-badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(232,81,63,0.15);
    color: var(--primary);
    border: 1px solid rgba(232,81,63,0.25);
}
.tool-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 8px;
}
.tool-description {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.tool-card-body {
    padding: 0 32px 24px;
    flex: 1;
}
.tool-search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-4);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}
.tool-search-bar:hover {
    border-color: rgba(232,81,63,0.3);
}
.tool-search-bar i:first-child {
    color: var(--gray);
    font-size: 0.9rem;
}
.tool-search-bar input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--gray);
    font-size: 0.9rem;
    font-family: inherit;
}
.tool-search-bar input::placeholder {
    color: rgba(255,255,255,0.25);
}
.tool-search-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--primary);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.tool-search-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Map Preview */
.tool-map-preview {
    margin-bottom: 20px;
}
.map-placeholder {
    height: 200px;
    border-radius: 12px;
    background: var(--dark-4);
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}
.map-grid {
    position: absolute;
    inset: 0;
}
.map-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.6;
    animation: pulse 2s ease-in-out infinite;
}
.map-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}
.map-dot-1 { top: 30%; left: 25%; animation-delay: 0s; }
.map-dot-2 { top: 55%; left: 60%; animation-delay: 0.5s; }
.map-dot-3 { top: 25%; left: 70%; animation-delay: 1s; }
.map-dot-4 { top: 65%; left: 35%; animation-delay: 1.5s; }
.map-pin {
    position: absolute;
    top: 45%;
    left: 48%;
    transform: translate(-50%, -50%);
    font-size: 1.6rem;
    color: var(--accent);
    filter: drop-shadow(0 2px 8px rgba(255,139,122,0.5));
    animation: float 3s ease-in-out infinite;
}
.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,15,18,0.7);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.85rem;
}
.map-overlay i {
    font-size: 1.4rem;
    color: var(--primary);
}

/* Scan Results Preview */
.scan-results-preview {
    position: relative;
    margin-bottom: 20px;
}
.scan-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 10px;
    background: var(--dark-4);
    border: 1px solid rgba(255,255,255,0.04);
    margin-bottom: 8px;
    transition: all 0.3s ease;
}
.scan-item:last-of-type {
    margin-bottom: 0;
}
.scan-item:hover {
    border-color: rgba(232,81,63,0.15);
    background: rgba(232,81,63,0.04);
}
.scan-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.scan-icon-court {
    background: rgba(232,81,63,0.12);
    color: var(--primary);
}
.scan-icon-mugshot {
    background: rgba(255,139,122,0.12);
    color: var(--accent);
}
.scan-icon-warrant {
    background: rgba(255,186,122,0.12);
    color: #ffba7a;
}
.scan-icon-dv {
    background: rgba(255,107,107,0.12);
    color: #ff6b6b;
}
.scan-info {
    flex: 1;
}
.scan-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--light);
    margin-bottom: 2px;
}
.scan-info span {
    font-size: 0.78rem;
    color: var(--gray);
}
.scan-status {
    color: rgba(232,81,63,0.5);
    font-size: 1rem;
}
.scan-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,15,18,0.65);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.85rem;
    border-radius: 10px;
}
.scan-overlay i {
    font-size: 1.4rem;
    color: var(--primary);
}

/* Tool Stats Row */
.tool-stats-row {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.tool-stat {
    flex: 1;
    text-align: center;
}
.tool-stat strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2px;
}
.tool-stat span {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tool Source */
.tool-source {
    padding: 14px 32px;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.04);
    font-size: 0.78rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px;
}
.tool-source i {
    color: var(--primary);
    opacity: 0.7;
}

/* Disclaimer */
.tools-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 24px;
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
}
.tools-disclaimer i {
    color: var(--gray);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.tools-disclaimer p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .tools-grid { grid-template-columns: 1fr; }
}


/* ============= ANIMATIONS ============= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Smooth fade-in for sections */
.section-header,
.problem-card,
.feature-card,
.step-card,
.safety-item,
.pricing-card,
.guideline-card {
  animation: fadeInUp 0.6s ease-out both;
}

/* Floating animation for hero visual */
.phone-mockup {
  animation: float 6s ease-in-out infinite;
}

/* Pulse on hero background shapes */
.hero .shape {
  animation: pulse 4s ease-in-out infinite;
}
.hero .shape-2 { animation-delay: 1s; }
.hero .shape-3 { animation-delay: 2s; }

/* ============= ENHANCED HOVER EFFECTS ============= */

/* Navbar link underline effect */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}

/* Card lift & glow on hover */
.problem-card:hover,
.feature-card:hover,
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(232, 81, 63, 0.15);
  border-color: rgba(232, 81, 63, 0.3);
}

/* Feature card icon pop */
.feature-card:hover .feature-icon {
  transform: scale(1.1);
  background: rgba(232, 81, 63, 0.2);
}
.feature-icon {
  transition: transform 0.3s ease, background 0.3s ease;
}

/* Pricing card hover */
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.pricing-card.popular:hover {
  transform: translateY(-8px) scale(1.02);
}

/* Button shine effect */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::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;
}
.btn-primary:hover::before {
  left: 100%;
}

/* Guideline card hover */
.guideline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Footer link hover */
.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}
.footer-links a {
  transition: color 0.3s ease, padding-left 0.3s ease;
}

/* Social icon hover */
.social-icon:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}
.social-icon {
  transition: all 0.3s ease;
}

/* Safety item hover */
.safety-item:hover {
  background: rgba(232, 81, 63, 0.05);
  border-radius: 12px;
  padding-left: 8px;
}
.safety-item {
  transition: all 0.3s ease;
}

/* ============= VISUAL POLISH ============= */

/* Smooth scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: var(--dark-3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Selection color */
::selection {
  background: rgba(232, 81, 63, 0.3);
  color: white;
}

/* Hero badge shimmer */
.hero-badge {
  background: linear-gradient(90deg, rgba(232,81,63,0.12), rgba(232,81,63,0.22), rgba(232,81,63,0.12));
  background-size: 200% auto;
  animation: shimmer 4s ease-in-out infinite;
  border: 1px solid rgba(232,81,63,0.2);
}

/* Stats number gradient */
.stat-number {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Step number subtle glow */
.step-number {
  text-shadow: 0 0 40px rgba(232, 81, 63, 0.3);
}

/* CTA section subtle gradient border */
.cta-section .cta-form {
  position: relative;
}

/* Shield visual pulse */
.shield-visual .shield-icon {
  filter: drop-shadow(0 0 20px rgba(232, 81, 63, 0.4));
}

/* ============= RESPONSIVE - SMALL SCREENS ============= */

/* CTA button enhanced gradient */
.cta-section .btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--primary) 100%);
  background-size: 200% auto;
  font-size: 1.05rem;
  padding: 18px 0;
}
.cta-section .btn-primary:hover {
  background-position: right center;
}

/* Guideline list items — subtle spacing */
.guideline-card li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.92rem;
}
.guideline-card li:last-child {
  border-bottom: none;
}

/* Tighter section padding on larger screens */
@media (min-width: 1200px) {
  .hero .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* Navbar glassmorphism enhancement */
.navbar {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 1.6rem; }
  .navbar { padding: 12px 0; }
}

/* ============== SCROLL REVEAL ============== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============== LIGHT MODE ============== */
body.light-mode {
  --dark: #F5F5F7;
  --dark-2: #E8E8ED;
  --dark-3: #D1D1D6;
  --dark-4: #C7C7CC;
  --light: #1A1A2E;
  --gray: #6B7280;
}
body.light-mode .navbar { background: rgba(245,245,247,0.85); }
body.light-mode .problem-card,
body.light-mode .feature-card,
body.light-mode .step-card,
body.light-mode .guideline-card,
body.light-mode .pricing-card,
body.light-mode .testimonial-card,
body.light-mode .blog-card,
body.light-mode .faq-item,
body.light-mode .alerts-feed-card,
body.light-mode .crime-pattern-card { background: #FFFFFF; border-color: #E5E7EB; }
body.light-mode .section-tag { background: rgba(232,81,63,0.1); }
body.light-mode .phone-mockup { background: #FFFFFF; border-color: #E5E7EB; }
body.light-mode .phone-screen { background: #F9FAFB; }
body.light-mode .footer { background: #1A1A2E; }
body.light-mode .footer, body.light-mode .footer * { --light: #FFFFFF; --gray: #9CA3AF; }
.theme-toggle {
  background: var(--dark-3);
  border: none;
  color: var(--light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.theme-toggle:hover { background: var(--primary); color: white; }

/* ============== HAMBURGER MENU ============== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--light);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 20px;
    transition: right 0.4s ease;
    z-index: 1000;
    border-left: 1px solid var(--dark-3);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }
  .nav-actions { display: none; }
  .mobile-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  .mobile-overlay.active { opacity: 1; pointer-events: all; }
}

/* ============== PHONE FEED ANIMATION ============== */
.phone-feed {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: phoneFeedScroll 12s ease-in-out infinite;
}
@keyframes phoneFeedScroll {
  0%, 20% { transform: translateY(0); }
  30%, 50% { transform: translateY(-120px); }
  60%, 80% { transform: translateY(-240px); }
  90%, 100% { transform: translateY(0); }
}
.phone-screen { overflow: hidden; }
.typing-cursor {
  animation: blink 0.8s step-end infinite;
  color: var(--primary);
  font-weight: bold;
}
@keyframes blink {
  50% { opacity: 0; }
}

/* ============== PRESS BAR ============== */
.press-bar {
  padding: 40px 0;
  border-top: 1px solid var(--dark-3);
  border-bottom: 1px solid var(--dark-3);
}
.press-label {
  text-align: center;
  color: var(--gray);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 24px;
}
.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.press-logo {
  color: var(--dark-4);
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}
.press-logo:hover { opacity: 0.8; }


/* ============== COMMUNITY ALERTS ============== */
.community-alerts-section { padding: 100px 0; }
.alerts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 48px;
}
.alerts-feed-card, .crime-pattern-card {
  background: var(--dark-2);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--dark-3);
}
.alerts-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--dark-3);
}
.alerts-card-header i { color: var(--primary); font-size: 1.2rem; }
.alerts-card-header h3 { font-size: 1.1rem; flex: 1; }
.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(239,68,68,0.15);
  color: #EF4444;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.live-dot {
  width: 8px; height: 8px;
  background: #EF4444;
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.pattern-badge {
  background: rgba(139,92,246,0.15);
  color: #8B5CF6;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.alert-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 12px;
  border-left: 3px solid;
  transition: transform 0.2s ease;
}
.alert-item:hover { transform: translateX(4px); }
.alert-amber { background: rgba(245,158,11,0.08); border-color: #F59E0B; }
.alert-warning { background: rgba(239,68,68,0.08); border-color: #EF4444; }
.alert-info { background: rgba(59,130,246,0.08); border-color: #3B82F6; }
.alert-resolved { background: rgba(16,185,129,0.08); border-color: #10B981; }

.alert-icon { font-size: 1.1rem; padding-top: 2px; }
.alert-amber .alert-icon { color: #F59E0B; }
.alert-warning .alert-icon { color: #EF4444; }
.alert-info .alert-icon { color: #3B82F6; }
.alert-resolved .alert-icon { color: #10B981; }

.alert-type {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.alert-amber .alert-type { color: #F59E0B; }
.alert-warning .alert-type { color: #EF4444; }
.alert-info .alert-type { color: #3B82F6; }
.alert-resolved .alert-type { color: #10B981; }

.alert-text { font-size: 0.88rem; line-height: 1.5; color: var(--light); margin-bottom: 8px; }
.alert-meta { font-size: 0.75rem; color: var(--gray); display: flex; gap: 16px; }
.alert-location { color: var(--gray); }


/* Crime Pattern Tracker */
.pattern-map-placeholder {
  background: var(--dark-3);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.heatmap-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin-bottom: 12px;
}
.heat-cell {
  height: 40px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.heat-cell.h1 { background: rgba(232,81,63,0.1); }
.heat-cell.h2 { background: rgba(232,81,63,0.25); }
.heat-cell.h3 { background: rgba(232,81,63,0.4); }
.heat-cell.h4 { background: rgba(232,81,63,0.6); }
.heat-cell.h5 { background: rgba(232,81,63,0.85); }
.heatmap-label { font-size: 0.75rem; color: var(--gray); }

.pattern-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.pattern-stat { text-align: center; }
.pattern-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
}
.trend-down { color: #10B981 !important; font-size: 1.2rem !important; }
.pattern-label { font-size: 0.72rem; color: var(--gray); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }

.pattern-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.pattern-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--dark-3);
  border-radius: 8px;
  font-size: 0.85rem;
}
.pattern-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.pattern-dot.high { background: #EF4444; }
.pattern-dot.medium { background: #F59E0B; }
.pattern-dot.low { background: #3B82F6; }
.pattern-dot.info { background: #8B5CF6; }
.pattern-name { flex: 1; }
.pattern-count { color: var(--gray); font-size: 0.78rem; white-space: nowrap; }

.crime-pattern-card { position: relative; }
.alert-lock-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--dark-2));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  gap: 8px;
  color: var(--gray);
  font-size: 0.85rem;
  border-radius: 0 0 16px 16px;
}
.alert-lock-overlay i { color: var(--primary); }

.alerts-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .alerts-grid { grid-template-columns: 1fr; }
  .alerts-actions { flex-direction: column; align-items: center; }
}


/* ============== TESTIMONIALS ============== */
.testimonials-section { padding: 100px 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,81,63,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.testimonial-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--dark-2), rgba(232,81,63,0.08));
}
.testimonial-stars { color: #F59E0B; font-size: 0.85rem; margin-bottom: 16px; display: flex; gap: 2px; }
.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--light);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--light);
}
.testimonial-info { flex: 1; }
.testimonial-name { display: block; font-weight: 600; font-size: 0.9rem; }
.testimonial-city { font-size: 0.78rem; color: var(--gray); }
.testimonial-city i { margin-right: 4px; }
.verified-badge { color: #10B981; font-size: 1.1rem; }

.testimonial-stats-bar {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--dark-3);
}
.tstat { text-align: center; }
.tstat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tstat-label { font-size: 0.82rem; color: var(--gray); }

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-stats-bar { gap: 30px; flex-wrap: wrap; }
}


/* ============== BLOG / RESOURCES ============== */
.blog-section { padding: 100px 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.blog-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232,81,63,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.blog-image {
  height: 160px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.3);
}
.blog-tag {
  display: inline-block;
  margin: 20px 20px 12px;
  padding: 4px 12px;
  background: rgba(232,81,63,0.12);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-title {
  padding: 0 20px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}
.blog-excerpt {
  padding: 0 20px;
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}
.blog-footer {
  padding: 16px 20px;
  margin-top: 16px;
  border-top: 1px solid var(--dark-3);
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--gray);
}
.blog-footer i { margin-right: 4px; }

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
}


/* ============== FAQ SECTION ============== */
.faq-section { padding: 100px 0; }
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item:hover { border-color: rgba(232,81,63,0.3); }
.faq-item.open { border-color: var(--primary); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--light);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  font-family: inherit;
}
.faq-question i {
  color: var(--primary);
  font-size: 0.85rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--gray);
}


/* ============== APP DOWNLOAD TEASER ============== */
.app-download-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(232,81,63,0.05), rgba(139,92,246,0.05));
  border-top: 1px solid var(--dark-3);
  border-bottom: 1px solid var(--dark-3);
}
.app-download-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.app-download-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin: 16px 0;
}
.app-download-text p {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.app-store-badges {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.store-badge:hover { border-color: var(--primary); transform: translateY(-2px); }
.store-badge i { font-size: 1.8rem; color: var(--light); }
.store-badge small { display: block; font-size: 0.65rem; color: var(--gray); }
.store-badge strong { font-size: 1rem; }

.app-notify {
  display: flex;
  gap: 10px;
}
.app-email-input {
  flex: 1;
  padding: 12px 16px;
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: 8px;
  color: var(--light);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s ease;
}
.app-email-input:focus { border-color: var(--primary); }
.app-email-input::placeholder { color: var(--gray); }
.btn-sm { padding: 12px 20px; font-size: 0.85rem; white-space: nowrap; }

/* App Phone Mock */
.app-download-phone { display: flex; justify-content: center; }
.app-phone-mock {
  width: 220px;
  background: var(--dark-2);
  border-radius: 32px;
  padding: 12px;
  border: 2px solid var(--dark-3);
  position: relative;
}
.app-phone-notch {
  width: 80px;
  height: 6px;
  background: var(--dark-3);
  border-radius: 4px;
  margin: 0 auto 12px;
}
.app-phone-screen {
  background: var(--dark);
  border-radius: 20px;
  height: 380px;
  overflow: hidden;
}
.app-splash {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.app-splash-icon {
  font-size: 3rem;
  color: var(--primary);
  animation: float 3s ease-in-out infinite;
}
.app-splash-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}
.app-splash-sub {
  font-size: 0.75rem;
  color: var(--gray);
}
.app-splash-loader {
  width: 40px;
  height: 3px;
  background: var(--dark-3);
  border-radius: 3px;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}
.app-splash-loader::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
  animation: splashLoad 2s ease-in-out infinite;
}
@keyframes splashLoad {
  0% { left: -50%; }
  100% { left: 100%; }
}

@media (max-width: 768px) {
  .app-download-content { grid-template-columns: 1fr; text-align: center; }
  .app-store-badges { justify-content: center; flex-wrap: wrap; }
  .app-notify { flex-direction: column; }
  .app-download-phone { order: -1; }
}


/* ============== FORM VALIDATION ============== */
.form-group { position: relative; }
.form-success, .form-error {
  font-size: 0.78rem;
  margin-top: 6px;
  display: none;
  align-items: center;
  gap: 6px;
}
.form-success { color: #10B981; }
.form-error { color: #EF4444; }
.form-success.show, .form-error.show { display: flex; }
.input-success { border-color: #10B981 !important; }
.input-error { border-color: #EF4444 !important; }

/* ============== ADDITIONAL RESPONSIVE ============== */
@media (max-width: 480px) {
  .press-logos { gap: 24px; }
  .press-logo { font-size: 0.9rem; }
  .alert-item { flex-direction: column; gap: 8px; }
  .pattern-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .testimonial-stats-bar { flex-direction: column; gap: 16px; }
  .blog-card .blog-image { height: 120px; }
}

@media (min-width: 1200px) {
  .testimonials-grid { grid-template-columns: repeat(4, 1fr); }
}


/* ============== NAVBAR SCROLLED STATE ============== */
.navbar.scrolled {
  background: rgba(15,15,18,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
body.light-mode .navbar.scrolled {
  background: rgba(245,245,247,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}


/* ============== FCRA NOTICE ============== */
.fcra-notice {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-left: 3px solid #F59E0B;
  border-radius: 12px;
  padding: 24px 28px;
  margin-top: 20px;
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--gray);
}
.fcra-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #F59E0B;
  font-size: 0.88rem;
}
.fcra-notice p { margin-bottom: 10px; }
.fcra-notice strong { color: var(--light); }
.fcra-notice ul {
  margin: 8px 0 12px 20px;
  list-style: none;
}
.fcra-notice ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 4px;
}
.fcra-notice ul li::before {
  content: '\f00d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #EF4444;
  font-size: 0.7rem;
  top: 3px;
}

/* ============== LEGAL BAR ============== */
.legal-bar {
  padding: 24px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--dark-3);
  border-bottom: 1px solid var(--dark-3);
}
.legal-content {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.legal-icon {
  color: var(--gray);
  font-size: 1.2rem;
  flex-shrink: 0;
  padding-top: 2px;
}
.legal-text p {
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--gray);
}
.legal-text strong { color: var(--light); }
.legal-text a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-text a:hover { color: var(--primary-light); }

body.light-mode .fcra-notice { background: #FFFBEB; border-color: #FDE68A; border-left-color: #F59E0B; }
body.light-mode .fcra-notice strong { color: #1A1A2E; }
body.light-mode .legal-bar { background: #F3F4F6; }
body.light-mode .legal-text strong { color: #1A1A2E; }


/* ============== CITY VOTING SYSTEM ============== */
.city-voting-section { padding: 100px 0; }
.voting-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  margin-top: 48px;
  align-items: start;
}
.voting-submit-card, .voting-leaderboard-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: 16px;
  padding: 32px;
}
.voting-submit-card h3, .voting-leaderboard-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.voting-submit-card h3 i, .voting-leaderboard-card h3 i {
  color: var(--primary);
  margin-right: 8px;
}
.voting-submit-card > p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.vote-input-group {
  display: flex;
  gap: 10px;
}
.vote-city-input {
  flex: 1;
  padding: 14px 18px;
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  border-radius: 10px;
  color: var(--light);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s ease;
}
.vote-city-input:focus { border-color: var(--primary); }
.vote-city-input::placeholder { color: var(--gray); }
.vote-submit-btn { white-space: nowrap; }
.vote-feedback {
  margin-top: 12px;
  font-size: 0.85rem;
  min-height: 24px;
}
.vote-feedback.success { color: #10B981; }
.vote-feedback.error { color: #EF4444; }
.vote-feedback.info { color: #3B82F6; }

.voting-how-it-works {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--dark-3);
}
.voting-how-it-works h4 {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--light);
}
.vote-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vote-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--gray);
}
.vote-step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--primary);
  flex-shrink: 0;
  border: 1px solid var(--dark-4);
}

/* Leaderboard */
.leaderboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--dark-3);
}
.leaderboard-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.leaderboard-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.leaderboard-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: var(--dark-3);
  border-radius: 10px;
  transition: all 0.3s ease;
}
.leaderboard-item:hover {
  background: var(--dark-4);
  transform: translateX(4px);
}
.leaderboard-rank {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--dark-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--gray);
  flex-shrink: 0;
}
.leaderboard-rank.hot {
  background: linear-gradient(135deg, var(--primary), #F59E0B);
  color: white;
}
.leaderboard-info { flex: 1; min-width: 0; }
.leaderboard-city {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.almost-badge {
  font-size: 0.65rem;
  background: rgba(245,158,11,0.15);
  color: #F59E0B;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
  white-space: nowrap;
}
.leaderboard-bar {
  height: 6px;
  background: var(--dark-4);
  border-radius: 3px;
  overflow: hidden;
}
.leaderboard-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
  transition: width 0.6s ease;
}
.leaderboard-votes {
  font-size: 0.78rem;
  color: var(--gray);
  white-space: nowrap;
  min-width: 55px;/* ============ GLOBAL RESET & VARIABLES ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #E8513F;
    --primary-dark: #C4402F;
    --primary-light: #FF8A7A;
    --accent: #FF6B5A;
    --dark: #0F0F12;
    --dark-2: #1A1A22;
    --dark-3: #24242F;
    --dark-4: #2E2E3A;
    --light: #FFFFFF;
    --gray: #9CA3AF;
    --gray-light: #D1D5DB;
    --gradient: linear-gradient(135deg, #E8513F 0%, #FF8A7A 50%, #FFB199 100%);
    --gradient-text: linear-gradient(135deg, #E8513F, #FF8A7A, #FFD4C8);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.4);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.5);
    --radius: 12px;
    --radius-lg: 20px;
}
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { font-family: 'Inter', sans-serif; font-weight: 800; line-height: 1.15; }
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 16px; }
.section-header p { color: var(--gray); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.section-tag {
    display: inline-block;
    background: rgba(232,81,63,0.15);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 50px; font-weight: 600;
    font-size: 0.95rem; text-decoration: none; cursor: pointer;
    transition: all 0.3s ease; border: 2px solid transparent;
}
.btn-primary {
    background: var(--gradient); color: white; border-color: transparent;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232,81,63,0.4); }
.btn-outline {
    background: transparent; color: var(--light); border-color: rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-ghost { background: transparent; color: var(--gray-light); }
.btn-ghost:hover { color: white; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* ============ NAVBAR ============ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(15,15,18,0.85); backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 14px 0;
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; color: white; font-size: 1.4rem; font-weight: 800;
}
.logo i { color: var(--primary); font-size: 1.5rem; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
    color: var(--gray); text-decoration: none; font-size: 0.9rem;
    font-weight: 500; transition: color 0.3s;
}
.nav-links a:hover { color: white; }
.nav-actions { display: flex; gap: 12px; align-items: center; }

/* ============ HERO ============ */
.hero {
    padding: 160px 0 100px; position: relative; overflow: hidden;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(232,81,63,0.1); border: 1px solid rgba(232,81,63,0.2);
    padding: 8px 20px; border-radius: 50px; font-size: 0.85rem;
    color: var(--primary-light); margin-bottom: 24px;
}
.hero h1 { font-size: 3.8rem; margin-bottom: 20px; letter-spacing: -1px; }
.hero-subtitle { color: var(--gray); font-size: 1.15rem; line-height: 1.7; margin-bottom: 36px; max-width: 520px; }
.hero-cta { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat-number { display: block; font-size: 1.8rem; font-weight: 800; color: white; }
.stat-label { font-size: 0.85rem; color: var(--gray); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; }
.shape {
    position: absolute; border-radius: 50%; opacity: 0.06;
    background: var(--primary);
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.shape-2 { width: 400px; height: 400px; bottom: -150px; left: -100px; }
.shape-3 { width: 200px; height: 200px; top: 50%; left: 30%; }

/* Phone Mockup */
.phone-mockup {
    width: 280px; margin: 0 auto;
    background: var(--dark-3); border-radius: 36px;
    padding: 12px; border: 2px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow-lg);
}
.phone-notch {
    width: 120px; height: 24px; background: var(--dark);
    border-radius: 0 0 16px 16px; margin: 0 auto 12px;
}
.phone-screen { background: var(--dark-2); border-radius: 24px; padding: 16px; min-height: 360px; }
.app-header {
    text-align: center; padding: 12px; font-weight: 700; font-size: 0.9rem;
    color: var(--primary-light); border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 12px;
}
.search-bar-mock {
    display: flex; align-items: center; gap: 10px;
    background: var(--dark-3); padding: 10px 16px; border-radius: 10px;
    color: var(--gray); font-size: 0.8rem; margin-bottom: 16px;
}
.app-post {
    display: flex; gap: 10px; padding: 12px; background: var(--dark-3);
    border-radius: 10px; margin-bottom: 10px;
}
.post-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--gradient); display: flex; align-items: center;
    justify-content: center; font-weight: 700; font-size: 0.8rem; flex-shrink: 0;
}
.post-name { font-size: 0.75rem; font-weight: 600; color: var(--gray-light); margin-bottom: 4px; }
.post-text { font-size: 0.7rem; color: var(--gray); line-height: 1.5; margin-bottom: 6px; }
.post-meta { display: flex; gap: 12px; font-size: 0.65rem; color: var(--gray); }
.post-meta i { color: var(--primary-light); }

/* ============ PROBLEM SECTION ============ */
.problem-section { padding: 100px 0; background: var(--dark-2); }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.problem-card {
    background: var(--dark-3); padding: 32px; border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05); transition: all 0.3s;
}
.problem-card:hover { border-color: rgba(232,81,63,0.2); transform: translateY(-4px); }
.problem-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: rgba(232,81,63,0.1); display: flex; align-items: center;
    justify-content: center; margin-bottom: 20px;
}
.problem-icon i { color: var(--primary); font-size: 1.3rem; }
.problem-card h3 { font-size: 1.1rem; margin-bottom: 10px; font-weight: 700; }
.problem-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }

/* ============ FEATURES ============ */
.features-section { padding: 100px 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card {
    background: var(--dark-2); padding: 28px; border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05); transition: all 0.3s;
    position: relative; overflow: hidden;
}
.feature-card:hover { border-color: rgba(232,81,63,0.3); transform: translateY(-4px); }
.feature-card.featured { border-color: rgba(232,81,63,0.3); }
.feature-card.featured::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient);
}
.feature-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(232,81,63,0.1); display: flex; align-items: center;
    justify-content: center; margin-bottom: 16px;
}
.feature-icon i { color: var(--primary-light); font-size: 1.2rem; }
.feature-card h3 { font-size: 1rem; margin-bottom: 8px; font-weight: 700; }
.feature-card p { color: var(--gray); font-size: 0.85rem; line-height: 1.6; }
.feature-badge {
    position: absolute; top: 16px; right: 16px;
    background: var(--gradient); color: white; font-size: 0.7rem;
    padding: 4px 10px; border-radius: 50px; font-weight: 600;
}

/* ============ HOW IT WORKS ============ */
.how-section { padding: 100px 0; background: var(--dark-2); }
.steps-grid {
    display: flex; align-items: center; justify-content: center; gap: 24px;
}
.step-card {
    background: var(--dark-3); padding: 40px 32px; border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05); text-align: center;
    flex: 1; max-width: 320px; position: relative;
 transition: all 0.3s ease;
}
.step-number {
    font-size: 4rem; font-weight: 900; color: rgba(232,81,63,0.1);
    position: absolute; top: 16px; right: 24px;
}
.step-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(232,81,63,0.1); display: flex; align-items: center;
    justify-content: center; margin: 0 auto 20px;
}
.step-icon i { color: var(--primary); font-size: 1.5rem; }
.step-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.step-card p { color: var(--gray); font-size: 0.9rem; }
.step-connector { color: var(--primary); font-size: 1.2rem; opacity: 0.3; }

/* ============ SAFETY ============ */
.safety-section { padding: 100px 0; }
.safety-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.safety-text h2 { font-size: 2.2rem; margin: 16px 0 32px; }
.safety-list { list-style: none; }
.safety-list li {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 20px; font-size: 0.95rem; color: var(--gray-light);
}
.safety-list i { color: var(--primary); margin-top: 4px; flex-shrink: 0; }
.shield-graphic {
    width: 300px; height: 300px; margin: 0 auto; position: relative;
    display: flex; align-items: center; justify-content: center;
}
.shield-ring {
    position: absolute; border-radius: 50%;
    border: 2px solid rgba(232,81,63,0.15);
    animation: pulse-ring 3s ease-in-out infinite;
}
.ring-1 { width: 100%; height: 100%; }
.ring-2 { width: 75%; height: 75%; animation-delay: 0.5s; }
.ring-3 { width: 50%; height: 50%; animation-delay: 1s; }
.shield-center i { font-size: 4rem; color: var(--primary); }
@keyframes pulse-ring {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.05); }
}

/* ============ GUIDELINES ============ */
.guidelines-section { padding: 100px 0; background: var(--dark-2); }
.guidelines-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 800px; margin: 0 auto; }
.guideline-card {
    padding: 32px; border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05); transition: all 0.3s ease;
}
.guideline-card.green { background: rgba(34,197,94,0.05); border-color: rgba(34,197,94,0.2); }
.guideline-card.red { background: rgba(239,68,68,0.05); border-color: rgba(239,68,68,0.2); }
.guideline-card h3 { font-size: 1.1rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.guideline-card.green h3 i { color: #22c55e; }
.guideline-card.red h3 i { color: #ef4444; }
.guideline-card ul { list-style: none; }
.guideline-card li {
    padding: 8px 0; font-size: 0.9rem; color: var(--gray-light);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.guideline-card li:last-child { border: none; }

/* ============ PRICING ============ */
.pricing-section { padding: 100px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.pricing-card {
    background: var(--dark-2); padding: 36px; border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05); position: relative; transition: all 0.3s ease;
}
.pricing-card.popular {
    border-color: var(--primary); transform: scale(1.05);
    background: linear-gradient(180deg, rgba(232,81,63,0.08) 0%, var(--dark-2) 100%);
}
.popular-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--gradient); color: white; padding: 6px 20px;
    border-radius: 50px; font-size: 0.8rem; font-weight: 600;
}
.pricing-tier { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.pricing-price { font-size: 3rem; font-weight: 900; margin-bottom: 4px; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--gray); }
.pricing-desc { color: var(--gray); font-size: 0.9rem; margin-bottom: 28px; }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0; font-size: 0.9rem; color: var(--gray-light);
}
.pricing-features i { color: var(--primary); font-size: 0.85rem; }

/* ============ CTA ============ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
}
.cta-content { text-align: center; max-width: 550px; margin: 0 auto; }
.cta-content h2 { font-size: 2.4rem; margin-bottom: 16px; }
.cta-content > p { color: var(--gray); margin-bottom: 36px; }
.cta-form { display: flex; flex-direction: column; gap: 14px; margin-bottom: 16px; }
.input-group {
    display: flex; align-items: center; gap: 12px;
    background: var(--dark-3); padding: 14px 20px; border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
}
.input-group i { color: var(--gray); }
.input-group input, .input-group select {
    background: none; border: none; color: white; font-size: 1rem;
    width: 100%; outline: none; font-family: inherit;
}
.input-group select option { background: var(--dark-3); }
.cta-disclaimer { font-size: 0.8rem; color: var(--gray); }

/* ============ FOOTER ============ */
.footer { padding: 60px 0 30px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: var(--gray); font-size: 0.9rem; margin: 12px 0 20px; max-width: 280px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--dark-3); display: flex; align-items: center;
    justify-content: center; color: var(--gray); text-decoration: none;
    transition: all 0.3s;
}
.social-links a:hover { background: var(--primary); color: white; }
.footer-links h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; }
.footer-links a {
    display: block; color: var(--gray); text-decoration: none;
    font-size: 0.85rem; padding: 4px 0; transition: color 0.3s;
}
.footer-links a:hover { color: var(--primary-light); }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom p { color: var(--gray); font-size: 0.85rem; }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero h1 { font-size: 2.5rem; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-visual { display: none; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { flex-direction: column; }
  .step-connector { transform: rotate(90deg); }
  .safety-content { grid-template-columns: 1fr; }
  .guidelines-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .section-header h2 { font-size: 2rem; }
}

/* ============= SAFETY TOOLS ============= */
.safety-tools {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 50%, var(--dark-2) 100%);
    position: relative;
    overflow: hidden;
}
.safety-tools::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(232,81,63,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
    align-items: start;
}
.tool-card {
    background: var(--dark-3);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}
.tool-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(232,81,63,0.12);
    border-color: rgba(232,81,63,0.2);
}
.tool-card-header {
    padding: 32px 32px 0;
}
.tool-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.tool-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(232,81,63,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.tool-card:hover .tool-icon {
    background: rgba(232,81,63,0.25);
    transform: scale(1.1);
}
.tool-badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(232,81,63,0.15);
    color: var(--primary);
    border: 1px solid rgba(232,81,63,0.25);
}
.tool-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 8px;
}
.tool-description {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.tool-card-body {
    padding: 0 32px 24px;
    flex: 1;
}
.tool-search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-4);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}
.tool-search-bar:hover {
    border-color: rgba(232,81,63,0.3);
}
.tool-search-bar i:first-child {
    color: var(--gray);
    font-size: 0.9rem;
}
.tool-search-bar input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--gray);
    font-size: 0.9rem;
    font-family: inherit;
}
.tool-search-bar input::placeholder {
    color: rgba(255,255,255,0.25);
}
.tool-search-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--primary);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.tool-search-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Map Preview */
.tool-map-preview {
    margin-bottom: 20px;
}
.map-placeholder {
    height: 200px;
    border-radius: 12px;
    background: var(--dark-4);
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}
.map-grid {
    position: absolute;
    inset: 0;
}
.map-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.6;
    animation: pulse 2s ease-in-out infinite;
}
.map-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}
.map-dot-1 { top: 30%; left: 25%; animation-delay: 0s; }
.map-dot-2 { top: 55%; left: 60%; animation-delay: 0.5s; }
.map-dot-3 { top: 25%; left: 70%; animation-delay: 1s; }
.map-dot-4 { top: 65%; left: 35%; animation-delay: 1.5s; }
.map-pin {
    position: absolute;
    top: 45%;
    left: 48%;
    transform: translate(-50%, -50%);
    font-size: 1.6rem;
    color: var(--accent);
    filter: drop-shadow(0 2px 8px rgba(255,139,122,0.5));
    animation: float 3s ease-in-out infinite;
}
.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,15,18,0.7);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.85rem;
}
.map-overlay i {
    font-size: 1.4rem;
    color: var(--primary);
}

/* Scan Results Preview */
.scan-results-preview {
    position: relative;
    margin-bottom: 20px;
}
.scan-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 10px;
    background: var(--dark-4);
    border: 1px solid rgba(255,255,255,0.04);
    margin-bottom: 8px;
    transition: all 0.3s ease;
}
.scan-item:last-of-type {
    margin-bottom: 0;
}
.scan-item:hover {
    border-color: rgba(232,81,63,0.15);
    background: rgba(232,81,63,0.04);
}
.scan-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.scan-icon-court {
    background: rgba(232,81,63,0.12);
    color: var(--primary);
}
.scan-icon-mugshot {
    background: rgba(255,139,122,0.12);
    color: var(--accent);
}
.scan-icon-warrant {
    background: rgba(255,186,122,0.12);
    color: #ffba7a;
}
.scan-icon-dv {
    background: rgba(255,107,107,0.12);
    color: #ff6b6b;
}
.scan-info {
    flex: 1;
}
.scan-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--light);
    margin-bottom: 2px;
}
.scan-info span {
    font-size: 0.78rem;
    color: var(--gray);
}
.scan-status {
    color: rgba(232,81,63,0.5);
    font-size: 1rem;
}
.scan-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,15,18,0.65);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.85rem;
    border-radius: 10px;
}
.scan-overlay i {
    font-size: 1.4rem;
    color: var(--primary);
}

/* Tool Stats Row */
.tool-stats-row {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.tool-stat {
    flex: 1;
    text-align: center;
}
.tool-stat strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2px;
}
.tool-stat span {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tool Source */
.tool-source {
    padding: 14px 32px;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.04);
    font-size: 0.78rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px;
}
.tool-source i {
    color: var(--primary);
    opacity: 0.7;
}

/* Disclaimer */
.tools-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 24px;
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
}
.tools-disclaimer i {
    color: var(--gray);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.tools-disclaimer p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .tools-grid { grid-template-columns: 1fr; }
}


/* ============= ANIMATIONS ============= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Smooth fade-in for sections */
.section-header,
.problem-card,
.feature-card,
.step-card,
.safety-item,
.pricing-card,
.guideline-card {
  animation: fadeInUp 0.6s ease-out both;
}

/* Floating animation for hero visual */
.phone-mockup {
  animation: float 6s ease-in-out infinite;
}

/* Pulse on hero background shapes */
.hero .shape {
  animation: pulse 4s ease-in-out infinite;
}
.hero .shape-2 { animation-delay: 1s; }
.hero .shape-3 { animation-delay: 2s; }

/* ============= ENHANCED HOVER EFFECTS ============= */

/* Navbar link underline effect */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}

/* Card lift & glow on hover */
.problem-card:hover,
.feature-card:hover,
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(232, 81, 63, 0.15);
  border-color: rgba(232, 81, 63, 0.3);
}

/* Feature card icon pop */
.feature-card:hover .feature-icon {
  transform: scale(1.1);
  background: rgba(232, 81, 63, 0.2);
}
.feature-icon {
  transition: transform 0.3s ease, background 0.3s ease;
}

/* Pricing card hover */
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.pricing-card.popular:hover {
  transform: translateY(-8px) scale(1.02);
}

/* Button shine effect */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::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;
}
.btn-primary:hover::before {
  left: 100%;
}

/* Guideline card hover */
.guideline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Footer link hover */
.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}
.footer-links a {
  transition: color 0.3s ease, padding-left 0.3s ease;
}

/* Social icon hover */
.social-icon:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}
.social-icon {
  transition: all 0.3s ease;
}

/* Safety item hover */
.safety-item:hover {
  background: rgba(232, 81, 63, 0.05);
  border-radius: 12px;
  padding-left: 8px;
}
.safety-item {
  transition: all 0.3s ease;
}

/* ============= VISUAL POLISH ============= */

/* Smooth scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: var(--dark-3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Selection color */
::selection {
  background: rgba(232, 81, 63, 0.3);
  color: white;
}

/* Hero badge shimmer */
.hero-badge {
  background: linear-gradient(90deg, rgba(232,81,63,0.12), rgba(232,81,63,0.22), rgba(232,81,63,0.12));
  background-size: 200% auto;
  animation: shimmer 4s ease-in-out infinite;
  border: 1px solid rgba(232,81,63,0.2);
}

/* Stats number gradient */
.stat-number {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Step number subtle glow */
.step-number {
  text-shadow: 0 0 40px rgba(232, 81, 63, 0.3);
}

/* CTA section subtle gradient border */
.cta-section .cta-form {
  position: relative;
}

/* Shield visual pulse */
.shield-visual .shield-icon {
  filter: drop-shadow(0 0 20px rgba(232, 81, 63, 0.4));
}

/* ============= RESPONSIVE - SMALL SCREENS ============= */

/* CTA button enhanced gradient */
.cta-section .btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--primary) 100%);
  background-size: 200% auto;
  font-size: 1.05rem;
  padding: 18px 0;
}
.cta-section .btn-primary:hover {
  background-position: right center;
}

/* Guideline list items — subtle spacing */
.guideline-card li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.92rem;
}
.guideline-card li:last-child {
  border-bottom: none;
}

/* Tighter section padding on larger screens */
@media (min-width: 1200px) {
  .hero .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* Navbar glassmorphism enhancement */
.navbar {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 1.6rem; }
  .navbar { padding: 12px 0; }
}

/* ============== SCROLL REVEAL ============== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============== LIGHT MODE ============== */
body.light-mode {
  --dark: #F5F5F7;
  --dark-2: #E8E8ED;
  --dark-3: #D1D1D6;
  --dark-4: #C7C7CC;
  --light: #1A1A2E;
  --gray: #6B7280;
}
body.light-mode .navbar { background: rgba(245,245,247,0.85); }
body.light-mode .problem-card,
body.light-mode .feature-card,
body.light-mode .step-card,
body.light-mode .guideline-card,
body.light-mode .pricing-card,
body.light-mode .testimonial-card,
body.light-mode .blog-card,
body.light-mode .faq-item,
body.light-mode .alerts-feed-card,
body.light-mode .crime-pattern-card { background: #FFFFFF; border-color: #E5E7EB; }
body.light-mode .section-tag { background: rgba(232,81,63,0.1); }
body.light-mode .phone-mockup { background: #FFFFFF; border-color: #E5E7EB; }
body.light-mode .phone-screen { background: #F9FAFB; }
body.light-mode .footer { background: #1A1A2E; }
body.light-mode .footer, body.light-mode .footer * { --light: #FFFFFF; --gray: #9CA3AF; }
.theme-toggle {
  background: var(--dark-3);
  border: none;
  color: var(--light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.theme-toggle:hover { background: var(--primary); color: white; }

/* ============== HAMBURGER MENU ============== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--light);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 20px;
    transition: right 0.4s ease;
    z-index: 1000;
    border-left: 1px solid var(--dark-3);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }
  .nav-actions { display: none; }
  .mobile-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  .mobile-overlay.active { opacity: 1; pointer-events: all; }
}

/* ============== PHONE FEED ANIMATION ============== */
.phone-feed {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: phoneFeedScroll 12s ease-in-out infinite;
}
@keyframes phoneFeedScroll {
  0%, 20% { transform: translateY(0); }
  30%, 50% { transform: translateY(-120px); }
  60%, 80% { transform: translateY(-240px); }
  90%, 100% { transform: translateY(0); }
}
.phone-screen { overflow: hidden; }
.typing-cursor {
  animation: blink 0.8s step-end infinite;
  color: var(--primary);
  font-weight: bold;
}
@keyframes blink {
  50% { opacity: 0; }
}

/* ============== PRESS BAR ============== */
.press-bar {
  padding: 40px 0;
  border-top: 1px solid var(--dark-3);
  border-bottom: 1px solid var(--dark-3);
}
.press-label {
  text-align: center;
  color: var(--gray);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 24px;
}
.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.press-logo {
  color: var(--dark-4);
  font-size: 1.2rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}
.press-logo:hover { opacity: 0.8; }


/* ============== COMMUNITY ALERTS ============== */
.community-alerts-section { padding: 100px 0; }
.alerts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 48px;
}
.alerts-feed-card, .crime-pattern-card {
  background: var(--dark-2);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--dark-3);
}
.alerts-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--dark-3);
}
.alerts-card-header i { color: var(--primary); font-size: 1.2rem; }
.alerts-card-header h3 { font-size: 1.1rem; flex: 1; }
.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(239,68,68,0.15);
  color: #EF4444;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.live-dot {
  width: 8px; height: 8px;
  background: #EF4444;
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.pattern-badge {
  background: rgba(139,92,246,0.15);
  color: #8B5CF6;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.alert-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 12px;
  border-left: 3px solid;
  transition: transform 0.2s ease;
}
.alert-item:hover { transform: translateX(4px); }
.alert-amber { background: rgba(245,158,11,0.08); border-color: #F59E0B; }
.alert-warning { background: rgba(239,68,68,0.08); border-color: #EF4444; }
.alert-info { background: rgba(59,130,246,0.08); border-color: #3B82F6; }
.alert-resolved { background: rgba(16,185,129,0.08); border-color: #10B981; }

.alert-icon { font-size: 1.1rem; padding-top: 2px; }
.alert-amber .alert-icon { color: #F59E0B; }
.alert-warning .alert-icon { color: #EF4444; }
.alert-info .alert-icon { color: #3B82F6; }
.alert-resolved .alert-icon { color: #10B981; }

.alert-type {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.alert-amber .alert-type { color: #F59E0B; }
.alert-warning .alert-type { color: #EF4444; }
.alert-info .alert-type { color: #3B82F6; }
.alert-resolved .alert-type { color: #10B981; }

.alert-text { font-size: 0.88rem; line-height: 1.5; color: var(--light); margin-bottom: 8px; }
.alert-meta { font-size: 0.75rem; color: var(--gray); display: flex; gap: 16px; }
.alert-location { color: var(--gray); }


/* Crime Pattern Tracker */
.pattern-map-placeholder {
  background: var(--dark-3);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.heatmap-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin-bottom: 12px;
}
.heat-cell {
  height: 40px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.heat-cell.h1 { background: rgba(232,81,63,0.1); }
.heat-cell.h2 { background: rgba(232,81,63,0.25); }
.heat-cell.h3 { background: rgba(232,81,63,0.4); }
.heat-cell.h4 { background: rgba(232,81,63,0.6); }
.heat-cell.h5 { background: rgba(232,81,63,0.85); }
.heatmap-label { font-size: 0.75rem; color: var(--gray); }

.pattern-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.pattern-stat { text-align: center; }
.pattern-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
}
.trend-down { color: #10B981 !important; font-size: 1.2rem !important; }
.pattern-label { font-size: 0.72rem; color: var(--gray); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }

.pattern-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.pattern-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--dark-3);
  border-radius: 8px;
  font-size: 0.85rem;
}
.pattern-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.pattern-dot.high { background: #EF4444; }
.pattern-dot.medium { background: #F59E0B; }
.pattern-dot.low { background: #3B82F6; }
.pattern-dot.info { background: #8B5CF6; }
.pattern-name { flex: 1; }
.pattern-count { color: var(--gray); font-size: 0.78rem; white-space: nowrap; }

.crime-pattern-card { position: relative; }
.alert-lock-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--dark-2));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  gap: 8px;
  color: var(--gray);
  font-size: 0.85rem;
  border-radius: 0 0 16px 16px;
}
.alert-lock-overlay i { color: var(--primary); }

.alerts-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .alerts-grid { grid-template-columns: 1fr; }
  .alerts-actions { flex-direction: column; align-items: center; }
}


/* ============== TESTIMONIALS ============== */
.testimonials-section { padding: 100px 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,81,63,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.testimonial-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--dark-2), rgba(232,81,63,0.08));
}
.testimonial-stars { color: #F59E0B; font-size: 0.85rem; margin-bottom: 16px; display: flex; gap: 2px; }
.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--light);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--light);
}
.testimonial-info { flex: 1; }
.testimonial-name { display: block; font-weight: 600; font-size: 0.9rem; }
.testimonial-city { font-size: 0.78rem; color: var(--gray); }
.testimonial-city i { margin-right: 4px; }
.verified-badge { color: #10B981; font-size: 1.1rem; }

.testimonial-stats-bar {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--dark-3);
}
.tstat { text-align: center; }
.tstat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tstat-label { font-size: 0.82rem; color: var(--gray); }

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-stats-bar { gap: 30px; flex-wrap: wrap; }
}


/* ============== BLOG / RESOURCES ============== */
.blog-section { padding: 100px 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.blog-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232,81,63,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.blog-image {
  height: 160px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.3);
}
.blog-tag {
  display: inline-block;
  margin: 20px 20px 12px;
  padding: 4px 12px;
  background: rgba(232,81,63,0.12);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-title {
  padding: 0 20px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}
.blog-excerpt {
  padding: 0 20px;
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}
.blog-footer {
  padding: 16px 20px;
  margin-top: 16px;
  border-top: 1px solid var(--dark-3);
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--gray);
}
.blog-footer i { margin-right: 4px; }

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
}


/* ============== FAQ SECTION ============== */
.faq-section { padding: 100px 0; }
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item:hover { border-color: rgba(232,81,63,0.3); }
.faq-item.open { border-color: var(--primary); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--light);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  font-family: inherit;
}
.faq-question i {
  color: var(--primary);
  font-size: 0.85rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--gray);
}


/* ============== APP DOWNLOAD TEASER ============== */
.app-download-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(232,81,63,0.05), rgba(139,92,246,0.05));
  border-top: 1px solid var(--dark-3);
  border-bottom: 1px solid var(--dark-3);
}
.app-download-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.app-download-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin: 16px 0;
}
.app-download-text p {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.app-store-badges {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.store-badge:hover { border-color: var(--primary); transform: translateY(-2px); }
.store-badge i { font-size: 1.8rem; color: var(--light); }
.store-badge small { display: block; font-size: 0.65rem; color: var(--gray); }
.store-badge strong { font-size: 1rem; }

.app-notify {
  display: flex;
  gap: 10px;
}
.app-email-input {
  flex: 1;
  padding: 12px 16px;
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: 8px;
  color: var(--light);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s ease;
}
.app-email-input:focus { border-color: var(--primary); }
.app-email-input::placeholder { color: var(--gray); }
.btn-sm { padding: 12px 20px; font-size: 0.85rem; white-space: nowrap; }

/* App Phone Mock */
.app-download-phone { display: flex; justify-content: center; }
.app-phone-mock {
  width: 220px;
  background: var(--dark-2);
  border-radius: 32px;
  padding: 12px;
  border: 2px solid var(--dark-3);
  position: relative;
}
.app-phone-notch {
  width: 80px;
  height: 6px;
  background: var(--dark-3);
  border-radius: 4px;
  margin: 0 auto 12px;
}
.app-phone-screen {
  background: var(--dark);
  border-radius: 20px;
  height: 380px;
  overflow: hidden;
}
.app-splash {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.app-splash-icon {
  font-size: 3rem;
  color: var(--primary);
  animation: float 3s ease-in-out infinite;
}
.app-splash-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}
.app-splash-sub {
  font-size: 0.75rem;
  color: var(--gray);
}
.app-splash-loader {
  width: 40px;
  height: 3px;
  background: var(--dark-3);
  border-radius: 3px;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}
.app-splash-loader::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
  animation: splashLoad 2s ease-in-out infinite;
}
@keyframes splashLoad {
  0% { left: -50%; }
  100% { left: 100%; }
}

@media (max-width: 768px) {
  .app-download-content { grid-template-columns: 1fr; text-align: center; }
  .app-store-badges { justify-content: center; flex-wrap: wrap; }
  .app-notify { flex-direction: column; }
  .app-download-phone { order: -1; }
}


/* ============== FORM VALIDATION ============== */
.form-group { position: relative; }
.form-success, .form-error {
  font-size: 0.78rem;
  margin-top: 6px;
  display: none;
  align-items: center;
  gap: 6px;
}
.form-success { color: #10B981; }
.form-error { color: #EF4444; }
.form-success.show, .form-error.show { display: flex; }
.input-success { border-color: #10B981 !important; }
.input-error { border-color: #EF4444 !important; }

/* ============== ADDITIONAL RESPONSIVE ============== */
@media (max-width: 480px) {
  .press-logos { gap: 24px; }
  .press-logo { font-size: 0.9rem; }
  .alert-item { flex-direction: column; gap: 8px; }
  .pattern-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .testimonial-stats-bar { flex-direction: column; gap: 16px; }
  .blog-card .blog-image { height: 120px; }
}

@media (min-width: 1200px) {
  .testimonials-grid { grid-template-columns: repeat(4, 1fr); }
}


/* ============== NAVBAR SCROLLED STATE ============== */
.navbar.scrolled {
  background: rgba(15,15,18,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
body.light-mode .navbar.scrolled {
  background: rgba(245,245,247,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}


/* ============== FCRA NOTICE ============== */
.fcra-notice {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-left: 3px solid #F59E0B;
  border-radius: 12px;
  padding: 24px 28px;
  margin-top: 20px;
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--gray);
}
.fcra-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #F59E0B;
  font-size: 0.88rem;
}
.fcra-notice p { margin-bottom: 10px; }
.fcra-notice strong { color: var(--light); }
.fcra-notice ul {
  margin: 8px 0 12px 20px;
  list-style: none;
}
.fcra-notice ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 4px;
}
.fcra-notice ul li::before {
  content: '\f00d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #EF4444;
  font-size: 0.7rem;
  top: 3px;
}

/* ============== LEGAL BAR ============== */
.legal-bar {
  padding: 24px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--dark-3);
  border-bottom: 1px solid var(--dark-3);
}
.legal-content {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.legal-icon {
  color: var(--gray);
  font-size: 1.2rem;
  flex-shrink: 0;
  padding-top: 2px;
}
.legal-text p {
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--gray);
}
.legal-text strong { color: var(--light); }
.legal-text a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-text a:hover { color: var(--primary-light); }

body.light-mode .fcra-notice { background: #FFFBEB; border-color: #FDE68A; border-left-color: #F59E0B; }
body.light-mode .fcra-notice strong { color: #1A1A2E; }
body.light-mode .legal-bar { background: #F3F4F6; }
body.light-mode .legal-text strong { color: #1A1A2E; }


/* ============== CITY VOTING SYSTEM ============== */
.city-voting-section { padding: 100px 0; }
.voting-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  margin-top: 48px;
  align-items: start;
}
.voting-submit-card, .voting-leaderboard-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: 16px;
  padding: 32px;
}
.voting-submit-card h3, .voting-leaderboard-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.voting-submit-card h3 i, .voting-leaderboard-card h3 i {
  color: var(--primary);
  margin-right: 8px;
}
.voting-submit-card > p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.vote-input-group {
  display: flex;
  gap: 10px;
}
.vote-city-input {
  flex: 1;
  padding: 14px 18px;
  background: var(--dark-3);
  border: 1px solid var(--dark-4);
  border-radius: 10px;
  color: var(--light);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s ease;
}
.vote-city-input:focus { border-color: var(--primary); }
.vote-city-input::placeholder { color: var(--gray); }
.vote-submit-btn { white-space: nowrap; }
.vote-feedback {
  margin-top: 12px;
  font-size: 0.85rem;
  min-height: 24px;
}
.vote-feedback.success { color: #10B981; }
.vote-feedback.error { color: #EF4444; }
.vote-feedback.info { color: #3B82F6; }

.voting-how-it-works {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--dark-3);
}
.voting-how-it-works h4 {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--light);
}
.vote-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vote-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--gray);
}
.vote-step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--primary);
  flex-shrink: 0;
  border: 1px solid var(--dark-4);
}

/* Leaderboard */
.leaderboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--dark-3);
}
.leaderboard-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.leaderboard-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.leaderboard-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: var(--dark-3);
  border-radius: 10px;
  transition: all 0.3s ease;
}
.leaderboard-item:hover {
  background: var(--dark-4);
  transform: translateX(4px);
}
.leaderboard-rank {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--dark-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--gray);
  flex-shrink: 0;
}
.leaderboard-rank.hot {
  background: linear-gradient(135deg, var(--primary), #F59E0B);
  color: white;
}
.leaderboard-info { flex: 1; min-width: 0; }
.leaderboard-city {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.almost-badge {
  font-size: 0.65rem;
  background: rgba(245,158,11,0.15);
  color: #F59E0B;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
  white-space: nowrap;
}
.leaderboard-bar {
  height: 6px;
  background: var(--dark-4);
  border-radius: 3px;
  overflow: hidden;
}
.leaderboard-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
  transition: width 0.6s ease;
}
.leaderboard-votes {
  font-size: 0.78rem;
  color: var(--gray);
  white-space: nowrap;
  min-width: 55px;
  text-align: right;
}
.leaderboard-votes .vote-count {
  color: var(--light);
  font-weight: 700;
}
.btn-vote {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--dark-4);
  border: 1px solid transparent;
  color: var(--gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.btn-vote:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
}
.btn-vote.voted {
  background: #10B981;
  color: white;
  border-color: #10B981;
}
.leaderboard-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--dark-3);
  text-align: center;
}
.leaderboard-total {
  font-size: 0.82rem;
  color: var(--gray);
}
.leaderboard-total strong { color: var(--primary); }

@media (max-width: 768px) {
  .voting-layout { grid-template-columns: 1fr; }
  .vote-input-group { flex-direction: column; }
}

  text-align: right;
}
.leaderboard-votes .vote-count {
  color: var(--light);
  font-weight: 700;
}
.btn-vote {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--dark-4);
  border: 1px solid transparent;
  color: var(--gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.btn-vote:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
}
.btn-vote.voted {
  background: #10B981;
  color: white;
  border-color: #10B981;
}
.leaderboard-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--dark-3);
  text-align: center;
}
.leaderboard-total {
  font-size: 0.82rem;
  color: var(--gray);
}
.leaderboard-total strong { color: var(--primary); }

@media (max-width: 768px) {
  .voting-layout { grid-template-columns: 1fr; }
  .vote-input-group { flex-direction: column; }
}
