/* =====================================================
   UtilityPro Platform — Global Design System
   Version: 2.0.0 | Enterprise Grade
   Design: Stripe × Linear × Notion × Vercel aesthetic
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;0,14..32,900;1,14..32,400&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ─── Design Tokens ─────────────────────────────────── */
:root {
  /* Brand Colors */
  --brand-primary:       #14b8a6;
  --brand-primary-dark:  #0d9488;
  --brand-primary-light: #2dd4bf;
  --brand-primary-glow:  rgba(20,184,166,0.18);
  --brand-primary-soft:  rgba(20,184,166,0.08);
  --brand-primary-border:rgba(20,184,166,0.2);

  --brand-accent:        #f59e0b;
  --brand-accent-dark:   #d97706;
  --brand-accent-soft:   rgba(245,158,11,0.1);

  --brand-danger:        #ef4444;
  --brand-danger-soft:   rgba(239,68,68,0.1);
  --brand-success:       #22c55e;
  --brand-success-soft:  rgba(34,197,94,0.1);
  --brand-info:          #3b82f6;
  --brand-info-soft:     rgba(59,130,246,0.1);

  /* Dark Theme (Default) */
  --bg-0:        #09090b;
  --bg-1:        #0d0f12;
  --bg-2:        #111318;
  --bg-3:        #161a22;
  --bg-4:        #1c2130;

  --surface-1:   #1a1f2e;
  --surface-2:   #202635;
  --surface-3:   #262d3f;
  --surface-glass: rgba(20,25,38,0.8);

  --border-1:    rgba(255,255,255,0.06);
  --border-2:    rgba(255,255,255,0.1);
  --border-3:    rgba(255,255,255,0.15);

  --text-1:      #f1f5f9;
  --text-2:      #cbd5e1;
  --text-3:      #94a3b8;
  --text-4:      #64748b;
  --text-5:      #475569;
  --text-inv:    #0d0f12;

  /* Typography */
  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:   'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;

  /* Sizing */
  --header-h:    64px;
  --sidebar-w:   280px;
  --max-content: 1280px;
  --max-narrow:  860px;

  /* Spacing scale */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-5: 20px; --s-6: 24px; --s-8: 32px;
  --s-10: 40px; --s-12: 48px; --s-16: 64px; --s-20: 80px;

  /* Radius */
  --r-1: 4px;  --r-2: 8px;  --r-3: 12px;
  --r-4: 16px; --r-5: 20px; --r-6: 24px; --r-full: 9999px;

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(0,0,0,0.4);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.5);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.6);
  --shadow-xl:  0 16px 60px rgba(0,0,0,0.7);
  --shadow-glow-primary: 0 0 40px rgba(20,184,166,0.15);
  --shadow-glow-accent:  0 0 40px rgba(245,158,11,0.15);

  /* Transitions */
  --ease-1: 0.1s cubic-bezier(0.4,0,0.2,1);
  --ease-2: 0.2s cubic-bezier(0.4,0,0.2,1);
  --ease-3: 0.35s cubic-bezier(0.4,0,0.2,1);
  --ease-spring: 0.4s cubic-bezier(0.34,1.56,0.64,1);

  /* Category Colors */
  --cat-general:   #14b8a6;
  --cat-finance:   #22c55e;
  --cat-business:  #f59e0b;
  --cat-health:    #ef4444;
  --cat-education: #8b5cf6;
  --cat-time:      #3b82f6;
  --cat-lifestyle: #ec4899;
  --cat-converter: #06b6d4;
  --cat-document:  #f97316;
  --cat-text:      #84cc16;
  --cat-seo:       #a855f7;
  --cat-developer: #6366f1;
  --cat-ai:        #14b8a6;

  /* Z-index */
  --z-below:    -1;
  --z-base:      0;
  --z-raised:   10;
  --z-dropdown: 100;
  --z-sticky:   200;
  --z-overlay:  300;
  --z-modal:    400;
  --z-toast:    500;
}

/* ─── Light Theme ────────────────────────────────────── */
[data-theme="light"] {
  --bg-0:        #ffffff;
  --bg-1:        #f8fafc;
  --bg-2:        #f1f5f9;
  --bg-3:        #e2e8f0;
  --bg-4:        #cbd5e1;

  --surface-1:   #ffffff;
  --surface-2:   #f8fafc;
  --surface-3:   #f1f5f9;
  --surface-glass: rgba(255,255,255,0.9);

  --border-1:    rgba(0,0,0,0.06);
  --border-2:    rgba(0,0,0,0.1);
  --border-3:    rgba(0,0,0,0.15);

  --text-1:      #0f172a;
  --text-2:      #1e293b;
  --text-3:      #475569;
  --text-4:      #64748b;
  --text-5:      #94a3b8;
  --text-inv:    #ffffff;

  --shadow-xs:  0 1px 2px rgba(0,0,0,0.06);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl:  0 16px 60px rgba(0,0,0,0.15);
  --shadow-glow-primary: 0 0 40px rgba(20,184,166,0.12);
}

