@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

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

:root {
  --bg:        #FEF6F8;
  --surface:   #FFFFFF;
  --pink-50:   #FFF0F4;
  --pink-100:  #FFE0EA;
  --pink-200:  #F9BDD0;
  --pink-300:  #F09AB8;
  --pink-400:  #E07898;
  --pink-500:  #C95678;
  --text:      #2A1820;
  --muted:     #7A5560;
  --light:     #B08898;
  --border:    #F0D8DF;
  --shadow:    rgba(200,100,130,.12);
  --r:         16px;
  --r-sm:      10px;
  --rp:        100px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ─────────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(254,246,248,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600;
  color: var(--pink-500);
  text-decoration: none; letter-spacing: .5px;
  display: inline-flex; flex-direction: row; align-items: center; gap: 10px;
}
.logo-name { display: inline-flex; flex-direction: column; line-height: 1.1; }
.logo-icon { width: 38px; height: 38px; flex-shrink: 0; }
footer .logo-icon { width: 32px; height: 32px; }
.logo-text span { color: var(--text); font-style: italic; font-weight: 400; }

nav { display: flex; gap: 32px; align-items: center; }
nav a {
  text-decoration: none; color: var(--muted);
  font-size: 15px; font-weight: 500;
  transition: color .2s;
}
nav a:hover, nav a.active { color: var(--pink-500); }

.btn-outline {
  border: 1.5px solid var(--pink-300); color: var(--pink-500);
  padding: 8px 20px; border-radius: var(--rp);
  font-size: 14px; font-weight: 500; font-family: inherit;
  cursor: pointer; background: transparent;
  transition: all .2s; text-decoration: none; display: inline-block;
}
.btn-outline:hover { background: var(--pink-50); }

/* ── HERO ────────────────────────────────────────── */
.hero {
  background: linear-gradient(150deg, #FFE0EA 0%, #F9BDD0 45%, #FEF6F8 100%);
  padding: 96px 48px 100px;
  text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(240,154,184,.25) 0%, transparent 65%);
  top: -250px; right: -150px; pointer-events: none;
}
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,.7); color: var(--pink-500);
  font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 18px; border-radius: var(--rp); margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px,6vw,74px); font-weight: 600;
  line-height: 1.12; margin-bottom: 20px;
  max-width: 720px; margin-left: auto; margin-right: auto;
}
.hero h1 em { color: var(--pink-500); font-style: italic; }
.hero p {
  font-size: 18px; color: var(--muted); font-weight: 300;
  max-width: 480px; margin: 0 auto 0; line-height: 1.7;
}

/* ── FILTER CARD / WIZARD ────────────────────────── */
.filter-section {
  max-width: 720px; margin: -44px auto 72px; padding: 0 24px;
}
.filter-card {
  background: var(--surface);
  border-radius: 24px;
  box-shadow: 0 8px 56px var(--shadow);
  padding: 44px 48px;
}

/* Progress bar */
.progress-wrap {
  height: 4px; background: var(--pink-100);
  border-radius: 2px; margin-bottom: 28px; overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--pink-300), var(--pink-500));
  border-radius: 2px; transition: width .4s ease;
}

.step-counter {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 16px;
}

/* Steps */
.step { display: none; }
.step.active { display: block; }

.step h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 600;
  line-height: 1.2; margin-bottom: 10px; color: var(--text);
}
.step-hint {
  font-size: 13px; color: var(--muted);
  margin-bottom: 22px; line-height: 1.5;
}

.filter-group { margin-bottom: 28px; }
.filter-label {
  display: block; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--muted); margin-bottom: 12px;
}
.pill-group { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  padding: 11px 22px; border-radius: var(--rp);
  border: 1.5px solid var(--border); background: transparent;
  color: var(--muted); font-size: 15px; font-family: inherit;
  font-weight: 500; cursor: pointer; transition: all .18s;
}
.pill:hover { border-color: var(--pink-300); color: var(--pink-500); background: var(--pink-50); }
.pill.active { border-color: var(--pink-400); background: var(--pink-100); color: var(--pink-500); }

