:root {
    --purple: #7C3AED;
    --purple-light: #8B5CF6;
    --purple-dark: #5B21B6;
    --purple-glow: rgba(124, 58, 237, 0.3);
    --bg-dark: #0a0a1a;
    --bg-dark2: #0f0f2a;
    --bg-section: #f8f7ff;
    --text-white: #ffffff;
    --text-light: #e2e8f0;
    --text-muted: #94a3b8;
    --text-dark: #1e1b4b;
    --green: #10b981;
    --red: #ef4444;
    --border: rgba(124, 58, 237, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color 0.2s; }
img { max-width: 100%; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-white);
}

.logo strong { color: var(--purple-light); }

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--text-white); background: rgba(124,58,237,0.15); }

.btn-nav-login {
    background: var(--purple) !important;
    color: white !important;
    padding: 8px 18px !important;
    border-radius: 10px !important;
}

.btn-nav-login:hover { background: var(--purple-light) !important; }

.btn-nav-outline {
    border: 1.5px solid var(--purple) !important;
    color: var(--purple-light) !important;
    padding: 7px 18px !important;
    border-radius: 10px !important;
}

.btn-nav-outline:hover { background: var(--purple-glow) !important; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a1a 0%, #160832 40%, #1a0a3e 70%, #0d1547 100%);
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: ''; position: absolute; top: 20%; right: 10%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(124,58,237,0.25) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: ''; position: absolute; bottom: 10%; left: 5%; width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(88,28,135,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124,58,237,0.15);
    border: 1px solid rgba(124,58,237,0.4);
    color: var(--purple-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero h1 {
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-white);
}

.hero h1 span {
    background: linear-gradient(135deg, #a855f7, #7c3aed, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 16px; font-style: italic; }

.hero-desc { font-size: 1rem; color: var(--text-light); margin-bottom: 36px; max-width: 480px; opacity: 0.85; }

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 20px var(--purple-glow);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,58,237,0.5); }

.btn-outline {
    background: transparent;
    color: var(--text-light);
    padding: 15px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    border: 1.5px solid rgba(124,58,237,0.4);
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

.btn-outline:hover { border-color: var(--purple-light); color: white; background: rgba(124,58,237,0.1); }

.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }

.hero-mockup { width: 100%; max-width: 460px; position: relative; }

.mockup-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(124,58,237,0.3);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.mockup-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), #3b82f6, var(--purple));
}

.mockup-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--purple-light);
    margin-bottom: 20px;
    font-weight: 600;
}

.funnel-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(124,58,237,0.08);
    border: 1px solid rgba(124,58,237,0.15);
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.3s;
    cursor: pointer;
}

.funnel-item:hover { background: rgba(124,58,237,0.15); border-color: rgba(124,58,237,0.4); }

