/* =====================================================================
   AjmerTVS — public stylesheet
   Every colour, radius, font and spacing value comes from /theme.css,
   which is generated from the admin Theme screen. Do not hard-code
   brand colours here; use the custom properties.
   ===================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--c-body);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--c-ink);
  font-weight: var(--head-weight);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2rem, 5.2vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.6rem); }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1rem; }
a  { color: var(--c-primary); text-decoration: none; }
a:hover { color: var(--c-accent); }
img { max-width: 100%; height: auto; display: block; }
hr { border: 0; border-top: 1px solid var(--c-border); margin: 2rem 0; }

:focus-visible { outline: 3px solid var(--c-accent); outline-offset: 2px; border-radius: 3px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--c-ink); color: #fff; padding: .8rem 1.2rem;
}
.skip-link:focus { left: 8px; top: 8px; }

.wrap { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }
.section { padding: var(--section-gap) 0; }
.section-tight { padding: calc(var(--section-gap) * .6) 0; }
.section-alt { background: var(--c-surface); }

/* eyebrow label — used above section headings */
.eyebrow {
  display: inline-block; font-family: var(--font-head);
  font-size: .8rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--c-accent); margin-bottom: .5rem;
}
.section-head { max-width: 60ch; margin-bottom: 2.4rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--c-body); font-size: 1.05rem; }

.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.head-row h2 { margin: 0; }

/* ---------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  letter-spacing: .03em; text-transform: uppercase;
  padding: .85rem 1.6rem; border-radius: var(--btn-radius);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
  text-align: center; line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--c-primary); color: #fff; }
.btn-primary:hover { background: var(--c-primary-dark); color: #fff; }
.btn-accent { background: var(--c-accent); color: #fff; }
.btn-accent:hover { background: var(--c-accent-dark); color: #fff; }
.btn-outline { border-color: var(--c-primary); color: var(--c-primary); background: transparent; }
.btn-outline:hover { background: var(--c-primary); color: #fff; }
.btn-ghost { border-color: currentColor; color: inherit; background: transparent; }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: inherit; }
.btn-sm { padding: .55rem 1.05rem; font-size: .85rem; }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.1rem; }
.btn-block { display: flex; width: 100%; }
.btn[disabled] { opacity: .55; pointer-events: none; }

/* ---------------------------------------------------------- topbar */
.topbar { background: var(--c-ink); color: #cdd6e6; font-size: .82rem; }
.topbar-in { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .5rem 0; flex-wrap: wrap; }
.topbar a { color: #fff; margin-left: 1.1rem; }
.topbar-msg { font-weight: 500; }

/* ---------------------------------------------------------- header */
.site-header {
  --header-bg: var(--c-bg); --header-text: var(--c-ink);
  background: var(--header-bg); color: var(--header-text);
  border-bottom: 1px solid var(--c-border);
  position: sticky; top: 0; z-index: 100;
}
.site-header.is-stuck { box-shadow: 0 4px 20px rgba(10,22,40,.09); }
.header-in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }

.brand { display: flex; align-items: center; gap: .7rem; color: inherit; }
.brand-logo, .foot-logo { max-height: 52px; width: auto; }
.brand-mark {
  font-family: var(--font-head); font-weight: 700; font-size: 1.25rem;
  background: var(--c-primary); color: #fff; padding: .35rem .6rem;
  border-radius: 6px; letter-spacing: .06em; line-height: 1;
  /* angled corner echoing Apache livery graphics */
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
  padding-right: .9rem;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--font-head); font-size: 1.28rem; color: var(--c-ink); letter-spacing: -.01em; }
