/*
Theme Name: AeraBloom Child
Template: astra
Text Domain: aerabloom-child
Description: AeraBloom & Friends Child Theme mit Web-Kit Design-System
Version: 1.0.1
*/

/* ============================================================
   WordPress-spezifische Anpassungen
   Web-Kit (fonts.css, tokens.css, components.css) wird separat
   per wp_enqueue_style geladen — hier nur Ergaenzungen.
   ============================================================ */

/* --- Grundeinstellungen --- */
body {
  font-family: var(--font-body);
  color: var(--n-700);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

a {
  color: var(--ab-pink);
  text-decoration: none;
}
a:hover {
  color: var(--ab-magenta);
}
.ab-btn,
.ab-btn:hover,
.ab-btn:focus,
.ab-btn:visited {
  text-decoration: none !important;
}
.ab-btn--primary,
.ab-btn--primary:hover,
.ab-btn--primary:focus,
.ab-btn--primary:visited,
.ab-btn--primary:active {
  color: #fff !important;
}
.ab-btn--secondary,
.ab-btn--secondary:visited {
  color: var(--ab-petrol) !important;
}
.ab-btn--secondary:hover {
  color: var(--ab-petrol) !important;
}

/* --- Container --- */
.ab-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.ab-baukasten .ab-container {
  max-width: 1400px;
  padding: 0 40px;
}

/* --- Sektionen (volle Breite) --- */
.ab-section {
  padding: 64px 0;
}
.ab-section--bordered {
  border-top: 1px solid var(--n-200);
}
.ab-section--warm {
  background: var(--bg-section);
}
.ab-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.ab-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ab-pink);
  margin-bottom: 12px;
}
.ab-section-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--ab-petrol);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  text-wrap: balance;
}
.ab-section-header p {
  font-size: 15px;
  color: var(--n-700);
}

/* --- Scroll-Animationen --- */
.ab-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.ab-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.ab-fade-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.ab-fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.ab-fade-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.ab-fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.ab-delay-1 { transition-delay: 0.1s; }
.ab-delay-2 { transition-delay: 0.2s; }
.ab-delay-3 { transition-delay: 0.3s; }
.ab-delay-4 { transition-delay: 0.15s; }
.ab-delay-5 { transition-delay: 0.25s; }
.ab-delay-6 { transition-delay: 0.35s; }

@media (prefers-reduced-motion: reduce) {
  .ab-fade-up, .ab-fade-left, .ab-fade-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --- Hero --- */
.ab-hero {
  padding: 48px 0 64px;
  text-align: center;
  background: var(--bg-hero);
  position: relative;
  overflow: hidden;
}
.ab-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.ab-hero h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--ab-petrol);
  margin-bottom: 20px;
  text-wrap: balance;
}
.ab-hero .ab-subtitle {
  font-size: 17px;
  color: var(--n-700);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.ab-hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.ab-hero-faden {
  width: 100%;
  max-width: 1080px;
  margin: 32px auto 0;
  display: block;
  height: auto;
}

/* --- Trust Bar --- */
.ab-trust-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 48px 0;
}
.ab-trust-item {
  text-align: center;
  padding: 20px 12px;
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.25s;
}
.ab-trust-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.ab-trust-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--ab-petrol);
  font-variant-numeric: tabular-nums;
}
.ab-trust-label {
  font-size: 12px;
  color: var(--n-500);
  margin-top: 2px;
}

/* --- Problem / Solution --- */
.ab-ps-grid {
  display: grid;
  gap: 16px;
}
.ab-ps-card {
  padding: 28px 24px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-grad);
  transition: box-shadow 0.3s, transform 0.25s;
}
.ab-ps-card:hover {
  box-shadow: var(--shadow-grad-hover);
  transform: translateY(-2px);
}
.ab-ps-card--problem {
  background: #fff;
}
.ab-ps-card--solution {
  background: #FFF0F5;
}
.ab-ps-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.ab-ps-card--problem .ab-ps-icon {
  background: var(--n-100);
  color: var(--n-500);
}
.ab-ps-card--solution .ab-ps-icon {
  background: #fff;
  color: var(--ab-pink);
}
.ab-ps-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ab-petrol);
  margin-bottom: 8px;
}
.ab-ps-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--n-700);
}

