/* === THEME TOKENS === */
:root {
  --primary: #6366f1;
  --primary-hover: #818cf8;
  --primary-text: #a5b4fc;
  --danger: #f43f5e;
  --danger-hover: #fb7185;
  --danger-text: #fda4af;
  --success: #10b981;
  --success-text: #6ee7b7;
  --warning: #f59e0b;
  --warning-text: #fcd34d;
  --info: #3b82f6;
  --info-text: #93c5fd;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.15);
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0f172a;
  --surface: #1e293b;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-light: #64748b;
  --border: #334155;
  --border-light: #1e293b;
  --border-highlight: #475569;
  --primary-bg: rgba(99, 102, 241, 0.15);
  --danger-bg: rgba(244, 63, 94, 0.15);
  --success-bg: rgba(16, 185, 129, 0.15);
  --warning-bg: rgba(245, 158, 11, 0.15);
  --info-bg: rgba(59, 130, 246, 0.15);
}

[data-theme="light"] {
  color-scheme: light;
  --bg: #f8fafc;
  --surface: #ffffff;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --border-highlight: #cbd5e1;
  --primary-bg: #e0e7ff;
  --danger-bg: #ffe4e6;
  --success-bg: #d1fae5;
  --warning-bg: #fef3c7;
  --primary-text: #4338ca;
  --danger-text: #be123c;
  --success-text: #047857;
  --warning-text: #b45309;
  --info-bg: #dbeafe;
  --info-text: #1d4ed8;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

/* === RESET === */
* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg);
  color: var(--text-main);
  min-height: 100vh;
  padding-bottom: 80px;
  transition: background-color 0.3s, color 0.3s;
}
button { background: none; border: none; cursor: pointer; font-family: inherit; color: inherit; outline: none; }
input, select { font-family: inherit; outline: none; }
ul { list-style: none; }

/* === UTILITIES === */
.hidden { display: none !important; }
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes deleteItem {
  0% { transform: translateX(0); opacity: 1; max-height: 100px; padding-top: 16px; padding-bottom: 16px; border-bottom-width: 1px; }
  40% { transform: translateX(100%); opacity: 0; max-height: 100px; padding-top: 16px; padding-bottom: 16px; border-bottom-width: 1px; }
  100% { transform: translateX(100%); opacity: 0; max-height: 0; padding-top: 0; padding-bottom: 0; border-bottom-width: 0; margin-bottom: 0; }
}

.animate-fade-in { animation: fadeIn 0.3s ease-out forwards; }
.animate-delete { 
  animation: deleteItem 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards; 
  pointer-events: none; 
  overflow: hidden; 
}
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-warning { color: var(--warning); }
.text-info { color: var(--info); }

/* === LAYOUT === */
.container { max-width: 768px; margin: 0 auto; padding: 24px 16px; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.section-title { font-size: 20px; font-weight: bold; }
.filter-group { display: flex; gap: 8px; }
.tab-panel-narrow { max-width: 600px; margin: 0 auto; }
.section-divider { border: 0; border-top: 1px solid var(--border); margin: 32px 0 24px 0; }
.flex-group { display: flex; gap: 8px; }

/* === NAVIGATION === */
.navbar {
  position: fixed; bottom: 0; left: 0; width: 100%;
  background: var(--surface); opacity: 0.98;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--border); z-index: 50; transition: background 0.3s;
}
.nav-container { max-width: 768px; margin: 0 auto; height: 64px; display: flex; align-items: center; padding: 0 8px; }
.nav-links { display: flex; width: 100%; justify-content: space-around; }
.nav-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; color: var(--text-light); transition: color 0.2s; flex: 1; height: 64px; }
.nav-btn:hover { color: var(--text-muted); }
.nav-btn.active { color: var(--primary); }
.nav-btn .icon-container { transition: transform 0.2s; transform: scale(1); }
.nav-btn.active .icon-container { transform: scale(1.1); }
.nav-btn span { font-size: 10px; font-weight: 500; }
.brand { display: none; align-items: center; gap: 8px; font-weight: bold; font-size: 20px; color: var(--primary); }

/* === CARDS & GRIDS === */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow-sm); margin-bottom: 24px;
  transition: background 0.3s, border 0.3s;
}
.card-compact { padding: 16px; }
.card-section-title { font-size: 16px; font-weight: 600; margin-bottom: 24px; color: var(--text-main); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.summary-grid { margin-bottom: 24px; }
.summary-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 16px;
  display: flex; flex-direction: column; gap: 8px;
  transition: background 0.3s, border 0.3s;
}
.summary-title { display: flex; align-items: center; gap: 6px; color: var(--text-muted); font-size: 13px; font-weight: 500; }
.summary-value { font-size: 20px; font-weight: bold; color: var(--text-main); }
.summary-value.lg { font-size: 24px; }

