/* ============================================================
   AIToolsZone.com — Main Stylesheet
   Clean White Professional Design
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-alt: #f1f5f9;
  --border: #e2e8f0;
  --border-dark: #cbd5e1;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --accent: #4f46e5;
  --accent-light: #eef2ff;
  --accent-dark: #3730a3;
  --green: #16a34a;
  --green-light: #dcfce7;
  --amber: #d97706;
  --amber-light: #fef3c7;
  --purple: #7c3aed;
  --purple-light: #ede9fe;
  --featured-bg: #fffbeb;
  --featured-border: #fcd34d;
  --red: #dc2626;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 16px rgba(0,0,0,.06), 0 1px 4px rgba(0,0,0,.04);
  --shadow-md: 0 8px 32px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.1), 0 4px 16px rgba(0,0,0,.06);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
}

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.18s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(79,70,229,.3); }
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover { background: var(--accent-light); }
.btn-ghost {
  background: var(--bg-alt);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-lg { padding: 13px 28px; font-size: 15px; }

/* TOP BAR */
.topbar {
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 0;
  text-align: center;
}
.topbar .container { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.topbar-link { background: rgba(255,255,255,.2); color: #fff; padding: 3px 12px; border-radius: 100px; font-size: 12px; font-weight: 600; }
.topbar-link:hover { background: rgba(255,255,255,.35); }

/* NAVBAR */
.navbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  flex-shrink: 0;
}
.logo-icon {
  width: 34px; height: 34px;
  background: var(--accent);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.logo-accent { color: var(--accent); }
.logo-tld { color: var(--text-muted); font-weight: 500; font-size: 0.9rem; }
.nav-links {
  display: flex;
  gap: 2px;
  flex: 1;
}
.nav-links a {
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--bg-alt); }
.nav-right { display: flex; gap: 8px; align-items: center; margin-left: auto; }
.menu-toggle { display: none; background: none; border: none; font-size: 20px; cursor: pointer; padding: 4px; }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 10px 12px; border-radius: var(--radius-sm); color: var(--text); font-weight: 500; }
.mobile-menu a:hover { background: var(--bg-alt); }

/* HERO */
.hero {
  background: linear-gradient(180deg, #f8f6ff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
  padding: 64px 0 48px;
  text-align: center;
}
.hero-content { max-width: 780px; margin: 0 auto; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid #c7d2fe;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.live-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--text);
}
.hero-gradient {
  background: linear-gradient(135deg, var(--accent), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* SEARCH */
.search-form { margin-bottom: 32px; }
.search-box {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 6px 6px 6px 48px;
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  transition: border-color 0.2s;
}
.search-box:focus-within { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(79,70,229,.1); }
.search-icon { position: absolute; left: 16px; font-size: 18px; color: var(--text-muted); }
.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: transparent;
  padding: 8px 0;
}
.search-box input::placeholder { color: var(--text-light); }
.search-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 22px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  flex-shrink: 0;
}
.search-btn:hover { background: var(--accent-dark); }

/* HERO STATS */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat { padding: 0 28px; text-align: center; }
.stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--text); }
.stat span { font-size: 12px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }
.stat-sep { width: 1px; height: 36px; background: var(--border); }

/* CATEGORY PILLS */
.cat-pills-wrap {
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 64px;
  z-index: 90;
  box-shadow: var(--shadow-sm);
}
.cat-pills {
  display: flex;
  gap: 6px;
  padding: 10px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-pills::-webkit-scrollbar { display: none; }
.pill {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  border: 1.5px solid transparent;
  background: var(--bg-alt);
  transition: all 0.15s;
}
.pill:hover { color: var(--accent); background: var(--accent-light); border-color: #c7d2fe; }
.pill.active { color: var(--accent); background: var(--accent-light); border-color: var(--accent); }

/* FEATURED SECTION */
.featured-section {
  padding: 36px 0 0;
  background: #fffef5;
  border-bottom: 1px solid #fde68a;
}
.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.section-title { font-size: 1.2rem; font-weight: 700; }
.see-all { font-size: 13px; font-weight: 600; color: var(--accent); }
.see-all:hover { text-decoration: underline; }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  padding-bottom: 28px;
}
.featured-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #fde68a;
  border-radius: 12px;
  padding: 12px;
  transition: all 0.2s;
}
.featured-card:hover { border-color: var(--amber); box-shadow: var(--shadow); transform: translateY(-1px); }
.fc-logo {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border-width: 1px;
  border-style: solid;
}
.fc-logo img { width: 32px; height: 32px; object-fit: contain; }
.fc-name { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.fc-cat { font-size: 11px; color: var(--text-muted); }
.fc-pricing { margin-left: auto; font-size: 11px; font-weight: 600; }

/* MAIN LAYOUT */
.main-layout { padding: 32px 0 64px; }
.main-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: start;
}

