/* iFixPhone Sydney — EzyOrder-inspired theme */

:root {
  --orange: #ff6b35;
  --orange-2: #ff9248;
  --orange-hover: #e85a28;
  --orange-deep: #c7471a;
  --orange-tint: #fff7f2;
  --orange-tint-2: #ffe6d9;
  --orange-tint-3: #fff1e8;
  --orange-line: #ffd4bf;

  --ink: #1a2332;
  --ink-soft: #556273;
  --ink-mute: #8a96a8;

  --line: #eef0f4;
  --line-soft: #f5f6f8;
  --bg: #ffffff;
  --bg-soft: #fafbfc;

  --font: 'Inter', 'Noto Sans Thai', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Site nav (sticky) ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  gap: 18px;
}
.nav-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--orange);
  line-height: 1;
}
.nav-logo span { color: var(--ink); }

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a.active { color: var(--ink); font-weight: 600; }
.nav-links .nav-call { color: #fff; padding: 9px 18px; font-size: 14px; }

.lang-select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--line-soft);
  color: var(--ink-soft);
  border: 0;
  border-radius: 8px;
  padding: 7px 26px 7px 10px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-mute) 50%),
                    linear-gradient(135deg, var(--ink-mute) 50%, transparent 50%);
  background-position: calc(100% - 12px) 50%, calc(100% - 8px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}
.lang-select:hover { background-color: #e9ebef; }
.lang-select:focus { outline: 2px solid var(--orange); outline-offset: 2px; }

/* ---------- Mobile toggle + drawer ---------- */
.mobile-toggle {
  display: none;
  position: fixed;
  top: 14px; left: 14px;
  z-index: 250;
  width: 42px; height: 42px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: background 0.15s;
}
.mobile-toggle:hover { background: var(--line-soft); }

.mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  z-index: 199;
}
body.mobile-menu-open .mobile-backdrop { display: block; }
body.mobile-menu-open { overflow: hidden; }