/* === BUDGET PROGRESS === */
.budget-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.budget-label { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.budget-value { font-size: 14px; font-weight: bold; }
.budget-alert-text { font-size: 11px; margin-top: 8px; color: var(--danger); text-align: right; display: none; }

/* === BAR CHART === */
.bar-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.bar-row:last-child { margin-bottom: 0; }
.bar-labels { display: flex; justify-content: space-between; font-size: 13px; font-weight: 500; color: var(--text-main); align-items: flex-end; }
.bar-percentage { color: var(--text-light); margin-left: 4px; font-size: 12px; font-weight: 400; }
.bar-track { width: 100%; height: 8px; background: var(--border-light); border-radius: var(--radius-full); overflow: hidden; border: 1px solid var(--border); transition: background 0.3s; }
.bar-fill { height: 100%; border-radius: var(--radius-full); transition: width 0.8s cubic-bezier(0.1, 0.7, 0.1, 1), background-color 0.3s; }

/* === TRANSACTION LIST === */
.tx-container { background: var(--surface); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; transition: background 0.3s, border 0.3s; }
.tx-header { padding: 16px 24px; background: var(--bg); border-bottom: 1px solid var(--border); display: flex; flex-direction: column; gap: 16px; transition: background 0.3s, border 0.3s; }
.list-tabs { display: flex; background: var(--border-light); padding: 4px; border-radius: var(--radius-md); border: 1px solid var(--border); width: 100%; }
.list-tab { flex: 1; padding: 8px; font-size: 13px; font-weight: 600; border-radius: var(--radius-sm); color: var(--text-muted); transition: all 0.2s; text-align: center; }
.list-tab.active { background: var(--surface); color: var(--text-main); box-shadow: var(--shadow-sm); }
.search-wrapper { width: 100%; }
.search-icon { width: 16px; height: 16px; }
.search-input { padding: 8px 12px 8px 36px; font-size: 13px; }
.tx-list { display: flex; flex-direction: column; overflow: hidden; }
.tx-wrapper { position: relative; border-bottom: 1px solid var(--border); overflow: hidden; background: var(--border-light); }
.tx-wrapper:last-child { border-bottom: none; }
/* Removed swipe actions background */
.tx-item {
  background: var(--surface); position: relative; z-index: 2;
  padding: 16px 20px; display: flex; justify-content: space-between; align-items: center;
  transition: background 0.3s; cursor: pointer;
}
.tx-item:hover { background: var(--border-light); }
.tx-info { display: flex; align-items: center; gap: 16px; }
.tx-icon { width: 48px; height: 48px; border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tx-icon.income { background: var(--success-bg); color: var(--success-text); }
.tx-icon.expense { background: var(--danger-bg); color: var(--danger-text); }
.tx-icon.pending { background: var(--warning-bg); color: var(--warning-text); border: 1px dashed var(--warning); }
.tx-details h4 { font-weight: 600; font-size: 16px; margin-bottom: 4px; color: var(--text-main); }
.tx-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted); }
.tx-tag { background: var(--bg); padding: 2px 8px; border-radius: var(--radius-full); color: var(--text-light); border: 1px solid var(--border); white-space: nowrap; }
.tx-amount { font-weight: bold; font-size: 15px; }
.tx-right { display: flex; align-items: center; gap: 12px; }
.tx-actions-inline { display: flex; align-items: center; gap: 4px; }
.btn-icon { padding: 8px; border-radius: var(--radius-md); color: var(--text-light); transition: all 0.2s; }
.btn-icon:active { background: var(--border-light); }
.btn-icon i { width: 20px; height: 20px; }
.empty-state { padding: 32px; text-align: center; color: var(--text-light); font-size: 14px; }

/* === FORMS === */
.form-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.form-title { font-size: 24px; color: var(--text-main); }
.form-group { margin-bottom: 20px; position: relative; }
.form-label { display: block; font-size: 14px; font-weight: 500; color: var(--text-muted); margin-bottom: 6px; }
.input-wrapper { position: relative; }
.input-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--text-light); pointer-events: none; }
.input-icon-text { font-weight: bold; font-size: 18px; }
.form-control {
  width: 100%; padding: 12px 16px 12px 40px;
  background: var(--bg); color: var(--text-main);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  font-size: 15px; transition: all 0.2s;
}
.form-control::placeholder { color: var(--text-light); }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 2px var(--primary-bg); }
select.form-control { appearance: none; padding-right: 40px; cursor: pointer; }
.select-arrow { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--text-light); pointer-events: none; }
.form-control.no-icon { padding-left: 16px; }
.new-cat-input { padding: 10px 12px; }
.helper-text { font-size: 12px; color: var(--text-light); margin-top: 6px; }
.icon-inline { width: 14px; display: inline; margin-right: 4px; }

