/* ================================================================
   AXXENTO THEME – main.css
   Version: 1.1.0
   Design system: Primary #37f7e1 · Secondary #8E94F2 · Gilroy
   ================================================================ */

/* ================================================================
   1. DESIGN TOKENS
   ================================================================ */

:root {
  /* Colors */
  --ax-primary:     #37f7e1;
  --ax-secondary:   #8E94F2;
  --ax-black:       #000000;
  --ax-white:       #ffffff;
  --ax-muted:       #f5f5f5;
  --ax-muted-fg:    #737373;
  --ax-border:      #e5e5e5;

  /* Typography */
  --ax-font:        'Gilroy', system-ui, -apple-system, sans-serif;
  --ax-size-xs:     13px;
  --ax-size-sm:     15px;
  --ax-size-base:   16px;
  --ax-size-body:   20px;
  --ax-size-lg:     22px;
  --ax-lh:          1.6;

  /* Spacing & Radius */
  --ax-radius:      8px;
  --ax-radius-lg:   16px;
  --ax-radius-xl:   24px;
  --ax-radius-pill: 999px;

  /* Layout */
  --ax-container:   1200px;
  --ax-px:          48px;
  --ax-header-h:    80px;
}

@media (max-width: 768px) {
  :root { --ax-px: 24px; }
}

/* ================================================================
   2. GILROY FONT FACES
   Place fonts in: /wp-content/themes/axxento/assets/fonts/
   ================================================================ */

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Light.ttf') format('truetype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Heavy.ttf') format('truetype');
  font-weight: 900; font-style: normal; font-display: swap;
}

/* ================================================================
   3. RESET & BASE
   ================================================================ */

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

html {
  font-family: var(--ax-font);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--ax-font);
  font-size: var(--ax-size-body);
  font-weight: 300;
  line-height: var(--ax-lh);
  color: var(--ax-black);
  background: var(--ax-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ax-font);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ax-black);
  margin: 0;
}

h1 { font-weight: 900; }

p { margin: 0 0 1em; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol { list-style: none; padding: 0; margin: 0; }
button { font-family: var(--ax-font); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--ax-font); }

/* Accessibility: skip link */
.ax-skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 12px 24px;
  background: var(--ax-primary);
  color: var(--ax-black);
  font-weight: 700;
  z-index: 99999;
  transition: top 0.2s;
}
.ax-skip-link:focus { top: 0; }

/* ================================================================
   4. LAYOUT HELPERS
   ================================================================ */

.ax-container {
  width: 100%;
  max-width: var(--ax-container);
  margin: 0 auto;
  padding: 0 var(--ax-px);
}

.ax-main { min-height: 60vh; }

.ax-header-spacer { height: var(--ax-header-h); }

/* ================================================================
   5. BUTTONS
   ================================================================ */

.ax-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--ax-radius-pill);
  font-size: var(--ax-size-base);
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.ax-btn-primary {
  background: var(--ax-black);
  color: var(--ax-white);
}
.ax-btn-primary:hover {
  background: var(--ax-primary);
  color: var(--ax-black);
  box-shadow: 0 8px 30px -4px rgba(55, 247, 225, 0.6);
}

.ax-btn-accent {
  background: var(--ax-primary);
  color: var(--ax-black);
}
.ax-btn-accent:hover {
  background: rgba(55, 247, 225, 0.8);
}

.ax-btn-muted {
  background: var(--ax-muted);
  color: var(--ax-black);
}
.ax-btn-muted:hover {
  background: var(--ax-black);
  color: var(--ax-white);
}

.ax-btn-ghost {
  background: transparent;
  color: var(--ax-black);
  border: 1px solid var(--ax-border);
}
.ax-btn-ghost:hover {
  border-color: var(--ax-black);
}

/* ================================================================
   6. BADGES
   ================================================================ */

.ax-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--ax-radius-pill);
  font-size: var(--ax-size-xs);
  font-weight: 500;
  background: var(--ax-muted);
  color: var(--ax-black);
  border: 1px solid var(--ax-border);
}

.ax-badge-accent {
  background: rgba(55, 247, 225, 0.2);
  border-color: rgba(55, 247, 225, 0.4);
}

.ax-badge-free     { background: rgba(55, 247, 225, 0.2); }
.ax-badge-freemium { background: var(--ax-muted); }
.ax-badge-paid     { background: rgba(0, 0, 0, 0.08); }

/* ================================================================
   7. READING PROGRESS BAR
   ================================================================ */

