/* ================================================
   PixDok Tool Landing Page Engine — Shared Styles
   Used by ALL tool landing pages
   ================================================ */

/* ===== FONTS & RESET ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #e11d48;
  --primary-hover: #be123c;
  --primary-light: rgba(225, 29, 72, 0.08);
  --secondary: #e11d48;
  --success: #10b981;
  --success-light: #dcfce7;
  --success-dark: #15803d;
  --border: #e2e8f0;
  --text: #475569;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --bg: #ffffff;
  --bg-subtle: #f8fafc;
  --tool-primary: #e11d48; /* default brand logo red */
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  color: var(--text);
  font-family: var(--font-body);
}

/* ===== NAVBAR ===== */
.tl-navbar {
  height: 68px;
  border-bottom: 1px solid var(--border);
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 2.5rem !important;
  background: rgba(255,255,255,0.98) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 100000 !important;
  backdrop-filter: blur(10px) !important;
  box-sizing: border-box !important;
  width: 100% !important;
}
.tl-brand {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex: 1 1 0% !important;
  min-width: 0 !important;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-dark);
}
.tl-brand i { color: var(--tool-primary); font-size: 1.6rem; }
.tl-brand span {
  background: linear-gradient(135deg, var(--tool-primary), #0f172a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tl-brand img {
  height: 36px !important;
  width: auto !important;
  display: block !important;
  object-fit: contain !important;
}
.tl-nav-links {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  margin: 0 auto !important;
  gap: 1.5rem !important;
  list-style: none !important;
  padding: 0 !important;
  height: 68px !important;
  position: static !important;
}
.tl-nav-links > li {
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
  position: relative !important;
  margin: 0 !important;
}
.tl-nav-links > li.tl-megamenu-parent {
  position: static !important;
}
.tl-nav-links > li > a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  height: 100% !important;
  padding: 0 0.5rem !important;
  font-weight: 600 !important;
  font-size: 0.92rem !important;
  color: var(--text) !important;
  text-decoration: none !important;
  transition: color 0.15s ease !important;
  cursor: pointer !important;
}
.tl-nav-links > li > a:hover,
.tl-nav-links > li > a.active {
  color: var(--tool-primary) !important;
}
.tl-nav-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex: 1 1 0% !important;
  min-width: 0 !important;
  gap: 1rem !important;
  margin: 0 !important;
}
#pdNavActions,
#tlNavActions {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
}
.tl-btn-login {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.9rem;
}
.tl-btn-signup {
  text-decoration: none;
  background: var(--tool-primary);
  color: white !important;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.tl-btn-signup:hover { filter: brightness(0.9); }
.tl-mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* ===== BREADCRUMB ===== */
.tl-breadcrumb {
  padding: 1.25rem 4rem 0 4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #94a3b8;
}
.tl-breadcrumb span { margin: 0 0.4rem; }
.tl-breadcrumb a { color: #94a3b8; text-decoration: none; }
.tl-breadcrumb a:hover { color: var(--text-dark); }

/* ===== HERO SECTION ===== */
.tl-hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  padding: 2.5rem 4rem 3rem 4rem;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}
.tl-action-card-wrapper {
  margin-top: 0.75rem;
  margin-bottom: 1rem;
  width: 100%;
}
.tl-demo-slider-box {
  min-height: 0 !important;
  height: 210px !important;
}
.tl-badge-free {
  background: var(--success-light);
  color: var(--success-dark);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}
.tl-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}
.tl-h1 span { color: var(--tool-primary); }
.tl-hero-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.tl-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.tl-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}
.tl-checklist li i { color: var(--success); font-size: 1.1rem; }
.tl-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
  background: rgba(241,245,249,0.5);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.tl-hero-pill {
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* ===== UPLOAD CARD ===== */
.tl-upload-card {
  background: #ffffff;
  border: 2px dashed #93c5fd;
  border-radius: 20px;
  padding: 1.75rem 1.75rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(27, 110, 252, 0.06);
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}
.tl-upload-card:hover {
  border-color: var(--tool-primary);
  box-shadow: 0 20px 40px rgba(27, 110, 252, 0.12);
  transform: translateY(-2px);
}
.tl-upload-card.drag-over {
  border-color: var(--tool-primary);
  background: rgba(27,110,252,0.04);
}
.tl-upload-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #1b6efc);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem auto;
  color: white; font-size: 1.8rem;
  box-shadow: 0 8px 16px rgba(27,110,252,0.2);
}
.tl-upload-card h3 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.2rem;
  color: var(--text-dark); margin-bottom: 0.5rem;
}
.tl-upload-card p { font-size: 0.85rem; color: #94a3b8; margin-bottom: 1.5rem; }
.tl-btn-choose {
  display: inline-block;
  background: var(--tool-primary); color: white;
  padding: 0.75rem 2rem; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer;
  transition: all 0.2s; margin-bottom: 0.5rem;
}
.tl-btn-choose:hover { filter: brightness(0.9); transform: translateY(-1px); }
.tl-upload-privacy {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; font-size: 0.72rem; color: #94a3b8;
  margin-top: 1.25rem; border-top: 1px solid var(--border); padding-top: 1rem;
}
.tl-trust-badges {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: center; margin-top: 1rem;
}
.tl-trust-badge {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.7rem; font-weight: 700; color: var(--text-muted);
  background: #f8fafc; border: 1px solid var(--border);
  padding: 0.25rem 0.6rem; border-radius: 6px;
}
.tl-trust-badge i { color: var(--success); }
.tl-formats-row {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; margin-top: 0.75rem;
  font-size: 0.72rem; font-weight: 700; color: var(--text-muted);
}
.tl-format-chip {
  background: #eff6ff; color: #1d4ed8;
  padding: 0.2rem 0.6rem; border-radius: 4px;
  font-weight: 700; font-size: 0.7rem;
}

/* ===== KPI BAR ===== */
.tl-kpi-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; max-width: 1300px;
  margin: 0 auto; padding: 0 4rem 4rem 4rem;
}
.tl-kpi-item {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--bg-subtle); padding: 1rem 1.25rem;
  border-radius: 12px; border: 1px solid var(--border);
}
.tl-kpi-item i { font-size: 1.3rem; }
.tl-kpi-item span { font-weight: 700; font-size: 0.85rem; color: var(--text-dark); }