/* --- Feature Grid --- */
.ab-feature-grid {
  display: grid;
  gap: 16px;
}
.ab-feature-card {
  padding: 24px;
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-grad);
  transition: box-shadow 0.3s, transform 0.25s;
}
.ab-feature-card:hover {
  box-shadow: var(--shadow-grad-hover);
  transform: translateY(-2px);
}
.ab-feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
}
.ab-feature-icon svg {
  width: 48px;
  height: 48px;
}
.ab-feature-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ab-petrol);
  margin-bottom: 6px;
}
.ab-feature-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--n-700);
}

/* --- Steps (How it Works) — als ab-card Feature Cards --- */
.ab-steps {
  display: grid;
  gap: 22px;
}
.ab-step {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-grad);
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.25s;
}
.ab-step:hover {
  box-shadow: var(--shadow-grad-hover);
  transform: translateY(-2px);
}
.ab-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 16px;
}
.ab-step h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ab-petrol);
  margin-bottom: 8px;
}
.ab-step p {
  font-size: 14px;
  color: var(--n-500);
  line-height: 1.65;
  max-width: 300px;
  margin: 0 auto;
}

/* --- Use Cases --- */
.ab-uc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.ab-uc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-grad);
  font-size: 14px;
  font-weight: 600;
  color: var(--ab-petrol);
  transition: box-shadow 0.3s, transform 0.25s;
}
.ab-uc-item:hover {
  box-shadow: var(--shadow-grad-hover);
  transform: translateY(-2px);
}

/* --- Avatar Section --- */
.ab-avatar-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.ab-avatar-img {
  width: 160px;
  height: 200px;
  border-radius: var(--radius-card);
  background: var(--n-50);
  border: 1px solid var(--n-200);
  object-fit: cover;
}
.ab-avatar-quote {
  font-size: 16px;
  font-style: italic;
  color: var(--ab-petrol);
  line-height: 1.7;
  max-width: 520px;
}
.ab-avatar-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ab-petrol);
  margin-top: 8px;
}
.ab-avatar-role {
  font-size: 13px;
  color: var(--n-500);
}

