/* ==========================================================================
   HesapVia - TinyWow Style Design v4
   ========================================================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* TinyWow interactive blue */
  --primary: #2563eb;
  --primary-light: #3b82f6;
  --primary-dark: #1d4ed8;
  --primary-soft: #eff6ff;

  --secondary: #059669;
  --secondary-light: #10b981;
  --secondary-soft: #ecfdf5;

  --accent: #f97316;
  --danger: #dc2626;
  --success: #16a34a;
  --warning: #ea580c;
  --info: #0284c7;

  /* TinyWow light blue-gray background */
  --bg: #eef1f7;
  --bg-alt: #e4e8f0;
  --card: #ffffff;
  --text: #111827;
  --text-muted: #4b5563;
  --text-light: #9ca3af;
  --border: #d1d5db;
  --border-dark: #9ca3af;

  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow: 0 1px 3px 0 rgba(0,0,0,0.07), 0 1px 2px 0 rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px -2px rgba(0,0,0,0.09), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 24px -4px rgba(0,0,0,0.11), 0 4px 8px -2px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 40px -8px rgba(37,99,235,0.15);

  --radius-sm: 6px;
  --radius: 10px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 999px;

  --transition: 180ms cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body { overflow-x: hidden; }

/* Mobil tıklama efekti şeffaf - bazı tarayıcılarda görünen mavi flash'ı kapat */
* { -webkit-tap-highlight-color: rgba(0,0,0,0.05); }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* ==========================================================================
   HEADER - sticky, glassmorphism etkisi
   ========================================================================== */
.hv-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.hv-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
  gap: 24px;
}

.hv-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.hv-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}
.hv-logo-text { color: var(--primary); }

.hv-nav {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-left: auto;
}
.hv-nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.hv-nav-link:hover {
  color: var(--primary);
  background: var(--primary-soft);
}
.hv-nav-link.active {
  color: var(--primary);
  background: var(--primary-soft);
}

.hv-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  color: var(--text);
}

/* Dropdown menu - hover + click hybrid (görünmez köprü ile gap sorunu çözüldü) */
.hv-dropdown {
  position: relative;
}
.hv-dropdown > a::after {
  content: '';
  display: inline-block;
  margin-left: 4px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 200ms;
  vertical-align: middle;
}
.hv-dropdown:hover > a::after,
.hv-dropdown.open > a::after { transform: rotate(180deg); }

/* Görünmez köprü: hover'da menü dışına çıkma sorununu çözer */
.hv-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
  display: none;
}
.hv-dropdown:hover::before,
.hv-dropdown.open::before {
  display: block;
}

.hv-dropdown-content {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 240px;
  display: none;
  z-index: 200;
  animation: dropdownIn 200ms ease;
}
@keyframes dropdownIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.hv-dropdown:hover .hv-dropdown-content,
.hv-dropdown.open .hv-dropdown-content {
  display: block;
}
.hv-dropdown-content a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}
.hv-dropdown-content a:hover {
  background: var(--primary-soft);
  color: var(--primary);
}

/* ==========================================================================
   HERO SECTION — TinyWow stili
   ========================================================================== */
.hero {
  background: var(--bg);
  padding: 56px 0 48px;
  position: relative;
}