/* ===== FEATURE CARDS SECTION ===== */
.tl-features-section {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4.5rem 4rem;
}
.tl-section-header {
  text-align: center; margin-bottom: 3rem;
  max-width: 1300px; margin: 0 auto 3rem auto;
}
.tl-section-header h2 {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.8rem;
  color: var(--text-dark); margin-bottom: 0.75rem;
}
.tl-section-header p { font-size: 1rem; color: var(--text); max-width: 550px; margin: 0 auto; }
.tl-features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem; max-width: 1300px; margin: 0 auto;
}
.tl-feature-card {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: 16px; padding: 1.5rem; transition: all 0.25s;
}
.tl-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
  border-color: var(--tool-primary);
}
.tl-feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: white; margin-bottom: 1rem;
}
.tl-feature-card h3 {
  font-weight: 800; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 0.5rem;
}
.tl-feature-card p { font-size: 0.8rem; line-height: 1.5; color: var(--text); }

/* ===== HOW IT WORKS ===== */
.tl-how-section {
  padding: 5rem 4rem;
  max-width: 1300px; margin: 0 auto; width: 100%;
}
.tl-how-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; position: relative;
}
.tl-how-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%;
  width: 80%; height: 2px;
  background: linear-gradient(90deg, var(--tool-primary), #7c3aed);
  opacity: 0.15;
  z-index: 0;
}
.tl-how-step {
  text-align: center; position: relative; z-index: 1;
}
.tl-step-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--tool-primary), #7c3aed);
  color: white; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem auto;
  box-shadow: 0 8px 20px rgba(27,110,252,0.2);
}
.tl-how-step h4 {
  font-weight: 800; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 0.5rem;
}
.tl-how-step p { font-size: 0.8rem; line-height: 1.5; color: var(--text); }

/* ===== WORKSPACE PREVIEW ===== */
.tl-preview-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 5rem 4rem;
}
.tl-preview-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 4rem; align-items: center;
}
.tl-preview-left h2 {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.8rem; color: white; margin-bottom: 1rem;
}
.tl-preview-left p { color: #94a3b8; font-size: 0.95rem; line-height: 1.6; margin-bottom: 2rem; }
.tl-preview-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.tl-preview-features li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.85rem; font-weight: 600; color: #e2e8f0;
}
.tl-preview-features li i { color: var(--success); }
.tl-preview-mockup {
  border-radius: 16px; overflow: hidden;
  border: 1px solid #334155;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.tl-mockup-bar {
  background: #1e293b; border-bottom: 1px solid #334155;
  padding: 0.6rem 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.tl-dot { width: 10px; height: 10px; border-radius: 50%; }
.tl-dot.red { background: #ef4444; }
.tl-dot.yellow { background: #f59e0b; }
.tl-dot.green { background: #10b981; }
.tl-mockup-body {
  background: #f1f5f9; padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  min-height: 280px;
}
.tl-mockup-sidebar {
  width: 90px; background: white; border-radius: 10px;
  padding: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem;
  border: 1px solid var(--border);
}
.tl-mockup-tool {
  padding: 0.4rem 0.5rem; border-radius: 6px;
  font-size: 0.6rem; font-weight: 700; color: var(--text);
  display: flex; align-items: center; gap: 0.3rem;
}
.tl-mockup-tool.active { background: var(--primary-light); color: var(--tool-primary); }
.tl-mockup-canvas {
  flex: 1; background: white; border-radius: 10px;
  border: 1px solid var(--border);
  min-height: 240px; display: flex; align-items: center;
  justify-content: center; flex-direction: column; gap: 0.75rem;
  position: relative; overflow: hidden;
}
.tl-mockup-canvas-icon {
  font-size: 2.5rem; opacity: 0.1; color: var(--tool-primary);
}
.tl-mockup-canvas-text {
  font-size: 0.75rem; font-weight: 700; color: #94a3b8;
}
.tl-mockup-accent {
  position: absolute; top: 20px; right: 20px;
  background: var(--tool-primary); color: white;
  font-size: 0.6rem; font-weight: 700;
  padding: 0.25rem 0.6rem; border-radius: 6px;
}

/* ===== BENEFITS SECTION ===== */
.tl-benefits-section {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 4rem;
}
.tl-benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3rem; max-width: 1300px; margin: 0 auto;
}
.tl-benefit-col h3 {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.2rem;
  color: var(--text-dark); margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.tl-benefit-col h3 i { color: var(--tool-primary); }
.tl-benefit-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.tl-benefit-col li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 500; color: var(--text);
}
.tl-benefit-col li i { color: var(--success); font-size: 0.9rem; }

/* ===== DEVICE COMPATIBILITY ===== */
.tl-devices-section {
  padding: 5rem 4rem; max-width: 1300px; margin: 0 auto; width: 100%;
}
.tl-devices-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem; margin-top: 2.5rem;
}
.tl-device-card {
  background: var(--bg-subtle); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem 1rem; text-align: center; transition: all 0.2s;
}
.tl-device-card:hover {
  border-color: var(--tool-primary);
  transform: translateY(-2px);
}
.tl-device-card i { font-size: 2rem; color: var(--text-dark); margin-bottom: 0.75rem; display: block; }
.tl-device-card h4 { font-weight: 800; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 0.25rem; }
.tl-device-card p { font-size: 0.75rem; color: var(--text); }

/* ===== PRIVACY RIBBON ===== */
.tl-privacy-ribbon {
  background: #eff6ff;
  border-top: 1px solid #bfdbfe;
  border-bottom: 1px solid #bfdbfe;
  padding: 3rem 4rem;
}
.tl-privacy-grid {
  display: grid; grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 2rem; max-width: 1300px; margin: 0 auto; align-items: center;
}
.tl-privacy-left { display: flex; gap: 1rem; align-items: start; }
.tl-privacy-left i { font-size: 2.2rem; color: var(--tool-primary); }
.tl-privacy-left h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.15rem; color: var(--text-dark); margin-bottom: 0.25rem;
}
.tl-privacy-left p { font-size: 0.75rem; line-height: 1.4; color: var(--text); }
.tl-privacy-stat { text-align: center; }
.tl-privacy-stat h4 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.3rem; color: var(--tool-primary); margin-bottom: 0.25rem;
}
.tl-privacy-stat p { font-size: 0.75rem; font-weight: 700; color: var(--text-dark); }

