/* ============================================================================
   KI-Tool-Verzeichnis — Design System
   Dunkel-futuristisch + Mix: Aurora-Hero (dunkel) · heller Content · Glow-Details
   Ein gemeinsames Stylesheet für Startseite + Affiliate-Landingpages.
   ========================================================================== */

/* ---- 1. Design-Tokens ---------------------------------------------------- */
:root {
  --bg:        #f5f7fc;
  --surface:   #ffffff;
  --surface2:  #eef2f9;
  --card:      #ffffff;
  --border:    #e4eaf3;
  --border2:   #d3ddec;

  --dark:      #0a0d18;
  --dark2:     #0e1324;
  --dark-text: #eef1f8;
  --dark-muted:#9aa6be;

  --navy:      #0a2540;
  --accent:    #2563eb;
  --accent-h:  #1d4fd0;
  --accent2:   #00c2ff;
  --violet:    #7c5cff;
  --accent-soft: rgba(37,99,235,0.08);
  --accent-line: rgba(37,99,235,0.22);

  --green:     #0a9d5a;
  --red:       #e0355a;
  --gold:      #b9860b;

  --text:      #0f1b2d;
  --text2:     #52627a;
  --text3:     #8a97ab;

  --shadow:    0 10px 30px rgba(13,42,89,0.08);
  --shadow-lg: 0 20px 55px rgba(13,42,89,0.16);
  --radius:    14px;
  --mono:      'JetBrains Mono', monospace;
  --maxw:      1140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navigation */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,13,24,0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.85rem 1.5rem; max-width: var(--maxw); margin: 0 auto; flex-wrap: wrap;
}
.logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-weight: 800; font-size: 1rem; letter-spacing: -0.01em; color: #fff;
}
.logo-icon {
  width: 30px; height: 30px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; color: #fff; font-weight: 800; letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--violet), var(--accent2));
  box-shadow: 0 0 18px rgba(0,194,255,0.5);
}
nav a[href^="/beste"], .nav-back {
  font-weight: 600; color: rgba(255,255,255,0.72) !important;
  font-size: 0.85rem; padding: 0.4rem 0.7rem; border-radius: 8px;
  transition: color .18s, background .18s;
}
nav a[href^="/beste"]:hover, .nav-back:hover {
  color: #fff !important; background: rgba(255,255,255,0.1);
}
.nav-badge {
  font-family: var(--mono); font-size: 0.68rem; color: #cbd5e1;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  padding: 0.3rem 0.65rem; border-radius: 20px;
}
.nav-badge .dot {
  display: inline-block; width: 6px; height: 6px; background: #22e39a; border-radius: 50%;
  margin-right: 5px; box-shadow: 0 0 8px #22e39a; animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; box-shadow: 0 0 8px #22e39a; }
  50%     { opacity: 0.45; box-shadow: 0 0 2px #22e39a; }
}

/* HERO — dunkel mit Aurora-Mesh */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--dark);
  color: var(--dark-text);
  padding: 6rem 1.5rem 5rem;
  text-align: left;
}
.hero > * { position: relative; z-index: 2; max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.hero::before {
  content: '';
  position: absolute; inset: -25% -12% -25% -12%;
  z-index: 0;
  background:
    radial-gradient(38% 48% at 20% 32%, rgba(124,92,255,0.60), transparent 62%),
    radial-gradient(34% 44% at 82% 22%, rgba(0,194,255,0.50), transparent 62%),
    radial-gradient(46% 56% at 66% 82%, rgba(37,99,235,0.55), transparent 62%),
    radial-gradient(30% 40% at 42% 72%, rgba(0,229,200,0.38), transparent 62%);
  filter: blur(46px) saturate(135%);
  animation: aurora 20s ease-in-out infinite alternate;
}
@keyframes aurora {
  0%   { transform: translate3d(-3%,-2%,0) scale(1.05) rotate(0deg); }
  50%  { transform: translate3d(3%, 2%,0) scale(1.16) rotate(4deg); }
  100% { transform: translate3d(-2%,3%,0) scale(1.09) rotate(-3deg); }
}
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 92% 82% at 50% 18%, #000 38%, transparent 86%);
  -webkit-mask-image: radial-gradient(ellipse 92% 82% at 50% 18%, #000 38%, transparent 86%);
}
.hero-label, .cta-label {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--mono); font-size: 0.72rem; font-weight: 500;
  color: #d7dbff; background: rgba(124,92,255,0.16);
  border: 1px solid rgba(124,92,255,0.4); padding: 0.35rem 0.85rem;
  border-radius: 20px; margin-bottom: 1.5rem; letter-spacing: 0.02em;
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-size: clamp(2.3rem, 5.2vw, 3.9rem);
  font-weight: 800; line-height: 1.06; letter-spacing: -0.035em;
  color: #fff; max-width: 760px; margin-bottom: 1.25rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.hero h1 .accent {
  background: linear-gradient(100deg, #a78bfa, #00c2ff, #22d3ee, #a78bfa);
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shine 8s linear infinite;
}
@keyframes shine { to { background-position: 300% 0; } }
.hero p, .hero-sub {
  color: var(--dark-muted); font-size: 1.12rem; max-width: 580px;
  line-height: 1.6; margin: 0 0 2.25rem;
}
.hero--center { text-align: center; }
.hero--center p { margin-left: auto; margin-right: auto; }

/* Suche auf dunklem Hero */
.search-wrap {
  display: flex; max-width: 540px;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06);
}
.search-wrap input {
  flex: 1; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16);
  border-right: none; color: #fff; font-family: 'Inter', sans-serif; font-size: 0.95rem;
  padding: 0.95rem 1.2rem; border-radius: 12px 0 0 12px; outline: none;
  transition: border-color .2s, background .2s; backdrop-filter: blur(6px);
}
.search-wrap input:focus { border-color: var(--accent2); background: rgba(255,255,255,0.12); }
.search-wrap input::placeholder { color: rgba(255,255,255,0.55); }
.search-wrap button {
  background: linear-gradient(135deg, var(--accent), var(--violet)); color: #fff; border: none;
  padding: 0.95rem 1.7rem; font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 700;
  cursor: pointer; border-radius: 0 12px 12px 0; transition: filter .2s; white-space: nowrap;
}
.search-wrap button:hover { filter: brightness(1.12); }

