/* =========================================================
   SANAMETIS — Globales Designsystem
   Brand-Farben, Typografie, Komponenten, Animationen
   ========================================================= */

:root {
  /* Brand-Farben */
  --sa-petrol: #3D5C68;       /* Primär dunkel */
  --sa-azur: #6AA9BD;         /* Primär hell */
  --sa-azur-light: #B8CBD1;   /* Sekundär 1 */
  --sa-stone: #8CA1A7;        /* Sekundär 2 */
  --sa-white: #FFFFFF;
  --sa-black: #0A0A0A;

  /* Spacing-Skala (24 / 48 / 96) */
  --sa-space-1: 8px;
  --sa-space-2: 16px;
  --sa-space-3: 24px;
  --sa-space-4: 48px;
  --sa-space-5: 96px;

  /* Radien & Schatten */
  --sa-radius-sm: 12px;
  --sa-radius-md: 20px;
  --sa-radius-lg: 28px;
  --sa-radius-pill: 999px;
  --sa-shadow-sm: 0 2px 8px rgba(10, 10, 10, 0.04);
  --sa-shadow-md: 0 8px 24px rgba(10, 10, 10, 0.08);
  --sa-shadow-lg: 0 12px 32px rgba(61, 92, 104, 0.12);

  /* Container */
  --sa-container: 1200px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--sa-petrol);
  background: var(--sa-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sa-azur); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--sa-petrol); }

/* Tailwind ergänzen: Headline-Skala */
h1, .h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--sa-petrol);
  margin: 0 0 var(--sa-space-3);
}
h2, .h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--sa-petrol);
  margin: 0 0 var(--sa-space-3);
}
h3, .h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.3;
  color: var(--sa-petrol);
  margin: 0 0 var(--sa-space-2);
}
.display {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.012em;
}
.claim {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-style: italic;
  color: var(--sa-stone);
}

/* Layout */
.sa-container { max-width: var(--sa-container); margin: 0 auto; padding: 0 var(--sa-space-3); }
section { padding: var(--sa-space-5) 0; }
@media (max-width: 768px) { section { padding: 64px 0; } }

/* Buttons */
.sa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--sa-radius-pill);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all .25s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.sa-btn-primary {
  background: var(--sa-azur);
  color: var(--sa-white);
}
.sa-btn-primary:hover {
  background: var(--sa-petrol);
  color: var(--sa-white);
  transform: translateY(-1px);
  box-shadow: var(--sa-shadow-lg);
}
.sa-btn-secondary {
  background: transparent;
  color: var(--sa-petrol);
  border: 1.5px solid var(--sa-petrol);
}
.sa-btn-secondary:hover {
  background: var(--sa-petrol);
  color: var(--sa-white);
}
.sa-btn-ghost {
  background: transparent;
  color: var(--sa-white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.sa-btn-ghost:hover {
  background: var(--sa-white);
  color: var(--sa-petrol);
  border-color: var(--sa-white);
}

/* Header */
.sa-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background .3s ease, box-shadow .3s ease;
  padding: 16px 0;
}
.sa-header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(10,10,10,.06);
}
.sa-header.dark-bg {
  background: transparent;
}
.sa-header .sa-container {
  display: flex; align-items: center; justify-content: space-between;
}
.sa-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.sa-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--sa-petrol);
  position: relative;
}
.sa-header.dark-bg:not(.scrolled) .sa-nav a,
.sa-header.dark-bg:not(.scrolled) .sa-logo-text { color: var(--sa-white); }
.sa-nav a:hover { color: var(--sa-azur); }
.sa-nav a.active::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--sa-azur);
  border-radius: 2px;
}
.sa-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.sa-logo-text {
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--sa-petrol);
}
.sa-mobile-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px;
  color: var(--sa-petrol);
}
@media (max-width: 1024px) {
  .sa-nav { display: none; }
  .sa-nav.open {
    display: flex;
    position: fixed;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    background: var(--sa-white);
    padding: 24px;
    gap: 16px;
    box-shadow: var(--sa-shadow-md);
    border-top: 1px solid rgba(10,10,10,.06);
  }
  .sa-mobile-toggle { display: inline-flex; align-items: center; justify-content: center; }
}

/* Hero */
.sa-hero {
  position: relative;
  min-height: 92vh;
  background: var(--sa-black);
  color: var(--sa-white);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}
.sa-hero-media {
  position: absolute; inset: 0;
  background-position: center; background-size: cover;
  filter: brightness(0.55);
}
.sa-hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.4) 0%, rgba(10,10,10,.7) 100%);
}
.sa-hero-inner { position: relative; z-index: 2; }
.sa-hero h1, .sa-hero .display { color: var(--sa-white); }
.sa-hero p { color: rgba(255,255,255,.85); max-width: 620px; font-size: 18px; }
.sa-hero-cta { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }

/* Trust Bar */
.sa-trustbar {
  background: var(--sa-azur-light);
  padding: 20px 0;
  font-size: 14px;
  color: var(--sa-petrol);
}
.sa-trustbar-items {
  display: flex; flex-wrap: wrap; gap: 32px; justify-content: center;
  align-items: center;
}
.sa-trustbar-item { display: flex; align-items: center; gap: 8px; font-weight: 500; }

/* Cards (6 Säulen, Nutzen) */
.sa-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.sa-card {
  background: var(--sa-white);
  border: 1px solid rgba(184,203,209,0.4);
  border-radius: var(--sa-radius-md);
  padding: 32px;
  transition: all .3s ease;
}
.sa-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sa-shadow-md);
  border-color: var(--sa-azur);
}
.sa-card-icon {
  width: 56px; height: 56px;
  background: var(--sa-azur-light);
  color: var(--sa-petrol);
  border-radius: var(--sa-radius-sm);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}
.sa-card h3 { margin-bottom: 10px; }
.sa-card p { color: var(--sa-stone); font-size: 16px; margin: 0; }
.sa-card .sa-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--sa-azur);
  margin-bottom: 8px;
}

/* Section heading */
.sa-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--sa-space-4);
}
.sa-section-head .sa-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--sa-azur);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sa-section-head p {
  color: var(--sa-stone);
  font-size: 18px;
  max-width: 600px;
  margin: 16px auto 0;
}

/* Backgrounds */
.bg-light { background: #F7FAFB; }
.bg-azur-light { background: var(--sa-azur-light); }
.bg-petrol { background: var(--sa-petrol); color: var(--sa-white); }
.bg-petrol h1, .bg-petrol h2, .bg-petrol h3 { color: var(--sa-white); }
.bg-petrol p { color: rgba(255,255,255,.85); }
.bg-black { background: var(--sa-black); color: var(--sa-white); }
.bg-black h1, .bg-black h2, .bg-black h3 { color: var(--sa-white); }

/* Six-Drops Pattern */
.sa-pattern {
  position: absolute;
  pointer-events: none;
  opacity: 0.07;
}

/* Timeline */
.sa-timeline {
  position: relative;
  margin-top: 48px;
}
.sa-timeline::before {
  content: ''; position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px; background: var(--sa-azur-light);
  transform: translateX(-50%);
}
.sa-timeline-item {
  display: grid; grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  margin-bottom: 32px;
}
.sa-timeline-dot {
  width: 56px; height: 56px;
  background: var(--sa-azur);
  color: var(--sa-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  margin: 0 auto;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 6px var(--sa-white);
}
.sa-timeline-card {
  background: var(--sa-white);
  border: 1px solid rgba(184,203,209,0.4);
  border-radius: var(--sa-radius-md);
  padding: 24px;
  box-shadow: var(--sa-shadow-sm);
}
.sa-timeline-item:nth-child(even) .sa-timeline-card { grid-column: 3; }
.sa-timeline-item:nth-child(odd) .sa-timeline-card { grid-column: 1; text-align: right; }
.sa-timeline-item:nth-child(odd) .sa-timeline-empty { grid-column: 3; }
.sa-timeline-item:nth-child(even) .sa-timeline-empty { grid-column: 1; }
@media (max-width: 768px) {
  .sa-timeline::before { left: 28px; }
  .sa-timeline-item { grid-template-columns: 56px 1fr; gap: 16px; }
  .sa-timeline-dot { margin: 0; }
  .sa-timeline-card { grid-column: 2 !important; text-align: left !important; }
  .sa-timeline-empty { display: none; }
}

/* Testimonial slider */
.sa-testimonial {
  background: var(--sa-white);
  border-radius: var(--sa-radius-lg);
  padding: 40px;
  box-shadow: var(--sa-shadow-sm);
  border: 1px solid rgba(184,203,209,0.4);
}
.sa-testimonial blockquote {
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--sa-petrol);
  margin: 0 0 24px;
  line-height: 1.5;
}
.sa-testimonial .sa-author {
  display: flex; align-items: center; gap: 14px;
}
.sa-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--sa-azur-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--sa-petrol);
  font-weight: 700;
}

