/* Global link reset */
a { color: var(--accent-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Cards */
.card {
    background: var(--bg-card);
    backdrop-filter: blur(4px);
    border: 1px solid var(--border-secondary);
    border-radius: 14px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    transition: all 300ms ease;
    animation: fadeInUp 0.5s ease-out both;
}

.card:hover {
    background: var(--bg-card);
    border-color: var(--border-primary);
}

.card h3 {
    font-size: 18px;
    margin: 0 0 16px;
    font-weight: 700;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
}

[data-theme="light"] .card h3 {
    color: #111827;
}

/* Inputs */
.row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.input-group {
    margin-bottom: 1rem;
    position: relative;
}

.input-group.with-suffix input {
    padding-right: 2.5rem;
}

.input-group.with-suffix::after {
    content: attr(data-suffix);
    position: absolute;
    right: 0.75rem;
    top: 2.25rem;
    color: var(--text-muted);
    font-size: 14px;
    pointer-events: none;
}

label {
    display: block;
    font-size: 14px;
    color: var(--accent-gold);
    margin: 0 0 0.5rem;
    font-weight: 600;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 10px;
    border: 1.5px solid var(--border-primary);
    background: var(--bg-input);
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s ease;
}

input:hover,
select:hover,
textarea:hover {
    border-color: rgba(255, 165, 0, 0.3);
    background: var(--bg-input-hover);
}

input:focus,
select:focus,
textarea:focus {
    outline: 0;
    border-color: var(--accent-primary);
    background: var(--bg-input);
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.15);
}

/* Buttons */
.btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.25rem 0;
}

.btn {
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn.primary {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(255, 165, 0, 0.25);
}

.btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.35);
}

.btn.secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid rgba(255, 165, 0, 0.25);
    backdrop-filter: blur(8px);
}

.btn.secondary:hover {
    border-color: rgba(255, 165, 0, 0.5);
    background: rgba(255, 165, 0, 0.06);
    transform: translateY(-1px);
}

.btn.danger {
    background: var(--bg-card);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.3);
    backdrop-filter: blur(8px);
}

.btn.danger:hover {
    border-color: rgba(248, 113, 113, 0.5);
    background: rgba(239, 68, 68, 0.08);
    transform: translateY(-1px);
}

/* Quick Start */
.quick-start {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.05), rgba(212, 180, 131, 0.02));
    border: 1.5px solid var(--border-primary);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.5s ease-out 0.1s both;
}

.quick-start h3 {
    margin: 0;
    font-size: 18px;
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    font-weight: 600;
}

.quick-start-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.quick-start-box {
    background: var(--bg-card);
    border: 1.5px solid var(--border-muted);
    border-radius: 12px;
    padding: 0.875rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: default;
}

.quick-start-box:hover {
    border-color: rgba(255, 165, 0, 0.6);
    background: rgba(20, 30, 50, 0.7);
    transform: translateY(-2px);
}

.quick-start-icon {
    flex-shrink: 0;
}

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

.quick-start-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.quick-start-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
}

/* SEO Guide & Help */
.seo-guide {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.08), rgba(212, 180, 131, 0.03));
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 14px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.seo-guide summary {
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    color: var(--accent-primary);
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    user-select: none;
}

.seo-guide summary::-webkit-details-marker {
    display: none;
}

.seo-guide summary::before {
    content: '▶';
    font-size: 16px;
    transition: transform 0.3s ease;
    color: var(--accent-primary);
}

.seo-guide[open] summary::before {
    transform: rotate(90deg);
}

.seo-content {
    margin-top: 16px;
}

.seo-content h3 {
    font-size: 20px;
    margin: 20px 0 12px;
    color: var(--accent-gold);
}

.seo-content h4 {
    font-size: 16px;
    margin: 16px 0 8px;
    color: var(--accent-primary);
    font-weight: 600;
}

.seo-content p {
    margin: 0 0 12px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

.seo-content ul {
    margin: 8px 0 16px;
    padding-left: 24px;
    color: var(--text-secondary);
}

.seo-content li {
    margin: 6px 0;
    line-height: 1.6;
}

.seo-content .pro-tip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.15), rgba(212, 180, 131, 0.1));
    border: 1px solid rgba(255, 165, 0, 0.25);
    border-radius: 9999px;
    padding: 0.75rem 1.25rem;
    margin: 16px 0;
}