/* === TYPE SWITCHER === */
.type-switcher { display: flex; background: var(--bg); padding: 4px; border-radius: var(--radius-md); margin-bottom: 20px; border: 1px solid var(--border); transition: background 0.3s; }
.type-switcher-flush { margin-bottom: 0; }
.type-switcher-compact { padding: 2px; }
.type-btn { flex: 1; padding: 10px; font-size: 14px; font-weight: 600; border-radius: var(--radius-sm); color: var(--text-muted); transition: all 0.2s; text-align: center; }
.type-btn-compact { padding: 6px; }
.type-btn.active.expense { background: var(--danger); color: white; box-shadow: var(--shadow-sm); }
.type-btn.active.income { background: var(--success); color: white; box-shadow: var(--shadow-sm); }
.type-btn.active.neutral { background: var(--surface); color: var(--text-main); box-shadow: var(--shadow-sm); border: 1px solid var(--border); }

/* === BUTTONS === */
.btn-primary {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--primary); color: white; padding: 14px;
  border-radius: var(--radius-md); font-weight: 600; font-size: 16px;
  transition: all 0.2s; margin-top: 24px; box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); }
.btn-primary:active { transform: scale(0.98); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text-main); padding: 10px 16px; border-radius: var(--radius-md); font-weight: 600; font-size: 14px; transition: all 0.2s; }
.btn-outline:hover { background: var(--border-light); }
.btn-cancel-link { color: var(--text-light); padding: 4px; font-size: 14px; text-decoration: underline; }

/* === PILLS & DROPDOWNS === */
.suggestion-container { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; align-items: center; }
.suggestion-label { font-size: 12px; font-weight: 500; color: var(--text-light); }
.pill { background: var(--primary-bg); color: var(--primary-text); border: 1px solid var(--border-highlight); padding: 4px 12px; border-radius: var(--radius-full); font-size: 12px; font-weight: 600; transition: background 0.2s; }
.pill:hover { background: var(--primary); color: white; border-color: var(--primary); }
.filter-month-btn { border-radius: var(--radius-md); }
.filter-month-picker { padding: 6px 12px; width: auto; font-size: 13px; }
.dropdown { position: absolute; top: 100%; left: 0; width: 100%; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); margin-top: 4px; box-shadow: var(--shadow-md); z-index: 10; transition: background 0.3s; }
.dropdown-list { max-height: 200px; overflow-y: auto; padding: 4px 0; }
.dropdown-item { display: flex; align-items: center; gap: 8px; padding: 10px 16px; font-size: 14px; color: var(--text-main); transition: background 0.2s; width: 100%; text-align: left; }
.dropdown-item:hover { background: var(--bg); color: var(--primary-text); }

/* === SETTINGS === */
.settings-header { margin-bottom: 24px; }
.settings-header h2 { font-size: 24px; margin-bottom: 4px; }
.settings-header p { color: var(--text-muted); font-size: 14px; }
.settings-section-title { font-size: 16px; margin-bottom: 16px; color: var(--text-main); }
.currency-selector { position: relative; }
.currency-selected { padding: 12px 16px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); font-weight: 600; cursor: pointer; transition: all 0.2s; }
.currency-selected:hover { border-color: var(--primary); }
.currency-dropdown { position: absolute; top: 100%; left: 0; width: 100%; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); margin-top: 4px; box-shadow: var(--shadow-md); z-index: 10; overflow: hidden; }
.currency-search-wrapper { padding: 8px; border-bottom: 1px solid var(--border); position: relative; }
.currency-list { max-height: 250px; overflow-y: auto; padding: 4px 0; }
.currency-group-label { padding: 8px 12px; font-size: 11px; font-weight: bold; text-transform: uppercase; color: var(--text-light); background: var(--bg); }
.currency-option { display: flex; align-items: center; width: 100%; padding: 10px 16px; text-align: left; transition: background 0.2s; border-bottom: 1px solid var(--border-light); }
.currency-option:last-child { border-bottom: none; }
.currency-option:hover { background: var(--bg); }
.currency-option-active { background: var(--primary-bg); }
.currency-option-symbol { font-size: 16px; font-weight: bold; width: 40px; }
.currency-option-info { display: flex; flex-direction: column; flex: 1; }
.currency-option-code { font-weight: 600; font-size: 14px; color: var(--text-main); }
.currency-option-name { font-size: 11px; color: var(--text-light); }
.currency-check { width: 16px; color: var(--primary); margin-left: 12px; }
.action-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.action-btn { display: flex; align-items: center; gap: 12px; padding: 12px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); text-align: left; transition: all 0.2s; }
.action-btn:hover { background: var(--border-light); }
.action-icon { background: var(--surface); padding: 8px; border-radius: var(--radius-sm); border: 1px solid var(--border); color: var(--text-main); }
.action-text strong { display: block; font-size: 14px; }
.action-text span { font-size: 10px; color: var(--text-light); }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.manage-categories-list { margin-bottom: 16px; }
.cat-tag { display: flex; align-items: center; gap: 6px; background: var(--surface); border: 1px solid var(--border); padding: 6px 12px; border-radius: var(--radius-full); font-size: 13px; color: var(--text-main); }
.cat-tag button { color: var(--text-light); border-radius: 50%; padding: 2px; transition: 0.2s; display: flex; align-items: center; }
.cat-tag button:hover { background: var(--danger-bg); color: var(--danger); }

