/* ==========================================================================
   BonusProfi — main.css
   Light + Deep Purple design system
   ========================================================================== */

/* ----- 1. Reset & base ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hover); text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }

/* ----- 2. CSS Variables --------------------------------------------------- */
:root {
  /* Colors */
  --primary:        #7c3aed;
  --primary-hover:  #6d28d9;
  --primary-light:  #f5f3ff;
  --primary-border: #ddd6fe;

  --bg:             #ffffff;
  --bg-soft:        #fafafa;
  --bg-card:        #ffffff;

  --text:           #18181b;
  --text-muted:     #52525b;
  --text-soft:      #71717a;

  --border:         #e4e4e7;
  --border-soft:    #f4f4f5;

  --amber:          #f59e0b;
  --red:            #dc2626;
  --green:          #16a34a;

  /* Radius */
  --radius-sm:      6px;
  --radius:         10px;
  --radius-md:      14px;
  --radius-lg:      20px;
  --radius-xl:      28px;

  /* Layout */
  --max-w:          1200px;
  --max-w-content:  920px;
  --nav-h:          72px;

  /* Shadows */
  --shadow-sm:      0 1px 2px rgba(24, 24, 27, 0.05);
  --shadow:         0 2px 8px rgba(24, 24, 27, 0.06), 0 1px 3px rgba(24, 24, 27, 0.04);
  --shadow-md:      0 6px 20px rgba(124, 58, 237, 0.08), 0 2px 6px rgba(24, 24, 27, 0.05);
  --shadow-lg:      0 12px 32px rgba(124, 58, 237, 0.10);

  /* Transitions */
  --t:              180ms ease;
}

/* ----- 3. Typography ------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-top: 2.2em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); margin-top: 1.6em; }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1em; color: var(--text-muted); }
strong { color: var(--text); font-weight: 600; }
ul, ol { color: var(--text-muted); padding-left: 1.4em; margin: 0 0 1em; }
li { margin-bottom: 0.4em; }

/* ----- 4. Container ------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- 5. Header & navigation -------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  height: var(--nav-h);
}
.site-header .container {
  display: flex;
  align-items: center;
  width: 100%;
}
.nav {
  display: flex;
  align-items: center;
  width: 100%;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin-right: auto;
}
.nav__logo:hover { text-decoration: none; color: var(--text); }
.nav__logo-mark {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(124, 58, 237, 0.30);
}
.nav__logo-text { display: inline-flex; flex-direction: column; line-height: 1; }
.nav__logo-text small {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  color: var(--text-soft);
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 3px;
}
.nav__links {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.nav__links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.96rem;
  transition: color var(--t);
}
.nav__links a:hover { color: var(--primary); text-decoration: none; }
.nav__burger {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  margin-left: 16px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  margin: 4px 0;
  border-radius: 2px;
}

/* ----- 6. Mobile drawer (sibling of <header>, not child!) ---------------- */
.mobile-drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transform: translateY(-110%);
  transition: transform 280ms ease;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.mobile-drawer.is-open { transform: translateY(0); }
.mobile-drawer__list {
  list-style: none;
  margin: 0;
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-drawer__list a {
  display: block;
  padding: 14px 12px;
  color: var(--text);
  font-weight: 500;
  border-radius: 8px;
  font-size: 1.05rem;
}
.mobile-drawer__list a:hover { background: var(--primary-light); color: var(--primary); text-decoration: none; }

/* ----- 7. Hero ------------------------------------------------------------ */
.hero {
  padding: 56px 0 36px;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border-soft);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--primary-border);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.hero__badge::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-block;
}
.hero h1 {
  max-width: 800px;
  margin-bottom: 0.5em;
}
.hero__lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 780px;
  margin-bottom: 24px;
}
.hero__rail {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  align-items: center;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.hero__rail-item {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.hero__rail-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.hero__rail-label {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ----- 8. Section base & spacing ----------------------------------------- */
.section { padding: 56px 0; }
.section--soft { background: var(--bg-soft); }
.section__intro { max-width: var(--max-w-content); margin: 0 auto 32px; }
.section__intro p { color: var(--text-muted); }

/* ----- 9. Compact listing (top of section) -------------------------------- */
.listing {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}
.listing__row {
  display: grid;
  grid-template-columns: 44px 130px 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 16px 22px;
  border-top: 1px solid var(--border-soft);
  transition: background var(--t);
}
.listing__row:first-child { border-top: 0; }
.listing__row:hover { background: var(--bg-soft); }
.listing__rank {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-soft);
  text-align: center;
}
.listing__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  background: var(--bg-soft);
  border-radius: 8px;
  padding: 6px;
  transition: transform var(--t);
}
.listing__logo:hover { transform: scale(1.03); text-decoration: none; }
.listing__logo img { max-height: 32px; width: auto; }
.listing__logo--placeholder {
  background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  padding: 0;
}
.listing__info { min-width: 0; }
.listing__name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 2px;
}
.listing__bonus {
  font-size: 0.92rem;
  color: var(--text-muted);
}
.listing__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--amber);
  font-weight: 600;
  font-size: 0.95rem;
}
.listing__rating-num {
  color: var(--text);
  margin-left: 4px;
}