.brand-text small { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--c-muted); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: 0; padding: .6rem; cursor: pointer;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--c-ink); transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-nav { display: flex; align-items: center; gap: 1.4rem; }
.nav-list { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.nav-list a {
  display: block; padding: .55rem .7rem; color: var(--c-ink);
  font-weight: 500; font-size: .93rem; border-radius: 6px;
  position: relative;
}
.nav-list a:hover { color: var(--c-primary); background: var(--c-primary-light); }
.nav-list a.is-active { color: var(--c-primary); }
.nav-list a.is-active::after {
  content: ''; position: absolute; left: .7rem; right: .7rem; bottom: 2px;
  height: 2px; background: var(--c-accent);
}
.nav-cta { display: flex; gap: .5rem; }
.nav-cta .btn-ghost { color: var(--c-primary); border-color: var(--c-border); }
.nav-cta .btn-ghost:hover { background: var(--c-primary-light); }

/* ---------------------------------------------------------- hero */
.hero { position: relative; background: var(--c-ink); color: #fff; overflow: hidden; }
.hero-slide { position: relative; min-height: clamp(420px, 62vh, 640px); display: grid; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(7,20,44,var(--ov,.72)) 0%, rgba(7,20,44,.35) 62%, rgba(7,20,44,.1) 100%);
}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-inner { position: relative; z-index: 2; align-self: center; padding: 3.5rem 0; }
.hero-body { max-width: 34rem; }
.hero.text-center .hero-body { max-width: 44rem; margin-inline: auto; text-align: center; }
.hero.text-right .hero-body { margin-left: auto; text-align: right; }
.hero h1 { color: #fff; text-wrap: balance; }
.hero .eyebrow { color: #fff; background: var(--c-accent); padding: .3rem .7rem; border-radius: 3px; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.88); margin-bottom: 1.6rem; }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.hero-dots { position: absolute; bottom: 1.4rem; left: 0; right: 0; z-index: 3; display: flex; gap: .5rem; justify-content: center; }
.hero-dot { width: 30px; height: 4px; border: 0; padding: 0; background: rgba(255,255,255,.35); cursor: pointer; border-radius: 2px; }
.hero-dot.is-on { background: var(--c-accent); }
.hero-slide[hidden] { display: none; }

/* page banner for interior pages */
.page-head { background: var(--c-primary-dark); color: #fff; padding: 3rem 0 2.6rem; position: relative; overflow: hidden; }
.page-head::before {
  content: ''; position: absolute; right: -6%; top: -40%; width: 46%; height: 200%;
  background: var(--c-primary); transform: skewX(-14deg); opacity: .55;
}
.page-head > .wrap { position: relative; z-index: 2; }
.page-head h1 { color: #fff; margin-bottom: .3rem; }
.page-head p { color: rgba(255,255,255,.8); margin: 0; max-width: 62ch; }
.crumbs { font-size: .82rem; color: rgba(255,255,255,.65); margin-bottom: .6rem; }
.crumbs a { color: rgba(255,255,255,.9); }
.crumbs span { opacity: .5; margin: 0 .35rem; }

/* ================================================================
   SIGNATURE ELEMENT — the spec rail.
   An instrument-cluster style data strip. It appears on cards, on the
   vehicle hero and in the compare table, so the same reading pattern
   carries across the whole site.
   ================================================================ */
.spec-rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: 1fr;
  border-top: 1px solid var(--c-border);
  background: var(--c-surface);
}
.spec-rail .spec {
  padding: .6rem .5rem; text-align: center;
  border-left: 1px solid var(--c-border);
}
.spec-rail .spec:first-child { border-left: 0; }
.spec-rail .spec-val {
  display: block; font-family: var(--font-head); font-weight: 700;
  font-size: 1.02rem; color: var(--c-ink);
  font-variant-numeric: tabular-nums; line-height: 1.15;
}
.spec-rail .spec-key {
  display: block; font-size: .62rem; letter-spacing: .11em;
  text-transform: uppercase; color: var(--c-muted); margin-top: .15rem;
}
/* dark variant used on the vehicle detail hero */
.spec-rail.on-dark { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); border-radius: var(--radius-sm); }
.spec-rail.on-dark .spec { border-color: rgba(255,255,255,.16); }
.spec-rail.on-dark .spec-val { color: #fff; }
.spec-rail.on-dark .spec-key { color: rgba(255,255,255,.6); }

/* ---------------------------------------------------------- cards */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

.v-card {
  background: var(--c-bg); border: 1px solid var(--c-border);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .22s ease, transform .22s ease, border-color .22s ease;
}
.v-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(11,59,143,.13); border-color: var(--c-primary-light); }
.v-media { position: relative; aspect-ratio: 4 / 3; background: var(--c-surface); overflow: hidden; }
.v-media img { width: 100%; height: 100%; object-fit: contain; padding: .8rem; transition: transform .35s ease; }
.v-card:hover .v-media img { transform: scale(1.04); }
.v-badge {
  position: absolute; top: .7rem; left: 0; z-index: 2;
  background: var(--c-accent); color: #fff;
  font-family: var(--font-head); font-size: .7rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .28rem .8rem .28rem .7rem;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}
.v-badge.is-ev { background: var(--c-success); }
.v-body { padding: 1rem 1.1rem .9rem; flex: 1; display: flex; flex-direction: column; }
.v-cat { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--c-muted); }
.v-name { font-size: 1.28rem; margin: .2rem 0 .1rem; }
.v-name a { color: var(--c-ink); }
.v-name a:hover { color: var(--c-primary); }
.v-tag { font-size: .85rem; color: var(--c-muted); margin: 0 0 .7rem; min-height: 1.2em; }
.v-price { margin-top: auto; }
.v-price .amt { font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; color: var(--c-accent); font-variant-numeric: tabular-nums; }
.v-price .lbl { display: block; font-size: .68rem; color: var(--c-muted); letter-spacing: .06em; text-transform: uppercase; }
.v-price .dash { color: var(--c-muted); font-weight: 400; }
.v-actions { display: grid; grid-template-columns: 1fr auto; gap: .5rem; padding: .8rem 1.1rem 1rem; }
.v-actions .btn { width: 100%; }
.cmp-btn {
  border: 1px solid var(--c-border); background: transparent; border-radius: var(--btn-radius);
  padding: 0 .8rem; cursor: pointer; font-size: .78rem; color: var(--c-muted);
  font-family: var(--font-head); letter-spacing: .06em; text-transform: uppercase;
}
.cmp-btn.is-on { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }

/* category rail */
.cat-rail { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.cat-tile {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 190px; padding: 1.2rem; border-radius: var(--radius);
  background: var(--c-primary-dark); color: #fff; overflow: hidden;
}
.cat-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; transition: transform .4s ease; }
.cat-tile:hover img { transform: scale(1.06); }
.cat-tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,20,44,.9), rgba(7,20,44,.15)); }
.cat-tile > * { position: relative; z-index: 2; }
.cat-tile h3 { color: #fff; margin: 0 0 .1rem; }
.cat-tile span { font-size: .8rem; color: rgba(255,255,255,.75); }

/* ---------------------------------------------------------- forms */
.form-grid { display: grid; gap: 1rem 1.1rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 600; color: var(--c-ink); letter-spacing: .01em; }
.field .req { color: var(--c-accent); }
.field .hint { font-size: .76rem; color: var(--c-muted); font-weight: 400; }
.field input[type=text], .field input[type=email], .field input[type=tel], .field input[type=date],
.field input[type=number], .field input[type=password], .field input[type=url], .field input[type=file],
.field select, .field textarea {
  width: 100%; padding: .72rem .85rem; font: inherit; font-size: .95rem;
  color: var(--c-ink); background: var(--c-bg);
  border: 1px solid var(--c-border); border-radius: var(--radius-sm);
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--c-primary);
  box-shadow: 0 0 0 3px var(--c-primary-light);
}
.field input::placeholder, .field textarea::placeholder { color: var(--c-muted); }
.check { display: flex; align-items: flex-start; gap: .55rem; font-size: .9rem; }
.check input { margin-top: .25rem; width: 17px; height: 17px; accent-color: var(--c-primary); }
.hp { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; }