/* Filterleiste */
.filter-bar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 1.75rem 1.5rem 0; max-width: var(--maxw); margin: 0 auto; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.filter-label { font-family: var(--mono); font-size: 0.7rem; color: var(--text3); margin-right: 0.25rem; }
.filter-btn {
  font-size: 0.8rem; font-weight: 600; padding: 0.4rem 0.9rem; border-radius: 20px;
  border: 1px solid var(--border2); background: var(--card); color: var(--text2);
  cursor: pointer; transition: all .15s; text-decoration: none; display: inline-block;
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Toolbar */
.toolbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; max-width: var(--maxw); margin: 0 auto; gap: 1rem; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.toolbar-count { font-size: 0.9rem; color: var(--text2); }
.toolbar-count strong { color: var(--accent); font-weight: 700; }
.clear-btn {
  font-size: 0.8rem; font-weight: 600; color: var(--text2); border: 1px solid var(--border2);
  padding: 0.35rem 0.8rem; border-radius: 8px; cursor: pointer; transition: all .2s;
}
.clear-btn:hover { border-color: var(--red); color: var(--red); }

/* Tool-Grid + Cards */
.tools-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem; padding: 1rem 1.5rem 2rem; max-width: var(--maxw); margin: 0 auto;
  position: relative; z-index: 1;
}
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; display: flex; flex-direction: column; gap: 0.95rem;
  box-shadow: var(--shadow); transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--violet));
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.card:hover {
  border-color: var(--border2); transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--accent-line);
}
.card:hover::before { transform: scaleX(1); }
.card-top { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
.card-thumb {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 11px; object-fit: cover;
  border: 1px solid var(--border2); background: var(--surface2);
}
.card-thumb.avatar {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-weight: 700; font-size: 1.1rem; color: #fff;
  background: linear-gradient(135deg, hsl(var(--h),68%,55%), hsl(calc(var(--h) + 40),62%,40%));
}
.card-title { font-size: 1rem; font-weight: 700; line-height: 1.35; color: var(--navy); flex: 1; }
.card-link {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 0.3rem;
  background: var(--accent-soft); color: var(--accent); font-family: var(--mono);
  font-size: 0.7rem; font-weight: 600; padding: 0.35rem 0.7rem; border-radius: 8px;
  border: 1px solid var(--accent-line); transition: all .2s;
}
.card-link:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.card-desc { font-size: 0.9rem; color: var(--text2); line-height: 1.65; flex: 1; }
.card-desc.empty { color: var(--text3); font-style: italic; font-size: 0.83rem; }
.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.85rem; border-top: 1px solid var(--border); gap: 0.5rem; flex-wrap: wrap;
}
.card-source {
  font-family: var(--mono); font-size: 0.66rem; color: var(--text2); background: var(--surface2);
  border: 1px solid var(--border); padding: 0.22rem 0.6rem; border-radius: 6px; letter-spacing: 0.02em;
}
.card-date { font-family: var(--mono); font-size: 0.66rem; color: var(--text3); }
.cat-badge {
  font-family: var(--mono); font-size: 0.64rem; font-weight: 500; padding: 0.2rem 0.55rem;
  border-radius: 10px; border: 1px solid var(--accent-line); background: var(--accent-soft);
  color: var(--accent); letter-spacing: 0.02em; cursor: pointer; transition: all .15s;
  text-decoration: none; white-space: nowrap;
}
.cat-badge:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Empty State */
.empty {
  text-align: center; padding: 6rem 2rem; color: var(--text3);
  max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 1;
}
.empty svg { margin-bottom: 1rem; opacity: 0.4; }
.empty p { font-size: 0.95rem; }

