/* ============================================================
   NDROPS — MAIN.CSS
   Dark theme · Amber accent · Bricolage Grotesque + DM Sans
   ============================================================ */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --primary:       #F59E0B;
  --primary-hover: #D97706;
  --primary-light: rgba(245,158,11,0.12);
  --bg:            #0D1117;
  --bg-soft:       #161B22;
  --bg-card:       #1C2128;
  --bg-card-hover: #21262D;
  --text:          #E6EDF3;
  --text-muted:    #8B949E;
  --border:        #30363D;
  --amber:         #F59E0B;
  --red:           #f85149;
  --green:         #3FB950;

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

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

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow:    0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hover); }

ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.25rem, 2.5vw, 1.8rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); }

p { margin-bottom: 1rem; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }

strong { color: var(--text); font-weight: 600; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section--alt {
  background: var(--bg-soft);
}

/* ============================================================
   BADGE
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.9rem;
  background: var(--primary-light);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: #0D1117;
}
.btn--primary:hover {
  background: var(--primary-hover);
  color: #0D1117;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245,158,11,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.btn--sm {
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,17,23,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text);
  text-decoration: none;
  margin-right: auto;
  flex-shrink: 0;
}

.nav__logo:hover {
  color: var(--text);
}

.nav__logo-icon {
  width: 34px;
  height: 34px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #0D1117;
  font-weight: 900;
  flex-shrink: 0;
}

.nav__logo-text span {
  color: var(--primary);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__links a {
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}

.nav__links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: 1rem;
  flex-shrink: 0;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ============================================================
   MOBILE DRAWER — sibling to <header>, NOT inside it
   ============================================================ */
.mobile-drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  transform: translateY(-110%);
  transition: transform 0.3s ease;
}

.mobile-drawer.is-open {
  transform: translateY(0);
}

.mobile-drawer__list {
  display: flex;
  flex-direction: column;
}

.mobile-drawer__list a {
  display: block;
  padding: 0.9rem 1.5rem;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}

.mobile-drawer__list a:hover {
  color: var(--primary);
  background: rgba(245,158,11,0.05);
}

.mobile-drawer__list li:last-child a {
  border-bottom: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 2.5rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(245,158,11,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  max-width: var(--max-w-content);
}

.hero__title {
  margin-bottom: 1rem;
}

.hero__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 1.75rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.hero__stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary);
}

.hero__stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================================
   TOP SECTION
   ============================================================ */
.top-section {
  padding: 3rem 0 4rem;
  background: var(--bg-soft);
}

.section-header {
  margin-bottom: 1.75rem;
}

.section-header h2 {
  margin-bottom: 0.25rem;
}

/* ============================================================
   COMPACT LISTING
   ============================================================ */
.listing {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.listing__row {
  display: grid;
  grid-template-columns: 40px 120px 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.listing__row:last-child {
  border-bottom: none;
}

.listing__row:hover {
  background: var(--bg-card-hover);
}

.listing__rank {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
}

.listing__rank--top {
  color: var(--primary);
}

.listing__logo {
  display: flex;
  align-items: center;
}

.listing__logo img {
  width: 100px;
  height: 40px;
  object-fit: contain;
}

.listing__info {
  min-width: 0;
}

.listing__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.listing__bonus {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}

.listing__cta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* ============================================================
   INTRO TEXT
   ============================================================ */
.top-section > .container > p {
  max-width: var(--max-w-content);
  margin-bottom: 2rem;
  color: var(--text-muted);
}

/* ============================================================
   DETAIL CARDS
   ============================================================ */
.detail-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s;
}

.detail-card:hover {
  border-color: rgba(245,158,11,0.25);
}

.detail-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}

.detail-card__rank {
  width: 38px;
  height: 38px;
  background: var(--primary-light);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--primary);
  flex-shrink: 0;
}

.detail-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  flex: 1;
}

.detail-card__bonus-badge {
  padding: 0.28rem 0.75rem;
  background: rgba(63,185,80,0.1);
  border: 1px solid rgba(63,185,80,0.3);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}

.detail-card__body {
  padding: 1.5rem;
}

.detail-card__screenshot {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border);
  transition: opacity 0.2s, box-shadow 0.2s;
}