.mobile-sidebar {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 290px;
  max-width: 86vw;
  background: #fff;
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  box-shadow: 2px 0 24px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
body.mobile-menu-open .mobile-sidebar { transform: translateX(0); }
.ms-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--line);
}
.ms-close {
  background: none; border: 0; cursor: pointer;
  color: var(--ink-soft); font-size: 28px; line-height: 1;
  padding: 4px 10px; border-radius: 8px;
}
.ms-close:hover { background: var(--line-soft); color: var(--ink); }
.ms-nav { flex-grow: 1; padding: 8px 0; }
.ms-nav a {
  display: block;
  padding: 13px 22px;
  color: var(--ink);
  font-weight: 500;
  font-size: 16px;
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.15s, color 0.15s;
}
.ms-nav a:hover, .ms-nav a.active { background: var(--orange-tint); color: var(--orange); }
.ms-nav a.cta {
  margin: 18px 22px 6px;
  padding: 13px 22px;
  background: var(--orange);
  color: #fff;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  border-bottom: 0;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}
.ms-nav a.cta:hover { background: var(--orange-hover); color: #fff; }
.ms-foot {
  padding: 14px 22px 20px;
  border-top: 1px solid var(--line);
}
.ms-foot .lang-select { width: 100%; padding: 11px 30px 11px 14px; font-size: 14px; }

/* ---------- Promo bar ---------- */
.promo-bar {
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  color: #fff;
  text-align: center;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 600;
}
.promo-bar a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 10px;
  font-weight: 700;
}
.promo-bar a:hover { text-decoration: none; }

/* ---------- Hero (2-col) ---------- */
.hero {
  padding: 70px 0 90px;
  background: linear-gradient(180deg, var(--orange-tint) 0%, #ffffff 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { max-width: 580px; }

.badge {
  display: inline-block;
  background: var(--orange-tint-2);
  color: var(--orange-deep);
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.2px;
  margin-bottom: 22px;
  color: var(--ink);
}
.hero h1 .accent { color: var(--orange); }

.hero p.lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  margin: 0 0 32px;
  max-width: 540px;
}

.cta-group {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero visual — orange gradient panel with mock screen */
.hero-visual {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 100%);
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 30px 60px -20px rgba(255, 107, 53, 0.45);
  position: relative;
  overflow: hidden;
}
.hero-visual::before {
  content: "";
  position: absolute;
  top: -40%; right: -40%;
  width: 180%; height: 180%;
  background: radial-gradient(circle, rgba(255,255,255,.18) 0%, transparent 50%);
}
.mock-screen {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 14px;
  padding: 22px 22px 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}
.mock-head {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.mock-title {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.mock-device {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}
.mock-device-name { font-size: 18px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.mock-device-sub { font-size: 12px; color: var(--ink-mute); margin-top: 2px; }
.mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-soft);
}
.mock-row:last-of-type { border-bottom: 0; }
.mock-label { font-size: 14px; font-weight: 500; color: var(--ink); }
.mock-price { font-size: 14px; font-weight: 800; color: var(--orange); }
.mock-foot {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
.mock-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.3px;
}
.mock-pill-green { background: #d1f7df; color: #18794e; }
.mock-pill-orange { background: var(--orange-tint-2); color: var(--orange-deep); }

/* ---------- Stats strip (D) ---------- */
.stats-strip {
  background: var(--ink);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat { text-align: center; color: #fff; }
.stat-num {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--orange-2);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

/* ---------- Brands strip (E) ---------- */
.brands-strip {
  background: #fff;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
.brands-eyebrow {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink-mute);
  margin-bottom: 20px;
}
.brands-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.brand-pill {
  display: inline-block;
  background: var(--line-soft);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 999px;
}

/* ---------- Services grid (B) ---------- */
.services {
  padding: 90px 0;
  background: #fff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 28px;
  transition: all 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(26, 35, 50, 0.12);
  border-color: var(--orange-line);
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--orange-tint-3);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.service-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* ---------- How it works (C) ---------- */
.how-it-works {
  padding: 90px 0;
  background: var(--bg-soft);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}
.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
}
.step-num {
  width: 52px; height: 52px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px -4px rgba(255, 107, 53, 0.45);
}
.step-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.step-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* ---------- Reviews (F) ---------- */
.reviews {
  padding: 90px 0;
  background: linear-gradient(180deg, #fff 0%, var(--orange-tint) 100%);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  margin: 0;
  box-shadow: 0 10px 30px -15px rgba(26, 35, 50, 0.10);
}
.stars {
  color: #fbbf24;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-card blockquote {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 16px;
  font-style: italic;
}
.review-card figcaption {
  font-size: 13px;
  color: var(--ink-mute);
}
.review-card figcaption strong {
  color: var(--ink);
  font-weight: 700;
}

/* ---------- Big dark CTA (G) ---------- */
.cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #1a2332 0%, #2d3e54 100%);
  color: #fff;
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(1.9rem, 4.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: #fff;
}
.cta-section h2 .accent { color: var(--orange-2); display: block; }
.cta-section p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
  margin: 0 auto 28px;
}
.cta-section .cta-group { justify-content: center; }
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-ghost-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.btn-big { padding: 16px 30px; font-size: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.35);
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 107, 53, 0.45);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid #d7dce3;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-block { width: 100%; }

/* ---------- Find us ---------- */
.find-us {
  padding: 90px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}

.section-title { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-title .eyebrow {
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
  color: var(--ink);
}
.section-title p {
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.find-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  align-items: stretch;
}

.shop-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 30px;
  box-shadow: 0 20px 50px -20px rgba(26, 35, 50, 0.12);
  display: flex;
  flex-direction: column;
}
.shop-card h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.shop-card h3:not(:first-child) { margin-top: 22px; }
.shop-card address {
  font-style: normal;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.55;
}
.shop-card .hours { font-size: 1rem; color: var(--ink-soft); }
.shop-card .hours strong { color: var(--ink); font-weight: 700; }
.shop-card .btn { margin-top: 28px; }

.map-frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 20px 50px -15px rgba(26, 35, 50, 0.15);
  margin: 0;
  min-height: 380px;
  display: flex;
}
.map-frame iframe {
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: var(--bg-soft);
  flex: 1;
  min-height: 360px;
}

/* ---------- Hero variants ---------- */
.hero-tight {
  padding: 60px 0 50px;
  text-align: center;
}
.hero-tight .badge { margin-bottom: 18px; }
.hero-tight h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-tight h1 .accent { color: var(--orange); display: inline; }
.hero-tight .lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto;
}

/* ---------- Location: big map hero ---------- */
.map-hero { padding: 36px 0 60px; }
.map-frame-large {
  aspect-ratio: 16 / 9;
  min-height: 440px;
}
.map-frame-large iframe { min-height: 410px; }
.map-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 22px;
}

/* ---------- Location info cards ---------- */
.loc-info { padding: 60px 0 90px; background: var(--bg-soft); }
.loc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.loc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow: 0 10px 30px -15px rgba(26, 35, 50, 0.08);
}
.loc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--orange-tint-3);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.loc-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}
.loc-card address {
  font-style: normal;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 14px;
}
.loc-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
}
.loc-link:hover { color: var(--orange-hover); }

