/* Toolhammer Design System — Bold Colorful SaaS (design5-bold-saas.html) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --bg: #FFFFFF;
  --bg2: #F8F9FF;
  --bg3: #F1F3FF;
  --brand: #5046E4;
  --brand2: #7C3AFF;
  --brand3: #0EA5E9;
  --yellow: #F59E0B;
  --green: #10B981;
  --red: #EF4444;
  --pink: #EC4899;
  --orange: #F97316;
  --text1: #0F0A2E;
  --text2: #4B5563;
  --text3: #9CA3AF;
  --border: #E5E7EB;
  --shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 20px rgba(80,70,228,.1);
  --shadow-lg: 0 20px 60px rgba(80,70,228,.15);
  --r: 14px;
}

html {
  scroll-behavior: smooth;
}

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

/* ── NAV ── */
nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}
.logo-sq {
  width: 36px;
  height: 36px;
  background: var(--brand);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(80,70,228,.25);
}
.logo-sq::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.25), transparent);
}
.logo-n {
  font-size: 20px;
  font-weight: 900;
  color: var(--text1);
  letter-spacing: -.6px;
}
.logo-n em {
  font-style: normal;
  color: var(--brand);
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text2);
  padding: 7px 14px;
  border-radius: 8px;
  transition: .15s;
  cursor: pointer;
  text-decoration: none;
}
.nav-links a:hover {
  color: var(--brand);
  background: var(--bg3);
}
.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-selector {
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text1);
  font-family: inherit;
  cursor: pointer;
  outline: none;
  transition: .15s;
}
.lang-selector:focus, .lang-selector:hover {
  border-color: var(--brand);
}
.btn-outline {
  background: none;
  border: 1.5px solid var(--border);
  color: var(--text1);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 9px;
  cursor: pointer;
  font-family: inherit;
  transition: .15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.btn-solid {
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: .15s;
  box-shadow: 0 2px 10px rgba(80,70,228,.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-solid:hover {
  background: var(--brand2);
  box-shadow: 0 4px 20px rgba(80,70,228,.4);
  transform: translateY(-1px);
}

/* ── BREADCRUMB ── */
.breadcrumb {
  max-width: 1200px;
  margin: 16px auto 0;
  padding: 0 32px;
  font-size: 13px;
  color: var(--text3);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--text2);
  text-decoration: none;
  font-weight: 500;
  transition: .15s;
}
.breadcrumb a:hover {
  color: var(--brand);
}
.breadcrumb span.sep {
  font-size: 11px;
  color: var(--text3);
}
.breadcrumb span.current {
  color: var(--text1);
  font-weight: 600;
}

/* ── HERO ── */
.hero {
  padding: 80px 32px 64px;
  text-align: center;
  background: linear-gradient(180deg, #F5F3FF 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 500px at 20% 50%, rgba(80,70,228,.06), transparent),
    radial-gradient(circle 400px at 80% 30%, rgba(14,165,233,.06), transparent);
  pointer-events: none;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 5px 16px;
  margin-bottom: 24px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--brand);
  box-shadow: var(--shadow);
}
.hero-label .pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: p 2s ease infinite;
}
@keyframes p {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,.5); }
  70% { box-shadow: 0 0 0 8px transparent; }
}
h1 {
  font-size: clamp(36px, 6vw, 70px);
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--text1);
}
h1 .hl {
  background: linear-gradient(135deg, var(--brand), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}
h1 .hl::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--pink));
  border-radius: 2px;
  opacity: .4;
}
.hero-sub {
  font-size: 17px;
  color: var(--text2);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* SEARCH BAR */
.hero-search {
  max-width: 580px;
  margin: 0 auto 28px;
}
.search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 6px 6px 6px 18px;
  gap: 8px;
  box-shadow: var(--shadow-md);
  transition: .2s;
}
.search-bar:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(80,70,228,.08), var(--shadow-md);
}
.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--text1);
  background: none;
}
.search-bar input::placeholder {
  color: var(--text3);
}
.search-bar-btn {
  background: var(--brand);
  color: #fff;
  border: none;
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  transition: .15s;
}
.search-bar-btn:hover {
  background: var(--brand2);
}
.popular-searches {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}
.ps {
  font-size: 12.5px;
  color: var(--text3);
}
.ps-tag {
  font-size: 12.5px;
  color: var(--brand);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: .15s;
}
.ps-tag:hover {
  text-decoration: underline;
}

