/**
 * Homepage-specific styles
 * Desktop premium + Mobile app feel
 */

:root {
  --home-max-width: 1280px;
  --home-max-width-narrow: 720px;
  --home-safe-bottom: env(safe-area-inset-bottom, 0px);
  --home-safe-top: env(safe-area-inset-top, 0px);
}

/* ============================================
   HERO - Redesigned for "get data fast"
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(160deg, #20191c 0%, #2d2428 50%, #1a1518 100%);
  color: white;
  padding: 80px 16px 100px;
  margin: -24px -16px 0;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(240,84,35,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,84,35,.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
@media (min-width: 640px) { .hero { padding: 100px 24px 120px; } }
@media (min-width: 1024px) { .hero { padding: 120px 32px 140px; } }

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(240,84,35,.15), transparent),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(240,84,35,.08), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 9999px;
  padding: 8px 16px;
  margin-bottom: 24px;
  font-size: 13px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  margin: 0 0 20px;
  line-height: 1.1;
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}

.hero h1 span { display: block; font-size: 32px; font-weight: 800; }
.hero h1 .accent { color: #f05423; }
@media (min-width: 480px) { .hero h1 span { font-size: 42px; } }
@media (min-width: 640px) { .hero h1 span { font-size: 52px; } }
@media (min-width: 1024px) { .hero h1 span { font-size: 64px; } }

.hero .hero-content > p {
  font-size: 16px;
  color: rgba(255,255,255,.65);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
@media (min-width: 640px) { .hero .hero-content > p { font-size: 19px; margin-bottom: 40px; } }

.stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
@media (min-width: 640px) { .stats { gap: 40px; } }

.stats div { text-align: center; }

.stats strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #f05423;
}
@media (min-width: 640px) { .stats strong { font-size: 40px; } }

.stats span {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
}
@media (min-width: 640px) { .stats span { font-size: 13px; } }

.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #f05423 0%, #d9451a 100%);
  color: white;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(240,84,35,.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(240,84,35,.5); }
@media (min-width: 640px) { .cta { font-size: 16px; padding: 16px 28px; } }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }

/* ============================================
   MOST USED / QUICK ACCESS
   ============================================ */
.most-used {
  padding: 40px 16px;
  background: white;
  border-bottom: 1px solid #e5e7eb;
}
@media (min-width: 640px) { .most-used { padding: 48px 24px; } }
@media (min-width: 1024px) { .most-used { padding: 56px 32px; } }

.section-title { text-align: center; margin-bottom: 24px; }
@media (min-width: 640px) { .section-title { margin-bottom: 32px; } }

.section-title h2 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f05423;
  margin: 0 0 4px;
}

.section-title p { font-size: 15px; color: #6b7280; margin: 0; }
@media (min-width: 640px) { .section-title p { font-size: 16px; } }

/* Desktop: grid. Mobile: horizontal scroll */
.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .quick-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media (min-width: 1024px) {
  .quick-grid {
    grid-template-columns: repeat(5, 1fr);
    max-width: var(--home-max-width);
  }
}

/* Mobile: horizontal scroll for app-like shortcuts */
@media (max-width: 639px) {
  .quick-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 8px;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .quick-grid::-webkit-scrollbar { display: none; }
  .quick-btn {
    flex: 0 0 100px;
    min-width: 100px;
    scroll-snap-align: start;
  }
}

.quick-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 12px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  text-decoration: none;
  color: #1f2937;
  transition: all 0.25s ease;
  min-height: 140px;
}
@media (min-width: 640px) { .quick-btn { padding: 24px 16px; min-height: 150px; } }
@media (min-width: 1024px) { .quick-btn { padding: 28px 16px; min-height: 160px; } }

.quick-btn:hover {
  border-color: #f05423;
  box-shadow: 0 12px 30px rgba(240,84,35,.15);
  transform: scale(1.02);
}

.quick-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #f05423 0%, #ff7a50 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 20px;
  color: white;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(240,84,35,.25);
}
@media (min-width: 640px) { .quick-icon { width: 56px; height: 56px; font-size: 22px; } }
@media (min-width: 1024px) { .quick-icon { width: 64px; height: 64px; font-size: 24px; } }