/* CTA button system */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: all var(--t);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
}
.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 6px rgba(124, 58, 237, 0.25);
}
.btn--primary:hover {
  background: var(--primary-hover);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.35);
}
.btn--ghost {
  background: #fff;
  border-color: var(--border);
  color: var(--text);
}
.btn--ghost:hover {
  background: var(--bg-soft);
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
}
.btn--sm { padding: 8px 14px; font-size: 0.88rem; }
.btn--block { width: 100%; }

/* ----- 10. Detail cards (full review cards) ------------------------------- */
.cards { display: flex; flex-direction: column; gap: 24px; }
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--t);
}
.card:hover { box-shadow: var(--shadow-md); }
.card__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
}
.card__media {
  position: relative;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 280px;
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.card__rank {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--primary);
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.40);
}
.card__body {
  padding: 28px 32px 30px;
}
.card__title {
  margin: 0 0 0.55em;
  font-size: 1.45rem;
}
.card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 18px;
}
.card__list li {
  font-size: 0.93rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}
.card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
}
.card__bonus {
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 16px;
}
.card__bonus-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 2px;
}
.card__bonus-value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.card__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Slot details mini-table inside card */
.card__slot {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  font-size: 0.92rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.card__slot th,
.card__slot td {
  padding: 9px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}
.card__slot th {
  background: var(--bg-soft);
  font-weight: 600;
  color: var(--text);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.card__slot tr:last-child td { border-bottom: 0; }

/* ----- 11. Prose content (long-form sections) ---------------------------- */
.prose {
  max-width: var(--max-w-content);
  margin: 0 auto;
}
.prose h2 {
  margin-top: 2em;
  scroll-margin-top: calc(var(--nav-h) + 16px);
}
.prose h3 {
  margin-top: 1.6em;
  scroll-margin-top: calc(var(--nav-h) + 16px);
}
.prose p, .prose ul, .prose ol { color: var(--text-muted); }
.prose p:first-of-type { font-size: 1.06rem; }

/* ----- 12. Tables (comparison etc.) -------------------------------------- */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.4em 0 2em;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
  min-width: 540px;
}
.data-table th,
.data-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: top;
}
.data-table thead th {
  background: var(--bg-soft);
  color: var(--text);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border);
}
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table tbody tr:hover { background: var(--bg-soft); }
.data-table strong { color: var(--text); }

/* ----- 13. FAQ ------------------------------------------------------------ */
.faq__item {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.faq__item:last-child { border-bottom: 0; }
.faq__item h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  scroll-margin-top: calc(var(--nav-h) + 16px);
}
.faq__item p { margin: 0; }

/* ----- 14. Responsible gambling banner ----------------------------------- */
.rg-banner {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  color: #e0e7ff;
  padding: 32px 0;
  margin-top: 48px;
}
.rg-banner__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}
.rg-banner__icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.rg-banner h2 {
  color: #fff;
  font-size: 1.25rem;
  margin: 0 0 4px;
}
.rg-banner p {
  color: #c7d2fe;
  margin: 0;
  font-size: 0.96rem;
}
.rg-banner a {
  color: #fff;
  text-decoration: underline;
}
.rg-banner__cta .btn {
  background: #fff;
  color: #312e81;
}
.rg-banner__cta .btn:hover {
  background: #ede9fe;
  color: #312e81;
}

