/*
Theme Name: FormVault
Theme URI: https://formvault.com
Author: FormVault
Author URI: https://formvault.com
Description: Modern SaaS-level form download portal. Clean, fast, professional. Instant search, responsive table layout, category grid, and rich single form pages. No clutter — just forms, fast.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: formvault
Tags: forms, download, saas, modern, responsive, search, bootstrap, lightweight
*/

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TOKENS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
  /* Brand */
  --indigo:      #4f46e5;
  --indigo-d:    #3730a3;
  --indigo-l:    #6366f1;
  --indigo-xl:   #818cf8;
  --indigo-bg:   #eef2ff;
  --indigo-muted:#e0e7ff;

  --emerald:     #059669;
  --emerald-d:   #047857;
  --emerald-l:   #10b981;
  --emerald-bg:  #ecfdf5;

  --amber:       #d97706;
  --amber-bg:    #fef3c7;
  --rose:        #e11d48;
  --rose-bg:     #fff1f2;
  --sky:         #0284c7;
  --sky-bg:      #e0f2fe;

  /* Grays */
  --gray-0:   #ffffff;
  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Semantic */
  --bg:        #f8fafc;
  --surface:   #ffffff;
  --border:    #e2e8f0;
  --border-d:  #cbd5e1;

  /* Fonts */
  --font-sans:    'DM Sans', 'Helvetica Neue', sans-serif;
  --font-display: 'Cabinet Grotesk', 'DM Sans', sans-serif;
  --font-mono:    'DM Mono', 'Fira Code', monospace;

  /* Radii */
  --r-sm:   6px;
  --r:      10px;
  --r-lg:   16px;
  --r-xl:   22px;
  --r-2xl:  32px;
  --r-full: 9999px;

  /* Shadows */
  --sh-xs:    0 1px 2px rgba(15,23,42,.05);
  --sh-sm:    0 2px 6px rgba(15,23,42,.07), 0 1px 2px rgba(15,23,42,.04);
  --sh:       0 4px 12px rgba(15,23,42,.08), 0 2px 4px rgba(15,23,42,.04);
  --sh-md:    0 8px 24px rgba(15,23,42,.10), 0 3px 8px rgba(15,23,42,.05);
  --sh-lg:    0 20px 40px rgba(15,23,42,.12), 0 6px 16px rgba(15,23,42,.06);
  --sh-indigo: 0 4px 16px rgba(79,70,229,.30);
  --sh-emerald:0 4px 16px rgba(5,150,105,.28);

  /* Motion */
  --ease:    cubic-bezier(.4,0,.2,1);
  --ease-out:cubic-bezier(0,0,.2,1);
  --t-fast:  150ms var(--ease);
  --t:       220ms var(--ease);
  --t-slow:  350ms var(--ease-out);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BASE RESET
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--gray-800);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--indigo); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--indigo-d); }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LAYOUT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.fv-wrap        { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.fv-wrap-narrow { max-width: 820px;  margin: 0 auto; padding: 0 24px; }
.fv-section     { padding: 80px 0; }
.fv-section-sm  { padding: 52px 0; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TYPOGRAPHY
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.fv-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--indigo);
  margin-bottom: 12px;
}
.fv-eyebrow::before { content: ''; width: 18px; height: 2px; background: var(--indigo); border-radius: 2px; flex-shrink: 0; }

.fv-h1 { font-family: var(--font-display); font-size: clamp(28px,5vw,52px); font-weight: 800; line-height: 1.1; letter-spacing: -.03em; color: var(--gray-900); }
.fv-h2 { font-family: var(--font-display); font-size: clamp(22px,3.5vw,36px); font-weight: 800; line-height: 1.2; letter-spacing: -.025em; color: var(--gray-900); }
.fv-h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; line-height: 1.3; color: var(--gray-900); }
.fv-lead { font-size: 17px; color: var(--gray-500); line-height: 1.75; }
.fv-muted { font-size: 13px; color: var(--gray-400); }

.fv-section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; gap: 20px; flex-wrap: wrap; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BUTTONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.fv-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px;
  border-radius: var(--r-full);
  font-size: 14.5px; font-weight: 700;
  border: none; cursor: pointer;
  transition: all var(--t);
  white-space: nowrap; text-decoration: none;
  font-family: var(--font-sans);
  letter-spacing: .01em;
  position: relative; overflow: hidden;
}
.fv-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Indigo — View */
.fv-btn-indigo {
  background: var(--indigo);
  color: #fff;
  box-shadow: var(--sh-indigo);
}
.fv-btn-indigo:hover {
  background: var(--indigo-d); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79,70,229,.38);
}
.fv-btn-indigo:active { transform: translateY(0); }

/* Emerald — Download */
.fv-btn-emerald {
  background: var(--emerald);
  color: #fff;
  box-shadow: var(--sh-emerald);
}
.fv-btn-emerald:hover {
  background: var(--emerald-d); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5,150,105,.38);
}
.fv-btn-emerald:active { transform: translateY(0); }

/* Ghost */
.fv-btn-ghost {
  background: var(--surface); color: var(--gray-700);
  border: 1.5px solid var(--border);
  box-shadow: var(--sh-xs);
}
.fv-btn-ghost:hover { border-color: var(--gray-400); background: var(--gray-50); color: var(--gray-900); transform: translateY(-1px); box-shadow: var(--sh-sm); }

/* Indigo ghost */
.fv-btn-outline {
  background: var(--indigo-bg); color: var(--indigo);
  border: 1.5px solid var(--indigo-muted);
}
.fv-btn-outline:hover { background: var(--indigo); color: #fff; border-color: var(--indigo); transform: translateY(-2px); box-shadow: var(--sh-indigo); }

/* Sizes */
.fv-btn-sm { padding: 8px 18px; font-size: 13px; }
.fv-btn-sm svg { width: 14px; height: 14px; }
.fv-btn-lg { padding: 15px 36px; font-size: 16px; }
.fv-btn-icon-only { padding: 10px; border-radius: var(--r); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STICKY HEADER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t);
}
.site-header.is-scrolled { box-shadow: var(--sh-md); }

.fv-nav { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 28px; }

/* Logo */
.fv-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.fv-logo-icon {
  width: 40px; height: 40px;
  background: var(--indigo);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-indigo);
  transition: transform var(--t);
}
.fv-logo:hover .fv-logo-icon { transform: rotate(-8deg) scale(1.05); }
.fv-logo-icon svg { width: 22px; height: 22px; color: #fff; }
.fv-logo-name { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--gray-900); letter-spacing: -.03em; }
.fv-logo-name span { color: var(--indigo); }

/* Nav links */
.fv-nav-links { display: flex; align-items: center; gap: 2px; }
.fv-nav-links a {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: var(--r);
  font-size: 14px; font-weight: 600; color: var(--gray-600);
  transition: all var(--t-fast);
}
.fv-nav-links a:hover, .fv-nav-links a.current { background: var(--indigo-bg); color: var(--indigo); }
.fv-nav-links a svg { width: 15px; height: 15px; }

/* Dropdown */
.fv-has-dropdown { position: relative; }
.fv-dropdown {
  display: none; position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  min-width: 220px; padding: 8px; z-index: 200;
  animation: dropIn .15s var(--ease-out);
}
.fv-has-dropdown:hover .fv-dropdown { display: block; }
@keyframes dropIn { from { opacity:0; transform: translateX(-50%) translateY(-8px); } to { opacity:1; transform: translateX(-50%) translateY(0); } }
.fv-dropdown a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: var(--r); color: var(--gray-700); font-size: 13.5px; font-weight: 500; }
.fv-dropdown a:hover { background: var(--gray-50); color: var(--indigo); }
.fv-dropdown a svg { width: 16px; height: 16px; color: var(--gray-400); flex-shrink: 0; }

/* Nav right / hamburger */
.fv-nav-right { display: flex; align-items: center; gap: 10px; }
.fv-hamburger { display: none; background: none; border: 1.5px solid var(--border); border-radius: var(--r); padding: 8px 10px; color: var(--gray-600); }
.fv-hamburger svg { width: 20px; height: 20px; display: block; }

.fv-mobile-nav { display: none; background: var(--surface); border-top: 1px solid var(--border); padding: 16px 24px 20px; }
.fv-mobile-nav.open { display: block; }
.fv-mobile-nav a { display: flex; align-items: center; gap: 10px; padding: 13px 0; border-bottom: 1px solid var(--gray-100); font-size: 15px; font-weight: 600; color: var(--gray-700); }
.fv-mobile-nav a:last-child { border-bottom: none; }
.fv-mobile-nav a:hover { color: var(--indigo); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.fv-hero {
  position: relative;
  padding: 96px 0 88px;
  background: var(--surface);
  overflow: hidden;
}
/* Geometric background pattern */
.fv-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(79,70,229,.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(5,150,105,.05) 0%, transparent 40%),
    radial-gradient(circle at 60% 90%, rgba(79,70,229,.04) 0%, transparent 35%);
  pointer-events: none;
}
/* Subtle dot grid */
.fv-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, var(--gray-300) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .35;
  pointer-events: none;
}
.fv-hero-inner {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}
.fv-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  padding: 6px 16px 6px 8px;
  font-size: 13px; font-weight: 600; color: var(--gray-600);
  box-shadow: var(--sh-sm);
  margin-bottom: 28px;
}
.fv-hero-badge-dot { background: var(--emerald-bg); border-radius: var(--r-full); padding: 3px 10px; font-size: 11.5px; font-weight: 800; color: var(--emerald); display: inline-flex; align-items: center; gap: 5px; }
.fv-hero-badge-dot::before { content: ''; width: 7px; height: 7px; background: var(--emerald); border-radius: 50%; animation: livepulse 2s infinite; }
@keyframes livepulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(.8); } }

.fv-hero-title { font-family: var(--font-display); font-size: clamp(34px,6vw,66px); font-weight: 900; line-height: 1.04; letter-spacing: -.04em; color: var(--gray-900); margin-bottom: 20px; }
.fv-hero-title .grad { background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-xl) 60%, #a78bfa 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.fv-hero-sub { font-size: 18px; color: var(--gray-500); line-height: 1.75; margin-bottom: 44px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* Hero search bar */
.fv-hero-search { max-width: 620px; margin: 0 auto 48px; position: relative; }
.fv-search-box {
  display: flex; align-items: center;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--r-full);
  box-shadow: var(--sh-lg), 0 0 0 0 rgba(79,70,229,0);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.fv-search-box:focus-within {
  border-color: var(--indigo);
  box-shadow: var(--sh-lg), 0 0 0 4px rgba(79,70,229,.12);
}
.fv-search-icon { padding: 0 18px 0 22px; color: var(--gray-400); flex-shrink: 0; }
.fv-search-icon svg { width: 20px; height: 20px; display: block; }
.fv-search-input {
  flex: 1; border: none; outline: none;
  font-size: 16px; color: var(--gray-800);
  background: transparent; padding: 16px 0;
  font-family: var(--font-sans);
}
.fv-search-input::placeholder { color: var(--gray-400); }
.fv-search-submit {
  background: var(--indigo); color: #fff;
  border: none; padding: 12px 28px;
  font-size: 15px; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  cursor: pointer; font-family: var(--font-sans);
  transition: background var(--t-fast);
  white-space: nowrap;
}
.fv-search-submit:hover { background: var(--indigo-d); }
.fv-search-submit svg { width: 17px; height: 17px; }

/* Live search dropdown */
.fv-live-dropdown {
  display: none; position: absolute; top: calc(100% + 10px);
  left: 0; right: 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); box-shadow: var(--sh-lg);
  z-index: 500; overflow: hidden;
  max-height: 380px; overflow-y: auto;
}
.fv-live-dropdown.open { display: block; animation: dropIn .2s var(--ease-out); }
.fv-live-item {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 20px;
  border-bottom: 1px solid var(--gray-100);
  cursor: pointer; transition: background var(--t-fast);
  text-decoration: none; color: inherit;
}
.fv-live-item:last-child { border-bottom: none; }
.fv-live-item:hover { background: var(--gray-50); }
.fv-live-thumb { width: 38px; height: 38px; background: var(--indigo-bg); border-radius: var(--r); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fv-live-thumb svg { width: 19px; height: 19px; color: var(--indigo); }
.fv-live-info .name { font-size: 14px; font-weight: 600; color: var(--gray-800); }
.fv-live-info .cat  { font-size: 12px; color: var(--gray-500); margin-top: 2px; }
.fv-live-chevron { margin-left: auto; color: var(--gray-300); }
.fv-live-chevron svg { width: 15px; height: 15px; }
.fv-live-empty { padding: 28px; text-align: center; color: var(--gray-400); font-size: 14px; }

/* Hero trust badges */
.fv-hero-stats { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.fv-hero-stat { text-align: center; }
.fv-hero-stat strong { display: block; font-family: var(--font-display); font-size: 26px; font-weight: 900; color: var(--gray-900); letter-spacing: -.025em; line-height: 1; }
.fv-hero-stat span { font-size: 12px; color: var(--gray-500); font-weight: 500; display: block; margin-top: 4px; letter-spacing: .02em; text-transform: uppercase; }
.fv-hero-stat-divider { width: 1px; height: 36px; background: var(--border); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CATEGORY GRID
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.fv-cats { background: var(--bg); }
.fv-cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); gap: 16px; }
.fv-cat-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 22px 24px;
  text-align: center;
  text-decoration: none; display: block;
  transition: all var(--t);
  position: relative; overflow: hidden;
}
.fv-cat-card::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--cc-grad, linear-gradient(145deg, var(--indigo-bg) 0%, rgba(255,255,255,0) 60%));
  opacity: 0; transition: opacity var(--t);
}
.fv-cat-card:hover { border-color: var(--cc-color, var(--indigo)); transform: translateY(-5px); box-shadow: var(--sh-md); }
.fv-cat-card:hover::after { opacity: 1; }
.fv-cat-card:hover .fv-cat-emoji { transform: scale(1.18) rotate(-5deg); }
.fv-cat-emoji { font-size: 32px; display: block; margin-bottom: 14px; position: relative; z-index: 1; transition: transform var(--t); }
.fv-cat-name { font-size: 14px; font-weight: 700; color: var(--gray-800); position: relative; z-index: 1; margin-bottom: 6px; line-height: 1.3; }
.fv-cat-cnt { font-size: 12px; color: var(--gray-500); font-weight: 500; position: relative; z-index: 1; }
.fv-cat-cnt strong { color: var(--cc-color, var(--indigo)); font-weight: 700; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FORMS TABLE (Listing Page)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.fv-table-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  overflow: hidden;
}

/* Toolbar */
.fv-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px; border-bottom: 1px solid var(--border);
  gap: 16px; flex-wrap: wrap; background: var(--gray-50);
}
.fv-toolbar-search {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  padding: 9px 18px;
  flex: 1; max-width: 400px;
  transition: all var(--t);
}
.fv-toolbar-search:focus-within { border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(79,70,229,.1); }
.fv-toolbar-search svg { width: 16px; height: 16px; color: var(--gray-400); flex-shrink: 0; }
.fv-toolbar-search input { border: none; outline: none; font-size: 14px; color: var(--gray-800); background: transparent; flex: 1; font-family: var(--font-sans); }
.fv-toolbar-search input::placeholder { color: var(--gray-400); }
.fv-toolbar-meta { font-size: 13.5px; color: var(--gray-500); font-weight: 500; }
.fv-toolbar-meta strong { color: var(--gray-800); }

/* Table filters row */
.fv-filter-bar { display: flex; gap: 8px; flex-wrap: wrap; padding: 16px 28px; border-bottom: 1px solid var(--border); }
.fv-filter-chip {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 16px; border-radius: var(--r-full);
  font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--border);
  background: var(--surface); color: var(--gray-600);
  cursor: pointer; transition: all var(--t-fast);
  font-family: var(--font-sans);
}
.fv-filter-chip:hover { border-color: var(--indigo); color: var(--indigo); background: var(--indigo-bg); }
.fv-filter-chip.active { background: var(--indigo); color: #fff; border-color: var(--indigo); box-shadow: var(--sh-indigo); }
.fv-filter-chip svg { width: 13px; height: 13px; }

/* Table itself */
.fv-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.fv-forms-table { width: 100%; border-collapse: collapse; }
.fv-forms-table thead { background: var(--gray-50); border-bottom: 1.5px solid var(--border); }
.fv-forms-table thead th {
  padding: 13px 20px;
  font-size: 11.5px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--gray-500);
  text-align: left; white-space: nowrap;
}
.fv-forms-table thead th.center { text-align: center; }
.fv-forms-table tbody tr { border-bottom: 1px solid var(--gray-100); transition: background var(--t-fast); }
.fv-forms-table tbody tr:last-child { border-bottom: none; }
.fv-forms-table tbody tr:hover { background: #fafbff; }
.fv-forms-table tbody tr.fv-hidden { display: none; }
.fv-forms-table td { padding: 17px 20px; vertical-align: middle; }
.fv-forms-table td.center { text-align: center; }

.fv-td-sn { font-family: var(--font-mono); font-size: 12.5px; color: var(--gray-400); width: 64px; font-weight: 500; }

.fv-td-name { min-width: 260px; }
.fv-form-row { display: flex; align-items: center; gap: 14px; }
.fv-form-icon { width: 42px; height: 42px; background: var(--indigo-bg); border-radius: var(--r); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background var(--t); }
.fv-forms-table tbody tr:hover .fv-form-icon { background: var(--indigo); }
.fv-form-icon svg { width: 21px; height: 21px; color: var(--indigo); transition: color var(--t); }
.fv-forms-table tbody tr:hover .fv-form-icon svg { color: #fff; }
.fv-form-name { font-size: 15px; font-weight: 600; color: var(--gray-800); line-height: 1.3; margin-bottom: 3px; }
.fv-form-tag { display: inline-flex; align-items: center; padding: 2px 9px; border-radius: var(--r-full); font-size: 11px; font-weight: 600; background: var(--gray-100); color: var(--gray-500); }

.fv-td-actions { width: 210px; }
.fv-actions-wrap { display: flex; gap: 8px; align-items: center; }

/* Table pagination bar */
.fv-pagination-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px;
  border-top: 1px solid var(--border);
  background: var(--gray-50);
  flex-wrap: wrap; gap: 14px;
}
.fv-pagination { display: flex; align-items: center; gap: 4px; }
.fv-pag-btn {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--r); border: 1.5px solid var(--border);
  background: var(--surface); color: var(--gray-600);
  font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all var(--t-fast);
  text-decoration: none;
}
.fv-pag-btn:hover { border-color: var(--indigo); color: var(--indigo); background: var(--indigo-bg); }
.fv-pag-btn.active { background: var(--indigo); color: #fff; border-color: var(--indigo); box-shadow: var(--sh-indigo); }
.fv-pag-btn.disabled { opacity: .35; pointer-events: none; }
.fv-pag-btn svg { width: 15px; height: 15px; }
.fv-pag-info { font-size: 13.5px; color: var(--gray-500); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   POPULAR / LATEST CARDS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.fv-popular { background: var(--surface); }
.fv-latest  { background: var(--bg); }
.fv-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 20px; }
.fv-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 26px;
  transition: all var(--t);
  position: relative; overflow: hidden;
}
.fv-card:hover { border-color: var(--indigo-muted); box-shadow: var(--sh-md); transform: translateY(-4px); }
.fv-card-ribbon {
  position: absolute; top: 18px; right: 18px;
  font-size: 11px; font-weight: 800; letter-spacing: .05em;
  padding: 3px 10px; border-radius: var(--r-full);
  text-transform: uppercase;
}
.fv-card-ribbon.popular { background: var(--amber-bg); color: var(--amber); }
.fv-card-ribbon.new     { background: var(--emerald-bg); color: var(--emerald); }

.fv-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.fv-card-ico { width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fv-card-ico.indigo  { background: var(--indigo-bg); }
.fv-card-ico.emerald { background: var(--emerald-bg); }
.fv-card-ico.amber   { background: var(--amber-bg); }
.fv-card-ico.sky     { background: var(--sky-bg); }
.fv-card-ico svg { width: 24px; height: 24px; }
.fv-card-ico.indigo  svg { color: var(--indigo); }
.fv-card-ico.emerald svg { color: var(--emerald); }
.fv-card-ico.amber   svg { color: var(--amber); }
.fv-card-ico.sky     svg { color: var(--sky); }
.fv-card-cat { font-size: 11.5px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }

.fv-card-title { font-size: 16px; font-weight: 700; color: var(--gray-800); line-height: 1.35; margin-bottom: 8px; }
.fv-card-excerpt { font-size: 13.5px; color: var(--gray-500); line-height: 1.65; margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.fv-card-foot { display: flex; gap: 10px; align-items: center; }
.fv-card-meta { margin-left: auto; display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--gray-400); }
.fv-card-meta svg { width: 13px; height: 13px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SINGLE FORM PAGE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.fv-single-hero {
  background: linear-gradient(160deg, var(--gray-900) 0%, #1a2440 100%);
  padding: 60px 0 56px;
  position: relative; overflow: hidden;
}
.fv-single-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(79,70,229,.25) 0%, transparent 50%),
    radial-gradient(circle at 90% 20%, rgba(5,150,105,.15) 0%, transparent 40%);
  pointer-events: none;
}
.fv-single-hero-inner { position: relative; z-index: 1; display: flex; gap: 36px; align-items: flex-start; flex-wrap: wrap; }
.fv-single-icon-box {
  width: 80px; height: 80px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; backdrop-filter: blur(12px);
}
.fv-single-icon-box svg { width: 42px; height: 42px; color: #fff; }
.fv-single-meta { flex: 1; min-width: 260px; }
.fv-single-cat {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-full); padding: 5px 16px;
  font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.8);
  margin-bottom: 14px;
}
.fv-single-title { font-family: var(--font-display); font-size: clamp(22px,4vw,38px); font-weight: 900; color: #fff; letter-spacing: -.025em; margin-bottom: 10px; line-height: 1.12; }
.fv-single-desc { font-size: 16px; color: rgba(255,255,255,.62); line-height: 1.7; margin-bottom: 28px; max-width: 580px; }
.fv-single-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.fv-single-chips { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 26px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); }
.fv-chip { font-size: 13px; color: rgba(255,255,255,.65); display: flex; align-items: center; gap: 7px; font-weight: 500; }
.fv-chip svg { width: 15px; height: 15px; flex-shrink: 0; }
.fv-chip strong { color: rgba(255,255,255,.9); }

/* Breadcrumb */
.fv-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--gray-500); flex-wrap: wrap;
  padding: 16px 0;
}
.fv-breadcrumb a { color: var(--gray-500); }
.fv-breadcrumb a:hover { color: var(--indigo); }
.fv-breadcrumb .sep { color: var(--gray-300); }
.fv-breadcrumb .current { color: var(--gray-700); font-weight: 600; }

/* Single body layout */
.fv-single-body { padding: 48px 0 80px; }
.fv-single-grid { display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: start; }

/* Content box */
.fv-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden; margin-bottom: 24px;
  box-shadow: var(--sh-xs);
}
.fv-box-head {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--gray-100);
}
.fv-box-head-ico {
  width: 34px; height: 34px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fv-box-head-ico svg { width: 18px; height: 18px; }
.fv-box-head-ico.indigo  { background: var(--indigo-bg); }  .fv-box-head-ico.indigo svg  { color: var(--indigo); }
.fv-box-head-ico.emerald { background: var(--emerald-bg); } .fv-box-head-ico.emerald svg { color: var(--emerald); }
.fv-box-head-ico.amber   { background: var(--amber-bg); }   .fv-box-head-ico.amber svg   { color: var(--amber); }
.fv-box-head-ico.rose    { background: var(--rose-bg); }    .fv-box-head-ico.rose svg    { color: var(--rose); }
.fv-box-title { font-size: 15px; font-weight: 700; color: var(--gray-800); }
.fv-box-body { padding: 24px; }

/* Description prose */
.fv-prose { font-size: 15px; color: var(--gray-600); line-height: 1.8; }
.fv-prose p { margin-bottom: 14px; }
.fv-prose p:last-child { margin-bottom: 0; }

/* Steps */
.fv-steps { display: flex; flex-direction: column; }
.fv-step { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--gray-100); }
.fv-step:last-child { border-bottom: none; padding-bottom: 0; }
.fv-step:first-child { padding-top: 0; }
.fv-step-num {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-l) 100%);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; flex-shrink: 0;
  font-family: var(--font-display);
  box-shadow: var(--sh-indigo);
}
.fv-step-body {}
.fv-step-title { font-size: 15px; font-weight: 700; color: var(--gray-800); margin-bottom: 5px; }
.fv-step-text  { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

/* Documents */
.fv-docs { display: flex; flex-direction: column; }
.fv-doc { display: flex; align-items: flex-start; gap: 13px; padding: 13px 0; border-bottom: 1px solid var(--gray-100); }
.fv-doc:last-child { border-bottom: none; }
.fv-doc:first-child { padding-top: 0; }
.fv-doc-check { width: 24px; height: 24px; background: var(--emerald-bg); border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.fv-doc-check svg { width: 13px; height: 13px; color: var(--emerald); }
.fv-doc-info {}
.fv-doc-name { font-size: 14.5px; font-weight: 600; color: var(--gray-700); }
.fv-doc-note { font-size: 12.5px; color: var(--gray-500); margin-top: 3px; }

/* Alert/Instruction box */
.fv-alert { display: flex; gap: 14px; align-items: flex-start; padding: 18px 22px; border-radius: var(--r-lg); }
.fv-alert.indigo  { background: var(--indigo-bg);  border: 1px solid rgba(79,70,229,.18); }
.fv-alert.amber   { background: var(--amber-bg);   border: 1px solid rgba(217,119,6,.18); }
.fv-alert.rose    { background: var(--rose-bg);    border: 1px solid rgba(225,29,72,.18); }
.fv-alert.emerald { background: var(--emerald-bg); border: 1px solid rgba(5,150,105,.18); }
.fv-alert-ico { flex-shrink: 0; margin-top: 1px; }
.fv-alert-ico svg { width: 20px; height: 20px; }
.fv-alert.indigo  .fv-alert-ico svg { color: var(--indigo); }
.fv-alert.amber   .fv-alert-ico svg { color: var(--amber); }
.fv-alert.rose    .fv-alert-ico svg { color: var(--rose); }
.fv-alert.emerald .fv-alert-ico svg { color: var(--emerald); }
.fv-alert-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.fv-alert.indigo  .fv-alert-title { color: var(--indigo-d); }
.fv-alert.amber   .fv-alert-title { color: #92400e; }
.fv-alert.rose    .fv-alert-title { color: #9f1239; }
.fv-alert.emerald .fv-alert-title { color: var(--emerald-d); }
.fv-alert-text { font-size: 13.5px; line-height: 1.65; }
.fv-alert.indigo  .fv-alert-text { color: #3730a3; }
.fv-alert.amber   .fv-alert-text { color: #78350f; }
.fv-alert.rose    .fv-alert-text { color: #881337; }
.fv-alert.emerald .fv-alert-text { color: #065f46; }

/* Sidebar widgets */
.fv-sidebar { position: sticky; top: 86px; }
.fv-widget {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
  margin-bottom: 20px; box-shadow: var(--sh-xs);
}
.fv-widget-head { padding: 15px 22px; border-bottom: 1px solid var(--gray-100); font-size: 14px; font-weight: 700; color: var(--gray-700); display: flex; align-items: center; gap: 8px; }
.fv-widget-head svg { width: 16px; height: 16px; color: var(--gray-400); }
.fv-widget-body { padding: 20px 22px; }

/* Download CTA widget */
.fv-dl-widget {
  background: linear-gradient(145deg, var(--gray-900), #1a2440);
  border-radius: var(--r-xl); padding: 30px 24px; text-align: center; margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,.05);
}
.fv-dl-widget-icon { font-size: 40px; margin-bottom: 12px; }
.fv-dl-widget-title { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 6px; letter-spacing: -.02em; }
.fv-dl-widget-sub { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 22px; line-height: 1.5; }
.fv-dl-widget .fv-btn { width: 100%; justify-content: center; margin-bottom: 10px; }

/* Related items */
.fv-related-list { display: flex; flex-direction: column; }
.fv-rel-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--gray-100); text-decoration: none; transition: all var(--t-fast); }
.fv-rel-item:last-child { border-bottom: none; }
.fv-rel-item:hover { padding-left: 4px; }
.fv-rel-ico { width: 36px; height: 36px; background: var(--gray-100); border-radius: var(--r); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background var(--t-fast); }
.fv-rel-ico svg { width: 18px; height: 18px; color: var(--gray-500); transition: color var(--t-fast); }
.fv-rel-item:hover .fv-rel-ico { background: var(--indigo-bg); }
.fv-rel-item:hover .fv-rel-ico svg { color: var(--indigo); }
.fv-rel-name { font-size: 13.5px; font-weight: 600; color: var(--gray-700); transition: color var(--t-fast); line-height: 1.3; }
.fv-rel-cat  { font-size: 11.5px; color: var(--gray-400); margin-top: 2px; }
.fv-rel-item:hover .fv-rel-name { color: var(--indigo); }
.fv-rel-arrow { margin-left: auto; color: var(--gray-300); flex-shrink: 0; }
.fv-rel-arrow svg { width: 14px; height: 14px; }

/* Share row */
.fv-share-row { display: flex; gap: 8px; flex-wrap: wrap; }
.fv-share-btn { flex: 1; min-width: 72px; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 9px 12px; border-radius: var(--r); font-size: 12.5px; font-weight: 700; border: none; cursor: pointer; transition: all var(--t); font-family: var(--font-sans); text-decoration: none; }
.fv-share-btn:hover { transform: translateY(-2px); }
.fsb-wa { background: #25D366; color: #fff; }
.fsb-fb { background: #1877F2; color: #fff; }
.fsb-tw { background: #1DA1F2; color: #fff; }
.fsb-cp { background: var(--gray-100); color: var(--gray-700); border: 1px solid var(--border); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ARCHIVE / SEARCH HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.fv-archive-hero {
  background: linear-gradient(135deg, var(--indigo-bg) 0%, var(--surface) 60%, var(--emerald-bg) 100%);
  padding: 52px 0 44px;
  border-bottom: 1px solid var(--border);
}
.fv-search-hero { background: var(--gray-50); padding: 40px 0 36px; border-bottom: 1px solid var(--border); }
.fv-search-summary { font-size: 14px; color: var(--gray-500); margin-top: 20px; }
.fv-search-summary strong { color: var(--gray-800); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   EMPTY STATE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.fv-empty { text-align: center; padding: 80px 24px; }
.fv-empty-icon { font-size: 52px; display: block; margin-bottom: 18px; opacity: .45; }
.fv-empty-title { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--gray-700); margin-bottom: 8px; }
.fv-empty-text { font-size: 15px; color: var(--gray-500); max-width: 360px; margin: 0 auto 24px; line-height: 1.7; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-footer { background: var(--gray-900); color: rgba(255,255,255,.65); padding: 64px 0 0; }
.fv-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 44px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.08); }
.fv-footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.fv-footer-logo-mark { width: 36px; height: 36px; background: var(--indigo); border-radius: 9px; display: flex; align-items: center; justify-content: center; }
.fv-footer-logo-mark svg { width: 18px; height: 18px; color: #fff; }
.fv-footer-logo-name { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -.03em; }
.fv-footer-logo-name span { color: var(--indigo-xl); }
.fv-footer-about { font-size: 13.5px; line-height: 1.75; color: rgba(255,255,255,.5); margin-bottom: 22px; }
.fv-footer-social { display: flex; gap: 10px; }
.fv-soc { width: 34px; height: 34px; background: rgba(255,255,255,.08); border-radius: 9px; display: flex; align-items: center; justify-content: center; transition: all var(--t); }
.fv-soc:hover { background: var(--indigo); transform: translateY(-2px); }
.fv-soc svg { width: 16px; height: 16px; color: rgba(255,255,255,.7); }
.fv-soc:hover svg { color: #fff; }
.fv-footer-col-title { font-family: var(--font-display); font-size: 13px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 20px; }
.fv-footer-links { display: flex; flex-direction: column; gap: 12px; }
.fv-footer-links a { font-size: 13.5px; color: rgba(255,255,255,.5); transition: color var(--t); display: flex; align-items: center; gap: 6px; }
.fv-footer-links a:hover { color: #fff; }
.fv-footer-links a svg { width: 14px; height: 14px; }
.fv-newsletter-label { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 12px; line-height: 1.6; }
.fv-newsletter-row { display: flex; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-full); overflow: hidden; }
.fv-newsletter-row input { flex: 1; background: transparent; border: none; outline: none; padding: 11px 18px; font-size: 13.5px; color: #fff; font-family: var(--font-sans); }
.fv-newsletter-row input::placeholder { color: rgba(255,255,255,.3); }
.fv-newsletter-row button { background: var(--indigo); border: none; padding: 11px 18px; color: #fff; font-size: 13px; font-weight: 700; cursor: pointer; font-family: var(--font-sans); transition: background var(--t-fast); }
.fv-newsletter-row button:hover { background: var(--indigo-d); }
.fv-footer-bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,.3); }
.fv-footer-bottom a { color: rgba(255,255,255,.4); transition: color var(--t); }
.fv-footer-bottom a:hover { color: rgba(255,255,255,.75); }
.fv-footer-bottom-links { display: flex; gap: 20px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BACK TO TOP
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.fv-back-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--gray-800); color: #fff;
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-md); z-index: 900;
  opacity: 0; pointer-events: none; cursor: pointer;
  transition: all var(--t);
}
.fv-back-top.visible { opacity: 1; pointer-events: auto; }
.fv-back-top:hover { background: var(--indigo); transform: translateY(-3px); box-shadow: var(--sh-indigo); }
.fv-back-top svg { width: 20px; height: 20px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   UTILS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.fv-divider { height: 1px; background: var(--border); border: none; margin: 0; }
.fv-badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: var(--r-full); font-size: 11.5px; font-weight: 700; }
.fv-badge-indigo  { background: var(--indigo-bg);  color: var(--indigo); }
.fv-badge-emerald { background: var(--emerald-bg); color: var(--emerald); }
.fv-badge-gray    { background: var(--gray-100); color: var(--gray-600); }
.fv-badge-amber   { background: var(--amber-bg); color: var(--amber); }
.text-center { text-align: center; }
.w-full { width: 100%; }
.d-flex { display: flex; }
.gap-10 { gap: 10px; }
.mb-0 { margin-bottom: 0; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ANIMATIONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
.fv-fade-up { animation: fadeUp .5s var(--ease-out) both; }
.fv-fade-d1 { animation-delay: .08s; }
.fv-fade-d2 { animation-delay: .16s; }
.fv-fade-d3 { animation-delay: .24s; }
.fv-fade-d4 { animation-delay: .32s; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
  .fv-single-grid { grid-template-columns: 1fr; }
  .fv-sidebar { position: static; }
  .fv-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .fv-nav-links { display: none; }
  .fv-hamburger { display: flex; }
  .fv-hero { padding: 64px 0 56px; }
  .fv-section { padding: 56px 0; }
  .fv-cat-grid { grid-template-columns: repeat(auto-fill, minmax(140px,1fr)); gap: 12px; }
  .fv-single-hero-inner { flex-direction: column; gap: 24px; }
  .fv-single-icon-box { display: none; }
  .fv-toolbar { flex-direction: column; align-items: stretch; }
  .fv-toolbar-search { max-width: 100%; }
  .fv-cards-grid { grid-template-columns: 1fr; }
  .fv-actions-wrap { flex-direction: column; gap: 7px; }
  .fv-td-actions { width: auto; }
}
@media (max-width: 580px) {
  .fv-hero-title { font-size: 34px; }
  .fv-search-submit span { display: none; }
  .fv-hero-stats { gap: 20px; }
  .fv-hero-stat-divider { display: none; }
  .fv-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .fv-footer-bottom { flex-direction: column; text-align: center; }
  .fv-footer-bottom-links { justify-content: center; }
  .fv-single-btns { flex-direction: column; }
  .fv-single-btns .fv-btn { justify-content: center; }
}
