/* ══════════════════════════════════════════════
   ToolsKita – Main Stylesheet
   Primary: #6879ef  |  Clean Flat Design
══════════════════════════════════════════════ */

:root {
  --primary:       #6879ef;
  --primary-dark:  #5060d8;
  --primary-light: #eef0fd;
  --primary-ultra: #f5f6ff;
  --white:   #ffffff;
  --gray-50: #f9fafb;
  --gray-100:#f3f4f6;
  --gray-200:#e5e7eb;
  --gray-300:#d1d5db;
  --gray-400:#9ca3af;
  --gray-500:#6b7280;
  --gray-600:#4b5563;
  --gray-800:#1f2937;
  --gray-900:#111827;
  --text:        #1a1d2e;
  --text-muted:  #6b7280;
  --radius:     14px;
  --radius-sm:   8px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --shadow-sm:  0 1px 3px rgba(104,121,239,.08),0 1px 2px rgba(0,0,0,.04);
  --shadow:     0 4px 16px rgba(104,121,239,.12),0 2px 6px rgba(0,0,0,.04);
  --shadow-lg:  0 8px 32px rgba(104,121,239,.16),0 4px 12px rgba(0,0,0,.06);
  --transition: .2s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── CONTAINER ─────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── BUTTONS ────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 9px 20px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-ghost {
  display: inline-block;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  background: transparent;
  border: none;
  cursor: pointer;
}
.btn-ghost:hover { background: var(--gray-100); color: var(--text); }

.btn-white {
  display: inline-block;
  padding: 11px 26px;
  background: #fff;
  color: var(--primary);
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 800;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

.btn-outline-white {
  display: inline-block;
  padding: 10px 24px;
  background: transparent;
  color: #fff;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 700;
  border: 1.5px solid rgba(255,255,255,.5);
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

.btn-large {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 12px;
}

/* ── LOGO ───────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.logo-text { font-size: 1.2rem; font-weight: 600; color: var(--text); }
.logo-text strong { font-weight: 800; color: var(--primary); }

/* ── NAVBAR ─────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-100);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  height: 60px;
  display: flex; align-items: center; gap: 16px;
  padding: 0 20px;
}
.nav-search {
  flex: 1; max-width: 360px;
  position: relative;
}
.nav-search .search-icon {
  position: absolute; left: 12px; top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400); pointer-events: none;
}
.nav-search input {
  width: 100%; height: 38px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 0 14px 0 36px;
  font-family: inherit; font-size: .875rem;
  background: var(--gray-50); color: var(--text);
  transition: var(--transition); outline: none;
}
.nav-search input:focus {
  border-color: var(--primary); background: #fff;
  box-shadow: 0 0 0 3px rgba(104,121,239,.12);
}
.nav-cta { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.mobile-search-btn {
  display: none; width: 36px; height: 36px;
  border-radius: 9px; background: var(--gray-100);
  border: none; cursor: pointer;
  align-items: center; justify-content: center;
  color: var(--text-muted);
}

/* ── HERO ───────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--primary-ultra) 0%, #ede9ff 40%, #fff 100%);
  padding: 72px 20px 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content:''; position:absolute; top:-80px; right:-80px;
  width:360px; height:360px; border-radius:50%;
  background: radial-gradient(circle, rgba(104,121,239,.1) 0%, transparent 70%);
  pointer-events:none;
}
.hero::after {
  content:''; position:absolute; bottom:-100px; left:-60px;
  width:320px; height:320px; border-radius:50%;
  background: radial-gradient(circle, rgba(104,121,239,.07) 0%, transparent 70%);
  pointer-events:none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--primary-light); color: var(--primary);
  padding: 5px 14px; border-radius: 100px;
  font-size: .8rem; font-weight: 700; margin-bottom: 20px;
  letter-spacing: .02em;
  animation: fadeUp .5s ease both;
}
.hero h1 {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 800; line-height: 1.15; color: var(--text);
  max-width: 780px; margin: 0 auto 18px;
  letter-spacing: -.02em;
  animation: fadeUp .5s .1s ease both;
}
.hero h1 .accent { color: var(--primary); }
.hero > p {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 580px; margin: 0 auto 32px;
  animation: fadeUp .5s .2s ease both;
}
.hero-search {
  display: flex; max-width: 540px; margin: 0 auto;
  border: 2px solid var(--primary);
  border-radius: 12px; overflow: hidden;
  background: #fff; box-shadow: var(--shadow-lg);
  animation: fadeUp .5s .3s ease both;
}
.hero-search input {
  flex: 1; border: none; padding: 14px 18px;
  font-family: inherit; font-size: .95rem;
  outline: none; color: var(--text); background: transparent;
}
.hero-search button {
  background: var(--primary); color: #fff;
  border: none; padding: 0 26px;
  font-family: inherit; font-size: .9rem; font-weight: 700;
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.hero-search button:hover { background: var(--primary-dark); }
.hero-stats {
  display: flex; justify-content: center; gap: 36px;
  margin-top: 36px; flex-wrap: wrap;
  animation: fadeUp .5s .4s ease both;
}
.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-number { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.stat-label { font-size: .75rem; color: var(--text-muted); font-weight: 500; }

/* ── CATEGORY PILLS ─────────────────────────── */
.categories { padding: 28px 0 0; }
.cat-scroll {
  max-width: 1200px; margin: 0 auto;
  display: flex; gap: 8px;
  overflow-x: auto; padding: 0 20px 4px;
  scrollbar-width: none;
}
.cat-scroll::-webkit-scrollbar { display: none; }
.cat-pill {
  flex-shrink: 0; padding: 7px 16px;
  border-radius: 100px; background: var(--gray-100);
  color: var(--text-muted); font-size: .8rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  border: 1.5px solid transparent; white-space: nowrap;
  font-family: inherit;
}
.cat-pill:hover, .cat-pill.active {
  background: var(--primary-light); color: var(--primary);
  border-color: var(--primary);
}

/* ── SECTION HEADERS ────────────────────────── */
.section-header {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  margin-bottom: 20px;
}
.section-title {
  font-size: 1.2rem; font-weight: 800; color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.section-title .count {
  display: inline-flex; align-items: center;
  background: var(--primary); color: #fff;
  font-size: .62rem; font-weight: 700;
  padding: 2px 7px; border-radius: 100px;
  letter-spacing: .04em;
}
.view-all {
  font-size: .8rem; font-weight: 600; color: var(--primary);
  display: flex; align-items: center; gap: 4px;
  white-space: nowrap;
}
.view-all:hover { text-decoration: underline; }

/* ── FEATURED CARDS ─────────────────────────── */
.featured-section { padding: 32px 0 0; }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.featured-card {
  border-radius: var(--radius-lg); padding: 26px 24px;
  display: flex; align-items: center; gap: 18px;
  text-decoration: none; transition: var(--transition);
  border: 1.5px solid transparent; position: relative; overflow: hidden;
}
.featured-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.fc-1 { background: linear-gradient(135deg,#1a1a2e,#16213e); }
.fc-2 { background: linear-gradient(135deg,#e91e8c,#ff4e50); }
.fc-3 { background: linear-gradient(135deg,#00c6fb,#005bea); }
.fc-4 { background: linear-gradient(135deg,#2d9f6c,#1a7a4c); }
.fc-icon {
  width: 52px; height: 52px; border-radius: 13px;
  background: rgba(255,255,255,.2); display: flex;
  align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0;
}
.fc-title { font-size: .95rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.fc-desc { font-size: .76rem; color: rgba(255,255,255,.75); line-height: 1.4; }
.fc-cta {
  margin-left: auto; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.2); display: flex;
  align-items: center; justify-content: center; color: #fff;
  font-size: 13px; flex-shrink: 0; transition: var(--transition);
}
.featured-card:hover .fc-cta { background: rgba(255,255,255,.35); }

/* ── TOOLS GRID ─────────────────────────────── */
.tools-section { padding: 32px 0 56px; }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.tool-card {
  background: #fff; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); padding: 20px;
  cursor: pointer; transition: var(--transition);
  position: relative; overflow: hidden;
  display: block; text-decoration: none;
}
.tool-card::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg, var(--primary-ultra), transparent);
  opacity:0; transition: var(--transition);
}
.tool-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.tool-card:hover::before { opacity: 1; }
.tool-card-inner { position: relative; }
.tool-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 14px;
}
.tool-badge {
  position: absolute; top: -2px; right: -2px;
  font-size: .6rem; font-weight: 800; padding: 2px 7px;
  border-radius: 100px; letter-spacing: .04em;
}
.badge-hot     { background: #fef2f2; color: #ef4444; }
.badge-new     { background: #f0fdf4; color: #22c55e; }
.badge-popular { background: var(--primary-light); color: var(--primary); }
.tool-name { font-size: .92rem; font-weight: 700; color: var(--text); margin-bottom: 4px; line-height: 1.3; }
.tool-desc {
  font-size: .77rem; color: var(--text-muted); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.tool-footer { margin-top: 12px; display: flex; align-items: center; justify-content: space-between; }
.tool-uses { font-size: .68rem; color: var(--gray-400); font-family: 'DM Mono', monospace; }
.tool-arrow {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; transition: var(--transition);
}
.tool-card:hover .tool-arrow { background: var(--primary); color: #fff; }
.tool-coming {
  position: absolute; inset: 0; border-radius: var(--radius);
  background: rgba(255,255,255,.7); display: flex;
  align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; color: var(--text-muted);
  letter-spacing: .04em;
}

/* ── PROMO BANNER ───────────────────────────── */
.promo-banner { padding: 0 0 48px; }
.promo-inner {
  background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
  border-radius: 20px; padding: 44px 52px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
  position: relative; overflow: hidden;
}
.promo-inner::before {
  content:''; position:absolute; top:-40px; right:220px;
  width:200px; height:200px; border-radius:50%;
  background: rgba(255,255,255,.07); pointer-events:none;
}
.promo-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.2); color: #fff;
  padding: 4px 12px; border-radius: 100px;
  font-size: .73rem; font-weight: 700;
  margin-bottom: 12px; letter-spacing: .04em;
}
.promo-title {
  font-size: clamp(1.3rem,3vw,2rem); font-weight: 800;
  color: #fff; line-height: 1.2; margin-bottom: 10px;
}
.promo-title span { color: rgba(255,255,255,.85); }
.promo-desc { font-size: .88rem; color: rgba(255,255,255,.8); max-width: 460px; margin-bottom: 20px; }
.promo-features {
  display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 26px; list-style: none;
}
.promo-features li {
  display: flex; align-items: center; gap: 6px;
  color: #fff; font-size: .8rem; font-weight: 600;
}
.promo-features li::before {
  content:'✓'; width:16px; height:16px; border-radius:50%;
  background: rgba(255,255,255,.25); display:flex; align-items:center;
  justify-content:center; font-size:9px; flex-shrink:0;
}
.promo-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.promo-visual { flex-shrink: 0; }
.promo-card-mockup {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 16px; padding: 22px; width: 190px;
  backdrop-filter: blur(8px);
}
.mock-row { display:flex; align-items:center; gap:10px; margin-bottom:12px; }
.mock-icon { width:30px; height:30px; border-radius:7px; background:rgba(255,255,255,.25); display:flex; align-items:center; justify-content:center; font-size:13px; flex-shrink:0; }
.mock-text { flex:1; }
.mock-line { height:6px; background:rgba(255,255,255,.3); border-radius:3px; margin-bottom:4px; }
.mock-line-sm { height:4px; background:rgba(255,255,255,.15); border-radius:3px; width:60%; }
.mock-stat { text-align:center; margin-top:4px; }
.mock-stat-num { font-size:1.4rem; font-weight:800; color:#fff; }
.mock-stat-label { font-size:.62rem; color:rgba(255,255,255,.7); font-weight:600; }

/* ── HOW IT WORKS ───────────────────────────── */
.how-section { background: var(--gray-50); padding: 60px 0; }
.how-title { text-align:center; font-size:1.5rem; font-weight:800; margin-bottom:8px; }
.how-subtitle { text-align:center; color:var(--text-muted); font-size:.88rem; margin-bottom:40px; }
.steps-grid {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px; text-align: center;
}
.step-num {
  width:48px; height:48px; border-radius:12px;
  background: var(--primary); color:#fff;
  font-size:1.1rem; font-weight:800;
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 14px;
}
.step-title { font-size:.92rem; font-weight:700; color:var(--text); margin-bottom:6px; }
.step-desc { font-size:.78rem; color:var(--text-muted); line-height:1.5; }

/* ── FAQ ────────────────────────────────────── */
.faq-section { padding: 60px 0; }
.faq-wrap { max-width: 720px; margin: 0 auto; padding: 0 20px; }
.faq-title { text-align:center; font-size:1.5rem; font-weight:800; margin-bottom:8px; }
.faq-subtitle { text-align:center; color:var(--text-muted); font-size:.88rem; margin-bottom:32px; }
.faq-item {
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  margin-bottom: 10px; overflow: hidden; transition: var(--transition);
}
.faq-item.open { border-color: var(--primary); }
.faq-q {
  padding: 16px 20px; display:flex; align-items:center;
  justify-content:space-between; gap:12px;
  cursor:pointer; font-weight:700; font-size:.88rem; color:var(--text);
  user-select:none;
}
.faq-icon {
  width:26px; height:26px; border-radius:50%;
  background:var(--gray-100); display:flex;
  align-items:center; justify-content:center;
  font-size:13px; color:var(--text-muted); transition:var(--transition); flex-shrink:0;
}
.faq-item.open .faq-icon { background:var(--primary); color:#fff; transform:rotate(45deg); }
.faq-a { display:none; padding:0 20px 16px; font-size:.84rem; color:var(--text-muted); line-height:1.6; }
.faq-item.open .faq-a { display:block; }

/* ── FOOTER ─────────────────────────────────── */
footer {
  background: var(--gray-900); color: rgba(255,255,255,.65);
  padding: 52px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px; margin-bottom: 40px;
}
.footer-logo .logo-text { color: rgba(255,255,255,.7); }
.footer-logo .logo-text strong { color: var(--primary); }
.footer-brand p { font-size:.8rem; line-height:1.6; max-width:230px; margin-top:12px; }
.footer-partner { margin-top:8px !important; }
.footer-partner a { color:var(--primary); }
.footer-col h4 { color:#fff; font-size:.8rem; font-weight:700; margin-bottom:14px; letter-spacing:.05em; }
.footer-col ul li { margin-bottom:8px; }
.footer-col ul li a { font-size:.78rem; color:rgba(255,255,255,.5); transition:var(--transition); }
.footer-col ul li a:hover { color:#fff; }
.footer-divider { height:1px; background:rgba(255,255,255,.07); margin-bottom:20px; }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.footer-bottom p { font-size:.76rem; color:rgba(255,255,255,.35); }
.footer-bottom p a { color:var(--primary); }
.footer-links { display:flex; gap:16px; }
.footer-links a { font-size:.76rem; color:rgba(255,255,255,.35); transition:var(--transition); }
.footer-links a:hover { color:#fff; }

/* ── SEARCH OVERLAY ─────────────────────────── */
.search-overlay {
  display:none; position:fixed; inset:0;
  background:rgba(0,0,0,.5); z-index:200;
  align-items:flex-start; justify-content:center; padding-top:80px;
}
.search-overlay.active { display:flex; }
.search-results-box {
  background:#fff; border-radius:16px;
  width:100%; max-width:600px; margin:0 20px;
  box-shadow:var(--shadow-lg); overflow:hidden;
  max-height:70vh; display:flex; flex-direction:column;
}
.search-results-header {
  padding:16px 18px; border-bottom:1px solid var(--gray-100);
  display:flex; align-items:center; gap:12px; flex-shrink:0;
}
.search-results-input { flex:1; border:none; font-family:inherit; font-size:.95rem; outline:none; color:var(--text); }
.search-results-close {
  width:28px; height:28px; border-radius:50%;
  background:var(--gray-100); border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  font-size:13px; color:var(--text-muted); font-family:inherit;
}
.search-results-list { overflow-y:auto; padding:10px; }
.search-result-item {
  display:flex; align-items:center; gap:12px;
  padding:10px 12px; border-radius:10px;
  cursor:pointer; transition:var(--transition); text-decoration:none;
}
.search-result-item:hover { background:var(--gray-50); }
.sri-icon { width:36px; height:36px; border-radius:9px; display:flex; align-items:center; justify-content:center; font-size:16px; flex-shrink:0; }
.sri-name { font-size:.875rem; font-weight:700; color:var(--text); }
.sri-desc { font-size:.73rem; color:var(--text-muted); }
.search-no-result { text-align:center; padding:32px; color:var(--text-muted); font-size:.875rem; }

/* ── TOOL PAGE (halaman tiap tools) ─────────── */
.tool-page { max-width: 800px; margin: 0 auto; padding: 40px 20px; }
.tool-page-header { margin-bottom: 32px; }
.tool-page-breadcrumb { font-size:.78rem; color:var(--text-muted); margin-bottom:16px; }
.tool-page-breadcrumb a { color:var(--primary); }
.tool-page-breadcrumb a:hover { text-decoration:underline; }
.tool-page-title { font-size:clamp(1.6rem,4vw,2.4rem); font-weight:800; line-height:1.2; margin-bottom:8px; }
.tool-page-desc { font-size:.95rem; color:var(--text-muted); max-width:560px; }
.tool-box {
  background:var(--gray-50); border:1.5px solid var(--gray-200);
  border-radius:var(--radius-lg); padding:32px;
  margin-bottom:28px;
}
.tool-input-label { font-size:.82rem; font-weight:700; color:var(--text); margin-bottom:8px; display:block; }
.tool-input {
  width:100%; padding:14px 16px;
  border:1.5px solid var(--gray-200); border-radius:10px;
  font-family:inherit; font-size:.9rem; color:var(--text);
  background:#fff; outline:none; transition:var(--transition);
  margin-bottom:16px;
}
.tool-input:focus { border-color:var(--primary); box-shadow:0 0 0 3px rgba(104,121,239,.1); }
.tool-output {
  background:#fff; border:1.5px solid var(--gray-200);
  border-radius:10px; padding:14px 16px;
  font-size:.9rem; color:var(--text); min-height:100px;
  word-break:break-all;
}

/* ── ANIMATIONS ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .featured-grid { grid-template-columns: 1fr; }
  .promo-visual { display: none; }
  .promo-inner { padding: 36px 32px; }
}
@media (max-width: 640px) {
  .nav-search { display: none; }
  .btn-ghost { display: none; }
  .mobile-search-btn { display: flex; }
  .hero { padding: 48px 20px 40px; }
  .tools-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .tool-card { padding: 14px; }
  .promo-inner { padding: 28px 22px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .hero-stats { gap: 20px; }
  .fc-cta { display: none; }
  .hero-search button { padding: 0 16px; font-size: .8rem; }
}
@media (max-width: 400px) {
  .tools-grid { grid-template-columns: 1fr; }
}
