/* ============== MARCA PAGE — additions on top of styles.css ============== */

/* Override global hero animation rule */
.marca-hero .lang-badge,
.marca-hero .hero-ctas {
  opacity: 1 !important;
  transform: none !important;
}

/* Breadcrumb */
.breadcrumb-bar {
  background: var(--cream, #f6f3ec);
  border-bottom: 1px solid rgba(15,15,15,0.06);
  padding: 14px 0;
  font-size: 13px;
  color: var(--text-muted, #666);
}
.breadcrumb-bar .container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb-bar a {
  color: var(--text-muted, #666);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-bar a:hover { color: var(--dark); }
.breadcrumb-bar .ti { font-size: 14px; opacity: 0.5; }
.breadcrumb-bar span { color: var(--dark); font-weight: 500; }

/* ============== MARCA HERO ============== */
.marca-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 9vw, 110px) 0 clamp(72px, 11vw, 130px);
  min-height: clamp(620px, 86vh, 820px);
  display: flex;
  align-items: center;
  background: #0d0d0f;
}
.marca-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--marca-bg, url('https://images.unsplash.com/photo-1486006920555-c77dcf18193c?auto=format&fit=crop&w=2000&q=70'));
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  filter: grayscale(0.15) contrast(1.05);
  z-index: 0;
}
.marca-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13,13,15,0.55) 0%, rgba(13,13,15,0.82) 60%, rgba(13,13,15,0.95) 100%),
    radial-gradient(ellipse 700px 400px at 70% 30%, rgba(255,205,5,0.06), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.marca-hero .container { position: relative; z-index: 2; }
.marca-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.marca-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: grayscale(0.15) contrast(1.08);
}
.marca-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,15,15,0.50) 0%, rgba(15,15,15,0.88) 100%);
}
.marca-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: center;
}
.marca-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(255,205,5,0.12);
  border: 1px solid rgba(255,205,5,0.32);
  border-radius: 999px;
  color: var(--yellow);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 22px;
}
.marca-eyebrow .ti { font-size: 14px; }
.marca-hero h1 {
  color: var(--white);
  margin: 0 0 18px;
  max-width: 16ch;
}
.marca-hero h1 .accent { color: var(--yellow); }
.marca-hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  line-height: 1.6;
  max-width: 56ch;
  margin: 0 0 28px;
}
.marca-hero-sub strong { color: var(--yellow); font-weight: 600; }

