/* ---------- main page ---------- */
.brand-section { 
  margin-top: 1.25rem; 
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.1rem;
}

.brand-card {
  display: flex; flex-direction: column; align-items: center; gap: .65rem;
  text-decoration: none; border-radius: .9rem; padding: 1.2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform .22s cubic-bezier(.2,.9,.2,1), box-shadow .22s, border-color .22s, background .22s;
  will-change: transform, box-shadow; min-height: 210px;
}

.brand-logo { 
  display: grid; 
  place-items: center; 
  height: 110px; 
  width: 100%; 
}

.brand-logo img { 
  max-height: 100px; 
  width: auto; 
  height: auto; 
  object-fit: contain; 
  pointer-events: none; 
  transition: transform .22s cubic-bezier(.2,.9,.2,1); 
}

.brand-name {
  font-family: "Manrope", Inter, ui-sans-serif, system-ui;
  font-weight: 800; 
  letter-spacing: .4px; 
  color: #eaf6fb; 
  text-align: center; 
  font-size: 1.05rem;
}

@media (hover:hover) {
  .brand-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(125,211,252,0.35);
    background: rgba(255,255,255,0.03);
    box-shadow: 0 18px 40px rgba(2,6,23,0.5), 0 6px 22px rgba(125,211,252,0.10);
  }
  .brand-card:hover .brand-logo img { 
    transform: translateY(-6px); 
  }
}
.sm-down-fix img { 
  max-height: 85px; 
}

@media (max-width: 700px) {
  .brand-grid { grid-template-columns: 1fr; gap: 1rem; }
  .brand-card { min-height: 180px; }
  .brand-logo { height: 95px; }
  .brand-logo img { max-height: 80px; }
  .sm-down-fix img { max-height: 70px; }
  .brand-name { font-size: 1rem; }
}
@media (min-width: 701px) and (max-width: 1024px){
  .brand-grid { 
    grid-template-columns: repeat(2, minmax(0,1fr)); 
  }
}

/* ---------- Sub-pages (OPTIONS) ---------- */
.model-hero {
  display:flex; 
  flex-direction:column; 
  align-items:center; 
  justify-content:center;
  gap:.8rem; 
  text-align:center; 
  margin-top:.5rem;
}

.brand-badge {
  display:grid; 
  place-items:center;
  width:110px; 
  height:110px;
  border-radius:1rem; 
  background:rgba(255,255,255,0.02);
  border:1px solid rgba(255,255,255,0.06);
  box-shadow:0 6px 24px rgba(125,211,252,0.08);
}

.brand-badge img { 
  max-width:80px; 
  max-height:80px; 
  object-fit:contain; 
}

.model-subtitle { 
  color:#9fb0c0; 
}

.options-wrap {
  max-width: 900px; 
  margin: 1.25rem auto 0 auto;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem;
  padding: 1.25rem 1.25rem 1rem;
  box-shadow: 0 6px 24px rgba(125,211,252,0.06);
}

.options-title {
  font-family: "Manrope", Inter, ui-sans-serif, system-ui;
  font-weight: 700; 
  font-size: 1.15rem; 
  color:#f4f8fb; 
  margin-bottom: .5rem;
}

.options-list {
  list-style: none; 
  margin: 0; 
  padding: 0;
  display: grid; 
  gap: .6rem;
}

.options-list li {
  position: relative; 
  padding-left: 1.6rem; 
  color: #d9e4ee; 
  line-height: 1.35;
}

.options-list li::before {
  content: "✓";
  position: absolute; 
  left: 0; 
  top: 0.05rem;
  width: 1.1rem;
  height: 1.1rem; 
  border-radius: .35rem;
  display: grid; 
  place-items: center;
  background: rgba(125,211,252,0.18);
  border: 1px solid rgba(125,211,252,0.28);
  color: #03131b; 
  font-weight: 800; 
  font-size: .85rem;
}

@media (max-width: 700px) {
  .options-wrap{ margin-top: 1rem; padding: 1rem; }
  .options-title{ font-size: 1.05rem; }
  .options-list{ gap: .55rem; }
}
