/* ============================================
   HENKO GROUP — SHARED STYLESHEET v3.0
   Brand: Red #C8102E | Black #080808 | Silver #c0c0c0
   Fonts: Barlow Condensed (headings), Barlow (body), IBM Plex Mono (labels)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,700&family=Barlow:wght@300;400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --red: #C8102E;
  --red-dark: #a00d24;
  --red-light: #e8122f;
  --black: #080808;
  --black2: #111111;
  --black3: #1a1a1a;
  --silver: #c0c0c0;
  --silver-light: #e0e0e0;
  --silver-dark: #888;
  --white: #f5f5f5;
  --text: #e8e8e8;
  --text-muted: #999;
  --border: rgba(192,192,192,0.15);
  --border-red: rgba(200,16,46,0.3);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}


/* ---- GLOBAL GREYSCALE FOR ALL PHOTOS ---- */
img:not(.nav-logo-svg):not([src="logo.svg"]):not([src="favicon.svg"]) {
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}
img:not(.nav-logo-svg):not([src="logo.svg"]):not([src="favicon.svg"]):hover {
  filter: grayscale(60%);
}

/* ---- ICON SYSTEM — replace emoji with styled text icons ---- */
.icon-box {
  width: 44px; height: 44px;
  background: rgba(200,16,46,0.1);
  border: 1px solid var(--border-red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
}
.icon-box svg { width: 22px; height: 22px; color: var(--red); fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-box-lg { width: 56px; height: 56px; }
.icon-box-lg svg { width: 28px; height: 28px; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.mono, .label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

/* ---- NAV ---- */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  gap: 0;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-svg { height: 38px; width: auto; max-width: 180px; }
.nav-spacer { flex: 1; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--silver);
  padding: 6px 12px;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-links a.active { color: var(--red); }
.nav-cta {
  margin-left: 12px;
  background: var(--red) !important;
  color: white !important;
  padding: 7px 16px !important;
  border-radius: 3px;
}
.nav-cta:hover { background: var(--red-light) !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: var(--black2);
  border: 1px solid var(--border);
  border-radius: 4px;
  min-width: 220px;
  padding: 8px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; width: 100%;
  padding: 8px 16px !important;
  border-radius: 0 !important;
  font-size: 0.82rem !important;
}
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--silver);
  transition: all 0.3s;
}

/* ---- MOBILE NAV ---- */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--black);
    padding: 24px 20px;
    gap: 4px; overflow-y: auto;
    align-items: flex-start;
  }
  .nav-links.open a { font-size: 1.1rem; padding: 10px 0; width: 100%; }
  .nav-dropdown-menu { position: static; border: none; background: none; padding: 0 0 0 16px; box-shadow: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { margin-left: 0 !important; margin-top: 12px; }
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: 64px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.35);
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.85) 0%, rgba(200,16,46,0.08) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 900px;
  padding: 80px 60px;
}
.hero-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.hero-label::before {
  content: '';
  display: inline-block; width: 24px; height: 1px;
  background: var(--red);
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 28px;
}
.hero h1 span { color: var(--red); }
.hero p {
  font-size: 1.15rem;
  color: var(--silver-light);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 3px;
  border: none; cursor: pointer;
  transition: all 0.2s;
}
.btn-red { background: var(--red); color: white; }
.btn-red:hover { background: var(--red-light); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(200,16,46,0.4); }
.btn-outline {
  background: transparent;
  color: var(--silver-light);
  border: 1px solid rgba(192,192,192,0.3);
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-sm { padding: 9px 20px; font-size: 0.8rem; }

/* ---- SECTIONS ---- */
section { padding: 100px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } section { padding: 60px 0; } }

.section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; display: inline-block;
  width: 20px; height: 1px; background: var(--red);
}
.section-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 20px;
}
.section-title span { color: var(--red); }
.section-desc {
  font-size: 1.05rem;
  color: var(--silver);
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 60px;
}