/* Step navigation */
.step-nav {
  display: flex; justify-content: space-between;
  align-items: center; margin-top: 40px;
}
.btn-back {
  background: transparent; border: none; color: var(--muted);
  font-size: 15px; font-weight: 500; font-family: inherit;
  cursor: pointer; padding: 8px 0; transition: color .2s;
}
.btn-back:hover { color: var(--text); }
.btn-back.invisible { visibility: hidden; pointer-events: none; }

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

.btn-primary {
  padding: 14px 36px;
  background: var(--pink-500); color: white; border: none;
  border-radius: var(--rp); font-size: 16px; font-weight: 600;
  font-family: inherit; cursor: pointer; text-align: center;
  text-decoration: none; letter-spacing: .3px;
  transition: all .22s; display: inline-block;
}
.btn-primary:hover {
  background: #B04868;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(201,86,120,.38);
}

/* ── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 36px 48px; text-align: center;
}
footer .logo-sub {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 8px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--light); line-height: 1;
  margin-top: 2px;
}
footer .logo-sub { color: rgba(255,255,255,.5); }

footer .logo { font-size: 22px; margin-bottom: 8px; }
footer p { color: var(--light); font-size: 13px; }

/* ── RESULTS PAGE ────────────────────────────────── */
.page-header {
  padding: 52px 48px 32px; max-width: 1240px; margin: 0 auto;
}
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 600; margin-bottom: 8px;
}
.page-header p { color: var(--muted); font-size: 15px; }

.active-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.filter-tag {
  background: var(--pink-100); color: var(--pink-500);
  font-size: 13px; font-weight: 500;
  padding: 5px 14px; border-radius: var(--rp);
}

.card-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; max-width: 1240px;
  margin: 0 auto; padding: 0 48px 88px;
}

.dest-card {
  background: var(--surface); border-radius: 20px;
  overflow: hidden; box-shadow: 0 4px 24px var(--shadow);
  transition: all .25s; cursor: pointer;
  text-decoration: none; color: var(--text); display: block;
}
.dest-card:hover { transform: translateY(-5px); box-shadow: 0 14px 44px rgba(200,100,130,.22); }

