/* =========================================================================
   Miller Empresas — Site Institucional
   CSS puro (sem frameworks). Paleta corporativa navy.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Chivo:wght@400;700;900&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

/* --------------------------- Reset ------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  color: #1E293B;
  background-color: #F8FAFC;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Chivo', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #0F2040;
}

/* --------------------------- Tokens ------------------------------------ */
:root {
  --navy: #0F2040;
  --navy-hover: #1E3A8A;
  --slate: #64748B;
  --slate-light: #E2E8F0;
  --bg: #F8FAFC;
  --white: #FFFFFF;
  --text: #1E293B;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --sidebar-w: 288px;
}

/* --------------------------- Layout ------------------------------------ */
.app { min-height: 100vh; display: flex; }
.main-wrap { flex: 1; min-width: 0; display: flex; flex-direction: column; }
main { flex: 1; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 48px; } }

.section { padding: 64px 0; }
@media (min-width: 768px) { .section { padding: 96px 0; } }

.section-white { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-navy { background: var(--navy); }
.section-navy h1, .section-navy h2, .section-navy h3 { color: var(--white); }

/* --------------------------- Sidebar ----------------------------------- */
.sidebar {
  position: fixed; top: 0; left: 0; bottom: 0; width: var(--sidebar-w);
  background: var(--navy); color: var(--white);
  display: flex; flex-direction: column; z-index: 40;
  box-shadow: 4px 0 20px rgba(15, 32, 64, 0.15);
  overflow-y: auto;
}
.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 2px; }

.sidebar-brand {
  padding: 32px 24px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; gap: 12px;
}
.sidebar-brand img {
  width: 48px; height: 48px; background: var(--white); padding: 4px;
  border-radius: 2px; object-fit: contain;
}
.sidebar-brand-text { display: flex; flex-direction: column; }
.sidebar-brand-title { font-family: 'Chivo', sans-serif; font-weight: 900; font-size: 16px; letter-spacing: -0.02em; line-height: 1; color: #fff; }
.sidebar-brand-sub { font-size: 10px; letter-spacing: 0.2em; color: #94A3B8; margin-top: 4px; }

.sidebar-nav { padding: 16px 0; flex: 1; }
.sidebar-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px; font-size: 13px; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: #CBD5E1; border-left: 2px solid transparent;
  transition: all 0.2s ease;
}
.sidebar-nav a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.sidebar-nav a.active { color: #fff; background: rgba(255,255,255,0.1); border-left-color: #fff; }
.sidebar-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }

.sidebar-group-label {
  padding: 24px 20px 12px; display: flex; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: #94A3B8;
  font-weight: 600;
}
.sidebar-group-label svg { width: 14px; height: 14px; }
.sidebar-group-label::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.1); }