/* Pagination */
.pagination {
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 1rem 1.5rem 3.5rem; font-family: var(--mono); font-size: 0.8rem;
  position: relative; z-index: 1;
}
.pagination a, .pagination span {
  padding: 0.55rem 1.1rem; border: 1px solid var(--border2); border-radius: 8px;
  color: var(--text2); background: var(--card); transition: all .2s;
}
.pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination .cur { border-color: var(--accent); color: #fff; background: var(--accent); }
.pagination .off { opacity: 0.4; pointer-events: none; }

/* Newsletter-CTA */
.cta-section {
  position: relative; z-index: 1; border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface2), var(--bg)); padding: 4.5rem 1.5rem;
}
.cta-inner {
  max-width: var(--maxw); margin: 0 auto; display: grid;
  grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.cta-label { color: var(--green); background: rgba(10,157,90,0.08); border-color: rgba(10,157,90,0.25); }
.cta-title { font-size: 1.9rem; font-weight: 800; line-height: 1.18; letter-spacing: -0.02em; color: var(--navy); margin-bottom: 0.85rem; }
.cta-desc { color: var(--text2); font-size: 0.95rem; line-height: 1.6; }
.cta-features { margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.6rem; }
.cta-feature { display: flex; align-items: center; gap: 0.65rem; font-size: 0.9rem; color: var(--text); }
.cta-feature::before {
  content: ''; width: 18px; height: 18px; flex-shrink: 0;
  background: rgba(10,157,90,0.14); border: 1px solid rgba(10,157,90,0.3); border-radius: 5px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.5L3.8 6.5L9 1' stroke='%230a9d5a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.cta-form-wrap { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 2rem; box-shadow: var(--shadow); }
.cta-form-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 1.25rem; }
.form-row { display: flex; margin-bottom: 0.8rem; }
.form-row input {
  flex: 1; background: var(--surface2); border: 1px solid var(--border2); border-right: none;
  color: var(--text); font-family: 'Inter', sans-serif; font-size: 0.9rem;
  padding: 0.85rem 1rem; border-radius: 10px 0 0 10px; outline: none; transition: border-color .2s;
}
.form-row input:focus { border-color: var(--accent); }
.form-row input::placeholder { color: var(--text3); }
.form-row button {
  background: var(--accent); color: #fff; border: none; padding: 0.85rem 1.35rem;
  font-family: 'Inter', sans-serif; font-size: 0.88rem; font-weight: 700; cursor: pointer;
  border-radius: 0 10px 10px 0; transition: background .2s; white-space: nowrap;
}
.form-row button:hover { background: var(--accent-h); }
.form-row button:disabled { opacity: 0.5; cursor: not-allowed; }
.consent-row {
  display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.78rem;
  color: var(--text2); line-height: 1.5; cursor: pointer; margin-bottom: 0.75rem;
}
.consent-row input[type=checkbox] { margin-top: 2px; flex-shrink: 0; accent-color: var(--accent); cursor: pointer; }
.consent-row a { color: var(--accent); font-weight: 600; }
.form-msg { font-family: var(--mono); font-size: 0.78rem; min-height: 1.2em; }
.form-msg.ok  { color: var(--green); }
.form-msg.err { color: var(--red); }

/* Affiliate-Landingpages */
.adlabel {
  max-width: 880px; margin: 2rem auto 0; padding: 0.9rem 1.15rem;
  background: rgba(185,134,11,0.07); border: 1px solid rgba(185,134,11,0.28);
  border-radius: 12px; font-size: 0.85rem; color: #7a5c12; line-height: 1.55;
  display: flex; gap: 0.6rem; align-items: flex-start;
}
.adlabel strong { color: var(--gold); }
.list { padding: 2.25rem 0 1rem; display: flex; flex-direction: column; gap: 1.1rem; max-width: 880px; margin: 0 auto; }
.item {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem 1.6rem; display: flex; gap: 1.3rem; align-items: flex-start;
  box-shadow: var(--shadow); transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.item::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--accent2), var(--violet));
  transform: scaleY(0); transform-origin: top; transition: transform .25s ease;
}
.item:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: var(--shadow-lg), 0 0 0 1px var(--accent-line); }
.item:hover::before { transform: scaleY(1); }
.rank {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: var(--surface2);
  border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-weight: 700; font-size: 1.1rem; color: var(--accent);
}
.item:first-child .rank {
  background: linear-gradient(135deg, var(--accent), var(--violet)); color: #fff;
  border-color: transparent; box-shadow: 0 6px 18px rgba(124,92,255,0.45);
}
.item .body { flex: 1; min-width: 0; }
.item h2 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 0.15rem; }
.tagline { color: var(--accent); font-size: 0.86rem; font-weight: 600; margin-bottom: 0.55rem; }
.desc { color: var(--text2); font-size: 0.94rem; line-height: 1.6; }
.item .cta { flex-shrink: 0; align-self: center; }
.item .cta a {
  display: inline-block; background: linear-gradient(135deg, var(--accent), var(--violet)); color: #fff;
  font-weight: 700; font-size: 0.9rem; padding: 0.75rem 1.3rem; border-radius: 10px;
  white-space: nowrap; transition: filter .2s, transform .2s;
}
.item .cta a:hover { filter: brightness(1.12); transform: translateX(2px); }
.note { max-width: 880px; margin: 2rem auto 0; color: var(--text3); font-size: 0.82rem; line-height: 1.6; text-align: center; }

