/* ═══════════════════════════════════════════
   BRAND PAGE — SPARE PARTS
   Extends inner-page.css for brand-specific blocks
═══════════════════════════════════════════ */

/* ── HERO (matches .page-hero exactly) ── */
.brand-hero {
  background: linear-gradient(135deg, #00194C 0%, #0055FF 100%);
  padding: 8rem 1.5rem 4.5rem;
  position: relative;
  overflow: hidden;
}
.brand-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.brand-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Breadcrumb inside hero */
.brand-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #93c5fd;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.brand-hero .breadcrumb a { color: #93c5fd; text-decoration: none; }
.brand-hero .breadcrumb a:hover { text-decoration: underline; }
.brand-hero .breadcrumb span { color: rgba(147,197,253,0.5); }

/* Hero badge pill */
.brand-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #93c5fd;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.25rem;
}

/* Hero h1 */
.brand-hero h1 {
  font-family: 'Roboto Slab', Georgia, serif;
  color: white;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

/* Hero lead paragraph */
.brand-hero > .brand-hero-inner > p,
.brand-hero p.hero-lead {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.75;
  max-width: 700px;
  margin: 0 0 2rem;
}

/* Hero Stats bar */
.brand-hero-stats {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 1rem;
  overflow: hidden;
  width: fit-content;
  flex-wrap: wrap;
}
.brand-hero-stat {
  padding: 1.1rem 1.75rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
  min-width: 100px;
}
.brand-hero-stat:last-child { border-right: none; }
.brand-hero-stat-num {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: #60a5fa;
  line-height: 1;
  letter-spacing: -0.02em;
}
.brand-hero-stat-label {
  font-size: 0.65rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  font-weight: 600;
}
@media (max-width: 640px) {
  .brand-hero { padding: 7rem 1rem 3.5rem; }
  .brand-hero h1 { font-size: 1.9rem; }
  .brand-hero-stats { width: 100%; }
  .brand-hero-stat { padding: 0.9rem 1rem; min-width: 0; flex: 1; }
  .brand-hero-stat-num { font-size: 1.4rem; }
}

/* ── MAIN CONTENT WRAPPER ── */
.brand-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

/* ── MOBILE BRAND MAIN ── */
@media (max-width: 640px) {
  .brand-main { padding: 2rem 0.85rem; }
  .brand-hero { padding: 6.5rem 0.85rem 3rem; }
  .brand-hero h1 { font-size: 1.7rem; }
  .brand-hero p.hero-lead { font-size: 0.92rem; }
  .brand-hero-stats { width: 100%; border-radius: 0.75rem; }
  .brand-hero-stat { padding: 0.75rem 0.5rem; min-width: 0; flex: 1; }
  .brand-hero-stat-num { font-size: 1.25rem; }
  .brand-badge-pill { font-size: 0.62rem; }
  .guarantee-banner { padding: 2rem 1rem; }
  .guarantee-banner h2 { font-size: 1.3rem; }
  .brand-form { padding: 1.25rem; }
  .feature-row { grid-template-columns: repeat(2, 1fr); gap: 0.65rem; }
  .feature-item { padding: 1rem 0.75rem; }
  .why-cards-grid { grid-template-columns: 1fr; }
  .parts-table th, .parts-table td { padding: 0.65rem 0.75rem; font-size: 0.78rem; }
}

/* ── SECTION LABEL ── */
.brand-section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0055FF;
  margin-bottom: 0.5rem;
}

/* ── BODY TEXT ── */
.brand-body {
  color: #374151;
  line-height: 1.85;
  font-size: 0.97rem;
}
.brand-body p {
  margin-bottom: 1.6rem;
}
.brand-body p:last-child { margin-bottom: 0; }
.brand-body h3 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #111827;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #eff6ff;
}
.brand-body h4 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1e3a8a;
  margin: 1.75rem 0 0.6rem;
}
.brand-body ul {
  padding-left: 0;
  margin-bottom: 1.5rem;
  list-style: none;
}
.brand-body ul li {
  margin-bottom: 0.55rem;
  padding-left: 1.4rem;
  position: relative;
  color: #374151;
}
.brand-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: #0055FF;
  border-radius: 50%;
}
.brand-body strong { color: #111827; font-weight: 700; }

/* ── PULL QUOTE ── */
.brand-pullquote {
  border-left: 4px solid #0055FF;
  background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
  border-radius: 0 1rem 1rem 0;
  padding: 1.5rem 2rem 1.5rem 2.25rem;
  margin: 2.25rem 0;
  font-size: 1.05rem;
  font-style: italic;
  color: #1e3a8a;
  line-height: 1.75;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,85,255,0.07);
}
.brand-pullquote::before {
  content: '\201C';
  font-size: 4rem;
  color: #0055FF;
  opacity: 0.12;
  position: absolute;
  top: -0.5rem;
  left: 0.6rem;
  line-height: 1;
  font-family: Georgia, serif;
  font-style: normal;
}

/* ── HIGHLIGHT BOX ── */
.brand-highlight {
  background: white;
  border: 1.5px solid #bfdbfe;
  border-top: 4px solid #0055FF;
  border-radius: 1rem;
  padding: 1.75rem 2rem;
  margin: 2rem 0;
  box-shadow: 0 2px 12px rgba(0,85,255,0.06);
}
.brand-highlight h4 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0055FF;
  margin-bottom: 1rem;
}
.brand-highlight ul {
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.45rem 1.5rem;
  margin: 0;
}
.brand-highlight li {
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.6;
  padding-left: 1.2rem;
  position: relative;
}
.brand-highlight li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0055FF;
  font-weight: 700;
  font-size: 0.78rem;
}
.brand-highlight p {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 640px) {
  .brand-highlight ul { grid-template-columns: 1fr; }
}

/* ── NOTICE BOX ── */
.brand-notice {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fffbeb;
  border: 1.5px solid #fde68a;
  border-left: 4px solid #f59e0b;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.88rem;
  color: #78350f;
  line-height: 1.65;
}
.brand-notice::before { content: '⚠'; font-size: 1.1rem; flex-shrink: 0; }
.brand-notice strong { color: #92400e; font-weight: 700; }

/* ── INDUSTRY TAGS ── */
.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 1.75rem;
}
.industry-tag {
  background: white;
  color: #1d4ed8;
  border: 1.5px solid #bfdbfe;
  border-radius: 99px;
  padding: 0.3rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.15s;
}
.industry-tag:hover {
  background: #eff6ff;
  border-color: #0055FF;
  color: #00194C;
}

/* ── STAT STRIP ── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #e2e8f0;
  border-radius: 1rem;
  overflow: hidden;
  margin: 2.5rem 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
@media (max-width: 640px) {
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}
.stat-strip-item {
  background: white;
  padding: 1.6rem 1rem;
  text-align: center;
  transition: background 0.15s;
}
.stat-strip-item:hover { background: #eff6ff; }
.stat-strip-num {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: #0055FF;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-strip-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-top: 0.4rem;
}

/* ── WHY CARDS ── */
.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.brand-why-card {
  background: white;
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.brand-why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0055FF, #60a5fa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.brand-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,85,255,0.1);
  border-color: #bfdbfe;
}
.brand-why-card:hover::before { transform: scaleX(1); }
.brand-why-icon {
  width: 48px; height: 48px;
  background: #eff6ff;
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  border: 1px solid #bfdbfe;
}
.brand-why-card h3 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.5rem;
}
.brand-why-card p {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
}

/* ── PARTS TABLE ── */
.parts-table-wrap {
  overflow-x: auto;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  margin: 1.5rem 0;
}
.parts-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.parts-table thead tr {
  background: #00194C;
}
.parts-table th {
  color: white;
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.parts-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid #f1f5f9;
  color: #374151;
  background: white;
}
.parts-table td:first-child { font-weight: 600; color: #111827; }
.parts-table tr:nth-child(even) td { background: #f8fafc; }
.parts-table tr:hover td { background: #eff6ff; }
.parts-table tr:last-child td { border-bottom: none; }

/* ── STEP CARDS ── */
.steps-grid-brand {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.brand-step-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
  transition: box-shadow 0.2s, transform 0.2s;
}
.brand-step-card:hover {
  box-shadow: 0 8px 28px rgba(0,85,255,0.1);
  transform: translateY(-2px);
}
.brand-step-num {
  width: 40px; height: 40px; min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0055FF, #00194C);
  color: white;
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 900;
  font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,85,255,0.3);
}
.brand-step-card h4 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 0.92rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.35rem;
}
.brand-step-card p {
  font-size: 0.83rem;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
}

/* ── FEATURE ROW ── */
.feature-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin: 1.75rem 0;
}
.feature-item {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border-bottom: 3px solid #0055FF;
}
.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,85,255,0.1);
}
.feature-item .fi-icon { font-size: 1.75rem; margin-bottom: 0.65rem; display: block; }
.feature-item h5 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: #111827;
  margin-bottom: 0.35rem;
}
.feature-item p { font-size: 0.78rem; color: #6b7280; line-height: 1.55; margin: 0; }

/* ── GUARANTEE BANNER ── */
.guarantee-banner {
  background: linear-gradient(135deg, #00194C 0%, #1d4ed8 60%, #0055FF 100%);
  border-radius: 1.25rem;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}
.guarantee-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
}
.guarantee-banner > * { position: relative; z-index: 1; }
.guarantee-banner h2 {
  font-family: 'Roboto Slab', Georgia, serif;
  color: white;
  font-size: 1.9rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}
.guarantee-banner p {
  color: #bfdbfe;
  max-width: 520px;
  margin: 0 auto 1.75rem;
  font-size: 1rem;
  line-height: 1.7;
}

/* ── CONTACT FORM ── */
.brand-form {
  background: white;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.09);
  border: 1px solid #e2e8f0;
}
.brand-form label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.brand-form input,
.brand-form select,
.brand-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #f9fafb;
  color: #111827;
  font-family: inherit;
}
.brand-form input:focus,
.brand-form select:focus,
.brand-form textarea:focus {
  border-color: #0055FF;
  box-shadow: 0 0 0 3px rgba(0,85,255,0.1);
  background: white;
}
.brand-form .form-group { margin-bottom: 1.25rem; }
@media (max-width: 640px) {
  .brand-form { padding: 1.5rem; }
}

