/* ═══════════════════════════════════════
   FinZen — Custom Design System
   ═══════════════════════════════════════ */

:root {
    --primary: #6C63FF;
    --primary-light: #8B85FF;
    --primary-dark: #5A52E8;
    --secondary: #FF6584;
    --success: #43D9AD;
    --warning: #FFB347;
    --danger: #FF5252;
    --bg: #F8F7FF;
    --card-bg: #FFFFFF;
    --text: #1A1A2E;
    --text-muted: #8892A4;
    --border: #E8E5FF;
    --shadow: 0 4px 24px rgba(108, 99, 255, 0.08);
    --shadow-lg: 0 8px 32px rgba(108, 99, 255, 0.12);
    --sidebar-width: 260px;
    --mobile-nav-height: 65px;
    --radius: 16px;
    --radius-sm: 10px;
}

/* ═══════════════════════════════════════
   Base
   ═══════════════════════════════════════ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════
   Sidebar (Desktop)
   ═══════════════════════════════════════ */

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--card-bg);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    box-shadow: 2px 0 20px rgba(108, 99, 255, 0.05);
}

.sidebar-header {
    padding: 24px 20px;
    border-bottom: 1px solid var(--border);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}

.sidebar-logo-icon {
    font-size: 1.8rem;
}

.sidebar-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sidebar-user {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
}

.sidebar-avatar {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.sidebar-user-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sidebar-user-name {
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-user-balance {
    font-size: 0.8rem;
    color: var(--success);
    font-weight: 500;
}

.sidebar-menu {
    list-style: none;
    padding: 12px 10px;
    flex: 1;
    overflow-y: auto;
}

.sidebar-menu-item {
    margin-bottom: 4px;
}

.sidebar-menu-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.sidebar-menu-item a i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.sidebar-menu-item a:hover {
    background: var(--bg);
    color: var(--primary);
}

.sidebar-menu-item.active a {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(108, 99, 255, 0.3);
}

.sidebar-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
}

.sidebar-logout {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.sidebar-logout:hover {
    color: var(--danger);
}

/* ═══════════════════════════════════════
   Mobile Bottom Navigation
   ═══════════════════════════════════════ */

.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--mobile-nav-height);
    background: var(--card-bg);
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    border-top: 1px solid var(--border);
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 500;
    padding: 6px 12px;
    transition: color 0.2s;
}

.mobile-nav-item i {
    font-size: 1.2rem;
}

.mobile-nav-item.active {
    color: var(--primary);
}

.mobile-nav-item:hover {
    color: var(--primary);
}

/* ═══════════════════════════════════════
   Main Content
   ═══════════════════════════════════════ */

.main-content {
    margin-left: var(--sidebar-width);
    padding: 30px;
    min-height: 100vh;
}

@media (max-width: 767.98px) {
    .main-content {
        margin-left: 0;
        padding: 20px 16px;
        padding-bottom: calc(var(--mobile-nav-height) + 20px);
    }
}

/* ═══════════════════════════════════════
   Page Header
   ═══════════════════════════════════════ */

.page-header {
    margin-bottom: 24px;
}

.page-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

@media (max-width: 767.98px) {
    .page-title {
        font-size: 1.3rem;
    }
}

/* ═══════════════════════════════════════
   Cards
   ═══════════════════════════════════════ */

.finzen-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.finzen-card:hover {
    box-shadow: var(--shadow-lg);
}