/* ===== COMPARISON TABLE ===== */
.tl-comparison-section {
  background: #0f172a;
  padding: 5rem 4rem;
}
.tl-comparison-inner { max-width: 900px; margin: 0 auto; }
.tl-comparison-inner .tl-section-header h2 { color: white; }
.tl-comparison-inner .tl-section-header p { color: #94a3b8; }
.tl-comparison-table {
  width: 100%; border-collapse: collapse; margin-top: 2.5rem;
  background: #1e293b; border-radius: 16px; overflow: hidden;
  border: 1px solid #334155;
}
.tl-comparison-table th {
  padding: 1rem 1.5rem; font-size: 0.85rem; font-weight: 800;
  color: #e2e8f0; text-align: center;
  background: #0f172a; border-bottom: 1px solid #334155;
}
.tl-comparison-table th:first-child { text-align: left; }
.tl-comparison-table th.highlight-col { color: var(--tool-primary); }
.tl-comparison-table td {
  padding: 1rem 1.5rem; font-size: 0.85rem; font-weight: 600;
  color: #94a3b8; text-align: center;
  border-bottom: 1px solid #1e3a5f;
}
.tl-comparison-table td:first-child { text-align: left; color: #e2e8f0; }
.tl-comparison-table tr:last-child td { border-bottom: none; }
.tl-comparison-table tr:hover td { background: rgba(255,255,255,0.03); }
.tl-check-yes { color: #10b981; font-size: 1.1rem; }
.tl-check-no { color: #ef4444; font-size: 1.1rem; }

/* ===== SEO CONTENT SECTION ===== */
.tl-seo-section {
  padding: 5rem 4rem;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
}
.tl-seo-inner {
  max-width: 960px; margin: 0 auto;
}
.tl-seo-inner h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.8rem; color: var(--text-dark); margin-bottom: 2.5rem; text-align: center;
}
.tl-seo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

/* Card shell */
.tl-seo-block {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 1.75rem 1.75rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.tl-seo-block:hover {
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.10);
  transform: translateY(-2px);
}

/* Accent bar on the left edge */
.tl-seo-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--tool-primary, #0284c7);
  border-radius: 18px 0 0 18px;
  opacity: 0.7;
}

/* Icon + heading row */
.tl-seo-block h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1rem; color: var(--text-dark);
  display: flex; align-items: center; gap: 0.75rem;
  margin: 0;
}

/* Icon bubble */
.tl-seo-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: color-mix(in srgb, var(--tool-primary, #0284c7) 12%, white);
  color: var(--tool-primary, #0284c7);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
}
.tl-seo-block h3 i { color: inherit; }

/* Body text */
.tl-seo-block p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: #475569;
  margin: 0;
  padding-left: 0;
}


/* ===== FAQ SECTION ===== */
.tl-faq-section {
  padding: 5rem 4rem;
  max-width: 1300px; margin: 0 auto; width: 100%;
}
.tl-faq-header {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 2.5rem;
}
.tl-faq-header h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.8rem; color: var(--text-dark);
}
.tl-faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.tl-faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.tl-faq-item {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; height: fit-content;
}
.tl-faq-q {
  padding: 1.25rem; display: flex;
  justify-content: space-between; align-items: center;
  font-weight: 700; font-size: 0.85rem;
  color: var(--text-dark); cursor: pointer; gap: 0.75rem;
  transition: background 0.2s;
  user-select: none;
}
.tl-faq-q:hover { background: var(--bg-subtle); }
.tl-faq-q i { transition: transform 0.3s; flex-shrink: 0; color: var(--tool-primary); }
.tl-faq-item.open .tl-faq-q i,
.tl-faq-item.active .tl-faq-q i { transform: rotate(180deg); }
.tl-faq-a {
  padding: 0 1.25rem 1.25rem 1.25rem;
  font-size: 0.8rem; line-height: 1.6; color: var(--text); display: none;
}
.tl-faq-item.open .tl-faq-a,
.tl-faq-item.active .tl-faq-a { display: block; }

/* ===== RELATED TOOLS ===== */
.tl-related-section {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4.5rem 4rem;
}
.tl-related-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 1rem; max-width: 1300px; margin: 2rem auto 0 auto;
}
.tl-related-card {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: 12px; padding: 1.25rem 1rem;
  text-align: center; cursor: pointer; transition: all 0.2s;
  text-decoration: none; display: block;
}
.tl-related-card:hover {
  border-color: var(--tool-primary); transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
}
.tl-related-card i {
  font-size: 1.4rem; margin-bottom: 0.75rem; display: block;
}
.tl-related-card h4 {
  font-size: 0.8rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 0.2rem;
}
.tl-related-card p { font-size: 0.65rem; color: var(--text); }