.transit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.transit-list li {
  font-size: 14.5px;
  color: var(--ink-soft);
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
}
.transit-list li:last-child { border-bottom: 0; }
.transit-list li strong { color: var(--ink); font-weight: 700; }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.hours-table td {
  padding: 7px 0;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
}
.hours-table tr:last-child td { border-bottom: 0; }
.hours-table td:last-child {
  text-align: right;
  color: var(--ink);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* ---------- Location: what to bring ---------- */
.bring { padding: 90px 0; background: #fff; }
.bring-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.bring-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 28px;
  text-align: center;
  transition: all 0.25s ease;
}
.bring-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -14px rgba(26, 35, 50, 0.10);
  border-color: var(--orange-line);
}
.bring-num {
  width: 44px; height: 44px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--orange-tint-2);
  color: var(--orange-deep);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bring-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.bring-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}

/* ---------- Contact methods ---------- */
.contact-methods { padding: 60px 0 80px; background: var(--bg-soft); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.contact-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 28px;
  text-align: center;
  color: var(--ink);
  box-shadow: 0 10px 30px -15px rgba(26, 35, 50, 0.08);
  transition: all 0.25s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px -15px rgba(255, 107, 53, 0.25);
  border-color: var(--orange-line);
  text-decoration: none;
}
.contact-icon {
  width: 60px; height: 60px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px -6px rgba(255, 107, 53, 0.45);
}
.contact-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.contact-value {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-value-sm { font-size: 1.05rem; font-weight: 700; line-height: 1.35; }
.contact-meta {
  font-size: 13px;
  color: var(--ink-mute);
}

/* ---------- Quote prompt card ---------- */
.quote-prompt { padding: 0 0 90px; background: var(--bg-soft); }
.quote-card {
  background: linear-gradient(135deg, var(--orange-tint) 0%, var(--orange-tint-2) 100%);
  border: 1px solid var(--orange-line);
  border-radius: 22px;
  padding: 40px 44px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
}
.quote-text .eyebrow {
  color: var(--orange-deep);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.quote-text h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  color: var(--ink);
}
.quote-text p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 1rem;
}
.quote-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quote-cta .btn { width: 100%; }

/* ---------- Price overview ---------- */
.brand-toc {
  position: sticky;
  top: 64px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand-toc ul {
  list-style: none;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 14px 0;
  margin: 0;
}
.brand-toc a {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--line-soft);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.15s;
}
.brand-toc a:hover { background: var(--orange); color: #fff; }

.brands { padding: 56px 0 80px; background: var(--bg-soft); }

.brand-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 32px 28px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px -15px rgba(26, 35, 50, 0.08);
  scroll-margin-top: 130px;
}
.brand-name {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--ink);
  margin: 0 0 22px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--orange-tint-2);
}

.series-block { margin-bottom: 24px; }
.series-block:last-child { margin-bottom: 0; }
.series-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0 0 14px;
}

.model-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
  padding: 0;
  margin: 0;
}
.model-list a {
  display: block;
  padding: 11px 16px;
  border-radius: 10px;
  background: var(--line-soft);
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 500;
  transition: all 0.15s;
  border: 1px solid transparent;
}
.model-list a:hover {
  background: var(--orange-tint);
  color: var(--orange);
  border-color: var(--orange-line);
  transform: translateY(-1px);
}