.sidebar-footer {
  padding: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 10px; color: #94A3B8;
}
.sidebar-footer p:first-child { text-transform: uppercase; letter-spacing: 0.1em; }
.sidebar-footer p:last-child { color: #64748B; margin-top: 4px; }

/* Mobile: hamburger + slide-in */
.hamburger {
  position: fixed; top: 16px; left: 16px; z-index: 50;
  width: 44px; height: 44px; background: var(--navy); color: #fff;
  display: none; align-items: center; justify-content: center;
  border-radius: 2px; box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.hamburger:hover { background: var(--navy-hover); }
.hamburger svg { width: 20px; height: 20px; }

.sidebar-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 36px; height: 36px; color: rgba(255,255,255,0.7); display: none;
  align-items: center; justify-content: center;
}
.sidebar-close:hover { color: #fff; }
.sidebar-close svg { width: 20px; height: 20px; }

.sidebar-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 39; display: none; opacity: 0; transition: opacity 0.3s;
}

@media (max-width: 1023px) {
  .sidebar { transform: translateX(-100%); transition: transform 0.3s ease; }
  .sidebar.open { transform: translateX(0); }
  .sidebar-close { display: flex; }
  .hamburger { display: flex; }
  .sidebar-backdrop.open { display: block; opacity: 1; }
  .main-wrap { margin-left: 0 !important; }
}
@media (min-width: 1024px) {
  .main-wrap { margin-left: var(--sidebar-w); }
}

/* --------------------------- Brand header (banner) --------------------- */
.brand-header {
  position: relative; overflow: hidden; min-height: 68vh;
  display: flex; align-items: center;
  padding: 96px 0 64px;
}
@media (min-width: 1024px) { .brand-header { padding: 64px 0; } }
.brand-header-bg { position: absolute; inset: 0; z-index: 0; }
.brand-header-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.brand-header-bg::before { content: ''; position: absolute; inset: 0; background: rgba(15, 32, 64, 0.8); }
.brand-header-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, #0F2040, rgba(15,32,64,0.7), transparent);
}
.brand-header-inner { position: relative; z-index: 1; max-width: 640px; }
.brand-header-logo { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
.brand-header-logo img {
  width: 80px; height: 80px; background: #fff; padding: 8px; border-radius: 2px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
@media (min-width: 768px) { .brand-header-logo img { width: 96px; height: 96px; } }
.brand-header-brand { display: flex; flex-direction: column; }
.brand-header-brand-title {
  font-family: 'Chivo', sans-serif; font-weight: 900; color: #fff;
  font-size: 24px; line-height: 1; letter-spacing: -0.02em;
}
@media (min-width: 768px) { .brand-header-brand-title { font-size: 30px; } }
.brand-header-brand-sub {
  font-size: 11px; letter-spacing: 0.3em; color: #CBD5E1; margin-top: 8px; font-weight: 600;
}
@media (min-width: 768px) { .brand-header-brand-sub { font-size: 12px; } }
.brand-header-content { border-left: 2px solid rgba(255,255,255,0.4); padding-left: 20px; margin-top: 16px; }
.brand-header-eyebrow { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: #CBD5E1; margin-bottom: 12px; }
.brand-header-title { font-family: 'Chivo', sans-serif; color: #fff; font-size: 30px; line-height: 1.05; letter-spacing: -0.02em; }
@media (min-width: 640px) { .brand-header-title { font-size: 36px; } }
@media (min-width: 1024px) { .brand-header-title { font-size: 48px; } }
.brand-header-sub { font-size: 15px; color: #CBD5E1; margin-top: 16px; max-width: 560px; line-height: 1.6; }

/* --------------------------- Carousel ---------------------------------- */
.carousel-wrapper { background: var(--navy); }
.carousel {
  position: relative; width: 100%; aspect-ratio: 16 / 10; background: var(--navy); overflow: hidden;
}
@media (min-width: 768px) { .carousel { aspect-ratio: 21 / 9; } }
.carousel-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease;
  pointer-events: none;
}
.carousel-slide.active { opacity: 1; pointer-events: auto; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.carousel-slide-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,32,64,0.95), rgba(15,32,64,0.5) 60%, transparent); }
.carousel-slide-content { position: absolute; bottom: 24px; left: 24px; right: 24px; max-width: 720px; }
@media (min-width: 768px) { .carousel-slide-content { bottom: 48px; left: 48px; right: auto; } }
@media (min-width: 1024px) { .carousel-slide-content { bottom: 64px; left: 64px; } }
.carousel-eyebrow { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: #CBD5E1; margin-bottom: 12px; }
.carousel-caption { font-family: 'Chivo', sans-serif; font-weight: 900; color: #fff; font-size: 20px; line-height: 1.2; letter-spacing: -0.02em; }
@media (min-width: 768px) { .carousel-caption { font-size: 30px; } }
@media (min-width: 1024px) { .carousel-caption { font-size: 36px; } }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; background: rgba(255,255,255,0.1); color: #fff;
  border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 2;
}
@media (min-width: 768px) { .carousel-btn { width: 48px; height: 48px; } }
.carousel-btn:hover { background: rgba(255,255,255,0.25); }
.carousel-btn svg { width: 20px; height: 20px; }
.carousel-btn.prev { left: 16px; }
.carousel-btn.next { right: 16px; }
@media (min-width: 768px) { .carousel-btn.prev { left: 24px; } .carousel-btn.next { right: 24px; } }
.carousel-dots { position: absolute; top: 24px; right: 24px; display: flex; gap: 8px; z-index: 2; }
@media (min-width: 768px) { .carousel-dots { top: 32px; right: 48px; } }
.carousel-dot { width: 20px; height: 4px; background: rgba(255,255,255,0.4); transition: all 0.3s; }
.carousel-dot:hover { background: rgba(255,255,255,0.6); }
.carousel-dot.active { background: #fff; width: 40px; }

/* --------------------------- Typography / Sections --------------------- */
.eyebrow { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--slate); font-weight: 500; margin-bottom: 16px; }
.title-xl { font-size: 30px; }
.title-lg { font-size: 24px; }
@media (min-width: 768px) {
  .title-xl { font-size: 40px; }
  .title-lg { font-size: 32px; }
}
@media (min-width: 1024px) {
  .title-xl { font-size: 48px; }
}
.grid-12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: 40px; }
@media (max-width: 1023px) { .grid-12 { grid-template-columns: 1fr; gap: 32px; } }
.col-5 { grid-column: span 5; }
.col-7 { grid-column: span 7; }
.col-4 { grid-column: span 4; }
.col-8 { grid-column: span 8; }
@media (max-width: 1023px) { .col-5, .col-7, .col-4, .col-8 { grid-column: 1 / -1; } }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-top: 24px; margin-top: 24px; border-top: 1px solid var(--border); }
.stats-value { font-family: 'Chivo', sans-serif; font-weight: 900; color: var(--navy); font-size: 24px; line-height: 1; }
@media (min-width: 768px) { .stats-value { font-size: 30px; } }
.stats-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--slate); margin-top: 8px; }

