/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --code-bg: #f3f4f6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-icon {
    height: 40px;
    width: 40px;
    border-radius: 8px;
}

.logo-text {
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links .cta-button {
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
}

.nav-links .cta-button:hover {
    background: var(--primary-dark);
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0 100px 0;
}

.hero-content {
    text-align: center;
    padding: 60px 0;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px auto;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.button {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.button-primary {
    background: white;
    color: var(--primary-color);
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.button-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.button-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.button-large {
    padding: 18px 40px;
    font-size: 18px;
}

.hero-note {
    font-size: 14px;
    opacity: 0.9;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: var(--bg-light);
}

.problem h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

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

.problem-item .icon {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
}

.problem-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.problem-item p {
    color: var(--text-light);
    font-size: 16px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-white);
}

.features h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.feature-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.feature {
    padding: 30px;
    border-radius: 12px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.feature-details {
    list-style: none;
    padding-left: 0;
}

.feature-details li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
}

.feature-details li:last-child {
    border-bottom: none;
}

.feature-details strong {
    color: var(--text-dark);
}

/* Screenshots Section */
.screenshots {
    padding: 80px 0;
    background: var(--bg-white);
}

.screenshots h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
}

.demo-video {
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.video-placeholder {
    background: var(--bg-light);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 100px 40px;
    text-align: center;
    position: relative;
}

.video-play-button {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px auto;
    cursor: pointer;
    transition: transform 0.2s;
}

.video-play-button:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

.video-caption {
    color: var(--text-light);
    font-size: 16px;
}

.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

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

.screenshot-placeholder {
    background: var(--bg-light);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 80px 40px;
    margin-bottom: 20px;
    transition: border-color 0.2s;
}

.screenshot-placeholder:hover {
    border-color: var(--primary-color);
}

.placeholder-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 15px;
}

.screenshot-placeholder p {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.screenshot-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.screenshot-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.screenshot-note {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    color: var(--text-light);
}

.screenshot-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.screenshot-note a:hover {
    text-decoration: underline;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-light);
}

.how-it-works h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.step {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px auto;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

.step code {
    background: var(--code-bg);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 14px;
    font-family: 'Monaco', 'Courier New', monospace;
}

.tech-stack {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.tech-stack h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.tech-stack p {
    color: var(--text-light);
    font-size: 16px;
}

/* Privacy Section */
.privacy {
    padding: 80px 0;
    background: var(--bg-white);
}

.privacy h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.privacy-feature {
    text-align: center;
    padding: 30px;
}

.privacy-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.privacy-feature h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.privacy-feature p {
    color: var(--text-light);
    line-height: 1.6;
}

.privacy-note {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    line-height: 1.8;
    color: var(--text-dark);
}

.privacy-note strong {
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonials h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-content p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--text-dark);
    font-size: 15px;
}

.author-info span {
    color: var(--text-light);
    font-size: 14px;
}

.social-proof {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.proof-item strong {
    display: block;
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 5px;
}

.proof-item span {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
}

/* Comparison Section */
.comparison {
    padding: 80px 0;
    background: var(--bg-white);
}

.comparison h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto 40px auto;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead {
    background: var(--bg-light);
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-weight: 700;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
}

.comparison-table th.highlight-col {
    background: var(--primary-color);
    color: white;
}

.comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

.comparison-table td.highlight-col {
    background: #eff6ff;
    font-weight: 600;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table .check {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 18px;
}

.comparison-table .cross {
    color: #ef4444;
    font-weight: 700;
    font-size: 18px;
}

.comparison-table .na {
    color: var(--text-light);
    font-style: italic;
}

.comparison-cta {
    text-align: center;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-cta p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.faq-item code {
    background: var(--code-bg);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 14px;
    font-family: 'Monaco', 'Courier New', monospace;
}

/* Download Section */
.download {
    padding: 80px 0;
    background: var(--bg-white);
}

.download h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
}

.download-steps {
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.download-step {
    background: var(--bg-light);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.download-step h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.download-step pre {
    background: var(--text-dark);
    color: #d1d5db;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

.download-step code {
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
}

.download-step ol {
    padding-left: 25px;
    color: var(--text-light);
}

.download-step ol li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.download-step ol li code {
    background: var(--code-bg);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 14px;
}

.download-step p {
    color: var(--text-light);
    margin-top: 15px;
}

.download-cta {
    text-align: center;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo-icon {
    height: 32px;
    width: 32px;
    border-radius: 6px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 0;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* =============================================
   Interactive Demo Section
   ============================================= */
.demo-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.demo-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
}

.demo-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

.demo-tab {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: white;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    border-right: 1px solid var(--border-color);
    transition: all 0.2s;
}

.demo-tab:last-child {
    border-right: none;
}

.demo-tab.active {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.demo-tab:hover:not(.active) {
    background: var(--bg-light);
    color: var(--text-dark);
}

.demo-panel {
    display: none;
}

.demo-panel.active {
    display: block;
}

.demo-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.demo-screen {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.demo-screen-wide {
    grid-column: 1;
}

/* Browser chrome mockup */
.browser-chrome {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.browser-bar {
    background: #f3f4f6;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
}

.browser-dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e5e7eb;
}

.browser-dots span:first-child { background: #fc5659; }
.browser-dots span:nth-child(2) { background: #fdbc2c; }
.browser-dots span:last-child { background: #34ca49; }

.browser-url {
    flex: 1;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
    color: var(--text-light);
    font-family: monospace;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ext-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
    color: white;
}

.ext-badge-new { background: #2563eb; }
.ext-badge-tracked { background: #10b981; }
.ext-badge-offline { background: #ef4444; }

.browser-content {
    padding: 24px;
}

.fake-job-page .fake-company {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.fake-job-page .fake-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.fake-job-page .fake-meta {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.fake-divider {
    height: 1px;
    background: var(--border-color);
    margin-bottom: 16px;
}

.fake-text-line {
    height: 10px;
    background: #e5e7eb;
    border-radius: 4px;
    margin-bottom: 8px;
}

.fake-text-line.short {
    width: 60%;
}

.fake-apply-btn {
    display: inline-block;
    margin-top: 12px;
    background: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.badge-states {
    padding: 16px;
    border-top: 1px solid var(--border-color);
    background: #f9fafb;
}

.badge-state {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 6px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.2s;
}

.badge-state:last-child {
    margin-bottom: 0;
}

.badge-state.active {
    background: white;
    opacity: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.badge-state div strong {
    display: block;
    font-size: 13px;
    color: var(--text-dark);
}

.badge-state div span {
    font-size: 12px;
    color: var(--text-light);
}

.badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.badge-new { background: #2563eb; }
.badge-tracked { background: #10b981; }
.badge-offline { background: #ef4444; }

/* Extension popup mockup */
.ext-popup {
    width: 300px;
    margin: 20px auto;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.popup-header {
    background: var(--primary-color);
    color: white;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
}

.popup-logo {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.25);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}

.popup-form {
    padding: 16px;
}

.popup-field {
    margin-bottom: 12px;
}

.popup-field label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.popup-input, .popup-textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-dark);
    background: white;
}

.popup-input.filled {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #065f46;
}

.popup-textarea {
    min-height: 56px;
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
}

.popup-actions {
    padding: 12px 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.popup-save {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.popup-dashboard {
    background: var(--bg-light);
    color: var(--text-light);
    border: 1px solid var(--border-color);
    padding: 8px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    width: 100%;
}

/* Dashboard mockup */
.dashboard-mock {
    padding: 0;
    background: white;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    background: #f9fafb;
}

.dashboard-header strong {
    font-size: 16px;
    color: var(--text-dark);
}

.dashboard-stats {
    display: flex;
    gap: 8px;
}

.stat {
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 12px;
    background: var(--border-color);
    color: var(--text-light);
}

.stat.active {
    background: #dbeafe;
    color: var(--primary-color);
    font-weight: 600;
}

.dashboard-filters {
    display: flex;
    gap: 6px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
    overflow-x: auto;
}

.filter-chip {
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 12px;
    background: var(--bg-light);
    color: var(--text-light);
    white-space: nowrap;
    cursor: pointer;
}

.filter-chip.active {
    background: var(--primary-color);
    color: white;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.dashboard-table th {
    padding: 10px 16px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    background: #f9fafb;
}

.dashboard-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

.dashboard-table tbody tr:last-child td {
    border-bottom: none;
}

.row-highlight td {
    background: #eff6ff;
}

.stage-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

.stage-interview { background: #dbeafe; color: #1e40af; }
.stage-phone { background: #fef3c7; color: #92400e; }
.stage-applied { background: #f0fdf4; color: #065f46; }

/* Demo description column */
.demo-description {
    padding: 10px 0;
}

.demo-description h3 {
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.demo-description > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 16px;
}

.demo-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.demo-features-list li {
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.demo-features-list li::before {
    content: "→";
    color: var(--primary-color);
    font-weight: 700;
    flex-shrink: 0;
}

.demo-features-list li:last-child {
    border-bottom: none;
}

.demo-cta-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
}

.demo-cta-link:hover {
    text-decoration: underline;
}

/* =============================================
   Improved Download Section
   ============================================= */
.download-quick {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto 50px auto;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.quick-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
    min-width: 200px;
}

.quick-step-num {
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.quick-step-text {
    flex: 1;
}

.quick-step-text strong {
    display: block;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.quick-step-text code {
    font-size: 12px;
    word-break: break-all;
}

.quick-arrow {
    font-size: 24px;
    color: var(--border-color);
    flex-shrink: 0;
    align-self: center;
}

.download-cta {
    text-align: center;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .problem h2,
    .features h2,
    .screenshots h2,
    .testimonials h2,
    .comparison h2,
    .how-it-works h2,
    .privacy h2,
    .faq h2,
    .download h2 {
        font-size: 32px;
    }

    .feature-showcase,
    .steps,
    .privacy-grid,
    .screenshot-gallery,
    .testimonial-grid,
    .demo-layout {
        grid-template-columns: 1fr;
    }

    .demo-screen-wide {
        grid-column: 1;
    }

    .demo-tabs {
        max-width: 100%;
    }

    .demo-tab {
        font-size: 13px;
        padding: 10px 12px;
    }

    .dashboard-stats {
        display: none;
    }

    .ext-popup {
        width: 100%;
        max-width: 340px;
    }

    .quick-arrow {
        display: none;
    }

    .download-quick {
        flex-direction: column;
        gap: 20px;
    }

    .download-cta {
        flex-direction: column;
        align-items: center;
    }

    .social-proof {
        flex-direction: column;
        gap: 30px;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
    }
}