/* Hero stats strip */
.marca-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.marca-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.marca-stat-num {
  font-family: 'Anton', var(--font-display);
  font-size: 36px;
  line-height: 1;
  color: var(--yellow);
  letter-spacing: 0.01em;
}
.marca-stat-lbl {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* Hero contact card */
.marca-hero-card {
  background: var(--white);
  color: var(--dark);
  padding: 28px 28px 24px;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  border-top: 4px solid var(--yellow);
}
.marca-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 6px;
}
.marca-card-sub {
  font-size: 13.5px;
  color: var(--text-muted, #666);
  line-height: 1.5;
  margin: 0 0 18px;
}
.marca-card-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.marca-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  border: 1.5px solid transparent;
}
.marca-card-cta .ti { font-size: 20px; }
.marca-card-cta.primary {
  background: var(--yellow, #FFCD05);
  color: var(--dark, #111);
}
.marca-card-cta.primary:hover { transform: translateY(-1px); background: #ffc000; }
.marca-card-cta.whatsapp {
  background: #25D366;
  color: #fff;
}
.marca-card-cta.whatsapp:hover { background: #1ebe5b; transform: translateY(-1px); }
.marca-card-cta.phone {
  background: transparent;
  color: var(--dark, #111);
  border-color: rgba(15,15,15,0.18);
}
.marca-card-cta.phone:hover { background: var(--dark, #111); color: #fff; border-color: var(--dark, #111); }

@media (max-width: 900px) {
  .marca-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .marca-hero-card { max-width: 480px; }
  .marca-stat-num { font-size: 30px; }
}

/* ============== SPECIALIZATION BLOCK (big editorial image + copy) ============== */
.spec-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.spec-block.flip { grid-template-columns: 1fr 1.1fr; }
.spec-block.flip .spec-img { order: 2; }
.spec-img {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark);
}
.spec-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.spec-img:hover img { transform: scale(1.04); }
.spec-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 12px solid transparent;
  border-image: repeating-linear-gradient(
    45deg,
    var(--yellow) 0 10px,
    transparent 10px 20px) 12;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.spec-img:hover::after { opacity: 0.5; }
.spec-copy h2 {
  margin: 14px 0 22px;
  line-height: 1.05;
}
.spec-copy h2 .accent { color: var(--yellow); }
.spec-copy p {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 18px;
}
.spec-copy p:last-child { margin-bottom: 0; }
.spec-checks {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.spec-checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--text);
}
.spec-checks li .ti {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  stroke-width: 2.6;
  margin-top: 1px;
}

@media (max-width: 900px) {
  .spec-block, .spec-block.flip {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .spec-block.flip .spec-img { order: 0; }
}

/* ============== MODELS TAG LIST ============== */
.models-section {
  text-align: center;
}
.models-section .section-lead {
  margin-bottom: 32px;
}
.models-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 920px;
  margin: 0 auto;
}
.model-tag {
  padding: 10px 18px;
  background: var(--cream-soft, #2a2724);
  border: 1px solid rgba(255,205,5,0.18);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  transition: all 0.25s;
  cursor: default;
}
.model-tag:hover {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
  transform: translateY(-2px);
}
.section-dark .model-tag {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  color: var(--white);
}
.section-dark .model-tag:hover {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
}

/* ============== PROBLEMS GRID (typical faults per brand) ============== */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.problem-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 30px 26px;
  border-radius: 4px;
  position: relative;
  transition: all 0.25s ease;
}
.problem-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.06);
  border-color: var(--yellow);
}
.problem-card-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: 'Anton', var(--font-display);
  font-size: 44px;
  line-height: 1;
  color: var(--yellow);
  opacity: 0.2;
  letter-spacing: 0.02em;
}
.problem-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255,205,5,0.1);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
}
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 10px;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.problem-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin: 0 0 14px;
}
.problem-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.problem-meta .tag {
  padding: 4px 10px;
  background: rgba(255,205,5,0.08);
  border: 1px solid rgba(255,205,5,0.2);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--yellow);
}
@media (max-width: 900px) {
  .problems-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 600px) {
  .problems-grid { grid-template-columns: 1fr; }
  .problem-card { padding: 24px 22px; }
}

