/* =============================================
   FABELINO – WordPress Theme CSS
   ============================================= */

:root {
  --background: hsl(30, 33%, 98%);
  --foreground: hsl(270, 20%, 20%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(270, 20%, 20%);
  --primary: hsl(270, 50%, 55%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(30, 60%, 95%);
  --muted: hsl(270, 15%, 95%);
  --muted-foreground: hsl(270, 10%, 50%);
  --accent: hsl(340, 60%, 65%);
  --border: hsl(270, 15%, 90%);
  --radius: 1rem;
  --peach: hsl(20, 80%, 90%);
  --mint: hsl(160, 40%, 90%);
  --lavender: hsl(270, 40%, 93%);
  --gold: hsl(40, 80%, 65%);
  --shadow-primary: hsla(270, 50%, 55%, 0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', sans-serif;
  line-height: 1.2;
}

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

/* =============================================
   LAYOUT HELPERS
   ============================================= */
.st-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.st-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 9999px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.st-btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 2rem;
  box-shadow: 0 4px 20px var(--shadow-primary);
}
.st-btn-primary:hover {
  background-color: hsl(270, 50%, 48%);
  box-shadow: 0 6px 28px hsla(270, 50%, 55%, 0.4);
  transform: translateY(-1px);
  color: #fff;
}

.st-btn-outline {
  background: transparent;
  color: var(--foreground);
  padding: 0.75rem 2rem;
  border: 2px solid var(--border);
}
.st-btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.st-btn-ghost {
  background: transparent;
  color: var(--muted-foreground);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.st-btn-ghost:hover { color: var(--foreground); }

.st-btn-sm {
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
}

.st-btn-lg {
  font-size: 1.0625rem;
  padding: 1rem 2.5rem;
}

/* =============================================
   HEADER / NAV
   ============================================= */
.st-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: hsla(30, 33%, 98%, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.st-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.st-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.st-logo-image {
  height: 40px;
  width: auto;
  display: block;
}

.st-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.st-nav > a,
.st-lang-toggle {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.st-nav > a:hover,
.st-lang-toggle:hover,
.st-lang-toggle[aria-expanded="true"] {
  color: var(--foreground);
}

.st-header-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Language switcher */
.st-lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

.st-lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  line-height: 1;
}

.st-lang-icon {
  width: 1.125rem;
  height: 1.125rem;
  display: block;
}

.st-lang-dropdown {
  position: absolute;
  top: calc(100% + 0.85rem);
  right: 0;
  min-width: 6.5rem;
  padding: 0.5rem;
  display: none;
  flex-direction: column;
  gap: 0.125rem;
  background: hsla(30, 33%, 98%, 0.98);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.st-lang-dropdown.open {
  display: flex;
}

.st-lang-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.65rem;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted-foreground);
  transition: color 0.2s, background-color 0.2s;
}

.st-lang-option:hover {
  color: var(--foreground);
  background: rgba(0, 0, 0, 0.04);
}

.st-lang-flag {
  width: 16px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
  display: block;
}

/* Language popup overlay */
.st-lang-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 10, 5, 0.38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.st-lang-popup {
  max-width: 420px;
  width: 90%;
  padding: 1.75rem 1.5rem;
  border-radius: 1rem;
  background: hsla(30, 33%, 98%, 0.98);
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  color: var(--foreground);
}

.st-lang-popup-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.st-lang-popup-body {
  font-size: 0.98rem;
  color: var(--muted-foreground);
  margin-bottom: 1.25rem;
}

.st-lang-popup-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.st-btn.st-btn-outline.st-btn-sm {
  padding: 0.4rem 0.9rem;
}


/* Cookie banner overlay */
.st-cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
}

.st-cookie-banner.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.st-cookie-banner__inner {
  max-width: 980px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(140, 83, 198, 0.12);
  box-shadow: 0 18px 60px rgba(26, 17, 38, 0.18);
  backdrop-filter: blur(14px);
  border-radius: 24px;
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
}

.st-cookie-banner__content {
  max-width: 700px;
}

.st-cookie-banner__title {
  margin: 0 0 8px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.st-cookie-banner__text {
  margin: 0 0 10px;
  color: #5f5871;
  font-size: 0.96rem;
  line-height: 1.55;
}

.st-cookie-banner__link {
  color: #8c53c6;
  text-decoration: none;
  font-weight: 600;
}

.st-cookie-banner__link:hover {
  text-decoration: underline;
}

.st-cookie-banner__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .st-cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .st-cookie-banner__inner {
    padding: 16px;
    border-radius: 20px;
    display: block;
  }

  .st-cookie-banner__actions {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .st-cookie-banner__actions .st-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .st-cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .st-cookie-banner__inner {
    padding: 16px;
    border-radius: 20px;
    display: block;
  }

  .st-cookie-banner__actions {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .st-cookie-banner__actions .st-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile toggle */
.st-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
  padding: 0.25rem;
}

.st-mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.st-mobile-menu.open {
  display: block;
}

.st-mobile-menu a {
  display: block;
  padding: 0.625rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted-foreground);
}

.st-mobile-lang {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.st-mobile-lang-link {
  display: inline-flex !important;
  align-items: center;
  gap: 0.45rem;
  padding: 0 !important;
  font-size: 0.95rem !important;
  font-weight: 600;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.st-mobile-lang-link:hover {
  color: var(--foreground);
}

.st-mobile-lang-flag {
  width: 16px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
  display: block;
}

.st-mobile-menu .st-btn-primary {
  display: block;
  text-align: center;
  margin-top: 0.75rem;
  width: 100%;
  color: #ffffff !important;
}

.st-mobile-menu .st-btn-primary:hover,
.st-mobile-menu .st-btn-primary:focus,
.st-mobile-menu .st-btn-primary:visited {
  color: #ffffff !important;
}

@media (max-width: 767px) {
  .st-nav,
  .st-header-actions {
    display: none;
  }

  .st-mobile-toggle {
    display: block;
  }
}

/* =============================================
   HERO SECTION
   ============================================= */
.st-hero {
  position: relative;
  padding: 7rem 0 5rem;
  overflow: hidden;
}

.st-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsla(270, 40%, 93%, 0.5), var(--background) 80%);
  pointer-events: none;
}

.st-hero-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.st-hero-content { max-width: none; }

.st-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsla(270, 50%, 55%, 0.1);
  color: var(--primary);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.st-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--foreground);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.st-hero h1 span { color: var(--primary); }

.st-hero p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.st-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

#st-sample-audio {
  display: none;
}

#st-sample-btn.is-playing {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

#st-sample-btn .st-sample-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#st-sample-btn .st-icon-pause {
  display: none;
}