/* ---------- Individual model page ---------- */
.model-page { padding: 56px 0 80px; background: var(--bg-soft); }

.back-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 22px;
  transition: color 0.15s;
}
.back-link:hover { color: var(--orange); }

.model-head {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 32px 28px;
  margin-bottom: 22px;
  text-align: center;
  box-shadow: 0 10px 30px -15px rgba(26, 35, 50, 0.08);
}
.model-head .eyebrow {
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.model-head h1 {
  font-size: clamp(1.9rem, 4.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 0 14px;
  color: var(--ink);
}
.model-head .lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0;
}
.model-head .modelnos {
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 14px;
}

.price-table-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px -15px rgba(26, 35, 50, 0.08);
  margin-bottom: 22px;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.price-table thead th {
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink-mute);
  background: var(--bg-soft);
  padding: 14px 24px;
  border-bottom: 1px solid var(--line);
}
.price-table tbody td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
}
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody tr:hover td { background: var(--orange-tint); }
.price-table .num { text-align: right; font-weight: 700; color: var(--ink); white-space: nowrap; }
.price-table .muted { color: var(--ink-mute); }

.empty-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 40px 28px;
  text-align: center;
  margin-bottom: 22px;
}

.model-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
}
.disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--ink-mute);
  margin: 0;
}

.not-found {
  padding: 100px 0;
  text-align: center;
}
.not-found h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.not-found p { color: var(--ink-soft); margin-bottom: 24px; }

/* ---------- Footer ---------- */
.site-foot {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 36px 0;
  text-align: center;
  color: var(--ink-mute);
  font-size: 14px;
}
.site-foot p { margin: 0; }

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  .find-grid { grid-template-columns: 1fr; }
  .find-us { padding: 60px 0; }
  .hero { padding: 40px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-text { max-width: none; }
  .hero-visual { padding: 28px; }
  .map-frame { min-height: 300px; }
  .map-frame iframe { min-height: 280px; }

  .nav-links { display: none; }
  .mobile-toggle { display: inline-flex; }
  .nav-row { padding-left: 72px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .services { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .how-it-works { padding: 60px 0; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .reviews { padding: 60px 0; }
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .cta-section { padding: 60px 0; }

  .map-frame-large { min-height: 320px; aspect-ratio: 4/3; }
  .map-frame-large iframe { min-height: 300px; }
  .loc-info { padding: 50px 0 70px; }
  .loc-grid { grid-template-columns: 1fr; gap: 16px; }
  .bring { padding: 60px 0; }
  .bring-grid { grid-template-columns: 1fr; gap: 16px; }
  .contact-methods { padding: 50px 0 60px; }
  .contact-grid { grid-template-columns: 1fr; gap: 16px; }
  .quote-prompt { padding: 0 0 60px; }
  .quote-card { grid-template-columns: 1fr; padding: 30px 24px; gap: 22px; }
}

@media (max-width: 480px) {
  .promo-bar { font-size: 13px; padding: 8px 14px; }
  .promo-bar a { display: block; margin-left: 0; margin-top: 2px; }

  .badge { font-size: 12px; padding: 6px 14px; }
  .hero { padding: 36px 0 56px; }
  .hero p.lead { font-size: 1.05rem; }
  .find-us { padding: 48px 0; }
  .shop-card { padding: 26px 22px; }
  .map-frame { padding: 10px; min-height: 260px; }
  .map-frame iframe { min-height: 240px; }
  .btn { padding: 12px 22px; font-size: 14px; }

  .brand-toc { top: 60px; }
  .brand-toc ul { padding: 10px 0; gap: 6px; }
  .brand-toc a { padding: 6px 12px; font-size: 12px; }
  .brand-block { padding: 24px 22px; scroll-margin-top: 110px; }
  .brand-name { font-size: 22px; }
  .model-list { grid-template-columns: 1fr 1fr; gap: 6px; }
  .model-list a { padding: 10px 12px; font-size: 13.5px; }

  .model-head { padding: 26px 22px; }
  .price-table thead th, .price-table tbody td { padding: 12px 16px; font-size: 14px; }
}