#ax-reading-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: var(--ax-primary);
  z-index: 99999;
  transition: width 0.1s linear;
}

/* ================================================================
   8. HEADER & NAVIGATION
   ================================================================ */

.ax-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--ax-header-h);
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ax-header.is-scrolled {
  border-bottom-color: var(--ax-border);
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.06);
}

.ax-header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}

.ax-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.ax-header__logo img { height: 36px; width: auto; }

.ax-header__nav { flex: 1; }

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

.ax-nav-menu li { position: relative; }

.ax-nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: var(--ax-size-body);
  font-weight: 300;
  color: var(--ax-black);
  border-radius: var(--ax-radius);
  transition: background 0.2s ease, color 0.2s ease;
}
.ax-nav-menu > li > a:hover { color: var(--ax-muted-fg); }

/* Dropdown */
.ax-nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--ax-white);
  border-radius: var(--ax-radius-lg);
  box-shadow: 0 8px 30px -4px rgba(0, 0, 0, 0.12);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ax-nav-menu li:hover > .sub-menu,
.ax-nav-menu li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.ax-nav-menu .sub-menu a {
  display: block;
  padding: 8px 12px;
  font-size: var(--ax-size-base);
  font-weight: 300;
  color: var(--ax-muted-fg);
  border-radius: var(--ax-radius);
  transition: color 0.2s ease, background 0.2s ease;
}
.ax-nav-menu .sub-menu a:hover { color: var(--ax-black); background: var(--ax-muted); }

/* Header actions */
.ax-header__actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ax-header__cta { padding: 10px 20px; font-size: var(--ax-size-base); }

/* Hamburger */
.ax-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  border-radius: var(--ax-radius);
  transition: background 0.2s;
}
.ax-hamburger:hover { background: var(--ax-muted); }
.ax-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ax-black);
  transition: transform 0.3s, opacity 0.3s;
}
.ax-hamburger.is-open span:first-child { transform: translateY(7.5px) rotate(45deg); }
.ax-hamburger.is-open span:last-child  { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */
.ax-mobile-menu {
  display: none;
  position: fixed;
  top: var(--ax-header-h);
  left: 0; right: 0;
  background: var(--ax-white);
  border-top: 1px solid var(--ax-border);
  padding: 24px var(--ax-px);
  z-index: 99;
  box-shadow: 0 8px 30px -4px rgba(0, 0, 0, 0.1);
}
.ax-mobile-menu.is-open { display: block; }

.ax-mobile-nav-menu { display: flex; flex-direction: column; gap: 4px; }
.ax-mobile-nav-menu a {
  display: block;
  padding: 10px 0;
  font-size: var(--ax-size-body);
  font-weight: 300;
  border-bottom: 1px solid var(--ax-border);
}
.ax-mobile-nav-menu .sub-menu { padding-left: 16px; }
.ax-mobile-cta { margin-top: 20px; width: 100%; justify-content: center; }

@media (max-width: 1024px) {
  .ax-header__nav { display: none; }
  .ax-hamburger { display: flex; }
}

/* ================================================================
   9. HERO SECTION (Home)
   ================================================================ */

.ax-hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
  text-align: center;
}

.ax-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.ax-hero__blob--1 {
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(55, 247, 225, 0.15);
}
.ax-hero__blob--2 {
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(55, 247, 225, 0.10);
}

.ax-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.ax-hero__title {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.ax-hero__subtitle {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 300;
  color: var(--ax-muted-fg);
  max-width: 600px;
  margin: 0 auto;
}

/* ================================================================
   10. BLOG LISTING – Cards & Grid
   ================================================================ */

.ax-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
}

@media (max-width: 1024px) {
  .ax-posts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ax-posts-grid { grid-template-columns: 1fr; }
}

.ax-post-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--ax-radius-xl);
  overflow: hidden;
  background: var(--ax-white);
  transition: transform 0.3s ease;
}
.ax-post-card:hover { transform: translateY(-4px); }

.ax-post-card__image {
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.ax-post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.5s ease;
}
.ax-post-card:hover .ax-post-card__image img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.ax-post-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 0;
}

.ax-post-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}
.ax-post-card__title a { color: var(--ax-black); }
.ax-post-card__title a:hover { color: var(--ax-muted-fg); }

.ax-post-card__excerpt {
  font-size: var(--ax-size-base);
  font-weight: 300;
  color: var(--ax-muted-fg);
  line-height: var(--ax-lh);
}

.ax-post-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--ax-size-xs);
  font-weight: 300;
  color: var(--ax-muted-fg);
}

/* ================================================================
   11. BLOG POST SINGLE
   ================================================================ */

.ax-post-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--ax-border);
  margin-bottom: 48px;
}

.ax-post-hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-size: var(--ax-size-sm);
  color: var(--ax-muted-fg);
}

.ax-post-hero__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 32px;
}

.ax-post-hero__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ax-post-hero__avatar {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  object-fit: cover;
}

.ax-post-hero__author-name {
  display: block;
  font-size: var(--ax-size-sm);
  font-weight: 500;
}
.ax-post-hero__date {
  display: block;
  font-size: var(--ax-size-xs);
  color: var(--ax-muted-fg);
  font-weight: 300;
}

.ax-post-featured-image {
  margin-bottom: 48px;
}
.ax-post-featured-image__img {
  width: 100%;
  border-radius: var(--ax-radius-xl);
  object-fit: cover;
}

/* Post layout: content + sidebar */
.ax-post-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  padding-bottom: 80px;
}
@media (max-width: 1024px) {
  .ax-post-layout { grid-template-columns: 1fr; }
  .ax-post-layout__sidebar { order: -1; }
}

/* ================================================================
   12. PROSE CONTENT (Blog articles)
   ================================================================ */

.ax-prose h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 48px 0 16px;
}
.ax-prose h2:first-child { margin-top: 0; }

.ax-prose h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 32px 0 12px;
}

.ax-prose p {
  font-size: var(--ax-size-body);
  font-weight: 300;
  color: var(--ax-muted-fg);
  line-height: var(--ax-lh);
  margin-bottom: 24px;
}

.ax-prose ul, .ax-prose ol {
  font-size: var(--ax-size-body);
  font-weight: 300;
  color: var(--ax-muted-fg);
  line-height: var(--ax-lh);
  padding-left: 24px;
  margin-bottom: 24px;
  list-style: disc;
}
.ax-prose ol { list-style: decimal; }
.ax-prose li { margin-bottom: 8px; }

.ax-prose strong { font-weight: 700; color: var(--ax-black); }
.ax-prose em { font-style: italic; }

.ax-prose a {
  font-weight: 700;
  color: var(--ax-black);
  background-image: linear-gradient(to right, var(--ax-primary), var(--ax-primary));
  background-size: 100% 3px;
  background-repeat: no-repeat;
  background-position: 0 85%;
  transition: background-size 0.2s ease;
}
.ax-prose a:hover { background-size: 100% 4px; }

/* Blockquote */
.ax-prose blockquote,
.ax-blockquote {
  position: relative;
  text-align: center;
  padding: 48px 64px;
  margin: 48px 0;
}
.ax-prose blockquote::before,
.ax-blockquote::before {
  content: '„';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 120px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.1);
  line-height: 1;
  pointer-events: none;
}
.ax-prose blockquote p {
  font-size: 24px;
  font-weight: 700;
  color: var(--ax-black);
  line-height: 1.3;
}

/* Tag list */
.ax-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.ax-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--ax-radius-pill);
  font-size: var(--ax-size-xs);
  font-weight: 400;
  color: var(--ax-muted-fg);
  border: 1px solid var(--ax-border);
  transition: border-color 0.2s, color 0.2s;
}
.ax-tag:hover { border-color: var(--ax-black); color: var(--ax-black); }

/* ================================================================
   13. BLOG CALLOUT BOXES
   ================================================================ */

.ax-callout {
  border-radius: var(--ax-radius-lg);
  padding: 20px 24px;
  margin: 32px 0;
  border: 1px solid;
  font-size: var(--ax-size-body);
  font-weight: 300;
  line-height: var(--ax-lh);
}
.ax-callout__title {
  font-size: var(--ax-size-base);
  font-weight: 700;
  color: var(--ax-black);
  margin-bottom: 8px;
}
.ax-callout__content { color: var(--ax-muted-fg); }

.ax-callout-tip     { background: rgba(55,247,225,0.10); border-color: rgba(55,247,225,0.30); }
.ax-callout-note    { background: rgba(55,247,225,0.05); border-color: rgba(55,247,225,0.20); }
.ax-callout-info    { background: rgba(55,247,225,0.08); border-color: rgba(55,247,225,0.25); }
.ax-callout-success { background: rgba(55,247,225,0.15); border-color: rgba(55,247,225,0.40); }

