/* =============================================
   MeeshoLabel — Landing Page Design System
   Dark premium theme with vibrant accents
   ============================================= */

/* ---------- CSS Custom Properties ---------- */
:root {
    --bg-primary: #0a0e1a;
    --bg-secondary: #111827;
    --bg-card: rgba(17, 24, 39, 0.7);
    --bg-glass: rgba(255, 255, 255, 0.04);
    --bg-glass-hover: rgba(255, 255, 255, 0.08);

    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-cyan: #22d3ee;
    --accent-emerald: #34d399;
    --accent-rose: #fb7185;
    --accent-amber: #fbbf24;
    --accent-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a78bfa 100%);
    --accent-gradient-warm: linear-gradient(135deg, #f97316 0%, #fb923c 50%, #fbbf24 100%);
    --hero-gradient: linear-gradient(160deg, #0a0e1a 0%, #1e1b4b 30%, #312e81 55%, #1e1b4b 80%, #0a0e1a 100%);

    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-card: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(99, 102, 241, 0.3);

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);
    --shadow-glow-cyan: 0 0 40px rgba(34, 211, 238, 0.1);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body.landing-body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ---------- Animated Background Mesh ---------- */
.bg-mesh {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-mesh::before,
.bg-mesh::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    animation: meshFloat 20s ease-in-out infinite alternate;
}

.bg-mesh::before {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    top: -200px;
    right: -150px;
}

.bg-mesh::after {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #22d3ee 0%, transparent 70%);
    bottom: -200px;
    left: -100px;
    animation-delay: -10s;
}

@keyframes meshFloat {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(40px, -30px) scale(1.1); }
    100% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* stagger children */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.25s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.35s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.45s; opacity: 1; transform: none; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.55s; opacity: 1; transform: none; }

/* ---------- Navbar ---------- */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.landing-nav.scrolled {
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 var(--border-subtle), var(--shadow-md);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.03em;
}

.nav-logo .logo-icon {
    width: 38px;
    height: 38px;
    background: var(--accent-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-glass-hover);
}

.nav-cta {
    background: var(--accent-gradient);
    color: white !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.25);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast) !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.4) !important;
    background: var(--accent-gradient) !important;
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--hero-gradient);
    z-index: -1;
}

/* Grid pattern overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.25);
    color: #a5b4fc;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 28px;
    animation: badgePulse 3s ease-in-out infinite;
}

.hero-badge i {
    font-size: 0.75rem;
    color: var(--accent-emerald);
    animation: starSpin 4s linear infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.15); }
    50% { box-shadow: 0 0 0 8px rgba(99, 102, 241, 0); }
}

@keyframes starSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 40%, #22d3ee 80%, #34d399 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
    font-family: var(--font-sans);
}

.btn-primary {
    background: var(--accent-gradient);
    color: white !important;
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.3), var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.45), var(--shadow-lg);
}

.btn-ghost {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--border-card);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: var(--bg-glass-hover);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Floating Stats Bar */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #818cf8, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    margin-top: 4px;
}

/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(99, 102, 241, 0.4);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-duration: 18s; animation-delay: 0s; width: 3px; height: 3px; }
.particle:nth-child(2) { left: 25%; animation-duration: 22s; animation-delay: -4s; width: 5px; height: 5px; background: rgba(34, 211, 238, 0.3); }
.particle:nth-child(3) { left: 40%; animation-duration: 16s; animation-delay: -8s; }
.particle:nth-child(4) { left: 55%; animation-duration: 24s; animation-delay: -2s; width: 6px; height: 6px; background: rgba(139, 92, 246, 0.3); }
.particle:nth-child(5) { left: 70%; animation-duration: 20s; animation-delay: -6s; width: 3px; height: 3px; }
.particle:nth-child(6) { left: 85%; animation-duration: 19s; animation-delay: -10s; background: rgba(52, 211, 153, 0.3); }
.particle:nth-child(7) { left: 15%; animation-duration: 23s; animation-delay: -3s; width: 5px; height: 5px; }
.particle:nth-child(8) { left: 65%; animation-duration: 17s; animation-delay: -7s; background: rgba(251, 191, 36, 0.2); }