/* ===== BLOG SECTION ===== */
.tl-blog-section { padding: 5rem 4rem; max-width: 1300px; margin: 0 auto; width: 100%; }
.tl-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.tl-blog-card {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: all 0.2s; cursor: pointer;
}
.tl-blog-card:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(0,0,0,0.06); border-color: var(--tool-primary); }
.tl-blog-thumb {
  height: 160px; display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; position: relative; overflow: hidden;
}
.tl-blog-body { padding: 1.25rem; }
.tl-blog-tag {
  display: inline-block; padding: 0.2rem 0.6rem; border-radius: 4px;
  font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 0.5rem; background: var(--primary-light); color: var(--tool-primary);
}
.tl-blog-card h4 {
  font-size: 0.9rem; font-weight: 700; color: var(--text-dark);
  margin-bottom: 0.5rem; line-height: 1.35;
}
.tl-blog-card p { font-size: 0.78rem; color: var(--text); line-height: 1.5; margin-bottom: 0.75rem; }
.tl-blog-meta { font-size: 0.7rem; color: #94a3b8; font-weight: 600; }

/* ===== FOOTER ===== */
/* ===== MAIN FOOTER (DARK THEME) ===== */
.footer {
  background-color: #0B1121;
  padding: 4rem 1.5rem 2rem 1.5rem;
  border-top: none;
  margin-top: 4rem;
  font-family: 'Outfit', sans-serif;
  color: #94A3B8;
  text-align: left;
}
.footer * {
  box-sizing: border-box;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 3rem 1.5rem 2rem 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-brand {
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
}
.footer-brand h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #FFFFFF;
}
.footer-logo-text {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 2.35rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
  line-height: 1;
}
.footer-logo-text .logo-pix {
  color: #FFFFFF;
  font-weight: 800;
}
.footer-logo-text .logo-colon {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  height: 22px;
  margin: 0 4px 0 3px;
}
.footer-logo-text .logo-colon span {
  width: 7.5px;
  height: 7.5px;
  background-color: #ff3b30;
  border-radius: 1px;
}
.footer-logo-text .logo-d-curved {
  display: inline-flex;
  width: 17px;
  height: 22px;
  border: 4.5px solid #ff3b30;
  border-left: none;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  margin-right: 1px;
}
.footer-logo-text .logo-ok {
  color: #ff3b30;
  font-weight: 700;
}
.footer-brand p {
  color: #94A3B8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  max-width: 300px;
}
@media (max-width: 768px) {
  .footer-brand p {
    margin: 0 auto 1.5rem auto;
  }
}
.footer-col h4 {
  font-size: 0.85rem;
  color: #FFFFFF;
  font-weight: 700;
  margin: 0 0 1.25rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.footer-col a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.footer-col a:hover {
  color: #FFFFFF;
}
.footer-bottom {
  max-width: 1200px;
  margin: 4rem auto 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #1E293B;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #94A3B8;
  font-size: 0.9rem;
}
.footer-security {
  display: flex;
  gap: 1rem;
}
.security-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #121827;
  border: 1px solid #1E293B;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.85rem;
}
.security-badge i {
  color: #10B981;
}
.security-badge span.badge-subtitle {
  color: #94A3B8 !important;
  font-weight: 400;
  font-size: 0.75rem !important;
}
.social-links { display: flex; gap: 1rem; }
.social-links a { color: #94A3B8; font-size: 1.25rem; }
.social-links a:hover { color: #FFFFFF; }
.footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr 1fr 1fr !important; }

.badge-title { color: #FFFFFF !important; font-weight: 600 !important; font-size: 0.85rem !important; }

.footer-bottom p { margin: 0 !important; font-size: 0.9rem !important; color: #94A3B8 !important; line-height: 1.5 !important; }


/* ===== WORKSPACE SECTION (after file upload) ===== */
.tl-workspace-section {
  display: none;
  flex: 1;
  min-height: 80vh;
}
.tl-workspace-section.active { display: flex; flex-direction: column; }

/* ===== ALERT SYSTEM ===== */
.tl-alert-container {
  position: fixed; top: 20px; right: 20px;
  display: flex; flex-direction: column; gap: 0.5rem; z-index: 99999;
}
.tl-alert {
  background: #1e293b; color: white;
  padding: 0.75rem 1.25rem; border-radius: 8px;
  font-size: 0.85rem; font-weight: 600;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
  animation: tlAlertSlide 0.2s ease-out; min-width: 260px;
  display: flex; align-items: center; gap: 0.75rem;
}
.tl-alert.success { border-left: 3px solid #10b981; }
.tl-alert.error { border-left: 3px solid #ef4444; }
.tl-alert.info { border-left: 3px solid #3b82f6; }
@keyframes tlAlertSlide {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== LOADER ===== */
.tl-loader-overlay {
  position: fixed; inset: 0;
  background: rgba(15,23,42,0.7); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center;
  z-index: 9999;
}
.tl-loader-overlay.active { display: flex; }
.tl-loader-card {
  background: white; border-radius: 20px;
  padding: 2.5rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  min-width: 280px;
}
.tl-mobile-tab-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; height: 65px; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-top: 1px solid #f1f5f9; z-index: 1010; justify-content: space-around; align-items: center; padding-bottom: env(safe-area-inset-bottom, 0px); box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.04); }
.tl-tab-item { display: flex; flex-direction: column; align-items: center; justify-content: center; color: #94a3b8; text-decoration: none; font-size: 0.65rem; font-weight: 700; flex: 1; height: 100%; transition: all 0.2s ease; cursor: pointer; border: none; background: none; }
.tl-tab-item i { font-size: 1.15rem; margin-bottom: 2px; transition: transform 0.2s ease; }
.tl-tab-item.active { color: var(--tool-primary); }
.tl-tab-item:active i { transform: scale(0.9); }
.tl-tab-icon-wrap { width: 44px; height: 28px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 2px; transition: all 0.2s ease; color: #64748b; }
.tl-tab-item.active .tl-tab-icon-wrap { background: var(--tool-primary-light); color: var(--tool-primary); }
.tl-tab-item.active span { color: var(--tool-primary); font-weight: 800; }
.tl-tab-item span { font-size: 0.65rem; font-weight: 700; color: #64748b; }
}
.tl-spinner {
  width: 48px; height: 48px; border-radius: 50%;
  border: 4px solid #f1f5f9; border-top-color: var(--tool-primary);
  animation: tlSpin 0.8s linear infinite;
}
@keyframes tlSpin { to { transform: rotate(360deg); } }
.tl-loader-card h3 { font-weight: 800; color: var(--text-dark); font-size: 1rem; }
.tl-loader-card p { font-size: 0.8rem; color: var(--text); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .tl-navbar { padding: 0 1.5rem !important; }
  .tl-nav-links { gap: 1rem !important; }
  .tl-nav-links > li > a { font-size: 0.86rem !important; padding: 0 0.35rem !important; }
  .tl-mobile-menu-btn { display: none !important; }
  .tl-hero { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
  .tl-h1 { font-size: 2.2rem; }
  .tl-features-grid { grid-template-columns: repeat(2, 1fr); }
  .tl-how-grid { grid-template-columns: repeat(2, 1fr); }
  .tl-how-grid::before { display: none; }
  .tl-preview-inner { grid-template-columns: 1fr; }
  .tl-benefits-grid { grid-template-columns: 1fr; }
  .tl-devices-grid { grid-template-columns: repeat(3, 1fr); }
  .tl-privacy-grid { grid-template-columns: 1fr 1fr; }
  .tl-faq-grid { grid-template-columns: 1fr; }
  .tl-related-grid { grid-template-columns: repeat(3, 1fr); }
  .tl-blog-grid { grid-template-columns: 1fr; }
  .tl-footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .tl-seo-grid { grid-template-columns: 1fr; }
  .tl-kpi-bar { grid-template-columns: 1fr 1fr; padding: 0 2rem 2rem 2rem; }
  .tl-comparison-section { padding: 3rem 2rem; }
  .tl-breadcrumb { padding: 1rem 2rem 0 2rem; }
}

@media (max-width: 768px) {

  /* --- Section padding: consistent breathing room --- */
  .tl-features-section, .tl-how-section, .tl-preview-section,
  .tl-benefits-section, .tl-devices-section, .tl-privacy-ribbon,
  .tl-seo-section, .tl-faq-section, .tl-related-section,
  .tl-blog-section, .tl-footer { padding: 2rem 1.25rem; }

  /* --- Navbar: full-width flat native bar --- */
  .tl-navbar {
    padding: 0 1.25rem !important;
    height: 56px !important;
    border-radius: 0 !important;
  }

  .tl-btn-login, .tl-btn-signup { display: none !important; }
  .footer { display: none !important; }
  .tl-mobile-tab-bar { display: flex; }
  body { padding-bottom: 80px; }

  /* --- Hero: single column centered layout --- */
  .tl-hero {
    padding: 1.5rem 1.25rem 1.25rem !important;
    text-align: center !important;
    gap: 1.5rem !important;
  }

  .tl-h1 {
    font-size: 1.7rem !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 0.85rem !important;
  }

  .tl-hero-desc {
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
    margin-bottom: 1.25rem !important;
  }

  .tl-badge-free {
    font-size: 0.7rem !important;
    padding: 0.28rem 0.85rem !important;
    margin-bottom: 0.85rem !important;
  }

  .tl-checklist {
    align-items: center !important;
  }

  .tl-checklist li {
    font-size: 0.83rem !important;
    justify-content: center !important;
  }

  /* --- Hero pills row --- */
  .tl-hero-pills {
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    border-radius: 14px !important;
    padding: 0.85rem 1rem !important;
  }

  /* --- Upload card: premium mobile design --- */
  .tl-upload-card {
    border-radius: 22px !important;
    padding: 2rem 1.25rem !important;
    border-width: 2px !important;
    box-shadow: 0 8px 32px rgba(27, 110, 252, 0.09) !important;
  }

  .tl-upload-icon {
    width: 68px !important;
    height: 68px !important;
    font-size: 1.65rem !important;
    margin-bottom: 1.1rem !important;
    box-shadow: 0 8px 20px rgba(27, 110, 252, 0.25) !important;
  }

  .tl-upload-card h3 {
    font-size: 1rem !important;
    font-weight: 800 !important;
    margin-bottom: 0.25rem !important;
  }

  .tl-btn-choose {
    width: 100% !important;
    min-height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 100px !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
  }

  .tl-btn-choose:active {
    transform: scale(0.97) !important;
    transition: transform 0.1s ease !important;
  }

  .tl-trust-badges {
    gap: 0.4rem !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  .tl-trust-badge {
    font-size: 0.67rem !important;
    padding: 0.22rem 0.55rem !important;
  }

  /* --- KPI bar: 2 columns --- */
  .tl-kpi-bar {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.6rem !important;
    padding: 0 1.25rem 1.5rem !important;
  }

  .tl-kpi-item {
    border-radius: 14px !important;
    padding: 0.85rem 0.9rem !important;
    gap: 0.45rem !important;
  }

  .tl-kpi-item span {
    font-size: 0.77rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
  }

  /* --- Feature grid: 2 columns compact --- */
  .tl-features-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.65rem !important;
  }

  .tl-feature-card {
    border-radius: 16px !important;
    padding: 1rem !important;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06) !important;
  }

  .tl-feature-card:active {
    transform: scale(0.97) !important;
    transition: transform 0.1s ease !important;
  }

  .tl-feature-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 10px !important;
    font-size: 1.1rem !important;
    margin-bottom: 0.65rem !important;
  }

  .tl-feature-card h3 {
    font-size: 0.83rem !important;
    font-weight: 800 !important;
    margin-bottom: 0.3rem !important;
  }

  .tl-feature-card p {
    font-size: 0.75rem !important;
    line-height: 1.45 !important;
    color: #64748b !important;
  }

  /* --- How it works: linear stacked steps --- */
  .tl-how-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .tl-how-grid::before { display: none !important; }

  .tl-how-step {
    display: flex !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 1rem !important;
  }

  .tl-step-circle {
    width: 46px !important;
    height: 46px !important;
    flex-shrink: 0 !important;
    font-size: 1rem !important;
    margin: 0 !important;
  }

  .tl-how-step h4 {
    font-size: 0.88rem !important;
    font-weight: 800 !important;
    margin-bottom: 0.25rem !important;
  }

  .tl-how-step p {
    font-size: 0.78rem !important;
    line-height: 1.45 !important;
  }

  /* --- Section headers: tight on mobile --- */
  .tl-section-header {
    margin-bottom: 1.5rem !important;
    padding: 0 !important;
  }

  .tl-section-header h2 {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em !important;
    margin-bottom: 0.35rem !important;
  }

  .tl-section-header p {
    font-size: 0.83rem !important;
    line-height: 1.5 !important;
  }

  /* --- Device grid: 2 columns --- */
  .tl-devices-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.65rem !important;
  }

  .tl-device-card {
    border-radius: 16px !important;
    padding: 1.5rem 0.75rem !important;
  }

  .tl-device-card:active {
    transform: scale(0.97) !important;
    transition: transform 0.1s ease !important;
  }

  /* --- Related tools: 3 columns compact --- */
  .tl-related-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.6rem !important;
  }

  .tl-related-card {
    border-radius: 14px !important;
    padding: 0.85rem 0.5rem !important;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06) !important;
  }

  .tl-related-card:active {
    transform: scale(0.95) !important;
    transition: transform 0.1s ease !important;
  }

  .tl-related-card i {
    font-size: 1.2rem !important;
    margin-bottom: 0.5rem !important;
  }

  .tl-related-card h4 {
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
  }

  .tl-related-card p {
    font-size: 0.6rem !important;
    line-height: 1.3 !important;
  }

  /* --- Privacy ribbon: stacked --- */
  .tl-privacy-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .tl-privacy-stat h4 {
    font-size: 1.15rem !important;
  }

  /* --- Benefits: single column --- */
  .tl-benefits-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .tl-benefit-col h3 {
    font-size: 1rem !important;
    margin-bottom: 0.85rem !important;
  }

  .tl-benefit-col li {
    font-size: 0.82rem !important;
  }

  /* --- Preview section: single column, hide mockup --- */
  .tl-preview-inner {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .tl-preview-mockup { display: none !important; }

  .tl-preview-left h2 {
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    margin-bottom: 0.75rem !important;
  }

  .tl-preview-left p {
    font-size: 0.85rem !important;
    line-height: 1.55 !important;
  }

  .tl-preview-features li {
    font-size: 0.82rem !important;
  }

  /* --- FAQ: single column --- */
  .tl-faq-grid {
    grid-template-columns: 1fr !important;
    gap: 0.6rem !important;
  }

  .tl-faq-item {
    border-radius: 14px !important;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06) !important;
  }

  .tl-faq-q {
    padding: 0.85rem 1rem !important;
    font-size: 0.85rem !important;
    min-height: 52px !important;
  }

  .tl-faq-a {
    padding: 0 1rem 1rem !important;
    font-size: 0.8rem !important;
  }

  /* --- SEO section: single column --- */
  .tl-seo-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .tl-seo-inner h2 {
    font-size: 1.2rem !important;
    margin-bottom: 1.5rem !important;
  }

  .tl-seo-block h3 {
    font-size: 0.95rem !important;
    margin-bottom: 0.5rem !important;
  }

  .tl-seo-block p {
    font-size: 0.82rem !important;
    line-height: 1.6 !important;
  }

  /* --- Blog cards: single column --- */
  .tl-blog-grid {
    grid-template-columns: 1fr !important;
    gap: 0.65rem !important;
  }

  .tl-blog-card {
    border-radius: 16px !important;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06) !important;
  }

  .tl-blog-card:active {
    transform: scale(0.98) !important;
    transition: transform 0.1s ease !important;
  }

  .tl-blog-body {
    padding: 1rem !important;
  }

  .tl-blog-card h4 {
    font-size: 0.88rem !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
  }

  .tl-blog-card p {
    font-size: 0.78rem !important;
    line-height: 1.5 !important;
  }

  /* --- Comparison table: compact --- */
  .tl-comparison-table th,
  .tl-comparison-table td {
    padding: 0.65rem 0.6rem !important;
    font-size: 0.75rem !important;
  }

  /* --- Footer grid (if visible) --- */
  .tl-footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .tl-footer-bottom { flex-direction: column; align-items: flex-start; }
  .tl-footer-security { gap: 0.5rem; }
}

/* Navbar Dropdown Styles */
.tl-nav-dropdown { position: relative; }
.tl-dropdown-menu { 
  display: none; 
  position: absolute; 
  top: 100%; 
  left: 50%; 
  transform: translateX(-50%); 
  background: white; 
  box-shadow: 0 10px 40px rgba(0,0,0,0.1); 
  border-radius: 12px; 
  padding: 0.5rem; 
  min-width: 180px; 
  z-index: 1000; 
  border: 1px solid #e2e8f0;
}
.tl-nav-dropdown:hover .tl-dropdown-menu { display: flex; flex-direction: column; }
.tl-dropdown-menu a { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; color: #475569; text-decoration: none; border-radius: 8px; font-size: 0.9rem; font-weight: 600; transition: all 0.2s; white-space: nowrap; }
.tl-dropdown-menu a:hover, .tl-dropdown-menu a.active { background: #fff1f2; color: #e11d48; }
.tl-dropdown-menu i { font-size: 1.1rem; width: 20px; text-align: center; color: #94a3b8; transition: all 0.2s; }
.tl-dropdown-menu a:hover i, .tl-dropdown-menu a.active i { color: #e11d48; }
/* ===== DOWNLOAD ACTION BUTTONS & SECURE BOX ===== */
.tl-download-actions-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.tl-btn-download-main {
  background: #e5322d !important;
  color: white !important;
  font-size: 1.15rem !important;
  padding: 1.1rem 2.5rem !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(229, 50, 45, 0.2);
}
.tl-btn-download-main:hover {
  background: #cc2a26 !important;
  transform: translateY(-2px);
}
.tl-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
}
.tl-btn-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e5322d;
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}
.tl-btn-icon:hover {
  background: #cc2a26;
  transform: scale(1.05);
}
.tl-btn-icon.delete-btn {
  background: #1e293b;
}
.tl-btn-icon.delete-btn:hover {
  background: #0f172a;
}

/* ===== SECURE INFO BOX ===== */
.tl-secure-box {
  background: #e6f6ff;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
  max-width: 600px;
  text-align: left;
  border: 1px solid #bae6fd;
}
.tl-secure-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-family: 'Outfit', sans-serif;
}
.tl-secure-box p {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.tl-secure-box a {
  color: #0f172a;
  font-weight: 700;
  text-decoration: underline;
}
.tl-secure-badges {
  display: flex;
  gap: 1.5rem;
  color: #334155;
  font-size: 1.5rem;
}

/* ===== DELETE MODAL ===== */
.tl-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15,23,42,0.6);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200000;
  opacity: 0;
  transition: opacity 0.3s;
}
.tl-modal-overlay.show {
  display: flex;
  opacity: 1;
}
.tl-modal-box {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  transform: translateY(20px);
  transition: transform 0.3s;
}
.tl-modal-overlay.show .tl-modal-box {
  transform: translateY(0);
}
.tl-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #64748b;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.tl-modal-close:hover {
  background: #f1f5f9;
  color: #0f172a;
}
.tl-modal-box h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.5rem;
}
.tl-modal-box p {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 2rem;
}
.tl-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.tl-countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tl-countdown-item span {
  font-size: 2.5rem;
  font-weight: 300;
  color: #475569;
  line-height: 1;
  font-family: 'Outfit', sans-serif;
}
.tl-countdown-item small {
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
  margin-top: 0.5rem;
}
.tl-modal-footer {
  text-align: right;
}
.tl-btn-delete-now {
  background: #e5322d;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.tl-btn-delete-now:hover {
  background: #cc2a26;
}
.tl-deleted-msg {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #ef4444;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 1rem;
  display: none;
}


/* ===== ALL TOOLS MEGA MENU ===== */
.tl-navbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 100000 !important;
  overflow: visible !important;
}
.tl-nav-links {
  position: static !important;
}
.tl-megamenu-parent {
  position: static !important;
  height: 100% !important;
  display: inline-flex !important;
  align-items: center !important;
}
.tl-megamenu {
  display: none;
  position: absolute !important;
  top: 68px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 1240px !important;
  max-width: 96vw !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 20px !important;
  box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.22), 0 0 0 1px rgba(15, 23, 42, 0.04) !important;
  padding: 1.5rem 1.75rem 1.5rem 1.75rem !important;
  z-index: 1000000 !important;
  box-sizing: border-box !important;
  text-align: left !important;
  pointer-events: auto !important;
}
.tl-megamenu::before {
  content: '';
  position: absolute !important;
  top: -24px !important;
  left: 0 !important;
  width: 100% !important;
  height: 24px !important;
  background: transparent !important;
  pointer-events: auto !important;
}
.tl-megamenu-parent:hover .tl-megamenu,
.tl-megamenu-parent.nav-menu-open .tl-megamenu,
.tl-megamenu:hover {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Mega Menu Top Header Row */
.tl-megamenu-header-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1.5rem !important;
  margin-bottom: 1.25rem !important;
  padding-bottom: 0.85rem !important;
  border-bottom: 1px solid #f1f5f9 !important;
}
.tl-megamenu-header-left {
  display: flex !important;
  align-items: center !important;
  gap: 0.85rem !important;
}
.tl-megamenu-badge-icon {
  width: 40px !important;
  height: 40px !important;
  border-radius: 10px !important;
  background: #ef4444 !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.3rem !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25) !important;
  flex-shrink: 0 !important;
}
.tl-megamenu-title-group {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.15rem !important;
}
.tl-megamenu-heading {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  line-height: 1.15 !important;
  margin: 0 !important;
}
.tl-megamenu-subheading {
  font-size: 0.86rem !important;
  color: #64748b !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  margin: 0 !important;
}
.tl-megamenu-search-wrap {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  width: 250px !important;
  max-width: 100% !important;
}
.tl-megamenu-search-wrap i {
  position: absolute !important;
  left: 0.85rem !important;
  color: #94a3b8 !important;
  font-size: 0.88rem !important;
  pointer-events: none !important;
}
.tl-megamenu-search-input {
  width: 100% !important;
  background: #f8fafc !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 10px !important;
  padding: 0.5rem 0.85rem 0.5rem 2.25rem !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  color: #0f172a !important;
  outline: none !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
  font-family: inherit !important;
}
.tl-megamenu-search-input:focus {
  border-color: #ef4444 !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

/* Mega Menu Main Grid: 4 Tool Columns + 1 Promo Card */
.tl-megamenu-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1.05fr)) 255px !important;
  gap: 1.15rem !important;
  align-items: start !important;
}
.tl-megamenu-col {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.2rem !important;
}
.tl-megamenu-col-title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 0.5rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.tl-megamenu-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.tl-megamenu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 0.6rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
  color: #0f172a;
  cursor: pointer !important;
  pointer-events: auto !important;
  position: relative;
  z-index: 10;
}
.tl-megamenu-item:hover {
  background: #f8fafc;
  transform: translateX(3px);
}
.tl-megamenu-item.is-hidden {
  display: none !important;
}
.tl-megamenu-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.18s ease;
}
.tl-megamenu-item:hover .tl-megamenu-icon {
  transform: scale(1.08);
}
.tl-megamenu-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.tl-megamenu-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}
.tl-megamenu-desc {
  font-size: 0.72rem;
  color: #64748b;
  line-height: 1.35;
  white-space: normal;
}

