/* ============================================
   fairplayexchid.net — Main Stylesheet
   ============================================ */

/* CSS Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #0a0f1c;
  --color-bg-alt: #111a2e;
  --color-card: #16223d;
  --color-card-light: #1d2c4d;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-text: #e8edf7;
  --color-text-muted: #9aa6c0;
  --color-primary: #ffb800;
  --color-primary-dark: #e0a300;
  --color-accent: #25d366;
  --color-accent-dark: #1eb558;
  --color-success: #22c55e;
  --color-danger: #ef4444;
  --gradient-hero: linear-gradient(135deg, #0a0f1c 0%, #16223d 50%, #1a2950 100%);
  --gradient-card: linear-gradient(145deg, #16223d 0%, #1d2c4d 100%);
  --gradient-gold: linear-gradient(135deg, #ffb800 0%, #ffd700 100%);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 18px 45px rgba(255, 184, 0, 0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --container: 1180px;
  --transition: all 0.25s ease;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

h1, h2, h3, h4 {
  font-family: 'Chakra Petch', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.25rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); margin-bottom: 0.6rem; }
h4 { font-size: 1.1rem; }

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

ul, ol { padding-left: 1.25rem; margin-bottom: 1rem; color: var(--color-text-muted); }
li { margin-bottom: 0.4rem; }

/* Layout */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  padding: 4rem 0;
}

@media (max-width: 768px) {
  section { padding: 2.5rem 0; }
}

/* Header */
.site-header {
  background: rgba(10, 15, 28, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--gradient-gold);
  color: #0a0f1c;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1rem;
}