.form-card {
  background: var(--c-bg); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 1.6rem;
}
.form-note { font-size: .8rem; color: var(--c-muted); }

.alert {
  padding: .85rem 1.1rem; border-radius: var(--radius-sm); margin: 1.2rem 0;
  border-left: 4px solid; font-size: .93rem;
}
.alert-success { background: #eaf7ef; border-color: var(--c-success); color: #14532d; }
.alert-danger  { background: #fdecee; border-color: var(--c-danger);  color: #7f1d1d; }
.alert-warning { background: #fff7e6; border-color: var(--c-warning); color: #7c4a03; }
.alert-info    { background: var(--c-primary-light); border-color: var(--c-primary); color: var(--c-primary-dark); }

/* ---------------------------------------------------------- vehicle detail */
.v-hero { background: var(--c-ink); color: #fff; padding: 2.5rem 0 2.8rem; }
.v-hero-grid { display: grid; gap: 2rem; grid-template-columns: 1.15fr .85fr; align-items: center; }
.v-gallery { background: rgba(255,255,255,.05); border-radius: var(--radius); padding: 1rem; }
.v-gallery .main-img { aspect-ratio: 4/3; display: grid; place-items: center; }
.v-gallery .main-img img { max-height: 100%; object-fit: contain; }
.v-thumbs { display: flex; gap: .5rem; margin-top: .8rem; flex-wrap: wrap; }
.v-thumbs button {
  width: 62px; height: 50px; padding: 3px; border-radius: 6px; cursor: pointer;
  background: rgba(255,255,255,.08); border: 2px solid transparent;
}
.v-thumbs button.is-on { border-color: var(--c-accent); }
.v-thumbs img { width: 100%; height: 100%; object-fit: contain; }
.v-hero h1 { color: #fff; margin-bottom: .2rem; }
.v-hero .lede { color: rgba(255,255,255,.8); }
.price-block { margin: 1.2rem 0; }
.price-block .big { font-family: var(--font-head); font-size: 2.1rem; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }
.price-block .big .dash { opacity: .5; }
.price-block .note { font-size: .78rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; }
.v-hero-actions { display: flex; gap: .7rem; flex-wrap: wrap; margin: 1.3rem 0 1.4rem; }

.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .3rem .75rem; border-radius: 100px; font-size: .8rem;
  background: var(--c-primary-light); color: var(--c-primary-dark); font-weight: 500;
}
.chip.dark { background: rgba(255,255,255,.12); color: #fff; }

.color-swatches { display: flex; gap: .7rem; flex-wrap: wrap; }
.swatch { text-align: center; font-size: .72rem; color: var(--c-muted); width: 66px; }
.swatch i {
  display: block; width: 40px; height: 40px; border-radius: 50%; margin: 0 auto .3rem;
  border: 2px solid var(--c-border); box-shadow: inset 0 -6px 10px rgba(0,0,0,.14);
}

.variant-table, .spec-table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.variant-table th, .variant-table td, .spec-table th, .spec-table td {
  padding: .75rem .9rem; text-align: left; border-bottom: 1px solid var(--c-border);
}
.variant-table thead th, .spec-table thead th {
  background: var(--c-surface); font-family: var(--font-head);
  text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; color: var(--c-ink);
}
.variant-table td.price { font-family: var(--font-head); font-weight: 700; color: var(--c-accent); font-variant-numeric: tabular-nums; white-space: nowrap; }
.spec-table th { width: 42%; color: var(--c-ink); font-weight: 600; }
.spec-group-title {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em;
  font-size: .82rem; color: var(--c-primary); margin: 1.6rem 0 .5rem;
}
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* tabs */
.tabs { display: flex; gap: .3rem; border-bottom: 2px solid var(--c-border); margin-bottom: 1.4rem; overflow-x: auto; }
.tab {
  background: none; border: 0; padding: .8rem 1.1rem; cursor: pointer;
  font-family: var(--font-head); font-size: .95rem; text-transform: uppercase;
  letter-spacing: .06em; color: var(--c-muted); white-space: nowrap;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
}
.tab.is-on { color: var(--c-primary); border-bottom-color: var(--c-accent); }
.tab-panel[hidden] { display: none; }

/* ---------------------------------------------------------- careers */
.job-card {
  display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center;
  background: var(--c-bg); border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-primary);
  border-radius: var(--radius-sm); padding: 1.15rem 1.3rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.job-card:hover { transform: translateX(3px); box-shadow: 0 8px 26px rgba(11,59,143,.1); border-left-color: var(--c-accent); }
.job-card.is-urgent { border-left-color: var(--c-accent); }
.job-title { font-size: 1.22rem; margin: 0 0 .3rem; }
.job-title a { color: var(--c-ink); }
.job-title a:hover { color: var(--c-primary); }
.job-meta { display: flex; flex-wrap: wrap; gap: .4rem .9rem; font-size: .84rem; color: var(--c-muted); }
.job-meta b { color: var(--c-ink); font-weight: 600; }
.job-tag {
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  background: var(--c-accent); color: #fff; padding: .16rem .5rem; border-radius: 3px;
  font-family: var(--font-head); font-weight: 600;
}
.job-tag.soft { background: var(--c-primary-light); color: var(--c-primary-dark); }
.dept-filter { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.6rem; }
.dept-pill {
  padding: .45rem 1rem; border-radius: 100px; border: 1px solid var(--c-border);
  font-size: .86rem; color: var(--c-body); background: var(--c-bg);
}
.dept-pill.is-on { background: var(--c-primary); border-color: var(--c-primary); color: #fff; }

.apply-box { background: var(--c-surface); border-radius: var(--radius); padding: 1.6rem; border: 1px solid var(--c-border); }
.apply-steps { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 1.2rem; font-size: .86rem; color: var(--c-muted); }
.apply-steps li { list-style: none; }
.apply-steps b { color: var(--c-primary); font-family: var(--font-head); font-size: 1rem; }

.status-track { display: flex; gap: .4rem; flex-wrap: wrap; margin: 1rem 0; }
.status-step { flex: 1; min-width: 90px; text-align: center; font-size: .74rem; color: var(--c-muted); }
.status-step i { display: block; height: 5px; border-radius: 3px; background: var(--c-border); margin-bottom: .4rem; }
.status-step.done i { background: var(--c-success); }
.status-step.done { color: var(--c-ink); font-weight: 600; }
.status-step.rejected i { background: var(--c-danger); }

/* ---------------------------------------------------------- misc blocks */
.usp-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.usp { padding: 1.3rem; border-radius: var(--radius); background: var(--c-bg); border: 1px solid var(--c-border); }
.usp .n { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--c-primary); line-height: 1; font-variant-numeric: tabular-nums; }
.usp h4 { margin: .5rem 0 .25rem; }
.usp p { font-size: .88rem; margin: 0; color: var(--c-muted); }

.offer-card { border: 1px solid var(--c-border); border-radius: var(--radius); overflow: hidden; background: var(--c-bg); display: flex; flex-direction: column; }
.offer-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.offer-body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; }
.offer-body h3 { font-size: 1.15rem; }
.offer-valid { font-size: .76rem; color: var(--c-accent); text-transform: uppercase; letter-spacing: .08em; margin-top: auto; padding-top: .8rem; }

.post-card { border: 1px solid var(--c-border); border-radius: var(--radius); overflow: hidden; background: var(--c-bg); }
.post-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.post-body { padding: 1.1rem; }
.post-body h3 { font-size: 1.1rem; }
.post-date { font-size: .76rem; color: var(--c-muted); text-transform: uppercase; letter-spacing: .08em; }

.quote {
  background: var(--c-bg); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 1.3rem;
}
.quote .stars { color: var(--c-warning); letter-spacing: .12em; }
.quote p { font-size: .95rem; }
.quote footer { font-size: .84rem; color: var(--c-muted); }
.quote footer b { color: var(--c-ink); display: block; }

.cta-band {
  background: var(--c-primary); color: #fff; border-radius: var(--radius);
  padding: 2.2rem; display: grid; gap: 1.2rem;
  grid-template-columns: 1fr auto; align-items: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; right: -8%; top: -60%; width: 40%; height: 220%;
  background: var(--c-primary-dark); transform: skewX(-16deg); opacity: .7;
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; margin: 0 0 .3rem; }
.cta-band p { color: rgba(255,255,255,.85); margin: 0; }

.filter-bar {
  display: flex; gap: .7rem; flex-wrap: wrap; align-items: flex-end;
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 1rem 1.1rem; margin-bottom: 1.8rem;
}
.filter-bar .field { flex: 1 1 165px; gap: .25rem; }
.filter-bar label { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--c-muted); }
.result-count { font-size: .88rem; color: var(--c-muted); margin-bottom: 1rem; }

.pagination { display: flex; gap: .35rem; justify-content: center; margin-top: 2.5rem; flex-wrap: wrap; }
.pagination a, .pagination span {
  padding: .5rem .9rem; border: 1px solid var(--c-border);
  border-radius: var(--radius-sm); font-size: .9rem; color: var(--c-body);
}
.pagination .is-on { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }

.empty {
  text-align: center; padding: 3.5rem 1.5rem; border: 2px dashed var(--c-border);
  border-radius: var(--radius); color: var(--c-muted);
}
.empty h3 { color: var(--c-ink); }

.prose { max-width: 72ch; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li { margin-bottom: .4rem; }
.prose img { border-radius: var(--radius-sm); margin: 1.2rem 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.2rem 0; }
.prose th, .prose td { border: 1px solid var(--c-border); padding: .6rem .8rem; text-align: left; }
.prose blockquote { border-left: 4px solid var(--c-accent); padding-left: 1rem; margin-left: 0; color: var(--c-ink); font-style: italic; }

.two-col { display: grid; gap: 2.4rem; grid-template-columns: 1.6fr .9fr; align-items: start; }
.sidebar-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 1.3rem; position: sticky; top: 90px; }

/* EMI */
.emi-out { background: var(--c-primary); color: #fff; border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.emi-out .emi-val { font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; line-height: 1; font-variant-numeric: tabular-nums; }
.emi-out .emi-lbl { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; opacity: .8; }
.emi-split { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.2); font-size: .85rem; }
.emi-split b { display: block; font-family: var(--font-head); font-size: 1.1rem; font-variant-numeric: tabular-nums; }
input[type=range] { width: 100%; accent-color: var(--c-accent); }

/* compare */
.cmp-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.cmp-table th, .cmp-table td { border: 1px solid var(--c-border); padding: .8rem; text-align: left; vertical-align: top; }
.cmp-table thead th { background: var(--c-surface); text-align: center; }
.cmp-table thead img { max-height: 110px; margin: 0 auto .5rem; object-fit: contain; }
.cmp-table tbody th { width: 22%; background: var(--c-surface); font-weight: 600; color: var(--c-ink); font-size: .85rem; }
.cmp-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: var(--c-ink); color: #fff; padding: .7rem 0; transform: translateY(110%); transition: transform .25s ease; }
.cmp-bar.is-on { transform: none; }
.cmp-bar-in { display: flex; align-items: center; gap: 1rem; justify-content: space-between; flex-wrap: wrap; }
.cmp-list { display: flex; gap: .5rem; flex-wrap: wrap; font-size: .85rem; }
.cmp-list span { background: rgba(255,255,255,.12); padding: .25rem .65rem; border-radius: 4px; }

/* ---------------------------------------------------------- footer */
.site-footer { background: var(--c-footer-bg); color: var(--c-footer-text); margin-top: 0; }
.footer-grid { display: grid; gap: 2rem; padding: 3.2rem 0 2.4rem; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; }
.site-footer h4 {
  color: #fff; font-size: .84rem; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .5rem; }
.site-footer a { color: var(--c-footer-text); font-size: .92rem; }
.site-footer a:hover { color: #fff; }
.foot-about { font-size: .89rem; line-height: 1.7; }
.foot-address { font-style: normal; font-size: .89rem; line-height: 1.7; }
.foot-phone { font-family: var(--font-head); font-size: 1.3rem; color: #fff !important; font-variant-numeric: tabular-nums; }
.foot-hours { font-size: .84rem; opacity: .85; }
.foot-social { display: flex; gap: .8rem; margin-top: 1rem; flex-wrap: wrap; }
.foot-social a { font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,.25); padding-bottom: 2px; }
.subscribe { margin-top: 1.2rem; }
.subscribe label { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: #fff; display: block; margin-bottom: .45rem; }
.sub-row { display: flex; gap: .4rem; }
.sub-row input {
  flex: 1; min-width: 0; padding: .6rem .75rem; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.07); color: #fff; font: inherit; font-size: .9rem;
}
.sub-row input::placeholder { color: rgba(255,255,255,.45); }
.sub-msg { font-size: .8rem; margin: .5rem 0 0; }
.sub-msg.ok { color: #6ee7a8; }
.sub-msg.err { color: #ff9d9d; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.2rem 0 5.5rem; font-size: .84rem; }
.footer-bottom-in { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { margin: 0; }
.foot-legal a { margin-left: 1rem; }
.disclaimer { font-size: .74rem; opacity: .55; margin-top: .8rem; line-height: 1.6; }

/* ---------------------------------------------------------- sticky action bar */
.action-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
  display: none; background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  box-shadow: 0 -4px 20px rgba(10,22,40,.1);
  padding-bottom: env(safe-area-inset-bottom);
}
.ab-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 1px;
  padding: .55rem .3rem; font-size: .68rem; color: var(--c-body);
  letter-spacing: .04em; text-transform: uppercase; font-weight: 600;
}
.ab-ico { font-size: 1.15rem; line-height: 1.2; }
.ab-primary { color: var(--c-accent); }

/* ---------------------------------------------------------- responsive */
@media (max-width: 1000px) {
  .two-col { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .v-hero-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px);
    background: var(--c-bg); flex-direction: column; align-items: stretch;
    padding: 5rem 1.4rem 2rem; gap: .4rem; overflow-y: auto;
    transform: translateX(100%); transition: transform .25s ease;
    box-shadow: -8px 0 30px rgba(10,22,40,.16); z-index: 120;
  }
  .main-nav.is-open { transform: none; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list a { padding: .85rem .4rem; border-bottom: 1px solid var(--c-border); border-radius: 0; }
  .nav-list a.is-active::after { display: none; }
  .nav-cta { flex-direction: column; margin-top: 1.2rem; }
  .nav-cta .btn { width: 100%; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(10,22,40,.5); z-index: 110; }
  .action-bar { display: flex; }
  .cta-band { grid-template-columns: 1fr; text-align: center; }
  .cta-band .btn { width: 100%; }
  .job-card { grid-template-columns: 1fr; }
  .job-card .btn { width: 100%; }
}

@media (max-width: 620px) {
  :root { --section-gap: 52px; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .grid-3, .grid-4 { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: .9rem; }
  .v-body { padding: .8rem .8rem .6rem; }
  .v-name { font-size: 1.05rem; }
  .v-price .amt { font-size: 1.1rem; }
  .v-actions { grid-template-columns: 1fr; padding: .6rem .8rem .8rem; }
  .spec-rail { grid-auto-flow: row; grid-auto-columns: auto; grid-template-columns: 1fr 1fr; }
  .spec-rail .spec:nth-child(odd) { border-left: 0; }
  .spec-rail .spec:nth-child(n+3) { border-top: 1px solid var(--c-border); }
  .emi-split { grid-template-columns: 1fr; }
  .hero-slide { min-height: 380px; }
}

@media print {
  .site-header, .site-footer, .action-bar, .cmp-bar, .v-actions, .hero-actions { display: none !important; }
  body { color: #000; }
}