/* ---- CARDS ---- */
.card-grid {
  display: grid;
  gap: 2px;
}
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .card-grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 768px) {
  .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--black2);
  border: 1px solid var(--border);
  padding: 32px;
  transition: border-color 0.3s, transform 0.2s;
}
.card:hover { border-color: var(--border-red); }
.card-icon {
  width: 44px; height: 44px;
  color: var(--red);
  margin-bottom: 20px;
}
.card h3 {
  font-size: 1.35rem; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.card p { font-size: 0.92rem; color: var(--silver); line-height: 1.6; }

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--red);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.6rem; font-weight: 900;
  color: white; line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* ---- PHOTO SECTION ---- */
.photo-grid { display: grid; gap: 4px; }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- RED ACCENT LINE ---- */
.red-line {
  display: block; width: 48px; height: 4px;
  background: var(--red); margin-bottom: 24px;
}

/* ---- TABLE ---- */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--silver);
  font-size: 0.92rem;
}
.data-table tr:hover td { background: rgba(255,255,255,0.03); }

/* ---- PILL / BADGE ---- */
.badge {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem; letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  border: 1px solid;
}
.badge-red { color: var(--red); border-color: var(--border-red); background: rgba(200,16,46,0.08); }
.badge-silver { color: var(--silver); border-color: var(--border); }
.badge-green { color: #4caf50; border-color: rgba(76,175,80,0.3); background: rgba(76,175,80,0.08); }

/* ---- FOOTER ---- */
footer {
  background: var(--black2);
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand p {
  color: var(--silver-dark); font-size: 0.88rem; line-height: 1.7;
  margin: 16px 0 20px;
}
.footer-col h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  color: var(--silver-dark); font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--silver-dark); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--silver-dark);
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--red); color: var(--red); }
.bbbee-bar {
  background: var(--red);
  text-align: center;
  padding: 10px 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-2 { animation: fadeUp 0.6s 0.15s ease both; }
.fade-up-3 { animation: fadeUp 0.6s 0.3s ease both; }
.fade-up-4 { animation: fadeUp 0.6s 0.45s ease both; }

/* ---- DIVIDER ---- */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.06em;
  color: var(--silver-dark);
  margin-bottom: 32px;
}
.breadcrumb a { color: var(--silver-dark); text-decoration: none; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--red); margin: 0 6px; }

/* ---- PAGE HERO (subpages) ---- */
.page-hero {
  padding: 160px 0 80px;
  background: var(--black2);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(200,16,46,0.05) 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--silver);
  max-width: 640px;
  line-height: 1.65;
}

/* ---- FORM ---- */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver-dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--black2); }

/* ---- TICKER ---- */
.ticker-wrap {
  overflow: hidden;
  background: var(--black3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.ticker {
  display: flex; gap: 60px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker-item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver-dark);
}
.ticker-item .dot { color: var(--red); margin: 0 8px; }

/* ---- IMAGE CARD ---- */
.img-card {
  position: relative; overflow: hidden;
  background: var(--black3);
}
.img-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.img-card:hover img { transform: scale(1.04); }
.img-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(8,8,8,0.85));
  padding: 24px 20px 20px;
}


/* ============================================
   COMPREHENSIVE RESPONSIVE SYSTEM
   Breakpoints:
   xs: 0-479px     (small phones)
   sm: 480-767px   (large phones)
   md: 768-1023px  (tablets / iPads)
   lg: 1024-1279px (laptops)
   xl: 1280px+     (desktop)
   ============================================ */

/* ── GLOBAL TOUCH & READABILITY ── */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { -webkit-font-smoothing: antialiased; }

/* Prevent horizontal scroll globally */
html, body { max-width: 100%; overflow-x: hidden; }

/* Touch targets — min 44px */
a, button, .btn, .nav-cta, .filter-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
nav a { min-height: 36px; }

/* ── CONTAINER ── */
@media (max-width: 1280px) { .container { max-width: 100%; } }
@media (max-width: 1024px) { .container { padding: 0 32px; } }
@media (max-width: 768px)  { .container { padding: 0 20px; } }
@media (max-width: 480px)  { .container { padding: 0 16px; } }

/* ── SECTIONS ── */
@media (max-width: 1024px) { section { padding: 80px 0; } }
@media (max-width: 768px)  { section { padding: 60px 0; } }
@media (max-width: 480px)  { section { padding: 44px 0; } }