/* Floating dekoratif şekiller */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hs { position: absolute; }
.hs-1 { top: 18%; left: 7%; width: 0; height: 0; border-left: 16px solid transparent; border-right: 16px solid transparent; border-top: 28px solid #f97316; transform: rotate(-10deg); opacity: .85; }
.hs-2 { top: 10%; right: 8%; width: 22px; height: 22px; background: #ec4899; transform: rotate(45deg); border-radius: 3px; opacity: .85; }
.hs-3 { bottom: 18%; left: 4%; width: 0; height: 0; border-left: 13px solid transparent; border-right: 13px solid transparent; border-bottom: 22px solid #7c3aed; opacity: .7; }
.hs-4 { top: 45%; right: 5%; width: 10px; height: 10px; background: #f59e0b; transform: rotate(45deg); opacity: .8; }
.hs-5 { bottom: 28%; right: 12%; width: 8px; height: 8px; background: #06b6d4; border-radius: 50%; opacity: .75; }
.hs-6 { top: 65%; left: 10%; width: 7px; height: 7px; background: #f97316; border-radius: 50%; opacity: .6; }

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

.hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text);
}
/* TinyWow stili turuncu vurgu kelimesi */
.hero h1 .tw-hl {
  background: #f97316;
  color: #fff;
  padding: 0 10px 2px;
  border-radius: 6px;
  display: inline;
}
[data-theme="dark"] .hero h1 { color: #fff; }

.hero p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
[data-theme="dark"] .hero p { color: #94a3b8; }

/* TinyWow: arama girişi + buton yan yana */
.hero-search {
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  padding: 6px 6px 6px 20px;
  box-shadow: var(--shadow-md);
}
.hero-search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  background: transparent;
  font-family: inherit;
  color: var(--text);
  min-width: 0;
}
.hero-search input::placeholder { color: var(--text-light); }
.hero-search-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  font-family: inherit;
}
.hero-search-btn:hover { background: var(--primary-dark); }
[data-theme="dark"] .hero-search {
  background: #363640;
  border-color: var(--border);
}

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}
[data-theme="dark"] .hero-trust { color: #64748b; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ==========================================================================
   KATEGORİ FEATURE KARTLARI (TinyWow büyük renkli kartlar)
   ========================================================================== */
.cat-cards-section {
  padding: 32px 0 24px;
  background: var(--bg);
}

.cat-cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.cat-feature-card {
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.cat-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.14);
}

.cfc-top {
  background: var(--cfc-color, #2563eb);
  color: #fff;
  padding: 14px 14px 10px;
  flex: 1;
}
.cfc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.cfc-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.cfc-count {
  font-size: 10px;
  font-weight: 700;
  background: rgba(255,255,255,0.2);
  padding: 2px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.cfc-name {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 2px;
  letter-spacing: -0.3px;
}
.cfc-desc { font-size: 11px; opacity: 0.85; }

.cfc-bottom {
  background: rgba(0,0,0,0.18);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cfc-label {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  white-space: nowrap;
}
.cfc-tool {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.stats-bar {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
[data-theme="dark"] .stats-bar { background: var(--bg-alt); }

.stats-bar-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.sbi {
  text-align: center;
  position: relative;
}
.sbi + .sbi::before {
  content: '';
  position: absolute;
  left: -50%;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border);
}
.sbi-num {
  font-size: 26px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  display: block;
}
.sbi-label {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 3px;
  display: block;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 4px;
}

/* ==========================================================================
   AD SLOTS
   ========================================================================== */
.ad-slot {
  display: none;
  margin: 24px 0;
}
.ad-slot.horizontal { min-height: 90px; }
.ad-slot.sidebar { min-height: 250px; }

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section { padding: 56px 0; }
.section-sm { padding: 32px 0; }

.section-header { text-align: center; margin-bottom: 40px; }
.section-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.section-subtitle {
  color: var(--text-light);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.category-section { margin-bottom: 48px; }
.category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.category-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.category-icon.cat-pdf { background: linear-gradient(135deg, #fee2e2, #fecaca); color: #dc2626; }
.category-icon.cat-finans { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #059669; }
.category-icon.cat-cevirme { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: #2563eb; }
.category-icon.cat-uretici { background: linear-gradient(135deg, #fce7f3, #fbcfe8); color: #db2777; }
.category-icon.cat-zaman { background: linear-gradient(135deg, #ede9fe, #ddd6fe); color: #7c3aed; }
.category-icon.cat-resim { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #d97706; }
.category-icon.cat-gelistirici { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); color: #4f46e5; }
.category-icon.cat-yardimci { background: linear-gradient(135deg, #cffafe, #a5f3fc); color: #0891b2; }

.category-title-text {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 2px;
  letter-spacing: -0.5px;
}
.category-desc {
  font-size: 14px;
  color: var(--text-light);
}

/* ==========================================================================
   TOOL CARDS
   ========================================================================== */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.tool-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 22px;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
}
.tool-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease;
}
.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.tool-card:hover::before { transform: scaleX(1); }

.tool-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 8px;
  background: var(--bg-alt);
  transition: var(--transition);
}
.tool-card:hover .tool-card-icon {
  background: var(--primary-soft);
  transform: scale(1.08);
}

.tool-card-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--text);
}
.tool-card-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}
.tool-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tool-card-badge.new { background: var(--secondary); }
.tool-card-badge.popular { background: var(--accent); }

/* ==========================================================================
   TOOL PAGE LAYOUT
   ========================================================================== */
.tool-page { padding: 32px 0 60px; }

.tool-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
}

.tool-main {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.tool-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.sidebar-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sidebar-card a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 10px;
  margin-left: -10px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: block;
}
.sidebar-card a:hover {
  color: var(--primary);
  background: var(--primary-soft);
}
.sidebar-card .sct-item { display: flex; align-items: center; }
.sidebar-card .sct-item:hover { background: var(--bg-alt); color: var(--primary); }

.tool-header { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.tool-header-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-md);
}
.tool-header h1 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -1px;
  line-height: 1.2;
}
.tool-header p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 700px;
}

.breadcrumb {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-sep { color: var(--border-dark); }
.breadcrumb-current { color: var(--text); font-weight: 500; }

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px;
  font-family: inherit;
  background: white;
  transition: var(--transition);
  outline: none;
  color: var(--text);
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-soft);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-light);
}
.form-textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
  padding-right: 42px;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }

.form-help {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 6px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  font-family: inherit;
  white-space: nowrap;
  user-select: none;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  box-shadow: 0 1px 3px rgba(30, 64, 175, 0.3);
}
.btn-primary:hover {
  box-shadow: 0 8px 16px -4px rgba(30, 64, 175, 0.4);
  transform: translateY(-1px);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  color: white;
  box-shadow: 0 1px 3px rgba(5, 150, 105, 0.3);
}
.btn-secondary:hover {
  box-shadow: 0 8px 16px -4px rgba(5, 150, 105, 0.4);
  transform: translateY(-1px);
}

.btn-outline {
  background: white;
  color: var(--primary);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
}

.btn-ghost {
  background: var(--bg-alt);
  color: var(--text);
}
.btn-ghost:hover { background: var(--border); }

.btn-danger {
  background: var(--danger);
  color: white;
}

.btn-block { width: 100%; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ==========================================================================
   RESULT BOX
   ========================================================================== */
.result-box {
  background: linear-gradient(135deg, var(--secondary-soft) 0%, #ecfdf5 100%);
  border: 1px solid var(--secondary-light);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
  animation: resultFadeIn 0.35s ease;
}
@keyframes resultFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.result-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--secondary);
}
.result-title {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.result-value {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
  line-height: 1.1;
}

.detail-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 20px;
}
.detail-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}
.detail-card + .detail-card {
  margin-top: 12px;
}
.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.result-row:last-child { border-bottom: none; }
.result-row span:first-child {
  color: var(--text-muted);
}
.result-row span:last-child {
  font-weight: 600;
  color: var(--text);
}
.result-row.highlight {
  background: var(--secondary-soft);
  margin: 0 -24px;
  padding: 14px 24px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  border-bottom: none;
}
.result-row.highlight span:first-child {
  color: var(--text);
  font-weight: 700;
}
.result-row.highlight span:last-child {
  color: var(--secondary);
  font-size: 17px;
  font-weight: 800;
}
.result-row.danger span:last-child {
  color: var(--danger);
}

/* ==========================================================================
   CONTENT INFO
   ========================================================================== */
.content-info {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-top: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.content-info h2 {
  font-size: 22px;
  margin: 28px 0 14px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.content-info h2:first-child { margin-top: 0; }
.content-info h3 {
  font-size: 17px;
  margin: 20px 0 10px;
  font-weight: 600;
  color: var(--text);
}
.content-info h4 {
  font-size: 15px;
  margin: 16px 0 8px;
  font-weight: 600;
  color: var(--primary);
}
.content-info p {
  margin-bottom: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}
.content-info ul, .content-info ol {
  margin: 12px 0 16px 24px;
  color: var(--text-muted);
}
.content-info li { margin-bottom: 6px; line-height: 1.6; }
.content-info strong { color: var(--text); }
.content-info a { color: var(--primary); text-decoration: none; }
.content-info a:hover { text-decoration: underline; }

/* ==========================================================================
   FOOTER — modern redesign
   ========================================================================== */
.hv-footer {
  background: #0a0f1e;
  color: #cbd5e1;
  padding: 0 0 0;
  margin-top: 64px;
  position: relative;
}
.hv-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, #10b981 50%, var(--primary) 100%);
}
.footer-top-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}
.footer-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.footer-stat strong {
  font-size: 22px;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.footer-stat span {
  font-size: 12px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.footer-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding: 48px 0 40px;
}
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: white;
  text-decoration: none;
  margin-bottom: 16px;
}
.footer-logo-link img { border-radius: 8px; flex-shrink: 0; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: #64748b;
  max-width: 320px;
  margin-bottom: 0;
}
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  text-decoration: none;
  transition: var(--transition);
}
.footer-social-btn:hover { background: rgba(255,255,255,0.14); color: white; }
.hv-footer h4 {
  color: #e2e8f0;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.hv-footer ul { list-style: none; }
.hv-footer li { margin-bottom: 11px; }
.hv-footer a {
  color: #64748b;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hv-footer a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  font-size: 13px;
  color: #334155;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   HERO SEARCH DROPDOWN
   ========================================================================== */
.hero-search-wrap {
  position: relative;
  max-width: 580px;
  margin: 0 auto;
}
.hero-search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 300;
  overflow: hidden;
  animation: dropdownIn 150ms ease;
}
[data-theme="dark"] .hero-search-dropdown { background: #363640; }
.hsd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
  border-bottom: 1px solid var(--border);
}
.hsd-item:last-child { border-bottom: none; }
.hsd-item:hover { background: var(--bg-alt); }
.hsd-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.hsd-body { display: flex; flex-direction: column; min-width: 0; }
.hsd-name { font-size: 14px; font-weight: 600; color: var(--text); }
.hsd-desc { font-size: 12px; color: var(--text-light); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ==========================================================================
   SIDEBAR CATEGORY TOOLS
   ========================================================================== */
.sidebar-cat-tools { display: flex; flex-direction: column; gap: 2px; }
.sct-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
  margin: 0 -10px;
}
.sct-item:hover { background: var(--bg-alt); color: var(--primary); }
.sct-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.sidebar-cat-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   KATEGORİ INDEX SAYFASI HERO
   ========================================================================== */
.cat-page-hero {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.cat-page-hero-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.cat-page-hero-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  flex-shrink: 0;
}
.cat-page-hero-text h1 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}
.cat-page-hero-text p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 12px;
}
.cat-page-badge {
  display: inline-flex;
  align-items: center;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: var(--radius-full);
}
.cat-page-section { padding: 36px 0 64px; }
[data-theme="dark"] .cat-page-hero { background: var(--card); border-color: var(--border); }

/* ==========================================================================
   COMPONENTS - alarm, countdown, generator, file drop
   ========================================================================== */
.alarm-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.alarm-item {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}
.alarm-item:hover { border-color: var(--primary-light); }
.alarm-time {
  font-size: 22px;
  font-weight: 700;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  color: var(--text);
}
.alarm-active {
  border-color: var(--secondary);
  background: var(--secondary-soft);
}

.countdown-display {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.countdown-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.countdown-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.15), transparent);
}
.countdown-number {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  letter-spacing: -1px;
  position: relative;
}
.countdown-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.9;
  margin-top: 4px;
  font-weight: 600;
  position: relative;
}