/* SIDEBAR */
.sidebar { position: sticky; top: 136px; }
.sidebar-widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 16px;
}
.widget-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 13.5px;
  transition: all 0.15s;
  font-weight: 500;
}
.filter-row:hover { color: var(--text); background: var(--bg-alt); }
.filter-row.active { color: var(--accent); background: var(--accent-light); font-weight: 600; }
.filter-cnt {
  font-size: 11px;
  background: var(--bg-alt);
  color: var(--text-light);
  padding: 2px 7px;
  border-radius: 100px;
  font-weight: 600;
}
.filter-row.active .filter-cnt { background: #c7d2fe; color: var(--accent-dark); }

.sidebar-cta {
  background: linear-gradient(135deg, var(--accent-light), #ede9fe);
  border: 1px solid #c7d2fe;
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}
.sidebar-cta-icon { font-size: 28px; margin-bottom: 6px; }
.sidebar-cta-title { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.sidebar-cta-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* RESULTS HEADER */
.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}
.results-info { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.results-title { font-size: 1.25rem; font-weight: 700; }
.results-title em { font-style: normal; color: var(--accent); }
.results-count { font-size: 13px; color: var(--text-muted); background: var(--bg-alt); padding: 3px 10px; border-radius: 100px; }
.sort-select {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  font-family: inherit;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  outline: none;
}
.sort-select:focus { border-color: var(--accent); }

/* ACTIVE FILTERS */
.active-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  font-size: 13px;
}
.filter-label { color: var(--text-muted); font-weight: 500; }
.active-tag {
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid #c7d2fe;
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
}
.active-tag a { color: var(--accent); margin-left: 4px; font-weight: 700; }
.active-tag a:hover { color: var(--red); }
.clear-all { color: var(--text-muted); text-decoration: underline; font-size: 12px; }
.clear-all:hover { color: var(--red); }

/* TOOL GRID */
.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 16px;
}
.tool-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.tool-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.tool-card.is-featured {
  border-color: var(--featured-border);
  background: var(--featured-bg);
}
.tool-card.is-featured:hover { border-color: var(--amber); }
.featured-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--amber);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 0 var(--radius) 0 8px;
  letter-spacing: .04em;
}
.card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.tool-logo-link { flex-shrink: 0; }
.tool-logo {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.card-title-block { flex: 1; min-width: 0; }
.tool-name-link:hover .tool-name { color: var(--accent); }
.tool-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tool-meta-row { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.tool-category-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  padding: 2px 8px;
  border-radius: 100px;
}
.pricing-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
}
.pricing-free { background: var(--green-light); color: var(--green); }
.pricing-freemium { background: var(--purple-light); color: var(--purple); }
.pricing-paid { background: var(--amber-light); color: var(--amber); }

.visit-btn {
  margin-left: auto;
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.15s;
}
.visit-btn:hover { background: var(--accent-dark); }