.seo-content .pro-tip span {
    color: var(--accent-gold);
    font-size: 14px;
}

.help-box {
    background: linear-gradient(135deg, rgba(78, 141, 255, 0.08), rgba(78, 141, 255, 0.03));
    border: 1px solid var(--border-secondary);
    border-radius: 14px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.help-box summary {
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    color: var(--text-primary);
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
}

.help-box summary::before {
    content: '▶';
    font-size: 16px;
    transition: transform 0.3s ease;
    color: #6ea8fe;
}

.help-box[open] summary::before {
    transform: rotate(90deg);
}

.help-box h4 {
    font-size: 15px;
    margin: 14px 0 6px;
    color: #6ea8fe;
}

.help-box p {
    margin: 0 0 10px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

/* Pulse Animation */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FFA500;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

/* AI Advisor */
.ai-trigger {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(255, 165, 0, 0.08);
    border: 1.5px solid var(--border-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

.ai-trigger:hover {
    background: rgba(255, 165, 0, 0.15);
    border-color: rgba(255, 165, 0, 0.5);
    transform: scale(1.05);
}

.ai-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    display: none;
}

.ai-panel.visible {
    display: block;
}

.ai-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: all;
}

.ai-panel.visible .ai-backdrop {
    opacity: 1;
}

.ai-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 420px;
    height: 100%;
    background: rgba(11, 16, 32, 0.98);
    border-left: 1.5px solid rgba(255, 165, 0, 0.25);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: all;
    display: flex;
    flex-direction: column;
}

.ai-panel.visible .ai-content {
    transform: translateX(0);
}

.ai-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 165, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 165, 0, 0.03);
}

.ai-icon-header {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.ai-header-text {
    flex: 1;
}

.ai-header-text h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.3px;
}

.ai-header-text p {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 4px 0 0 0;
}

.ai-body {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
}

.ai-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 165, 0, 0.15);
    background: rgba(255, 165, 0, 0.03);
}

.ai-footer-note {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    text-align: center;
}

.ai-close {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-secondary);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    border: none;
}

.ai-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.ai-trigger:hover .ai-icon {
    transform: scale(1.1);
}

/* Share Modal & Toasts */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 10000;
    animation: fadeIn 0.2s ease;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, #1a2540 0%, #0f1730 100%);
    border: 1.5px solid rgba(255, 165, 0, 0.3);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow: auto;
    animation: slideUp 0.3s ease;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 165, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-close {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 24px;
    cursor: pointer;
}

.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: rgba(7, 13, 31, 0.9);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 280px;
    animation: slideInRight 0.3s ease-out;
}

.toast.success {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.toast.error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.toast-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 18px;
    padding: 4px;
    line-height: 1;
}