/* FAQ Akkordeon */
.sa-faq-item {
  border-bottom: 1px solid rgba(140,161,167,0.25);
  padding: 20px 0;
}
.sa-faq-q {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  color: var(--sa-petrol);
}
.sa-faq-q::after {
  content: '+';
  font-size: 24px;
  color: var(--sa-azur);
  transition: transform .3s ease;
}
.sa-faq-item.open .sa-faq-q::after { content: '−'; }
.sa-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, margin .35s ease;
  color: var(--sa-stone);
  font-size: 16px;
}
.sa-faq-item.open .sa-faq-a {
  max-height: 500px;
  margin-top: 12px;
}

/* Pricing */
.sa-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.sa-price-card {
  background: var(--sa-white);
  border: 1px solid rgba(184,203,209,0.5);
  border-radius: var(--sa-radius-lg);
  padding: 40px 32px;
  display: flex; flex-direction: column;
  transition: all .3s ease;
}
.sa-price-card.featured {
  border-color: var(--sa-azur);
  box-shadow: var(--sa-shadow-lg);
  position: relative;
}
.sa-price-card.featured::before {
  content: 'Empfohlen';
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--sa-azur);
  color: var(--sa-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 6px 14px;
  border-radius: var(--sa-radius-pill);
}
.sa-price-card .sa-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--sa-petrol);
  margin: 16px 0 4px;
}
.sa-price-card ul {
  list-style: none; padding: 0; margin: 24px 0; flex: 1;
}
.sa-price-card li {
  padding: 10px 0;
  color: var(--sa-stone);
  font-size: 15px;
  display: flex; align-items: flex-start; gap: 10px;
  border-bottom: 1px dashed rgba(140,161,167,0.2);
}
.sa-price-card li::before {
  content: '✓';
  color: var(--sa-azur);
  font-weight: 700;
}

/* Footer */
.sa-footer {
  background: var(--sa-petrol);
  color: var(--sa-white);
  padding: 80px 0 30px;
}
.sa-footer h4 {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sa-azur-light);
  margin: 0 0 18px;
}
.sa-footer a {
  display: block;
  color: rgba(255,255,255,.78);
  padding: 6px 0;
  font-size: 15px;
}
.sa-footer a:hover { color: var(--sa-white); }
.sa-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.sa-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 60px;
  padding-top: 28px;
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  color: rgba(255,255,255,.6);
  font-size: 13px;
}
.sa-socials { display: flex; gap: 14px; }
.sa-socials a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0;
}
.sa-socials a:hover { background: var(--sa-azur); border-color: var(--sa-azur); }
@media (max-width: 768px) {
  .sa-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Newsletter input */
.sa-news-form {
  display: flex; gap: 10px; margin-top: 16px;
  flex-wrap: wrap;
}
.sa-news-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  border-radius: var(--sa-radius-pill);
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color: var(--sa-white);
  font-family: inherit;
  font-size: 15px;
}
.sa-news-form input::placeholder { color: rgba(255,255,255,.5); }
.sa-news-form input:focus { outline: 2px solid var(--sa-azur); }

/* Forms */
.sa-form-field { margin-bottom: 18px; }
.sa-form-field label {
  display: block;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--sa-petrol);
}
.sa-form-field input, .sa-form-field select, .sa-form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--sa-radius-sm);
  border: 1px solid rgba(140,161,167,0.35);
  background: var(--sa-white);
  font-family: inherit;
  font-size: 15px;
  color: var(--sa-petrol);
  transition: border .2s ease;
}
.sa-form-field input:focus,
.sa-form-field select:focus,
.sa-form-field textarea:focus {
  outline: none;
  border-color: var(--sa-azur);
  box-shadow: 0 0 0 3px rgba(106,169,189,.18);
}

/* Cookie banner */
.sa-cookie {
  position: fixed; left: 24px; right: 24px; bottom: 24px;
  z-index: 200;
  background: var(--sa-white);
  border: 1px solid rgba(184,203,209,0.5);
  border-radius: var(--sa-radius-md);
  padding: 20px 24px;
  box-shadow: var(--sa-shadow-lg);
  display: none;
  align-items: center; gap: 20px; flex-wrap: wrap;
  max-width: 720px;
  margin: 0 auto;
}
.sa-cookie.show { display: flex; }
.sa-cookie p { margin: 0; flex: 1; font-size: 14px; color: var(--sa-stone); min-width: 240px; }

/* Newsletter modal */
.sa-modal {
  position: fixed; inset: 0;
  background: rgba(10,10,10,.65);
  z-index: 300;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.sa-modal.show { display: flex; }
.sa-modal-body {
  background: var(--sa-white);
  border-radius: var(--sa-radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  text-align: center;
}
.sa-modal-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none;
  font-size: 24px;
  color: var(--sa-stone);
  cursor: pointer;
}

/* Animations */
.fade-in { opacity: 0; transform: translateY(20px); transition: all .8s cubic-bezier(.22,.61,.36,1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Utilities */
.sa-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.sa-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) {
  .sa-grid-2, .sa-grid-3 { grid-template-columns: 1fr; }
}

.sa-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--sa-azur);
  text-transform: uppercase;
}