.generator-output {
  background: #0f172a;
  color: #f1f5f9;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 16px;
  word-break: break-all;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid #1e293b;
}
.copy-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition);
  font-family: inherit;
}
.copy-btn:hover { background: var(--primary-light); }

.file-drop {
  border: 2px dashed var(--border-dark);
  border-radius: var(--radius-md);
  padding: 48px 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--bg-alt);
}
.file-drop:hover, .file-drop.dragover {
  border-color: var(--primary);
  background: var(--primary-soft);
}
.file-drop-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.8;
}
.file-drop-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.file-drop-sub {
  color: var(--text-light);
  font-size: 14px;
}
.file-drop input { display: none; }

/* TABS */
.tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-alt);
  padding: 4px;
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.tab {
  flex: 1;
  padding: 10px 18px;
  cursor: pointer;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-family: inherit;
}
.tab.active {
  background: var(--card);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.alert-info { background: var(--primary-soft); color: var(--primary-dark); border-left: 3px solid var(--primary); }
.alert-warning { background: #fef3c7; color: #92400e; border-left: 3px solid #f59e0b; }
.alert-success { background: var(--secondary-soft); color: #065f46; border-left: 3px solid var(--secondary); }
.alert-danger { background: #fee2e2; color: #991b1b; border-left: 3px solid var(--danger); }

/* TABLE */
.hv-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 16px;
}
.hv-table thead {
  background: var(--bg-alt);
}
.hv-table th {
  text-align: left;
  padding: 12px 16px;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hv-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.hv-table tr:hover td { background: var(--bg); }
.table-note { margin-top: 10px; color: var(--text-light); font-size: 13px; }

/* ==========================================================================
   COPY BUTTON
   ========================================================================== */
.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  margin-top: 10px;
}
.copy-btn:hover { background: var(--primary); color: white; }
.copy-btn.copied { background: var(--secondary); border-color: var(--secondary); color: white; }
[data-theme="dark"] .copy-btn { background: rgba(37,99,235,0.15); }
[data-theme="dark"] .copy-btn:hover { background: var(--primary); }

/* ==========================================================================
   FOOTER CTA
   ========================================================================== */
.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  color: white !important;
  text-decoration: none;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
}
.footer-cta:hover { background: rgba(255,255,255,0.2) !important; }

/* STAT GRID */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
}
.stat-card-label {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.stat-card-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}

/* COLOR PICKER */
.color-display {
  width: 100%;
  height: 120px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

/* CHECKBOX/RADIO */
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: white;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}
.checkbox-item:hover { border-color: var(--primary-light); }
.checkbox-item input { width: 18px; height: 18px; cursor: pointer; accent-color: var(--primary); }

/* RANGE */
input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: var(--border);
  outline: none;
  -webkit-appearance: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: 3px solid white;
  box-shadow: var(--shadow);
}