.card-img {
  height: 188px; position: relative;
  display: flex; align-items: flex-end; padding: 16px;
}
.card-img-label {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.9);
  background: rgba(0,0,0,.18); backdrop-filter: blur(4px);
  padding: 4px 12px; border-radius: var(--rp);
}
.card-badge {
  position: absolute; top: 16px; right: 16px;
  font-size: 11px; font-weight: 700; padding: 4px 12px;
  border-radius: var(--rp); letter-spacing: .5px;
}
.badge-high { background: #EDF7EE; color: #2A6E30; }
.badge-mid  { background: #FFF8E6; color: #9A6A10; }

.card-body { padding: 22px 24px 26px; }
.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600; margin-bottom: 4px;
}
.card-sub { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.tag {
  font-size: 12px; font-weight: 500;
  padding: 4px 11px; border-radius: var(--rp);
  background: var(--pink-50); color: var(--muted);
}
.card-footer { display: flex; align-items: center; justify-content: space-between; }
.stars { color: #E09030; font-size: 13px; letter-spacing: 1px; }
.rating-info { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.rating-num { font-weight: 600; font-size: 13px; }
.rating-count { font-size: 11px; color: var(--light); }
.card-cta { color: var(--pink-500); font-size: 14px; font-weight: 600; }

/* ── DETAIL PAGE ─────────────────────────────────── */
.detail-hero {
  height: 340px; position: relative;
  display: flex; align-items: flex-end; padding: 32px 48px;
}
.detail-hero-badge {
  font-size: 13px; font-weight: 700; padding: 6px 16px;
  border-radius: var(--rp); background: rgba(255,255,255,.88);
  color: #2A6E30;
}
.breadcrumb {
  padding: 20px 48px 0; font-size: 13px; color: var(--light);
  max-width: 1240px; margin: 0 auto;
}
.breadcrumb a { color: var(--light); text-decoration: none; }
.breadcrumb a:hover { color: var(--pink-500); }
.breadcrumb span { margin: 0 8px; color: var(--border); }

.detail-content {
  max-width: 1240px; margin: 0 auto;
  padding: 40px 48px 88px;
  display: grid; grid-template-columns: 1fr 360px;
  gap: 56px; align-items: start;
}

.detail-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px; font-weight: 600; line-height: 1.05; margin-bottom: 8px;
}
.detail-country { color: var(--muted); font-size: 17px; margin-bottom: 36px; }

.criteria-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 14px; margin-bottom: 44px;
}
.criteria-item {
  background: var(--pink-50); border-radius: var(--r); padding: 20px 22px;
}
.ci-icon { font-size: 22px; display: block; margin-bottom: 8px; }
.ci-key {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--muted); margin-bottom: 6px;
}
.ci-val { font-size: 16px; font-weight: 600; color: var(--text); }
.ci-val.safe { color: #2A6E30; }

.section-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 600; margin-bottom: 18px;
}
.about-text { font-size: 16px; line-height: 1.85; color: var(--muted); margin-bottom: 48px; }

.review-list { display: flex; flex-direction: column; gap: 18px; }
.review-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 24px;
}
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; color: white; flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: 15px; }
.review-meta { font-size: 12px; color: var(--light); }
.r-stars { color: #E09030; font-size: 13px; margin-left: auto; }
.review-text { font-size: 14px; line-height: 1.75; color: var(--muted); }

/* ── SIDEBAR ─────────────────────────────────────── */
.sidebar {
  background: var(--surface); border-radius: 24px;
  box-shadow: 0 8px 44px var(--shadow);
  padding: 32px; position: sticky; top: 90px;
}
.sidebar-top {
  text-align: center; padding-bottom: 24px;
  border-bottom: 1px solid var(--border); margin-bottom: 24px;
}
.big-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 68px; font-weight: 600; color: var(--pink-500);
  line-height: 1; margin-bottom: 8px;
}
.sb-stars { color: #E09030; font-size: 20px; letter-spacing: 2px; margin-bottom: 6px; }
.sb-count { font-size: 13px; color: var(--light); }

.qf-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.qf-row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
.qf-key { color: var(--muted); }
.qf-val { font-weight: 600; }
.badge-safe-sm {
  background: #EDF7EE; color: #2A6E30;
  padding: 3px 12px; border-radius: var(--rp);
  font-size: 12px; font-weight: 700;
}

.btn-sec {
  display: block; width: 100%; padding: 15px;
  background: transparent; color: var(--pink-500);
  border: 1.5px solid var(--pink-300); border-radius: var(--rp);
  font-size: 15px; font-weight: 600; font-family: inherit;
  cursor: pointer; text-align: center; text-decoration: none;
  transition: all .2s; margin-top: 12px;
}
.btn-sec:hover { background: var(--pink-50); }

/* ── MATCH BADGE ─────────────────────────────────── */
.match-badge {
  position: absolute; top: 16px; left: 16px;
  font-size: 11px; font-weight: 700; padding: 4px 10px;
  border-radius: var(--rp); letter-spacing: .5px;
  backdrop-filter: blur(4px);
}
.match-100 { background: rgba(237,247,238,.92); color: #2A6E30; }
.match-75  { background: rgba(255,240,244,.92); color: var(--pink-500); }
.match-50  { background: rgba(255,248,230,.92); color: #9A6A10; }
.match-low { background: rgba(240,240,240,.92); color: #666; }

.section-divider {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 16px;
  padding: 8px 0 4px;
}
.section-divider span {
  font-size: 13px; font-weight: 600; color: var(--muted);
  white-space: nowrap; text-transform: uppercase; letter-spacing: 1px;
}
.section-divider::before, .section-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

/* ── RESPONSIVE ──────────────────────────────────── */
/* mobile-only hero subtext — hidden by default on desktop */
.hero-sub-mobile {
  display: none;
}

@media (max-width: 900px) {
  header { padding: 0 24px; }
  .hero { padding: 72px 24px 80px; }
  .filter-section { padding: 0 16px; }
  .filter-card { padding: 32px 28px; }
  .card-grid { grid-template-columns: repeat(2,1fr); padding: 0 24px 72px; }
  .page-header { padding: 40px 24px 24px; }
  .detail-content { grid-template-columns: 1fr; padding: 32px 24px 72px; }
  .detail-hero { padding: 24px; }
  .detail-title { font-size: 44px; }
  .breadcrumb { padding: 16px 24px 0; }
  footer { padding: 28px 24px; }
}
@media (max-width: 600px) {
  .card-grid { grid-template-columns: 1fr; }
  nav a:not(.btn-outline) { display: none; }

  /* Hero kompakter: Beschreibungstext fällt weg, Filter rückt hoch */
  .hero { padding: 40px 24px 60px; }
  .hero-sub { display: none; }

  /* Beschreibungstext erscheint unterhalb der Filter-Karte */
  .hero-sub-mobile {
    display: block;
    font-size: 15px; color: var(--muted); font-weight: 300;
    line-height: 1.7; text-align: center;
    max-width: 480px; margin: 20px auto 40px;
    padding: 0 24px;
  }
}

/* ── AUTH SEITE ──────────────────────────────────── */
.auth-section {
  min-height: calc(100vh - 140px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 16px;
}
.auth-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 48px 40px;
  width: 100%; max-width: 440px;
  box-shadow: 0 4px 32px var(--shadow);
}
.auth-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600;
  text-align: center; margin-bottom: 6px; color: var(--text);
}
.auth-logo span { color: var(--pink-500); }
.auth-sub {
  text-align: center; color: var(--muted); font-size: 14px;
  margin-bottom: 28px;
}
.auth-tabs {
  display: flex; gap: 0;
  border: 1.5px solid var(--border); border-radius: var(--rp);
  overflow: hidden; margin-bottom: 28px;
}
.auth-tab {
  flex: 1; padding: 10px 0;
  background: transparent; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
  color: var(--muted); transition: all .2s;
}
.auth-tab.active {
  background: var(--pink-500); color: #fff; font-weight: 600;
}
.auth-form { display: flex; flex-direction: column; gap: 18px; }
.auth-form[hidden] { display: none; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-field input {
  padding: 12px 16px; border-radius: var(--r-sm);
  border: 1.5px solid var(--border); background: var(--bg);
  font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--text);
  outline: none; transition: border-color .2s;
}
.form-field input:focus { border-color: var(--pink-400); }
.field-hint { font-size: 11px; color: var(--light); }
.auth-submit { width: 100%; margin-top: 4px; }
.auth-msg { font-size: 13px; text-align: center; min-height: 18px; margin-top: 4px; }
.auth-msg-error { color: var(--pink-500); }
.auth-msg-ok    { color: #2A6E30; }

/* ── PROFIL SEITE ────────────────────────────────── */
.profil-wrap {
  max-width: 900px; margin: 0 auto;
  padding: 40px 48px 80px;
  display: flex; flex-direction: column; gap: 48px;
}
.profil-header {
  display: flex; align-items: center; gap: 24px;
}
.profil-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-300), var(--pink-500));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 600; color: #fff;
  flex-shrink: 0;
}
.profil-name  { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; }
.profil-email { font-size: 14px; color: var(--muted); margin-top: 2px; }
.profil-since { font-size: 12px; color: var(--light); margin-top: 4px; }
.profil-section { display: flex; flex-direction: column; gap: 20px; }
.profil-section-head {
  display: flex; align-items: baseline; gap: 12px;
}
.profil-section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600;
}
.profil-count {
  font-size: 13px; color: var(--muted);
  background: var(--pink-50); padding: 3px 10px; border-radius: var(--rp);
}
.merkliste-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.merkliste-empty {
  grid-column: 1/-1; text-align: center;
  color: var(--muted); padding: 48px 0; line-height: 1.7;
}
.merkliste-card {
  text-decoration: none; color: var(--text);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: block;
}
.merkliste-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px var(--shadow); }
.merkliste-card-img {
  height: 110px; position: relative;
}
.merkliste-remove {
  position: absolute; top: 8px; right: 8px;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.85); border: none;
  font-size: 16px; cursor: pointer; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.merkliste-remove:hover { background: #fff; color: var(--pink-500); }
.merkliste-card-body { padding: 14px 16px; }
.merkliste-card-name { font-weight: 600; font-size: 15px; }
.merkliste-card-sub  { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.merkliste-card-tags { display: flex; gap: 6px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .profil-wrap { padding: 32px 24px 64px; }
  .auth-card { padding: 36px 24px; }
}

/* ── LEGAL SEITEN (Impressum / Datenschutz) ────── */
.legal-wrap {
  max-width: 740px; margin: 0 auto;
  padding: 40px 48px 80px;
}
.legal-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 600; margin-bottom: 6px;
}
.legal-hint { font-size: 13px; color: var(--light); margin-bottom: 36px; }
.legal-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
  color: var(--pink-500); margin: 32px 0 10px;
}
.legal-wrap p { line-height: 1.8; color: var(--text); margin-bottom: 12px; }
.legal-wrap a { color: var(--pink-500); }
.legal-list { padding-left: 20px; line-height: 1.9; color: var(--text); margin-bottom: 12px; }
.legal-list li { margin-bottom: 4px; }

