/* PLATANERA TOOLS - Full Website */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg-dark: #09090b;
    --bg-section: #0c0c10;
    --bg-card: #111115;
    --bg-card-hover: #16161c;
    --bg-elevated: #1a1a22;
    --border: #1a1a24;
    --border-light: #252530;
    --border-hover: #32323e;
    --text-white: #fafafa;
    --text-gray: #888894;
    --text-dim: #55555f;
    --accent: #e67e22;
    --accent-light: #f0923a;
    --accent-dark: #c96b1d;
    --accent-glow: rgba(230, 126, 34, 0.25);
    --accent-subtle: rgba(230, 126, 34, 0.08);
    --green: #22c55e;
    --green-dim: rgba(34, 197, 94, 0.15);
    --blue: #3b82f6;
    --blue-dim: rgba(59, 130, 246, 0.15);
    --red: #ef4444;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --shadow: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--accent);
    color: white;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 64px;
    background: rgba(9, 9, 11, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(9, 9, 11, 0.92);
    box-shadow: 0 1px 0 var(--border);
}

.nav-container {
    max-width: 1200px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 0.3px;
}

.nav-logo-img { width: 28px; height: 28px; object-fit: contain; }
.nav-logo-text .highlight, .highlight { color: var(--accent); }

.nav-links, .nav-links-dash {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a, .nav-links-dash a {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.nav-links a:hover, .nav-links-dash a:hover { color: var(--text-white); }
.dash-nav-link.active { color: var(--text-white) !important; background: var(--bg-elevated); }
.dash-nav-link.logout { color: var(--red) !important; }

.nav-btn-primary {
    background: var(--accent) !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
    transition: all 0.2s !important;
}

.nav-btn-primary:hover {
    background: var(--accent-light) !important;
    box-shadow: 0 0 20px var(--accent-glow) !important;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-gray);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 32px 60px;
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.08) 0%, rgba(230, 126, 34, 0.03) 40%, transparent 70%);
}

.hero-grid-pattern {
    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: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
    position: relative;
    max-width: 740px;
    z-index: 2;
    animation: fadeInUp 0.7s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--accent-subtle);
    border: 1px solid rgba(230, 126, 34, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.3px;
    margin-bottom: 32px;
}

.badge-dot {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: 68px;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -2.5px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 50%, #f5b942 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 64px;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    padding: 12px 28px;
    background: var(--accent);
    color: white;
    border: 1px solid var(--accent);
}

.btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    box-shadow: 0 0 24px var(--accent-glow);
    transform: translateY(-1px);
}

.btn-primary.btn-sm { padding: 8px 20px; font-size: 13px; }

.btn-secondary {
    padding: 12px 28px;
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    border-color: var(--text-gray);
    transform: translateY(-1px);
}

.hero-stats {
    display: flex;
    gap: 0;
    justify-content: center;
    align-items: center;
}

.stat-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 32px;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: var(--border-light);
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-white);
}

