/* ============================================================
   AI Marketing Platform — Ultra Premium Clone Dark Theme
   Deep Space Purple · Glassmorphism · Neon Glow · 3D Effects
   ============================================================ */

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

:root {
    --gradient-primary: linear-gradient(135deg, #9333ea, #6C4CF1);
    --bg-primary: #0a0118;
    --bg-secondary: rgba(255,255,255,0.015);
    --text-secondary: rgba(255,255,255,0.6);
}

/* ===== BASE RESET FOR DARK THEME ===== */
body.landing-dark-theme {
    background: #0a0118;
    background-image:
        radial-gradient(ellipse 80% 60% at 10% 50%, rgba(108,76,241,0.22) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 90% 20%, rgba(168,85,247,0.18) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(108,76,241,0.12) 0%, transparent 50%);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Subtle animated grid lines */
body.landing-dark-theme::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

/* ===== STICKY GLASS NAVBAR ===== */
.landing-dark-theme .landing-header-dark {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10,1,24,0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0;
}

.landing-dark-theme .navbar {
    padding: 10px 0;
}

.landing-dark-theme .navbar-toggler {
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.08);
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.landing-dark-theme .navbar-toggler:hover,
.landing-dark-theme .navbar-toggler:focus {
    background: rgba(255,255,255,0.14);
    border-color: rgba(192,132,252,0.4);
    box-shadow: 0 0 12px rgba(192,132,252,0.25);
}

.landing-dark-theme .navbar-toggler-icon {
    width: 1.3em;
    height: 1.3em;
    filter: invert(1) brightness(2);
}

.landing-dark-theme .navbar-brand {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff !important;
    letter-spacing: -0.4px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.landing-dark-theme .navbar-brand .fa-bolt {
    background: linear-gradient(135deg, #c084fc, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.4rem;
    filter: drop-shadow(0 0 8px rgba(192,132,252,0.5));
}

.landing-dark-theme .landing-nav-dark .nav-link {
    color: rgba(255,255,255,0.72);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 999px;
    transition: all 0.25s ease;
}

.landing-dark-theme .landing-nav-dark .nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.06);
}

.landing-dark-theme .landing-nav-dark .nav-link.active {
    color: #fff;
    background: rgba(108,76,241,0.18);
    border: 1px solid rgba(168,85,247,0.25);
}

.landing-dark-theme .btn-dashboard-dark {
    background: linear-gradient(135deg, #9333ea, #6C4CF1);
    color: #fff !important;
    border: none;
    border-radius: 10px;
    padding: 10px 22px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.25s;
    box-shadow: 0 4px 16px rgba(108,76,241,0.35);
    text-decoration: none;
}

.landing-dark-theme .btn-dashboard-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(108,76,241,0.55);
}

/* ===== HERO SECTION ===== */
.landing-dark-theme .hero-section-modern {
    padding: 100px 0 70px;
    position: relative;
    z-index: 1;
}

/* ===== HERO BADGE ===== */
.landing-dark-theme .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108,76,241,0.12);
    border: 1px solid rgba(168,85,247,0.28);
    border-radius: 999px;
    padding: 8px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #c084fc;
    margin-bottom: 22px;
    backdrop-filter: blur(4px);
    box-shadow: 0 0 20px rgba(168,85,247,0.15);
}

.landing-dark-theme .hero-badge .fa-bolt {
    color: #c084fc;
}

/* ===== HERO HEADLINE ===== */
.landing-dark-theme .hero-headline {
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.13;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 22px;
}

.landing-dark-theme .hero-headline .highlight-purple {
    background: linear-gradient(135deg, #c084fc 0%, #9333ea 50%, #6C4CF1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== HERO SUBHEADING ===== */
.landing-dark-theme .hero-subheading {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.68);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 520px;
    font-weight: 400;
}

/* ===== CTA BUTTONS ===== */
.landing-dark-theme .hero-cta-primary {
    background: linear-gradient(135deg, #9333ea, #6C4CF1);
    border: none;
    color: #fff !important;
    border-radius: 12px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 28px rgba(108,76,241,0.4);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.landing-dark-theme .hero-cta-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: skewX(-15deg);
    animation: shimmer 3.5s infinite;
}

@keyframes shimmer {
    0%   { left: -100%; }
    20%  { left: 150%; }
    100% { left: 150%; }
}

.landing-dark-theme .hero-cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px rgba(108,76,241,0.6);
    color: #fff !important;
}

.landing-dark-theme .hero-cta-secondary {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.14);
    color: #fff !important;
    border-radius: 12px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.landing-dark-theme .hero-cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-3px);
}

.hero-play-btn {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #fff;
    flex-shrink: 0;
}

/* ===== HERO HIGHLIGHTS ===== */
.landing-dark-theme .hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 22px;
}

.landing-dark-theme .hero-highlights span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.78);
    font-weight: 500;
}

.landing-dark-theme .hero-highlights .fa-check-circle {
    color: #22c55e;
    font-size: 1rem;
    filter: drop-shadow(0 0 4px rgba(34,197,94,0.4));
}

