/* Vodacentre Bloemfontein — premium offline demo
   Vodacom-dealer red #E60000 / black / white — concept only */

:root {
  --red: #e60000;
  --red-dark: #b80000;
  --red-soft: #ffe5e5;
  --red-glow: rgba(230, 0, 0, 0.28);
  --black: #0a0a0a;
  --ink: #141414;
  --muted: #5a5a5a;
  --line: #e6e6e8;
  --bg: #f6f6f7;
  --white: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 22px 50px rgba(0, 0, 0, 0.14);
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --header-h: 64px;
  --banner-h: 42px;
  --wrap: 1180px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--banner-h) + var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  width: min(var(--wrap), calc(100% - 2rem));
  margin-inline: auto;
}

.example-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-soft);
  border: 1px solid rgba(230, 0, 0, 0.25);
  padding: 0.12rem 0.4rem;
  border-radius: 4px;
  vertical-align: middle;
}

/* —— Demo banner —— */
.demo-banner {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #111;
  color: #eee;
  text-align: center;
  font-size: 0.72rem;
  padding: 0.55rem 0.75rem;
  letter-spacing: 0.01em;
  min-height: var(--banner-h);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 0.4rem;
}
.demo-banner strong { color: #ff6b6b; }
.banner-sep { color: #666; }

/* —— Header —— */
.site-header {
  position: sticky;
  top: var(--banner-h);
  z-index: 90;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: var(--header-h);
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
  text-decoration: none;
  flex-shrink: 0;
}
.logo:hover { text-decoration: none; }
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  box-shadow: 0 4px 14px var(--red-glow);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-weight: 800; font-size: 1rem; }
.logo-sub { font-size: 0.62rem; color: var(--muted); font-weight: 600; max-width: 16rem; }

.nav-toggle {
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.header-call { display: none; }

.nav {
  display: none;
  flex-direction: column;
  gap: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 0.5rem 0;
  max-height: 70vh;
  overflow: auto;
}
.nav.open { display: flex; }
.nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.7rem 1.25rem;
}
.nav a:hover { color: var(--red); background: var(--red-soft); }

@media (min-width: 1100px) {
  .nav-toggle { display: none; }
  .nav {
    display: flex;
    flex-direction: row;
    position: static;
    box-shadow: none;
    border: none;
    padding: 0;
    margin-left: auto;
    gap: 0.15rem;
    max-height: none;
    overflow: visible;
    background: transparent;
  }
  .nav a {
    padding: 0.4rem 0.55rem;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 8px;
  }
  .nav a:hover { background: var(--red-soft); }
  .header-call { display: inline-flex; margin-left: 0.5rem; }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  font-family: inherit;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 18px var(--red-glow);
}
.btn-primary:hover { background: var(--red-dark); color: #fff; }
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--whatsapp-dark); color: #fff; }
.btn-call {
  background: var(--black);
  color: #fff;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}
.btn-call:hover { background: #333; color: #fff; }
.btn-sm { padding: 0.48rem 0.8rem; font-size: 0.78rem; }
.btn-block { width: 100%; }

/* —— Hero —— */
.hero {
  background:
    radial-gradient(ellipse 70% 55% at 100% -10%, rgba(230, 0, 0, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(0, 0, 0, 0.04), transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  padding: 2.25rem 0 2.75rem;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    align-items: center;
  }
}
.partner-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  margin: 0 0 0.85rem;
  box-shadow: var(--shadow);
  max-width: 100%;
}
.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px var(--red-soft);
  flex-shrink: 0;
}
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--red);
  margin: 0 0 0.75rem;
}
.hero h1 {
  font-size: clamp(1.65rem, 4.2vw, 2.55rem);
  line-height: 1.12;
  margin: 0 0 0.9rem;
  letter-spacing: -0.025em;
}
.lead {
  font-size: 1.02rem;
  color: var(--muted);
  margin: 0 0 1.35rem;
  max-width: 48ch;
}
.lead strong { color: var(--ink); }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}
.hero-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.hero-meta a { color: var(--ink); font-weight: 700; }
.meta-icon { margin-right: 0.3rem; }
.ecosystem-note {
  font-size: 0.8rem;
  color: var(--muted);
  background: #fff;
  border-left: 3px solid var(--red);
  padding: 0.75rem 0.9rem;
  margin: 0;
  border-radius: 0 10px 10px 0;
  box-shadow: var(--shadow);
}
.ecosystem-note strong { color: var(--ink); }