/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  background: var(--bg-1);
  color: var(--text-1);
  line-height: 1.6;
  min-height: 100vh;
  transition: background var(--ease-3), color var(--ease-3);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="rtl"] { direction: rtl; }
[dir="ltr"] { direction: ltr; }

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }
ul, ol { list-style: none; }

/* ─── Accessibility ─────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-nav {
  position: absolute; top: -60px; left: var(--s-4);
  background: var(--brand-primary); color: #fff;
  padding: var(--s-2) var(--s-4); border-radius: var(--r-2);
  font-weight: 600; font-size: 0.875rem; z-index: 9999;
  transition: top var(--ease-1);
}
.skip-nav:focus { top: var(--s-4); }

:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
  border-radius: var(--r-1);
}

/* ─── Background Effects ────────────────────────────── */
.page-bg {
  position: fixed; inset: 0; z-index: var(--z-below);
  pointer-events: none; overflow: hidden;
}

.bg-mesh {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(20,184,166,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 80%, rgba(245,158,11,0.03) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(139,92,246,0.02) 0%, transparent 60%);
}

.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border-1) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-1) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ─── Layout Container ──────────────────────────────── */
.container {
  width: 100%; max-width: var(--max-content);
  margin: 0 auto; padding: 0 var(--s-6);
}

.container-narrow {
  width: 100%; max-width: var(--max-narrow);
  margin: 0 auto; padding: 0 var(--s-6);
}

@media (max-width: 768px) {
  .container, .container-narrow { padding: 0 var(--s-4); }
}

/* ─── Platform Header ───────────────────────────────── */
.platform-header {
  position: sticky; top: 0; z-index: var(--z-sticky);
  height: var(--header-h);
  background: var(--surface-glass);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border-1);
  display: flex; align-items: center;
}

.header-inner {
  display: flex; align-items: center; gap: var(--s-4);
  width: 100%; max-width: var(--max-content);
  margin: 0 auto; padding: 0 var(--s-6);
}

/* Logo */
.site-logo {
  display: flex; align-items: center; gap: var(--s-2);
  font-weight: 800; font-size: 1.1rem; letter-spacing: -0.03em;
  color: var(--text-1); white-space: nowrap;
  flex-shrink: 0;
}

.logo-mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #0ea5e9 100%);
  border-radius: var(--r-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-glow-primary);
  transition: transform var(--ease-2), box-shadow var(--ease-2);
  flex-shrink: 0;
}

.site-logo:hover .logo-mark {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 0 30px rgba(20,184,166,0.4);
}

.logo-text span { color: var(--brand-primary); }

/* Global Search */
.global-search {
  flex: 1; max-width: 480px; position: relative;
}

.search-input {
  width: 100%;
  height: 38px;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-full);
  padding: 0 var(--s-4) 0 var(--s-10);
  font-size: 0.875rem;
  color: var(--text-1);
  transition: all var(--ease-2);
  outline: none;
}

.search-input::placeholder { color: var(--text-4); }

.search-input:focus {
  border-color: var(--brand-primary);
  background: var(--bg-3);
  box-shadow: 0 0 0 3px var(--brand-primary-soft);
}

.search-icon {
  position: absolute; left: var(--s-3); top: 50%;
  transform: translateY(-50%);
  color: var(--text-4); font-size: 0.9rem; pointer-events: none;
}

.search-results-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: var(--surface-1);
  border: 1px solid var(--border-2);
  border-radius: var(--r-4);
  box-shadow: var(--shadow-lg);
  max-height: 360px; overflow-y: auto;
  display: none; z-index: var(--z-dropdown);
}

.search-results-dropdown.open { display: block; animation: fadeDown var(--ease-2) forwards; }

.search-result-item {
  display: flex; align-items: center; gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  cursor: pointer; transition: background var(--ease-1);
  border-bottom: 1px solid var(--border-1);
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--bg-2); }

.search-result-icon {
  width: 28px; height: 28px; border-radius: var(--r-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; flex-shrink: 0;
}

.search-result-name { font-size: 0.875rem; font-weight: 500; color: var(--text-1); }
.search-result-cat  { font-size: 0.75rem; color: var(--text-4); }

/* Header Nav */
.header-nav {
  display: flex; align-items: center; gap: var(--s-1);
  margin-left: auto;
}

@media (max-width: 900px) { .header-nav { display: none; } }

.nav-link {
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-2);
  font-size: 0.85rem; font-weight: 500;
  color: var(--text-3);
  transition: all var(--ease-1);
}
.nav-link:hover { background: var(--surface-2); color: var(--text-1); }
.nav-link.active { color: var(--brand-primary); background: var(--brand-primary-soft); }