/* Inline CTA */
.ax-inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border-radius: var(--ax-radius-xl);
  background: var(--ax-muted);
  margin: 32px 0;
}
@media (max-width: 640px) {
  .ax-inline-cta { flex-direction: column; align-items: flex-start; }
}
.ax-inline-cta__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.ax-inline-cta__desc { font-size: var(--ax-size-base); font-weight: 300; color: var(--ax-muted-fg); }

/* Sidebar CTA */
.ax-sidebar-cta {
  padding: 24px;
  border-radius: var(--ax-radius-xl);
  background: var(--ax-muted);
}
.ax-sidebar-cta__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.ax-sidebar-cta__desc {
  font-size: var(--ax-size-base);
  font-weight: 300;
  color: var(--ax-muted-fg);
  margin-bottom: 16px;
}
.ax-sidebar-cta .ax-btn { width: 100%; justify-content: center; }

/* ================================================================
   14. TOOLS LISTING – Cards & Grid
   ================================================================ */

.ax-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .ax-tools-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .ax-tools-grid { grid-template-columns: 1fr; } }

.ax-tool-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: var(--ax-radius-xl);
  background: var(--ax-white);
  border: 1px solid var(--ax-border);
  transition: border-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.ax-tool-card:hover { border-color: rgba(0,0,0,0.3); transform: translateY(-2px); }

.ax-tool-card__header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.ax-tool-card__logo {
  width: 48px;
  height: 48px;
  border-radius: var(--ax-radius-lg);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--ax-muted);
}
.ax-tool-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s;
}
.ax-tool-card:hover .ax-tool-card__logo img { filter: grayscale(0%); }

.ax-tool-card__name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.ax-tool-card__desc {
  font-size: var(--ax-size-base);
  font-weight: 300;
  color: var(--ax-muted-fg);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Category tab bar */
.ax-category-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--ax-border);
  overflow-x: auto;
  scrollbar-width: none;
}
.ax-category-tabs::-webkit-scrollbar { display: none; }

.ax-category-tab {
  position: relative;
  white-space: nowrap;
  padding: 12px 20px;
  font-size: var(--ax-size-body);
  font-weight: 300;
  color: var(--ax-muted-fg);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.ax-category-tab:hover { color: var(--ax-black); }
.ax-category-tab.active { color: var(--ax-black); border-bottom-color: var(--ax-primary); }

/* Featured Tools */
.ax-featured-tools {
  padding: 48px;
  background: var(--ax-muted);
  border-radius: var(--ax-radius-xl);
  margin-bottom: 48px;
}

.ax-featured-tools__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: var(--ax-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ax-featured-tools__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .ax-featured-tools__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .ax-featured-tools__grid { grid-template-columns: 1fr; } }

.ax-featured-tool-card {
  padding: 20px;
  border-radius: var(--ax-radius-xl);
  background: var(--ax-white);
  border: 1px solid var(--ax-border);
  transition: border-color 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.ax-featured-tool-card:hover { border-color: rgba(55, 247, 225, 0.5); }

.ax-featured-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--ax-radius-pill);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(55, 247, 225, 0.15);
  color: var(--ax-black);
  margin-bottom: 12px;
}

/* ================================================================
   15. TOOL DETAIL – SINGLE TOOL PAGE (v1.1.0)
   ================================================================ */

/* Breadcrumb */
.ax-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--ax-size-base);
  font-weight: 300;
  color: var(--ax-muted-fg);
  margin-bottom: 32px;
}
.ax-breadcrumb a { transition: color 0.2s; }
.ax-breadcrumb a:hover { color: var(--ax-black); }
.ax-breadcrumb__sep { color: var(--ax-border); }
.ax-breadcrumb__current { color: var(--ax-black); }

/* Hero: 2-column grid */
.ax-tool-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .ax-tool-hero-grid { grid-template-columns: 1fr; }
}

/* Left column */
.ax-tool-hero-info { display: flex; flex-direction: column; }

/* Logo: 64×64 / 80×80, grayscale */
.ax-tool-logo-wrap {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}
.ax-tool-logo-img {
  width: 64px;
  height: 64px;
  border-radius: var(--ax-radius-xl);
  overflow: hidden;
  background: var(--ax-muted);
  flex-shrink: 0;
}
.ax-tool-logo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.ax-tool-logo-wrap:hover .ax-tool-logo-img img { filter: grayscale(0%); }

.ax-tool-hero__name {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 4px;
}