.brand-text { color: #fff; }
.brand-text .accent { color: var(--color-primary); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

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

.main-nav a.active {
  color: var(--color-primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-accent);
  color: #fff !important;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 920px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-bg-alt);
    padding: 1.25rem;
    gap: 1rem;
    border-bottom: 1px solid var(--color-border);
    display: none;
  }
  .main-nav.is-open { display: flex; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--gradient-gold);
  color: #0a0f1c;
  box-shadow: 0 8px 20px rgba(255, 184, 0, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(255, 184, 0, 0.35);
  color: #0a0f1c;
}

.btn-whatsapp {
  background: var(--color-accent);
  color: #fff;
  font-size: 1.05rem;
  padding: 1rem 1.8rem;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: var(--color-accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.btn-xl {
  padding: 1.1rem 2.2rem;
  font-size: 1.1rem;
}

.btn svg {
  width: 22px;
  height: 22px;
}

/* Hero */
.hero {
  background-color: var(--color-bg);
  background-image: url("2848.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Dark overlay so the text stays readable on top of the hero image */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
      135deg,
      rgba(10, 15, 28, 0.85) 0%,
      rgba(22, 34, 61, 0.78) 50%,
      rgba(10, 15, 28, 0.9) 100%
  );
}

/* Subtle gold/green accent glow on top of the overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
      radial-gradient(circle at 20% 30%, rgba(255, 184, 0, 0.18) 0%, transparent 40%),
      radial-gradient(circle at 80% 70%, rgba(37, 211, 102, 0.14) 0%, transparent 40%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #fff 0%, #ffd700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.15rem;
  color: var(--color-text);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-meta {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-meta-value {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
}

.hero-meta-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Page Hero (sub-pages) */
.page-hero {
  background: var(--gradient-hero);
  padding: 4rem 0 7rem; /* extra bottom padding so CTA never gets covered by content-block's negative margin */
  text-align: center;
  position: relative;
}

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

.page-hero .breadcrumb {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.page-hero .breadcrumb a {
  color: var(--color-text-muted);
}

.page-hero .breadcrumb a:hover {
  color: var(--color-primary);
}

/* CTA wrapper inside page-hero — keeps the button on top of the content-block */
.page-hero .hero-cta {
  margin-top: 1.75rem;
  position: relative;
  z-index: 3;
}

@media (max-width: 768px) {
  .page-hero { padding: 3rem 0 6rem; }
}

/* Payments Marquee */
.payments {
  background: var(--color-bg-alt);
  padding: 2.5rem 0;
}

.payments-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.payments-header h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.payments-header p {
  color: var(--color-text-muted);
  margin: 0;
}

/* Payments marquee — infinite horizontal scroll */
.payments-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.payments-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
  align-items: center;
}

.payments-marquee:hover .payments-track {
  animation-play-state: paused;
}

.payment-logo {
  flex-shrink: 0;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  height: 80px;
  width: 160px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.payment-logo:hover {
  border-color: rgba(255, 184, 0, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.payment-logo img {
  max-height: 44px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(1.05);
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .payment-logo {
    height: 64px;
    width: 130px;
    padding: 0.75rem 1rem;
  }
  .payment-logo img {
    max-height: 36px;
    max-width: 100px;
  }
  .payments-track {
    gap: 1.25rem;
    animation-duration: 28s;
  }
}

/* Cards & Grids */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-header p {
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 184, 0, 0.3);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(255, 184, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card h3 {
  margin-bottom: 0.6rem;
  color: #fff;
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Step list */
.steps {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  counter-reset: step;
}

.step {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: relative;
  counter-increment: step;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 184, 0, 0.12);
  border: 1px solid rgba(255, 184, 0, 0.25);
  color: var(--color-primary);
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.step h3 {
  margin-bottom: 0.3rem;
  color: #fff;
}

.step p {
  margin-bottom: 0;
}

/* Article / Content */
.content-block {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .content-block { padding: 1.5rem; margin-top: -2rem; }
}

.content-block h2 {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

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

.content-block h3 {
  margin-top: 1.5rem;
  color: var(--color-primary);
}

.content-block p, .content-block li {
  color: var(--color-text);
  opacity: 0.92;
}

.content-block ul {
  padding-left: 1.5rem;
}

.content-block ul li::marker {
  color: var(--color-primary);
}

/* Content images inside article */
.content-image {
  margin: 2.5rem 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  position: relative;
  background: var(--color-card);
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.content-image:hover img {
  transform: scale(1.02);
}

.content-image figcaption {
  padding: 0.9rem 1.2rem;
  background: var(--color-card);
  border-top: 1px solid var(--color-border);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-align: center;
  font-style: italic;
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, #ffb800 0%, #ff6900 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  margin: 3rem 0;
  color: #0a0f1c;
}

.cta-banner h2 {
  color: #0a0f1c;
  margin-bottom: 0.8rem;
}

.cta-banner p {
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.cta-banner .btn-whatsapp {
  background: #0a0f1c;
  color: #fff;
}

.cta-banner .btn-whatsapp:hover {
  background: #16223d;
  color: #fff;
}

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 0.85rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  border-color: rgba(255, 184, 0, 0.35);
}

.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--color-primary);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.4rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Trust / USPs grid */
.usps {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.usp {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.2rem;
}

.usp-check {
  color: var(--color-accent);
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1;
}

.usp h4 {
  color: #fff;
  margin-bottom: 0.25rem;
}

.usp p {
  margin: 0;
  font-size: 0.92rem;
}

/* Security badges */
.security {
  background: var(--color-bg-alt);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.security-badge {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--color-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.security-badge .icon {
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.security-badge h4 { color: #fff; margin-bottom: 0.4rem; }

.security-badge p { font-size: 0.9rem; margin: 0; }

/* Sports / Casino card with badge */
.feature-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-gold);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 184, 0, 0.3);
}

.feature-badge {
  display: inline-block;
  background: rgba(255, 184, 0, 0.15);
  color: var(--color-primary);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
}

/* Responsible Gaming */
.responsible {
  background: var(--color-bg-alt);
  text-align: center;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--color-danger);
  color: #fff;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.responsible-orgs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.responsible-org {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.5rem;
  height: 84px;
  min-width: 170px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.responsible-org:hover {
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(255, 184, 0, 0.25);
}

.responsible-org img {
  max-height: 54px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: none;
}

@media (max-width: 600px) {
  .responsible-orgs { gap: 1rem; }
  .responsible-org {
    height: 64px;
    min-width: 120px;
    padding: 0.6rem 0.9rem;
  }
  .responsible-org img {
    max-height: 38px;
    max-width: 110px;
  }
}

/* Footer */
.site-footer {
  background: #050810;
  border-top: 1px solid var(--color-border);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-col a {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  margin-bottom: 0.6rem;
}

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

.footer-tagline {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  max-width: 320px;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.footer-bottom .disclaimer {
  max-width: 800px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

/* Floating WhatsApp */
.float-wa {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: var(--transition);
}

.float-wa:hover {
  background: var(--color-accent-dark);
  transform: scale(1.08);
  color: #fff;
}

.float-wa svg { width: 28px; height: 28px; }

/* Pulse animation */
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 184, 0, 0.5); }
  50% { box-shadow: 0 0 0 14px rgba(255, 184, 0, 0); }
}

.pulse {
  animation: pulse-gold 2s infinite;
}

/* Utility */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

/* Author meta */
.author-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--color-card);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--color-border);
  margin: 2rem auto;
  max-width: 720px;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0a0f1c;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 184, 0, 0.45);
  box-shadow: 0 6px 18px rgba(255, 184, 0, 0.2);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.author-info h4 { color: #fff; margin-bottom: 0.15rem; }
.author-info p { font-size: 0.88rem; color: var(--color-text-muted); margin: 0; }

/* Responsive type */
@media (max-width: 480px) {
  .hero-meta { gap: 1rem; }
  .hero-meta-value { font-size: 1.4rem; }
  .btn-xl { padding: 0.9rem 1.6rem; font-size: 1rem; }
}