/* PROOF BAR */
.proof-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 32px;
}
.proof-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
}
.proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* CATEGORY QUICK-NAV */
.cat-blocks {
  padding: 64px 32px;
  background: var(--bg2);
}
.cat-blocks-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.cb-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.cb-header h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -1px;
}
.cb-view-all {
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: .15s;
}
.cb-view-all:hover {
  text-decoration: underline;
}
.cat-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.cat-btn {
  border: none;
  border-radius: 12px;
  padding: 14px 12px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  text-decoration: none;
  text-align: center;
}
.cat-btn .cat-ico {
  font-size: 24px;
}
.cat-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.cb1 { background: #EEF2FF; color: #4338CA; }
.cb2 { background: #FFF7ED; color: #C2410C; }
.cb3 { background: #F0FDF4; color: #15803D; }
.cb4 { background: #FDF2F8; color: #9D174D; }
.cb5 { background: #F0F9FF; color: #0369A1; }
.cb6 { background: #FFFBEB; color: #B45309; }
.cb7 { background: #F5F3FF; color: #6D28D9; }
.cb8 { background: #FFF1F2; color: #BE123C; }
.cb9 { background: #ECFDF5; color: #065F46; }
.cb10 { background: #EFF6FF; color: #1D4ED8; }

/* MAIN TOOLS DIRECTORY */
.tools-section {
  padding: 64px 32px;
  background: var(--bg);
}
.ts-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.ts-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.ts-title {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  letter-spacing: -.5px;
  flex: 1;
}
.search-inline {
  display: flex;
  align-items: center;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 8px 14px;
  gap: 8px;
  width: 280px;
}
.search-inline input {
  background: none;
  border: none;
  outline: none;
  font-size: 13.5px;
  font-family: inherit;
  color: var(--text1);
  width: 100%;
}
.search-inline input::placeholder {
  color: var(--text3);
}

.cat-section-block {
  margin-bottom: 44px;
}
.csb-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.csb-colorbar {
  width: 4px;
  height: 22px;
  border-radius: 2px;
}
.csb-title {
  font-size: 16.5px;
  font-weight: 800;
}
.csb-count {
  font-size: 12px;
  font-weight: 600;
  background: var(--bg2);
  color: var(--text3);
  padding: 3px 10px;
  border-radius: 20px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px;
}
.tool-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 18px 16px;
  cursor: pointer;
  transition: all .18s;
  position: relative;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.tool-card:hover {
  border-color: var(--brand);
  box-shadow: 0 6px 24px rgba(80,70,228,.12);
  transform: translateY(-2px);
}
.tc-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.tc-ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
.tc-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 6px;
  text-transform: uppercase;
}
.free-pill { background: #D1FAE5; color: #065F46; }
.new-pill { background: #FEF3C7; color: #92400E; }
.hot-pill { background: #FEE2E2; color: #991B1B; }

.tc-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text1);
  margin-bottom: 4px;
}
.tc-desc {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.45;
}

/* ── TOOL PAGE CONTAINER & WIDGET ── */
.tool-page-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}
.tool-hero-compact {
  text-align: center;
  margin-bottom: 32px;
}
.tool-hero-compact h1 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 12px;
}
.tool-hero-compact p {
  font-size: 16px;
  color: var(--text2);
  max-width: 600px;
  margin: 0 auto 20px;
}
.tool-trust-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text2);
  flex-wrap: wrap;
}
.tool-trust-row span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* TOOL WIDGET CARD */
.tool-widget-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 32px;
  margin-bottom: 40px;
}
.widget-form-group {
  margin-bottom: 20px;
}
.widget-form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text1);
  margin-bottom: 8px;
}
.widget-input, .widget-textarea, .widget-select {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text1);
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  outline: none;
  transition: .15s;
}
.widget-textarea {
  min-height: 140px;
  resize: vertical;
}
.widget-input:focus, .widget-textarea:focus, .widget-select:focus {
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(80,70,228,.1);
}

.widget-dropzone {
  border: 2px dashed var(--border);
  border-radius: 14px;
  padding: 40px 20px;
  text-align: center;
  background: var(--bg2);
  cursor: pointer;
  transition: .2s;
}
.widget-dropzone:hover, .widget-dropzone.dragover {
  border-color: var(--brand);
  background: #F5F3FF;
}
.widget-dropzone .dz-icon {
  font-size: 40px;
  margin-bottom: 12px;
}
.widget-dropzone .dz-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.widget-dropzone .dz-sub {
  font-size: 12.5px;
  color: var(--text3);
}

.widget-btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.btn-action {
  background: var(--brand);
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: .15s;
  box-shadow: 0 3px 12px rgba(80,70,228,.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-action:hover {
  background: var(--brand2);
  box-shadow: 0 6px 20px rgba(80,70,228,.4);
}
.btn-secondary {
  background: var(--bg2);
  color: var(--text1);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  font-family: inherit;
  transition: .15s;
}
.btn-secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
}

/* RESULT OUTPUT */
.widget-result-box {
  margin-top: 24px;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  position: relative;
}
.result-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.result-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.btn-copy {
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--text1);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: .15s;
}
.btn-copy:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.result-content {
  font-family: monospace;
  font-size: 13.5px;
  white-space: pre-wrap;
  word-break: break-all;
  color: var(--text1);
}

/* STATS ROW FOR COUNTERS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.stat-box {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.stat-val {
  font-size: 26px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1.2;
}
.stat-lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--text2);
  margin-top: 4px;
}

/* ADSENSE PLACEHOLDERS */
.ad-slot-container {
  width: 100%;
  min-height: 120px;
  background: var(--bg2);
  border: 1px dashed var(--border);
  border-radius: 12px;
  margin: 32px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text3);
  font-size: 12px;
  font-weight: 600;
  overflow: hidden;
}

/* HIGHLIGHT STRIP */
.highlight-strip {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand2) 50%, var(--pink) 100%);
  padding: 56px 32px;
  text-align: center;
  color: #fff;
}
.hs-inner {
  max-width: 700px;
  margin: 0 auto;
}
.hs-inner h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}
.hs-inner p {
  font-size: 16px;
  opacity: .9;
  margin-bottom: 28px;
  line-height: 1.6;
}
.hs-btn {
  background: #fff;
  color: var(--brand);
  font-size: 15px;
  font-weight: 800;
  padding: 14px 36px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: .15s;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  text-decoration: none;
  display: inline-block;
}
.hs-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