@keyframes particleFloat {
    0%   { transform: translateY(100vh) scale(0); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ---------- Section Base ---------- */
.landing-section {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-primary);
    margin-bottom: 16px;
}

.section-tag i {
    font-size: 0.7rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---------- Features Grid ---------- */
.features-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card-landing {
    background: var(--bg-glass);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card-landing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card-landing:hover {
    background: var(--bg-glass-hover);
    border-color: var(--border-accent);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.feature-card-landing:hover::before {
    opacity: 1;
}

.feature-icon-landing {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    position: relative;
}

.feature-icon-landing.purple  { background: rgba(99, 102, 241, 0.12); color: #818cf8; }
.feature-icon-landing.cyan    { background: rgba(34, 211, 238, 0.12); color: #22d3ee; }
.feature-icon-landing.emerald { background: rgba(52, 211, 153, 0.12); color: #34d399; }
.feature-icon-landing.rose    { background: rgba(251, 113, 133, 0.12); color: #fb7185; }
.feature-icon-landing.amber   { background: rgba(251, 191, 36, 0.12); color: #fbbf24; }
.feature-icon-landing.blue    { background: rgba(56, 189, 248, 0.12); color: #38bdf8; }

.feature-card-landing h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.feature-card-landing p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ---------- How It Works ---------- */
.how-section {
    background: var(--bg-secondary);
    overflow: hidden;
}

.how-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

/* Connecting line */
.how-timeline::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-cyan), var(--accent-emerald), var(--accent-amber));
    opacity: 0.3;
}

.how-step {
    text-align: center;
    padding: 0 16px;
    position: relative;
}

.step-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 2px solid var(--border-card);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    transition: all var(--transition-base);
    position: relative;
    z-index: 2;
}

.how-step:hover .step-circle {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.08);
}

.step-circle.sc-purple  { color: #818cf8; }
.step-circle.sc-cyan    { color: #22d3ee; }
.step-circle.sc-emerald { color: #34d399; }
.step-circle.sc-amber   { color: #fbbf24; }

.step-num {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.4);
}

.how-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.how-step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* ---------- Security / Trust Section ---------- */
.security-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.security-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
    animation: shieldPulse 3s ease-in-out infinite;
}

@keyframes shieldPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0.8; }
}

.shield-icon {
    font-size: 6rem;
    color: var(--accent-emerald);
    opacity: 0.85;
    filter: drop-shadow(0 0 30px rgba(52, 211, 153, 0.3));
}

.security-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sec-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: var(--radius-md);
    background: var(--bg-glass);
    border: 1px solid var(--border-card);
    transition: all var(--transition-base);
}

.sec-point:hover {
    background: var(--bg-glass-hover);
    transform: translateX(6px);
}

.sec-point-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    background: rgba(52, 211, 153, 0.1);
    color: var(--accent-emerald);
}

.sec-point h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.sec-point p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ---------- Testimonial / Social Proof ---------- */
.proof-section {
    background: var(--bg-primary);
}

.proof-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.proof-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition-base);
}

.proof-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.proof-stars {
    color: var(--accent-amber);
    margin-bottom: 16px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.proof-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.proof-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.proof-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.proof-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.proof-role {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ---------- CTA Section ---------- */
.cta-section {
    padding: 100px 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #1e1b4b 0%, #312e81 40%, #1e1b4b 100%);
    z-index: -1;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section .cta-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    display: block;
    animation: rocketBounce 2.5s ease-in-out infinite;
}

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

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.cta-section p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-section .btn-primary {
    font-size: 1.1rem;
    padding: 16px 40px;
}

/* ---------- Footer ---------- */
.landing-footer {
    position: relative;
    z-index: 1;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
    padding: 56px 24px 32px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 12px;
    max-width: 300px;
}

.footer-col h4 {
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 5px 0;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.footer-bottom a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--accent-primary);
}

/* ---------- Content Pages (Privacy / How To Use) ---------- */
.content-page {
    position: relative;
    z-index: 1;
    padding: 120px 24px 80px;
    min-height: 100vh;
}

.content-page-inner {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-glass);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-xl);
    padding: 48px 48px;
    backdrop-filter: blur(12px);
}

.content-page-inner h1 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.content-page-inner .page-updated {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.content-page-inner h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 36px 0 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-page-inner h2 i {
    color: var(--accent-primary);
    font-size: 1rem;
}

.content-page-inner h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 24px 0 8px;
}

.content-page-inner p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 14px;
}

.content-page-inner ul, .content-page-inner ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.content-page-inner li {
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
}

.content-page-inner li strong {
    color: var(--text-primary);
}

.content-page-inner a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.content-page-inner a:hover {
    color: var(--accent-secondary);
    text-decoration: underline;
}

/* How-to step cards */
.howto-step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all var(--transition-base);
}

.howto-step:hover {
    background: var(--bg-glass-hover);
    border-color: var(--border-accent);
    transform: translateX(4px);
}

.howto-num {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent-gradient);
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(99, 102, 241, 0.25);
}

.howto-step-content h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
}