/* ----- 15. Footer --------------------------------------------------------- */
.site-footer {
  background: #18181b;
  color: #d4d4d8;
  padding: 56px 0 28px;
  margin-top: 0;
  font-size: 0.95rem;
}
.site-footer h4 {
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.site-footer a { color: #a1a1aa; }
.site-footer a:hover { color: #fff; text-decoration: none; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand p {
  color: #a1a1aa;
  font-size: 0.92rem;
  margin: 10px 0 16px;
  max-width: 280px;
}
.footer-brand .nav__logo { color: #fff; }
.footer-brand .nav__logo-text small { color: #a1a1aa; }
.footer-age {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.30);
  color: #fca5a5;
  padding: 5px 11px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-rg {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.88rem;
}
.footer-rg p { color: #a1a1aa; margin: 0 0 6px; }
.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid #27272a;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-size: 0.86rem;
  color: #71717a;
}
.footer-bottom__links {
  display: flex;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

/* ----- 16. Service pages (Kontakt, Impressum, Datenschutz, Cookie) ------- */
.page-hero {
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg) 100%);
  padding: 46px 0 30px;
  border-bottom: 1px solid var(--border-soft);
}
.page-hero h1 {
  font-size: clamp(1.8rem, 3.6vw, 2.4rem);
  margin: 0.4em 0 0.3em;
  max-width: 760px;
}
.page-hero__lead {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0;
}
.breadcrumbs {
  padding: 18px 0 0;
  font-size: 0.88rem;
  color: var(--text-soft);
}
.breadcrumbs ol {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.breadcrumbs li { color: var(--text-soft); }
.breadcrumbs li + li::before {
  content: "›";
  margin: 0 8px 0 2px;
  color: var(--text-soft);
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--primary); text-decoration: none; }

.section-prose { padding: 36px 0 64px; }
.section-prose .container { max-width: var(--max-w-content); }
.section-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 30px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.section-card h2 {
  margin-top: 0;
  font-size: 1.3rem;
}
.section-card h3 {
  margin-top: 1.4em;
  font-size: 1.05rem;
}
.section-card p:last-child { margin-bottom: 0; }
.section-card ul:last-child { margin-bottom: 0; }
.section-card a { word-break: break-word; }

/* ----- 17. Contact form -------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
}
.contact-info {
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  align-self: start;
}
.contact-info h3 { margin-top: 0; font-size: 1.05rem; }
.contact-info p { margin: 0 0 8px; font-size: 0.94rem; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 9px;
  font: inherit;
  font-size: 0.96rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--t), box-shadow var(--t);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}
.field textarea { resize: vertical; min-height: 130px; }
.field--check { display: flex; align-items: flex-start; gap: 10px; }
.field--check input { width: auto; margin-top: 4px; }
.field--check label { font-size: 0.88rem; color: var(--text-muted); font-weight: 400; }

/* ----- 18. Utility ------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }

/* ----- 19. Responsive (tablet + mobile) ---------------------------------- */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .card__inner { grid-template-columns: 1fr; }
  .card__media { min-height: 220px; }
  .card__body { padding: 24px 26px 26px; }
  .contact-grid { grid-template-columns: 1fr; }
  .rg-banner__inner { grid-template-columns: 1fr; text-align: left; }
  .rg-banner__cta { justify-self: start; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .hero { padding: 40px 0 28px; }
  .hero h1 { font-size: 2rem; }
  .hero__rail { gap: 14px 22px; }
  .hero__rail-num { font-size: 1.2rem; }
  .section { padding: 40px 0; }
  .listing__row {
    grid-template-columns: 32px 60px 1fr auto;
    gap: 10px;
    padding: 14px 14px;
  }
  .listing__row .listing__rating { display: none; }
  .listing__logo { height: 36px; }
  .listing__logo img { max-height: 28px; }
  .listing__name { font-size: 0.94rem; }
  .listing__bonus { font-size: 0.84rem; }
  .btn { padding: 10px 14px; font-size: 0.88rem; }
  .card__body { padding: 20px 22px 22px; }
  .card__title { font-size: 1.2rem; }
  .card__list { grid-template-columns: 1fr; }
  .card__cta { flex-direction: column; }
  .card__cta .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section-card { padding: 22px 20px; }
  .contact-form { padding: 22px 20px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  .listing__row { grid-template-columns: 28px 50px 1fr auto; padding: 12px 12px; }
}