/* Star rating */
.ax-star-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}
.ax-star { color: var(--ax-primary); font-size: 18px; }
.ax-star--empty { color: var(--ax-muted-fg); opacity: 0.3; }
.ax-star-value { font-size: var(--ax-size-base); font-weight: 300; color: var(--ax-muted-fg); margin-left: 4px; }

/* Description + expand toggle */
.ax-tool-description {
  font-size: 18px;
  font-weight: 300;
  line-height: var(--ax-lh);
  margin-bottom: 8px;
}
.ax-tool-description-expand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--ax-size-sm);
  font-weight: 500;
  color: var(--ax-black);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}
.ax-tool-description-expand:hover { color: var(--ax-muted-fg); }

/* Right: Hero image */
.ax-tool-hero-image {
  border-radius: var(--ax-radius-xl);
  overflow: hidden;
  background: var(--ax-muted);
  min-height: 300px;
}
.ax-tool-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sticky Tab Navigation */
.ax-tool-sticky-nav {
  position: sticky;
  top: var(--ax-header-h);
  z-index: 40;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 32px;
  transition: box-shadow 0.3s ease;
}
.ax-tool-sticky-nav.is-stuck {
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.08);
}

.ax-tool-sticky-nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid var(--ax-border);
  padding: 0 0;
}
.ax-tool-sticky-nav-inner::-webkit-scrollbar { display: none; }

.ax-tool-nav-tab {
  white-space: nowrap;
  font-size: var(--ax-size-body);
  font-weight: 300;
  padding: 14px 16px;
  margin-bottom: -1px;
  border-bottom: 2px solid transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  color: var(--ax-muted-fg);
  background: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.ax-tool-nav-tab:hover { color: var(--ax-black); }
.ax-tool-nav-tab.active { color: var(--ax-black); border-bottom-color: var(--ax-primary); }

/* Spacer between tabs and CTA */
.ax-tool-sticky-nav-spacer { flex: 1; }

/* Dual CTA pill */
.ax-tool-sticky-nav-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  background: var(--ax-muted);
  border-radius: var(--ax-radius-pill);
  padding: 4px;
  margin-left: 16px;
  margin-right: 8px;
}
.ax-tool-sticky-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--ax-radius-pill);
  background: var(--ax-primary);
  color: var(--ax-black);
  font-size: var(--ax-size-xs);
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
}
.ax-tool-sticky-cta-primary:hover { background: rgba(55, 247, 225, 0.8); }

.ax-tool-sticky-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--ax-radius-pill);
  color: var(--ax-black);
  font-size: var(--ax-size-xs);
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
}
.ax-tool-sticky-cta-secondary:hover { background: rgba(55, 247, 225, 0.2); }

/* Content grid: 2/3 main + 1/3 facts */
.ax-tool-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px 64px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .ax-tool-content-grid { grid-template-columns: 1fr; }
}

/* "Weitere Funktionen" pill tags */
.ax-tool-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.ax-tool-feature-pill {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: var(--ax-radius-pill);
  background: var(--ax-muted);
  font-size: var(--ax-size-body);
  font-weight: 300;
  color: var(--ax-black);
}

/* ================================================================
   16. TOOL FEATURES – 3-column category grid (v1.1.0)
   ================================================================ */

.ax-tool-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .ax-tool-features-grid { grid-template-columns: 1fr; }
}

.ax-tool-features-category { display: flex; flex-direction: column; }

.ax-tool-features-title {
  font-size: var(--ax-size-xs);
  font-weight: 700;
  color: var(--ax-black);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.ax-tool-feature-list { display: flex; flex-direction: column; gap: 2px; }

.ax-tool-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 8px;
  margin: 0 -8px;
  font-size: var(--ax-size-body);
  font-weight: 300;
  color: var(--ax-black);
  border-radius: var(--ax-radius);
}
.ax-tool-feature-item__icon { flex-shrink: 0; color: var(--ax-muted-fg); width: 16px; height: 16px; }

/* ================================================================
   17. TOOL FACTS CARD
   ================================================================ */

.ax-tool-facts-card {
  padding: 24px;
  border: 1px solid var(--ax-border);
  border-radius: var(--ax-radius-xl);
  background: var(--ax-white);
}
.ax-tool-facts-card__logo {
  width: 80px;
  height: 80px;
  border-radius: var(--ax-radius-xl);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--ax-muted);
}
.ax-tool-facts-card__logo img { width: 100%; height: 100%; object-fit: cover; }
.ax-tool-facts-card__name { font-size: 20px; font-weight: 700; margin-bottom: 4px; }

