* { hyphens: none; -webkit-hyphens: none; -ms-hyphens: none; }

/* ============================================================
   PROMPT-BIBLIOTHEK LANDING PAGE
   style.css — Hauptstylesheet
   ============================================================ */

/* CUSTOM PROPERTIES */
:root {
  --cream: #faf8f3;
  --warm-white: #fffef9;
  --sand: #f0ece0;
  --accent: #2d6a4f;
  --accent-light: #40916c;
  --accent-pale: #d8f3dc;
  --gold: #b5832a;
  --gold-light: #f9e4b0;
  --text-dark: #1a1a1a;
  --text-mid: #444;
  --text-light: #777;
  --border: #e8e4da;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-pill: 50px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Nunito', sans-serif;
}

/* RESET & BASE */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.fade-up   { animation: fadeUp 0.7s ease forwards; }
.fade-up-2 { animation: fadeUp 0.7s 0.15s ease both; }
.fade-up-3 { animation: fadeUp 0.7s 0.30s ease both; }
.fade-up-4 { animation: fadeUp 0.7s 0.45s ease both; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.nav__cta {
  background: var(--accent);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-body);
  transition: background 0.2s, transform 0.2s;
}


.nav__contact {
  background: var(--accent);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-body);
  transition: background 0.2s, transform 0.2s;
}

.nav__contact:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.nav__cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(160deg, #e8f5e9 0%, var(--warm-white) 50%, var(--gold-light) 100%);
  padding: 80px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, #d8f3dc88 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, #f9e4b055 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__badge {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold);
  border: 1px solid #e8c86a;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 58px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-dark);
  max-width: 780px;
  margin: 0 auto 20px;
}

.hero__title span { color: var(--accent); }

.hero__sub {
  font-size: clamp(16px, 2.5vw, 19px);
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.btn--primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 18px 44px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 18px;
  font-family: var(--font-body);
  box-shadow: 0 6px 24px rgba(45,106,79,0.3);
  transition: all 0.2s;
  animation: float 3s ease-in-out infinite;
}

.btn--primary:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(45,106,79,0.4);
  animation: none;
}

.hero__price-note {
  font-size: 14px;
  color: var(--text-light);
}

.hero__price-note strong {
  color: var(--text-dark);
  font-size: 16px;
}

.hero__trust {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 600;
}

.trust-item__icon { font-size: 18px; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats {
  background: var(--accent);
  padding: 48px 24px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.stat__num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.stat__label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ============================================================
   GENERIC SECTION WRAPPER
   ============================================================ */
.section {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.section--bg {
  background: var(--sand);
  padding: 80px 24px;
  max-width: 100%;
}

.section--bg .section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section__title span { color: var(--accent); }

.section__sub {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
  hyphens: none;
  -webkit-hyphens: none;
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.feature-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card__icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.feature-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.feature-card__text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ============================================================
   CATEGORY PILLS
   ============================================================ */
.cats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.cat-pill {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all 0.2s;
  cursor: default;
}

.cat-pill:hover {
  background: var(--accent-pale);
  border-color: var(--accent);
  color: var(--accent);
}

.cat-pill__count {
  background: var(--sand);
  border-radius: var(--radius-pill);
  padding: 2px 9px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
}

/* ============================================================
   FOR WHOM CARDS
   ============================================================ */
.forwhom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.forwhom-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px;
}

.forwhom-card__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
}

.forwhom-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.forwhom-card__list li {
  font-size: 14px;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.forwhom-card__list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-wrap {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  margin-top: 48px;
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th {
  padding: 20px 24px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  background: var(--sand);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
}

.compare-table th.highlight { color: var(--accent); }
.compare-table th:first-child { color: var(--text-mid); }

.compare-table td {
  padding: 16px 24px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}

.compare-table td.highlight {
  background: #f0faf4;
  font-weight: 700;
  color: var(--accent);
}

.compare-table tr:last-child td { border-bottom: none; }

.icon--check { color: var(--accent); font-weight: 700; font-size: 16px; }
.icon--cross  { color: #ccc; font-size: 16px; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  background: linear-gradient(160deg, #e8f5e9 0%, var(--warm-white) 100%);
  padding: 80px 24px;
}

.pricing__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.price-card {
  background: var(--warm-white);
  border: 2px solid var(--accent);
  border-radius: 28px;
  padding: 48px 40px;
  margin-top: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.price-card__badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  padding: 6px 22px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.price-card__amount {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}

.price-card__amount sup {
  font-size: 28px;
  vertical-align: top;
  margin-top: 12px;
  display: inline-block;
}

.price-card__note {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 6px;
}

.price-card__includes {
  list-style: none;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.price-card__includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-mid);
}

.price-card__includes li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
}

.btn--buy {
  display: block;
  background: var(--accent);
  color: #fff;
  padding: 20px 40px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 18px;
  font-family: var(--font-body);
  box-shadow: 0 6px 24px rgba(45,106,79,0.3);
  transition: all 0.2s;
}

.btn--buy:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(45,106,79,0.4);
}

.price-card__guarantee {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
}

.faq-item {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item__question {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  list-style: none;
  user-select: none;
  transition: background 0.15s;
}

.faq-item__question:hover { background: var(--sand); }

.faq-item__question::after {
  content: '▼';
  font-size: 12px;
  color: var(--text-light);
  flex-shrink: 0;
  transition: transform 0.2s;
}

details[open] .faq-item__question::after { transform: rotate(180deg); }

.faq-item__answer {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--accent);
  padding: 80px 24px;
  text-align: center;
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  margin-bottom: 16px;
}

.final-cta__sub {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn--final {
  display: inline-block;
  background: #fff;
  color: var(--accent);
  padding: 18px 44px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 18px;
  font-family: var(--font-body);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  transition: all 0.2s;
}

.btn--final:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.3);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 40px 24px;
  font-size: 13px;
  line-height: 2;
}

.footer a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .hero { padding: 60px 20px 50px; }
  .hero__trust { gap: 16px; }
  .section { padding: 60px 20px; }
  .section--bg { padding: 60px 20px; }
  .stats { padding: 36px 20px; }
  .stats__grid { gap: 24px; }
  .pricing { padding: 60px 20px; }
  .price-card { padding: 40px 24px; }
  .final-cta { padding: 60px 20px; }
}