/* ── TYPOGRAPHY SCALE ── */
@media (max-width: 768px) {
  .section-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .section-desc { font-size: .95rem; margin-bottom: 40px; }
}
@media (max-width: 480px) {
  .section-title { font-size: clamp(1.6rem, 8vw, 2.2rem); }
  .section-desc { font-size: .9rem; }
}

/* ── NAV REFINEMENTS ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; height: 58px; }
  .nav-logo-svg { height: 32px !important; }
}
@media (max-width: 480px) {
  nav { padding: 0 16px; height: 54px; }
  .nav-logo-svg { height: 28px !important; max-width: 140px !important; }
}
@media (max-width: 900px) {
  .nav-links.open {
    top: 58px;
    padding: 20px 20px 80px;
    gap: 2px;
  }
  .nav-links.open a { font-size: 1rem; padding: 12px 0; }
  .nav-links.open .nav-dropdown-menu {
    position: static; border: none; background: rgba(255,255,255,.04);
    padding: 4px 0 4px 16px; box-shadow: none; min-width: 0;
  }
  .nav-links.open .nav-dropdown-menu a { font-size: .9rem !important; padding: 8px 0 !important; }
}

/* ── PAGE HERO ── */
@media (max-width: 768px) {
  .page-hero { padding: 120px 0 56px; }
  .page-hero h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .page-hero p { font-size: .95rem; }
}
@media (max-width: 480px) {
  .page-hero { padding: 100px 0 44px; }
  .page-hero h1 { font-size: clamp(1.9rem, 9vw, 2.6rem); }
}

/* ── STATS BAR ── */
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .stat-number { font-size: 2rem; }
  .stat-label { font-size: .6rem; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stats-bar { padding: 28px 0; }
  .stat-number { font-size: 1.7rem; }
}

/* ── CARD GRIDS ── */
@media (max-width: 1024px) {
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .card-grid-2,
  .card-grid-3,
  .card-grid-4 { grid-template-columns: 1fr; }
}

/* ── FOOTER ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 60px 0 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .bbbee-bar { font-size: .62rem; padding: 10px 16px; line-height: 1.6; }
}
@media (max-width: 480px) {
  .footer-bottom p { font-size: .72rem; }
}

/* ── HERO HOME (index) ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 80px 32px; }
  .hero-visual { display: none; }
}
@media (max-width: 768px) {
  .hero-inner { padding: 70px 20px 60px; }
  .hero-home { min-height: auto; padding: 64px 0 0; }
}
@media (max-width: 480px) {
  .hero-inner { padding: 56px 16px 48px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-badges { gap: 6px; }
}

/* ── BUTTONS on mobile ── */
@media (max-width: 480px) {
  .btn { padding: 12px 22px; font-size: .82rem; }
  .btn-sm { padding: 10px 18px; }
}

/* ── CTA BAND ── */
@media (max-width: 768px) {
  .cta-inner { flex-direction: column; gap: 24px; text-align: center; }
  .cta-band h2 { font-size: clamp(1.6rem, 5vw, 2.4rem); }
  .btn-white { width: 100%; justify-content: center; text-align: center; }
}

/* ── TICKER ── */
@media (max-width: 480px) {
  .ticker-item { font-size: .65rem; }
  .ticker { gap: 40px; }
}

/* ── DATA TABLE ── */
@media (max-width: 768px) {
  .data-table { font-size: .82rem; }
  .data-table th, .data-table td { padding: 10px 12px; }
}
@media (max-width: 480px) {
  .pipeline-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .data-table { min-width: 520px; }
}

/* ── WHATSAPP BUTTON ── */
@media (max-width: 480px) {
  /* Move WA button slightly in from edge on small phones */
  a[href*="wa.me"] {
    bottom: 20px !important;
    right: 16px !important;
    width: 50px !important;
    height: 50px !important;
  }
}

/* ── IMAGE CARDS ── */
@media (max-width: 480px) {
  .img-card { border-radius: 0; }
}

/* ── BREADCRUMB ── */
@media (max-width: 480px) {
  .breadcrumb { font-size: .65rem; }
}

/* ── BADGES ── */
@media (max-width: 480px) {
  .badge { font-size: .58rem; padding: 3px 8px; }
}