/* Header Controls */
.header-controls {
  display: flex; align-items: center; gap: var(--s-2);
  flex-shrink: 0;
}

/* Font Size Controls */
.font-size-controls {
  display: inline-flex; align-items: center; gap: 2px;
  background: var(--bg-2); border: 1px solid var(--border-2);
  border-radius: var(--r-full); padding: 2px;
}

.font-btn {
  background: transparent; border: none;
  color: var(--text-3); font-family: var(--font-sans);
  font-size: 0.75rem; font-weight: 700;
  padding: 4px 8px; border-radius: var(--r-full);
  cursor: pointer; transition: all var(--ease-1);
  line-height: 1;
}

.font-btn:hover { background: var(--surface-2); color: var(--brand-primary-light); }
.font-btn.active { background: var(--brand-primary-soft); color: var(--brand-primary); }


/* ─── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--s-2); border: none; border-radius: var(--r-3);
  font-family: var(--font-sans); font-size: 0.875rem; font-weight: 500;
  cursor: pointer; transition: all var(--ease-2);
  text-decoration: none; white-space: nowrap;
  position: relative; overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

.btn-sm  { padding: var(--s-2) var(--s-3); font-size: 0.8rem; }
.btn-md  { padding: var(--s-2) var(--s-4); height: 38px; }
.btn-lg  { padding: var(--s-3) var(--s-6); height: 46px; font-size: 1rem; }
.btn-xl  { padding: var(--s-4) var(--s-8); height: 54px; font-size: 1.05rem; }
.btn-icon { width: 36px; height: 36px; padding: 0; border-radius: var(--r-2); }

.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
  color: #fff; box-shadow: 0 2px 12px rgba(20,184,166,0.3);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(20,184,166,0.4);
}
.btn-primary:active { transform: scale(0.97); }

.btn-secondary {
  background: var(--surface-2); color: var(--text-2);
  border: 1px solid var(--border-2);
}
.btn-secondary:hover { background: var(--surface-3); color: var(--text-1); }

.btn-ghost {
  background: transparent; color: var(--text-3);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover { background: var(--surface-2); color: var(--text-1); }

.btn-accent {
  background: linear-gradient(135deg, var(--brand-accent) 0%, #fbbf24 100%);
  color: var(--text-inv); box-shadow: 0 2px 12px rgba(245,158,11,0.3);
}
.btn-accent:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(245,158,11,0.4); }

/* ─── Category Badge ────────────────────────────────── */
.category-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: var(--r-full);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-general   { background: rgba(20,184,166,0.12);  color: #14b8a6; }
.badge-finance   { background: rgba(34,197,94,0.12);   color: #22c55e; }
.badge-business  { background: rgba(245,158,11,0.12);  color: #f59e0b; }
.badge-health    { background: rgba(239,68,68,0.12);   color: #ef4444; }
.badge-education { background: rgba(139,92,246,0.12);  color: #8b5cf6; }
.badge-time      { background: rgba(59,130,246,0.12);  color: #3b82f6; }
.badge-lifestyle { background: rgba(236,72,153,0.12);  color: #ec4899; }
.badge-converter { background: rgba(6,182,212,0.12);   color: #06b6d4; }
.badge-document  { background: rgba(249,115,22,0.12);  color: #f97316; }
.badge-text      { background: rgba(132,204,22,0.12);  color: #84cc16; }
.badge-seo       { background: rgba(168,85,247,0.12);  color: #a855f7; }
.badge-developer { background: rgba(99,102,241,0.12);  color: #6366f1; }
.badge-ai        { background: rgba(20,184,166,0.12);  color: #14b8a6; }

/* ─── Cards ─────────────────────────────────────────── */
.card {
  background: var(--surface-1);
  border: 1px solid var(--border-1);
  border-radius: var(--r-4);
  transition: all var(--ease-2);
}

.card:hover {
  border-color: var(--border-2);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-glass {
  background: var(--surface-glass);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--border-1);
  border-radius: var(--r-4);
}

/* Tool Card */
.tool-card {
  display: flex; align-items: center; gap: var(--s-3);
  padding: var(--s-4);
  background: var(--surface-1);
  border: 1px solid var(--border-1);
  border-radius: var(--r-3);
  transition: all var(--ease-2);
  cursor: pointer; text-decoration: none; color: var(--text-1);
}

.tool-card:hover {
  border-color: var(--border-2);
  background: var(--surface-2);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.tool-card-icon {
  width: 40px; height: 40px; border-radius: var(--r-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}

.tool-card-name {
  font-size: 0.875rem; font-weight: 500; color: var(--text-1);
  line-height: 1.3;
}

.tool-card-desc {
  font-size: 0.75rem; color: var(--text-4); margin-top: 2px;
  overflow: hidden; text-overflow: ellipsis;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical;
}

/* Category Card (homepage) */
.cat-card {
  display: flex; flex-direction: column;
  padding: var(--s-6);
  background: var(--surface-1);
  border: 1px solid var(--border-1);
  border-radius: var(--r-5);
  transition: all var(--ease-2);
  cursor: pointer; text-decoration: none; color: var(--text-1);
  position: relative; overflow: hidden;
}

.cat-card::before {
  content: ''; position: absolute; inset: 0;
  opacity: 0; transition: opacity var(--ease-2);
}

.cat-card:hover {
  border-color: var(--border-2);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.cat-card:hover::before { opacity: 1; }

.cat-card-icon {
  width: 52px; height: 52px; border-radius: var(--r-4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: var(--s-4); flex-shrink: 0;
}

.cat-card-title {
  font-size: 1rem; font-weight: 700; margin-bottom: var(--s-2);
  color: var(--text-1);
}

.cat-card-count {
  font-size: 0.8rem; color: var(--text-4); margin-bottom: var(--s-4);
}

.cat-card-tools {
  display: flex; flex-wrap: wrap; gap: var(--s-1);
}

.cat-card-tool-pill {
  font-size: 0.7rem; padding: 2px 8px;
  background: var(--bg-2); border-radius: var(--r-full);
  color: var(--text-4); border: 1px solid var(--border-1);
}

/* ─── Section Heading ───────────────────────────────── */
.section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--s-6);
  gap: var(--s-4);
}

.section-title {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: var(--text-1);
}

.section-subtitle {
  font-size: 0.95rem; color: var(--text-3);
  margin-top: var(--s-2); line-height: 1.6;
}

.section-link {
  font-size: 0.85rem; font-weight: 500;
  color: var(--brand-primary);
  display: flex; align-items: center; gap: var(--s-1);
  white-space: nowrap;
  transition: gap var(--ease-1);
}
.section-link:hover { gap: var(--s-2); }

/* ─── Grid Layouts ──────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--s-3); }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--s-3); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--s-3); }
.grid-auto-sm { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: var(--s-2); }

@media (max-width: 1100px) { .grid-6 { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 900px)  { .grid-5 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .grid-3, .grid-4, .grid-5, .grid-6 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .grid-2, .grid-3, .grid-4, .grid-5, .grid-6 { grid-template-columns: 1fr; } }

/* ─── Hero Banner ───────────────────────────────────── */
.hero-section {
  padding: var(--s-16) 0 var(--s-12);
  text-align: center;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: 4px 14px;
  background: var(--brand-primary-soft);
  border: 1px solid var(--brand-primary-border);
  border-radius: var(--r-full);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--brand-primary-light);
  margin-bottom: var(--s-5);
  animation: fadeUp 0.5s ease both;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; letter-spacing: -0.04em; line-height: 1.1;
  background: linear-gradient(135deg, var(--text-1) 0%, var(--text-3) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--s-4);
  animation: fadeUp 0.5s 0.05s ease both;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem); color: var(--text-3);
  max-width: 640px; margin: 0 auto var(--s-8);
  line-height: 1.7;
  animation: fadeUp 0.5s 0.1s ease both;
}

.hero-search {
  position: relative; max-width: 600px; margin: 0 auto var(--s-6);
  animation: fadeUp 0.5s 0.15s ease both;
}

.hero-search-input {
  width: 100%; height: 56px;
  background: var(--surface-1);
  border: 1px solid var(--border-2);
  border-radius: var(--r-full);
  padding: 0 130px 0 var(--s-12);
  font-size: 1rem; color: var(--text-1);
  transition: all var(--ease-2); outline: none;
  box-shadow: var(--shadow-md);
}

.hero-search-input:focus {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-md), 0 0 0 4px var(--brand-primary-soft);
}

.hero-search-input::placeholder { color: var(--text-4); }

.hero-search-icon {
  position: absolute; left: var(--s-5); top: 50%;
  transform: translateY(-50%); font-size: 1.1rem;
  color: var(--text-4); pointer-events: none;
}

.hero-search-btn {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  height: 44px; padding: 0 var(--s-5);
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
  color: #fff; border: none; border-radius: var(--r-full);
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  transition: all var(--ease-2); font-family: inherit;
}
.hero-search-btn:hover { box-shadow: 0 4px 16px rgba(20,184,166,0.4); }

.hero-stats {
  display: flex; justify-content: center; gap: var(--s-8);
  flex-wrap: wrap;
  animation: fadeUp 0.5s 0.2s ease both;
}

.hero-stat-value {
  font-size: 1.6rem; font-weight: 800; letter-spacing: -0.03em;
  color: var(--text-1);
}

.hero-stat-label {
  font-size: 0.8rem; color: var(--text-4); margin-top: 2px;
}

/* ─── Lang & Theme Controls ──────────────────────────── */
.theme-btn, .lang-btn {
  display: flex; align-items: center; gap: var(--s-1);
  height: 36px; padding: 0 var(--s-3);
  background: transparent; border: 1px solid var(--border-2);
  border-radius: var(--r-2); color: var(--text-3);
  font-size: 0.8rem; font-family: inherit;
  cursor: pointer; transition: all var(--ease-1);
}
.theme-btn:hover, .lang-btn:hover {
  background: var(--surface-2); color: var(--text-1);
}

/* ─── Language Dropdown ─────────────────────────────── */
.lang-wrapper { position: relative; }

.lang-panel {
  position: absolute; top: calc(100% + 8px); right: 0;
  width: 200px; background: var(--surface-1);
  border: 1px solid var(--border-2);
  border-radius: var(--r-4); box-shadow: var(--shadow-lg);
  padding: var(--s-1); display: none; z-index: var(--z-dropdown);
  max-height: 320px; overflow-y: auto;
}

[dir="rtl"] .lang-panel { right: auto; left: 0; }
.lang-panel.open { display: block; animation: fadeDown var(--ease-2) forwards; }

.lang-opt {
  display: flex; align-items: center; gap: var(--s-2);
  padding: var(--s-2) var(--s-3); border-radius: var(--r-2);
  font-size: 0.85rem; color: var(--text-3); cursor: pointer;
  transition: all var(--ease-1);
}
.lang-opt:hover { background: var(--bg-2); color: var(--text-1); }
.lang-opt.active { background: var(--brand-primary-soft); color: var(--brand-primary); font-weight: 500; }

/* ─── Footer ─────────────────────────────────────────── */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border-1);
  margin-top: var(--s-20);
  padding: var(--s-16) 0 var(--s-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--s-8);
  margin-bottom: var(--s-12);
}

@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px)  { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand-desc {
  font-size: 0.875rem; color: var(--text-4); line-height: 1.7;
  margin-top: var(--s-3); max-width: 280px;
}

.footer-col-title {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-3);
  margin-bottom: var(--s-4);
}

.footer-links { display: flex; flex-direction: column; gap: var(--s-2); }

.footer-link {
  font-size: 0.875rem; color: var(--text-4);
  transition: color var(--ease-1);
}
.footer-link:hover { color: var(--brand-primary); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: var(--s-6); border-top: 1px solid var(--border-1);
  flex-wrap: wrap; gap: var(--s-4);
}

.footer-copy { font-size: 0.8rem; color: var(--text-5); }

/* ─── Breadcrumb ─────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: var(--s-2); flex-wrap: wrap;
  padding: var(--s-4) 0;
}

.breadcrumb-item {
  font-size: 0.8rem; color: var(--text-4);
  display: flex; align-items: center; gap: var(--s-2);
}

.breadcrumb-item a { color: var(--text-3); transition: color var(--ease-1); }
.breadcrumb-item a:hover { color: var(--brand-primary); }
.breadcrumb-item:last-child { color: var(--text-2); }
.breadcrumb-sep { color: var(--text-5); font-size: 0.7rem; }

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

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(20,184,166,0.15); }
  50%       { box-shadow: 0 0 40px rgba(20,184,166,0.3); }
}

/* ─── Toast ──────────────────────────────────────────── */
.toast-container {
  position: fixed; bottom: var(--s-6); left: 50%;
  transform: translateX(-50%); z-index: var(--z-toast);
  display: flex; flex-direction: column-reverse; gap: var(--s-2);
  pointer-events: none;
}

.toast {
  display: flex; align-items: center; gap: var(--s-3);
  padding: var(--s-3) var(--s-5);
  background: var(--surface-1); border: 1px solid var(--border-2);
  border-radius: var(--r-3); box-shadow: var(--shadow-lg);
  font-size: 0.875rem; color: var(--text-1); font-weight: 500;
  pointer-events: all; white-space: nowrap;
  animation: toastIn 0.3s var(--ease-spring) forwards;
}

.toast.removing { animation: toastOut 0.2s ease forwards; }
.toast-icon { font-size: 1rem; }

@keyframes toastIn  { from { opacity: 0; transform: translateY(20px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes toastOut { from { opacity: 1; transform: scale(1); } to { opacity: 0; transform: scale(0.9); } }

/* ─── Ad Slots ───────────────────────────────────────── */
.ad-slot {
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-2); border: 1px dashed var(--border-2);
  border-radius: var(--r-3); color: var(--text-5);
  font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase;
  min-height: 90px; overflow: hidden;
}

.ad-slot-banner  { min-height: 90px; }
.ad-slot-square  { min-height: 250px; }
.ad-slot-sidebar { min-height: 600px; }

/* ─── Utility ─────────────────────────────────────────── */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: var(--s-1); } .gap-2 { gap: var(--s-2); }
.gap-3 { gap: var(--s-3); } .gap-4 { gap: var(--s-4); }
.mt-4 { margin-top: var(--s-4); } .mt-6 { margin-top: var(--s-6); }
.mt-8 { margin-top: var(--s-8); } .mt-12 { margin-top: var(--s-12); }
.mb-4 { margin-bottom: var(--s-4); } .mb-6 { margin-bottom: var(--s-6); }
.hidden { display: none !important; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ─── Scrollbar ──────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-4); }

/* ─── User Auth & Account Dropdown ───────────────────── */
.user-auth-wrapper {
  position: relative;
  display: inline-block;
}

.user-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface-1); border: 1px solid var(--border-2);
  color: var(--text-2); padding: 5px 12px;
  border-radius: var(--r-full); font-size: 0.8rem; font-weight: 600;
  cursor: pointer; transition: all var(--ease-1); font-family: inherit;
}

.user-btn:hover {
  background: var(--surface-2); color: var(--text-1);
  border-color: var(--brand-primary-border);
}

.user-btn.logged-in {
  background: var(--brand-primary-soft);
  border-color: var(--brand-primary-border);
  color: var(--brand-primary-light);
}

.user-avatar { font-size: 0.9rem; }
.badge-pro {
  font-size: 0.65rem; background: var(--brand-accent-soft);
  color: var(--brand-accent); padding: 2px 6px; border-radius: var(--r-full);
  font-weight: 700; border: 1px solid rgba(245,158,11,0.2);
}

.user-dropdown-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  width: 260px; background: var(--surface-1);
  border: 1px solid var(--border-2); border-radius: var(--r-4);
  box-shadow: var(--shadow-lg); padding: var(--s-3);
  display: none; z-index: var(--z-dropdown);
  animation: fadeDown var(--ease-2) forwards;
}

.user-dropdown-menu.open { display: block; }

.user-info-header { padding: var(--s-2) var(--s-3); }
.user-info-name { font-size: 0.9rem; font-weight: 700; color: var(--text-1); }
.user-info-email { font-size: 0.75rem; color: var(--text-4); margin-bottom: 6px; }
.user-status-badge {
  display: inline-block; font-size: 0.68rem; font-weight: 600;
  color: var(--brand-primary-light); background: var(--brand-primary-soft);
  padding: 3px 8px; border-radius: var(--r-full); border: 1px solid var(--brand-primary-border);
}

.dropdown-divider { border: 0; border-top: 1px solid var(--border-1); margin: 8px 0; }

.dropdown-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; color: var(--text-2); font-size: 0.825rem;
  font-weight: 500; text-decoration: none; border-radius: var(--r-2);
  transition: all var(--ease-1); background: transparent; border: none;
  width: 100%; text-align: left; cursor: pointer;
}

.dropdown-item:hover { background: var(--surface-2); color: var(--text-1); }
.dropdown-item.btn-logout { color: var(--brand-danger); }
.dropdown-item.btn-logout:hover { background: var(--brand-danger-soft); }

/* ─── Auth Modal ──────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(9, 9, 11, 0.75);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; padding: var(--s-4);
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}

.modal-overlay.open { opacity: 1; pointer-events: all; }

.auth-modal-card {
  width: 100%; max-width: 480px; background: var(--surface-1);
  border: 1px solid var(--border-2); border-radius: var(--r-5);
  box-shadow: var(--shadow-xl); padding: var(--s-8);
  position: relative; transform: scale(0.95); transition: transform 0.3s ease;
}

.modal-overlay.open .auth-modal-card { transform: scale(1); }

.modal-close-btn {
  position: absolute; top: 16px; right: 16px;
  background: transparent; border: none; color: var(--text-4);
  font-size: 1.25rem; cursor: pointer; padding: 4px 8px; border-radius: var(--r-2);
}
.modal-close-btn:hover { color: var(--text-1); background: var(--surface-2); }

.auth-benefits-list {
  background: var(--bg-2); border: 1px solid var(--border-1);
  border-radius: var(--r-3); padding: var(--s-4); margin: var(--s-4) 0;
  display: flex; flex-direction: column; gap: 8px;
}

.auth-benefit-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.825rem; color: var(--text-2);
}
.auth-benefit-icon { font-size: 1rem; flex-shrink: 0; }

.btn-demo-login {
  width: 100%; margin-top: var(--s-3); padding: 10px;
  background: var(--surface-2); color: var(--text-3); font-weight: 600;
  border-radius: var(--r-3); border: 1px solid var(--border-2);
  cursor: pointer; font-size: 0.8rem; transition: all var(--ease-2);
}
.btn-demo-login:hover { color: var(--text-1); background: var(--bg-2); }

/* ─── Permanent Auth Tabs & Forms ─────────────────────── */
.auth-tabs {
  display: flex; gap: 4px; background: var(--bg-2);
  border: 1px solid var(--border-2); border-radius: var(--r-3);
  padding: 4px; margin-bottom: var(--s-4);
}

.auth-tab-btn {
  flex: 1; padding: 8px 12px; background: transparent;
  border: none; color: var(--text-3); font-size: 0.85rem;
  font-weight: 600; border-radius: var(--r-2); cursor: pointer;
  transition: all var(--ease-1); font-family: inherit;
}

.auth-tab-btn.active {
  background: var(--surface-1); color: var(--brand-primary-light);
  box-shadow: var(--shadow-xs);
}

.auth-form { display: flex; flex-direction: column; gap: var(--s-3); }

.auth-field { display: flex; flex-direction: column; gap: 4px; }
.auth-label { font-size: 0.8rem; font-weight: 600; color: var(--text-2); text-align: left; }
.auth-input {
  width: 100%; height: 42px; background: var(--bg-2);
  border: 1px solid var(--border-2); border-radius: var(--r-3);
  padding: 0 var(--s-3); font-size: 0.875rem; color: var(--text-1);
  outline: none; transition: all var(--ease-1); font-family: inherit;
}
.auth-input:focus { border-color: var(--brand-primary); box-shadow: 0 0 0 3px var(--brand-primary-soft); }

.auth-submit-btn {
  width: 100%; height: 44px; margin-top: var(--s-2);
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
  color: #fff; border: none; border-radius: var(--r-3);
  font-size: 0.9rem; font-weight: 700; cursor: pointer;
  box-shadow: 0 4px 16px rgba(20,184,166,0.3); transition: all var(--ease-2);
  font-family: inherit;
}
.auth-submit-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(20,184,166,0.4); }

.auth-error-banner {
  background: var(--brand-danger-soft); border: 1px solid rgba(239,68,68,0.2);
  color: #ef4444; font-size: 0.8rem; padding: 8px 12px; border-radius: var(--r-2);
  display: none; text-align: center; margin-bottom: 8px;
}

/* ─── Export Action Buttons Styling ─────────────────── */
.result-export-actions, .export-buttons-container {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  justify-content: center !important;
  align-items: center !important;
  margin-top: 16px !important;
  padding-top: 16px !important;
  border-top: 1px dashed var(--border-2, rgba(255,255,255,0.15)) !important;
}

.export-btn-word {
  background: rgba(37, 99, 235, 0.15) !important;
  color: #60a5fa !important;
  border: 1px solid rgba(59, 130, 246, 0.4) !important;
  padding: 8px 16px !important;
  border-radius: var(--r-3, 8px) !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: all 0.2s ease !important;
  font-family: inherit !important;
}
.export-btn-word:hover {
  background: rgba(37, 99, 235, 0.3) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25) !important;
}

.export-btn-excel {
  background: rgba(16, 185, 129, 0.15) !important;
  color: #34d399 !important;
  border: 1px solid rgba(16, 185, 129, 0.4) !important;
  padding: 8px 16px !important;
  border-radius: var(--r-3, 8px) !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: all 0.2s ease !important;
  font-family: inherit !important;
}
.export-btn-excel:hover {
  background: rgba(16, 185, 129, 0.3) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25) !important;
}

.export-btn-pdf {
  background: rgba(239, 68, 68, 0.15) !important;
  color: #f87171 !important;
  border: 1px solid rgba(239, 68, 68, 0.4) !important;
  padding: 8px 16px !important;
  border-radius: var(--r-3, 8px) !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  transition: all 0.2s ease !important;
  font-family: inherit !important;
}
.export-btn-pdf:hover {
  background: rgba(239, 68, 68, 0.3) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25) !important;
}



/* ─── Responsive Header ─────────────────────────────── */
@media (max-width: 768px) {
  .global-search { display: none; }
  .header-inner { gap: var(--s-3); }
  .logo-text { display: none; }
}

/* ─── Print ──────────────────────────────────────────── */
@media print {
  .platform-header, .page-bg, .site-footer, .ad-slot { display: none; }
}

/* ─── Reduced Motion ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════════════════════
   UVP & PRIVACY-FIRST STYLES
═══════════════════════════════════════════════════════ */
.uvp-platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.25);
  color: var(--brand-primary-light, #2dd4bf);
  padding: 6px 14px;
  border-radius: var(--r-full, 9999px);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 8px 0;
  box-shadow: 0 2px 8px rgba(20, 184, 166, 0.08);
  transition: all 0.2s ease;
}
.uvp-platform-badge:hover {
  background: rgba(20, 184, 166, 0.15);
  border-color: rgba(20, 184, 166, 0.45);
  transform: translateY(-1px);
}
.uvp-badge-icon {
  font-size: 0.95rem;
}