.ax-tool-facts-list { margin: 16px 0; display: flex; flex-direction: column; gap: 12px; }
.ax-tool-fact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: var(--ax-size-base);
  font-weight: 300;
  border-bottom: 1px solid var(--ax-border);
  padding-bottom: 12px;
}
.ax-tool-fact-label { color: var(--ax-muted-fg); }
.ax-tool-fact-value { font-weight: 500; text-align: right; }
.ax-tool-fact-cta { border-bottom: none; padding-bottom: 0; justify-content: center; }
.ax-tool-fact-cta .ax-btn { width: 100%; justify-content: center; }

/* ================================================================
   18. TOOL PRICING – 4-column grid (v1.1.0)
   ================================================================ */

.ax-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .ax-pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .ax-pricing-grid { grid-template-columns: 1fr; } }

.ax-pricing-card {
  position: relative;
  padding: 24px;
  border-radius: var(--ax-radius-xl);
  border: 1px solid var(--ax-border);
  background: var(--ax-white);
  transition: border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.ax-pricing-card:hover { border-color: rgba(0, 0, 0, 0.25); }

/* Dark highlighted card */
.ax-pricing-card--highlighted {
  background: var(--ax-black);
  border-color: var(--ax-black);
  transform: scale(1.02);
  box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.3);
  color: var(--ax-white);
}
.ax-pricing-card--highlighted h4,
.ax-pricing-card--highlighted p,
.ax-pricing-card--highlighted span,
.ax-pricing-card--highlighted li { color: var(--ax-white); }

/* "Beliebt" badge */
.ax-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: var(--ax-radius-pill);
  background: var(--ax-primary);
  color: var(--ax-black);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.ax-pricing-tier-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.ax-pricing-tier-desc { font-size: var(--ax-size-xs); font-weight: 300; color: var(--ax-muted-fg); margin-bottom: 12px; }
.ax-pricing-card--highlighted .ax-pricing-tier-desc { color: rgba(255,255,255,0.7); }

.ax-pricing-price { font-size: 32px; font-weight: 700; margin-bottom: 4px; }
.ax-pricing-period { font-size: 14px; font-weight: 300; color: var(--ax-muted-fg); margin-bottom: 24px; }
.ax-pricing-card--highlighted .ax-pricing-period { color: rgba(255,255,255,0.6); }

.ax-pricing-features { flex: 1; list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 8px; }
.ax-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  font-weight: 300;
}
.ax-pricing-features .check { color: var(--ax-primary); flex-shrink: 0; margin-top: 2px; }
.ax-pricing-features .x    { color: var(--ax-muted-fg); opacity: 0.5; flex-shrink: 0; margin-top: 2px; }
.ax-pricing-features .not-included { opacity: 0.5; }

.ax-pricing-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  border-radius: var(--ax-radius-pill);
  font-size: 14px;
  font-weight: 500;
  background: var(--ax-muted);
  color: var(--ax-black);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ax-pricing-btn:hover { background: var(--ax-black); color: var(--ax-white); }
.ax-pricing-card--highlighted .ax-pricing-btn { background: var(--ax-primary); color: var(--ax-black); }
.ax-pricing-card--highlighted .ax-pricing-btn:hover { background: rgba(55,247,225,0.8); }

.ax-pricing-disclaimer { text-align: center; font-size: var(--ax-size-xs); color: var(--ax-muted-fg); margin-top: 16px; }
.ax-pricing-disclaimer a { text-decoration: underline; }

/* ================================================================
   19. TOOL PROS & CONS
   ================================================================ */

.ax-pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 640px) { .ax-pros-cons-grid { grid-template-columns: 1fr; } }

.ax-pros-card {
  padding: 24px;
  border-radius: var(--ax-radius-xl);
  background: rgba(55, 247, 225, 0.07);
  border: 1px solid rgba(55, 247, 225, 0.25);
}
.ax-cons-card {
  padding: 24px;
  border-radius: var(--ax-radius-xl);
  background: var(--ax-muted);
  border: 1px solid var(--ax-border);
}

.ax-pros-cons__title {
  font-size: var(--ax-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.ax-pros-cons__list { display: flex; flex-direction: column; gap: 10px; }
.ax-pros-cons__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--ax-size-base);
  font-weight: 300;
}
.ax-pros-cons__icon { flex-shrink: 0; margin-top: 2px; }
.ax-pros-cons__icon--check { color: var(--ax-primary); }
.ax-pros-cons__icon--x { color: var(--ax-muted-fg); }