/* ── CONTACT SIDEBAR ── */
.contact-sidebar-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Company card — top banner */
.contact-company-card {
  background: #00194C;
  border-radius: 1.25rem;
  padding: 1.75rem 1.75rem 1.5rem;
  color: white;
  position: relative;
  overflow: hidden;
}
.contact-company-card::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M20 20v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.contact-company-card > * { position: relative; z-index: 1; }
.contact-company-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
  display: block;
}
.contact-company-name {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
  color: white;
}
.contact-company-tagline {
  font-size: 0.72rem;
  color: #93c5fd;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.1rem;
}
.contact-company-reg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1rem;
  margin-bottom: 1rem;
}
.contact-company-reg-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.contact-company-reg-item span:first-child {
  font-size: 0.6rem;
  color: #93c5fd;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-company-reg-item span:last-child {
  font-size: 0.8rem;
  color: white;
  font-weight: 600;
}
.contact-company-divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0.85rem 0;
}
.contact-company-socials {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}
.contact-company-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  border-radius: 99px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #bfdbfe;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.contact-company-social-btn:hover {
  background: rgba(255,255,255,0.2);
  color: white;
}

/* Working hours card */
.contact-hours-card {
  background: #f8faff;
  border-radius: 0.875rem;
  padding: 1.25rem 1.4rem;
  border: 1.5px solid #bfdbfe;
}
.contact-hours-title {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0055FF;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.contact-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.83rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid #e2e8f0;
}
.contact-hours-row:last-child { border-bottom: none; }
.contact-hours-row span:first-child { font-weight: 600; color: #111827; }
.contact-hours-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.6rem;
  border-radius: 99px;
  background: #dcfce7;
  color: #15803d;
}
.contact-hours-badge.closed {
  background: #f1f5f9;
  color: #94a3b8;
}

/* ── CONTACT INFO CARDS ── */
.contact-info-card {
  background: white;
  border-radius: 0.875rem;
  padding: 1.1rem 1.4rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.contact-info-card:hover {
  box-shadow: 0 6px 20px rgba(0,85,255,0.1);
  transform: translateX(3px);
}
.contact-info-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: #eff6ff;
  border-radius: 0.65rem;
  display: flex; align-items: center; justify-content: center;  
  font-size: 1.25rem;
  color: #0055FF;
  border: 1px solid #bfdbfe;
}
.contact-info-card h4 {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 0.15rem;
}
.contact-info-card a,
.contact-info-card p {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1d4ed8;
  text-decoration: none;
  margin: 0;
}
.contact-info-card a:hover { color: #00194C; }

/* ── FAQ ── */
.brand-faq { margin: 0; }
.brand-faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 1.4rem 0;
}
.brand-faq-item:first-child { padding-top: 0; }
.brand-faq-item:last-child { border-bottom: none; padding-bottom: 0; }
.brand-faq-q {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: #111827;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
}
.brand-faq-q::before {
  content: 'Q';
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: linear-gradient(135deg, #0055FF, #00194C);
  color: white;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin-top: 0.1rem;
}
.brand-faq-a {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.75;
  padding-left: 2rem;
}

/* ── DIVIDER ── */
.brand-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0 20%, #bfdbfe 50%, #e2e8f0 80%, transparent);
  margin: 3rem 0;
}