/* Right Side Promo Card */
.tl-megamenu-promo-card {
  background: linear-gradient(180deg, #fff5f5 0%, #fffbfb 100%) !important;
  border: 1.5px solid #ffe4e6 !important;
  border-radius: 16px !important;
  padding: 1.15rem 1rem !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  position: relative !important;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.04) !important;
  box-sizing: border-box !important;
}
.tl-promo-script-title {
  font-family: 'Caveat', 'Brush Script MT', 'Segoe Script', cursive, sans-serif !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  line-height: 1.2 !important;
  transform: rotate(-2.5deg) !important;
  margin: 0 0 0.65rem 0 !important;
  display: inline-block !important;
}
.tl-promo-script-title span {
  color: #ef4444 !important;
}
.tl-promo-img-wrap {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 0.85rem !important;
}
.tl-promo-image {
  width: 100% !important;
  max-width: 210px !important;
  height: auto !important;
  max-height: 135px !important;
  object-fit: contain !important;
  border-radius: 8px !important;
}
.tl-promo-features {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.45rem !important;
  width: 100% !important;
  margin-bottom: 1.1rem !important;
  text-align: left !important;
  padding: 0 0.35rem !important;
  box-sizing: border-box !important;
}
.tl-promo-feature-item {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  color: #1e293b !important;
}
.tl-promo-feature-item i {
  color: #16a34a !important;
  font-size: 0.95rem !important;
  flex-shrink: 0 !important;
}
.tl-promo-btn {
  width: 100% !important;
  background: #e5322d !important;
  color: #ffffff !important;
  padding: 0.68rem 1rem !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 0.94rem !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  box-shadow: 0 4px 14px rgba(229, 50, 45, 0.32) !important;
  transition: all 0.2s ease !important;
  border: none !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
}
.tl-promo-btn:hover {
  background: #cc2a26 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 18px rgba(229, 50, 45, 0.42) !important;
}
.tl-megamenu-no-results {
  grid-column: 1 / span 4;
  padding: 2.5rem 1rem;
  text-align: center;
  color: #64748b;
  font-size: 0.92rem;
  font-weight: 600;
  display: none;
}