/* --- Compliance --- */
.ab-compliance {
  padding: 32px 24px;
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-grad);
  text-align: center;
  transition: box-shadow 0.3s, transform 0.25s;
}
.ab-compliance:hover {
  box-shadow: var(--shadow-grad-hover);
  transform: translateY(-2px);
}
.ab-compliance h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ab-petrol);
  margin-bottom: 8px;
}
.ab-compliance p {
  font-size: 14px;
  color: var(--n-700);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- CTA Final --- */
.ab-cta-final {
  text-align: center;
  padding: 64px 24px;
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, rgba(255,45,123,0.06) 0%, rgba(91,192,235,0.06) 100%);
  box-shadow: var(--shadow-grad);
}
.ab-cta-final h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--ab-petrol);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.ab-cta-final p {
  font-size: 15px;
  color: var(--n-700);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.ab-form-embed {
  max-width: 480px;
  margin: 0 auto;
}
.ab-divider-faden {
  display: block;
  max-width: 400px;
  margin: 0 auto 32px;
  height: auto;
}

/* --- Footer --- */
.ab-footer {
  padding: 32px 0;
  border-top: 1px solid var(--n-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--n-500);
  text-align: center;
}
.ab-footer a {
  color: var(--n-500);
}
.ab-footer a:hover {
  color: var(--ab-pink);
}

/* --- Astra overrides (Startseite = page-builder layout) --- */
.ast-page-builder-template {
  --wp--custom--ast-default-block-top-padding: 0 !important;
  --wp--custom--ast-default-block-right-padding: 0 !important;
  --wp--custom--ast-default-block-bottom-padding: 0 !important;
  --wp--custom--ast-default-block-left-padding: 0 !important;
  --wp--custom--ast-content-width-size: 100% !important;
  --wp--custom--ast-wide-width-size: 100% !important;
}
.ast-page-builder-template .site-content > .ast-container {
  max-width: 100% !important;
  padding: 0 !important;
}
.ast-page-builder-template .ast-article-single {
  padding: 0 !important;
  margin: 0 !important;
}
.ast-page-builder-template .entry-content > .wp-block-group,
.ast-page-builder-template .entry-content > .wp-block-cover,
.ast-page-builder-template .entry-content > .wp-block-columns {
  padding: 0 !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.ast-page-builder-template .entry-content[data-ast-blocks-layout] > * {
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.ast-page-builder-template .entry-content .wp-block-group .wp-block-group {
  padding: 0 !important;
  max-width: 100% !important;
}
.ast-separate-container .entry-content .wp-block-group {
  margin-left: 0;
  margin-right: 0;
}
.site-main {
  overflow-x: clip;
}

/* --- Astra Footer Styling --- */
.ast-small-footer {
  background: #fff;
  border-top: 1px solid var(--n-200);
  padding: 24px 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--n-500);
}
.ast-small-footer a {
  color: var(--n-500);
  text-decoration: none;
}
.ast-small-footer a:hover {
  color: var(--ab-pink);
}

/* --- Astra Header Styling (Sticky) --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.main-header-bar {
  border-bottom: 1px solid var(--n-200);
}
.main-header-bar,
.ast-mobile-header-wrap .ast-above-header-bar {
  font-family: var(--font-body);
}

/* --- Unterseiten (Datenschutz, Impressum etc.) --- */
.page:not(.page-id-4) .entry-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  font-family: var(--font-body);
  color: var(--n-700);
  line-height: 1.8;
  font-size: 15px;
}
.page:not(.page-id-4) .entry-content h1,
.page:not(.page-id-4) .entry-content h2,
.page:not(.page-id-4) .entry-content h3 {
  color: var(--ab-petrol);
  font-weight: 700;
  margin-top: 2em;
  margin-bottom: 0.5em;
  line-height: 1.3;
}
.page:not(.page-id-4) .entry-content h1 { font-size: 28px; }
.page:not(.page-id-4) .entry-content h2 { font-size: 22px; }
.page:not(.page-id-4) .entry-content h3 { font-size: 18px; }
.page:not(.page-id-4) .entry-content p {
  margin-bottom: 1em;
}
.page:not(.page-id-4) .entry-content a {
  color: var(--ab-cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(91,192,235,0.4);
}
.page:not(.page-id-4) .entry-content a:hover {
  color: var(--ab-pink);
  text-decoration-color: var(--ab-pink);
}
.page:not(.page-id-4) .entry-content .ab-btn {
  text-decoration: none !important;
}
.page:not(.page-id-4) .entry-content ul,
.page:not(.page-id-4) .entry-content ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}
.page:not(.page-id-4) .entry-content li {
  margin-bottom: 0.4em;
}
.page:not(.page-id-4) .ast-article-single .entry-header .entry-title {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 800;
  color: var(--ab-petrol);
  letter-spacing: -0.5px;
  max-width: 780px;
  margin: 48px auto 0;
  padding: 0 24px;
}

/* --- Datenschutz/Legal Cards --- */
.ab-legal-card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  padding: 28px 28px 24px;
  margin-bottom: 20px;
  transition: box-shadow 0.3s;
}
.ab-legal-card:hover {
  box-shadow: var(--shadow-md);
}
.ab-legal-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ab-petrol);
  margin-bottom: 12px;
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ab-legal-card h3 .ab-legal-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.ab-legal-card p {
  margin-bottom: 0.8em;
}
.ab-legal-card ul {
  padding-left: 0;
  list-style: none;
}
.ab-legal-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
}
.ab-legal-card li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--ab-pink) 0%, rgba(255,45,123,0.5) 50%, transparent 75%);
}
.ab-legal-intro {
  background: var(--bg-hero);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  margin-bottom: 28px;
  text-align: center;
}
.ab-legal-intro h2 {
  font-size: 24px;
  margin-bottom: 8px;
  margin-top: 0;
}
.ab-legal-intro p {
  color: var(--n-500);
  font-size: 14px;
  margin-bottom: 0;
}
.ab-legal-highlight {
  background: #FFF0F5;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-grad);
  padding: 28px 28px 24px;
  margin-bottom: 20px;
}
.ab-legal-highlight h3 {
  color: var(--ab-petrol);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 0;
}