.stat-label {
    font-size: 12px;
    color: var(--text-dim);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ===== APP PREVIEW ===== */
.hero-preview {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 60px auto 0;
    z-index: 2;
    animation: fadeInUp 0.9s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.preview-window {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 80px rgba(230, 126, 34, 0.06);
}

.preview-titlebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
}

.preview-dots { display: flex; gap: 6px; }
.preview-dots-spacer { width: 48px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ef4444; }
.dot.yellow { background: #eab308; }
.dot.green { background: #22c55e; }

.preview-title {
    font-size: 12px;
    color: var(--text-dim);
    font-weight: 500;
}

.preview-body {
    display: flex;
    min-height: 280px;
}

.preview-sidebar {
    width: 140px;
    background: rgba(0,0,0,0.2);
    border-right: 1px solid var(--border);
    padding: 12px 8px;
}

.ps-item {
    padding: 8px 12px;
    font-size: 11px;
    color: var(--text-dim);
    border-radius: 6px;
    margin-bottom: 2px;
    font-weight: 500;
}

.ps-item.active {
    background: var(--accent-subtle);
    color: var(--accent);
}

.preview-main { flex: 1; padding: 16px; }

.pm-stats { display: flex; gap: 10px; margin-bottom: 16px; }

.pm-stat-card {
    flex: 1;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px;
    text-align: center;
}

.pm-stat-card.accent {
    border-color: rgba(230, 126, 34, 0.3);
    background: var(--accent-subtle);
}

.pm-stat-num {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 2px;
}

.pm-stat-card.accent .pm-stat-num { color: var(--accent); }

.pm-stat-label {
    font-size: 10px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pm-chart {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px 16px 12px;
}

.pm-chart-bars {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    height: 100px;
}

.pm-bar {
    flex: 1;
    background: var(--border-light);
    border-radius: 4px 4px 0 0;
    transition: background 0.3s;
}

.pm-bar.active { background: var(--accent); }

/* ===== SECTIONS ===== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-header { text-align: center; margin-bottom: 64px; }

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-subtle);
    border: 1px solid rgba(230, 126, 34, 0.15);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== FEATURES ===== */
.features {
    padding: 120px 0;
    background: var(--bg-section);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.05s; }
.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.15s; }
.feature-card:nth-child(4) { animation-delay: 0.2s; }
.feature-card:nth-child(5) { animation-delay: 0.25s; }
.feature-card:nth-child(6) { animation-delay: 0.3s; }

.feature-card:hover {
    border-color: rgba(230, 126, 34, 0.25);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-subtle);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg { width: 22px; height: 22px; stroke: var(--accent); }
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-gray); line-height: 1.7; }

/* ===== PRICING ===== */
.pricing {
    padding: 120px 0;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.pricing-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: left;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.pricing-card.popular {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(230,126,34,0.06) 0%, var(--bg-card) 50%);
}

.popular-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    padding: 5px 18px;
    background: var(--accent);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pricing-header h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 24px;
}

.price-currency { font-size: 22px; font-weight: 700; color: var(--text-gray); }
.price-amount { font-size: 52px; font-weight: 900; line-height: 1; letter-spacing: -2px; }
.price-period { font-size: 14px; color: var(--text-dim); margin-left: 4px; }

.pricing-features { list-style: none; margin-bottom: 28px; }

.pricing-features li {
    padding: 9px 0;
    font-size: 14px;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features li::before { content: '\2713'; color: var(--green); font-weight: 700; }
.pricing-features li:last-child { border-bottom: none; }

.btn-pricing {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 24px;
    background: transparent;
    color: var(--text-white);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--border-light);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}

.btn-pricing:hover { border-color: var(--accent); color: var(--accent); }

.btn-pricing.primary {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.btn-pricing.primary:hover {
    background: var(--accent-light);
    box-shadow: 0 0 20px var(--accent-glow);
}

.pricing-cta-row { margin-top: 0; }

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
    background: var(--bg-dark);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 12px;
}

.footer-logo-img { width: 24px; height: 24px; object-fit: contain; }

.footer-desc {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 260px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--text-gray); }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-dim);
}

/* ===== MODALS ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}

.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    width: 100%;
    max-width: 400px;
    transform: translateY(16px) scale(0.98);
    transition: all 0.25s ease;
}

.modal-overlay.active .modal-card { transform: translateY(0) scale(1); }

.modal-close {
    position: absolute;
    top: 14px; right: 18px;
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.modal-close:hover { color: var(--text-white); }

.modal-header { text-align: center; margin-bottom: 28px; }

.modal-logo {
    width: 44px; height: 44px;
    object-fit: contain;
    margin-bottom: 16px;
}

.modal-header h2 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.modal-header p { font-size: 14px; color: var(--text-gray); }

.form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 6px;
}

.form-group .optional { font-weight: 400; color: var(--text-dim); }

.form-group input {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: all 0.2s;
}

.form-group input::placeholder { color: var(--text-dim); }
.form-group input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-subtle); }

.form-error {
    color: var(--red);
    font-size: 13px;
    margin-bottom: 8px;
    min-height: 18px;
}

.btn-form {
    width: 100%;
    padding: 12px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 4px;
}

.btn-form:hover { background: var(--accent-light); box-shadow: 0 0 20px var(--accent-glow); }

.form-switch {
    text-align: center;
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 18px;
}

.form-switch a { color: var(--accent); text-decoration: none; font-weight: 600; }
.form-switch a:hover { text-decoration: underline; }

/* ===== DASHBOARD ===== */
.dash-container {
    display: flex;
    min-height: 100vh;
    padding-top: 64px;
}