/* ── RELATED BRANDS (container reset — JS injects full section inside) ── */
#related-brands { display: block; width: 100%; }

/* ── GUARANTEE BANNER BUTTON (orange) ── */
.guarantee-banner .btn-outline-white,
.guarantee-banner a[class*="btn"],
.guarantee-banner button,
.btn-guarantee {
  background: #f97316 !important;
  color: #ffffff !important;
  border: 2px solid #f97316 !important;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 0.625rem;
  font-size: 0.95rem;
  display: inline-block;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(249,115,22,0.35);
  cursor: pointer;
}
.guarantee-banner .btn-outline-white:hover,
.guarantee-banner a[class*="btn"]:hover,
.guarantee-banner button:hover,
.btn-guarantee:hover {
  background: #ea6c0a !important;
  border-color: #ea6c0a !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,115,22,0.45);
}

/* ── FADE IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  animation: fadeInFallback 0.4s ease-out 0.5s forwards;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}
@keyframes fadeInFallback {
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   MOBILE RESPONSIVE — Brand Pages
══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Hero */
  .brand-hero { padding: 5.5rem 1rem 2.5rem; }
  .brand-hero h1 { font-size: clamp(1.5rem, 6vw, 2.2rem); line-height: 1.2; }
  .brand-hero > .brand-hero-inner > p,
  .brand-hero p.hero-lead { font-size: 0.9rem; margin-bottom: 1.25rem; }
  .brand-hero-stats { width: 100%; border-radius: 0.75rem; }
  .brand-hero-stat { padding: 0.85rem 0.75rem; min-width: 0; flex: 1; }
  .brand-hero-stat-num { font-size: 1.35rem; }
  .brand-hero-stat-label { font-size: 0.6rem; }
  .brand-badge-pill { font-size: 0.62rem; padding: 0.3rem 0.75rem; }

  /* Main content */
  .brand-main { padding: 1.5rem 1rem; }

  /* Body text */
  .brand-body p { font-size: 0.9rem; margin-bottom: 1.35rem; }
  .brand-body h3 { font-size: 1.15rem; margin: 2rem 0 0.75rem; }
  .brand-body h4 { font-size: 0.95rem; margin: 1.35rem 0 0.5rem; }

  /* Feature row */
  .feature-row { grid-template-columns: repeat(2, 1fr); gap: 0.65rem; }
  .feature-item { padding: 1rem 0.75rem; }
  .feature-item .fi-icon { font-size: 1.5rem; }
  .feature-item h5 { font-size: 0.8rem; }
  .feature-item p { font-size: 0.73rem; }

  /* Why cards */
  .why-cards-grid { grid-template-columns: 1fr; gap: 0.85rem; }
  .brand-why-card { padding: 1.25rem; }

  /* Parts table */
  .parts-table-wrap { border-radius: 0.75rem; }
  .parts-table th, .parts-table td { padding: 0.65rem 0.75rem; font-size: 0.8rem; }

  /* Step cards */
  .steps-grid-brand { grid-template-columns: 1fr; gap: 0.85rem; }
  .brand-step-card { padding: 1.1rem; }

  /* Guarantee banner */
  .guarantee-banner { padding: 2.5rem 1.25rem; border-radius: 1rem; }
  .guarantee-banner h2 { font-size: 1.35rem; }
  .guarantee-banner p { font-size: 0.88rem; margin-bottom: 1.25rem; }

  /* Contact form */
  .brand-form { padding: 1.25rem; }
  .brand-form input, .brand-form select, .brand-form textarea { font-size: 0.85rem; padding: 0.7rem 0.85rem; }

  /* Stat strip */
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-strip-item { padding: 1.1rem 0.75rem; }
  .stat-strip-num { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .brand-hero { padding: 5rem 0.85rem 2rem; }
  .brand-hero h1 { font-size: clamp(1.35rem, 7.5vw, 1.85rem); }
  .feature-row { grid-template-columns: 1fr; }
  .brand-highlight ul { grid-template-columns: 1fr; }
  .brand-pullquote { padding: 1rem 1rem 1rem 1.5rem; font-size: 0.92rem; }
  .brand-faq-q { font-size: 0.88rem; }
  .brand-faq-a { font-size: 0.85rem; padding-left: 1.5rem; }
}