.funnel-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--purple), #3b82f6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.funnel-info { flex: 1; min-width: 0; }
.funnel-name { font-size: 0.88rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.funnel-meta { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

.funnel-badge {
    background: rgba(16,185,129,0.15);
    color: var(--green);
    border: 1px solid rgba(16,185,129,0.3);
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 600;
    white-space: nowrap;
}

.import-btn {
    width: 100%;
    margin-top: 16px;
    background: linear-gradient(135deg, var(--purple), #3b82f6);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.02em;
}

.import-btn:hover { opacity: 0.9; transform: translateY(-1px); }

.chrome-banner {
    background: white;
    border-radius: 20px;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin: -40px 0 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.chrome-icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(124,58,237,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chrome-banner h3 { font-size: 1.35rem; font-weight: 700; color: var(--text-dark); }
.chrome-banner p { color: #64748b; font-size: 0.9rem; margin-top: 4px; }

.chrome-btn {
    margin-left: auto;
    background: var(--purple);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chrome-btn:hover { background: var(--purple-dark); transform: translateY(-2px); }

section { padding: 100px 0; }

.section-dark { background: var(--bg-dark); }
.section-light { background: var(--bg-section); color: var(--text-dark); }
.section-alt { background: #0d0d22; }

.section-header { text-align: center; margin-bottom: 60px; }

.section-label {
    display: inline-block;
    background: rgba(124,58,237,0.12);
    color: var(--purple-light);
    border: 1px solid rgba(124,58,237,0.3);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.section-light .section-label {
    background: rgba(124,58,237,0.1);
    color: var(--purple);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-light .section-header h2 { color: var(--text-dark); }

.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-light .section-header p { color: #64748b; }

.stats-bar {
    background: linear-gradient(135deg, #160832, #0d1547);
    padding: 50px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-num {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.why-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.why-card:hover { border-color: rgba(124,58,237,0.5); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(124,58,237,0.1); }
.why-card:hover::before { opacity: 1; }

.why-icon {
    width: 52px;
    height: 52px;
    background: rgba(124,58,237,0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.why-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), #3b82f6, var(--purple));
    opacity: 0.3;
}

.step-card { text-align: center; }

.step-num {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--purple), #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 8px rgba(124,58,237,0.1);
}

.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.step-card p { font-size: 0.88rem; color: #64748b; }

.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    gap: 18px;
    transition: all 0.3s;
}

.feature-card:hover { border-color: rgba(124,58,237,0.4); background: rgba(124,58,237,0.05); }

.feature-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(59,130,246,0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

.compare-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.compare-table th {
    padding: 20px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
}

.compare-table th:first-child { text-align: left; }

.compare-table thead tr { background: rgba(124,58,237,0.1); border-bottom: 2px solid var(--purple); }

.th-pro {
    background: linear-gradient(135deg, var(--purple), #3b82f6) !important;
    color: white !important;
    position: relative;
}

.th-pro::before {
    content: '⭐ RECOMMENDED';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: black;
    font-size: 0.65rem;
    padding: 3px 10px;
    border-radius: 10px;
    white-space: nowrap;
    font-weight: 800;
}

.compare-table td {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(124,58,237,0.12);
    font-size: 0.9rem;
    text-align: center;
    color: var(--text-dark);
}

.compare-table td:first-child { text-align: left; font-weight: 600; }

.compare-table tbody tr { background: white; transition: background 0.2s; }
.compare-table tbody tr:hover { background: rgba(124,58,237,0.03); }

.compare-table tbody tr td:nth-child(3) { background: rgba(124,58,237,0.04); font-weight: 700; }

.check { color: var(--green); font-size: 1.1rem; }
.cross { color: var(--red); font-size: 1.1rem; }
.partial { color: #f59e0b; font-size: 0.82rem; font-weight: 600; }
.highlight { color: var(--purple); font-weight: 700; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.pricing-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.3s;
}

.pricing-card.popular {
    background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(59,130,246,0.1));
    border-color: var(--purple);
    transform: scale(1.04);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--purple), #3b82f6);
    color: white;
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    white-space: nowrap;
}

.price-label { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; font-weight: 600; }

.price-amount { font-size: 3rem; font-weight: 900; line-height: 1; margin-bottom: 4px; }

.price-period { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }

.price-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

.price-features { list-style: none; margin-bottom: 28px; }

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 6px 0;
}

.price-features li .check { font-size: 0.9rem; }

.price-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    display: block;
    text-align: center;
}

.price-btn-filled { background: linear-gradient(135deg, var(--purple), #3b82f6); color: white; }
.price-btn-filled:hover { opacity: 0.9; transform: translateY(-2px); }

.price-btn-outline { background: transparent; border: 1.5px solid var(--border); color: var(--text-light); }
.price-btn-outline:hover { border-color: var(--purple-light); color: white; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}

.testimonial-card:hover { transform: translateY(-4px); }

.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.92rem; color: #475569; line-height: 1.7; margin-bottom: 20px; font-style: italic; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--purple), #3b82f6);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.author-name { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.author-role { font-size: 0.78rem; color: #64748b; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.contact-info h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); margin-bottom: 36px; }

.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: center; gap: 14px; }
.contact-icon {
    width: 44px; height: 44px;
    background: rgba(124,58,237,0.15);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-item span { font-size: 0.9rem; color: var(--text-light); }

.contact-form {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px;
}

.form-group { margin-bottom: 20px; }

label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
}

input[type=text], input[type=email], input[type=password], textarea, select {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(124,58,237,0.25);
    border-radius: 10px;
    padding: 12px 16px;
    color: white;
    font-size: 0.92rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, textarea:focus, select:focus {
    border-color: var(--purple-light);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}

input::placeholder, textarea::placeholder { color: var(--text-muted); }
textarea { min-height: 120px; resize: vertical; }

.signup-form {
    display: grid;
    gap: 18px;
}

.signup-form .form-row-three,
.signup-form .form-row-two {
    display: grid;
    gap: 18px;
}

.signup-form .form-row-three {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
}

.signup-form .form-row-two {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
}

.signup-form .full-width {
    grid-column: 1 / -1;
}

.signup-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: rgba(255,255,255,0.06);
    color: #ffffff;
}

.signup-form option {
    background-color: #0e1736;
    color: #ffffff;
}

.signup-form select::-ms-expand {
    display: none;
}

.auth-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a1a 0%, #160832 50%, #0d1547 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 40px;
}

.auth-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(124,58,237,0.25);
    border-radius: 24px;
    padding: 48px 44px;
    width: 100%;
    max-width: 460px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), #3b82f6);
}

.auth-logo { text-align: center; margin-bottom: 8px; }
.auth-logo .logo { justify-content: center; font-size: 1.1rem; }
.auth-card h1 { text-align: center; font-size: 1.6rem; font-weight: 800; margin-bottom: 8px; }
.auth-card .auth-sub { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 36px; }

.auth-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--purple), #3b82f6);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.auth-submit:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(124,58,237,0.35); }

.auth-switch { text-align: center; margin-top: 24px; font-size: 0.88rem; color: var(--text-muted); }
.auth-switch a { color: var(--purple-light); font-weight: 600; }
.auth-switch a:hover { color: white; }

.alert {
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.88rem;
    font-weight: 500;
}

.alert-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #fca5a5; }
.alert-success { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); color: #6ee7b7; }

.dashboard-page { min-height: 100vh; background: var(--bg-dark); padding-top: 80px; }

.dashboard-header { background: linear-gradient(135deg, #160832, #0d1547); padding: 40px 0; border-bottom: 1px solid var(--border); }

.dash-welcome { font-size: 1.5rem; font-weight: 800; margin-bottom: 6px; }
.dash-sub { color: var(--text-muted); font-size: 0.9rem; }

.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 40px 0; }

.dash-stat {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    transition: all 0.3s;
}

.dash-stat:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-2px); }

.dash-stat-num { font-size: 2rem; font-weight: 800; color: var(--purple-light); margin-bottom: 4px; }
.dash-stat-label { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }

.dash-section-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }

.dash-actions { display: flex; gap: 12px; margin-bottom: 36px; }

.btn-sm {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-sm-primary { background: linear-gradient(135deg, var(--purple), #3b82f6); color: white; }
.btn-sm-primary:hover { opacity: 0.9; }

.btn-sm-outline { background: transparent; border: 1px solid var(--border); color: var(--text-light); }
.btn-sm-outline:hover { border-color: var(--purple-light); }

.funnels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }

.funnel-card-dash {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    transition: all 0.3s;
    position: relative;
}

.funnel-card-dash:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-2px); }

.funnel-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; }
.funnel-card-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--purple), #3b82f6);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}

.funnel-card-name { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.funnel-card-meta { font-size: 0.78rem; color: var(--text-muted); }
.funnel-card-pages { font-size: 0.78rem; background: rgba(124,58,237,0.12); color: var(--purple-light); border-radius: 6px; padding: 2px 8px; font-weight: 600; }

.funnel-card-actions { display: flex; gap: 8px; margin-top: 16px; }
.funnel-action-btn {
    flex: 1;
    text-align: center;
    padding: 8px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn-import { background: rgba(124,58,237,0.15); color: var(--purple-light); }
.btn-import:hover { background: var(--purple); color: white; }
.btn-delete { background: rgba(239,68,68,0.1); color: #fca5a5; }
.btn-delete:hover { background: var(--red); color: white; }

.empty-state {
    text-align: center;
    padding: 60px;
    background: rgba(255,255,255,0.02);
    border: 1px dashed rgba(124,58,237,0.3);
    border-radius: 16px;
    color: var(--text-muted);
}

.empty-state .icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--text-light); }
.empty-state p { font-size: 0.9rem; margin-bottom: 24px; }

.legal-page {
    min-height: 100vh;
    background: var(--bg-dark);
    padding: 110px 0 80px;
}

.legal-hero {
    background: linear-gradient(135deg, #160832, #0d1547);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--border);
}

.legal-hero h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: 12px; }
.legal-hero p { color: var(--text-muted); }

.legal-content {
    max-width: 860px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 52px;
}

.legal-content h2 { font-size: 1.4rem; font-weight: 800; margin: 40px 0 14px; color: var(--purple-light); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 0.93rem; color: var(--text-light); line-height: 1.8; margin-bottom: 14px; }
.legal-content ul { margin: 12px 0 14px 22px; }
.legal-content ul li { font-size: 0.93rem; color: var(--text-light); line-height: 1.8; margin-bottom: 6px; }
.legal-content strong { color: white; }

.footer {
    background: #060612;
    border-top: 1px solid var(--border);
    padding: 60px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin-top: 14px; max-width: 280px; }

.footer-col h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 16px; }

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--purple-light); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); }

.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { font-size: 0.82rem; color: var(--text-muted); }
.footer-legal-links a:hover { color: var(--purple-light); }

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero .hero-btns { justify-content: center; }
    .hero-desc { margin: 0 auto 36px; }
    .hero-visual { display: none; }
    .hero h1 { font-size: 2.4rem; }
    .why-grid, .features-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.popular { transform: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .compare-table { font-size: 0.82rem; }
    .compare-table td, .compare-table th { padding: 12px 14px; }
    .funnels-grid { grid-template-columns: 1fr 1fr; }
    .dash-stats { grid-template-columns: repeat(2, 1fr); }
    .chrome-banner { flex-direction: column; text-align: center; }
    .chrome-btn { margin-left: 0; }
}

@media (max-width: 600px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: rgba(10,10,26,0.98); padding: 20px; gap: 4px; border-bottom: 1px solid var(--border); }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }
    .hero h1 { font-size: 2rem; }
    .section-header h2 { font-size: 1.8rem; }
    .auth-card { padding: 32px 24px; }
    .legal-content { padding: 32px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .funnels-grid { grid-template-columns: 1fr; }
    .dash-stats { grid-template-columns: 1fr 1fr; }
}