.quick-btn:hover .quick-icon {
  background: linear-gradient(135deg, #ff7a50 0%, #f05423 100%);
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(240,84,35,.35);
}

.quick-title { font-size: 14px; font-weight: 700; margin: 0 0 4px; text-align: center; }
@media (min-width: 640px) { .quick-title { font-size: 15px; } }
@media (min-width: 1024px) { .quick-title { font-size: 16px; } }

.quick-desc { font-size: 11px; color: #6b7280; text-align: center; margin: 0; line-height: 1.4; }
@media (min-width: 640px) { .quick-desc { font-size: 12px; } }

.quick-time {
  font-size: 10px;
  color: #9ca3af;
  margin-top: 4px;
}
@media (max-width: 639px) { .quick-desc { display: none; } }

/* ============================================
   RECENT TOOLS
   ============================================ */
.recent-tools {
  padding: 24px 16px;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 0;
}
@media (min-width: 640px) { .recent-tools { padding: 32px 24px; } }

.recent-tools__title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b7280;
  margin: 0 0 16px;
  padding: 0 4px;
}

.recent-tools__grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
}
.recent-tools__grid::-webkit-scrollbar { display: none; }

.recent-tools__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  text-decoration: none;
  color: #1f2937;
  transition: all 0.2s ease;
  scroll-snap-align: start;
  min-width: 180px;
}
.recent-tools__item:hover {
  border-color: #f05423;
  box-shadow: 0 4px 12px rgba(240,84,35,.15);
}

.recent-tools__icon {
  width: 40px;
  height: 40px;
  background: #fff5f2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f05423;
  font-size: 16px;
}

.recent-tools__name { font-size: 14px; font-weight: 600; }

/* ============================================
   SEARCH - Unified command bar
   ============================================ */
.search {
  position: relative;
  z-index: 20;
  margin-top: 0;
  padding: 24px 16px 40px;
}
@media (min-width: 640px) { .search { padding: 0 24px 50px; } }
@media (min-width: 1024px) { .search { padding: 0 32px; } }

.search-box {
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,.1);
  border: 1px solid rgba(0,0,0,.05);
  position: relative;
}
@media (min-width: 640px) { .search-box { padding: 24px; border-radius: 24px; max-width: 900px; } }

.search-box > i {
  position: absolute;
  left: 24px;
  top: 28px;
  color: #9ca3af;
  font-size: 18px;
}
@media (min-width: 640px) { .search-box > i { left: 32px; top: 36px; font-size: 20px; } }

.search input {
  width: 100%;
  height: 52px;
  min-height: 44px;
  padding: 0 40px 0 48px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 15px;
  background: #fafafa;
}
@media (min-width: 640px) {
  .search input {
    height: 60px;
    padding-left: 56px;
    font-size: 16px;
    border-radius: 16px;
  }
}

.search input:focus {
  outline: none;
  border-color: #f05423;
  background: white;
}