/* ═══════════════════════════════════════
   Stats Grid (Dashboard)
   ═══════════════════════════════════════ */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media (max-width: 991.98px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.stat-balance .stat-icon { background: #E8FBF5; color: var(--success); }
.stat-expense .stat-icon { background: #FFE8EC; color: var(--secondary); }
.stat-income .stat-icon { background: #E8FBF5; color: var(--success); }
.stat-prediction .stat-icon { background: #F0EEFF; font-size: 1.5rem; }

.stat-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stat-value small {
    font-size: 0.7rem;
    font-weight: 400;
}

@media (max-width: 575.98px) {
    .stat-card { padding: 14px; gap: 10px; }
    .stat-icon { width: 40px; height: 40px; font-size: 1.1rem; }
    .stat-value { font-size: 1.1rem; }
}

/* ═══════════════════════════════════════
   Status Colors
   ═══════════════════════════════════════ */

.stat-good { color: var(--success); }
.stat-warning { color: var(--warning); }
.stat-danger, .stat-critical { color: var(--danger); }

.text-primary-finzen { color: var(--primary) !important; }
.text-success-finzen { color: var(--success) !important; }
.text-danger-finzen { color: var(--danger) !important; }

.bg-primary-finzen-light { background: #F0EEFF; color: var(--primary); }
.bg-success-light { background: #E8FBF5; color: var(--success); }

/* ═══════════════════════════════════════
   Charts
   ═══════════════════════════════════════ */

.chart-container {
    height: 240px;
    position: relative;
}

@media (max-width: 575.98px) {
    .chart-container { height: 200px; }
}

/* ═══════════════════════════════════════
   AI Tips
   ═══════════════════════════════════════ */

.ai-tips-card {
    background: linear-gradient(135deg, #F0EEFF 0%, #FFF8F0 100%);
    border-color: var(--border);
}

.ai-tips-content {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════
   Financial Score
   ═══════════════════════════════════════ */

.score-circle, .score-circle-lg {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--border);
    position: relative;
}

.score-circle-lg {
    width: 120px;
    height: 120px;
}

.score-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.score-number-lg {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary);
}

.score-bar {
    transition: width 1s ease;
    border-radius: 5px;
}

/* ═══════════════════════════════════════
   Transaction List
   ═══════════════════════════════════════ */

.transaction-list {
    display: flex;
    flex-direction: column;
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.transaction-item:last-child {
    border-bottom: none;
}

.transaction-item:hover {
    background: rgba(108, 99, 255, 0.02);
}

.history-list .transaction-item {
    border-bottom: 1px solid var(--border);
}

.transaction-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.transaction-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.transaction-desc {
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.transaction-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.transaction-meta .badge {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 2px 6px;
}

.transaction-amount {
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
}

/* ═══════════════════════════════════════
   Buttons
   ═══════════════════════════════════════ */

.btn-primary-finzen {
    background: var(--primary);
    border: none;
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
}

.btn-primary-finzen:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.btn-primary-finzen:active {
    transform: translateY(0);
}

.btn-outline-primary-finzen {
    border: 1.5px solid var(--primary);
    color: var(--primary);
    background: transparent;
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-outline-primary-finzen:hover {
    background: var(--primary);
    color: white;
}

/* ═══════════════════════════════════════
   Auth Pages
   ═══════════════════════════════════════ */

.auth-body {
    background: linear-gradient(135deg, #F8F7FF 0%, #EBE9FF 50%, #FFF0F5 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    width: 100%;
    max-width: 440px;
    padding: 20px;
}

.auth-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo {
    font-size: 3rem;
    margin-bottom: 8px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.auth-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.auth-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.auth-form .form-floating .form-control {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-form .form-floating .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.12);
}

.auth-form .form-floating label {
    padding: 14px 16px;
    color: var(--text-muted);
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

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

.auth-footer a:hover {
    text-decoration: underline;
}

.alert-sm {
    font-size: 0.85rem;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
}

/* ═══════════════════════════════════════
   Forms
   ═══════════════════════════════════════ */

.form-control, .form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.12);
}

.form-label {
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
}

.form-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.input-group-text {
    border: 1.5px solid var(--border);
    background: var(--bg);
    color: var(--text-muted);
}

.income-toggle {
    border: 1.5px solid var(--border);
}

.form-check-input:checked {
    background-color: var(--success);
    border-color: var(--success);
}

/* ═══════════════════════════════════════
   Profile
   ═══════════════════════════════════════ */

.profile-avatar-lg {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.avatar-color-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.2s;
}

.avatar-color-option input:checked + .avatar-color-circle {
    border-color: var(--text);
    transform: scale(1.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.avatar-color-circle:hover {
    transform: scale(1.1);
}

/* ═══════════════════════════════════════
   Badges
   ═══════════════════════════════════════ */

.badge-card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.badge-card:hover {
    transform: translateY(-3px);
}

.badge-locked-card {
    opacity: 0.55;
    filter: grayscale(0.4);
}

.badge-icon-lg {
    font-size: 2.5rem;
}

.badge-icon-sm {
    font-size: 1.5rem;
}

.badge-mini {
    padding: 8px;
    border-radius: var(--radius-sm);
    background: var(--bg);
    font-size: 0.75rem;
}

.badge-locked {
    opacity: 0.4;
}

/* ═══════════════════════════════════════
   Chat
   ═══════════════════════════════════════ */

.chat-card {
    overflow: hidden;
}

.chat-messages {
    height: 500px;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scroll-behavior: smooth;
}

@media (max-width: 767.98px) {
    .chat-messages {
        height: calc(100vh - 320px);
    }
}

.chat-welcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.chat-welcome-icon {
    font-size: 3.5rem;
    animation: float 3s ease-in-out infinite;
}

.chat-bubble {
    display: flex;
    gap: 10px;
    max-width: 85%;
    animation: fadeInUp 0.3s ease;
}

.chat-user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.chat-ai {
    align-self: flex-start;
}

.chat-bubble-content {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.92rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.chat-user .chat-bubble-content {
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 4px;
}

.chat-ai .chat-bubble-content {
    background: white;
    border: 1px solid var(--border);
    border-bottom-left-radius: 4px;
}

.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.chat-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.chat-user .chat-time {
    text-align: right;
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 4px 0;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

/* Quick Actions */
.chat-quick-actions {
    padding: 8px 20px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    border-top: 1px solid var(--border);
}

.quick-action-btn {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.quick-action-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Chat Input */
.chat-input-container {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    background: var(--card-bg);
}

.chat-input-form .input-group {
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.chat-input-form .form-control {
    border-right: none;
    padding: 12px 16px;
}

.chat-input-form .btn {
    padding: 12px 18px;
}

/* ═══════════════════════════════════════
   Drop Zone (Receipt Scanner)
   ═══════════════════════════════════════ */

.drop-zone {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--bg);
    position: relative;
}

.drop-zone:hover,
.drop-zone.drag-over {
    border-color: var(--primary);
    background: #F0EEFF;
}

.drop-zone-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.drop-zone-preview img {
    max-height: 300px;
    border-radius: var(--radius-sm);
}

/* ═══════════════════════════════════════
   Flash Messages
   ═══════════════════════════════════════ */

.messages-container {
    margin-bottom: 20px;
}

.flash-message {
    border-radius: var(--radius-sm);
    border: none;
    font-weight: 500;
    animation: fadeInDown 0.4s ease;
}

.alert-success {
    background: #E8FBF5;
    color: #1a7a5a;
}

.alert-warning {
    background: #FFF8E1;
    color: #856404;
}

.alert-error, .alert-danger {
    background: #FFE8EC;
    color: #c62828;
}

.alert-info {
    background: #F0EEFF;
    color: var(--primary-dark);
}

/* ═══════════════════════════════════════
   Animations
   ═══════════════════════════════════════ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Spinner button state */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.btn-loading::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

/* ═══════════════════════════════════════
   Pagination
   ═══════════════════════════════════════ */

.page-link {
    color: var(--primary);
    border-color: var(--border);
    border-radius: 8px !important;
    margin: 0 2px;
    font-weight: 500;
}

.page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
}

/* ═══════════════════════════════════════
   Delete Form
   ═══════════════════════════════════════ */

.delete-form button {
    opacity: 0;
    transition: opacity 0.2s;
}

.transaction-item:hover .delete-form button {
    opacity: 1;
}

/* ═══════════════════════════════════════
   Scrollbar
   ═══════════════════════════════════════ */

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ═══════════════════════════════════════
   Print
   ═══════════════════════════════════════ */

@media print {
    .sidebar, .mobile-nav, .btn { display: none !important; }
    .main-content { margin-left: 0 !important; }
}

/* Landing */
.landing-body { background: radial-gradient(circle at top, #f0edff, #f8f7ff 45%, #fff); }
.landing-nav { display:flex; justify-content:space-between; align-items:center; padding:20px 6vw; }
.landing-logo { font-weight:800; color:var(--text); text-decoration:none; font-size:1.2rem; }
.landing-hero { padding: 24px 0 48px; }
.landing-pill { background:#eae7ff; color:#5a52e8; padding:6px 12px; border-radius:999px; font-weight:600; font-size:.8rem; }
.landing-title { font-size: clamp(2rem, 5vw, 3.1rem); font-weight:800; margin:14px 0; }
.landing-subtitle { color:var(--text-muted); font-size:1.08rem; margin-bottom:20px; }
.landing-phone-mockup { background:linear-gradient(150deg, #6c63ff, #9b96ff); border-radius:24px; padding:20px; box-shadow:var(--shadow-lg); }
.landing-card { background:#fff; border-radius:14px; padding:14px; margin-bottom:10px; }
.feature-box { background:#fff; border:1px solid var(--border); box-shadow:var(--shadow); border-radius:16px; padding:18px; height:100%; }
