/* ============================================================
   Customer Hub — styles
   Brand tokens are at the top. Change --red for another brand.
   ============================================================ */

:root {
  --red: #c3002f;
  --red-dark: #9e0026;
  --ink: #0f0f10;
  --ink-2: #1c1c1f;
  --text: #17171a;
  --muted: #6b6b73;
  --line: #e6e6ea;
  --bg: #ffffff;
  --bg-alt: #f5f5f7;
  --green: #1a9e5c;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.06);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  font-size: 16px;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }

.container { width: min(1080px, 100% - 2.5rem); margin: 0 auto; }
.container--narrow { max-width: 760px; }

/* ---------- Language bar ---------- */
.langbar { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 60; }
.langbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .55rem 0; flex-wrap: wrap; }
.langbar__prompt { display: inline-flex; align-items: center; gap: .5rem; font-size: .85rem; font-weight: 600; color: var(--muted); white-space: nowrap; }
.langbar__prompt svg { color: var(--red); flex: 0 0 auto; }
.langbar__buttons { display: flex; gap: .35rem; flex-wrap: wrap; }
.langbtn {
  font: inherit; font-size: .85rem; font-weight: 600; cursor: pointer;
  padding: .45rem .85rem; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: var(--text);
  transition: background .15s, border-color .15s, color .15s;
}
.langbtn:hover { border-color: var(--text); }
.langbtn.is-active { background: var(--red); border-color: var(--red); color: #fff; }
.langbtn--footer { background: transparent; border-color: rgba(255,255,255,.2); color: #fff; }
.langbtn--footer.is-active { background: var(--red); border-color: var(--red); }
.footer__langs { display: flex; justify-content: center; gap: .35rem; flex-wrap: wrap; margin-bottom: 1rem; }
@media (max-width: 719px) {
  .langbar__inner { justify-content: center; padding: .5rem 0; }
  .langbar__prompt { width: 100%; justify-content: center; font-size: .8rem; }
  .langbar__buttons { justify-content: center; }
  .langbtn { padding: .4rem .7rem; font-size: .82rem; }
}

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(1200px 500px at 80% -10%, rgba(195,0,47,.35), transparent 60%), var(--ink);
  color: #fff;
  padding: 1.5rem 0 2.5rem;
}
.hero__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; }
.hero__logo { text-decoration: none; color: #fff; display: inline-flex; align-items: center; background: #fff; border-radius: 10px; padding: .45rem .8rem; }
.hero__logo img { height: 52px; width: auto; }
@media (max-width: 719px) { .hero__logo img { height: 40px; } }
.hero__slogan { display: inline-block; font-size: .78rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: #fff; background: var(--red); padding: .35rem .7rem; border-radius: 6px; margin-bottom: 1rem; }
.hero__vcard { margin-top: 1.25rem; display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1rem; }
.hero__vcard-hint { font-size: .82rem; opacity: .65; max-width: 380px; }
.btn--vcard { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); color: #fff; }
.btn--vcard:hover { background: rgba(255,255,255,.18); border-color: #fff; }
.title-accent { color: var(--red); font-weight: 600; }
.hero__logo-text { font-weight: 800; font-size: 1.1rem; letter-spacing: .02em; color: var(--ink); }
.status {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .01em;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  padding: .4rem .8rem; border-radius: 999px; white-space: nowrap;
}
.status__dot { width: 8px; height: 8px; border-radius: 50%; background: #8a8a92; }
.status--open .status__dot { background: var(--green); box-shadow: 0 0 0 4px rgba(26,158,92,.25); }
.status--closed .status__dot { background: var(--red); }
.hero__title { font-size: clamp(1.9rem, 5vw, 3rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; }
.hero__title-light { font-weight: 400; opacity: .75; }
.hero__tagline { margin-top: .75rem; font-size: 1.05rem; opacity: .8; max-width: 560px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.25rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  text-decoration: none; border: 1px solid transparent; transition: transform .12s ease, background .15s ease, border-color .15s;
  cursor: pointer;
}
.btn:active { transform: scale(.98); }
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-dark); }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { background: #f0f0f2; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-2); }
.btn--ghost { background: transparent; border-color: var(--line); color: var(--text); }
.btn--ghost:hover { border-color: var(--text); }
.btn--outline-light { background: transparent; border-color: rgba(255,255,255,.35); color: #fff; }
.btn--outline-light:hover { border-color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.btn-row--center { justify-content: center; margin-top: 1.75rem; }

/* ---------- Sections ---------- */
.section { padding: 3rem 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--ink); color: #fff; }
.section--red { background: var(--red); color: #fff; text-align: center; }
.section__title { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 700; letter-spacing: -.015em; margin-bottom: 1.25rem; }
.section__title--light { color: #fff; }
.section__intro { color: var(--muted); max-width: 640px; margin: -.5rem 0 1.5rem; }
.eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: .5rem; }
.eyebrow--light { color: rgba(255,255,255,.75); }
.lead { font-size: 1.05rem; opacity: .85; max-width: 560px; margin-bottom: 1.5rem; }
.lead--light { margin: 0 auto 1.5rem; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-2--center { align-items: center; }
@media (min-width: 820px) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 3rem; } }

/* ---------- Quick action tiles ---------- */
.tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
@media (min-width: 720px) { .tiles { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
.tile {
  display: flex; flex-direction: column; gap: .6rem;
  padding: 1.1rem; border-radius: var(--radius); background: var(--bg);
  border: 1px solid var(--line); text-decoration: none; box-shadow: var(--shadow);
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s;
  min-height: 130px;
}
.tile:hover { transform: translateY(-2px); border-color: #cfcfd6; box-shadow: 0 2px 4px rgba(0,0,0,.05), 0 14px 32px rgba(0,0,0,.09); }
.tile--primary { background: var(--red); color: #fff; border-color: var(--red); grid-column: span 2; }
@media (min-width: 720px) { .tile--primary { grid-column: span 1; } }
.tile--primary:hover { background: var(--red-dark); }
.tile__icon { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: var(--bg-alt); color: var(--red); }
.tile--primary .tile__icon { background: rgba(255,255,255,.18); color: #fff; }
.tile__icon svg { width: 20px; height: 20px; }
.tile__label { font-weight: 700; font-size: .95rem; line-height: 1.25; margin-top: auto; }
.tile__sub { font-size: .8rem; color: var(--muted); }
.tile--primary .tile__sub { color: rgba(255,255,255,.8); }

/* ---------- Coupons ---------- */
.coupons { display: grid; gap: 1rem; margin-bottom: 1.75rem; }
.coupons__group { font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 0 0 .75rem; padding-bottom: .4rem; border-bottom: 1px solid var(--line); }
@media (min-width: 820px) { .coupons { grid-template-columns: repeat(3, 1fr); } }
.coupon { position: relative; background: var(--bg); border: 2px dashed #cfcfd6; border-radius: var(--radius); padding: 1.25rem; display: flex; flex-direction: column; gap: .6rem; }
.coupon::before, .coupon::after { content: ""; position: absolute; top: 50%; width: 22px; height: 22px; border-radius: 50%; background: var(--bg-alt); transform: translateY(-50%); }
.coupon::before { left: -13px; border-right: 2px dashed #cfcfd6; } .coupon::after { right: -13px; border-left: 2px dashed #cfcfd6; }
.coupon__head { display: flex; justify-content: space-between; align-items: center; gap: .5rem; }
.coupon__badge { font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: var(--red); padding: .3rem .6rem; border-radius: 6px; }
.coupon--new .coupon__badge { background: var(--ink); }
.coupon__validity { font-size: .78rem; color: var(--muted); font-weight: 600; text-align: right; }
.coupon__title { font-size: 1.15rem; font-weight: 800; letter-spacing: -.01em; line-height: 1.2; }
.coupon__price { font-size: 2rem; font-weight: 800; letter-spacing: -.03em; color: var(--red); line-height: 1; }
.coupon__regular { font-size: 1rem; color: var(--muted); font-weight: 500; margin-left: .35rem; }
.coupon__text { font-size: .92rem; color: var(--muted); flex: 1; }
.coupon__actions { margin-top: .4rem; }
.coupon__actions .btn { width: 100%; }
.coupon--free .coupon__badge { background: var(--green); }
.coupon--info { border-style: solid; border-color: var(--line); background: var(--ink); color: #fff; }
.coupon--info .coupon__text { color: rgba(255,255,255,.75); }
.coupon--info .coupon__validity { color: rgba(255,255,255,.6); }
.coupon--info::before, .coupon--info::after { display: none; }
.coupon--info .coupon__actions .btn { background: #fff; color: var(--ink); }
.coupon--info .coupon__badge { background: var(--red); }


/* ---------- Reviews ---------- */
.reviews { display: grid; gap: 1.5rem; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
@media (min-width: 820px) { .reviews { grid-template-columns: 1.1fr 1fr; gap: 2.5rem; padding: 2rem; } }
.reviews__text { color: var(--muted); max-width: 520px; }
.reviews__stars { color: #f5b301; font-size: 1.4rem; letter-spacing: .15em; margin-top: 1rem; }
.reviews__actions { display: grid; gap: .6rem; align-content: start; }
.platforms { display: grid; gap: .6rem; }
.platform { display: flex; align-items: center; gap: .9rem; padding: .85rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm); text-decoration: none; background: var(--bg); transition: border-color .15s, transform .12s; }
.platform:hover { border-color: var(--text); transform: translateY(-1px); }
.platform__icon { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 1.05rem; }
.platform__icon--google { background: #fff; border: 1px solid var(--line); color: #4285f4; }
.platform__icon--facebook { background: #1877f2; }
.platform__icon--dealerrater { background: #f26d21; }
.platform__icon--default { background: var(--ink); }
.platform__label { font-weight: 700; font-size: .95rem; }
.platform__sub { font-size: .8rem; color: var(--muted); }
.platform::after { content: "→"; margin-left: auto; color: var(--muted); }
.btn--unhappy { background: var(--bg-alt); color: var(--text); border-color: var(--line); margin-top: .4rem; }
.btn--unhappy:hover { border-color: var(--text); }

/* ---------- Hours ---------- */
.hours { display: grid; gap: .75rem; }
.hours__dept { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.hours__head { display: flex; justify-content: space-between; align-items: center; padding: .8rem 1rem; font-weight: 700; cursor: pointer; user-select: none; }
.hours__head small { font-weight: 500; color: var(--muted); font-size: .82rem; }
.hours__head small.is-open { color: var(--green); font-weight: 600; }
.hours__head small.is-closed { color: var(--red); font-weight: 600; }
.hours__rows { border-top: 1px solid var(--line); padding: .5rem 1rem .75rem; display: none; }
.hours__dept.is-expanded .hours__rows { display: block; }
.hours__row { display: flex; justify-content: space-between; padding: .3rem 0; font-size: .92rem; }
.hours__row.is-today { font-weight: 700; }
.hours__row span:last-child { color: var(--muted); }
.hours__row.is-today span:last-child { color: var(--text); }

/* ---------- Cards ---------- */
.card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.card__big { font-size: 1.25rem; font-weight: 700; }
.card__muted { color: var(--muted); }
.card__small { font-size: .85rem; color: var(--muted); margin-top: 1rem; }

/* ---------- Banner (all brands) ---------- */
.banner {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: var(--bg-alt); border-radius: var(--radius); padding: 1.5rem;
  border-left: 4px solid var(--red);
}
.banner__icon { flex: 0 0 auto; width: 52px; height: 52px; border-radius: 14px; background: #fff; display: grid; place-items: center; color: var(--red); border: 1px solid var(--line); }
.banner__title { font-size: 1.2rem; font-weight: 700; margin-bottom: .35rem; letter-spacing: -.01em; }
.banner p { color: var(--muted); }

/* ---------- Perks (HMC) ---------- */
.perks { display: grid; gap: .6rem; }
.perks li {
  display: flex; gap: .75rem; align-items: flex-start;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  padding: .9rem 1rem; border-radius: var(--radius-sm); font-weight: 500;
}
.perks li::before { content: ""; flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%; background: var(--red); margin-top: 2px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/70% no-repeat, linear-gradient(#fff,#fff);
  -webkit-mask-composite: xor; mask-composite: exclude; }

.fineprint { font-size: .8rem; opacity: .6; margin-top: 1rem; }

/* ---------- Everyday value ---------- */
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
@media (min-width: 720px) { .values { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
.value { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem; border-top: 3px solid var(--red); }
.value__label { font-weight: 800; font-size: 1.05rem; letter-spacing: -.01em; }
.value__sub { font-size: .85rem; color: var(--muted); margin-top: .25rem; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 1rem; counter-reset: step; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(5, 1fr); } .steps--compact { grid-template-columns: repeat(4, 1fr); } }
.steps li { position: relative; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem 1.1rem 1.1rem; counter-increment: step; }
.steps li::before { content: counter(step, decimal-leading-zero); display: block; font-size: .75rem; font-weight: 800; color: var(--red); letter-spacing: .1em; margin-bottom: .6rem; }
.steps h3 { font-size: 1rem; font-weight: 700; margin-bottom: .35rem; }
.steps p { font-size: .88rem; color: var(--muted); }

/* ---------- Team ---------- */
.team { display: grid; gap: .6rem; }
@media (min-width: 720px) { .team { grid-template-columns: repeat(2, 1fr); } }
.team__row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .9rem 1rem; }
.team__need { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; }
.team__name { font-weight: 700; margin-top: .15rem; }
.team__role { font-size: .85rem; color: var(--muted); }
.team__ext { flex: 0 0 auto; text-decoration: none; font-weight: 700; color: var(--red); white-space: nowrap; border: 1px solid var(--line); border-radius: 999px; padding: .45rem .8rem; font-size: .85rem; }
.team__ext:hover { border-color: var(--red); }
.footer__publisher { margin-top: .9rem; padding-top: .9rem; border-top: 1px solid rgba(255,255,255,.12); opacity: .75; }

/* ---------- Link groups ---------- */
.linkgroups { display: grid; gap: 1.25rem; }
@media (min-width: 720px) { .linkgroups { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .linkgroups { grid-template-columns: repeat(4, 1fr); } }
.linkgroup h3 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: .6rem; }
.linkgroup a {
  display: flex; justify-content: space-between; align-items: center; gap: .5rem;
  padding: .7rem .2rem; border-bottom: 1px solid var(--line); text-decoration: none; font-weight: 500; font-size: .95rem;
}
.linkgroup a::after { content: "→"; color: var(--muted); transition: transform .15s; }
.linkgroup a:hover::after { transform: translateX(3px); color: var(--red); }

/* ---------- FAQ ---------- */
.faq details { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: .6rem; }
.faq summary { padding: 1rem 1.1rem; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--red); font-weight: 700; font-size: 1.2rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq .faq__a { padding: 0 1.1rem 1.1rem; color: var(--muted); font-size: .95rem; }

/* ---------- Escalation ---------- */
.contacts { display: grid; gap: .75rem; max-width: 820px; margin: 0 auto; }
@media (min-width: 720px) { .contacts { grid-template-columns: repeat(3, 1fr); } }
.contact { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); padding: 1.1rem; text-align: left; }
.contact__role { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; opacity: .8; }
.contact__name { font-weight: 700; font-size: 1.05rem; margin: .2rem 0 .5rem; }
.contact a { display: block; font-size: .9rem; text-decoration: none; opacity: .95; }
.contact a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.75); padding: 2rem 0; }
.footer__inner { text-align: center; }
.footer__social { display: flex; justify-content: center; gap: .6rem; margin-bottom: 1rem; flex-wrap: wrap; }
.footer__social a { padding: .45rem .9rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); text-decoration: none; font-size: .85rem; font-weight: 600; color: #fff; }
.footer__social a:hover { border-color: #fff; }
.footer__text { font-size: .88rem; }
.footer__text a { color: #fff; }
.footer__text--tiny { font-size: .75rem; opacity: .6; margin-top: .4rem; }

/* Mobile sticky call bar */
.stickybar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  display: flex; gap: .5rem; padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(15,15,16,.92); backdrop-filter: blur(10px);
}
.stickybar .btn { flex: 1; padding: .75rem; font-size: .9rem; }
@media (min-width: 720px) { .stickybar { display: none; } }
body.has-stickybar { padding-bottom: 76px; }

@media (prefers-reduced-motion: reduce) { * { transition: none !important; scroll-behavior: auto !important; } }