/* ==========================================================================
   MOBILE RESPONSIVE
   ========================================================================== */
@media (max-width: 968px) {
  .tool-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hv-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 12px;
    gap: 2px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border);
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  .hv-nav.open { display: flex; }
  [data-theme="dark"] .hv-nav { background: var(--card); border-bottom-color: var(--border); }
  .hv-nav-link { width: 100%; padding: 14px 16px; font-size: 15px; }
  .hv-menu-toggle { display: flex; align-items: center; justify-content: center; }
  .hv-dropdown-content { position: static; box-shadow: none; border: none; padding: 0 0 0 16px; margin-top: 0; }
  .hv-dropdown.open .hv-dropdown-content { display: block; }
  .hv-dropdown::before { display: none !important; }

  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .countdown-display { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .countdown-box { padding: 18px 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 50px 0 40px; }
  .section { padding: 36px 0; }
  .tool-main { padding: 22px 18px; }
  .tool-page { padding: 20px 0 40px; }
  .container, .container-sm { padding: 0 16px; }
  .hero-stats { gap: 20px; }
  .checkbox-group { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; gap: 12px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  /* Touch target boyutu artırma */
  .btn { min-height: 44px; padding: 12px 20px; }
  .btn-sm { min-height: 38px; }
  .tab { min-height: 44px; }
  .copy-btn { min-height: 36px; padding: 10px 14px; }

  /* Tablo mobile - scroll */
  .hv-table { font-size: 13px; }
  .hv-table th, .hv-table td { padding: 8px 10px; }

  /* Modal mobile */
  .modal { padding: 20px; }
  .cat-cards-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 15px; }
  .tool-header h1 { font-size: 22px; }
  .tool-header-icon { width: 52px; height: 52px; font-size: 26px; }
  .countdown-display { gap: 8px; }
  .result-value { font-size: 26px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* WEB PUSH BİLDİRİM PROMPT */
.hv-push-prompt {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9997;
  animation: slideUp 400ms ease;
}
.hv-push-icon {
  font-size: 32px;
  text-align: center;
}
.hv-push-text strong { font-size: 15px; }
.hv-push-text p { font-size: 13px; color: var(--text-light); margin-top: 4px; }
.hv-push-actions { display: flex; gap: 8px; }
.hv-push-actions button {
  flex: 1;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  background: white;
  color: var(--text-muted);
  font-family: inherit;
}
.hv-push-btn-yes { background: var(--primary) !important; color: white !important; border-color: var(--primary) !important; }
.hv-push-btn-yes:hover { background: var(--primary-dark) !important; }
@media (max-width: 480px) {
  .hv-push-prompt { left: 12px; right: 12px; bottom: 12px; max-width: none; }
}

/* SOSYAL PAYLAŞIM BUTONLARI */
.hv-share {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin: 24px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
  border: 1px solid var(--border);
}
.hv-share-label { font-weight: 600; font-size: 14px; color: var(--text); }
.hv-share-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.hv-share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: var(--text-muted);
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}
.hv-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.hv-share-btn[data-net="wa"]:hover { background: #25D366; color: white; border-color: #25D366; }
.hv-share-btn[data-net="x"]:hover { background: #000; color: white; border-color: #000; }
.hv-share-btn[data-net="fb"]:hover { background: #1877F2; color: white; border-color: #1877F2; }
.hv-share-btn[data-net="tg"]:hover { background: #0088CC; color: white; border-color: #0088CC; }
.hv-share-btn[data-net="li"]:hover { background: #0A66C2; color: white; border-color: #0A66C2; }
.hv-share-btn[data-net="pi"]:hover { background: #E60023; color: white; border-color: #E60023; }
.hv-share-btn[data-net="copy"]:hover { background: var(--primary); color: white; border-color: var(--primary); }

@media (max-width: 640px) {
  .hv-share { padding: 12px 16px; }
  .hv-share-label { font-size: 13px; width: 100%; }
}

/* HAFİF KVKK BANDI - Türkiye için (üstte, küçük) */
.hv-kvkk-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 10px 16px;
  font-size: 13px;
  text-align: center;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  animation: slideDown 300ms ease;
}
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
.hv-kvkk-bar a { color: white; text-decoration: underline; font-weight: 600; }
.hv-kvkk-bar a:hover { opacity: 0.85; }
.hv-kvkk-close {
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  flex-shrink: 0;
  transition: background 200ms;
}
.hv-kvkk-close:hover { background: rgba(255,255,255,0.35); }

@media (max-width: 640px) {
  .hv-kvkk-bar { font-size: 12px; padding: 8px 12px; gap: 8px; }
}

/* COOKIE CONSENT BANNER (KVKK / GDPR) */
.hv-cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.3);
  z-index: 9999;
  max-width: 920px;
  margin: 0 auto;
  padding: 20px 24px;
  animation: slideUp 400ms ease;
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.hv-cookie-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hv-cookie-text { flex: 1; min-width: 240px; }
.hv-cookie-text strong { font-size: 15px; }
.hv-cookie-text p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.5;
}
.hv-cookie-text a { color: var(--primary); }

/* ==========================================================================
   TEMA GEÇİŞ ANİMASYONU — sadece kullanıcı tıkladığında aktif
   ========================================================================== */
.theme-loaded *,
.theme-loaded *::before,
.theme-loaded *::after {
  transition:
    background-color 0.25s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease !important;
}

/* ==========================================================================
   DARK MODE — Zinc palette (nötr gri, göz yormuyor)
   ========================================================================== */

[data-theme="dark"] {
  /* Zinc gray palette */
  --bg:            #2a2a32;
  --bg-alt:        #363640;
  --card:          #363640;
  --text:          #f4f4f5;
  --text-muted:    #a1a1aa;
  --text-light:    #7a7a88;
  --border:        #50505a;
  --border-dark:   #626268;
  --primary-soft:  #1e3a8a;
  --secondary-soft:#064e3b;
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.4);
  --shadow:    0 1px 3px 0 rgba(0,0,0,0.5), 0 1px 2px 0 rgba(0,0,0,0.4);
  --shadow-md: 0 4px 12px -2px rgba(0,0,0,0.5), 0 2px 4px -1px rgba(0,0,0,0.4);
  --shadow-lg: 0 10px 24px -4px rgba(0,0,0,0.6), 0 4px 8px -2px rgba(0,0,0,0.4);
  --shadow-xl: 0 20px 40px -8px rgba(0,0,0,0.7);
}

[data-theme="dark"] body {
  background: var(--bg);
  color: var(--text);
}

[data-theme="dark"] .hero {
  background: var(--bg);
  border-bottom-color: var(--border);
}

[data-theme="dark"] .hero-search input {
  background: var(--bg-alt);
  border-color: var(--border);
  color: var(--text);
  box-shadow: none;
}

[data-theme="dark"] .hero-search input::placeholder {
  color: var(--text-light);
}

[data-theme="dark"] .hv-header {
  background: var(--bg);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

[data-theme="dark"] .hv-nav-link,
[data-theme="dark"] .hv-nav-link:hover {
  color: var(--text-muted);
}

[data-theme="dark"] .hv-nav-link.active,
[data-theme="dark"] .hv-nav-link:hover {
  color: var(--text);
}

[data-theme="dark"] .hv-dropdown-content {
  background: #363640;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

[data-theme="dark"] .hv-dropdown-content a {
  color: var(--text-muted);
}

[data-theme="dark"] .hv-dropdown-content a:hover {
  background: #44444e;
  color: var(--text);
}

[data-theme="dark"] .card,
[data-theme="dark"] .result-box,
[data-theme="dark"] .sidebar-card,
[data-theme="dark"] .alarm-item,
[data-theme="dark"] .info-box {
  background: var(--card);
  border-color: var(--border);
}

[data-theme="dark"] .form-input,
[data-theme="dark"] .form-select,
[data-theme="dark"] .form-textarea {
  background-color: #252530;
  border-color: var(--border);
  color: var(--text);
}
[data-theme="dark"] .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

[data-theme="dark"] .form-input:focus,
[data-theme="dark"] .form-select:focus,
[data-theme="dark"] .form-textarea:focus {
  border-color: var(--primary-light);
  background-color: #18181b;
}

[data-theme="dark"] .form-input::placeholder,
[data-theme="dark"] .form-textarea::placeholder {
  color: var(--text-light);
}

[data-theme="dark"] .btn-outline {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}

[data-theme="dark"] .btn-outline:hover {
  background: var(--card);
}

[data-theme="dark"] .hv-footer {
  background: #1c1c24;
}

[data-theme="dark"] .hv-footer a { color: var(--text-muted); }
[data-theme="dark"] .hv-footer a:hover { color: var(--text); }
[data-theme="dark"] .hv-footer h3,
[data-theme="dark"] .hv-footer h4 { color: var(--text); }
[data-theme="dark"] .footer-bottom { color: var(--text-muted); }

[data-theme="dark"] .table-responsive table thead th {
  background: #363640;
  color: var(--text-muted);
}

[data-theme="dark"] .table-responsive table tr:nth-child(even) {
  background: #2f2f38;
}

[data-theme="dark"] .table-responsive table td,
[data-theme="dark"] .table-responsive table th {
  border-color: var(--border);
}

[data-theme="dark"] .ad-slot {
  background: #363640;
  border-color: var(--border);
  color: var(--text-light);
}

[data-theme="dark"] .tc {
  background: var(--card);
  border-color: var(--border);
}

[data-theme="dark"] .tc:hover {
  background: #44444e;
  border-color: var(--primary-light);
}

[data-theme="dark"] .tc-name { color: var(--text); }
[data-theme="dark"] .tc-desc { color: var(--text-muted); }

[data-theme="dark"] .cat-filter-btn {
  background: #363640;
  border-color: var(--border);
  color: var(--text-muted);
}

[data-theme="dark"] .cat-filter-btn:hover {
  background: #50505a;
  color: var(--text);
}

[data-theme="dark"] .cat-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

[data-theme="dark"] .tc-badge.popular {
  background: #3f2e00;
  color: #fcd34d;
}

[data-theme="dark"] .tc-badge.new {
  background: #052e16;
  color: #4ade80;
}

/* Dark mode kart/arka plan ayrıştırması */
[data-theme="dark"] {
  --card: #404052;
}

/* Dark mode focus ring */
[data-theme="dark"] .form-input:focus,
[data-theme="dark"] .form-select:focus,
[data-theme="dark"] .form-textarea:focus {
  border-color: var(--primary-light);
  background-color: #18181b;
  box-shadow: 0 0 0 4px rgba(59,130,246,0.2);
}

/* Dark mode result-box gradient */
[data-theme="dark"] .result-box {
  background: linear-gradient(135deg, #042217 0%, #063d28 100%);
  border-color: #059669;
}

/* Dark mode alert overrides */
[data-theme="dark"] .alert-warning { background: #1c1003; color: #fcd34d; border-left-color: #d97706; }
[data-theme="dark"] .alert-danger  { background: #1c0404; color: #fca5a5; border-left-color: #dc2626; }
[data-theme="dark"] .alert-info    { background: #0c1a3d; color: #93c5fd; border-left-color: #3b82f6; }
[data-theme="dark"] .alert-success { background: #042217; color: #86efac; border-left-color: #059669; }

/* Dark mode detail-card */
[data-theme="dark"] .detail-card { background: var(--bg-alt); border-color: var(--border); }

/* Dark mode tool-main */
[data-theme="dark"] .tool-main { background: var(--card); border-color: var(--border); }

/* Push prompt dark mode */
[data-theme="dark"] .hv-push-prompt { background: var(--card); border-color: var(--border); }
[data-theme="dark"] .hv-push-actions button { background: var(--bg-alt); border-color: var(--border); color: var(--text-muted); }

/* Share butonları dark mode */
[data-theme="dark"] .hv-share-btn { background: var(--bg-alt); border-color: var(--border); color: var(--text-muted); }

/* Checkbox item dark mode */
[data-theme="dark"] .checkbox-item { background: var(--bg-alt); border-color: var(--border); }

/* Cookie banner dark mode */
[data-theme="dark"] .hv-cookie-banner { background: var(--card); border-color: var(--border); box-shadow: 0 20px 50px -10px rgba(0,0,0,0.6); }
[data-theme="dark"] .hv-cookie-btn { background: var(--bg-alt); border-color: var(--border); color: var(--text); }
[data-theme="dark"] .hv-cookie-btn:hover { background: var(--card); }
[data-theme="dark"] .hv-cookie-modal-inner { background: var(--card); border: 1px solid var(--border); }

/* ==========================================================================
   KATEGORİ FİLTRE BARI
   ========================================================================== */
.cat-filter-bar {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 0 0 16px;
  padding: 4px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cat-filter-bar::-webkit-scrollbar { display: none; }

.cat-filter-btn {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  background: var(--card);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
}

.cat-filter-btn:hover {
  border-color: var(--primary-light);
  color: var(--primary);
}

.cat-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ==========================================================================
   ARAÇ KARTI — TinyWow yatay liste stili
   ========================================================================== */
.tools-section {
  background: var(--bg);
  padding: 24px 0 40px;
}

.tools-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}
.tools-section-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}

.tools-grid-main {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 8px;
}

.tc {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--card);
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: background var(--transition), border-color var(--transition);
}
.tc:hover { background: var(--bg-alt); border-color: var(--primary-light); }

.tc-icon {
  font-size: 20px;
  line-height: 1;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--bg-alt);
}

.tc-body { flex: 1; min-width: 0; }

.tc-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tc-cat-tag {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}
.tc[data-cat="finans"]  .tc-cat-tag { color: #059669; }
.tc[data-cat="pdf"]     .tc-cat-tag { color: #7c3aed; }
.tc[data-cat="gorsel"]  .tc-cat-tag { color: #d97706; }
.tc[data-cat="video"]   .tc-cat-tag { color: #dc2626; }
.tc[data-cat="zaman"]   .tc-cat-tag { color: #2563eb; }
.tc[data-cat="araclar"] .tc-cat-tag { color: #0891b2; }

.tc-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Kategori bazlı ikon renkleri */
.tc[data-cat="finans"]  .tc-icon { background: #d1fae5; }
.tc[data-cat="pdf"]     .tc-icon { background: #ede9fe; }
.tc[data-cat="gorsel"]  .tc-icon { background: #ffedd5; }
.tc[data-cat="video"]   .tc-icon { background: #fee2e2; }
.tc[data-cat="zaman"]   .tc-icon { background: #dbeafe; }
.tc[data-cat="araclar"] .tc-icon { background: #cffafe; }

[data-theme="dark"] .tc { background: var(--card); }
[data-theme="dark"] .tc:hover { background: #44444e; }
[data-theme="dark"] .tc[data-cat="finans"]  .tc-icon { background: rgba(16,185,129,0.18); }
[data-theme="dark"] .tc[data-cat="pdf"]     .tc-icon { background: rgba(139,92,246,0.18); }
[data-theme="dark"] .tc[data-cat="gorsel"]  .tc-icon { background: rgba(249,115,22,0.18); }
[data-theme="dark"] .tc[data-cat="video"]   .tc-icon { background: rgba(239,68,68,0.18); }
[data-theme="dark"] .tc[data-cat="zaman"]   .tc-icon { background: rgba(56,189,248,0.18); }
[data-theme="dark"] .tc[data-cat="araclar"] .tc-icon { background: rgba(6,182,212,0.18); }

/* "Tüm araçları gör" butonu */
.show-more-wrap {
  text-align: center;
  margin-top: 20px;
}
.show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.show-more-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-soft); }

.tc-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  line-height: 1.4;
}

.tc-badge.popular {
  background: #fef3c7;
  color: #92400e;
}

[data-theme="dark"] .tc-badge.popular {
  background: #451a03;
  color: #fcd34d;
}

.tc-badge.new {
  background: #dcfce7;
  color: #14532d;
}

[data-theme="dark"] .tc-badge.new {
  background: #052e16;
  color: #86efac;
}

[data-theme="dark"] .tc {
  background: var(--card);
}

@media (max-width: 640px) {
  .tools-grid-main { grid-template-columns: 1fr; }
  .cat-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .stats-bar-grid { gap: 20px; }
}
@media (max-width: 480px) {
  .cat-cards-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .cat-filter-btn { font-size: 12px; padding: 6px 12px; }
  .hero h1 { font-size: 26px; }
  .hero-search-btn { padding: 10px 16px; font-size: 14px; }
}

/* Tema switch butonu */
.hv-theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  line-height: 1;
  color: var(--text);
  transition: background var(--transition);
  display: flex;
  align-items: center;
}
.hv-theme-toggle:hover { background: var(--bg-alt); }
.hv-cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.hv-cookie-btn {
  padding: 10px 18px;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--text);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}
.hv-cookie-btn:hover { background: var(--bg-alt); }
.hv-cookie-btn.hv-cookie-accept {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.hv-cookie-btn.hv-cookie-accept:hover { background: var(--primary-dark); }
.hv-cookie-btn.hv-cookie-reject:hover { color: var(--danger); border-color: var(--danger); }

.hv-cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.hv-cookie-modal-inner {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 480px;
  width: 90%;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
}
.hv-cookie-modal-inner h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.hv-cookie-modal-inner p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.hv-cookie-modal-inner .hv-cookie-choices {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.hv-cookie-modal-inner .hv-cookie-btn-row {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* ==========================================================================
   RESULT-BOX COPY BUTTON
   ========================================================================== */
.result-box-wrap {
  position: relative;
}
.result-copy-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  border: 1.5px solid var(--secondary);
  color: var(--secondary);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
}
.result-copy-btn:hover { background: var(--secondary); color: #fff; }
.result-copy-btn.copied { background: var(--secondary); border-color: var(--secondary); color: #fff; }
[data-theme="dark"] .result-copy-btn { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.35); color: #fff; box-shadow: none; }
[data-theme="dark"] .result-copy-btn:hover { background: rgba(255,255,255,0.28); }

/* ==========================================================================
   PRINT STYLESHEET
   ========================================================================== */
@media print {
  .hv-header, .hv-footer, .ad-slot, .tool-sidebar,
  .hero, .hv-share-bar, .hv-push-prompt,
  .hv-cookie-banner, .breadcrumb { display: none !important; }
  .tool-layout { display: block !important; }
  .tool-main { width: 100% !important; box-shadow: none !important; border: 1px solid #ccc !important; }
  body { background: white !important; color: black !important; font-size: 12pt; }
  .hv-table { border-collapse: collapse !important; width: 100% !important; }
  .hv-table th, .hv-table td { border: 1px solid #999 !important; padding: 6px 8px !important; background: white !important; color: black !important; }
  .result-box { background: #f0f0f0 !important; color: black !important; border: 1px solid #ccc !important; }
  .result-value { color: #16a34a !important; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 10pt; color: #555; }
}
.hv-cookie-cat {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  margin-bottom: 10px;
}
.hv-cookie-cat strong { font-size: 14px; }
.hv-cookie-cat p { font-size: 12px; color: var(--text-light); margin-top: 4px; }

@media (max-width: 640px) {
  .hv-cookie-actions { width: 100%; }
  .hv-cookie-btn { flex: 1; padding: 12px 8px; font-size: 12px; }
}

/* SIDE STICKY BANNERS - Admin'den enjekte edilir */
.hv-side-banner {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  z-index: 40;
  display: none;
}
.hv-side-left { left: 16px; }
.hv-side-right { right: 16px; }
.hv-side-banner img { max-width: 100%; height: auto; border-radius: var(--radius); }

/* Geniş ekranlarda göster (1400px+) */
@media (min-width: 1400px) {
  .hv-side-banner { display: block; }
}

/* Active reklam slotu (admin'den içerik gelince) */
.ad-slot.ad-active {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
  min-height: 0;
  text-transform: none;
  letter-spacing: normal;
  font-weight: normal;
}

/* ==========================================================================
   NEDEN HESAPVIA — modern feature cards
   ========================================================================== */
.why-section {
  padding: 48px 0;
  background: var(--card);
  border-top: 1px solid var(--border);
}
.why-title {
  text-align: center;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
  color: var(--text);
}
.why-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin: 0 auto 32px;
  max-width: 500px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.why-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.why-icon { font-size: 26px; line-height: 1; }
.why-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin: 0; }
.why-card p { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin: 0; }
@media (max-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }

/* Tools section sub-label + all-tools separator */
.tools-section-sub { font-size: 13px; color: var(--text-muted); }
.tools-all-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 36px 0 16px;
}
.tools-all-rule { flex: 1; height: 1px; background: var(--border); }
.tools-all-label { font-size: 14px; font-weight: 700; color: var(--text-light); white-space: nowrap; }

/* Sosyal medya düğmeleri (header nav) */
.hv-nav-sep {
  width: 1px;
  height: 20px;
  background: var(--border);
  margin: 0 4px;
  flex-shrink: 0;
}
.hv-social-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
  flex-shrink: 0;
}
.hv-social-btn:hover {
  color: var(--text);
  background: var(--bg-alt);
}
/* Dropdown ikon */
.hv-dd-ic {
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
/* Dropdown ayraç + footer link */
.hv-dd-sep {
  height: 1px;
  background: var(--border);
  margin: 4px -4px;
}
.hv-dd-foot {
  padding-top: 2px;
}
.hv-dd-foot a {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
}
.hv-dd-foot a:hover {
  background: var(--primary-soft);
  color: var(--primary);
}
[data-theme="dark"] .hv-social-btn:hover { background: var(--bg-alt); color: var(--text); }
[data-theme="dark"] .hv-dd-foot a { color: var(--primary-light); }
@media (max-width: 768px) {
  .hv-nav-sep { display: none; }
}

