/* === NEW LANDING PAGE DESIGN === */
body.landing-page { background-color: var(--theme-bg-main); color: var(--theme-text-primary); overflow-x: hidden; min-height: 100vh; display: flex; flex-direction: column; }
.landing-glow { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100%; max-width: 48rem; height: 100%; max-height: 40rem; background: rgba(var(--color-accent-rgb), 0.1); filter: blur(120px); border-radius: 9999px; pointer-events: none; z-index: -10; }
.landing-nav { position: fixed; top: 0; width: 100%; z-index: 50; background: var(--theme-bg-header); backdrop-filter: blur(24px); border-bottom: 1px solid var(--theme-border-subtle); animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.landing-nav-inner { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; height: 4rem; display: flex; align-items: center; justify-content: space-between; }
.nav-left { display: flex; align-items: center; gap: 3rem; }
.nav-brand { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.nav-brand .brand-logo { height: 32px; width: auto; object-fit: contain; }
.nav-links-desktop { display: none; }
@media (min-width: 768px) { .nav-links-desktop { display: flex; align-items: center; gap: 2rem; font-size: 0.875rem; font-weight: 500; } }
.nav-link { color: var(--theme-text-secondary); text-decoration: none; transition: color 0.2s ease; }
.nav-link:hover { color: var(--theme-text-primary); }
.nav-actions { display: flex; align-items: center; gap: 1rem; font-size: 0.875rem; font-weight: 500; }
.nav-link-login { color: var(--theme-text-secondary); text-decoration: none; transition: color 0.2s ease; }
.nav-link-login:hover { color: var(--theme-text-primary); }
.btn-primary { background: var(--theme-text-primary); color: var(--theme-bg-main); padding: 0.5rem 1rem; border-radius: 9999px; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 1px 2px rgba(0,0,0,0.05); border: none; cursor: pointer; font-weight: 500; }
.btn-primary:hover { opacity: 0.8; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.btn-primary:active { transform: scale(0.95); }
.theme-toggle-btn { background: none; border: none; color: var(--theme-text-primary); cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 0.5rem; border-radius: 50%; transition: background 0.2s; }
.theme-toggle-btn:hover { background: var(--theme-bg-input); }
.theme-toggle-btn i { width: 18px; height: 18px; }
.landing-main { flex: 1; width: 100%; max-width: 72rem; margin: 0 auto; padding: 8rem 1.5rem 5rem; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 3rem; position: relative; z-index: 10; }
@media (min-width: 768px) { .landing-main { padding-top: 10rem; padding-bottom: 8rem; } }
.hero-header { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; max-width: 48rem; animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.375rem 0.75rem; border-radius: 9999px; background: var(--theme-bg-card); border: 1px solid var(--theme-border-subtle); box-shadow: 0 1px 2px rgba(0,0,0,0.05); font-size: 0.75rem; font-weight: 500; color: var(--theme-text-secondary); margin-bottom: 0.5rem; }
.pulse-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--color-accent); animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.hero-title { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 600; letter-spacing: -0.025em; color: var(--theme-text-primary); line-height: 1.1; }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.125rem); color: var(--theme-text-secondary); max-width: 42rem; line-height: 1.625; }
.hero-cta-group { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-top: 1rem; width: 100%; }
@media (min-width: 640px) { .hero-cta-group { flex-direction: row; width: auto; } }
.btn-large { padding: 0.75rem 1.5rem; width: 100%; }
@media (min-width: 640px) { .btn-large { width: auto; } }
.btn-accent { background: var(--color-accent); color: #1A1729; padding: 0.75rem 1.5rem; border-radius: 9999px; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 1px 2px rgba(0,0,0,0.05); border: none; cursor: pointer; font-weight: 500; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; }
:root[data-theme="dark"] .btn-accent { color: #000000; }
:root[data-theme="light"] .btn-accent { color: #FFFFFF; }
.btn-accent:hover { opacity: 0.9; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.btn-accent:active { transform: scale(0.95); }
.btn-outline { background: var(--theme-bg-card); border: 1px solid var(--theme-border-medium); color: var(--theme-text-primary); padding: 0.75rem 1.5rem; border-radius: 9999px; text-decoration: none; transition: all 0.3s ease; cursor: pointer; font-weight: 500; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; }
.btn-outline:hover { background: var(--theme-bg-input); }
.btn-outline:active { transform: scale(0.95); }
.btn-outline i, .btn-accent i { width: 18px; height: 18px; }
.hero-mockup { width: 100%; max-width: 56rem; margin-top: 2rem; position: relative; opacity: 0; animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards; }
.mockup-window { background: var(--theme-bg-card); border-radius: 1rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); border: 1px solid var(--theme-border-medium); overflow: hidden; position: relative; z-index: 10; margin: 0 auto; display: flex; flex-direction: column; }
.mockup-bar { height: 2.5rem; border-bottom: 1px solid var(--theme-border-subtle); background: var(--theme-bg-input); display: flex; align-items: center; padding: 0 1rem; gap: 0.5rem; }
.mockup-dot { width: 0.625rem; height: 0.625rem; border-radius: 50%; background: var(--theme-border-strong); }
.mockup-bar-url { margin-left: 0.75rem; font-size: 0.65rem; color: var(--theme-text-muted); background: var(--theme-bg-card); padding: 0.2rem 0.75rem; border-radius: 0.25rem; border: 1px solid var(--theme-border-subtle); }
.text-accent { color: var(--color-accent); }

/* === DASHBOARD MOCKUP === */
.mockup-dashboard { display: flex; flex: 1; min-height: 22rem; }
.mockup-sidebar { width: 11rem; background: var(--theme-bg-sidebar); border-right: 1px solid var(--theme-border-subtle); padding: 1rem 0.75rem; display: flex; flex-direction: column; gap: 1rem; flex-shrink: 0; }
.mockup-sidebar-brand { padding: 0 0.25rem 0.75rem; border-bottom: 1px solid var(--theme-border-subtle); }
.mockup-sidebar-logo { height: 22px; width: auto; object-fit: contain; }
.mockup-sidebar-nav { display: flex; flex-direction: column; gap: 0.2rem; }
.mockup-nav-item { display: flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0.5rem; border-radius: 0.375rem; font-size: 0.65rem; color: var(--theme-text-secondary); cursor: default; }
.mockup-nav-item i { width: 14px; height: 14px; }
.mockup-nav-item.active { background: var(--theme-bg-sidebar-active, rgba(228, 168, 75, 0.1)); color: var(--color-accent); }
.mockup-nav-item.active i { color: var(--color-accent); }

.mockup-main { flex: 1; padding: 1rem 1.25rem; background: var(--theme-bg-main); display: flex; flex-direction: column; gap: 0.75rem; overflow: hidden; }

/* Stats row */
.mockup-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.mockup-stat-card { background: var(--theme-bg-card); border: 1px solid var(--theme-border-subtle); border-radius: 0.5rem; padding: 0.6rem 0.75rem; display: flex; flex-direction: column; gap: 0.15rem; }
.mockup-stat-accent { border-color: var(--color-accent); background: rgba(var(--color-accent-rgb), 0.05); }
.mockup-stat-icon { color: var(--theme-text-muted); }
.mockup-stat-icon i { width: 14px; height: 14px; }
.mockup-stat-accent .mockup-stat-icon { color: var(--color-accent); }
.mockup-stat-label { font-size: 0.55rem; color: var(--theme-text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.mockup-stat-accent .mockup-stat-label { color: var(--color-accent); }
.mockup-stat-value { font-size: 1rem; font-weight: 700; color: var(--theme-text-primary); }

/* Table card */
.mockup-table-card { background: var(--theme-bg-card); border: 1px solid var(--theme-border-subtle); border-radius: 0.5rem; padding: 0.75rem; flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.mockup-table-header { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.6rem; font-size: 0.75rem; font-weight: 600; color: var(--theme-text-primary); }
.mockup-table-header i { width: 14px; height: 14px; color: var(--color-accent); }
.mockup-client-group { display: flex; flex-direction: column; }
.mockup-client-label { display: flex; align-items: center; gap: 0.35rem; padding: 0.3rem 0.5rem; background: var(--theme-bg-input); border-radius: 0.3rem; margin-bottom: 0.4rem; font-size: 0.6rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-accent); }
.mockup-client-label i { width: 12px; height: 12px; }
.mockup-badge { font-size: 0.5rem; padding: 0.15rem 0.4rem; border-radius: 9999px; font-weight: 600; }
.mockup-badge-info { background: rgba(var(--color-accent-rgb), 0.12); color: var(--color-accent); margin-left: auto; }
.mockup-badge-done { background: rgba(34, 197, 94, 0.12); color: #22c55e; }
.mockup-badge-processing { background: rgba(var(--color-accent-rgb), 0.12); color: var(--color-accent); }
.mockup-badge-queued { background: rgba(100, 116, 139, 0.12); color: #64748b; }
.mockup-table { width: 100%; border-collapse: collapse; }
.mockup-table th { font-size: 0.55rem; text-transform: uppercase; color: var(--theme-text-muted); font-weight: 600; letter-spacing: 0.04em; padding: 0.3rem 0.4rem; border-bottom: 1px solid var(--theme-border-subtle); text-align: left; }
.mockup-table td { font-size: 0.6rem; padding: 0.35rem 0.4rem; border-bottom: 1px solid var(--theme-border-subtle); color: var(--theme-text-secondary); }
.mockup-table tr:last-child td { border-bottom: none; }
.mockup-filename { font-weight: 600; color: var(--theme-text-primary) !important; }
.mockup-date { font-size: 0.55rem !important; color: var(--theme-text-muted) !important; display: flex; align-items: center; gap: 0.25rem; }
.mockup-date i { width: 10px; height: 10px; }
.spin { animation: spin 2s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

@media (max-width: 767px) {
  .mockup-sidebar { display: none; }
  .mockup-dashboard { min-height: 18rem; }
  .mockup-stats-row { grid-template-columns: repeat(3, 1fr); }
}
.features-section-wrap { width: 100%; border-top: 1px solid var(--theme-border-subtle); background: var(--theme-bg-card); position: relative; z-index: 10; }
.features-section { max-width: 72rem; margin: 0 auto; padding: 5rem 1.5rem; }
@media (min-width: 768px) { .features-section { padding: 7rem 1.5rem; } }
.features-header { text-align: center; max-width: 42rem; margin: 0 auto 4rem; }
.features-header h2 { font-size: clamp(1.5rem, 3vw, 1.875rem); font-weight: 600; letter-spacing: -0.025em; color: var(--theme-text-primary); margin-bottom: 1rem; }
.features-header p { font-size: clamp(0.875rem, 2vw, 1rem); color: var(--theme-text-secondary); }
.features-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; } }
.feature-card { display: flex; flex-direction: column; gap: 1rem; }
.feature-icon { width: 3rem; height: 3rem; border-radius: 0.75rem; background: var(--theme-bg-input); border: 1px solid var(--theme-border-subtle); display: flex; align-items: center; justify-content: center; color: var(--theme-text-primary); transition: all 0.2s ease; }
.feature-card:hover .feature-icon { border-color: var(--color-accent); box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.feature-num { font-weight: 600; font-size: 1rem; color: var(--color-accent); transition: color 0.2s; }
.feature-card h3 { font-size: 1.125rem; font-weight: 600; letter-spacing: -0.025em; color: var(--theme-text-primary); }
.feature-card p { font-size: 0.875rem; color: var(--theme-text-secondary); line-height: 1.625; }
.steps-grid.new-steps { display: flex; flex-direction: column; gap: 2rem; max-width: 64rem; margin: 0 auto; align-items: center; }
@media (min-width: 768px) { .steps-grid.new-steps { flex-direction: row; justify-content: space-between; align-items: flex-start; } }
.step-card-new { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem; max-width: 16rem; }
.step-icon-new { width: 4rem; height: 4rem; border-radius: 1rem; background: var(--theme-bg-input); border: 1px solid var(--theme-border-subtle); display: flex; align-items: center; justify-content: center; color: var(--theme-text-primary); transition: all 0.3s; }
.step-icon-new.dark-icon { background: var(--theme-text-primary); color: var(--theme-bg-main); border-color: transparent; }
.step-icon-new i { width: 24px; height: 24px; }
.step-card-new h4 { font-size: 1.125rem; font-weight: 600; color: var(--theme-text-primary); }
.step-card-new p { font-size: 0.875rem; color: var(--theme-text-secondary); }
.step-line { width: 1px; height: 3rem; background: var(--theme-border-subtle); }
@media (min-width: 768px) { .step-line { width: 4rem; height: 1px; flex-shrink: 0; margin-top: 2rem; } }
.stats-banner { padding: 4rem 1.5rem; background: var(--theme-bg-card-hover); border-top: 1px solid var(--theme-border-subtle); position: relative; z-index: 10; animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards; opacity: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 72rem; margin: 0 auto; text-align: center; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 3rem; } }
.stat-item { display: flex; flex-direction: column; gap: 0.5rem; animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; }
.stat-item:nth-child(1) { animation-delay: 0.5s; }
.stat-item:nth-child(2) { animation-delay: 0.6s; }
.stat-item:nth-child(3) { animation-delay: 0.7s; }
.stat-item:nth-child(4) { animation-delay: 0.8s; }
.stat-number { font-size: clamp(2rem, 4vw, 2.5rem); font-weight: 700; color: var(--theme-text-primary); letter-spacing: -0.025em; }
.stat-label { font-size: 0.875rem; color: var(--theme-text-secondary); }

/* Scroll Animation Classes */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes slide { 0% { transform: translateX(-100%); } 100% { transform: translateX(200%); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(2rem); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-1rem); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes floatDelayed { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.hidden-mobile { display: none; }
@media (min-width: 768px) { .hidden-mobile { display: block; } }