/* ===== STATS BAR ===== */
.landing-dark-theme .home-stats-bar {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.landing-dark-theme .home-stat-value {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1;
}

.landing-dark-theme .home-stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== 3D HERO VISUAL WRAPPER ===== */
.hero-visual-3d-wrapper {
    position: relative;
    width: 100%;
    height: 660px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1800px;
}

/* Purple glow behind dashboard */
.hero-visual-3d-wrapper::before {
    content: '';
    position: absolute;
    inset: 10%;
    background: radial-gradient(ellipse, rgba(147,51,234,0.45) 0%, transparent 65%);
    filter: blur(50px);
    z-index: 0;
    animation: bgGlow 5s ease-in-out infinite alternate;
    border-radius: 50%;
}

@keyframes bgGlow {
    0%   { opacity: 0.6; transform: scale(0.9); }
    100% { opacity: 1;   transform: scale(1.1); }
}

/* ===== DASHBOARD GLASS CARD ===== */
.hero-dashboard-glass {
    position: relative;
    width: 500px;
    height: 420px;
    background: rgba(255,255,255,0.92);
    border-radius: 22px;
    transform: rotateY(-22deg) rotateX(12deg) rotateZ(4deg);
    box-shadow:
        -28px 36px 80px rgba(0,0,0,0.65),
        inset 0 1px 0 rgba(255,255,255,0.9),
        0 0 60px rgba(108,76,241,0.3);
    padding: 22px 20px 20px 68px;
    display: flex;
    flex-direction: column;
    z-index: 2;
    transition: transform 0.6s ease;
    overflow: hidden;
}

.hero-dashboard-glass:hover {
    transform: rotateY(-16deg) rotateX(8deg) rotateZ(2deg) scale(1.02);
}

/* ===== DASHBOARD SIDEBAR ===== */
.hero-dashboard-sidebar {
    position: absolute;
    left: -24px;
    top: 20px;
    bottom: 20px;
    width: 58px;
    background: #130d2e;
    border-radius: 16px;
    box-shadow: -12px 12px 40px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 0;
    gap: 18px;
    z-index: 10;
    border: 1px solid rgba(255,255,255,0.06);
}

.hero-dashboard-sidebar-icon {
    width: 34px; height: 34px;
    border-radius: 9px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s;
}

.hero-dashboard-sidebar-icon.active {
    background: linear-gradient(135deg, #9333ea, #6C4CF1);
    color: #fff;
    box-shadow: 0 0 14px rgba(147,51,234,0.55);
}

/* ===== DASHBOARD CONTENT ===== */
.hero-dashboard-header {
    margin-bottom: 14px;
}

.hero-dashboard-header-title {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
}

.hero-dashboard-header-sub {
    font-size: 10px;
    color: #64748b;
    margin-top: 2px;
}

.hero-dashboard-stats-row {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.hero-dashboard-stat {
    flex: 1;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 10px;
    padding: 10px 10px 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.hero-dashboard-stat-title {
    font-size: 9px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-dashboard-stat-val {
    font-size: 20px;
    font-weight: 800;
    margin: 4px 0 2px;
    line-height: 1;
}

.hero-dashboard-stat-trend {
    font-size: 10px;
    font-weight: 700;
}

.hero-dashboard-stat-trend.up   { color: #22c55e; }
.hero-dashboard-stat-trend.down { color: #ef4444; }

.hero-dashboard-main {
    display: flex;
    gap: 10px;
    flex: 1;
    min-height: 0;
}

.hero-dashboard-chart {
    flex: 2;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
}

.hero-dashboard-pie {
    flex: 1;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-chart-label {
    font-size: 10px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 8px;
}

.hero-pie-chart {
    display: flex;
    justify-content: center;
    margin: 4px 0;
}

.hero-pie-legend {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 6px;
    width: 100%;
}

.hero-pie-legend span {
    font-size: 9px;
    color: #64748b;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-pie-legend span i {
    width: 8px; height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

/* ===== FLOATING INFO CARDS ===== */
.hero-floating-card {
    position: absolute;
    background: rgba(255,255,255,0.94);
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    z-index: 8;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 200px;
}

.hero-fc-1 {
    top: 30px;
    right: -30px;
    animation: floatCard1 7s ease-in-out infinite;
}
.hero-fc-2 {
    top: 190px;
    right: -50px;
    animation: floatCard2 6s ease-in-out infinite;
}
.hero-fc-3 {
    top: 340px;
    right: -65px;
    animation: floatCard3 8s ease-in-out infinite;
}

@keyframes floatCard1 {
    0%,100% { transform: translateY(0px); }
    50%      { transform: translateY(-12px); }
}
@keyframes floatCard2 {
    0%,100% { transform: translateY(0px); }
    50%      { transform: translateY(-8px); }
}
@keyframes floatCard3 {
    0%,100% { transform: translateY(0px); }
    50%      { transform: translateY(-14px); }
}

.hero-fc-icon {
    width: 40px; height: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-fc-content { flex: 1; }

.hero-fc-title {
    font-size: 13px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
}

.hero-fc-sub {
    font-size: 11px;
    color: #64748b;
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero-fc-progress {
    height: 5px;
    background: #f1f5f9;
    border-radius: 999px;
    overflow: hidden;
    margin: 8px 0 4px;
    width: 100%;
}

.hero-fc-progress-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #9333ea, #6C4CF1);
    box-shadow: 0 0 8px rgba(147,51,234,0.5);
    animation: fillPulse 3s ease-in-out infinite;
}

@keyframes fillPulse {
    0%,100% { width: 85%; }
    50%      { width: 92%; }
}

.hero-fc-percent {
    font-size: 11px;
    font-weight: 700;
    color: #9333ea;
}

.hero-fc-big-stat {
    font-size: 22px;
    font-weight: 900;
    color: #1a1a2e;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.hero-fc-big-stat span {
    font-size: 11px;
    font-weight: 500;
    color: #64748b;
}

.hero-fc-trend-up {
    font-size: 13px;
    font-weight: 800;
    color: #22c55e;
    margin-top: 2px;
}

.hero-fc-mini-chart {
    width: 60px; height: 26px;
}

/* ===== FLOATING SOCIAL ICONS ===== */
.hero-social-icon {
    position: absolute;
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 16px 40px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
    z-index: 9;
}

.hero-si-ig {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    top: 140px;
    left: -30px;
    animation: floatIcon 6s ease-in-out infinite;
}

.hero-si-fb {
    background: linear-gradient(135deg, #1877F2, #0c5dba);
    bottom: 160px;
    left: -15px;
    animation: floatIcon 7s ease-in-out infinite 1s;
}

.hero-si-tw {
    background: linear-gradient(135deg, #1DA1F2, #0b87d4);
    bottom: 60px;
    right: -10px;
    animation: floatIcon 5s ease-in-out infinite 2s;
}

@keyframes floatIcon {
    0%,100% { transform: translateY(0) rotate(-5deg); }
    50%      { transform: translateY(-18px) rotate(5deg); }
}

/* ===== ROBOT HEAD ===== */
.hero-robot-3d {
    position: absolute;
    right: 50px;
    bottom: 10px;
    width: 72px; height: 72px;
    background: linear-gradient(160deg, #e2e8f0 0%, #94a3b8 100%);
    border-radius: 36px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset -8px -8px 16px rgba(0,0,0,0.15), inset 4px 4px 10px rgba(255,255,255,0.6);
    z-index: 10;
    animation: floatIcon 5s ease-in-out infinite 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-robot-eyes {
    display: flex;
    gap: 11px;
}

.hero-robot-eye {
    width: 14px; height: 7px;
    background: #7c3aed;
    border-radius: 4px;
    box-shadow: 0 0 12px #a855f7, 0 0 4px #c084fc;
    animation: blink 5s infinite;
}

@keyframes blink {
    0%,95%,100% { transform: scaleY(1); }
    97%          { transform: scaleY(0.08); }
}

/* ===== PARTICLE DOTS ===== */
.hero-particle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    animation: particleDrift 8s ease-in-out infinite;
    pointer-events: none;
}
.hero-p1 { width: 10px; height: 10px; background: rgba(192,132,252,0.6); top: 6%; left: 12%; box-shadow: 0 0 12px rgba(192,132,252,0.6); animation-delay: 0s; }
.hero-p2 { width: 6px;  height: 6px;  background: rgba(108,76,241,0.7);  bottom: 22%; left: 8%;  box-shadow: 0 0 10px rgba(108,76,241,0.7); animation-delay: 1.5s; }
.hero-p3 { width: 8px;  height: 8px;  background: rgba(168,85,247,0.5);  top: 18%; right: 8%; box-shadow: 0 0 10px rgba(168,85,247,0.5); animation-delay: 1s; }
.hero-p4 { width: 5px;  height: 5px;  background: rgba(192,132,252,0.8); bottom: 12%; right: 12%; box-shadow: 0 0 8px rgba(192,132,252,0.8); animation-delay: 2.5s; }

@keyframes particleDrift {
    0%,100% { transform: translateY(0)   scale(1);   opacity: 0.8; }
    50%      { transform: translateY(-22px) scale(1.4); opacity: 1; }
}

/* ===== TRUSTED BRANDS BANNER ===== */
.trusted-brands-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 60px;
    padding: 26px 44px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 22px;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.06);
}

.trusted-brands-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
    max-width: 200px;
    font-weight: 500;
}

.trusted-brands-text strong {
    color: #fff;
    font-weight: 800;
}

.trusted-brands-logos {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trusted-brand-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.42);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: -0.2px;
    transition: all 0.25s;
    white-space: nowrap;
    cursor: default;
}

.trusted-brand-item i {
    font-size: 1.35rem;
}

.trusted-brand-item:hover {
    color: rgba(255,255,255,0.85);
    transform: translateY(-2px);
}

/* ===== SECTIONS BELOW HERO ===== */
.landing-dark-theme .home-section,
.landing-dark-theme .home-section-alt {
    background: transparent;
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.landing-dark-theme .home-section-alt {
    background: rgba(255,255,255,0.018);
}

.landing-dark-theme .home-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.landing-dark-theme .home-section-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.landing-dark-theme .home-section-header p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
}

/* Feature Cards */
.landing-dark-theme .feature-card-modern {
    background: rgba(255,255,255,0.028);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 28px 24px;
    color: #fff;
    height: 100%;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.landing-dark-theme .feature-card-modern:hover {
    background: rgba(108,76,241,0.08);
    border-color: rgba(168,85,247,0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(108,76,241,0.2);
}

.landing-dark-theme .feature-card-modern h5 {
    color: #fff !important;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.landing-dark-theme .feature-card-modern p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

/* Pricing Cards */
.landing-dark-theme .pricing-card-modern {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px 28px;
    color: #fff;
    height: 100%;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.landing-dark-theme .pricing-card-modern.popular {
    background: rgba(108,76,241,0.12);
    border-color: rgba(168,85,247,0.4);
    box-shadow: 0 0 40px rgba(108,76,241,0.2);
    padding-top: 48px;
}

.landing-dark-theme .pricing-card-modern.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: 0; left: 0; right: 0;
    background: linear-gradient(135deg, #9333ea, #6C4CF1);
    color: white;
    text-align: center;
    padding: 6px 0;
    font-size: 0.78rem;
    font-weight: 700;
}

.landing-dark-theme .pricing-card-modern:hover {
    transform: translateY(-6px);
    border-color: rgba(168,85,247,0.4);
    box-shadow: 0 20px 50px rgba(108,76,241,0.2);
}

.landing-dark-theme .pricing-card-modern h5 {
    color: #fff !important;
    font-weight: 700;
    font-size: 1.2rem;
}

.landing-dark-theme .pricing-price {
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1.5px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.landing-dark-theme .pricing-price small {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    letter-spacing: 0;
}

.landing-dark-theme .pricing-card-modern li {
    color: rgba(255,255,255,0.75);
}

.landing-dark-theme .btn-outline-primary {
    border-color: rgba(168,85,247,0.5);
    color: #c084fc;
    border-radius: 12px;
    font-weight: 600;
}

.landing-dark-theme .btn-outline-primary:hover {
    background: rgba(108,76,241,0.12);
    border-color: #c084fc;
    color: #fff;
}

/* Platform icons */
.landing-dark-theme .platform-icon-modern {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.landing-dark-theme .platform-icon-modern:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

/* CTA Section */
.landing-dark-theme .cta-section-modern {
    background: linear-gradient(135deg, rgba(108,76,241,0.2) 0%, rgba(147,51,234,0.15) 100%);
    border: 1px solid rgba(168,85,247,0.2);
    border-radius: 28px;
    margin: 0 0 80px;
    padding: 70px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.landing-dark-theme .cta-section-modern::before {
    content: '';
    position: absolute;
    top: -50%; left: -10%;
    width: 60%; height: 200%;
    background: radial-gradient(circle, rgba(168,85,247,0.12) 0%, transparent 60%);
    pointer-events: none;
}

.landing-dark-theme .cta-section-modern h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
}

.landing-dark-theme .cta-section-modern p {
    color: rgba(255,255,255,0.7);
}

.landing-dark-theme .cta-section-modern .btn {
    background: #fff;
    color: #6C4CF1 !important;
    font-weight: 700;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.landing-dark-theme .cta-section-modern .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

/* ===== 3D PREMIUM FOOTER ===== */
.landing-dark-theme .landing-footer {
    background: linear-gradient(180deg, rgba(10,1,24,0.4) 0%, rgba(15,5,35,0.95) 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 60px 0 24px;
    color: rgba(255,255,255,0.6);
    position: relative;
    z-index: 1;
    margin-top: 40px;
}

/* Animated gradient top border */
.landing-dark-theme .landing-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #9333ea, #c084fc, #6C4CF1, #9333ea, transparent);
    background-size: 200% 100%;
    animation: footerGradient 4s linear infinite;
}

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

/* Glow orbs in footer background */
.landing-dark-theme .landing-footer::after {
    content: '';
    position: absolute;
    top: -60px; right: 10%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(147,51,234,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.landing-dark-theme .landing-footer > .container {
    position: relative;
    z-index: 1;
}

/* Footer column headings with glow */
.landing-dark-theme .landing-footer h6 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 18px;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.landing-dark-theme .landing-footer h6::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 32px; height: 2px;
    background: linear-gradient(90deg, #9333ea, #c084fc);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(147,51,234,0.5);
}

/* First column brand heading */
.landing-dark-theme .landing-footer h6 .fa-bolt {
    filter: drop-shadow(0 0 6px rgba(192,132,252,0.6));
}

/* Footer links with 3D hover */
.landing-dark-theme .landing-footer a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 0;
}

.landing-dark-theme .landing-footer a i {
    transition: all 0.25s ease;
    color: rgba(168,85,247,0.5);
    width: 18px;
}

.landing-dark-theme .landing-footer ul a:hover {
    color: #c084fc;
    transform: translateX(6px);
    text-shadow: 0 0 12px rgba(192,132,252,0.4);
}

.landing-dark-theme .landing-footer ul a:hover i {
    color: #c084fc;
    filter: drop-shadow(0 0 4px rgba(192,132,252,0.6));
}

/* Social icons — 3D glass circles */
.landing-dark-theme .landing-footer .d-flex.gap-3 a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.06);
}

.landing-dark-theme .landing-footer .d-flex.gap-3 a:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 24px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.12);
}

/* Individual social icon hover colors */
.landing-dark-theme .landing-footer .d-flex.gap-3 a[href*="facebook"]:hover {
    background: linear-gradient(135deg, #1877F2, #0c5dba);
    color: #fff;
    border-color: rgba(24,119,242,0.5);
    box-shadow: 0 10px 24px rgba(24,119,242,0.35);
}
.landing-dark-theme .landing-footer .d-flex.gap-3 a[href*="twitter"]:hover {
    background: linear-gradient(135deg, #1DA1F2, #0b87d4);
    color: #fff;
    border-color: rgba(29,161,242,0.5);
    box-shadow: 0 10px 24px rgba(29,161,242,0.35);
}
.landing-dark-theme .landing-footer .d-flex.gap-3 a[href*="instagram"]:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff;
    border-color: rgba(214,36,159,0.5);
    box-shadow: 0 10px 24px rgba(214,36,159,0.35);
}
.landing-dark-theme .landing-footer .d-flex.gap-3 a[href*="linkedin"]:hover {
    background: linear-gradient(135deg, #0A66C2, #004182);
    color: #fff;
    border-color: rgba(10,102,194,0.5);
    box-shadow: 0 10px 24px rgba(10,102,194,0.35);
}
.landing-dark-theme .landing-footer .d-flex.gap-3 a[href*="youtube"]:hover {
    background: linear-gradient(135deg, #FF0000, #cc0000);
    color: #fff;
    border-color: rgba(255,0,0,0.5);
    box-shadow: 0 10px 24px rgba(255,0,0,0.35);
}

/* Footer bottom bar */
.landing-dark-theme .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 22px;
    margin-top: 36px;
    color: rgba(255,255,255,0.4);
    position: relative;
}

.landing-dark-theme .footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px; left: 50%;
    transform: translateX(-50%);
    width: 120px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168,85,247,0.4), transparent);
}

.landing-dark-theme .footer-bottom p {
    transition: color 0.2s;
}

.landing-dark-theme .footer-bottom p:hover {
    color: rgba(255,255,255,0.6);
}

/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 991px) {
    .landing-dark-theme .landing-footer { padding: 48px 0 20px; }
    .landing-dark-theme .landing-footer .row.g-4 { row-gap: 28px; }
    .landing-dark-theme .landing-footer h6 { margin-bottom: 14px; font-size: 0.95rem; }
    .landing-dark-theme .landing-footer ul li { margin-bottom: 10px; }
    .landing-dark-theme .landing-footer .col-lg-2 { margin-bottom: 8px; }
}

@media (max-width: 767px) {
    .landing-dark-theme .landing-footer { padding: 40px 0 18px; }
    .landing-dark-theme .landing-footer .row.g-4 { row-gap: 24px; }
    .landing-dark-theme .landing-footer h6 {
        margin-bottom: 12px;
        font-size: 0.9rem;
        cursor: pointer;
    }
    .landing-dark-theme .landing-footer p.small { font-size: 0.82rem; line-height: 1.6; }
    .landing-dark-theme .landing-footer .d-flex.gap-3 { gap: 14px !important; }
    .landing-dark-theme .landing-footer .d-flex.gap-3 a { font-size: 1rem; }
    .landing-dark-theme .footer-bottom { padding-top: 18px; }
    .landing-dark-theme .footer-bottom p { font-size: 0.8rem; }
}

@media (max-width: 575px) {
    .landing-dark-theme .landing-footer { padding: 32px 0 16px; margin-top: 24px; }
    .landing-dark-theme .landing-footer .row.g-4 { row-gap: 20px; }
    .landing-dark-theme .landing-footer h6 {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    .landing-dark-theme .landing-footer ul li { margin-bottom: 8px; }
    .landing-dark-theme .landing-footer ul a { font-size: 0.82rem; }
    .landing-dark-theme .landing-footer ul a i { font-size: 0.75rem; margin-right: 6px !important; }
    .landing-dark-theme .landing-footer p.small { font-size: 0.78rem; }
    .landing-dark-theme .landing-footer .d-flex.gap-3 { gap: 12px !important; }
    .landing-dark-theme .landing-footer .d-flex.gap-3 a { font-size: 0.9rem; }
    .landing-dark-theme .footer-bottom { padding-top: 14px; margin-top: 8px; }
    .landing-dark-theme .footer-bottom p { font-size: 0.75rem; }
}

/* Footer brand description text */
.landing-dark-theme .landing-footer p.small {
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .hero-dashboard-glass { width: 440px; height: 380px; }
    .hero-fc-1 { right: -15px; }
    .hero-fc-2 { right: -30px; }
    .hero-fc-3 { right: -40px; }
}

@media (max-width: 991px) {
    .landing-dark-theme .hero-headline { font-size: 2.6rem; }
    .hero-visual-3d-wrapper { height: 520px; }
    .hero-dashboard-glass { width: 400px; height: 340px; transform: rotateY(-15deg) rotateX(8deg) rotateZ(3deg); }
    .hero-fc-1 { right: -10px; top: 20px; }
    .hero-fc-2 { right: -20px; top: 165px; }
    .hero-fc-3 { right: -25px; top: 310px; }
    .trusted-brands-banner { flex-direction: column; text-align: center; }
    .trusted-brands-text { max-width: 100%; }
    .trusted-brands-logos { justify-content: center; gap: 20px; }
}

@media (max-width: 575px) {
    .landing-dark-theme .hero-headline { font-size: 2rem; letter-spacing: -1px; }
    .hero-visual-3d-wrapper { height: 360px; }
    .hero-dashboard-glass { width: 290px; height: 250px; padding: 14px 14px 14px 52px; transform: rotateY(-10deg) rotateX(6deg); }
    .landing-dark-theme .home-stats-bar { gap: 16px; }
    .landing-dark-theme .home-stat-value { font-size: 1.8rem; }
}

/* ============================================================
   LEGACY LANDING PAGE RESTORATION (Pricing, Features, Contact)
   ============================================================ */

/* Hero Section Base */
.hero-section {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #0f0a1e 0%, #17102e 100%);
    color: white; 
    position: relative; 
    overflow: hidden;
}
.hero-section::before {
    content: ''; position: absolute; top: -50%; right: -10%;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(108,76,241,0.15) 0%, transparent 70%);
}
.hero-section::after {
    content: ''; position: absolute; bottom: -30%; left: -10%;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 70%);
}
.hero-section .container { position: relative; z-index: 2; }
.hero-headline { font-size: 3.5rem; font-weight: 800; line-height: 1.15; margin-bottom: 24px; letter-spacing: -1px; color: #fff; }
.hero-subheading { font-size: 1.25rem; color: rgba(255,255,255,0.7); max-width: 600px; margin-bottom: 32px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(108,76,241,0.15); border: 1px solid rgba(108,76,241,0.3);
    padding: 6px 16px; border-radius: 999px; font-size: 0.85rem;
    color: #c084fc; margin-bottom: 24px;
}

/* Base Feature Card */
.feature-card {
    background: rgba(255,255,255,0.03); 
    border-radius: 18px; 
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.08); 
    transition: all 0.3s ease; 
    height: 100%;
    color: #fff;
    backdrop-filter: blur(8px);
}
.feature-card:hover { 
    box-shadow: 0 20px 50px rgba(108,76,241,0.2); 
    transform: translateY(-6px); 
    border-color: rgba(168,85,247,0.3); 
    background: rgba(108,76,241,0.08);
}
.feature-icon {
    width: 56px; height: 56px; border-radius: 14px; display: flex;
    align-items: center; justify-content: center; font-size: 1.5rem;
    margin-bottom: 20px;
}
.feature-card h5 { color: #fff !important; font-weight: 700; margin-bottom: 10px; font-size: 1.1rem; }
.feature-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.65; margin: 0; }

/* Base Pricing Card */
.pricing-card {
    background: rgba(255,255,255,0.03); 
    border-radius: 20px; 
    padding: 32px 28px;
    border: 1px solid rgba(255,255,255,0.08); 
    transition: all 0.3s ease; 
    height: 100%; 
    position: relative;
    color: #fff;
    overflow: hidden;
}
.pricing-card:hover { 
    transform: translateY(-6px); 
    border-color: rgba(168,85,247,0.4); 
    box-shadow: 0 20px 50px rgba(108,76,241,0.2); 
}
.pricing-card.popular { 
    background: rgba(108,76,241,0.12);
    border-color: rgba(168,85,247,0.4); 
    box-shadow: 0 0 40px rgba(108,76,241,0.2);
    padding-top: 48px;
}
.pricing-card.popular::before {
    content: 'Most Popular'; position: absolute; top: 0; left: 0; right: 0;
    background: linear-gradient(135deg, #9333ea, #6C4CF1); color: white;
    text-align: center; padding: 6px 0; font-size: 0.78rem; font-weight: 700;
}
.pricing-price { font-size: 2.4rem; font-weight: 900; letter-spacing: -1.5px; color: #fff; display: flex; align-items: baseline; gap: 4px; }
.pricing-price small { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.5); letter-spacing: 0; }
.pricing-card li { color: rgba(255,255,255,0.75); }
.pricing-card h5 { color: #fff !important; font-weight: 700; font-size: 1.2rem; }

/* Platform Icons Base */
.platform-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.platform-icon {
    width: 60px; height: 60px; border-radius: 16px; display: flex;
    align-items: center; justify-content: center; font-size: 1.5rem;
    color: white; transition: all 0.3s; cursor: pointer; position: relative;
}
.platform-icon:hover { transform: translateY(-6px) scale(1.08); box-shadow: 0 12px 28px rgba(0,0,0,0.3); }

/* Global Utilities on Landing Pages */
.py-5 { padding-top: 80px !important; padding-bottom: 80px !important; }
.bg-white { background: #0f0a1e !important; }
.bg-light { background: #130d2e !important; }
h2.fw-bold { color: #fff !important; font-size: 2.4rem; letter-spacing: -1px; }
h4.fw-bold { color: #fff !important; }
p.text-muted { color: rgba(255,255,255,0.6) !important; font-size: 1.05rem; }
.landing-dark-theme .text-dark { color: #fff !important; }
.landing-dark-theme .text-secondary { color: rgba(255,255,255,0.6) !important; }
.landing-dark-theme .blog-content { color: rgba(255,255,255,0.8); line-height: 1.8; }
.landing-dark-theme .blog-content h1,
.landing-dark-theme .blog-content h2,
.landing-dark-theme .blog-content h3,
.landing-dark-theme .blog-content h4,
.landing-dark-theme .blog-content h5,
.landing-dark-theme .blog-content h6 { color: #fff; }
.landing-dark-theme .blog-content p { color: rgba(255,255,255,0.75); }
.landing-dark-theme .blog-content a { color: #c084fc; }
.landing-dark-theme .blog-content blockquote {
    border-left: 3px solid rgba(168,85,247,0.4);
    padding-left: 16px;
    color: rgba(255,255,255,0.6);
}
.landing-dark-theme .blog-content code {
    background: rgba(255,255,255,0.06);
    color: #c084fc;
    padding: 2px 6px;
    border-radius: 4px;
}
.landing-dark-theme .blog-content pre {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 16px;
}
.landing-dark-theme .blog-content img { border-radius: 12px; margin: 16px 0; }
.landing-dark-theme hr { border-color: rgba(255,255,255,0.08); }
.landing-dark-theme .text-decoration-none { color: #c084fc; }

/* ===== LEGAL PAGE STYLES ===== */
.landing-dark-theme .legal-page-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 40px 36px;
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.landing-dark-theme .legal-page-heading {
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    margin-top: 28px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.landing-dark-theme .legal-page-heading:first-child {
    margin-top: 0;
}

.landing-dark-theme .legal-page-text {
    color: rgba(255,255,255,0.65);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

.landing-dark-theme .legal-page-list {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.9;
    padding-left: 20px;
}

.landing-dark-theme .legal-page-list li {
    margin-bottom: 6px;
}

.landing-dark-theme .legal-page-link {
    color: #c084fc;
    text-decoration: none;
    transition: all 0.2s ease;
}

.landing-dark-theme .legal-page-link:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(192,132,252,0.4);
}

/* ===== HELP CENTER FAQ ===== */
.landing-dark-theme .help-faq-section {
    padding: 60px 0 80px;
    position: relative;
    z-index: 1;
}

/* Search bar */
.landing-dark-theme .help-search-wrapper {
    position: relative;
    max-width: 520px;
    width: 100%;
}

.landing-dark-theme .help-search-icon {
    position: absolute;
    left: 20px; top: 50%;
    transform: translateY(-50%);
    color: rgba(168,85,247,0.5);
    font-size: 1rem;
    z-index: 2;
    pointer-events: none;
}

.landing-dark-theme .help-search-input {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    padding: 14px 24px 14px 52px;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.landing-dark-theme .help-search-input::placeholder {
    color: rgba(255,255,255,0.35);
}

.landing-dark-theme .help-search-input:focus {
    background: rgba(255,255,255,0.06);
    border-color: rgba(168,85,247,0.4);
    box-shadow: 0 0 0 3px rgba(147,51,234,0.12), 0 8px 28px rgba(108,76,241,0.1);
    outline: none;
}

/* FAQ header */
.landing-dark-theme .help-faq-header {
    margin-bottom: 40px;
}

.landing-dark-theme .help-faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108,76,241,0.12);
    border: 1px solid rgba(168,85,247,0.28);
    border-radius: 999px;
    padding: 7px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #c084fc;
    margin-bottom: 16px;
    backdrop-filter: blur(4px);
}

.landing-dark-theme .help-faq-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.landing-dark-theme .help-faq-subtitle {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
}

/* Accordion items — glass cards */
.landing-dark-theme .help-accordion-item {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.landing-dark-theme .help-accordion-item:hover {
    border-color: rgba(168,85,247,0.2);
    background: rgba(108,76,241,0.04);
    box-shadow: 0 8px 24px rgba(108,76,241,0.08);
}

.landing-dark-theme .help-accordion-item:not(.collapsed-show):hover {
    transform: translateY(-2px);
}

/* Accordion button */
.landing-dark-theme .help-accordion-btn {
    background: transparent;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 18px 22px;
    border: none;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.25s ease;
    box-shadow: none !important;
}

.landing-dark-theme .help-accordion-btn:hover {
    color: #c084fc;
}

.landing-dark-theme .help-accordion-btn:not(.collapsed) {
    color: #c084fc;
    background: rgba(108,76,241,0.06);
    border-bottom: 1px solid rgba(168,85,247,0.15);
}

/* Chevron icon */
.landing-dark-theme .help-accordion-chevron {
    font-size: 0.75rem;
    color: rgba(168,85,247,0.5);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.landing-dark-theme .help-accordion-btn:not(.collapsed) .help-accordion-chevron {
    transform: rotate(90deg);
    color: #c084fc;
}

.landing-dark-theme .help-accordion-btn span {
    flex: 1;
}

/* Accordion body */
.landing-dark-theme .help-accordion-body {
    padding: 18px 22px 20px 48px;
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    line-height: 1.7;
    background: rgba(0,0,0,0.12);
}

/* CTA section */
.landing-dark-theme .help-cta-section {
    background: linear-gradient(135deg, rgba(108,76,241,0.08) 0%, rgba(147,51,234,0.05) 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.landing-dark-theme .help-cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 400px; height: 200px;
    background: radial-gradient(ellipse, rgba(147,51,234,0.15) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

/* Form overrides on dark landing pages (e.g. contact) */
.landing-dark-theme .app-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
}
.landing-dark-theme .form-control {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}
.landing-dark-theme .form-label, 
.landing-dark-theme .app-card h6 {
    color: #fff;
}
.landing-dark-theme .text-muted {
    color: rgba(255,255,255,0.6) !important;
}

/* ===== AI TOOLS & PLATFORMS RESTORATION ===== */

/* AI Tool Card */
.ai-tool-card {
    background: rgba(255,255,255,0.03); 
    border-radius: 18px; 
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.08); 
    transition: all 0.3s ease; 
    height: 100%;
    color: #fff;
    backdrop-filter: blur(8px);
}
.ai-tool-card:hover { 
    box-shadow: 0 20px 50px rgba(108,76,241,0.2); 
    transform: translateY(-6px); 
    border-color: rgba(168,85,247,0.3); 
    background: rgba(108,76,241,0.08);
}
.ai-tool-icon {
    width: 48px; height: 48px; border-radius: 12px; display: flex;
    align-items: center; justify-content: center; font-size: 1.3rem;
    margin-bottom: 16px;
}
.ai-tool-card h6 { color: #fff !important; font-weight: 700; margin-bottom: 8px; font-size: 1.05rem; }
.ai-tool-card p { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.6; margin: 0; }

/* Stats Bar */
.home-stats-bar {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 40px;
    padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1);
}
.home-stat-item { text-align: center; }
.home-stat-value { font-size: 2.5rem; font-weight: 800; color: #fff; letter-spacing: -1px; }
.home-stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.6); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* CTA Section Modern */
.cta-section-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0a1e 0%, #17102e 100%);
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.cta-section-modern p { color: rgba(255,255,255,0.7); font-size: 1.1rem; }

/* ===== CONTACT PAGE 3D ===== */
.landing-dark-theme .contact-hero-modern {
    padding: 140px 0 50px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.landing-dark-theme .contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108,76,241,0.12);
    border: 1px solid rgba(168,85,247,0.28);
    border-radius: 999px;
    padding: 8px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #c084fc;
    margin-bottom: 22px;
    backdrop-filter: blur(4px);
    box-shadow: 0 0 20px rgba(168,85,247,0.15);
}

.landing-dark-theme .contact-hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: #fff;
    margin-bottom: 18px;
}

.landing-dark-theme .contact-hero-title .highlight-purple {
    background: linear-gradient(135deg, #c084fc 0%, #9333ea 50%, #6C4CF1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-dark-theme .contact-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    max-width: 500px;
    margin: 0 auto;
}

.landing-dark-theme .contact-section-modern {
    padding: 30px 0 80px;
    position: relative;
    z-index: 1;
}

/* Image Panel — 3D glass with CSS visual */
.landing-dark-theme .contact-image-panel {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    min-height: 480px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(108,76,241,0.12);
    transform: perspective(1000px) rotateY(2deg);
    transition: transform 0.5s ease;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-dark-theme .contact-image-panel:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.landing-dark-theme .contact-image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a0e3a 0%, #0a0118 40%, #1a0e3a 100%);
}

.landing-dark-theme .contact-image-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(147,51,234,0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(108,76,241,0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(168,85,247,0.08) 0%, transparent 60%);
}

.landing-dark-theme .contact-image-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 30px 30px;
}

.landing-dark-theme .contact-image-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(147,51,234,0.25) 0%, transparent 70%);
    filter: blur(40px);
    animation: contactGlow 5s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes contactGlow {
    0%   { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 1;   transform: translate(-50%, -50%) scale(1.15); }
}

.landing-dark-theme .contact-image-content {
    position: relative;
    z-index: 2;
    padding: 40px 32px;
    text-align: center;
}

.landing-dark-theme .contact-image-icon-ring {
    width: 90px; height: 90px;
    border-radius: 50%;
    border: 2px solid rgba(168,85,247,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 0 30px rgba(147,51,234,0.2), inset 0 0 20px rgba(147,51,234,0.1);
    animation: contactRingPulse 3s ease-in-out infinite;
}

@keyframes contactRingPulse {
    0%,100% { box-shadow: 0 0 30px rgba(147,51,234,0.2), inset 0 0 20px rgba(147,51,234,0.1); }
    50%      { box-shadow: 0 0 50px rgba(147,51,234,0.4), inset 0 0 30px rgba(147,51,234,0.15); }
}

.landing-dark-theme .contact-image-icon-ring-inner {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #9333ea, #6C4CF1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 8px 24px rgba(147,51,234,0.4);
}

.landing-dark-theme .contact-image-content h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
}

.landing-dark-theme .contact-image-content p {
    color: rgba(255,255,255,0.65);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 24px;
}

.landing-dark-theme .contact-image-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.landing-dark-theme .contact-img-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 8px 14px;
    backdrop-filter: blur(8px);
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}

.landing-dark-theme .contact-img-stat i {
    color: #c084fc;
    font-size: 1rem;
    filter: drop-shadow(0 0 4px rgba(192,132,252,0.5));
}

/* Form Card — glassmorphism 3D */
.landing-dark-theme .contact-form-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 36px 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.06);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.landing-dark-theme .contact-form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #9333ea, #c084fc, transparent);
    opacity: 0.6;
}

.landing-dark-theme .contact-form-header {
    margin-bottom: 28px;
}

.landing-dark-theme .contact-form-header h2 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.landing-dark-theme .contact-form-header p {
    color: rgba(255,255,255,0.55);
    font-size: 0.92rem;
}

.landing-dark-theme .contact-field label {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.landing-dark-theme .contact-field label i {
    color: rgba(168,85,247,0.6);
}

.landing-dark-theme .contact-field .form-control {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.92rem;
    transition: all 0.25s ease;
}

.landing-dark-theme .contact-field .form-control::placeholder {
    color: rgba(255,255,255,0.3);
}

.landing-dark-theme .contact-field .form-control:focus {
    background: rgba(255,255,255,0.06);
    border-color: #a855f7;
    box-shadow: 0 0 0 3px rgba(147,51,234,0.15), 0 4px 16px rgba(108,76,241,0.1);
    transform: translateY(-1px);
}

.landing-dark-theme .contact-submit-btn {
    background: linear-gradient(135deg, #9333ea, #6C4CF1);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 24px rgba(108,76,241,0.35);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.landing-dark-theme .contact-submit-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-15deg);
    animation: shimmer 3.5s infinite;
}

.landing-dark-theme .contact-submit-btn:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 16px 40px rgba(108,76,241,0.5);
}

/* Contact Success / Error Banners */
.landing-dark-theme .contact-success-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, rgba(34,197,94,0.12), rgba(16,163,74,0.08));
    border: 1px solid rgba(34,197,94,0.3);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 20px;
    animation: contactBannerSlide 0.5s ease;
}

.landing-dark-theme .contact-success-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(34,197,94,0.35);
}

.landing-dark-theme .contact-success-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.landing-dark-theme .contact-success-text strong {
    color: #22c55e;
    font-size: 0.95rem;
    font-weight: 700;
}

.landing-dark-theme .contact-success-text span {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.landing-dark-theme .contact-error-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, rgba(239,68,68,0.12), rgba(220,38,38,0.08));
    border: 1px solid rgba(239,68,68,0.3);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 20px;
    animation: contactBannerSlide 0.5s ease;
}

.landing-dark-theme .contact-error-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(239,68,68,0.35);
}

.landing-dark-theme .contact-error-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.landing-dark-theme .contact-error-text strong {
    color: #ef4444;
    font-size: 0.95rem;
    font-weight: 700;
}

.landing-dark-theme .contact-error-text span {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

@keyframes contactBannerSlide {
    0%   { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Contact Info Cards — 3D hover */
.landing-dark-theme .contact-info-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.landing-dark-theme .contact-info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 2px;
    background: linear-gradient(90deg, #9333ea, #c084fc);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.landing-dark-theme .contact-info-card:hover {
    transform: translateY(-6px);
    background: rgba(108,76,241,0.06);
    border-color: rgba(168,85,247,0.2);
    box-shadow: 0 16px 40px rgba(108,76,241,0.15);
}

.landing-dark-theme .contact-info-card:hover::before {
    width: 60%;
}

.landing-dark-theme .contact-info-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.landing-dark-theme .contact-info-card:hover .contact-info-icon {
    transform: scale(1.1) rotate(-5deg);
}

.landing-dark-theme .contact-info-icon-email {
    background: linear-gradient(135deg, #9333ea, #6C4CF1);
    box-shadow: 0 8px 20px rgba(147,51,234,0.3);
}

.landing-dark-theme .contact-info-icon-phone {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 8px 20px rgba(34,197,94,0.3);
}

.landing-dark-theme .contact-info-icon-location {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 20px rgba(245,158,11,0.3);
}

.landing-dark-theme .contact-info-card h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 1rem;
}

.landing-dark-theme .contact-info-card p {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    margin: 0;
}

/* Contact page responsive */
@media (max-width: 991px) {
    .landing-dark-theme .contact-hero-title { font-size: 2.4rem; }
    .landing-dark-theme .contact-image-panel { min-height: 360px; transform: none; }
    .landing-dark-theme .contact-form-card { padding: 28px 22px; }
}

@media (max-width: 575px) {
    .landing-dark-theme .contact-hero-title { font-size: 2rem; }
    .landing-dark-theme .contact-image-panel { min-height: 280px; }
    .landing-dark-theme .contact-image-stats { gap: 10px; }
    .landing-dark-theme .contact-img-stat { padding: 6px 10px; font-size: 0.75rem; }
}

/* ===== AUTH PAGES (Login / Admin Login) FOR LANDING LAYOUT ===== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #09011a 0%, #1a0e3a 100%);
    padding: 20px;
    position: relative;
    overflow: hidden;
}
.auth-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(147,51,234,0.25);
    border-radius: 24px;
    padding: 44px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(147,51,234,0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    z-index: 1;
}
.auth-logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.auth-logo i { color: #c084fc; }
.auth-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    margin-bottom: 28px;
}
.auth-form .form-label { color: rgba(255,255,255,0.8); font-size: 0.85rem; font-weight: 600; }
.auth-card .form-control {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}
.auth-card .form-control:focus {
    background: rgba(255,255,255,0.08);
    border-color: #a855f7;
    box-shadow: 0 0 0 3px rgba(147,51,234,0.15);
}
.auth-card .input-group .btn {
    border: 1px solid rgba(255,255,255,0.1); 
    background: rgba(255,255,255,0.06); 
    color: rgba(255,255,255,0.5);
}

/* ===== COMPREHENSIVE LANDING MOBILE RESPONSIVE ===== */
@media (max-width: 991px) {
    .landing-dark-theme .navbar { padding: 8px 0; }
    .landing-dark-theme .navbar-brand { font-size: 1.1rem; }
    .landing-dark-theme .landing-nav-dark { margin-top: 14px; padding: 10px 0; }
    .landing-dark-theme .landing-nav-dark .nav-link { padding: 8px 12px; font-size: 0.9rem; }
    .landing-dark-theme .btn-dashboard-dark { padding: 8px 18px; font-size: 0.85rem; }
    .landing-dark-theme .hero-section { padding: 100px 0 60px; }
    .landing-dark-theme .hero-headline { font-size: 2.4rem; }
    .landing-dark-theme .hero-subheading { font-size: 1.05rem; }
    .landing-dark-theme .container { padding-left: 18px; padding-right: 18px; }
    .landing-dark-theme .row > [class*="col-"] { margin-bottom: 20px; }
}

@media (max-width: 767px) {
    .landing-dark-theme .navbar { padding: 6px 0; }
    .landing-dark-theme .navbar-brand { font-size: 1rem; }
    .landing-dark-theme .navbar-brand .fa-bolt { font-size: 1.1rem; }
    .landing-dark-theme .landing-nav-dark .nav-link { padding: 8px 10px; font-size: 0.85rem; }
    .landing-dark-theme .btn-dashboard-dark { padding: 6px 14px; font-size: 0.8rem; }
    .landing-dark-theme .hero-section { padding: 80px 0 48px; }
    .landing-dark-theme .hero-headline { font-size: 2rem; line-height: 1.2; }
    .landing-dark-theme .hero-subheading { font-size: 0.95rem; }
    .landing-dark-theme .container { padding-left: 16px; padding-right: 16px; }
    .landing-dark-theme .row > [class*="col-"] { margin-bottom: 16px; }
    .landing-dark-theme .card { margin-bottom: 16px; }
    .landing-dark-theme .card-body { padding: 18px; }
    .landing-dark-theme .card-title { font-size: 1.05rem; }
    .landing-dark-theme .card-text { font-size: 0.85rem; }
    .landing-dark-theme .btn { padding: 8px 16px; font-size: 0.85rem; }
    .landing-dark-theme .btn-lg { padding: 10px 22px; font-size: 0.95rem; }
    .landing-dark-theme .display-4 { font-size: 2rem; }
    .landing-dark-theme .display-5 { font-size: 1.6rem; }
    .landing-dark-theme .display-6 { font-size: 1.3rem; }
    .landing-dark-theme h1 { font-size: 1.8rem; }
    .landing-dark-theme h2 { font-size: 1.5rem; }
    .landing-dark-theme h3 { font-size: 1.25rem; }
    .landing-dark-theme h4 { font-size: 1.1rem; }
    .landing-dark-theme h5 { font-size: 1rem; }
    .landing-dark-theme h6 { font-size: 0.9rem; }
    .landing-dark-theme p { font-size: 0.88rem; }
    .landing-dark-theme .lead { font-size: 1rem; }
    .landing-dark-theme .small, .landing-dark-theme small { font-size: 0.8rem; }
    .landing-dark-theme .d-flex.gap-2 { gap: 6px !important; }
    .landing-dark-theme .d-flex.gap-3 { gap: 10px !important; }
    .landing-dark-theme .d-flex.gap-4 { gap: 14px !important; }
    .landing-dark-theme .hstack { flex-direction: column; align-items: stretch; gap: 10px; }
    .landing-dark-theme .pricing-card { margin-bottom: 20px; }
    .landing-dark-theme .feature-card { margin-bottom: 16px; }
    .landing-dark-theme .blog-card { margin-bottom: 18px; }
    .landing-dark-theme .testimonial-card { margin-bottom: 16px; }
    .landing-dark-theme .stat-box { margin-bottom: 14px; }
    .landing-dark-theme .faq-card { margin-bottom: 12px; }
    .landing-dark-theme .table { font-size: 0.82rem; }
    .landing-dark-theme .table th { font-size: 0.8rem; padding: 8px; }
    .landing-dark-theme .table td { font-size: 0.8rem; padding: 8px; }
    .landing-dark-theme .modal-dialog { margin: 8px; }
    .landing-dark-theme .modal-body { padding: 16px; }
    .landing-dark-theme .form-control { font-size: 0.88rem; }
    .landing-dark-theme .form-label { font-size: 0.82rem; }
    .landing-dark-theme .alert { padding: 10px 14px; font-size: 0.85rem; }
}

@media (max-width: 575px) {
    .landing-dark-theme .navbar { padding: 6px 0; }
    .landing-dark-theme .navbar-brand { font-size: 0.95rem; }
    .landing-dark-theme .navbar-brand .fa-bolt { font-size: 1rem; }
    .landing-dark-theme .navbar-toggler { padding: 5px 8px; border-radius: 6px; }
    .landing-dark-theme .navbar-toggler-icon { width: 1.2em; height: 1.2em; }
    .landing-dark-theme .landing-nav-dark .nav-link { padding: 6px 8px; font-size: 0.82rem; }
    .landing-dark-theme .btn-dashboard-dark { padding: 6px 12px; font-size: 0.78rem; }
    .landing-dark-theme .hero-section { padding: 64px 0 36px; }
    .landing-dark-theme .hero-headline { font-size: 1.65rem; line-height: 1.25; letter-spacing: -0.5px; }
    .landing-dark-theme .hero-subheading { font-size: 0.85rem; }
    .landing-dark-theme .container { padding-left: 14px; padding-right: 14px; }
    .landing-dark-theme .row > [class*="col-"] { margin-bottom: 12px; }
    .landing-dark-theme .card-body { padding: 14px; }
    .landing-dark-theme .card-title { font-size: 0.95rem; }
    .landing-dark-theme .card-text { font-size: 0.82rem; }
    .landing-dark-theme .btn { padding: 7px 14px; font-size: 0.82rem; }
    .landing-dark-theme .btn-lg { padding: 8px 18px; font-size: 0.9rem; }
    .landing-dark-theme .btn-sm { padding: 4px 10px; font-size: 0.75rem; }
    .landing-dark-theme .display-4 { font-size: 1.6rem; }
    .landing-dark-theme .display-5 { font-size: 1.3rem; }
    .landing-dark-theme .display-6 { font-size: 1.1rem; }
    .landing-dark-theme h1 { font-size: 1.5rem; }
    .landing-dark-theme h2 { font-size: 1.25rem; }
    .landing-dark-theme h3 { font-size: 1.1rem; }
    .landing-dark-theme h4 { font-size: 1rem; }
    .landing-dark-theme h5 { font-size: 0.9rem; }
    .landing-dark-theme h6 { font-size: 0.82rem; }
    .landing-dark-theme p { font-size: 0.82rem; }
    .landing-dark-theme .lead { font-size: 0.9rem; }
    .landing-dark-theme .small, .landing-dark-theme small { font-size: 0.75rem; }
    .landing-dark-theme .d-flex.gap-2 { gap: 4px !important; }
    .landing-dark-theme .d-flex.gap-3 { gap: 8px !important; }
    .landing-dark-theme .d-flex.gap-4 { gap: 10px !important; }
    .landing-dark-theme .pricing-card { margin-bottom: 16px; padding: 18px; }
    .landing-dark-theme .feature-card { margin-bottom: 12px; padding: 14px; }
    .landing-dark-theme .blog-card { margin-bottom: 14px; }
    .landing-dark-theme .testimonial-card { margin-bottom: 12px; padding: 14px; }
    .landing-dark-theme .stat-box { margin-bottom: 10px; padding: 12px; }
    .landing-dark-theme .faq-card { margin-bottom: 10px; padding: 12px; }
    .landing-dark-theme .table { font-size: 0.78rem; }
    .landing-dark-theme .table th { font-size: 0.75rem; padding: 6px 4px; }
    .landing-dark-theme .table td { font-size: 0.75rem; padding: 6px 4px; }
    .landing-dark-theme .modal-dialog { margin: 6px; }
    .landing-dark-theme .modal-body { padding: 14px; }
    .landing-dark-theme .modal-header { padding: 10px 14px; }
    .landing-dark-theme .modal-title { font-size: 1rem; }
    .landing-dark-theme .form-control { font-size: 0.85rem; padding: 8px 10px; }
    .landing-dark-theme .form-label { font-size: 0.78rem; }
    .landing-dark-theme .form-select { font-size: 0.85rem; }
    .landing-dark-theme .alert { padding: 8px 12px; font-size: 0.8rem; }
    .landing-dark-theme .input-group .btn { font-size: 0.8rem; }
    .landing-dark-theme .badge { font-size: 0.68rem; }
    .landing-dark-theme .dropdown-menu { min-width: 180px; }
    .landing-dark-theme .dropdown-item { padding: 8px 12px; font-size: 0.82rem; }
    .landing-dark-theme .auth-card { padding: 24px 18px; border-radius: 18px; }
    .landing-dark-theme .auth-logo { font-size: 1.2rem; }
    .landing-dark-theme .auth-subtitle { font-size: 0.82rem; margin-bottom: 20px; }
    .landing-dark-theme .auth-form .form-label { font-size: 0.8rem; }
    .landing-dark-theme .auth-card .form-control { font-size: 0.85rem; }
}

