/* BiizTools Design System v3 — clean rebuild 2026-05-16 */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fafafa;
  color: #111;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
.purple { color: #6c3bf4; }

/* ===== HEADER ===== */
.header {
  background: #fff;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 48px;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: #6c3bf4;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
}

.logo-text { font-size: 17px; font-weight: 700; color: #111; }

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

.nav-item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.15s;
}

.nav-item:hover { color: #6c3bf4; }
.nav-item.active { color: #6c3bf4; }

.nav-chevron { width: 16px; height: 16px; color: #aaa; }

.header-right { display: flex; align-items: center; gap: 12px; margin-left: auto; flex-shrink: 0; }

.btn-signin {
  white-space: nowrap;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  background: #fff;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-signin:hover { border-color: #6c3bf4; color: #6c3bf4; }

/* ===== LAYOUT ===== */
.page-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 28px;
}

.main {
  flex: 1;
  min-width: 0;
  padding-bottom: 40px;
}

/* ===== HERO ===== */
.hero {
  padding: 44px 0 36px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-left { flex: 1; min-width: 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: #f3f0ff;
  border: 1px solid #e8e3ff;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: #6c3bf4;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.12;
  color: #111;
  margin-bottom: 16px;
  letter-spacing: -0.6px;
}

.hero-sub {
  font-size: 15.5px;
  line-height: 1.6;
  color: #777;
  margin-bottom: 28px;
  max-width: 430px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 24px;
  background: #6c3bf4;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 11px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary:hover { background: #5b2de0; }

.trust-items { display: flex; align-items: center; gap: 18px; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500; color: #888; }
.trust-item svg.green { color: #34c759; }
.trust-item svg.gray { color: #999; }

.hero-right { width: 400px; height: 300px; flex-shrink: 0; position: relative; }

/* Hero floating elements */
.hero-vis { position: relative; width: 100%; height: 100%; }

.dashed-ring {
  position: absolute;
  width: 220px; height: 220px;
  border: 2px dashed #ddd;
  border-radius: 50%;
  top: 40px; left: 75px;
}

.fl {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}

.fl-browser {
  top: 10px; right: 5px;
  width: 190px; height: 130px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  flex-direction: column;
  align-items: stretch;
}

.fl-browser-bar {
  height: 22px;
  background: #f7f7f7;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 4px;
}

.fl-browser-dot { width: 5px; height: 5px; border-radius: 50%; background: #d5d5d5; }
.fl-browser-body { padding: 10px; display: flex; flex-direction: column; gap: 5px; }
.fl-browser-line { height: 5px; background: #eee; border-radius: 3px; }
.fl-browser-line:nth-child(1) { width: 65%; background: #d5d0f0; }
.fl-browser-line:nth-child(2) { width: 95%; }
.fl-browser-line:nth-child(3) { width: 80%; }
.fl-browser-line:nth-child(4) { width: 55%; background: #e0dbf5; }

.fl-calc { width: 42px; height: 42px; background: #2563eb; top: 14px; left: 82px; border-radius: 10px; color: #fff; }
.fl-invoice { width: 84px; height: 104px; background: #fff; top: 48px; left: 125px; border-radius: 13px; flex-direction: column; padding: 10px; gap: 5px; align-items: stretch; }
.fl-inv-bar { height: 7px; background: #6c3bf4; border-radius: 4px; }
.fl-inv-line { height: 4px; background: #eee; border-radius: 2px; }
.fl-inv-line.short { width: 55%; }
.fl-inv-amount { margin-top: auto; font-size: 10px; font-weight: 700; color: #16a34a; text-align: right; }
.fl-chart { width: 50px; height: 50px; background: #6c3bf4; top: 28px; right: 62px; border-radius: 12px; color: #fff; }
.fl-receipt { width: 46px; height: 46px; background: #f97316; top: 155px; left: 55px; border-radius: 11px; color: #fff; }
.fl-excel { width: 50px; height: 50px; background: #16a34a; bottom: 22px; right: 45px; border-radius: 12px; color: #fff; font-size: 20px; font-weight: 700; }

/* ===== SEARCH ===== */
.search-wrap { margin-bottom: 16px; }

.search-bar {
  background: #fff;
  border-radius: 13px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #eee;
}

.search-bar:focus-within { border-color: #ccc; }
.search-bar svg { width: 19px; height: 19px; color: #bbb; flex-shrink: 0; }

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  background: transparent;
}

.search-bar input::placeholder { color: #bbb; }

/* ===== TABS ===== */
.tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 15px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 100px;
  cursor: pointer;
}

.tab:hover { border-color: #6c3bf4; color: #6c3bf4; }
.tab.active { background: #6c3bf4; color: #fff; border-color: #6c3bf4; }
.tab svg { width: 13px; height: 13px; }

/* ===== TOOL CARDS (4-col home grid) ===== */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.tool-card {
  background: #fff;
  border-radius: 13px;
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  border: 1px solid #f0f0f0;
  transition: box-shadow 0.15s, border-color 0.15s;
  text-decoration: none;
}

.tool-card:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border-color: #e8e4f8;
}

.tool-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tool-icon svg { width: 20px; height: 20px; }

.tool-icon.red { background: #fee2e2; } .tool-icon.red svg { color: #ef4444; }
.tool-icon.orange { background: #ffedd5; } .tool-icon.orange svg { color: #f97316; }
.tool-icon.green { background: #dcfce7; } .tool-icon.green svg { color: #16a34a; }
.tool-icon.blue { background: #dbeafe; } .tool-icon.blue svg { color: #2563eb; }
.tool-icon.teal { background: #ccfbf1; } .tool-icon.teal svg { color: #0d9488; }
.tool-icon.purple { background: #ede9fe; } .tool-icon.purple svg { color: #7c3aed; }
.tool-icon.indigo { background: #e0e7ff; } .tool-icon.indigo svg { color: #4f46e5; }
.tool-icon.amber { background: #fef3c7; } .tool-icon.amber svg { color: #d97706; }
.tool-icon.pink { background: #fce7f3; } .tool-icon.pink svg { color: #ec4899; }
.tool-icon.gray { background: #f3f4f6; } .tool-icon.gray svg { color: #6b7280; }
.tool-icon.cyan { background: #cffafe; } .tool-icon.cyan svg { color: #06b6d4; }
.tool-icon.emerald { background: #d1fae5; } .tool-icon.emerald svg { color: #059669; }
.tool-icon.violet { background: #ede9fe; } .tool-icon.violet svg { color: #8b5cf6; }
.tool-icon.primary { background: #ede9fe; } .tool-icon.primary svg { color: #6c3bf4; }

.tool-info { flex: 1; min-width: 0; }
.tool-name { font-size: 13.5px; font-weight: 600; color: #111; margin-bottom: 3px; line-height: 1.3; }
.tool-desc { font-size: 12px; color: #aaa; line-height: 1.45; }

.tool-arrow { flex-shrink: 0; color: #ddd; margin-top: 2px; }
.tool-arrow svg { width: 15px; height: 15px; }

.badge {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 600;
  padding: 1.5px 5px;
  border-radius: 3px;
  margin-left: 5px;
  vertical-align: middle;
  letter-spacing: 0.02em;
}
.badge.ai { background: #ede9fe; color: #7c3aed; }
.badge.pop { background: #fef3c7; color: #d97706; }
.badge.free { background: #dcfce7; color: #16a34a; }

/* ===== VIEW ALL ===== */
.view-all { display: flex; justify-content: center; margin-bottom: 20px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 24px;
  background: #fff;
  color: #555;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 11px;
  border: 1px solid #eee;
  cursor: pointer;
  text-decoration: none;
}

.btn-ghost:hover { border-color: #6c3bf4; color: #6c3bf4; }
.btn-ghost svg { width: 16px; height: 16px; }

/* ===== FEATURES BAR ===== */
.features-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 24px 0 0;
  border-top: 1px solid #eee;
}

.feat { display: flex; align-items: center; gap: 12px; padding: 0 20px; }
.feat:not(:last-child) { border-right: 1px solid #eee; }

.feat-icon {
  width: 38px; height: 38px;
  background: #f3f0ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat-icon svg { width: 18px; height: 18px; color: #6c3bf4; }
.feat-title { font-size: 13px; font-weight: 600; color: #111; margin-bottom: 1px; }
.feat-desc { font-size: 11.5px; color: #aaa; }

/* ===== RIGHT SIDEBAR ===== */
.sidebar { width: 250px; flex-shrink: 0; padding-top: 44px; }

.sidebar-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  position: sticky;
  top: 88px;
}

.sb-title { font-size: 14px; font-weight: 700; color: #111; margin-bottom: 18px; }

.usage-row { display: flex; align-items: center; gap: 14px; margin-bottom: 6px; }

.ring { width: 58px; height: 58px; }
.ring svg { width: 58px; height: 58px; transform: rotate(-90deg); }
.ring circle { fill: none; stroke-width: 5; }
.ring .bg { stroke: #f0f0f0; }
.ring .fg { stroke: #6c3bf4; stroke-linecap: round; stroke-dasharray: 150; stroke-dashoffset: 120; }

.usage-num { font-size: 20px; font-weight: 700; color: #111; line-height: 1; }
.usage-num span { font-size: 13px; font-weight: 500; color: #aaa; }
.usage-sub { font-size: 12px; color: #aaa; font-weight: 500; }
.usage-reset { font-size: 11.5px; color: #bbb; text-align: center; margin: 10px 0 18px; }

.sb-text { font-size: 12.5px; color: #aaa; line-height: 1.55; margin-bottom: 18px; }

.btn-upgrade {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 12px 16px;
  background: #6c3bf4;
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 11px;
  border: none;
  cursor: pointer;
  margin-bottom: 18px;
  text-decoration: none;
}

.btn-upgrade:hover { background: #5b2de0; }
.btn-upgrade svg { width: 16px; height: 16px; }

.header-right .btn-upgrade { width: auto; margin-bottom: 0; padding: 8px 20px; font-size: 14px; white-space: nowrap; }

.benefits { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.ben { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: #555; font-weight: 500; }
.ben svg { width: 15px; height: 15px; color: #34c759; flex-shrink: 0; }

.sb-divider { height: 1px; background: #f0f0f0; margin-bottom: 18px; }

.safe-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.safe-dot { width: 30px; height: 30px; background: #f0fdf4; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.safe-dot svg { width: 16px; height: 16px; color: #34c759; }
.safe-label { font-size: 13px; font-weight: 600; color: #111; }
.safe-desc { font-size: 12px; color: #aaa; line-height: 1.5; }

/* ===== LEFT SIDEBAR (Tools Catalog) ===== */
.left-sidebar {
  width: 210px;
  flex-shrink: 0;
  padding: 28px 24px 28px 0;
  border-right: 1px solid #f0f0f0;
}

.sb-home {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
  border-radius: 9px;
  margin-bottom: 20px;
}

.sb-home:hover { background: #f5f3ff; color: #6c3bf4; }
.sb-home svg { width: 18px; height: 18px; color: #999; }

.sb-label {
  font-size: 11px;
  font-weight: 600;
  color: #aaa;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 14px;
  margin-bottom: 8px;
}

.sb-nav { display: flex; flex-direction: column; gap: 2px; margin-bottom: 28px; }

.sb-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
  border-radius: 9px;
}

.sb-link:hover { background: #f9f8fc; color: #6c3bf4; }
.sb-link.active { background: #f3f0ff; color: #6c3bf4; font-weight: 600; }
.sb-link svg { width: 17px; height: 17px; color: #999; }
.sb-link.active svg { color: #6c3bf4; }

.sb-promo { background: #f9f8fc; border-radius: 14px; padding: 20px; }
.sb-promo-head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.sb-promo-head svg { width: 18px; height: 18px; color: #6c3bf4; }
.sb-promo-title { font-size: 13px; font-weight: 600; color: #6c3bf4; }
.sb-promo-text { font-size: 12px; color: #999; line-height: 1.5; margin-bottom: 14px; }

.sb-promo-btn {
  display: block;
  width: 100%;
  padding: 10px 16px;
  background: #6c3bf4;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  text-align: center;
  text-decoration: none;
}

.sb-promo-btn:hover { background: #5b2de0; }

/* Tools catalog with left sidebar */
.has-left-sidebar { gap: 0; }
.has-left-sidebar .main { padding: 28px 0 40px 32px; }

/* ===== PAGE HEADER ===== */
.page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.page-title { font-size: 28px; font-weight: 800; color: #111; margin-bottom: 6px; letter-spacing: -0.3px; }
.page-sub { font-size: 14px; color: #999; }

/* ===== CATEGORY SECTIONS ===== */
.cat-section { margin-bottom: 28px; }
.cat-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cat-title { font-size: 18px; font-weight: 700; color: #111; }
.cat-viewall { font-size: 13px; font-weight: 600; color: #6c3bf4; }

.tool-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

/* ===== BOTTOM CTA ===== */
.bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f9f8fc;
  border-radius: 14px;
  padding: 20px 28px;
  margin-top: 12px;
}

.bottom-cta-left { display: flex; align-items: center; gap: 14px; }
.bottom-cta-icon { width: 40px; height: 40px; background: #ede9fe; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.bottom-cta-icon svg { width: 20px; height: 20px; color: #6c3bf4; }
.bottom-cta-title { font-size: 14px; font-weight: 600; color: #6c3bf4; margin-bottom: 2px; }
.bottom-cta-sub { font-size: 12.5px; color: #999; }

.bottom-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: #6c3bf4;
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  text-decoration: none;
}

.bottom-cta-btn:hover { background: #5b2de0; }
.bottom-cta-btn svg { width: 16px; height: 16px; }

/* ===== PRICING PAGE ===== */
.pricing-page { max-width: 1100px; margin: 0 auto; padding: 0 40px 60px; }
.pricing-head { text-align: center; padding: 48px 0 36px; }
.pricing-badge { display: inline-block; font-size: 12px; font-weight: 600; color: #6c3bf4; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.pricing-head h1 { font-size: 36px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 14px; }
.pricing-sub { font-size: 15px; color: #777; margin-bottom: 28px; }

.billing-toggle { display: inline-flex; background: #fff; padding: 4px; border-radius: 30px; border: 1px solid #eee; gap: 2px; }
.billing-toggle button { padding: 9px 20px; border-radius: 26px; font-weight: 600; font-size: 13px; color: #999; background: none; border: none; cursor: pointer; transition: all .2s; }
.billing-toggle button.active { background: #6c3bf4; color: #fff; }
.toggle-save { font-size: 10px; background: rgba(108,59,244,0.12); color: #6c3bf4; padding: 2px 6px; border-radius: 6px; margin-left: 4px; }
.billing-toggle button.active .toggle-save { background: rgba(255,255,255,0.22); color: #fff; }

.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 10px; }

.price-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.popular { border: 2px solid #6c3bf4; box-shadow: 0 4px 24px rgba(108,59,244,0.10); }

.price-card-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: #6c3bf4;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: .08em;
}

.price-card-top { margin-bottom: 20px; }
.price-card-name { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.price-card-sub { font-size: 13px; color: #999; }

.price-card-price { font-size: 42px; font-weight: 800; color: #111; line-height: 1; margin-bottom: 24px; }
.price-card-price sup { font-size: 20px; font-weight: 600; vertical-align: super; }
.price-card-price sub { font-size: 14px; font-weight: 500; color: #999; }

.price-card-features { list-style: none; flex: 1; margin-bottom: 24px; }
.price-card-features li { padding: 7px 0; font-size: 13px; color: #666; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid #f5f5f5; }
.price-card-features li:last-child { border-bottom: 0; }
.price-card-features svg { width: 15px; height: 15px; color: #34c759; flex-shrink: 0; }

.price-card-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  color: #111;
  border: 1px solid #eee;
  cursor: pointer;
  transition: all .15s;
  text-decoration: none;
}

.price-card-btn:hover { border-color: #6c3bf4; color: #6c3bf4; }
.price-card.popular .price-card-btn { background: #6c3bf4; color: #fff; border-color: #6c3bf4; }
.price-card.popular .price-card-btn:hover { background: #5b2de0; }

/* Compare table */
.compare-section { margin-top: 48px; }
.compare-title { font-size: 22px; font-weight: 800; text-align: center; margin-bottom: 4px; letter-spacing: -0.3px; }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  border: 1px solid #eee;
  border-radius: 13px;
  overflow: hidden;
  margin-top: 20px;
}

.compare-table th, .compare-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid #eee; }
.compare-table thead th { font-size: 14px; font-weight: 700; background: #f9f9f9; }
.compare-table td:not(:first-child), .compare-table th:not(:first-child) { text-align: center; }
.compare-table .check { color: #34c759; font-weight: 700; }
.compare-table .dash { color: #ddd; }

/* FAQ */
.faq-section { margin-top: 48px; }
.faq-title { font-size: 22px; font-weight: 800; text-align: center; margin-bottom: 20px; letter-spacing: -0.3px; }
.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid #eee; }
.faq-item summary { font-size: 14px; font-weight: 600; color: #111; padding: 14px 0; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }
.faq-item p { font-size: 13px; color: #777; line-height: 1.6; padding: 0 0 14px; }

/* Final CTA */
.final-cta {
  background: #f3f0ff;
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  margin: 40px 0;
}

.final-cta-badge { display: inline-block; font-size: 12px; font-weight: 600; color: #6c3bf4; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 12px; }
.final-cta h2 { font-size: 26px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.3px; }
.final-cta p { font-size: 15px; color: #777; margin-bottom: 24px; }
.final-cta-btns { display: flex; gap: 12px; justify-content: center; }

/* ===== ABOUT PAGE ===== */
.about-page { max-width: 900px; margin: 0 auto; padding: 0 40px 60px; }

.about-hero { padding: 48px 0 36px; text-align: center; }
.about-hero h1 { font-size: 38px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 14px; }
.about-sub { font-size: 16px; color: #777; max-width: 600px; margin: 0 auto; }
.about-section { margin-top: 48px; }
.about-section h2 { font-size: 24px; font-weight: 800; text-align: center; margin-bottom: 24px; letter-spacing: -0.3px; }

.manifesto { max-width: 720px; margin: 40px auto; text-align: center; }
.manifesto p { font-size: 17px; line-height: 1.6; color: #444; margin-bottom: 18px; }
.manifesto em { color: #6c3bf4; font-style: italic; font-weight: 500; }

.no-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.no-card { background: #fff; border: 1px solid #eee; border-radius: 14px; padding: 24px; }
.no-card-icon { width: 40px; height: 40px; border-radius: 10px; background: #fff0f0; display: grid; place-items: center; margin-bottom: 14px; color: #e53e3e; font-weight: 700; font-size: 16px; }
.no-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.no-card p { font-size: 13px; color: #777; line-height: 1.5; }

.solo-card { max-width: 540px; margin: 48px auto 0; background: #fff; border: 1px solid #eee; border-radius: 18px; padding: 40px; text-align: center; }
.solo-avatar { width: 72px; height: 72px; border-radius: 50%; background: #6c3bf4; color: #fff; display: grid; place-items: center; font-size: 28px; font-weight: 700; margin: 0 auto 16px; }
.solo-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.solo-role { color: #999; font-size: 13px; margin-bottom: 16px; }
.solo-card p { font-size: 14px; color: #666; line-height: 1.6; }

.timeline { position: relative; max-width: 680px; margin: 40px auto; padding-left: 36px; }
.timeline::before { content: ""; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: #eee; }

.timeline-item { margin-bottom: 32px; position: relative; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -30px; top: 5px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #6c3bf4;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #6c3bf4;
}

.timeline-year { font-size: 12px; font-weight: 700; color: #6c3bf4; letter-spacing: .08em; margin-bottom: 4px; }
.timeline-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.timeline-item p { font-size: 14px; color: #999; }

/* ===== FOOTER ===== */
.footer {
  background: #fff;
  border-top: 1px solid #f0f0f0;
  padding: 48px 0 24px;
  margin-top: 40px;
}

.footer-inner { max-width: 1440px; margin: 0 auto; padding: 0 40px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-brand p { font-size: 13px; color: #999; line-height: 1.6; margin-top: 12px; max-width: 280px; }
.footer-col h4 { font-size: 13px; font-weight: 600; color: #111; margin-bottom: 14px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer li a { font-size: 13px; color: #999; transition: color .15s; }
.footer li a:hover { color: #6c3bf4; }

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
  font-size: 12px;
  color: #bbb;
}

/* ===== MESSAGES ===== */
.msg { padding: 12px 18px; border-radius: 10px; font-size: 14px; margin-bottom: 12px; }
.msg--success { background: #dcfce7; color: #166534; }
.msg--error { background: #fee2e2; color: #991b1b; }
.msg--info { background: #dbeafe; color: #1e40af; }

/* ===== MOBILE ===== */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-toggle span { display: block; width: 20px; height: 2px; background: #111; border-radius: 2px; }

.mobile-menu { display: none; }
.mobile-open .mobile-menu {
  display: block;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 99;
  overflow-y: auto;
}
.mobile-menu nav { padding: 16px 24px; display: flex; flex-direction: column; }
.mobile-menu nav a { padding: 12px 0; font-size: 15px; font-weight: 500; color: #111; border-bottom: 1px solid #f0f0f0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .sidebar, .left-sidebar { display: none; }
  .hero-right { display: none; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .tool-row { grid-template-columns: repeat(3, 1fr); }
  .pricing-cards { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .features-bar { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .feat:not(:last-child) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .no-grid { grid-template-columns: 1fr 1fr; }
  .has-left-sidebar .main { padding-left: 0; }
}

@media (max-width: 640px) {
  .mobile-toggle { display: flex; }
  .header { padding: 0 20px; }
  .nav { display: none; }
  .page-wrap { padding: 0 20px; }
  .tools-grid, .tool-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .features-bar { grid-template-columns: 1fr; }
  .page-header { flex-direction: column; gap: 12px; }
  .pricing-page, .about-page { padding: 0 20px 40px; }
  .no-grid { grid-template-columns: 1fr; }
  .pricing-head h1 { font-size: 28px; }
  .bottom-cta { flex-direction: column; gap: 16px; text-align: center; }
}

/* ===== PAGE HEADER ACTIONS ===== */
.page-header-actions { display: flex; align-items: center; gap: 12px; }
.sort-select { display: flex; align-items: center; gap: 6px; }
.sort-label { font-size: 13px; color: #999; white-space: nowrap; }
.sort-select select { font-size: 13px; font-weight: 600; color: #333; border: 1px solid #e5e5e5; border-radius: 8px; padding: 6px 28px 6px 10px; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 8px center; -webkit-appearance: none; appearance: none; cursor: pointer; }
.view-toggle { display: flex; align-items: center; gap: 2px; background: #f5f5f5; border-radius: 8px; padding: 3px; }
.view-btn { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border: none; background: transparent; border-radius: 6px; cursor: pointer; color: #999; transition: all .15s; }
.view-btn.active { background: #fff; color: #333; box-shadow: 0 1px 3px rgba(0,0,0,.08); }
.view-btn svg { width: 16px; height: 16px; }

/* ===== VIEW ALL LINK ===== */
.cat-view-all { display: flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 600; color: #6c3bf4; text-decoration: none; transition: opacity .15s; }
.cat-view-all:hover { opacity: .7; }
.cat-view-all svg { width: 14px; height: 14px; }

/* ===== TOOL PAGE LAYOUT ===== */
.has-both-sidebars { gap: 0; }
.has-both-sidebars .main { padding: 28px 32px 40px 32px; }
.has-both-sidebars .right-sidebar { width: 220px; flex-shrink: 0; padding: 28px 0 40px 0; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #999; margin-bottom: 20px; }
.breadcrumb a { color: #999; text-decoration: none; font-weight: 500; }
.breadcrumb a:hover { color: #6c3bf4; }
.breadcrumb svg { width: 12px; height: 12px; color: #ccc; }

/* Tool header */
.tool-page-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 8px; }
.tool-page-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tool-page-icon svg { width: 28px; height: 28px; }
.tool-page-title { font-size: 26px; font-weight: 800; color: #111; margin-bottom: 6px; letter-spacing: -0.3px; }
.tool-page-desc { font-size: 14px; color: #777; line-height: 1.5; }

/* Feature badges row */
.tool-badges { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; margin-top: 14px; }
.tool-badge { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #555; font-weight: 500; }
.tool-badge-dot { width: 8px; height: 8px; border-radius: 50%; }
.tool-badge-dot.green { background: #34c759; }
.tool-badge-dot.blue { background: #2563eb; }
.tool-badge-dot.purple { background: #6c3bf4; }

/* Tool workspace: upload + settings side by side */
.tool-workspace { display: flex; gap: 20px; margin-bottom: 24px; }
.tool-upload-zone { flex: 1; min-width: 0; }
.tool-settings-panel { width: 320px; flex-shrink: 0; }

/* Upload dropzone */
.tz-dropzone {
  border: 2px dashed #e0dce8;
  border-radius: 16px;
  padding: 48px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.tz-dropzone:hover, .tz-dropzone.is-drag { border-color: #6c3bf4; background: rgba(108,59,244,0.03); }
.tz-dropzone-icon { margin-bottom: 16px; }
.tz-dropzone-icon svg { width: 56px; height: 56px; color: #ccc; }
.tz-dropzone-title { font-size: 16px; font-weight: 600; color: #333; margin-bottom: 6px; }
.tz-dropzone-or { font-size: 13px; color: #bbb; margin-bottom: 14px; }
.tz-choose-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #6c3bf4;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}
.tz-choose-btn:hover { background: #5b2de0; }
.tz-choose-btn svg { width: 16px; height: 16px; }
.tz-supported { font-size: 12px; color: #bbb; margin-top: 16px; }
.tz-security { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 12px; color: #bbb; margin-top: 16px; }
.tz-security svg { width: 14px; height: 14px; color: #ccc; }

/* File info (after selecting) */
.tz-file-info { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: #f9f8fc; border-radius: 12px; margin-top: 16px; }
.tz-file-icon { width: 36px; height: 36px; background: #ef4444; color: #fff; border-radius: 8px; display: grid; place-items: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.tz-file-meta { flex: 1; min-width: 0; }
.tz-file-name { font-size: 13px; font-weight: 600; color: #333; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tz-file-size { font-size: 11px; color: #aaa; }
.tz-file-remove { width: 28px; height: 28px; border-radius: 50%; border: none; background: transparent; cursor: pointer; color: #aaa; font-size: 18px; flex-shrink: 0; }
.tz-file-remove:hover { color: #ef4444; }

/* Settings panel */
.ts-panel {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 24px;
}
.ts-title { font-size: 16px; font-weight: 700; color: #111; margin-bottom: 20px; }
.ts-group { margin-bottom: 16px; }
.ts-label { font-size: 13px; font-weight: 600; color: #333; margin-bottom: 6px; }
.ts-sublabel { font-size: 12px; color: #aaa; margin-bottom: 6px; }

.ts-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  background: #fff;
  appearance: none;
  background-image: url(data:image/svg+xml,%3Csvg xmlns=http://www.w3.org/2000/svg width=12 height=12 viewBox=0 0 24 24 fill=none stroke=%23666 stroke-width=2%3E%3Cpath d=M6 9l6 6 6-6/%3E%3C/svg%3E);
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.ts-select-icon { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border: 1px solid #e5e5e5; border-radius: 10px; }
.ts-select-icon svg { width: 18px; height: 18px; flex-shrink: 0; }

.ts-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  font-size: 13px;
  color: #333;
}

.ts-checkbox { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; cursor: pointer; }
.ts-checkbox input[type=checkbox] { width: 16px; height: 16px; accent-color: #6c3bf4; margin-top: 1px; flex-shrink: 0; }
.ts-checkbox-text { font-size: 13px; color: #333; font-weight: 500; }
.ts-checkbox-sub { font-size: 11px; color: #aaa; }

.ts-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 16px;
  background: #6c3bf4;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 11px;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}
.ts-submit:hover { background: #5b2de0; }
.ts-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.ts-submit svg { width: 16px; height: 16px; }

/* How it works section */
.hiw-section {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 24px 28px;
}
.hiw-header { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.hiw-header svg { width: 20px; height: 20px; color: #6c3bf4; }
.hiw-title { font-size: 16px; font-weight: 700; color: #111; }
.hiw-steps { display: flex; align-items: flex-start; gap: 0; }
.hiw-step { flex: 1; display: flex; align-items: flex-start; gap: 14px; }
.hiw-step-icon { width: 44px; height: 44px; border-radius: 12px; background: #f5f3ff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hiw-step-icon svg { width: 22px; height: 22px; color: #6c3bf4; }
.hiw-step-num { font-size: 13px; font-weight: 700; color: #6c3bf4; margin-bottom: 2px; }
.hiw-step-name { font-size: 14px; font-weight: 600; color: #111; margin-bottom: 4px; }
.hiw-step-desc { font-size: 12px; color: #999; line-height: 1.45; }
.hiw-arrow { display: flex; align-items: center; padding: 12px 8px 0; color: #ddd; }
.hiw-arrow svg { width: 18px; height: 18px; }

/* Right sidebar cards for tool page */
.rs-card { background: #fff; border: 1px solid #f0f0f0; border-radius: 16px; padding: 22px; margin-bottom: 16px; }
.rs-title { font-size: 14px; font-weight: 700; color: #111; margin-bottom: 16px; }
.rs-formats { display: flex; flex-direction: column; gap: 10px; }
.rs-format { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #555; font-weight: 500; }
.rs-format-icon { width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.rs-format-icon svg { width: 14px; height: 14px; }
.rs-format-icon.red { background: #fee2e2; color: #ef4444; }
.rs-format-icon.green { background: #dcfce7; color: #16a34a; }
.rs-format-icon.blue { background: #dbeafe; color: #2563eb; }
.rs-format-icon.purple { background: #ede9fe; color: #6c3bf4; }
.rs-format-icon.orange { background: #ffedd5; color: #f97316; }

.rs-safe { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.rs-safe-icon { width: 28px; height: 28px; background: #f0fdf4; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.rs-safe-icon svg { width: 15px; height: 15px; color: #34c759; }
.rs-safe-title { font-size: 13px; font-weight: 700; color: #111; }
.rs-safe-desc { font-size: 12px; color: #999; line-height: 1.5; }

/* ===== TOOL PAGE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .has-both-sidebars .right-sidebar { display: none; }
  .tool-workspace { flex-direction: column; }
  .tool-settings-panel { width: 100%; }
}

/* ===== AUTH PAGES ===== */
.auth-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 20px 80px;
  min-height: 60vh;
}
.auth-card {
  width: 100%;
  max-width: 440px;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 18px;
  padding: 40px 36px;
}
.auth-card h1 { font-size: 24px; font-weight: 800; color: #111; margin-bottom: 6px; }
.auth-card > p { font-size: 14px; color: #999; margin-bottom: 24px; }

.social-auth-list { margin-bottom: 20px; }
.social-auth-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: border-color .15s, background .15s;
}
.social-auth-list a:hover { border-color: #ccc; background: #fafafa; }

.auth-card__divider {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: #bbb;
  margin-bottom: 20px;
}
.auth-card__divider::before,
.auth-card__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #f0f0f0;
}

.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}
.form-field input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  font-size: 14px;
  color: #333;
  transition: border-color .15s;
  box-sizing: border-box;
}
.form-field input:focus { outline: none; border-color: #6c3bf4; box-shadow: 0 0 0 3px rgba(108,59,244,.08); }

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 16px;
  background: #6c3bf4;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 11px;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  text-decoration: none;
}
.btn-submit:hover { background: #5b2de0; }

.auth-card__alt {
  text-align: center;
  font-size: 13px;
  color: #999;
  margin-top: 18px;
}
.auth-card__alt a { color: #6c3bf4; font-weight: 600; text-decoration: none; }
.auth-card__alt a:hover { opacity: .8; }

.msg--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  color: #dc2626;
  margin-bottom: 16px;
}

/* ===== TOOL LANDING SHARED STYLES ===== */

/* CSS Variables (used by bank_converter inline, now global) */
:root {
  --primary: #6c3bf4;
  --primary-hover: #5b2de0;
  --light: #f7f6fb;
  --border: #e8e5f0;
  --radius: 16px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.06);
  --text: #111;
  --text-soft: #555;
  --text-muted: #999;
  --success: #10b981;
}

/* Container */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* Eyebrow label */
.eyebrow {
  display: inline-block;
  font-family: 'Manrope', 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

/* Highlighted text span */
.highlight {
  background: linear-gradient(135deg, #6c3bf4, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section heading */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  line-height: 1.15;
}
.section-head p {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* Tool simple hero (no upload form, just CTA) */
.tool-simple-hero {
  background: var(--light);
  padding: 80px 0 60px;
  text-align: center;
}
.tool-simple-hero__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}
.tool-simple-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.1;
  margin: 12px 0 18px;
}
.tool-simple-hero p {
  font-size: 19px;
  color: var(--text-soft);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Hero CTA buttons row */
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}

/* Button variants */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  border-radius: 11px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(108, 59, 244, 0.04);
}
.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}
.btn-arrow::after {
  content: →;
  margin-left: 6px;
  transition: transform 0.2s;
}
.btn-arrow:hover::after {
  transform: translateX(3px);
}

/* Features grid (4-column, used by most tools) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}
.feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--light);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.feature-card__icon img {
  width: 24px;
  height: 24px;
}
.feature-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.feature-card p {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* Final CTA section (override old minimal version) */
.final-cta__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.final-cta .eyebrow { margin-bottom: 14px; }
.final-cta .hero__ctas { margin-top: 28px; }

/* FAQ section (button-based, used by bank_converter) */
.faq { padding: 80px 0; }
.faq-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item + .faq-item { border-top: 1px solid var(--border); }
.faq-item__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item__q::after {
  content: +;
  font-size: 20px;
  color: var(--text-muted);
  transition: transform 0.2s;
}
.faq-item.is-open .faq-item__q::after { content: −; }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.is-open .faq-item__a { max-height: 200px; }
.faq-item__a p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
  padding-bottom: 20px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sections spacing */
section { padding: 80px 0; }
section:first-child { padding-top: 0; }

/* ===== RESPONSIVE — TOOL LANDINGS ===== */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .tool-simple-hero { padding: 60px 0 40px; }
  .tool-simple-hero h1 { font-size: 32px; }
}
@media (max-width: 540px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
}

/* Right sidebar upgrade button */
.btn-upgrade-rs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: #6c3bf4;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  margin-top: 12px;
  transition: background .2s;
}
.btn-upgrade-rs:hover { background: #5b2de0; }
.btn-upgrade-rs svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Nav Dropdowns ── */
.nav-dropdown { position: relative; display: flex; align-items: center; }

.nav-dropdown > .nav-item { cursor: pointer; background: none; border: none; font: inherit; }
.nav-dropdown > .nav-item .nav-chevron { transition: transform .2s; }
.nav-dropdown.open > .nav-item .nav-chevron { transform: rotate(180deg); }

.dropdown-panel,
.dropdown-mega {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12); padding: 12px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s, visibility .18s, transform .18s; margin-top: 0;
  transform: translateX(-50%) translateY(8px);
  z-index: 1000;
}
.nav-dropdown.open > .dropdown-panel,
.nav-dropdown.open > .dropdown-mega {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-panel { min-width: 240px; }
.dropdown-mega { display: flex; gap: 8px; min-width: 680px; left: 0; transform: translateY(8px); background: #fff; }
.nav-dropdown.open > .dropdown-mega { transform: translateY(0); background: #fff; }
.dropdown-mega .dropdown-col { flex: 1; min-width: 200px; padding: 4px 8px; }

.dropdown-col-title {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: #999; padding: 4px 8px 8px; margin: 0;
}

.dropdown-link {
  display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: 8px;
  color: #333; font-size: 13.5px; font-weight: 500; text-decoration: none;
  transition: background .15s;
  white-space: nowrap;
}
.dropdown-link:hover { background: #f5f3ff; color: var(--primary); }

.dd-ico {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dd-ico svg { width: 16px; height: 16px; }