/* ============== VS DEALER COMPARE TABLE ============== */
.compare-wrap {
  max-width: 880px;
  margin: 56px auto 0;
}
.compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.compare th, .compare td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid rgba(15,15,15,0.08);
  font-size: 15px;
  line-height: 1.45;
}
.compare thead th {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: none;
}
.compare thead th:nth-child(2) {
  background: var(--yellow);
  color: var(--dark);
}
.compare tbody tr:last-child td { border-bottom: none; }
.compare tbody td:first-child {
  font-weight: 600;
  color: var(--dark);
  background: var(--cream);
  width: 32%;
}
.compare tbody td:nth-child(2) {
  background: rgba(255,205,5,0.06);
  color: var(--dark);
  font-weight: 500;
}
.compare tbody td:nth-child(2) .ti {
  color: #1f8a4c;
  margin-right: 6px;
  vertical-align: -2px;
}
.compare tbody td:nth-child(3) {
  color: var(--text-muted, #666);
}
.compare tbody td:nth-child(3) .ti {
  color: #c33;
  margin-right: 6px;
  vertical-align: -2px;
}
@media (max-width: 700px) {
  .compare th, .compare td { padding: 14px 14px; font-size: 13.5px; }
  .compare tbody td:first-child { width: 38%; }
}

/* ============== SERVICES FOR BRAND (compact grid) ============== */
.brand-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.brand-svc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 24px;
  background: var(--white);
  border: 1px solid rgba(15,15,15,0.06);
  border-radius: 4px;
  text-decoration: none;
  color: var(--dark);
  transition: all 0.25s ease;
}
.brand-svc:hover {
  transform: translateY(-3px);
  border-color: var(--yellow);
  box-shadow: 0 10px 30px rgba(15,15,15,0.06);
}
.brand-svc .ti {
  font-size: 32px;
  color: var(--yellow);
  margin-bottom: 14px;
}
.brand-svc h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 6px;
  letter-spacing: 0.01em;
}
.brand-svc p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-muted, #666);
  margin: 0 0 14px;
}
.brand-svc-link {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  margin-top: auto;
  border-bottom: 1.5px solid var(--yellow);
  padding-bottom: 2px;
}
.brand-svc:hover .brand-svc-link { color: var(--dark); }
@media (max-width: 900px) {
  .brand-services { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 600px) {
  .brand-services { grid-template-columns: 1fr; }
}

/* ============== TRUST POINTS (why us, brand-specific) ============== */
.trust-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  text-align: center;
}
.trust-point {
  padding: 30px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  transition: all 0.25s ease;
}
.trust-point:hover {
  background: rgba(255,205,5,0.06);
  border-color: var(--yellow);
  transform: translateY(-3px);
}
.trust-point .ti {
  font-size: 40px;
  color: var(--yellow);
  margin-bottom: 16px;
  display: inline-block;
}
.trust-point h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin: 0 0 8px;
}
.trust-point p {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
@media (max-width: 900px) {
  .trust-points { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* ============== MARCAS HUB (index page) ============== */
.marcas-hub {
  padding: clamp(80px, 12vw, 140px) 0 clamp(72px, 10vw, 120px);
}
.hub-tier {
  margin-top: 56px;
}
.hub-tier-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hub-tier-head h2 {
  font-family: 'Anton', var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  color: var(--white);
  margin: 0;
  letter-spacing: 0.01em;
  line-height: 1;
}
.hub-tier-head .lbl {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.hub-grid.tier-2 { grid-template-columns: repeat(5, 1fr); }
.hub-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s ease;
}
.hub-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
  background: rgba(255,205,5,0.04);
}
.hub-card-img.typo {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><text x='40' y='52' text-anchor='middle' font-family='Anton,Impact,sans-serif' font-size='42' font-weight='900' fill='%23ffcd05' fill-opacity='0.055'>2H</text></svg>"),
    linear-gradient(135deg, #1f1f23 0%, #131316 100%);
  background-size: 80px 80px, auto;
  position: relative;
}
.hub-card-img.typo::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  opacity: 0.9;
}
.hub-card-img.typo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 50% at 50% 50%, transparent 30%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.hub-brand-mark {
  font-family: 'Anton', var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  color: #fff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
  line-height: 1;
  transition: transform 0.4s ease, color 0.3s ease;
}
.hub-card:hover .hub-brand-mark { transform: scale(1.04); color: var(--yellow); }
.hub-card-img {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.hub-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 0.7s ease, opacity 0.3s;
}
.hub-card:hover .hub-card-img img {
  transform: scale(1.06);
  opacity: 0.9;
}
.hub-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,15,15,0) 30%, rgba(15,15,15,0.85) 100%);
}
.hub-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.hub-card-name {
  font-family: 'Anton', var(--font-display);
  font-size: 22px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.hub-card:hover .hub-card-name { color: var(--yellow); }
.hub-card-models {
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.hub-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
}
.hub-card-link .ti { transition: transform 0.25s; }
.hub-card:hover .hub-card-link .ti { transform: translateX(4px); }

/* Tier 2 (mass-market): smaller, no image, just nameplate */
.hub-card.compact {
  flex-direction: row;
  align-items: center;
  padding: 18px 20px;
  gap: 14px;
}
.hub-card.compact .hub-card-img { display: none; }
.hub-card.compact .hub-card-body { padding: 0; }
.hub-card.compact .hub-card-name { font-size: 18px; }
.hub-card.compact .hub-card-models { display: none; }
.hub-card.compact::after {
  content: "→";
  margin-left: auto;
  font-size: 22px;
  color: var(--yellow);
  opacity: 0.5;
  transition: all 0.25s;
}
.hub-card.compact:hover::after { opacity: 1; transform: translateX(4px); }

@media (max-width: 1100px) {
  .hub-grid { grid-template-columns: repeat(3, 1fr); }
  .hub-grid.tier-2 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .hub-grid, .hub-grid.tier-2 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hub-card-name { font-size: 18px; }
}
@media (max-width: 460px) {
  .hub-grid.tier-1 { grid-template-columns: 1fr; }
}

/* ============== FAQ DARK MODE ============== */
.section-dark .faq-item { border-color: rgba(255,255,255,0.1); }
.section-dark .faq-q { color: var(--white); }
.section-dark .faq-q:hover { background: rgba(255,255,255,0.02); }

/* details/summary FAQ */
.faq-list {
  max-width: 820px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.faq-item[open] { border-color: rgba(255,205,5,0.35); background: rgba(255,205,5,0.04); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--white);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .ti {
  flex-shrink: 0;
  color: var(--yellow);
  font-size: 20px;
  transition: transform 0.25s;
}
.faq-item[open] summary .ti { transform: rotate(45deg); }
.faq-body {
  padding: 0 24px 22px;
}
.faq-body p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  margin: 0;
}
.faq-body p strong { color: var(--white); font-weight: 600; }
@media (max-width: 600px) {
  .faq-item summary { padding: 16px 18px; font-size: 14.5px; }
  .faq-body { padding: 0 18px 18px; }
}

/* Tighten specialization & problem section vertical spacing */
.section-dark-alt, .section-dark {
  padding: clamp(64px, 8vw, 100px) 0;
}

/* Lang-badge positioning inside marca hero (avoid hidden by global rule) */
.marca-hero .lang-badge { margin-top: 20px; opacity: 1 !important; transform: none !important; }

/* WhatsApp button — distinct green */
.btn-whatsapp { background: #25D366; color: #fff; border: 1.5px solid #25D366; }
.btn-whatsapp:hover { background: #1ebe5b; border-color: #1ebe5b; transform: translateY(-1px); }
.btn-ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.25); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }

/* Hero CTAs aligned left like the heading above */
.marca-hero .hero-ctas { justify-content: flex-start; }
.marca-hero .hero-trust { justify-content: flex-start; }
.marca-hero .lang-badge { margin-left: 0; margin-right: auto; }

/* Force section heads white on dark sections (override .section-dark-alt h2 default) */
.section-dark-alt .section-head h2,
.section-dark .section-head h2,
.section-dark-alt .section-head .eyebrow,
.section-dark .section-head .eyebrow {
  color: var(--white);
}
.section-dark-alt .section-head .eyebrow,
.section-dark .section-head .eyebrow {
  background: rgba(255,205,5,0.1);
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,205,5,0.25);
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.section-dark-alt .section-head .eyebrow .ti,
.section-dark .section-head .eyebrow .ti { font-size: 14px; }
.section-head { margin-bottom: 32px; }
.section-head h2 { margin: 14px auto 8px; max-width: 24ch; }

/* Reduce empty space at top of specialization section */
.section-dark-alt .section-head,
.section-dark .section-head {
  margin-top: 0;
}
.section-dark-alt { padding-top: clamp(40px, 5vw, 64px); }

/* Lighter weight for headings in spec / problem / faq cards */
.spec-card h3,
.problem-card h3,
.benefit h3,
.faq-item summary {
  font-weight: 500 !important;
  letter-spacing: 0.005em !important;
}
.faq-item summary { font-weight: 400 !important; }
.section-dark .faq-a { color: rgba(255,255,255,0.75); }

/* Final CTA — same as service pages */
.cta-final { padding: clamp(72px, 10vw, 120px) 0; }
.cta-final-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cta-final-block h2 {
  color: var(--white);
  margin: 14px 0 18px;
}
.cta-final-block p {
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 auto 32px;
  max-width: 52ch;
}
.cta-final-foot {
  margin-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

/* CTA meta strip */
.cta-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 14px;
  margin-top: 28px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.cta-meta span { display: inline-flex; align-items: center; gap: 6px; }
.cta-meta .ti { font-size: 16px; color: var(--yellow); }
.cta-meta-sep { opacity: 0.4; }
@media (max-width: 640px) {
  .cta-meta-sep { display: none; }
}

/* Section lead helper */
.section-lead {
  max-width: 58ch;
  margin: 14px auto 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  text-align: center;
}
.section-dark .section-lead { color: rgba(255,255,255,0.75); }

/* Active nav state */
.nav-main a.active { color: var(--yellow); }

/* Legal disclaimer (small print at footer) */
.legal-disclaimer {
  margin-top: 32px;
  padding: 18px 0 4px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.legal-disclaimer p {
  font-size: 11px;
  line-height: 1.55;
  color: rgba(255,255,255,0.42);
  max-width: 100%;
  margin: 0;
  letter-spacing: 0.005em;
}

/* ============== RANGE ROVER PAGE — additional classes ============== */
.marca-hero-text h1 {
  color: var(--white);
  margin: 0 0 18px;
  font-size: clamp(46px, 6.4vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.01em;
}
.marca-hero-text h1 .accent { color: var(--yellow); }
.marca-hero-text .hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  line-height: 1.6;
  max-width: 56ch;
  margin: 0 0 28px;
}
.marca-hero-text .hero-sub strong { color: var(--yellow); font-weight: 600; }

.marca-hero-text .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}
.marca-hero-text .hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.marca-hero-text .hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.marca-hero-text .hero-trust .ti { color: var(--yellow); font-size: 16px; }

/* Hero side card */
.marca-hero-card {
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><text x='40' y='52' text-anchor='middle' font-family='Anton,Impact,sans-serif' font-size='42' font-weight='900' fill='%23ffcd05' fill-opacity='0.05'>2H</text></svg>"),
    linear-gradient(135deg, #1f1f23 0%, #131316 100%);
  background-size: 80px 80px, auto;
  color: var(--white);
  padding: 36px 32px 28px;
  border-radius: 4px;
  border-top: 4px solid var(--yellow);
  box-shadow: 0 16px 50px rgba(0,0,0,0.45);
  text-align: left;
}
.marca-brand-mark-large {
  font-family: 'Anton', var(--font-display);
  font-size: clamp(36px, 4.4vw, 56px);
  letter-spacing: 0.01em;
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.marca-models {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.marca-models li {
  padding: 6px 12px;
  background: rgba(255,205,5,0.10);
  border: 1px solid rgba(255,205,5,0.28);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--yellow);
}
.marca-hero-foot {
  border-top: 1px dashed rgba(255,255,255,0.15);
  padding-top: 16px;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
}

/* Specialization grid (singular .spec-grid, .spec-card, .spec-icon-wrap) */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.spec-card {
  padding: 32px 26px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  transition: all 0.25s ease;
}
.spec-card:hover {
  transform: translateY(-3px);
  border-color: var(--yellow);
  background: rgba(255,255,255,0.06);
}
.spec-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255,205,5,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 28px;
  margin-bottom: 18px;
}
.spec-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--white);
  margin: 0 0 10px;
  line-height: 1.25;
}
.spec-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

/* Problem grid (singular .problem-grid + .problem-num) */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.problem-grid .problem-card {
  padding: 28px 26px 26px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  position: relative;
  transition: all 0.25s ease;
}
.problem-grid .problem-card:hover {
  transform: translateY(-3px);
  border-color: var(--yellow);
}
.problem-num {
  font-family: 'Anton', var(--font-display);
  font-size: 22px;
  color: var(--yellow);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  display: inline-block;
  padding: 2px 10px;
  background: rgba(255,205,5,0.10);
  border-radius: 4px;
}
.problem-grid .problem-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 10px;
  line-height: 1.3;
}
.problem-grid .problem-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin: 0;
}
.problem-grid .problem-card p strong { color: var(--yellow); font-weight: 600; }