/* --- Product page --- */
.ab-product-hero {
  padding: 100px 0 64px;
  text-align: center;
  background: var(--bg-hero);
}
.ab-product-hero h1 {
  font-size: 40px;
  font-weight: 800;
  color: var(--ab-petrol);
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.ab-product-hero .ab-subtitle {
  font-size: 18px;
  color: var(--n-500);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Baukasten Scroll-Slider --- */
.ab-baukasten {
  background: #fff;
  padding: 80px 0 60px;
}
.ab-bk-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 24px;
  padding-top: 20px;
}
.ab-bk-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--ab-petrol);
  letter-spacing: -0.5px;
}
.ab-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.ab-tab {
  padding: 12px 28px;
  border-radius: 999px;
  border: 1.5px solid var(--n-200);
  background: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ab-petrol);
  cursor: pointer;
  transition: all 0.25s;
}
.ab-tab:hover {
  border-color: var(--ab-petrol);
  color: var(--ab-petrol);
  box-shadow: var(--shadow-sm);
}
.ab-tab.active,
.ab-tab.active:hover,
.ab-tab.active:focus,
.ab-tab.active:active {
  background: var(--grad-brand);
  color: #fff !important;
  border-color: transparent;
  box-shadow: var(--shadow-glow-pink);
}
.ab-slider-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ab-slider-viewport::-webkit-scrollbar {
  display: none;
}
.ab-slider-track {
  display: flex;
}
.ab-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
  padding: 20px 0;
  scroll-snap-align: start;
}
.ab-slide-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0 0 20px;
}
.ab-slide-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ab-slide-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  box-shadow: var(--shadow-grad);
  flex-shrink: 0;
}
.ab-slide-content h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--ab-petrol);
  margin: 0;
}
.ab-slide-intro {
  font-size: 15px;
  color: var(--n-500);
  line-height: 1.7;
  margin: 0;
}
.ab-slide-usps {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ab-slide-usps li {
  padding-left: 24px;
  position: relative;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--n-700);
}
.ab-slide-usps li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--ab-pink) 0%, rgba(255,45,123,0.45) 50%, transparent 75%);
}
.ab-slide-usps li:nth-child(even)::before {
  background: radial-gradient(circle, var(--ab-cyan) 0%, rgba(91,192,235,0.45) 50%, transparent 75%);
}
.ab-slide-usps li strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ab-petrol);
  margin-bottom: 2px;
}
.ab-slide-usps li span {
  color: var(--n-500);
}
.ab-slide-content .ab-btn {
  align-self: flex-start;
  margin-top: 8px;
}
.ab-slide-image {
  background: var(--n-50);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 15/11;
}
.ab-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  border-radius: var(--radius-card);
  display: block;
}
.ab-slide-image-placeholder {
  color: var(--n-400);
  font-size: 14px;
  text-align: center;
  padding: 32px;
}
.ab-slide-image-placeholder p {
  margin-top: 14px;
}
.ab-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.ab-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--n-200);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.ab-dot.active {
  background: var(--ab-pink);
  box-shadow: 0 0 10px rgba(255,45,123,0.4);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .ab-slide {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
    padding: 24px 8px;
  }
  .ab-slide-content {
    order: 1;
  }
  .ab-slide-image {
    order: 2;
  }
}