/* === TOAST === */
.toast { padding: 12px; border-radius: var(--radius-md); display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; margin-top: 16px; border: 1px solid transparent; }
.toast.success { background: var(--success-bg); color: var(--success-text); border-color: rgba(16, 185, 129, 0.3); }
.toast.error { background: var(--danger-bg); color: var(--danger-text); border-color: rgba(244, 63, 94, 0.3); }

/* === MODALS === */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.8); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); z-index: 100; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.2s; }
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; width: 90%; max-width: 400px; box-shadow: var(--shadow-md); transform: translateY(20px) scale(0.95); transition: transform 0.2s; }
.modal-overlay.active .modal { transform: translateY(0) scale(1); }
.modal-title { font-size: 18px; font-weight: bold; margin-bottom: 8px; }
.modal-body { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; line-height: 1.5; }
.modal-actions { display: flex; gap: 12px; justify-content: flex-end; }

/* === RESPONSIVE === */
@media (min-width: 768px) {
  body { padding-top: 0; padding-bottom: 80px; }
  .nav-links { width: 100%; gap: 32px; justify-content: center; }
  .nav-btn { width: 80px; height: 100%; flex-direction: row; gap: 8px; }
  .nav-btn span { font-size: 14px; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .currency-grid { grid-template-columns: repeat(3, 1fr); }
  .action-grid { grid-template-columns: repeat(2, 1fr); }
  .tx-header { flex-direction: row; justify-content: space-between; align-items: center; }
  .tx-item { transform: translateX(0) !important; }
  .tx-actions-inline { opacity: 1; }
  .btn-icon { padding: 8px; border-radius: var(--radius-full); }
}

/* === Ad Banner === */
.ad-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--spacing-lg);
  width: 100%;
  overflow: hidden;
  text-align: center;
}
.ad-desktop {
  display: none;
}
.ad-mobile {
  display: block;
}
@media (min-width: 768px) {
  .ad-desktop {
    display: block;
  }
  .ad-mobile {
    display: none;
  }
}

/* === LANDING PAGE === */
.landing-page {
  --lp-bg: #0f172a;
  --lp-accent: #6366f1;
  --lp-text: #f8fafc;
  --lp-muted: #94a3b8;
  background: radial-gradient(circle at top right, #1e1b4b, #0f172a 50%);
  color: var(--lp-text);
  min-height: 100vh;
  padding: 0;
  overflow-x: hidden;
}

.lp-nav {
  padding: 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lp-hero {
  max-width: 1200px;
  margin: 60px auto 20px auto;
  padding: 0 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-badge {
  background: rgba(99, 102, 241, 0.1);
  color: #818cf8;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(99, 102, 241, 0.2);
  margin-bottom: 24px;
  display: inline-block;
}

.lp-title {
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.lp-title span {
  background: linear-gradient(to right, #818cf8, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-subtitle {
  font-size: clamp(18px, 4vw, 20px);
  color: var(--lp-muted);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.lp-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 0;
}

.lp-btn {
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 15px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.lp-btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: white !important;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
  filter: brightness(1.1);
}

.lp-btn-primary.lg {
  padding: 16px 40px;
  font-size: 18px;
}

.lp-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #f8fafc !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lp-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.lp-features {
  padding: 40px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.lp-feature-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: transform 0.2s;
}

.lp-feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(99, 102, 241, 0.3);
}

.lp-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(99, 102, 241, 0.15);
  color: var(--lp-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.lp-feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.lp-feature-desc {
  color: var(--lp-muted);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .lp-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .lp-btn {
    width: 100%;
    justify-content: center;
  }
}