/* FEATURES GRID */
.features-section {
  padding: 64px 32px;
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.feat-card {
  background: var(--bg2);
  border-radius: var(--r);
  padding: 28px 24px;
  border: 1.5px solid transparent;
  transition: .2s;
}
.feat-card:hover {
  border-color: var(--brand);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.feat-ico-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.feat-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feat-card p {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.6;
}

/* HOW IT WORKS */
.how-section {
  padding: 64px 32px;
  background: var(--bg2);
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.how-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.how-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1.5px solid var(--border);
  transition: .2s;
  position: relative;
  overflow: hidden;
}
.how-card::before {
  content: attr(data-n);
  position: absolute;
  top: -10px;
  right: 16px;
  font-size: 80px;
  font-weight: 900;
  color: var(--brand);
  opacity: .05;
  line-height: 1;
}
.how-card:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}
.how-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(80,70,228,.35);
}
.how-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.how-card p {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.6;
}

/* COMPARISON TABLE */
.compare-section {
  padding: 64px 32px;
}
.compare-inner {
  max-width: 820px;
  margin: 0 auto;
}
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 36px;
}
.compare-table thead {
  background: var(--brand);
  color: #fff;
}
.compare-table th {
  padding: 16px 20px;
  font-size: 13.5px;
  font-weight: 700;
  text-align: center;
}
.compare-table th:first-child {
  text-align: left;
}
.compare-table tbody tr {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.compare-table tbody tr:last-child {
  border-bottom: none;
}
.compare-table td {
  padding: 14px 20px;
  font-size: 13.5px;
  text-align: center;
}
.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text1);
}
.check { color: var(--green); font-size: 18px; font-weight: 700; }
.cross { color: var(--red); font-size: 18px; }
.compare-table .highlighted { background: #F5F3FF; }
.compare-table .highlighted td:nth-child(2) { font-weight: 800; color: var(--brand); }

/* SEO CONTENT SECTION */
.seo-section {
  padding: 64px 32px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.seo-inner {
  max-width: 860px;
  margin: 0 auto;
}
.seo-inner h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.3px;
  margin-bottom: 16px;
  margin-top: 28px;
}
.seo-inner h2:first-child {
  margin-top: 0;
}
.seo-inner h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px;
}
.seo-inner p {
  font-size: 14.5px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 16px;
}
.seo-inner ul, .seo-inner ol {
  margin: 0 0 20px 24px;
  color: var(--text2);
  font-size: 14.5px;
  line-height: 1.8;
}