.sa-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--sa-radius-pill);
  background: var(--sa-azur-light);
  color: var(--sa-petrol);
  font-size: 12px;
  font-weight: 600;
}

.sa-divider {
  height: 1px;
  background: rgba(140,161,167,.2);
  margin: 24px 0;
  border: none;
}

/* Focus state for accessibility */
:focus-visible {
  outline: 3px solid var(--sa-azur);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Course module specific */
.sa-course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.sa-course-day {
  background: var(--sa-white);
  border: 1px solid rgba(184,203,209,0.5);
  border-radius: var(--sa-radius-sm);
  padding: 18px;
  text-align: center;
  transition: all .25s ease;
  cursor: pointer;
  position: relative;
}
.sa-course-day.locked { opacity: 0.5; cursor: not-allowed; }
.sa-course-day.active { border-color: var(--sa-azur); background: rgba(106,169,189,.06); }
.sa-course-day.done { background: var(--sa-azur); color: var(--sa-white); border-color: var(--sa-azur); }
.sa-course-day.done .sa-day-num { color: var(--sa-white); }
.sa-course-day:hover:not(.locked) { transform: translateY(-2px); }
.sa-day-num {
  font-size: 28px; font-weight: 800; color: var(--sa-petrol);
  display: block;
}
.sa-day-label { font-size: 12px; color: var(--sa-stone); }

/* Progress bar */
.sa-progress {
  height: 8px;
  background: rgba(184,203,209,0.4);
  border-radius: 999px;
  overflow: hidden;
  margin: 16px 0;
}
.sa-progress-fill {
  height: 100%;
  background: var(--sa-azur);
  border-radius: 999px;
  transition: width .6s ease;
}

/* Event card */
.sa-event-card {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 28px;
  background: var(--sa-white);
  border: 1px solid rgba(184,203,209,0.5);
  border-radius: var(--sa-radius-md);
  padding: 24px;
  transition: all .25s ease;
}
.sa-event-card:hover { box-shadow: var(--sa-shadow-md); }
.sa-event-date {
  background: var(--sa-azur-light);
  border-radius: var(--sa-radius-sm);
  padding: 14px;
  text-align: center;
}
.sa-event-date .day { font-size: 28px; font-weight: 800; color: var(--sa-petrol); display: block; }
.sa-event-date .mon { font-size: 12px; font-weight: 600; color: var(--sa-petrol); letter-spacing: .1em; text-transform: uppercase; }
@media (max-width: 700px) {
  .sa-event-card { grid-template-columns: 1fr; }
  .sa-event-date { width: 100px; }
}

/* Community / Spaces */
.sa-feed-post {
  background: var(--sa-white);
  border: 1px solid rgba(184,203,209,0.5);
  border-radius: var(--sa-radius-md);
  padding: 24px;
  margin-bottom: 16px;
}
.sa-feed-post header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.sa-feed-post .sa-meta { font-size: 13px; color: var(--sa-stone); }
.sa-feed-actions { display: flex; gap: 18px; margin-top: 14px; color: var(--sa-stone); font-size: 14px; }
.sa-feed-actions button {
  background: none; border: none; color: var(--sa-stone); cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: inherit; font-size: 14px;
}
.sa-feed-actions button:hover { color: var(--sa-azur); }

/* Tabs */
.sa-tabs { display: flex; gap: 6px; border-bottom: 1px solid rgba(140,161,167,.25); margin-bottom: 24px; flex-wrap: wrap; }
.sa-tab {
  padding: 12px 20px;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--sa-stone);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.sa-tab.active { color: var(--sa-azur); border-color: var(--sa-azur); }

/* Logo (inline SVG version) */
.sa-logo-svg { width: 36px; height: 36px; }
.sa-footer-logo .sa-logo-svg { width: 48px; height: 48px; }

/* Stats */
.sa-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}
.sa-stat-num {
  font-size: 56px;
  font-weight: 800;
  color: var(--sa-azur);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.sa-stat-label { color: var(--sa-stone); font-size: 14px; }

/* Image placeholder (kept brand-clean) */
.sa-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--sa-radius-md);
  background: linear-gradient(135deg, #B8CBD1 0%, #6AA9BD 100%);
  position: relative;
  overflow: hidden;
}
.sa-img-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.2), transparent 50%);
}

/* Quote */
.sa-quote {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  color: var(--sa-petrol);
  border-left: 3px solid var(--sa-azur);
  padding-left: 24px;
  margin: 32px 0;
}