@media (max-width: 480px) {
  .nav { padding: 14px 16px; }
  .nav__logo { font-size: 17px; }
  .nav__cta { padding: 8px 16px; font-size: 13px; }
  .compare-table th,
  .compare-table td { padding: 12px 14px; font-size: 13px; }
  .hero__trust { gap: 12px; }
  .trust-item { font-size: 13px; }
  .btn--primary { padding: 16px 32px; font-size: 16px; }
}

/* ============================================================
   MODALS — Impressum & Datenschutz
============================================================ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.is-open {
  display: flex;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}

.modal__box {
  position: relative;
  background: var(--warm-white);
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: var(--sand);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 22px;
  cursor: pointer;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}

.modal__close:hover { background: var(--border); }

.modal__title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.modal__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal__content p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

.modal__content strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

@media (max-width: 480px) {
  .modal__box { padding: 28px 20px; }
  .modal__title { font-size: 22px; }
}

/* ============================================================
   COMING SOON OVERLAY
============================================================ */
.coming-soon {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(240, 236, 224, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.coming-soon__box {
  background: var(--warm-white);
  border-radius: 28px;
  padding: 52px 44px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  border: 1px solid var(--border);
  animation: fadeUp 0.5s ease forwards;
}

.coming-soon__emoji {
  font-size: 52px;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
  display: block;
}

.coming-soon__title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.coming-soon__subtitle {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.coming-soon__text {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
}

.coming-soon__btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-body);
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(45,106,79,0.3);
}

.coming-soon__btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .coming-soon__box { padding: 36px 24px; }
  .coming-soon__title { font-size: 28px; }
}

/* ============================================================
   BEWERTUNGEN
============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.review-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.review-stars {
  color: #f0a500;
  font-size: 18px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
}

.review-role {
  font-size: 13px;
  color: var(--text-light);
}

/* ============================================================
   WHY SECTION — Slider + Text
   ============================================================ */

.why-section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* SLIDER */
.slider-wrap {
  flex: 1;
  min-width: 0;
}

.slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--warm-white);
  border: 1px solid var(--border);
  aspect-ratio: 9 / 16;
  max-height: 520px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide--active { opacity: 1; }

/* Platzhalter bis Screenshots da sind */
.slide__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px;
  text-align: center;
}

.slide__icon  { font-size: 48px; }
.slide__label { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--text-dark); }
.slide__hint  { font-size: 13px; color: var(--text-light); border: 1.5px dashed var(--border); border-radius: var(--radius-sm); padding: 8px 16px; }

/* Slide dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.dot--active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* WHY TEXT */
.why-text { flex: 1; min-width: 0; }

.why-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 28px;
  color: var(--text-dark);
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.why-item__icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.why-item p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .why-inner {
    flex-direction: column;
    gap: 36px;
  }
  .slider { max-height: 380px; }
}

    /* SLIDER */
    .why-section { padding: 60px 20px; max-width: 1100px; margin: 0 auto; }
    .why-inner { display: flex; flex-direction: column; gap: 48px; }
    .slider-wrap { width: 100%; }
    .slider {
      position: relative; border-radius: 20px; overflow: hidden;
      box-shadow: 0 12px 48px rgba(0,0,0,0.12);
      background: #fffef9; border: 1px solid #e8e4da;
      aspect-ratio: 16/9; width: 100%;
    }
    .slide {
      position: absolute; inset: 0; opacity: 0;
      transition: opacity 0.5s ease;
      display: flex; align-items: center; justify-content: center;
      background: #faf8f3;
    }
    .slide--active { opacity: 1; }
    .slide__placeholder {
      display: flex; flex-direction: column;
      align-items: center; gap: 14px;
      padding: 40px; text-align: center;
    }
    .slide__icon  { font-size: 52px; }
    .slide__label { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #1a1a1a; }
    .slide__hint  { font-size: 13px; color: #777; border: 1.5px dashed #e8e4da; border-radius: 12px; padding: 8px 16px; }
    .slider-dots  { display: none; }
    .why-text { width: 100%; }
    .why-title { font-family: 'Playfair Display', serif; font-size: clamp(22px, 3vw, 34px); font-weight: 700; line-height: 1.25; margin-bottom: 28px; color: #1a1a1a; }
    .why-list  { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .why-item  { display: flex; gap: 14px; align-items: flex-start; }
    .why-item__icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
    .why-item strong { display: block; font-size: 15px; font-weight: 800; color: #1a1a1a; margin-bottom: 4px; }
    .why-item p { font-size: 14px; color: #444; line-height: 1.6; }
    @media (max-width: 768px) {
      .why-list { grid-template-columns: 1fr; }
      .slider { aspect-ratio: 4/3; }
      .why-title { font-size: 22px; }
    }