/* Footer (dunkel) */
footer { border-top: 1px solid rgba(255,255,255,0.08); background: var(--dark); position: relative; z-index: 1; margin-top: 3rem; }
.footer-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 1.75rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
}
.footer-inner p { font-family: var(--mono); font-size: 0.7rem; color: rgba(255,255,255,0.42); }
.footer-inner a, .footer-links a { color: rgba(255,255,255,0.62); transition: color .2s; }
.footer-inner a:hover, .footer-links a:hover { color: var(--accent2); }
.footer-links { display: flex; gap: 1.5rem; font-family: var(--mono); font-size: 0.7rem; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 680px) {
  .cta-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding: 4rem 1.25rem 3.5rem; }
  .item { flex-direction: column; gap: 0.9rem; }
  .item .cta { align-self: stretch; }
  .item .cta a { display: block; text-align: center; }
  .nav-inner { gap: 0.6rem; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
  .hero h1 .accent { animation: none; }
  .nav-badge .dot { animation: none; }
  .feature-card:hover { transform: none; }
}

/* Display-Font (Space Grotesk) für Headings + Logo */
.logo, .hero h1, .cta-title, .card-title, .item h2, .feature-card h3 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  letter-spacing: -0.02em;
}

/* Prominente Tool-Empfehlungen unter dem Hero */
.featured {
  max-width: var(--maxw); margin: 0 auto; padding: 2.5rem 1.5rem 0.5rem;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem;
  position: relative; z-index: 1;
}
.featured-kicker {
  grid-column: 1 / -1; display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text3); margin-bottom: -0.25rem;
}
.featured-kicker::after { content: ''; flex: 1; height: 1px; background: var(--border2); }
.feature-card {
  position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 1.1rem;
  padding: 1.5rem 1.6rem; border-radius: 16px;
  background: linear-gradient(135deg, #0e1430, #131a3f);
  border: 1px solid rgba(124,92,255,0.35);
  color: #fff; box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feature-card::after {
  content: ''; position: absolute; right: -30px; top: -30px; width: 170px; height: 170px;
  background: radial-gradient(circle, rgba(0,194,255,0.35), transparent 65%);
  pointer-events: none; transition: opacity .3s; opacity: 0.7;
}
.feature-card:hover {
  transform: translateY(-4px); border-color: var(--accent2);
  box-shadow: var(--shadow-lg), 0 0 34px rgba(0,194,255,0.3);
}
.feature-card:hover::after { opacity: 1; }
.feature-ico {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
  background: linear-gradient(135deg, var(--violet), var(--accent2));
  box-shadow: 0 0 20px rgba(124,92,255,0.5); position: relative; z-index: 1;
}
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.2rem; color: #fff; position: relative; z-index: 1; }
.feature-card p { font-size: 0.86rem; color: #aab3d4; line-height: 1.5; position: relative; z-index: 1; }
.feature-arrow { margin-left: auto; flex-shrink: 0; font-size: 1.35rem; color: var(--accent2); transition: transform .2s; position: relative; z-index: 1; }
.feature-card:hover .feature-arrow { transform: translateX(5px); }

@media (max-width: 680px) {
  .featured { grid-template-columns: 1fr; padding-top: 1.75rem; }
}