/* ================================================================
   20. TOOL CTA SECTIONS (v1.1.0)
   ================================================================ */

/* Primary "Kostenlos testen" CTA box */
.ax-tool-cta-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--ax-radius-xl);
  padding: 40px;
  margin-bottom: 40px;
  background: rgba(55, 247, 225, 0.10);
}

/* Decorative blobs */
.ax-tool-cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.ax-tool-cta-blob--1 { top: 0; left: 25%; width: 256px; height: 256px; background: rgba(55,247,225,0.20); }
.ax-tool-cta-blob--2 { bottom: 0; right: 25%; width: 192px; height: 192px; background: rgba(55,247,225,0.15); }
.ax-tool-cta-blob--3 { top: 50%; right: 33%; width: 128px; height: 128px; background: rgba(55,247,225,0.25); }

/* Badge: top-right, turquoise, pill with cut corners */
.ax-tool-cta-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  z-index: 2;
  background: var(--ax-primary);
  color: var(--ax-black);
  font-size: var(--ax-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 20px;
  border-bottom-left-radius: var(--ax-radius-lg);
  border-top-right-radius: var(--ax-radius-xl);
  box-shadow: 0 4px 12px -2px rgba(55, 247, 225, 0.4);
}

.ax-tool-cta-box-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.ax-tool-cta-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ax-primary);
  margin-bottom: 16px;
}

.ax-tool-cta-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.ax-tool-cta-heading {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.ax-tool-cta-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: var(--ax-radius-pill);
  background: var(--ax-black);
  color: var(--ax-white);
  font-size: var(--ax-size-base);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.ax-tool-cta-btn:hover {
  background: var(--ax-primary);
  color: var(--ax-black);
  box-shadow: 0 8px 30px -4px rgba(55, 247, 225, 0.6);
}

@media (max-width: 768px) {
  .ax-tool-cta-box-inner { flex-direction: column; align-items: flex-start; }
}

/* "Für Anbieter" CTA */
.ax-tool-cta-anbieter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  margin-bottom: 40px;
  border-top: 1px solid var(--ax-border);
}

.ax-tool-cta-anbieter__label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.ax-tool-cta-anbieter__text {
  font-size: var(--ax-size-body);
  font-weight: 300;
}

.ax-tool-cta-anbieter-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: var(--ax-radius-pill);
  background: var(--ax-muted);
  color: var(--ax-black);
  font-size: var(--ax-size-base);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.ax-tool-cta-anbieter-btn:hover { background: var(--ax-black); color: var(--ax-white); }

@media (max-width: 768px) {
  .ax-tool-cta-anbieter { flex-direction: column; align-items: flex-start; }
}

/* ================================================================
   21. LEXIKON
   ================================================================ */

/* Alphabet Navigation */
.ax-alphabet-nav {
  position: sticky;
  top: var(--ax-header-h);
  z-index: 30;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ax-border);
  padding: 12px 0;
}

.ax-alphabet-nav-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.ax-alphabet-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--ax-radius);
  font-size: var(--ax-size-sm);
  font-weight: 500;
  color: var(--ax-black);
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.ax-alphabet-btn:hover,
.ax-alphabet-btn.active { background: var(--ax-black); color: var(--ax-white); }
.ax-alphabet-btn.disabled { color: rgba(0, 0, 0, 0.25); cursor: default; pointer-events: none; }

/* Letter group */
.ax-lexikon-letter-section { margin-bottom: 48px; scroll-margin-top: 160px; }

.ax-lexikon-letter-heading {
  font-size: 36px;
  font-weight: 700;
  border-bottom: 1px solid var(--ax-border);
  padding-bottom: 12px;
  margin-bottom: 24px;
}

/* Entries grid */
.ax-lexikon-entries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 1024px) { .ax-lexikon-entries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .ax-lexikon-entries-grid { grid-template-columns: 1fr; } }

.ax-lexikon-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 17px;
  font-weight: 300;
  color: var(--ax-black);
  text-decoration: none;
  transition: border-color 0.2s ease;
}
.ax-lexikon-entry:hover { border-color: var(--ax-primary); }
.ax-lexikon-entry svg { color: var(--ax-muted-fg); transition: transform 0.2s ease, color 0.2s ease; }
.ax-lexikon-entry:hover svg { color: var(--ax-primary); transform: translateX(4px); }