.tool-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.tool-tags { display: flex; gap: 4px; flex-wrap: wrap; }
.tag-chip {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 100px;
  transition: all 0.15s;
}
.tag-chip:hover { color: var(--accent); background: var(--accent-light); border-color: #c7d2fe; }
.tool-industry { font-size: 11px; color: var(--text-light); }

/* PAGINATION */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.page-btn {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  transition: all 0.15s;
}
.page-btn:hover { border-color: var(--accent); color: var(--accent); }
.page-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* EMPTY STATE */
.empty-state { text-align: center; padding: 80px 20px; color: var(--text-muted); }
.empty-icon { font-size: 3.5rem; margin-bottom: 16px; }
.empty-state h3 { font-size: 1.2rem; color: var(--text); margin-bottom: 8px; }
.empty-state p { margin-bottom: 20px; }

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #f8f6ff 0%, #eff6ff 100%);
  border-top: 1px solid #e0e7ff;
  border-bottom: 1px solid #e0e7ff;
  padding: 60px 0;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.cta-text h2 { font-size: 1.7rem; font-weight: 800; margin-bottom: 10px; }
.cta-text p { color: var(--text-muted); font-size: 15px; max-width: 500px; line-height: 1.7; }
.cta-plans { display: flex; gap: 14px; flex-wrap: wrap; }
.plan-box {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  min-width: 160px;
  text-align: center;
  position: relative;
  transition: all 0.2s;
}
.plan-box:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.plan-box.plan-popular { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(79,70,229,.1); }
.popular-flag {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: .04em;
}
.plan-name { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 8px; }
.plan-price { font-size: 2rem; font-weight: 800; color: var(--text); line-height: 1; margin-bottom: 4px; }
.plan-price span { font-size: 13px; font-weight: 500; color: var(--text-muted); }
.plan-desc { font-size: 12px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.4; }

/* FOOTER */
.footer { background: var(--text); color: #e2e8f0; padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { color: #94a3b8; font-size: 14px; line-height: 1.7; margin-bottom: 16px; max-width: 280px; }
.footer-brand .logo { color: #fff; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #cbd5e1;
  font-size: 14px;
  transition: all 0.15s;
}
.social-links a:hover { background: var(--accent); color: #fff; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #94a3b8; margin-bottom: 12px; }
.footer-col a { display: block; font-size: 13.5px; color: #94a3b8; padding: 4px 0; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #64748b;
  flex-wrap: wrap;
  gap: 8px;
}

/* PRICING PAGE */
.pricing-hero { text-align: center; padding: 64px 0 48px; background: linear-gradient(180deg,#f8f6ff,#fff); border-bottom: 1px solid var(--border); }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 48px 0; max-width: 960px; margin: 48px auto; }
.pricing-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all 0.2s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.pricing-card.featured-plan { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(79,70,229,.08); }
.pricing-card .popular-flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; padding: 4px 16px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: .05em; white-space: nowrap; }

/* TOOL DETAIL PAGE */
.tool-detail { max-width: 900px; margin: 0 auto; padding: 40px 0 80px; }
.detail-header { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 28px; }
.detail-logo { width: 80px; height: 80px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 38px; flex-shrink: 0; }

/* SUBMIT FORM */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-label span { color: var(--red); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px rgba(79,70,229,.08); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 5px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.plan-select { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.plan-option { position: relative; }
.plan-option input[type=radio] { position: absolute; opacity: 0; }
.plan-option label {
  display: block;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}
.plan-option input:checked + label { border-color: var(--accent); background: var(--accent-light); }
.plan-option label:hover { border-color: var(--accent); }
.plan-option .p-name { font-size: 13px; font-weight: 700; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.plan-option .p-price { font-size: 1.4rem; font-weight: 800; margin-bottom: 4px; }
.plan-option .p-desc { font-size: 11.5px; color: var(--text-muted); line-height: 1.4; }

/* ADMIN STYLES */
.admin-body { background: #f1f5f9; }
.admin-navbar {
  background: var(--text);
  color: #fff;
  padding: 0 24px;
  height: 58px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
}
.admin-nav-brand { font-weight: 700; font-size: 16px; }
.admin-nav-brand span { color: #818cf8; }
.admin-nav-links { display: flex; gap: 4px; }
.admin-nav-links a { color: #94a3b8; padding: 6px 14px; border-radius: 7px; font-size: 13px; font-weight: 500; }
.admin-nav-links a:hover, .admin-nav-links a.active { color: #fff; background: rgba(255,255,255,.1); }
.admin-layout { display: grid; grid-template-columns: 220px 1fr; min-height: calc(100vh - 58px); }
.admin-sidebar { background: #fff; border-right: 1px solid var(--border); padding: 20px 12px; }
.admin-sidebar-link { display: flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: 8px; color: var(--text-muted); font-size: 13.5px; font-weight: 500; margin-bottom: 2px; transition: all 0.15s; }
.admin-sidebar-link:hover, .admin-sidebar-link.active { background: var(--accent-light); color: var(--accent); }
.admin-main { padding: 28px; }
.admin-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.admin-card-title { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.stat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; }
.stat-card-num { font-size: 2rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.stat-card-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.admin-table th { padding: 10px 14px; text-align: left; border-bottom: 2px solid var(--border); color: var(--text-muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.admin-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.admin-table tr:hover td { background: var(--bg-soft); }
.status-badge { font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 100px; }
.status-approved { background: var(--green-light); color: var(--green); }
.status-pending { background: var(--amber-light); color: var(--amber); }
.status-rejected { background: #fee2e2; color: var(--red); }
.action-link { color: var(--accent); font-weight: 600; font-size: 12px; padding: 4px 9px; border-radius: 6px; background: var(--accent-light); }
.action-link:hover { background: var(--accent); color: #fff; }
.action-del { color: var(--red); background: #fee2e2; }
.action-del:hover { background: var(--red); color: #fff; }

/* ALERT */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 18px; font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 10px; }
.alert-success { background: var(--green-light); color: var(--green); border: 1px solid #bbf7d0; }
.alert-error { background: #fee2e2; color: var(--red); border: 1px solid #fecaca; }
.alert-info { background: var(--accent-light); color: var(--accent); border: 1px solid #c7d2fe; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .main-inner { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .menu-toggle { display: block; }
  .hero { padding: 40px 0 32px; }
  .hero h1 { font-size: 2.2rem; }
  .tool-grid { grid-template-columns: 1fr; }
  .cta-plans { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .pricing-cards { grid-template-columns: 1fr; }
  .plan-select { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 16px; }
  .stat-sep { display: none; }
  .stat { padding: 0 8px; }
}