.zero-latency-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--text-4, #94a3b8);
  background: var(--bg-2, #18181b);
  border: 1px solid var(--border-1, rgba(255,255,255,0.08));
  padding: 2px 8px;
  border-radius: var(--r-full, 9999px);
  font-family: var(--font-mono, monospace);
}

/* ═══════════════════════════════════════════════════════
   CLEAN AD ARCHITECTURE (AdSense & Better Ads Compliant)
═══════════════════════════════════════════════════════ */
.sticky-bottom-ad {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--surface-1, #18181b);
  border-top: 1px solid var(--border-2, rgba(255,255,255,0.12));
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  padding: 8px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.sticky-bottom-ad.dismissed {
  transform: translateY(120%);
  pointer-events: none;
}
.sticky-ad-close {
  position: absolute;
  top: 4px;
  right: 12px;
  background: transparent;
  border: none;
  color: var(--text-4, #71717a);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 8px;
}
.sticky-ad-close:hover {
  color: var(--text-1, #ffffff);
}
.ad-native-card {
  background: var(--surface-1, #18181b);
  border: 1px solid var(--border-1, rgba(255,255,255,0.08));
  border-radius: var(--r-4, 12px);
  padding: 16px;
  margin: 16px 0;
}

/* ═══════════════════════════════════════════════════════
   EMBED MODE & IFRAME ATTRIBUTION
═══════════════════════════════════════════════════════ */
body.embed-mode #platform-header,
body.embed-mode #platform-footer,
body.embed-mode .ad-slot,
body.embed-mode .sticky-bottom-ad {
  display: none !important;
}
body.embed-mode {
  background: transparent !important;
}
body.embed-mode .tool-page-container,
body.embed-mode .container {
  padding: 12px !important;
  max-width: 100% !important;
}
.embed-attribution {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  background: var(--bg-2, #18181b);
  border-top: 1px solid var(--border-1, rgba(255,255,255,0.08));
  border-radius: 0 0 var(--r-4, 12px) var(--r-4, 12px);
  font-size: 0.75rem;
  color: var(--text-3, #a1a1aa);
}
.embed-attribution a {
  color: var(--brand-primary-light, #2dd4bf);
  font-weight: 700;
  text-decoration: none;
}
.embed-attribution a:hover {
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════
   SMART BOOKMARK & RETENTION PROMPT
═══════════════════════════════════════════════════════ */
.bookmark-retention-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  max-width: 380px;
  background: var(--surface-1, #18181b);
  border: 1px solid var(--brand-primary-border, rgba(20,184,166,0.3));
  border-radius: var(--r-4, 12px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 0 15px rgba(20,184,166,0.15);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  animation: slideUpFade 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.bookmark-btn-close {
  background: transparent;
  border: none;
  color: var(--text-4, #71717a);
  font-size: 0.9rem;
  cursor: pointer;
  margin-left: auto;
}
.bookmark-btn-close:hover { color: var(--text-1); }

/* ═══════════════════════════════════════════════════════
   POLITE ADBLOCK DETECTOR & AFFILIATE CARD
═══════════════════════════════════════════════════════ */
.adblock-friendly-notice {
  background: rgba(20, 184, 166, 0.05);
  border: 1px dashed rgba(20, 184, 166, 0.3);
  border-radius: var(--r-4, 12px);
  padding: 16px 20px;
  margin: 16px 0;
  text-align: center;
}
.adblock-friendly-notice p {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: var(--text-3);
}
.affiliate-deals-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.affiliate-deal-card {
  background: var(--bg-2, #121214);
  border: 1px solid var(--border-1);
  border-radius: var(--r-3, 8px);
  padding: 12px 14px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.2s;
  text-align: left;
}
.affiliate-deal-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-2px);
}
.affiliate-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-primary-light);
  letter-spacing: 0.05em;
}
.affiliate-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-1);
}
.affiliate-desc {
  font-size: 0.75rem;
  color: var(--text-4);
  line-height: 1.4;
}