/* FAQ ACCORDION */
.faq-block {
  margin-top: 40px;
}
.faq-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text1);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: '＋';
  font-size: 18px;
  color: var(--brand);
  font-weight: 800;
}
.faq-item.active .faq-question::after {
  content: '－';
}
.faq-answer {
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  display: none;
}
.faq-item.active .faq-answer {
  display: block;
}

/* FOOTER */
footer {
  background: var(--text1);
  color: rgba(255,255,255,.6);
  padding: 64px 32px 32px;
}
.ft-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.ft-brand .logo-n {
  color: #fff;
  font-size: 18px;
}
.ft-brand p {
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}
.ft-col h4 {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 18px;
}
.ft-col a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
  cursor: pointer;
  transition: .15s;
  text-decoration: none;
}
.ft-col a:hover {
  color: #fff;
}
.ft-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

/* COOKIE CONSENT */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 440px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,.15);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-banner p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.5;
}
.cookie-banner-actions {
  display: flex;
  gap: 8px;
}


/* ── 3D CANVAS & LIVE SEARCH ENHANCEMENTS ── */
.hero {
  position: relative;
  overflow: visible;
}
.hero > *:not(#hero-3d-canvas) {
  position: relative;
  z-index: 10;
}
#hero-3d-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.75;
}

.hero-search {
  position: relative;
  z-index: 50;
}
.search-bar-wrapper {
  position: relative;
  width: 100%;
  z-index: 100;
}
.search-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(15, 10, 46, 0.22);
  max-height: 380px;
  overflow-y: auto;
  display: none;
  z-index: 99999;
  text-align: left;
  padding: 8px;
}
.search-dropdown.active {
  display: block;
  animation: fadeInDown 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text1);
  transition: all 0.15s ease;
  cursor: pointer;
}
.search-item:hover, .search-item.highlighted {
  background: var(--bg2);
  transform: translateX(3px);
}
.search-item-ico {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.search-item-content {
  flex: 1;
  min-width: 0;
}
.search-item-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--text1);
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-item-badge {
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 6px;
  background: #EEF2FF;
  color: var(--brand);
  text-transform: uppercase;
}
.search-item-desc {
  font-size: 12.5px;
  color: var(--text2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-no-results {
  padding: 16px;
  text-align: center;
  color: var(--text3);
  font-size: 13.5px;
  font-weight: 600;
}

/* ── FEATURED SNIPPET & HOW-TO GUIDE STYLES ── */
.featured-snippet-box {
  background: linear-gradient(135deg, #EEF2FF 0%, #F5F3FF 100%);
  border: 1.5px solid rgba(80, 70, 228, 0.2);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 20px auto 24px;
  max-width: 680px;
  text-align: left;
  box-shadow: 0 4px 16px rgba(80, 70, 228, 0.06);
}
.fs-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.fs-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text1);
  font-weight: 500;
}

/* HOW-TO SECTION */
.how-to-section {
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}
.how-to-section h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text1);
}
.how-to-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.how-to-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-content {
  flex: 1;
}
.step-content strong {
  display: block;
  font-size: 15px;
  color: var(--text1);
  margin-bottom: 4px;
}
.step-content p {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.5;
}

/* CLS PREVENTION FOR AD SLOTS */
.ad-slot-container {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg2);
  border: 1px dashed var(--border);
  border-radius: 12px;
  margin: 32px 0;
  color: var(--text3);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}