/* --- Showcase Sektionen (Avatar, Analytik) --- */
.ab-showcase {
  width: 100%;
}
/* Banner: weisser Hintergrund, Grafik als Deko abgeschnitten */
.ab-showcase-banner {
  background-color: #fff;
  padding: 100px 0 160px;
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.ab-showcase-banner .ab-bg-art {
  position: absolute;
  top: -40%;
  height: 180%;
  width: auto;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.ab-showcase--avatar .ab-bg-art {
  right: -10%;
  left: auto;
}
.ab-showcase--analytik .ab-bg-art {
  left: -10%;
  right: auto;
  transform: scaleX(-1);
}
.ab-showcase-banner .ab-container {
  position: relative;
  z-index: 1;
}
.ab-showcase-intro {
  display: flex;
  align-items: center;
  gap: 40px;
}
.ab-showcase-tile {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  box-shadow: var(--shadow-grad);
  flex-shrink: 0;
}
.ab-showcase-text {
  max-width: 560px;
}
.ab-showcase-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--ab-petrol);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.ab-showcase-text p {
  font-size: 17px;
  color: var(--n-500);
  line-height: 1.75;
}

/* Collage: ueberlappt das Banner nach oben */
.ab-showcase-collage {
  background: #fff;
  padding: 0 0 100px;
  margin-top: -120px;
  position: relative;
  z-index: 2;
}
.ab-showcase-img {
  display: block;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-grad);
}

@media (max-width: 768px) {
  .ab-showcase-intro {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .ab-showcase-tile {
    width: 80px;
    height: 80px;
  }
  .ab-showcase-banner {
    padding: 64px 0 100px;
  }
  .ab-showcase-collage {
    margin-top: -60px;
    padding: 0 0 64px;
  }
}

/* --- Landing page template (bypasses Astra containers) --- */
.ab-landing {
  width: 100%;
  overflow-x: clip;
}
.ab-landing .ab-section,
.ab-landing .ab-hero {
  width: 100%;
}

/* ===== RESPONSIVE: TABLET (640px) ===== */
@media (min-width: 640px) {
  .ab-container { padding: 0 32px; }
  .ab-hero h1 { font-size: 44px; }
  .ab-hero-cta { flex-direction: row; justify-content: center; }
  .ab-trust-bar { grid-template-columns: repeat(4, 1fr); }
  .ab-ps-grid { grid-template-columns: 1fr 1fr; }
  .ab-feature-grid { grid-template-columns: 1fr 1fr; }
  .ab-steps { grid-template-columns: repeat(3, 1fr); }
  .ab-uc-grid { grid-template-columns: repeat(4, 1fr); }
  .ab-footer { flex-direction: row; justify-content: space-between; }
}

/* ===== RESPONSIVE: DESKTOP (960px) ===== */
@media (min-width: 960px) {
  .ab-hero { padding: 80px 0 80px; }
  .ab-hero h1 { font-size: clamp(48px, 5vw, 56px); letter-spacing: -1.5px; }
  .ab-hero .ab-subtitle { font-size: 19px; }
  .ab-section { padding: 80px 0; }
  .ab-section-header h2 { font-size: clamp(30px, 3.5vw, 38px); }
  .ab-feature-grid { grid-template-columns: repeat(3, 1fr); }
  .ab-avatar-section { flex-direction: row; text-align: left; gap: 40px; }
  .ab-avatar-img { width: 200px; height: 260px; }
  .ab-cta-final { padding: 80px 48px; }
  .ab-cta-final h2 { font-size: 32px; }
  .ab-product-hero h1 { font-size: clamp(40px, 4.5vw, 52px); }
}