#st-sample-btn.is-playing .st-icon-play {
  display: none;
}

#st-sample-btn.is-playing .st-icon-pause {
  display: block;
}

.st-hero-social-proof {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.st-emoji-stack {
  display: flex;
  align-items: center;
}

.st-emoji-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  border: 2px solid var(--background);
  margin-right: -0.5rem;
}

.st-emoji-avatar:last-child { margin-right: 0; }

.st-social-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.2;
}

.st-social-text strong { color: var(--foreground); font-weight: 700; }

.st-hero-image-wrap {
  display: flex;
  justify-content: center;
}

.st-hero-image-wrap img {
  max-width: 520px;
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
  animation: st-float 4s ease-in-out infinite;
}

@keyframes st-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 900px) {
  .st-hero { padding: 6rem 0 4rem; }
  .st-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .st-hero-content { max-width: 100%; }
  .st-hero-badge, .st-hero-ctas, .st-hero-social-proof { justify-content: center; }
  .st-hero-image-wrap { order: 0; }
  .st-hero-image-wrap img { max-width: 380px; }
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.st-section {
  padding: 5rem 0;
}

.st-section-alt {
  background: hsla(30, 60%, 95%, 0.5);
}

.st-section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.st-section-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.st-section-head p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.st-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.st-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.st-step-media-wrap {
  position: relative;
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
}

.st-step-image {
  width: auto;
  height: 100px;
  display: block;
  margin: 0 auto;
}

.st-step h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.st-step p {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

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

@media (max-width: 480px) {
  .st-steps {
    grid-template-columns: 1fr;
  }

  .st-step-image {
    max-width: 220px;
  }
}

/* =============================================
BENEFITS
============================================= */
.st-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.st-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}

.st-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.st-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.st-card-icon {
  width: 6rem;
  height: 6rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 6.5rem;
}

.st-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-primary { color: var(--primary); }
.icon-accent { color: var(--accent); }

.st-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0;
  line-height: 1.3;
}

.st-card p {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

/* Bild im Benefit-Icon-Kasten */
.st-card-icon .st-card-image {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
  display: block;
}

@media (max-width: 900px) {
  .st-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .st-benefits-grid {
    grid-template-columns: 1fr;
  }

  .st-card-top {
    align-items: center;
  }
}

/* =============================================
   SOCIAL PROOF / TESTIMONIALS
   ============================================= */
.st-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.st-testimonial {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.st-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.st-star {
  width: 1rem;
  height: 1rem;
  fill: var(--gold);
  color: var(--gold);
}

.st-testimonial blockquote {
  font-size: 1rem;
  color: var(--foreground);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.st-testimonial cite {
  font-style: normal;
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  display: block;
}

.st-testimonial .st-role {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  margin-top: 0.125rem;
}

.st-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 4rem;
}

.st-stat {
  text-align: center;
}

.st-stat strong {
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
}

.st-stat span {
  font-size: 1rem;
  color: var(--muted-foreground);
}

.st-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--border);
}

@media (max-width: 900px) {
  .st-testimonials { grid-template-columns: 1fr; max-width: 500px; }
  .st-divider { display: none; }
}

/* =============================================
   OUR STORY
   ============================================= */
.st-story {
  background: linear-gradient(to bottom, hsla(270, 40%, 93%, 0.3), var(--background));
  padding: 5rem 0;
}

.st-story-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 4rem;
  align-items: center;
}

.st-story-media {
  display: flex;
  justify-content: center;
}

.st-story-image {
  width: 100%;
  max-width: 300px;
	margin: 0 auto;
  height: auto;
  display: block;
  border-radius: 1.5rem;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.st-story-content {
  max-width: 700px;
  text-align: left;
}

.st-story h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.st-story p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.st-story p strong {
  color: var(--foreground);
  font-weight: 700;
}

@media (max-width: 900px) {
  .st-story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .st-story-media {
    order: 1;
  }

  .st-story-content {
    order: 2;
    max-width: 100%;
    text-align: center;
  }
}

/* =============================================
   FAQ
   ============================================= */
.st-faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.st-faq-item {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.st-faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.st-faq-question:hover { color: var(--primary); }

.st-faq-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s;
}

.st-faq-item.open .st-faq-icon { transform: rotate(180deg); }

.st-faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.st-faq-item.open .st-faq-answer { display: block; }

/* =============================================
   CTA SECTION
   ============================================= */
.st-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, hsla(270, 50%, 55%, 0.1), hsla(270, 40%, 93%, 0.4) 50%, hsla(20, 80%, 90%, 0.3));
  text-align: center;
}

.st-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.st-cta-image {
  height: 125px;
  margin: 0 auto 1.5rem;
  width: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
  animation: st-float 4s ease-in-out infinite;
}

.st-cta h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.st-cta p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.st-cta p.st-cta-note {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
}

/* =============================================
   FOOTER
   ============================================= */
.st-footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}

.st-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.st-footer-brand { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.st-footer-brand span { font-family: 'Quicksand', sans-serif; font-size: 1.125rem; font-weight: 700; color: var(--foreground); }

.st-footer-tagline { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

.st-footer-col h4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.st-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

.st-footer-col ul a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.st-footer-col ul a:hover { color: var(--foreground); }

.st-footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}

@media (max-width: 768px) {
  .st-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .st-footer-grid { grid-template-columns: 1fr; }
}

/* =============================================
   SECTION LABEL
   ============================================= */
.st-label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