.body-text { color: #334155; font-size: 15px; line-height: 1.7; }
.body-text p + p { margin-top: 20px; }
.body-text strong { color: var(--navy); font-weight: 600; }

.section-heading { display: flex; flex-direction: column; gap: 24px; margin-bottom: 48px; align-items: flex-start; }
@media (min-width: 768px) {
  .section-heading { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 24px; }
}

/* --------------------------- Companies grid ---------------------------- */
.companies-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1023px) { .companies-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .companies-grid { grid-template-columns: 1fr; } }
.company-card {
  border: 1px solid var(--border); background: var(--white);
  transition: border-color 0.3s ease; overflow: hidden;
}
.company-card:hover { border-color: var(--navy); }
.company-card-img { aspect-ratio: 4 / 3; overflow: hidden; background: #F1F5F9; position: relative; }
.company-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.company-card:hover .company-card-img img { transform: scale(1.05); }
.company-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,32,64,0.7), rgba(15,32,64,0.3));
}
.company-card-tag {
  position: absolute; top: 16px; left: 16px; z-index: 1;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.9); font-weight: 600;
}
.company-card-body { padding: 24px; }
.company-card-title { font-family: 'Chivo', sans-serif; font-weight: 900; color: var(--navy); font-size: 16px; letter-spacing: -0.02em; line-height: 1.3; }
.company-card-tagline { font-size: 12px; color: var(--slate); margin-top: 6px; }
.company-card-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; margin-top: 20px; border-top: 1px solid #F1F5F9;
}
.company-card-meta-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #94A3B8; }
.company-card-meta svg { width: 16px; height: 16px; color: var(--navy); transition: transform 0.2s; }
.company-card:hover .company-card-meta svg { transform: translate(2px, -2px); }