.detail-card__screenshot:hover {
  opacity: 0.9;
  box-shadow: var(--shadow);
}

.detail-card__screenshot img {
  width: 100%;
  height: auto;
}

.detail-card__text p {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.detail-card__text p:last-child {
  margin-bottom: 0;
}

.detail-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.detail-card__tag {
  padding: 0.25rem 0.65rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.detail-card__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

/* ============================================================
   PROSE SECTIONS
   ============================================================ */
.section-prose {
  padding: 3.5rem 0;
}

.section-prose--alt {
  background: var(--bg-soft);
}

.prose-content {
  max-width: var(--max-w-content);
}

.prose-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.prose-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.prose-content p {
  color: var(--text-muted);
}

.prose-content ul,
.prose-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.prose-content ul {
  list-style: disc;
}

.prose-content ol {
  list-style: decimal;
}

.prose-content ul li,
.prose-content ol li {
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  padding-left: 0.25rem;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison-wrap {
  overflow-x: auto;
  margin: 1.25rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.comparison-table th {
  background: var(--bg-card);
  padding: 0.8rem 1.1rem;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.comparison-table td {
  padding: 0.8rem 1.1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: middle;
}

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

.comparison-table tr:hover td {
  background: var(--bg-card-hover);
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--text);
}

.comparison-table .highlight {
  color: var(--green);
  font-weight: 700;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: 3.5rem 0;
  background: var(--bg-soft);
}

.faq-section h2 {
  margin-bottom: 2rem;
}

.faq-list {
  max-width: var(--max-w-content);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
}

.faq-item h3 {
  color: var(--text);
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.faq-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================================
   RESPONSIBLE GAMBLING BANNER
   ============================================================ */
.rg-section {
  padding: 2rem 0 3rem;
}

.rg-banner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  max-width: var(--max-w-content);
}

.rg-banner__icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.rg-banner__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.rg-banner__text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.rg-banner__text a {
  color: var(--primary);
  text-decoration: none;
}

.rg-banner__text a:hover {
  text-decoration: underline;
}

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

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.footer__brand-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer__18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--red);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  color: #fff;
}

.footer__col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

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

.footer__col ul a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
  text-decoration: none;
}

.footer__col ul a:hover {
  color: var(--primary);
}

.footer__rg-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.footer__rg-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.footer__rg-link {
  font-size: 0.82rem;
  color: var(--primary);
  text-decoration: none;
}

.footer__rg-link:hover {
  text-decoration: underline;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer__legal-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer__legal-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__legal-links a:hover {
  color: var(--primary);
}

/* ============================================================
   PAGE HERO (legal / service pages)
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-h) + 2.5rem) 0 2rem;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.page-hero .badge {
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.page-hero .lead {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   BREADCRUMBS (legal pages only)
   ============================================================ */
.breadcrumbs {
  padding: 0.85rem 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  flex-wrap: wrap;
  padding: 0;
}

.breadcrumbs li + li::before {
  content: '›';
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: var(--primary);
}

/* ============================================================
   PROSE CARDS (legal pages)
   ============================================================ */
.page-prose {
  padding: 2.5rem 0 4rem;
}

.section-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}

.section-card h2 {
  color: var(--text);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.section-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.section-card ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.section-card ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.section-card a {
  color: var(--primary);
}

/* ============================================================
   CONTACT FORM (kontakt page)
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B949E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--primary);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.contact-info-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.contact-info-value {
  font-size: 0.9rem;
  color: var(--text);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .listing__row {
    grid-template-columns: 32px 90px 1fr auto;
    gap: 0.6rem;
    padding: 0.8rem 1rem;
  }
  .listing__bonus { display: none; }

  .detail-card__actions {
    flex-wrap: wrap;
  }
  .detail-card__actions .btn {
    flex: 1;
    justify-content: center;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .listing__row {
    grid-template-columns: 28px 70px 1fr auto;
    gap: 0.4rem;
    padding: 0.7rem 0.85rem;
  }
  .listing__logo img {
    width: 70px;
  }

  .detail-card__header {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .hero__stats {
    gap: 1rem;
  }
}