/* Responsive */
@media (min-width: 640px) {
    .row {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-start-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .btns {
        flex-direction: row;
    }

    .btn {
        flex: 0;
    }

    .quick-start-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .ai-trigger {
        bottom: 24px;
        right: 20px;
        top: auto;
        width: 56px;
        height: 56px;
        border-radius: 50%;
    }

    .ai-content {
        width: 100%;
        height: auto;
        max-height: 85vh;
        top: auto;
        bottom: 0;
        border-left: none;
        border-top: 1.5px solid rgba(255, 165, 0, 0.25);
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
    }

    .quick-start-grid {
        grid-template-columns: 1fr;
    }

    .ai-icon {
        width: 28px;
        height: 28px;
    }
}

/* =========================================
   LIGHT MODE FIXES FOR INPUTS & CARDS
   ======================================== */
[data-theme="light"] input,
[data-theme="light"] select,
[data-theme="light"] textarea {
    background: #FFFFFF !important;
    border-color: #E5E7EB !important;
    color: #111827 !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] input:hover,
[data-theme="light"] select:hover,
[data-theme="light"] textarea:hover {
    background: #F9FAFB !important;
    border-color: rgba(255, 165, 0, 0.5) !important;
}

[data-theme="light"] input:focus,
[data-theme="light"] select:focus,
[data-theme="light"] textarea:focus {
    background: #FFFFFF !important;
    border-color: var(--accent-primary) !important;
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.15) !important;
    outline: none !important;
}

/* Light mode - Help boxes & Guides */
[data-theme="light"] .help-box,
[data-theme="light"] .seo-guide,
[data-theme="light"] .quick-start {
    background: #FFFFFF;
    border-color: #E2E8F0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .help-box summary,
[data-theme="light"] .seo-guide summary {
    color: #1E293B;
}

[data-theme="light"] .quick-start-box {
    background: #F8FAFC;
    border-color: #E2E8F0;
}

[data-theme="light"] .quick-start-box:hover {
    background: #FFFFFF;
    border-color: var(--accent-primary);
}

/* LIGHT MODE: AI Advisor Fix */
[data-theme="light"] .ai-content {
    background: #FFFFFF !important;
    /* Tvinger bakgrunnen hvit */
    border-left: 1px solid #E2E8F0;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .ai-header,
[data-theme="light"] .ai-footer {
    background: #F8FAFC;
    /* En anelse gråere for header/footer */
    border-color: #E2E8F0;
}

[data-theme="light"] .ai-close {
    color: #64748B;
    background: transparent;
    border: 1px solid #E2E8F0;
}

[data-theme="light"] .ai-close:hover {
    background: #F1F5F9;
    color: #000;
}

/* Light mode — callouts (blog articles) */
[data-theme="light"] .callout-tip {
    background: #FEF3C7 !important;
    border-color: #F59E0B !important;
    color: #92400E !important;
}

[data-theme="light"] .callout-tip * {
    color: #92400E !important;
}

[data-theme="light"] .callout-warning {
    background: #FEE2E2 !important;
    border-color: #EF4444 !important;
    color: #991B1B !important;
}

[data-theme="light"] .callout-warning * {
    color: #991B1B !important;
}

/* Light mode — legal callout */
[data-theme="light"] .legal-callout {
    background: #FEF3C7;
    border-color: #F59E0B;
    color: #92400E;
}

[data-theme="light"] .legal-callout p {
    color: #92400E;
}

/* Light mode — help/seo summary text */
[data-theme="light"] .help-box summary,
[data-theme="light"] .seo-guide summary,
[data-theme="light"] .quick-start h3 {
    color: #111111;
}

[data-theme="light"] .help-box p,
[data-theme="light"] .seo-guide p,
[data-theme="light"] .seo-guide li {
    color: #555555;
    line-height: 1.7;
}

/* =========================================
   HUB SPECIFIC STYLES
   ========================================= */

/* Calculator Grid */
.calculators-section {
    padding: 2rem 0 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.5s ease-out;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.calculator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    animation: fadeInUp 0.5s ease-out 0.2s both;
}

.calculator-card {
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    height: 100%;
}

.calculator-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
}

[data-theme="light"] .calculator-card:hover {
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.calculator-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 1.25rem 0 0.75rem;
}

.calculator-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 165, 0, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 165, 0, 0.1);
}

.calculator-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent-primary);
    color: #fff;
    border-color: transparent;
}

[data-theme="light"] .calculator-card:hover .card-icon {
    color: #fff;
    /* Ensure icon turns white on hover in light mode too */
}

.card-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255, 165, 0, 0.1);
    color: var(--accent-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 165, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-cta {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s ease;
}

.calculator-card:hover .card-cta {
    gap: 0.75rem;
    text-decoration: underline;
}

/* Coming Soon */
.coming-soon-card {
    border-style: dashed;
    opacity: 0.7;
    background: transparent;
}

.coming-soon-card:hover {
    transform: none;
    border-color: var(--border-secondary);
    box-shadow: none;
    cursor: default;
}

/* Landing Page Mockup */
.mockup-container {
    background: var(--bg-card);
    border: 1px solid var(--border-secondary);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
    max-width: 480px;
    margin: 0 auto;
}

.mockup-container:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.mockup-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border-secondary);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.8;
}

.mockup-url {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 11px;
    color: var(--text-muted);
    flex: 1;
    text-align: center;
    font-family: monospace;
}

.mockup-content {
    padding: 1.5rem;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-primary);
}

.result-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.result-price {
    text-align: right;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.result-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-box {
    background: rgba(255, 165, 0, 0.05);
    border: 1px solid var(--border-primary);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}

.stat-label {
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.stat-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.waste-bar {
    margin-bottom: 1.5rem;
}

.waste-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 6px;
    color: var(--text-secondary);
}

.progress-bar {
    height: 6px;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--accent-primary);
    border-radius: 3px;
}

.mockup-cta {
    background: var(--accent-primary);
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Hero Extras */
.version-badge {
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    color: var(--accent-primary);
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.version-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    margin-top: 1.5rem;
}