/* --------------------------- Buttons ----------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: all 0.2s ease;
}
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-hover); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: #F1F5F9; }
.btn-outline-white { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-outline-navy { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.btn svg { width: 16px; height: 16px; }
.btn-lg { padding: 16px 24px; }

.link-underline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--navy);
  border-bottom: 1px solid var(--navy); padding-bottom: 4px;
  transition: color 0.2s;
}
.link-underline:hover { color: var(--navy-hover); }
.link-underline svg { width: 16px; height: 16px; }

/* --------------------------- Values grid (About) ----------------------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1023px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  padding: 28px; border: 1px solid var(--border); background: #fff;
  transition: all 0.3s ease;
}
.value-card:hover { border-color: var(--navy); box-shadow: 0 2px 8px rgba(0,0,0,0.03); }
.value-card-icon {
  width: 44px; height: 44px; background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.value-card-icon svg { width: 20px; height: 20px; }
.value-card-title { font-family: 'Chivo', sans-serif; font-weight: 900; color: var(--navy); font-size: 18px; letter-spacing: -0.02em; line-height: 1.2; }
.value-card-text { font-size: 14px; color: #475569; line-height: 1.6; margin-top: 12px; }
.value-card-meta { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: #94A3B8; padding-top: 16px; margin-top: 24px; border-top: 1px solid #F1F5F9; }

/* --------------------------- Steps ------------------------------------- */
.steps { display: flex; flex-direction: column; gap: 24px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: 0; }
.step-num { font-family: 'Chivo', sans-serif; font-weight: 900; color: var(--navy); font-size: 30px; line-height: 1; }
@media (min-width: 768px) { .step-num { font-size: 36px; } }
.step-title { font-family: 'Chivo', sans-serif; font-weight: 900; color: var(--navy); font-size: 18px; letter-spacing: -0.02em; }
.step-desc { font-size: 14px; color: #475569; margin-top: 8px; line-height: 1.6; }

/* --------------------------- Contact channel cards --------------------- */
.channel {
  display: flex; align-items: flex-start; gap: 24px;
  padding: 24px; border: 1px solid var(--border); background: #fff;
  transition: all 0.3s ease;
}
@media (min-width: 768px) { .channel { padding: 32px; gap: 32px; } }
.channel:hover { border-color: var(--navy); background: #F8FAFC; }
.channel-icon {
  width: 56px; height: 56px; background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.3s;
}
@media (min-width: 768px) { .channel-icon { width: 64px; height: 64px; } }
.channel:hover .channel-icon { background: var(--navy-hover); }
.channel-icon svg { width: 24px; height: 24px; }
.channel-body { flex: 1; min-width: 0; }
.channel-label { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--slate); font-weight: 600; }
.channel-value { font-family: 'Chivo', sans-serif; font-weight: 900; color: var(--navy); font-size: 18px; letter-spacing: -0.02em; margin-top: 8px; word-break: break-word; }
@media (min-width: 768px) { .channel-value { font-size: 20px; } }
.channel-desc { font-size: 14px; color: #475569; margin-top: 8px; line-height: 1.6; }
.channel-arrow { width: 20px; height: 20px; color: var(--navy); flex-shrink: 0; margin-top: 8px; transition: transform 0.2s; }
.channel:hover .channel-arrow { transform: translate(2px, -2px); }
.channels { display: flex; flex-direction: column; gap: 20px; }

/* --------------------------- Company page ------------------------------ */
.company-hero { position: relative; background: var(--navy); }
.company-hero-inner { aspect-ratio: 21 / 9; overflow: hidden; position: relative; }
@media (min-width: 768px) { .company-hero-inner { aspect-ratio: 21 / 8; } }
.company-hero-inner img { width: 100%; height: 100%; object-fit: cover; }
.company-hero-inner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,32,64,0.7), transparent); }
.company-hero-tag {
  position: absolute; bottom: 24px; left: 24px; z-index: 1;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: #fff; font-weight: 600;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(4px);
  padding: 6px 12px; border: 1px solid rgba(255,255,255,0.2);
}
@media (min-width: 768px) { .company-hero-tag { bottom: 48px; left: 48px; } }
.highlights { display: flex; flex-direction: column; gap: 12px; }
.highlight { display: flex; align-items: flex-start; gap: 12px; }
.highlight-check {
  width: 20px; height: 20px; background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.highlight-check svg { width: 12px; height: 12px; stroke-width: 3; }
.highlight-text { font-size: 15px; color: #334155; line-height: 1.6; }

.contact-band { background: var(--navy); }
.contact-band-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
@media (max-width: 1023px) { .contact-band-inner { grid-template-columns: 1fr; } }
.contact-band-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 1023px) { .contact-band-actions { justify-content: flex-start; } }

/* --------------------------- Press Kit --------------------------------- */
.assets-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 640px) { .assets-grid { grid-template-columns: 1fr; } }
.asset {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px; border: 1px solid var(--border); background: #fff;
  transition: all 0.3s;
}
.asset:hover { border-color: var(--navy); box-shadow: 0 2px 8px rgba(0,0,0,0.03); }
.asset-icon { width: 48px; height: 48px; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.asset-icon svg { width: 20px; height: 20px; }
.asset-title { font-family: 'Chivo', sans-serif; font-weight: 900; color: var(--navy); font-size: 16px; letter-spacing: -0.02em; }
.asset-sub { font-size: 12px; color: var(--slate); margin-top: 6px; }
.asset-meta { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #94A3B8; margin-top: 12px; }
.asset-body { flex: 1; min-width: 0; }
.asset-arrow { width: 16px; height: 16px; color: var(--navy); flex-shrink: 0; margin-top: 6px; }

.boilerplate-box { border: 1px solid var(--border); background: #F8FAFC; padding: 32px; margin-top: 32px; }
.boilerplate-text { font-size: 15px; color: #334155; line-height: 1.7; }
.copy-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px; padding: 10px 16px; background: var(--navy); color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
}
.copy-btn:hover { background: var(--navy-hover); }
.copy-btn svg { width: 14px; height: 14px; }

.palette-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 767px) { .palette-grid { grid-template-columns: repeat(2, 1fr); } }
.palette-card { border: 1px solid var(--border); background: #fff; overflow: hidden; }
.palette-swatch { height: 112px; }
.palette-body { padding: 16px; }
.palette-name { font-family: 'Chivo', sans-serif; font-weight: 900; color: var(--navy); font-size: 14px; letter-spacing: -0.02em; }
.palette-hex { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--slate); margin-top: 6px; }
.palette-role { font-size: 12px; color: #475569; margin-top: 8px; line-height: 1.4; }

.group-list { border: 1px solid rgba(255,255,255,0.1); }
.group-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.group-item:last-child { border-bottom: 0; }
.group-item-num { font-size: 10px; letter-spacing: 0.25em; color: #64748B; font-family: monospace; }
.group-item-name { font-family: 'Chivo', sans-serif; font-weight: 900; color: #fff; font-size: 14px; letter-spacing: -0.02em; }
.group-item-link { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: #94A3B8; }
.group-item-link:hover { color: #fff; }

/* --------------------------- Footer ------------------------------------ */
.site-footer { background: var(--navy); color: #CBD5E1; margin-top: 64px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding: 56px 0; }
@media (max-width: 767px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand-header img { width: 40px; height: 40px; background: #fff; padding: 4px; object-fit: contain; }
.footer-brand-title { font-family: 'Chivo', sans-serif; font-weight: 900; color: #fff; font-size: 14px; line-height: 1; }
.footer-brand-sub { font-size: 10px; letter-spacing: 0.2em; color: #94A3B8; margin-top: 4px; }
.footer-desc { font-size: 12px; color: #94A3B8; line-height: 1.6; max-width: 320px; }
.footer-h { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: #64748B; margin-bottom: 16px; }
.footer-list { display: flex; flex-direction: column; gap: 10px; }
.footer-list a { font-size: 12px; color: #CBD5E1; display: flex; align-items: center; gap: 12px; }
.footer-list a:hover { color: #fff; }
.footer-list a svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; gap: 12px; flex-direction: column;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: #64748B;
}
@media (min-width: 768px) { .footer-bottom-inner { flex-direction: row; } }

/* --------------------------- Utility ----------------------------------- */
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mono { font-family: 'IBM Plex Mono', monospace; }