.dash-sidebar {
    width: 240px;
    min-width: 240px;
    background: var(--bg-section);
    border-right: 1px solid var(--border);
    padding: 24px 12px;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    bottom: 0;
    z-index: 50;
}

.dash-sidebar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
    font-size: 15px;
    font-weight: 800;
}

.dash-sidebar-logo { width: 24px; height: 24px; object-fit: contain; }

.dash-sidebar-nav { flex: 1; display: flex; flex-direction: column; gap: 2px; }

.dash-sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    text-decoration: none;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all 0.15s;
}

.dash-sidebar-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.dash-sidebar-link:hover { color: var(--text-white); background: var(--bg-elevated); }
.dash-sidebar-link.active { color: var(--text-white); background: var(--accent-subtle); }
.dash-sidebar-link.active svg { stroke: var(--accent); }
.dash-sidebar-link.logout { color: var(--red); margin-top: auto; }
.dash-sidebar-link.logout:hover { background: rgba(239, 68, 68, 0.08); }

.dash-sidebar-footer { margin-top: auto; }

.dash-main {
    flex: 1;
    margin-left: 240px;
    padding: 32px;
    max-width: 960px;
}

.dash-section { display: none; }
.dash-section.active { display: block; }

.dash-welcome { margin-bottom: 28px; }
.dash-welcome h1 { font-size: 26px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 6px; }
.dash-welcome h1 span { color: var(--accent); }
.dash-welcome p { font-size: 14px; color: var(--text-gray); }

.dash-alert {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(234, 179, 8, 0.06);
    border: 1px solid rgba(234, 179, 8, 0.15);
    border-radius: var(--radius);
    margin-bottom: 28px;
}

.dash-alert-icon svg { width: 20px; height: 20px; stroke: #eab308; flex-shrink: 0; }
.dash-alert-text { flex: 1; }
.dash-alert-text strong { font-size: 14px; font-weight: 600; display: block; margin-bottom: 2px; }
.dash-alert-text p { font-size: 13px; color: var(--text-gray); }

.dash-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.dash-stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.dash-stat-icon {
    width: 44px; height: 44px;
    background: var(--accent-subtle);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dash-stat-icon svg { width: 20px; height: 20px; stroke: var(--accent); }
.dash-stat-icon.blue { background: var(--blue-dim); }
.dash-stat-icon.blue svg { stroke: var(--blue); }

.dash-stat-number { font-size: 28px; font-weight: 800; display: block; }
.dash-stat-label { font-size: 13px; color: var(--text-gray); }

.dash-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
}

.dash-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.dash-card-header h3 { font-size: 16px; font-weight: 700; }

.dash-card-tabs { display: flex; gap: 4px; }

.dash-tab {
    padding: 6px 14px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-dim);
    font-size: 12px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.15s;
}

.dash-tab:hover { color: var(--text-gray); border-color: var(--border-light); }
.dash-tab.active { color: var(--text-white); background: var(--bg-elevated); border-color: var(--border-light); }

.dash-call-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.call-stat { text-align: center; padding: 16px; background: var(--bg-elevated); border-radius: var(--radius-sm); }
.call-stat-number { display: block; font-size: 28px; font-weight: 800; margin-bottom: 4px; }
.call-stat-number.green { color: var(--green); }
.call-stat-number.orange { color: var(--accent); }
.call-stat-label { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; }

.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
}