/* Booklet + phone mock */
.booklet {
  display: grid;
  gap: 1rem;
}
@media (min-width: 520px) and (max-width: 959px) {
  .booklet { grid-template-columns: 1fr 220px; align-items: start; }
}
.booklet-ribbon {
  background: var(--black);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.45rem;
  border-radius: 10px 10px 0 0;
  margin-bottom: -1rem;
  position: relative;
  z-index: 1;
}
.booklet-cover {
  background: linear-gradient(160deg, #1a1a1a 0%, #2a0a0a 45%, #111 100%);
  color: #fff;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 1.5rem 1.25rem 1.35rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid #333;
}
.booklet-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ff8a8a;
  font-weight: 700;
}
.booklet-cover h2 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.booklet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.15rem;
}
.booklet-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
}
.booklet-list li span:last-child { color: #aaa; font-size: 0.75rem; }

.phone-mock {
  background: var(--black);
  border-radius: 28px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  width: min(240px, 100%);
  margin-inline: auto;
}
.phone-mock.mini { width: min(220px, 100%); }
.phone-notch {
  width: 80px;
  height: 7px;
  background: #333;
  border-radius: 999px;
  margin: 4px auto 10px;
}
.phone-screen {
  background: #111;
  border-radius: 18px;
  padding: 0.9rem;
  min-height: 220px;
  color: #fff;
}
.mock-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #999;
  margin: 0 0 0.75rem;
}
.mock-deal {
  background: #1c1c1c;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.mock-deal strong { font-size: 0.85rem; }
.mock-deal span { font-size: 0.7rem; color: #aaa; }
.mock-toast {
  margin-top: 0.75rem;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #7dffa8;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  text-align: center;
}

/* —— Category strip —— */
.cat-strip {
  padding: 1.5rem 0 1.75rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.cat-strip-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.9rem;
}
.cat-strip-head h2 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.cat-strip-head p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.cat-scroll {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.cat-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.15s, background 0.15s;
}
.cat-chip:hover {
  border-color: var(--red);
  background: var(--red-soft);
  color: var(--red);
  text-decoration: none;
}
.cat-chip.hot {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.cat-chip.hot:hover { background: var(--red-dark); color: #fff; }
.cat-ico {
  font-size: 0.75rem;
  opacity: 0.9;
}

/* —— Sections —— */
.section { padding: 3.25rem 0; }
.section-alt { background: var(--bg); }
.section-head {
  text-align: center;
  margin-bottom: 1.75rem;
  max-width: 640px;
  margin-inline: auto;
}
.section-head.left { text-align: left; margin-inline: 0; }
.section-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
}
.section-head h2 {
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  margin: 0 0 0.45rem;
  letter-spacing: -0.02em;
}
.section-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.grid-footnote {
  text-align: center;
  margin: 1.5rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

/* —— Deals —— */
.deals-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .deals-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .deals-grid { grid-template-columns: repeat(4, 1fr); }
}
.deal-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem;
  position: relative;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.deal-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.deal-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  z-index: 1;
}
.deal-badge-alt { background: var(--black); }
.deal-badge-soft { background: #555; }
.deal-visual {
  height: 110px;
  border-radius: 12px;
  margin-bottom: 0.9rem;
  background: linear-gradient(145deg, #2a2a2a, #111);
  position: relative;
  overflow: hidden;
}
.deal-visual::after {
  content: "";
  position: absolute;
  inset: 20% 36%;
  border-radius: 10px;
  background: linear-gradient(160deg, #555, #1a1a1a);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border: 2px solid #666;
}
.deal-samsung { background: linear-gradient(145deg, #1a2332, #0d1118); }
.deal-iphone { background: linear-gradient(145deg, #2c2c2e, #1c1c1e); }
.deal-s25 { background: linear-gradient(145deg, #1e3a5f, #0f1c2e); }
.deal-redmi { background: linear-gradient(145deg, #3d1f1f, #1a0e0e); }
.deal-oppo { background: linear-gradient(145deg, #1f3d2e, #0e1a14); }
.deal-nokia { background: linear-gradient(145deg, #2a2a3d, #12121a); }
.deal-huawei { background: linear-gradient(145deg, #3a2a1a, #1a120a); }
.deal-vivo { background: linear-gradient(145deg, #1a2a3d, #0a121a); }
.deal-card h3 { margin: 0 0 0.3rem; font-size: 0.98rem; }
.deal-price { margin: 0 0 0.3rem; font-size: 0.88rem; color: var(--muted); }
.deal-price strong { color: var(--ink); font-size: 1.1rem; }
.pm { font-size: 0.75rem; }
.deal-desc {
  margin: 0 0 0.9rem;
  font-size: 0.78rem;
  color: var(--muted);
  flex-grow: 1;
}
.deal-actions { display: flex; flex-wrap: wrap; gap: 0.4rem; }

/* —— Fibre / info panels —— */
.info-split {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 800px) {
  .info-split { grid-template-columns: 1fr 1fr; }
}
.info-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.info-panel.highlight {
  border-color: rgba(230, 0, 0, 0.35);
  box-shadow: 0 10px 32px rgba(230, 0, 0, 0.1);
}
.info-panel h3 { margin: 0 0 0.85rem; font-size: 1.1rem; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.check-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 800;
}
.check-list strong { color: var(--ink); }
.panel-note {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}
.tier-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin: 0 0 1.1rem;
}
.tier {
  background: var(--bg);
  border-radius: 10px;
  padding: 0.65rem 0.4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.7rem;
  color: var(--muted);
}
.tier strong { color: var(--ink); font-size: 0.95rem; }

/* —— LTE grid —— */
.lte-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .lte-grid { grid-template-columns: repeat(2, 1fr); }
}
.lte-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.lte-card h3 { margin: 0 0 0.45rem; font-size: 1.05rem; }
.lte-card p { margin: 0 0 0.85rem; font-size: 0.88rem; color: var(--muted); }
.lte-price { font-size: 0.9rem !important; color: var(--ink) !important; }

/* —— Business —— */
.biz-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .biz-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .biz-grid { grid-template-columns: repeat(4, 1fr); }
}
.biz-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.biz-card h3 { margin: 0 0 0.4rem; font-size: 1rem; }
.biz-card p { margin: 0; font-size: 0.85rem; color: var(--muted); }
.biz-card.cta {
  background: linear-gradient(160deg, #1a1a1a, #2a0a0a);
  color: #fff;
  border-color: #333;
}
.biz-card.cta h3 { color: #fff; }
.biz-card.cta p { color: #ccc; margin-bottom: 0.85rem; }
.biz-card.cta .btn { margin: 0.25rem 0.25rem 0 0; }

/* —— Flow diagram —— */
.flow-diagram {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .flow-diagram {
    flex-direction: row;
    align-items: stretch;
    gap: 0.35rem;
  }
}
.flow-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 0.85rem;
  flex: 1;
}
.flow-step.highlight {
  border-color: var(--red);
  background: linear-gradient(180deg, #fff, var(--red-soft));
}
.flow-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}
.flow-step h3 { margin: 0 0 0.25rem; font-size: 0.95rem; }
.flow-step p { margin: 0; font-size: 0.8rem; color: var(--muted); }
.flow-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-weight: 800;
  font-size: 1.25rem;
  padding: 0 0.15rem;
}
@media (min-width: 900px) {
  .flow-arrow { display: flex; }
}

/* —— Repairs —— */
.repairs-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 840px) {
  .repairs-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.repair-intro {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0 0 1rem;
}
.brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.brand-row span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  background: var(--black);
  color: #fff;
}
.repair-points {
  margin: 0;
  padding: 0;
  list-style: none;
}
.repair-points li {
  padding: 0.55rem 0 0.55rem 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}
.repair-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 800;
}
.form-title {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}
.check-inline {
  flex-direction: row !important;
  align-items: center;
  gap: 0.5rem !important;
  font-weight: 600;
  margin-bottom: 0.9rem;
}
.check-inline input { width: auto; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}
.form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.form input,
.form select,
.form textarea {
  font: inherit;
  font-weight: 400;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fafafa;
  color: var(--ink);
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid rgba(230, 0, 0, 0.35);
  border-color: var(--red);
  background: #fff;
}
.form-disclaimer {
  margin: 0.7rem 0 0;
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
}

/* —— Branches —— */
.branches-strip {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .branches-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .branches-strip { grid-template-columns: repeat(4, 1fr); }
}
.branch-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.branch-card.featured {
  border-color: var(--red);
  box-shadow: 0 8px 28px rgba(230, 0, 0, 0.12);
}
.branch-tag {
  margin: 0 0 0.25rem;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
}
.branch-card h3 { margin: 0 0 0.25rem; font-size: 1rem; }
.branch-card p { margin: 0; font-size: 0.82rem; color: var(--muted); }
.branch-meta { font-size: 0.75rem !important; margin-bottom: 0.35rem !important; }
.branch-card a {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.85rem;
}
.branch-card a:hover { color: var(--red); }

/* —— Contact —— */
.contact-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.contact-quick {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.contact-quick li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--muted);
}
.contact-quick a {
  color: var(--ink);
  font-weight: 700;
}

/* —— Footer —— */
.site-footer {
  background: var(--black);
  color: #bbb;
  padding: 2.5rem 0 3rem;
  font-size: 0.88rem;
}
.footer-inner { display: grid; gap: 1.25rem; }
.site-footer strong { color: #fff; }
.footer-brand strong { display: block; margin-bottom: 0.4rem; font-size: 0.98rem; }
.footer-brand p { margin: 0; line-height: 1.55; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
}
.footer-links a { color: #fff; font-weight: 700; }
.footer-disclaimer {
  border-top: 1px solid #333;
  padding-top: 1.2rem;
  font-size: 0.74rem;
  color: #888;
  line-height: 1.65;
  margin: 0;
}

/* —— Modal —— */
.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: end center;
  padding: 1rem;
}
@media (min-width: 560px) {
  .modal { place-items: center; }
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.modal-panel {
  position: relative;
  background: #fff;
  border-radius: 18px 18px 0 0;
  padding: 1.5rem;
  width: min(420px, 100%);
  max-height: 90vh;
  overflow: auto;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 560px) {
  .modal-panel { border-radius: 18px; }
}
.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  border: none;
  background: var(--bg);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}
.modal-panel h2 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  padding-right: 2rem;
}
.modal-sub {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.enquire-device {
  background: var(--red-soft);
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  font-size: 0.9rem;
  margin: 0 0 1rem;
}

/* —— Toast —— */
.toast {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  background: #111;
  color: #fff;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  max-width: calc(100% - 2rem);
  text-align: center;
}
.toast[hidden] { display: none; }
.toast.show { animation: toast-in 0.25s ease; }
@keyframes toast-in {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .deal-card { transition: none; }
  .toast.show { animation: none; }
}
