/* ===== SPESIALIS AC MOBIL — style.css ===== */
:root {
  --primary: #006064;
  --primary-dark: #004547;
  --primary-light: #00838f;
  --accent: #80deea;
  --accent-dark: #4dd0e1;
  --bg: #e0f7fa;
  --bg-card: #ffffff;
  --text: #002527;
  --text-muted: #37474f;
  --border: #b2ebf2;
  --success: #00897b;
  --radius: 10px;
  --shadow: 0 2px 12px rgba(0,96,100,0.13);
  --shadow-lg: 0 6px 28px rgba(0,96,100,0.18);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding-top: 48px;
}
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-light); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* ===== DEMO BAR ===== */
.demo-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: #006064;
  color: #fff;
  text-align: center;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1.4;
}
.demo-bar a { color: #80deea; text-decoration: underline; }
.demo-bar a:hover { color: #fff; }

/* ===== HEADER / NAV ===== */
.site-header {
  background: var(--primary-dark);
  color: #fff;
  position: sticky;
  top: 48px;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-sub { font-size: 0.72rem; font-weight: 400; color: var(--accent); display: block; }

/* === CHECKBOX HACK NAV === */
#nav-toggle { display: none; }
.nav-label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-label span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
#nav-toggle:checked + .nav-label span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav-toggle:checked + .nav-label span:nth-child(2) { opacity: 0; }
#nav-toggle:checked + .nav-label span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--primary-dark);
  border-top: 2px solid var(--accent);
  padding: 12px 0;
}
#nav-toggle:checked ~ .main-nav { display: block; }

.main-nav a {
  display: block;
  padding: 11px 24px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.main-nav a:hover, .main-nav a.active { background: var(--primary-light); color: var(--accent); }

@media (min-width: 768px) {
  .nav-label { display: none; }
  .main-nav {
    display: flex !important;
    position: static;
    background: none;
    border: none;
    padding: 0;
    gap: 4px;
  }
  .main-nav a {
    padding: 8px 14px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
  }
  .main-nav a:hover, .main-nav a.active { background: rgba(255,255,255,0.12); }
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.section { padding: 52px 0; }
.section-alt { background: #fff; }
.section-title {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.25;
}
.section-sub {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 1rem;
}
.divider {
  width: 52px; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
  border-radius: 4px;
  margin: 10px 0 20px;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
  color: #fff;
  padding: 60px 0 52px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: rgba(128,222,234,0.1);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 200px; height: 200px;
  background: rgba(128,222,234,0.07);
  border-radius: 50%;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(128,222,234,0.2);
  border: 1px solid rgba(128,222,234,0.5);
  color: var(--accent);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero h1 {
  font-size: clamp(1.7rem, 5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 auto 22px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ===== SVG AC UNIT ===== */
.ac-svg-wrap { display: flex; justify-content: center; }
.ac-unit-svg { width: min(320px, 90vw); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  line-height: 1;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--primary-dark); }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-teal {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-teal:hover { background: var(--primary-light); border-color: var(--primary-light); }
.btn-wa {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}
.btn-wa:hover { background: #1ebe59; border-color: #1ebe59; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--primary);
  color: #fff;
  padding: 22px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.8); margin-top: 4px; }

@media (min-width: 600px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== SERVICE CARDS ===== */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.service-card p { font-size: 0.88rem; color: var(--text-muted); }

@media (min-width: 600px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== FEATURE / WHY ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.why-item {
  background: var(--bg-card);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}
.why-item h3 { font-size: 0.98rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.why-item p { font-size: 0.86rem; color: var(--text-muted); }

@media (min-width: 600px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 48px 0;
  text-align: center;
}
.cta-band h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 24px; font-size: 1rem; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ===== LAYANAN PAGE ===== */
.layanan-list { display: flex; flex-direction: column; gap: 20px; }
.layanan-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.layanan-header {
  background: var(--primary);
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.layanan-header h3 { font-size: 1.05rem; font-weight: 700; }
.layanan-body { padding: 18px 20px; }
.layanan-body p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 12px; }
.layanan-features { display: flex; flex-direction: column; gap: 7px; }
.layanan-features li {
  font-size: 0.88rem;
  padding-left: 20px;
  position: relative;
  color: var(--text);
}
.layanan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}
.price-tag {
  display: inline-block;
  background: var(--bg);
  color: var(--primary);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 12px;
}

/* paket berkala */
.paket-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 24px;
}
.paket-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: border-color 0.2s;
}
.paket-card.featured { border-color: var(--accent); position: relative; }
.paket-card.featured::before {
  content: 'TERPOPULER';
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
}
.paket-name { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.paket-price { font-size: 1.6rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 14px; }
.paket-price span { font-size: 0.85rem; font-weight: 400; color: var(--text-muted); }
.paket-items { text-align: left; display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.paket-items li { font-size: 0.87rem; padding-left: 18px; position: relative; color: var(--text); }
.paket-items li::before { content: '•'; position: absolute; left: 0; color: var(--primary-light); font-weight: 700; }

@media (min-width: 600px) {
  .paket-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== PRODUK PAGE ===== */
.produk-section { margin-bottom: 40px; }
.produk-section h2 { font-size: 1.25rem; font-weight: 700; color: var(--primary); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.produk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.produk-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.produk-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.produk-visual {
  width: 70px; height: 70px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.produk-name { font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.produk-desc { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; }
.produk-price { font-size: 0.95rem; font-weight: 800; color: var(--primary); }
.produk-badge {
  display: inline-block;
  background: var(--bg);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  margin-top: 4px;
}

@media (min-width: 600px) {
  .produk-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .produk-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== GALERI PAGE ===== */
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.galeri-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.galeri-item:hover { transform: scale(1.02); }
.galeri-visual {
  height: 140px;
  background: linear-gradient(135deg, var(--bg) 0%, #b2ebf2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.galeri-caption { padding: 10px 12px; font-size: 0.82rem; font-weight: 600; color: var(--text); }
.galeri-sub { font-size: 0.76rem; color: var(--text-muted); }

@media (min-width: 600px) {
  .galeri-grid { grid-template-columns: repeat(3, 1fr); }
  .galeri-visual { height: 160px; }
}
@media (min-width: 900px) {
  .galeri-grid { grid-template-columns: repeat(4, 1fr); }
}

/* CSS shapes for gallery */
.ac-fins {
  width: 90px; height: 60px;
  background: #b0bec5;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.ac-fins::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(0,0,0,0.15) 8px, rgba(0,0,0,0.15) 9px);
}
.ac-fins::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 14px;
  background: #90a4ae;
}
.freon-can {
  width: 40px; height: 72px;
  background: linear-gradient(180deg, #1565c0, #1976d2, #42a5f5);
  border-radius: 20px 20px 4px 4px;
  position: relative;
}
.freon-can::before {
  content: '';
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  width: 14px; height: 14px;
  background: #78909c;
  border-radius: 50%;
  border-bottom: 3px solid #455a64;
}
.freon-can::after {
  content: 'R134a';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: 7px; font-weight: 800;
  color: #fff;
  white-space: nowrap;
}
.kompressor-shape {
  width: 80px; height: 70px;
  background: linear-gradient(135deg, #607d8b, #455a64);
  border-radius: 8px;
  position: relative;
}
.kompressor-shape::before {
  content: '';
  position: absolute;
  top: 10px; left: 10px; right: 10px; bottom: 10px;
  background: linear-gradient(135deg, #78909c, #546e7a);
  border-radius: 50%;
}
.kompressor-shape::after {
  content: '';
  position: absolute;
  top: -8px; right: 10px;
  width: 12px; height: 20px;
  background: #90a4ae;
  border-radius: 4px 4px 0 0;
}
.diagnosa-shape {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ===== KONTAK PAGE ===== */
.kontak-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.info-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.info-list { display: flex; flex-direction: column; gap: 12px; }
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
}
.info-icon {
  width: 34px; height: 34px;
  background: var(--bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-label { font-size: 0.76rem; color: var(--text-muted); margin-bottom: 2px; }
.info-val { font-weight: 600; }

/* peta CSS */
.map-css {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  margin-top: 14px;
}
.map-css::before {
  content: '';
  position: absolute;
  top: 50%; left: 30%;
  width: 80px; height: 6px;
  background: #fff;
  border-radius: 3px;
  transform: translateY(-50%);
}
.map-css::after {
  content: '';
  position: absolute;
  top: 40%; left: 20%;
  width: 60%; height: 6px;
  background: rgba(255,255,255,0.7);
  border-radius: 3px;
  transform: rotate(-30deg);
}
.map-pin {
  position: absolute;
  top: 30%; left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 22px;
  background: var(--primary);
  border-radius: 50% 50% 50% 0;
  transform: translateX(-50%) rotate(-45deg);
}
.map-pin::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
}

/* jam operasional */
.jam-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  font-size: 0.87rem;
  margin-top: 8px;
}
.jam-day { color: var(--text-muted); }
.jam-time { font-weight: 600; color: var(--text); }

/* form booking */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,96,100,0.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (min-width: 768px) {
  .kontak-grid { grid-template-columns: 1fr 1.2fr; }
}

/* ===== PAGE HERO (inner) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  padding: 40px 0 36px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.4rem, 4vw, 2.1rem); font-weight: 800; margin-bottom: 8px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 36px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.footer-col h4 { color: var(--accent); font-size: 0.95rem; font-weight: 700; margin-bottom: 12px; }
.footer-col p, .footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: var(--accent); }
.footer-links { display: flex; flex-direction: column; gap: 7px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

@media (min-width: 600px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb-inner a { color: var(--primary); }
.breadcrumb-inner a:hover { text-decoration: underline; }

/* ===== BADGE / TAG ===== */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-teal { background: var(--bg); color: var(--primary); border: 1px solid var(--border); }
.badge-accent { background: var(--primary); color: #fff; }

/* ===== TESTIMONIAL ===== */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.testi-stars { color: #ffc107; font-size: 1rem; margin-bottom: 8px; }
.testi-text { font-size: 0.88rem; color: var(--text-muted); font-style: italic; margin-bottom: 12px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.9rem;
}
.testi-name { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.testi-car { font-size: 0.78rem; color: var(--text-muted); }

@media (min-width: 600px) {
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== MISC ===== */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }
