/* =================================
   GLOBAL RESET
================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* =================================
   BACKGROUND — PREMIUM CANVAS
================================= */

body {
  min-height: 100vh;

  background:
    radial-gradient(circle at 15% 20%, rgba(255,60,60,0.08), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(255,140,0,0.06), transparent 40%),
    linear-gradient(to bottom,#f8f9fc,#ffffff);

  color: #222;
  display: flex;
  flex-direction: column;
}

/* =================================
   NAVBAR
================================= */



.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 14px 32px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);

  border-bottom: 1px solid #eee;
}

/* layout */

.nav-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* logo */

.logo {
  font-weight: 700;
  font-size: 18px;
}

/* nav links */

.nav-links a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 8px;
  transition: 0.2s;
}

.nav-links a:hover {
  background: #f5f5f5;
}

.nav-links .active {
  background: #ffecec;
  color: #ff4d4d;
}

/* search pill */

#navSearch {
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid #e5e5e5;
  font-size: 14px;
  width: 180px;
  background: #fafafa;
}

/* login button */

.login-btn {
  background: #ff4d4d;
  color: white;
  padding: 8px 14px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.login-btn:hover {
  opacity: 0.9;
}

/* mobile */

.menu-toggle {
  display: none;
  font-size: 22px;
  background: none;
  border: none;
}

@media (max-width: 768px) {

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: white;
    padding: 16px;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  #navSearch,
  .login-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
  .nav-links a {
  padding: 14px;
  border-radius: 10px;
  background: #f7f7f7;
  font-weight: 500;
}

.nav-links a:hover {
  background: #ffecec;
}

}



/* =================================
   HERO
================================= */

.dashboard-hero {
  text-align: center;
  padding: 50px 20px 30px;
  max-width: 900px;
  margin: auto;
  position: relative;
}

.dashboard-hero h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.dashboard-hero p { color: #666; }

.dashboard-hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle,rgba(255,60,60,0.12),transparent 60%);
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(60px);
  z-index: -1;
}

.hero-badges {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-badges span {
  background: white;
  border: 1px solid #ddd;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 13px;
  color: #555;
}

/* =================================
   SEARCH
================================= */

.search-bar {
  max-width: 400px;
  margin: 25px auto 0;
}

.search-bar input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

/* =================================
   CATEGORY TABS
================================= */

.tool-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
}

.tab-btn {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  transition: 0.2s;
}

.tab-btn:hover { background: #eee; }

.tab-btn.active {
  background: #e53935;
  color: white;
  border-color: #e53935;
}

/* =================================
   TOOL GRID
================================= */

.tool-grid {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 20px;
}

/* =================================
   TOOL CARD — PREMIUM
================================= */

.tool-card {

  position: relative;
  background: white;
  border-radius: 16px;
  padding: 22px;
  text-decoration: none;
  color: #222;
  overflow: hidden;

  transition: all 0.35s ease;

  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.tool-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg,transparent,rgba(255,255,255,0.4),transparent);
  opacity: 0;
  transition: 0.4s;
}

.tool-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.tool-card:hover::before { opacity: 1; }

.tool-card h3,
.tool-card p {
  transition: transform 0.3s ease;
}

.tool-card:hover h3 { transform: translateY(-2px); }
.tool-card:hover p { transform: translateY(-1px); }

.tool-card p {
  font-size: 14px;
  color: #666;
}

/* =================================
   ICON SYSTEM
================================= */

.modern-icon {

  width: 56px;
  height: 56px;

  border-radius: 16px;

  margin-bottom: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  color: white;

  box-shadow:
    inset 0 1px 2px rgba(255,255,255,0.3),
    0 8px 18px rgba(0,0,0,0.12);

  transition: all 0.25s ease;
}

.tool-card:hover .modern-icon {
  transform: scale(1.15) rotate(6deg);
}

/* category colors */