.live-dot-sm {
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

.dash-live-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.live-stat { text-align: center; padding: 20px; background: var(--bg-elevated); border-radius: var(--radius-sm); }
.live-stat-num { display: block; font-size: 32px; font-weight: 800; margin-bottom: 4px; }
.live-stat-label { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; }

.dash-section-title { font-size: 22px; font-weight: 800; margin-bottom: 24px; letter-spacing: -0.5px; }

.dash-empty {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.dash-empty svg { stroke: var(--text-dim); margin-bottom: 16px; }
.dash-empty p { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.dash-empty span { font-size: 14px; color: var(--text-dim); }

.dash-download-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.download-info { flex: 1; }
.download-info h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.download-info p { font-size: 14px; color: var(--text-gray); margin-bottom: 4px; }
.download-size { font-size: 12px; color: var(--text-dim); }

.download-requirements {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.download-requirements h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.download-requirements ul { list-style: none; }

.download-requirements li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.download-requirements li::before {
    content: '•';
    color: var(--accent);
    font-weight: 700;
}

.download-requirements li:last-child { border-bottom: none; }

/* ===== DASHBOARD PLANS ===== */
.dash-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.dash-plan-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    transition: all 0.2s;
}

.dash-plan-card:hover { border-color: var(--border-hover); }

.dash-plan-card.featured {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(230,126,34,0.06) 0%, var(--bg-elevated) 60%);
}

.dash-plan-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }

.dash-plan-price {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.dash-plan-price span { font-size: 14px; font-weight: 500; color: var(--text-dim); }
.dash-plan-card p { font-size: 13px; color: var(--text-gray); margin-bottom: 16px; }
.btn-full { width: 100%; justify-content: center; }

.dash-section-subtitle {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-gray);
}

/* ===== ORDER ITEM ===== */
.order-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
}

.order-info { flex: 1; }
.order-plan { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.order-date { font-size: 12px; color: var(--text-dim); }
.order-amount { font-size: 16px; font-weight: 700; margin-right: 16px; }

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.paid { background: var(--green-dim); color: var(--green); }
.status-badge.pending { background: rgba(234,179,8,0.12); color: #eab308; }
.status-badge.expired { background: rgba(239,68,68,0.12); color: var(--red); }
.status-badge.waiting { background: rgba(59,130,246,0.12); color: var(--blue); }

/* ===== PAYMENT MODAL ===== */
.modal-card-lg { max-width: 480px; }

.payment-icon-wrap {
    width: 56px; height: 56px;
    background: var(--accent-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.payment-icon-wrap svg { stroke: var(--accent); }

.payment-details {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 4px 0;
    margin-bottom: 24px;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    font-size: 14px;
}

.payment-row span:first-child { color: var(--text-gray); }
.payment-row span:last-child { font-weight: 600; }
.payment-amount { color: var(--accent) !important; font-size: 18px !important; }

.payment-crypto-badge {
    background: var(--accent-subtle);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px !important;
    color: var(--accent) !important;
}

.payment-spinner {
    width: 32px; height: 32px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 20px auto 12px;
}

@keyframes spin { to { transform: rotate(360deg); } }

.payment-wait-text {
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.btn-form svg { display: inline; vertical-align: middle; margin-left: 4px; }

/* ===== LICENSE CARDS ===== */
.license-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 12px;
}

.license-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.license-card-header h4 { font-size: 16px; font-weight: 700; }

.license-key-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.license-key-display {
    flex: 1;
    padding: 12px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent);
    font-family: 'Courier New', monospace;
}

.btn-copy {
    padding: 10px 18px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-gray);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
}

.btn-copy:hover { color: var(--text-white); border-color: var(--accent); }

.license-meta {
    font-size: 13px;
    color: var(--text-dim);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .dash-sidebar { display: none; }
    .dash-main { margin-left: 0; }
    .dash-plans-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto 32px; }
}

@media (max-width: 768px) {
    .navbar { height: 56px; }
    .nav-container { padding: 0 16px; }
    .nav-links, .nav-links-dash {
        display: none;
        position: absolute;
        top: 56px; left: 0; right: 0;
        background: var(--bg-dark);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 16px;
        gap: 8px;
    }
    .nav-links.active, .nav-links-dash.active { display: flex; }
    .nav-hamburger { display: flex; }
    .hero { padding: 90px 20px 40px; min-height: auto; }
    .hero-title { font-size: 38px; letter-spacing: -1px; }
    .hero-subtitle { font-size: 15px; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-stats { gap: 0; }
    .stat-badge { padding: 0 16px; }
    .hero-preview { margin-top: 40px; }
    .preview-sidebar { display: none; }
    .features, .pricing { padding: 80px 0; }
    .section-container { padding: 0 16px; }
    .section-title { font-size: 32px; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .modal-card { margin: 16px; padding: 28px 20px; }
    .dash-main { padding: 20px 16px; }
    .dash-stats-grid { grid-template-columns: 1fr; }
    .dash-call-stats, .dash-live-stats { grid-template-columns: 1fr; }
    .dash-download-card { flex-direction: column; text-align: center; }
}