@media (max-width: 1200px) and (min-width: 993px) {
  .tl-megamenu {
    width: 98vw !important;
    padding: 1.25rem 1rem !important;
  }
  .tl-megamenu-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  .tl-megamenu-promo-card {
    display: none !important;
  }
}
@media (max-width: 992px) {
  .tl-megamenu {
    position: static;
    transform: none !important;
    width: 100%;
    padding: 1rem;
    box-shadow: none;
    border: none;
  }
  .tl-megamenu-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  .tl-megamenu-header-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .tl-megamenu-search-wrap {
    width: 100% !important;
  }
}

/* ===== DROPDOWN COLORED BADGES & HOVER ===== */
.tl-nav-dropdown:not(.tl-megamenu-parent) {
  position: relative !important;
  height: 100% !important;
}
.tl-dropdown-menu {
  display: none;
  position: absolute !important;
  top: 68px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  padding: 0.5rem !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(15, 23, 42, 0.04) !important;
  min-width: 220px !important;
  z-index: 1000001 !important;
  box-sizing: border-box !important;
}
.tl-dropdown-menu::before {
  content: '';
  position: absolute !important;
  top: -24px !important;
  left: 0 !important;
  width: 100% !important;
  height: 24px !important;
  background: transparent !important;
  pointer-events: auto !important;
}
.tl-nav-dropdown:hover > .tl-dropdown-menu,
.tl-nav-dropdown.nav-menu-open > .tl-dropdown-menu,
.tl-dropdown-menu:hover {
  display: flex !important;
  flex-direction: column !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}
.tl-dropdown-menu a {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  padding: 0.55rem 0.75rem !important;
  border-radius: 10px !important;
  color: #0f172a !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  text-decoration: none !important;
  transition: background 0.15s ease, transform 0.15s ease !important;
}
.tl-dropdown-menu a:hover {
  background: #f1f5f9 !important;
  transform: translateX(3px) !important;
}
.tl-drop-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: transform 0.18s ease;
}
.tl-dropdown-menu a:hover .tl-drop-icon {
  transform: scale(1.1);
}