#clearSearch {
  position: absolute;
  right: 24px;
  top: 28px;
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
}
@media (min-width: 640px) { #clearSearch { right: 32px; top: 36px; } }

.tags {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.tags button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: white;
  color: #4b5563;
  font-size: 13px;
  cursor: pointer;
  min-height: 36px;
}

.tags button:hover { border-color: #f05423; color: #f05423; }
.tags button.active { background: #f05423; border-color: #f05423; color: white; }

.status { text-align: center; margin-top: 12px; font-size: 14px; color: #6b7280; }

/* ============================================
   FILTER CONTROLS - Collapsible on mobile
   ============================================ */
.filter-controls {
  max-width: var(--home-max-width);
  margin: 0 auto 32px;
  padding: 0 16px;
}
@media (min-width: 640px) { .filter-controls { padding: 0 24px; margin-bottom: 40px; } }
@media (min-width: 1024px) { .filter-controls { padding: 0 32px; margin-bottom: 48px; } }

.filter-toggle-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #4b5563;
  cursor: pointer;
  margin-bottom: 16px;
  min-height: 44px;
}
@media (min-width: 640px) { .filter-toggle-mobile { display: none; } }

.filter-toggle-mobile:hover { border-color: #f05423; color: #f05423; }

.filter-controls__panel {
  display: none;
}
@media (min-width: 640px) { .filter-controls__panel { display: block; } }

.filter-controls__panel.is-open { display: block; }

.filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.filter-sort {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
}

.sort-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.sort-select {
  appearance: none;
  -webkit-appearance: none;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 36px 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  cursor: pointer;
  min-width: 150px;
  transition: all 0.2s ease;
}

.sort-select:hover { border-color: #f05423; }

.sort-select:focus {
  outline: none;
  border-color: #f05423;
  box-shadow: 0 0 0 3px rgba(240, 84, 35, 0.1);
}

.sort-arrow {
  position: absolute;
  right: 12px;
  pointer-events: none;
  color: #6b7280;
  font-size: 12px;
}

.sort-label-mobile { display: none; font-size: 13px; color: #6b7280; }

.clear-filters {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  color: #dc2626;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.clear-filters:hover {
  background: #fee2e2;
  border-color: #f87171;
}

.clear-filters.hidden { display: none; }

.filter-section {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.filter-section:last-child { margin-bottom: 0; }

.filter-section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #9ca3af;
  padding-top: 10px;
  white-space: nowrap;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: white;
  border: 1.5px solid #e5e7eb;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: #4b5563;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-height: 36px;
}

.filter-chip:hover {
  border-color: #f05423;
  color: #f05423;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(240, 84, 35, 0.15);
}

.filter-chip.active {
  background: #f05423;
  border-color: #f05423;
  color: white;
}

.filter-chip.active:hover {
  background: #d9451a;
  border-color: #d9451a;
}

.filter-chip i { font-size: 12px; }

.filter-chip--material {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 16px;
  background: #f9fafb;
}

.filter-chip--material:hover { background: white; }

.filter-chip--material.active {
  background: #1f2937;
  border-color: #1f2937;
  color: white;
}

@media (max-width: 639px) {
  .filter-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .filter-sort { width: 100%; }
  .sort-select { flex: 1; }
  .filter-section {
    flex-direction: column;
    gap: 10px;
  }
  .filter-section-label {
    padding-top: 0;
    font-size: 11px;
  }
  .filter-chips { gap: 6px; }
  .filter-chip { padding: 6px 12px; font-size: 12px; }
  .filter-chip--material { padding: 5px 10px; font-size: 11px; }
}

/* ============================================
   TOOLS GRID
   ============================================ */
.tools {
  max-width: var(--home-max-width);
  margin: 0 auto;
  padding: 0 16px 60px;
}
@media (min-width: 640px) { .tools { padding: 0 24px 80px; } }
@media (min-width: 1024px) { .tools { padding: 0 32px 100px; } }

.tools > h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px;
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}
@media (min-width: 640px) { .tools > h2 { font-size: 28px; } }

.tools > p { text-align: center; color: #6b7280; margin: 0 0 32px; font-size: 15px; }

.tools-trust {
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
  margin: -16px 0 24px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 100%;
  box-sizing: border-box;
}
@media (min-width: 640px) { .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; } }
@media (min-width: 1024px) { .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; } }
@media (min-width: 1440px) { .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.grid .card { min-width: 0; word-wrap: break-word; overflow-wrap: break-word; }

.card {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: white;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
@media (min-width: 640px) { .card { padding: 20px; border-radius: 16px; } }

.card:hover {
  border-color: #f05423;
  box-shadow: 0 12px 32px rgba(240,84,35,.15), 0 4px 12px rgba(0,0,0,.08);
  transform: translateY(-3px);
}

.card:active { transform: scale(0.99); }

.card-favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(0,0,0,.04);
  border-radius: 50%;
  color: #9ca3af;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
  z-index: 2;
}
.card-favorite:hover {
  background: rgba(240,84,35,.1);
  color: #f05423;
}
.card-favorite.is-favorite {
  background: rgba(239,68,68,.12);
  color: #ef4444;
}
.card-favorite.is-favorite i {
  font-weight: 900;
}

.icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  background: #fff5f2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 640px) { .icon { width: 48px; height: 48px; min-width: 48px; min-height: 48px; border-radius: 14px; } }

.icon i { color: #f05423; font-size: 18px; }
@media (min-width: 640px) { .icon i { font-size: 20px; } }

.card:hover .icon { background: #f05423; }
.card:hover .icon i { color: white; }

.info { flex: 1; min-width: 0; }

.info h3 { font-size: 15px; font-weight: 600; color: #1f2937; margin: 0 0 4px; }
@media (min-width: 640px) { .info h3 { font-size: 16px; margin-bottom: 6px; } }

.info p {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0 0 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (min-width: 640px) { .info p { font-size: 13px; } }

.cat {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  color: #9ca3af;
  background: #f3f4f6;
  padding: 3px 8px;
  border-radius: 4px;
}
@media (min-width: 640px) { .cat { font-size: 11px; padding: 4px 10px; } }

.card-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-left: auto;
  padding-left: 8px;
}
@media (min-width: 640px) { .card-actions { gap: 10px; padding-left: 12px; } }

.open-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f05423 0%, #d9451a 100%);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 8px 14px;
  min-height: 36px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(240,84,35,.3);
  transition: all 0.2s ease;
}
@media (min-width: 640px) { .open-btn { font-size: 12px; padding: 10px 18px; border-radius: 10px; box-shadow: 0 3px 12px rgba(240,84,35,.35); } }

.card:hover .open-btn {
  background: linear-gradient(135deg, #ff6b3d 0%, #e84d1f 100%);
  box-shadow: 0 4px 14px rgba(240,84,35,.45);
  transform: scale(1.02);
}

.arrow { color: #d1d5db; font-size: 10px; opacity: .6; transition: all 0.2s ease; }
@media (min-width: 640px) { .arrow { font-size: 11px; } }
.card:hover .arrow { color: #f05423; opacity: 1; transform: translateX(3px); }

.empty { text-align: center; padding: 60px 20px; }
.empty.hidden { display: none; }

.empty > i {
  width: 80px;
  height: 80px;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: #9ca3af;
}

.empty h3 { font-size: 20px; font-weight: 600; margin: 0 0 8px; }
.empty p { color: #6b7280; margin: 0 0 20px; }

.empty button {
  padding: 12px 24px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  color: #4b5563;
  font-size: 15px;
  cursor: pointer;
  min-height: 44px;
}
.empty button:hover { border-color: #f05423; color: #f05423; }

.card.hidden { display: none; }
.card.filter-match { animation: fadeInUp 0.3s ease; }

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

/* ============================================
   FEATURES
   ============================================ */
.features {
  background: white;
  padding: 60px 16px;
  margin: 0 -16px;
}
@media (min-width: 640px) { .features { padding: 80px 24px; margin: 0 -24px; } }
@media (min-width: 1024px) { .features { padding: 100px 32px; margin: 0 -32px; } }

.features h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 40px;
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}
@media (min-width: 640px) { .features h2 { font-size: 28px; } }

.row {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .row { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.feat { text-align: center; padding: 24px 16px; }
@media (min-width: 640px) { .feat { padding: 32px 24px; } }

.feat > i {
  width: 56px;
  height: 56px;
  background: #fff5f2;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: #f05423;
}
@media (min-width: 640px) { .feat > i { width: 64px; height: 64px; border-radius: 20px; margin-bottom: 20px; font-size: 24px; } }

.feat h3 { font-size: 16px; font-weight: 600; margin: 0 0 8px; }
@media (min-width: 640px) { .feat h3 { font-size: 18px; } }

.feat p { font-size: 13px; color: #6b7280; line-height: 1.6; margin: 0; }
@media (min-width: 640px) { .feat p { font-size: 14px; } }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 48px 16px 100px;
}
@media (min-width: 640px) { .cta-section { padding: 60px 24px 100px; } }
@media (min-width: 1024px) { .cta-section { padding: 80px 32px; } }

.cta-box {
  max-width: var(--home-max-width-narrow);
  margin: 0 auto;
  background: linear-gradient(135deg, #f05423 0%, #d9451a 100%);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) { .cta-box { padding: 48px 40px; border-radius: 24px; } }

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 60%);
}

.cta-box > * { position: relative; z-index: 1; }

.cta-box h2 { font-size: 22px; font-weight: 700; margin: 0 0 12px; }
@media (min-width: 640px) { .cta-box h2 { font-size: 28px; margin-bottom: 16px; } }

.cta-box > p { font-size: 14px; color: rgba(255,255,255,.8); margin: 0 0 24px; line-height: 1.6; }
@media (min-width: 640px) { .cta-box > p { font-size: 16px; margin-bottom: 32px; } }

.cta-box__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #f05423;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.cta-box__btn:hover { transform: scale(1.02); }
@media (min-width: 640px) { .cta-box__btn { font-size: 16px; padding: 16px 28px; border-radius: 14px; } }

.cta-box__secondary {
  margin-top: 16px;
  font-size: 13px;
  opacity: 0.9;
}
.cta-box__secondary a {
  color: white;
  text-decoration: underline;
  background: none;
  padding: 0;
  display: inline;
}

/* Bottom nav styles moved to design-system.css (shared component) */