/* Compare table (div-based, not <table>) */
.compare-table {
  max-width: 920px;
  margin: 48px auto 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  overflow: hidden;
}
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.compare-row:last-child { border-bottom: none; }
.compare-row > div { padding: 16px 22px; font-size: 14.5px; line-height: 1.5; color: rgba(255,255,255,0.85); }
.compare-row.compare-head {
  background: rgba(0,0,0,0.3);
}
.compare-row.compare-head > div {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
}
.compare-row.compare-head .col-us {
  background: var(--yellow);
  color: var(--dark);
}
.compare-row.compare-head .col-them {
  color: rgba(255,255,255,0.55);
}
.compare-cell-label {
  font-weight: 600;
  color: var(--white) !important;
  background: rgba(0,0,0,0.15);
}
.compare-row .col-us {
  background: rgba(255,205,5,0.06);
  color: var(--white) !important;
  font-weight: 500;
}
.compare-row .col-us .ti {
  color: var(--yellow);
  margin-right: 6px;
  vertical-align: -2px;
}
.compare-row .col-them {
  color: rgba(255,255,255,0.55) !important;
}
.compare-note {
  max-width: 920px;
  margin: 16px auto 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  text-align: center;
  font-style: italic;
}
@media (max-width: 760px) {
  .compare-row { grid-template-columns: 1.2fr 1fr 1fr; }
  .compare-row > div { padding: 12px 14px; font-size: 13px; }
}

/* Buttons used on marca pages */
.btn.btn-dark {
  background: var(--dark);
  color: var(--white);
  border: 1.5px solid var(--dark);
}
.btn.btn-dark:hover { background: #000; transform: translateY(-1px); }
.btn.btn-ghost-dark {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid rgba(15,15,15,0.25);
}
.btn.btn-ghost-dark:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

@media (max-width: 900px) {
  .spec-grid, .problem-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 600px) {
  .spec-grid, .problem-grid { grid-template-columns: 1fr; }
}