/* ── SORT DROPDOWN (Ergebnisse) ─────────────────── */
.sort-wrap {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px;
}
.sort-label { font-size: 13px; color: var(--muted); white-space: nowrap; }
.sort-select {
  padding: 7px 14px; border-radius: var(--rp);
  border: 1.5px solid var(--border); background: var(--surface);
  font-family: 'DM Sans', sans-serif; font-size: 13px;
  color: var(--text); cursor: pointer; outline: none;
  transition: border-color .2s;
}
.sort-select:focus { border-color: var(--pink-400); }

/* ── WIZARD SKIP ────────────────────────────────── */
.btn-skip {
  background: none; border: none;
  font-size: 13px; color: var(--light);
  cursor: pointer; padding: 0;
  text-decoration: underline;
  font-family: 'DM Sans', sans-serif;
  transition: color .2s;
}
.btn-skip:hover { color: var(--muted); }
.step-nav-wrap {
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
}

/* ── SHARE BUTTON ───────────────────────────────── */
.btn-share {
  width: 100%; padding: 12px 0;
  background: var(--pink-50); border: 1.5px solid var(--pink-200);
  border-radius: var(--rp); font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500; color: var(--pink-500);
  cursor: pointer; transition: background .2s, border-color .2s;
}
.btn-share:hover { background: var(--pink-100); border-color: var(--pink-300); }

/* ── MOBILE FIXES ───────────────────────────────── */
@media (max-width: 900px) {
  .detail-hero { margin: 12px 16px 0 !important; border-radius: 16px !important; }
  .legal-wrap { padding: 32px 24px 64px; }
  .sort-wrap { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .step h2 { font-size: 24px; }
  .filter-card { padding: 28px 20px; }
  .detail-title { font-size: 36px; }
  .criteria-grid { grid-template-columns: 1fr 1fr; }
  .profil-header { flex-direction: column; text-align: center; }
}