.convert-icon { background: linear-gradient(135deg,#ff6a6a,#e53935); }
.compress-icon { background: linear-gradient(135deg,#7e9cff,#4a67ff); }
.merge-icon { background: linear-gradient(135deg,#9b6dff,#7b3cff); }

.tool-card.convert { border-top: 4px solid #e53935; }
.tool-card.compress { border-top: 4px solid #4a67ff; }
.tool-card.merge { border-top: 4px solid #7b3cff; }

/* =================================
   LABELS
================================= */

.tool-category {
  font-size: 12px;
  font-weight: 600;
  color: #e53935;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.popular-tag {
  background: #e53935;
  color: white;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 12px;
  margin-left: 8px;
}

/* =================================
   SEO / INFO
================================= */

.tool-info,
.intro-section,
.seo-section {
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
  padding: 0 20px;
}

.tool-info p,
.intro-section p,
.seo-section p {
  color: #555;
  margin-top: 8px;
}

/* =================================
   TOOL PAGE
================================= */

.tool-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

.tool-card-main {
  background: white;
  padding: 35px;
  border-radius: 16px;
  width: 100%;
  max-width: 620px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

/* =================================
   UPLOAD AREA
================================= */

.upload-area {

  border: 2px dashed #bbb;
  border-radius: 12px;
  padding: 35px;
  margin-bottom: 20px;

  cursor: pointer;
  transition: all 0.25s ease;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-height: 90px;
}

.upload-area:hover {
  border-color: #e53935;
  background: #fafafa;
}

.upload-area.drag-active {
  background: #f0f0f0;
  border-color: #e53935;
}

.upload-area input { display: none; }

/* =================================
   BUTTON
================================= */

.primary-btn {
  width: 100%;
  padding: 14px;
  background: #e53935;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s;
}

.primary-btn:hover { background: #c62828; }

/* =================================
   LOADER + PROGRESS
================================= */

.loader {
  border: 4px solid #eee;
  border-top: 4px solid #e53935;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin: 15px auto;
  animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.progress {
  width: 100%;
  height: 8px;
  background: #ddd;
  border-radius: 6px;
  margin-top: 14px;
  overflow: hidden;
}

.progress div {
  height: 100%;
  width: 0%;
  background: #e53935;
  transition: width 0.2s ease;
}

.hidden { display: none !important; }

/* =================================
   FOOTER
================================= */

.footer {
  margin-top: auto;
  background: white;
  border-top: 1px solid #ddd;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #666;
}

.footer-links a {
  margin: 0 8px;
  text-decoration: none;
  color: #e53935;
}

.footer-links a:hover { text-decoration: underline; }

/* =================================
   MOBILE
================================= */

@media (max-width: 600px) {

  .dashboard-hero h1 {
    font-size: 26px;
  }

  .tool-grid {
    grid-template-columns: 1fr;
  }
}
/* =================================
   COMPATIBILITY FIX — FEATURES + HOW
================================= */

/* Features container */

.features {

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;

  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Feature cards */

.feature {

  background: white;

  border-radius: 16px;
  padding: 22px;

  text-align: center;

  box-shadow: 0 6px 18px rgba(0,0,0,0.05);

  transition: all 0.25s ease;
}

.feature:hover {

  transform: translateY(-6px);

  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}

/* Steps container */

.steps {

  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;

  margin: 40px auto;
  max-width: 1000px;
}

/* Step cards */

.step {

  background: white;

  padding: 22px 28px;

  border-radius: 50px;

  min-width: 220px;

  text-align: center;

  box-shadow: 0 6px 18px rgba(0,0,0,0.05);

  transition: all 0.25s ease;
}

.step:hover {

  transform: scale(1.05);
}
/* ===============================
   TOOL HERO
=============================== */

.tool-hero {

  text-align: center;
  padding: 70px 20px 40px;
  max-width: 800px;
  margin: auto;
}

.tool-hero h1 {

  font-size: 32px;
  margin: 10px 0;
}

.tool-hero p {

  color: #666;
}

.convert-hero::before {

  content: "";
  position: absolute;
  inset: -50px;

  background: radial-gradient(
    circle,
    rgba(229,57,53,0.12),
    transparent 70%
  );

  filter: blur(60px);
  z-index: -1;
}
/* ===============================
   LAYOUT FIX — CENTER SECTIONS
=============================== */

.features-section,
.how-section,
.seo-section {

  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.features-grid {

  justify-items: center;
}

.steps {

  justify-content: center;
}

section::before {

  inset: -20px;
}
/* ===============================
   TRUST SECTION — PREMIUM UI
=============================== */

.trust-section {

  max-width: 1000px;
  margin: 90px auto;
  padding: 0 20px;
  text-align: center;
}

.trust-section h2 {

  margin-bottom: 40px;
}

.trust-grid {

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.trust-card {

  background: linear-gradient(145deg,#ffffff,#f5f5f5);

  padding: 28px;
  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.06);

  transition: 0.25s ease;
}

.trust-card:hover {

  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.trust-icon {

  font-size: 32px;
  margin-bottom: 12px;
}

.trust-card h3 {

  margin-bottom: 6px;
}

.trust-card p {

  font-size: 14px;
  color: #666;
}
/* ================================
   PREMIUM FEATURES SECTION
================================ */

.premium-features {

  margin: 120px auto;
  max-width: 1100px;
  text-align: center;
}

.premium-feature-grid {

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.premium-feature {

  background: white;
  padding: 32px;

  border-radius: 20px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.05);

  transition: all 0.25s ease;
}

.premium-feature:hover {

  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.feature-icon {

  font-size: 28px;
  margin-bottom: 12px;

  background: rgba(229,57,53,0.1);
  width: 56px;
  height: 56px;

  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-inline: auto;
}

.premium-feature p {

  color: #666;
  margin-top: 6px;
  font-size: 14px;
}
/* FEATURE ICON BUBBLE */

.feature-icon {

  width: 50px;
  height: 50px;

  margin: 0 auto 12px;

  border-radius: 14px;

  background: linear-gradient(135deg,#ff6a6a,#e53935);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;

  color: white;

  box-shadow:
    inset 0 1px 2px rgba(255,255,255,0.4),
    0 6px 14px rgba(0,0,0,0.15);

}

.feature-box h3 {

  font-size: 16px;
  margin-bottom: 6px;

}
/* ===== FEATURE GRID FIX ===== */

.features-section {
  margin: 100px auto;
  max-width: 1000px;
  text-align: center;
}

.features-section h2 {
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-box {
  background: linear-gradient(145deg, #ffffff, #f5f5f5);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: 0.25s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.1);
}

.feature-box h3 {
  margin-top: 12px;
}

.feature-box p {
  color: #666;
  margin-top: 6px;
}
.upload-area {
  position: relative;
  cursor: pointer;
}

.upload-area input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.file-list {
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

.file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f7f7f7;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 8px;
  cursor: grab;
}

.file-item span {
  flex: 1;
}

.remove-btn {
  background: #ff4d4d;
  border: none;
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
}
.file-item {
  display:flex;
  justify-content:space-between;
  background:#f5f5f5;
  padding:8px 12px;
  border-radius:8px;
  margin:6px 0;
}

.file-item button {
  background:#ff4d4d;
  color:white;
  border:none;
  padding:4px 8px;
  border-radius:6px;
  cursor:pointer;
}

.drag-active {
  border:2px dashed #e53935 !important;
}

.loader {
  width:32px;
  height:32px;
  border:4px solid #eee;
  border-top:4px solid #e53935;
  border-radius:50%;
  animation:spin 1s linear infinite;
  margin:10px auto;
}

.progress {
  width:100%;
  height:6px;
  background:#ddd;
  border-radius:6px;
  overflow:hidden;
}

#mergeBar {
  height:100%;
  width:0;
  background:#e53935;
}

@keyframes spin {
  to { transform:rotate(360deg); }
}

.pdf-list {
margin: 15px 0;
padding: 0;
list-style: none;
}

.pdf-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 14px;
margin-bottom: 8px;
background: #f7f7f7;
border-radius: 8px;
cursor: grab;
}

.pdf-item button {
background: #ff4b4b;
border: none;
color: white;
padding: 4px 8px;
border-radius: 6px;
cursor: pointer;
}
.features {
  padding: 90px 0;
  background: #fafafa;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 18px;
}

.steps {
  padding: 90px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  margin-top: 40px;
}

.step {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}


.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}
/* NAVBAR */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-weight: bold;
  font-size: 18px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-search {
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid #ddd;
}

/* Buttons */

.nav-btn {
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
}

.login {
  color: #333;
}

.signup {
  background: #ff4d4d;
  color: white;
}

/* App launcher */

.app-launcher {
  position: relative;
}

.dots {
  cursor: pointer;
  font-size: 20px;
  padding: 6px;
}

.launcher-menu {
  position: absolute;
  right: 0;
  top: 40px;
  width: 260px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  padding: 15px;
  display: none;
}

.menu-section {
  margin-bottom: 12px;
}

.menu-section h4 {
  font-size: 13px;
  margin-bottom: 6px;
  color: #888;
}

.menu-section a {
  display: block;
  padding: 6px 0;
  text-decoration: none;
  color: #333;
}

.menu-section a:hover {
  color: #ff4d4d;
}
/* ===============================
SAFE NAVBAR ENHANCEMENT
(Does NOT override existing layout)
=============================== */

.nav-login {
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  color: #333;
  transition: .2s;
}

.nav-login:hover {
  background: #f3f3f3;
}

.nav-signup {
  padding: 8px 16px;
  border-radius: 20px;
  background: #ff4d4d;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: .2s;
}

.nav-signup:hover {
  background: #e33c3c;
}

/* launcher dropdown polish */

.launcher-menu {
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,.12);
  animation: fadeIn .2s ease;
}

.launcher-menu a {
  padding: 8px 10px;
  border-radius: 8px;
}

.launcher-menu a:hover {
  background: #f3f3f3;
}

@keyframes fadeIn {
  from { opacity:0; transform: translateY(-5px); }
  to { opacity:1; transform: translateY(0); }
}
/* ===============================
   APP LAUNCHER — PREMIUM UI FIX
=============================== */

.launcher-menu {

  position: absolute;
  right: 0;
  top: 42px;

  width: 260px;
  padding: 16px;

  background: white;
  border-radius: 16px;

  box-shadow: 0 18px 45px rgba(0,0,0,.12);

  display: none;

  animation: launcherFade .18s ease;
}

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


/* section titles */

.menu-section-title {

  font-size: 12px;
  font-weight: 600;
  color: #888;

  margin: 8px 4px 6px;
}


/* divider */

.menu-divider {

  height: 1px;
  background: #eee;

  margin: 10px 0;
}


/* links */

.launcher-menu a {

  display: block;

  padding: 10px 12px;
  margin: 4px 0;

  border-radius: 10px;

  text-decoration: none;
  color: #333;
  font-size: 14px;

  transition: all .18s ease;
}


/* hover */

.launcher-menu a:hover {

  background: #ffecec;
  color: #e53935;

  transform: translateX(2px);
}


/* logout emphasis */

#menuLogout {

  color: #e53935;
  font-weight: 600;
}
/* ===============================
   NAV AUTH BUTTON — MODERN STYLE
=============================== */

.nav-login,
.nav-signup,
.nav-logout {

  border: none;
  outline: none;

  padding: 8px 16px;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 600;

  cursor: pointer;

  text-decoration: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition: all .18s ease;
}


/* login — subtle */

.nav-login {

  background: transparent;
  color: #333;
}

.nav-login:hover {

  background: #f3f3f3;
}


/* signup — primary */

.nav-signup {

  background: #ff4d4d;
  color: white;
}

.nav-signup:hover {

  background: #e53935;
  transform: translateY(-1px);
}


/* logout — premium neutral */

.nav-logout {

  background: #f5f5f5;
  color: #333;
}

.nav-logout:hover {

  background: #ffecec;
  color: #e53935;
}
/* ===========================
   NAVBAR — MODERN UI POLISH
=========================== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 14px 36px;

  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);

  border-bottom: 1px solid #eee;
}

/* RIGHT SIDE */

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* SEARCH */

.nav-search {
  padding: 8px 14px;
  border-radius: 22px;
  border: 1px solid #ddd;
  background: #fafafa;
  font-size: 14px;
  transition: 0.2s;
}

.nav-search:focus {
  outline: none;
  border-color: #ff4d4d;
  background: white;
}

/* AUTH BUTTONS */

.nav-login,
.nav-signup,
.nav-logout {

  padding: 8px 16px;
  border-radius: 22px;

  font-weight: 600;
  font-size: 14px;

  text-decoration: none;
  cursor: pointer;

  transition: all 0.2s ease;
}

/* Login (ghost button) */

.nav-login {
  color: #444;
}

.nav-login:hover {
  background: #f3f3f3;
}

/* Signup / Logout (primary button) */

.nav-signup,
.nav-logout {

  background: #ff4d4d;
  color: white;
  border: none;
}

.nav-signup:hover,
.nav-logout:hover {
  background: #e53935;
  transform: translateY(-1px);
}

/* DOTS BUTTON */

.dots-btn {

  width: 36px;
  height: 36px;

  border-radius: 10px;
  border: none;

  background: #f4f4f4;

  font-size: 18px;
  cursor: pointer;

  transition: all 0.2s ease;
}

.dots-btn:hover {
  background: #eaeaea;
  transform: scale(1.05);
}

/* LAUNCHER MENU */

.launcher-menu {

  position: absolute;
  right: 0;
  top: 44px;

  width: 260px;

  background: white;
  border-radius: 16px;

  box-shadow: 0 20px 50px rgba(0,0,0,0.12);

  padding: 14px;

  display: none;

  animation: fadeIn 0.18s ease;
}

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

.menu-section-title {

  font-size: 12px;
  font-weight: 600;
  color: #999;

  margin: 6px 0;
}

.launcher-menu a {

  display: block;

  padding: 8px 10px;
  border-radius: 8px;

  color: #333;
  text-decoration: none;

  transition: 0.15s;
}

.launcher-menu a:hover {
  background: #ffecec;
  color: #ff4d4d;
}

.menu-divider {

  height: 1px;
  background: #eee;

  margin: 8px 0;
}
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  animation: fadeIn 0.3s ease;
}

.toast.success {
  background: #4caf50;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%,20px); }
  to { opacity: 1; transform: translate(-50%,0); }
}
/* PROFESSIONAL TOOL CARDS */

/* TOOL GRID */

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 40px 0;
}

/* CARD */

.tool-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  position: relative;
  border: 1px solid #f0f0f0;
}

.tool-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* ICON BOX */

.tool-icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tool-icon-box svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke-width: 2.5;
}

/* ICON COLORS */

.red { background:#ffeaea; }
.red svg { stroke:#ff5a5f; }

.green { background:#eafaf2; }
.green svg { stroke:#00b894; }

.blue { background:#eaf2ff; }
.blue svg { stroke:#0984e3; }

/* TEXT */

.tool-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.tool-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}


/* POPULAR TAG */

.popular-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #ff5a5f;
  color: #fff;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
}

/* CTA BUTTON */

.tool-cta {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  background: #f5f6fa;
  color: #444;
  transition: all 0.25s ease;
}

.tool-card:hover .tool-cta {
  background: #ff5a5f;
  color: #fff;
}