/* ================================================================
   22. FOOTER
   ================================================================ */

.ax-footer {
  background: var(--ax-white);
  border-top: 1px solid var(--ax-border);
  padding-top: 64px;
}

.ax-footer__inner {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 64px;
}
@media (max-width: 1024px) { .ax-footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .ax-footer__inner { grid-template-columns: 1fr; } }

.ax-footer__logo img { height: 32px; width: auto; margin-bottom: 12px; }
.ax-footer__site-name { font-size: 20px; font-weight: 700; }
.ax-footer__tagline { font-size: var(--ax-size-sm); font-weight: 300; color: var(--ax-muted-fg); }

.ax-footer__nav-title {
  font-size: var(--ax-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ax-muted-fg);
  margin-bottom: 16px;
}

.ax-footer__nav-list { display: flex; flex-direction: column; gap: 10px; }
.ax-footer__nav-list a {
  font-size: var(--ax-size-base);
  font-weight: 300;
  color: var(--ax-muted-fg);
  transition: color 0.2s;
}
.ax-footer__nav-list a:hover { color: var(--ax-black); }

/* Bottom bar */
.ax-footer__bottom {
  border-top: 1px solid var(--ax-border);
  padding: 20px 0;
}
.ax-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.ax-footer__made-in {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--ax-size-xs);
  font-weight: 300;
  color: var(--ax-muted-fg);
}
.ax-footer__heart { width: 14px; height: 14px; color: #ef4444; }

.ax-footer__social { display: flex; align-items: center; gap: 8px; }
.ax-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--ax-border);
  color: var(--ax-muted-fg);
  transition: border-color 0.2s, color 0.2s;
}
.ax-footer__social-link svg { width: 16px; height: 16px; }
.ax-footer__social-link:hover { border-color: var(--ax-black); color: var(--ax-black); }

.ax-footer__legal { display: flex; align-items: center; gap: 20px; }
.ax-footer__legal a { font-size: var(--ax-size-xs); font-weight: 300; color: var(--ax-muted-fg); transition: color 0.2s; }
.ax-footer__legal a:hover { color: var(--ax-black); }

/* ================================================================
   23. 404 PAGE
   ================================================================ */

.ax-404 { display: flex; align-items: center; justify-content: center; min-height: 60vh; }
.ax-404__inner { text-align: center; padding: 64px 0; }
.ax-404__code { font-size: 120px; font-weight: 900; line-height: 1; color: var(--ax-border); margin-bottom: 0; }
.ax-404__title { font-size: 32px; font-weight: 700; margin-bottom: 16px; }
.ax-404__desc { font-size: var(--ax-size-body); font-weight: 300; color: var(--ax-muted-fg); margin-bottom: 32px; }

/* ================================================================
   24. PAGINATION
   ================================================================ */

.ax-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.ax-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--ax-radius);
  font-size: var(--ax-size-base);
  font-weight: 300;
  border: 1px solid var(--ax-border);
  transition: all 0.2s;
}
.ax-pagination .page-numbers:hover { border-color: var(--ax-black); }
.ax-pagination .page-numbers.current { background: var(--ax-black); color: var(--ax-white); border-color: var(--ax-black); }

/* ================================================================
   25. ARCHIVE HEADER
   ================================================================ */

.ax-archive__header {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--ax-border);
  margin-bottom: 48px;
}
.ax-archive__title { font-size: 48px; font-weight: 700; margin-bottom: 12px; }
.ax-archive__description { font-size: var(--ax-size-lg); font-weight: 300; color: var(--ax-muted-fg); }

/* ================================================================
   26. DIVIDERS
   ================================================================ */

.ax-divider { border: none; border-top: 1px solid var(--ax-border); margin: 40px 0; }

/* ================================================================
   27. SECTION HEADINGS
   ================================================================ */

.ax-section-label {
  font-size: var(--ax-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ax-muted-fg);
  margin-bottom: 8px;
}

/* ================================================================
   28. RESPONSIVE UTILITIES
   ================================================================ */

@media (max-width: 1024px) {
  .ax-tool-hero-grid,
  .ax-tool-content-grid { gap: 32px; }
}

@media (max-width: 768px) {
  body { font-size: 18px; }
  .ax-hero__title { font-size: 40px; }
  .ax-tool-cta-box { padding: 28px 24px; }
  .ax-pricing-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .ax-footer__inner { gap: 32px; }
  .ax-footer__bottom-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}