.howto-step-content p {
    margin: 0;
    font-size: 0.9rem;
}

/* info / tip callout boxes */
.callout {
    padding: 20px 24px;
    border-radius: var(--radius-md);
    margin: 24px 0;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.callout i {
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.callout p { margin: 0; }

.callout-info {
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
}
.callout-info i { color: var(--accent-primary); }

.callout-success {
    background: rgba(52, 211, 153, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.2);
}
.callout-success i { color: var(--accent-emerald); }

.callout-warning {
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.2);
}
.callout-warning i { color: var(--accent-amber); }

/* Back to home button */
.back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 28px;
    transition: color var(--transition-fast);
}

.back-home:hover {
    color: var(--text-primary);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .proof-cards { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .landing-nav { padding: 12px 16px; }
    .nav-links { gap: 4px; }
    .nav-link { padding: 8px 12px; font-size: 0.82rem; }
    .nav-cta { padding: 8px 18px !important; }

    .hero { padding: 100px 20px 60px; }
    .hero-stats { gap: 28px; }
    .stat-value { font-size: 1.6rem; }

    .features-grid { grid-template-columns: 1fr; }
    .how-timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .how-timeline::before { display: none; }

    .security-grid { grid-template-columns: 1fr; gap: 32px; }
    .security-visual { order: -1; }
    .shield-wrapper { width: 160px; height: 160px; }
    .shield-icon { font-size: 4rem; }

    .proof-cards { grid-template-columns: 1fr; }

    .footer-inner { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .content-page-inner { padding: 32px 24px; }
    .content-page-inner h1 { font-size: 1.7rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
    .how-timeline { grid-template-columns: 1fr; }
    .section-title { font-size: 1.6rem; }

    .nav-links .nav-link:not(.nav-cta) { display: none; }
    
    .howto-step { flex-direction: column; }
    .howto-num { width: 36px; height: 36px; font-size: 0.95rem; }

    .landing-section { padding: 60px 16px; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }

/* =============================================
   Mobile Friendly Global Dashboard Overrides
   ============================================= */
@media (max-width: 768px) {
    /* Sticky Bottom Mobile Navigation Bar */
    .dash-nav-links {
        display: flex !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        background: rgba(10, 14, 26, 0.96) !important;
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(25px) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
        justify-content: space-around !important;
        align-items: center !important;
        height: 56px !important;
        padding: 4px 0 !important;
        margin: 0 !important;
        z-index: 9999 !important;
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.5) !important;
        gap: 0 !important;
    }

    .dash-nav-link {
        flex-direction: column !important;
        gap: 3px !important;
        font-size: 0.68rem !important;
        padding: 6px 4px !important;
        border-radius: 0 !important;
        background: transparent !important;
        color: var(--text-secondary) !important;
        flex: 1 !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: color var(--transition-fast) !important;
    }

    .dash-nav-link:hover {
        background: transparent !important;
        color: var(--text-primary) !important;
    }

    .dash-nav-link.active {
        color: var(--text-primary) !important;
        background: transparent !important;
    }

    .dash-nav-link.active i {
        color: var(--accent-cyan) !important;
        filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.4)) !important;
    }

    .dash-nav-link i {
        font-size: 1.15rem !important;
    }

    /* Compress Navbar Header on Mobile */
    .dash-nav {
        padding: 0 16px !important;
        height: 56px !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(10, 14, 26, 0.96) !important;
    }

    .dash-nav-left {
        gap: 16px !important;
    }

    .dash-nav-right {
        gap: 10px !important;
    }

    .lang-switch {
        padding: 4px 8px !important;
        font-size: 0.75rem !important;
        background-position: right 6px top 50% !important;
        padding-right: 22px !important;
    }

    .dash-user {
        gap: 6px !important;
    }

    .dash-avatar {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.75rem !important;
    }

    .dash-username {
        display: none !important;
    }

    .dash-logout-btn {
        padding: 5px 12px !important;
        font-size: 0.75rem !important;
    }

    /* Pad Shell Containers to Avoid Bottom Tab Bar Overlay */
    .dash-main,
    .payment-shell,
    .container {
        padding-bottom: 96px !important;
    }
}

/* Touch-friendly Scrollable Tables */
.table-scroll,
.table-container {
    -webkit-overflow-scrolling: touch;
}

/* FAQ Accordion Styles for Info Pages */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-family: inherit;
    transition: background var(--transition-fast);
}

.faq-arrow {
    transition: transform var(--transition-normal);
    font-size: 0.85rem;
    opacity: 0.7;
    color: var(--accent-cyan);
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 20px 16px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}


