/* ============================================
   RENT A CAR TIGAR — NOVI SAD
   Paleta: crna + tigrasto narandžasta (iz loga)
   ============================================ */

:root {
  /* boje iz logotipa */
  --black: #000000;
  --black-2: #0c0c0c;
  --black-3: #161616;
  --tiger: #fc5800;
  --tiger-light: #ff7e33;
  --tiger-dark: #c94600;
  --white: #fbf9f6;
  --gray: #9a958c;
  --line: rgba(251, 249, 246, 0.12);
  --plate-blue: #1450a3;
  --whatsapp: #25d366;
  --viber: #7360f2;

  /* tipografija */
  --font-display: "Big Shoulders Display", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  /* layout */
  --container-w: 1180px;
  --radius: 6px;
  --header-h: 110px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol, dl { margin: 0; padding: 0; list-style: none; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
}
p { margin: 0; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 28px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--tiger);
  color: var(--black);
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-weight: 700;
  z-index: 300;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible {
  outline: 3px solid var(--tiger-light);
  outline-offset: 3px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tiger-light);
  margin: 0 0 14px;
}

.section { padding: 96px 0; border-top: 1px solid var(--line); }
.section--tight { padding: 64px 0; }

.section-title { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 18px; max-width: 18ch; }
.section-lede { max-width: 60ch; color: var(--gray); font-size: 1.05rem; margin-bottom: 48px; }

/* breadcrumb */
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gray);
  padding: 22px 0 0;
}
.breadcrumb a:hover { color: var(--tiger-light); }
.breadcrumb span { margin: 0 8px; color: var(--line); }

/* ---------- reveal-on-scroll ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- plate ---------- */
.plate {
  display: inline-flex;
  align-items: stretch;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid var(--black);
  background: var(--white);
  flex-shrink: 0;
}
.plate__tab {
  background: var(--plate-blue);
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  padding: 0 6px;
}
.plate__code {
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.06em;
  padding: 3px 10px 3px 8px;
  display: flex;
  align-items: center;
}

.tag-plate {
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  overflow: hidden;
  border: 1.5px solid var(--black);
  background: var(--white);
  flex-shrink: 0;
}
.tag-plate__tab {
  background: var(--plate-blue);
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.62rem;
  padding: 6px 6px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.tag-plate__code {
  color: var(--black);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 8px;
  white-space: nowrap;
}
.tag-plate__note {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--black-2);
  background: rgba(0,0,0,0.06);
  padding: 6px 9px;
  border-left: 1px dashed rgba(0,0,0,0.25);
  white-space: nowrap;
}
.tag-plate--sm .tag-plate__tab { font-size: 0.58rem; padding: 5px 5px; }
.tag-plate--sm .tag-plate__code { font-size: 0.72rem; padding: 5px 7px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px 22px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--tiger); color: var(--black); }
.btn--primary:hover { background: var(--tiger-light); }
.btn--ghost { border-color: var(--line); color: var(--white); }
.btn--ghost:hover { border-color: var(--tiger-light); color: var(--tiger-light); }
.btn--whatsapp { background: var(--whatsapp); color: #07210f; }
.btn--whatsapp:hover { filter: brightness(1.1); }
.btn--viber { background: var(--viber); color: #fff; }
.btn--viber:hover { filter: brightness(1.1); }
.btn--block { width: 100%; justify-content: center; }
.btn--lg { padding: 17px 26px; font-size: 1rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--plate {
  background: var(--white);
  color: var(--black);
  padding: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid var(--black);
}
.btn--plate .btn__label {
  background: var(--plate-blue);
  color: #fff;
  font-size: 0.62rem;
  padding: 0 10px;
  display: flex;
  align-items: center;
  height: 100%;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.btn--plate .btn__num { padding: 10px 14px; font-weight: 700; }
.btn--plate:hover { background: var(--tiger-light); }

/* ============================================
   PROMO STRIP (above header)
   ============================================ */
.promo-strip {
  display: none;
  background: var(--tiger);
  color: var(--black);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 9px 16px;
}
.promo-strip a { text-decoration: underline; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
  min-height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 130px; height: auto; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}
.brand__sub {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.main-nav ul { display: flex; gap: 20px; }
.main-nav a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s ease;
  padding: 6px 0;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--tiger-light); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform .15s ease, filter .15s ease;
}
.icon-btn:hover { transform: translateY(-2px); }
.icon-btn svg { width: 20px; height: 20px; }
.icon-btn--whatsapp { background: var(--whatsapp); color: #07210f; }
.icon-btn--viber { background: var(--viber); color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--white); display: block; }

/* ============================================
   FLOATING ACTION BUTTONS (desktop)
   ============================================ */
.fab-stack {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.45);
  transition: transform 0.18s ease;
}
.fab:hover { transform: scale(1.08); }
.fab svg { width: 26px; height: 26px; }
.fab--call { background: var(--tiger); color: var(--black); }
.fab--whatsapp { background: var(--whatsapp); color: #07210f; }
.fab--viber { background: var(--viber); color: #fff; }

@media (max-width: 760px) {
  .fab-stack { display: none; }
}

/* ============================================
   STICKY MOBILE CALL BAR
   ============================================ */
.mobile-callbar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  background: var(--black-2);
  border-top: 1px solid var(--line);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
}
.mobile-callbar__row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.mobile-callbar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 9px 4px;
  border-radius: var(--radius);
}
.mobile-callbar svg { width: 19px; height: 19px; }
.mobile-callbar__call { background: var(--tiger); color: var(--black); }
.mobile-callbar__whatsapp { background: var(--whatsapp); color: #07210f; }
.mobile-callbar__viber { background: var(--viber); color: #fff; }

@media (max-width: 760px) {
  .mobile-callbar { display: block; }
  body { padding-bottom: 78px; }
}

/* ============================================
   HERO
   ============================================ */
.hero { position: relative; padding: 90px 0 80px; overflow: hidden; }
.hero--page { padding: 56px 0 60px; }
.hero__stripes {
  position: absolute;
  inset: -20% -10%;
  background: repeating-linear-gradient(
    -22deg,
    rgba(252, 88, 0, 0.08) 0px,
    rgba(252, 88, 0, 0.08) 14px,
    transparent 14px,
    transparent 64px
  );
  pointer-events: none;
  z-index: 0;
}
.hero__inner { position: relative; z-index: 1; max-width: 760px; }
.hero__title { font-size: clamp(2.4rem, 6vw, 4.4rem); margin-bottom: 22px; }
.hero__lede { font-size: 1.12rem; color: var(--gray); max-width: 54ch; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.stat-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================
   TICKER
   ============================================ */
.ticker {
  background: var(--tiger);
  background-image: repeating-linear-gradient(
    -22deg,
    rgba(0,0,0,0.14) 0px, rgba(0,0,0,0.14) 10px,
    transparent 10px, transparent 36px
  );
  overflow: hidden;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ticker__track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: ticker 26s linear infinite;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  color: var(--black);
  text-transform: uppercase;
  white-space: nowrap;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

/* ============================================
   USP STRIP (4 selling points)
   ============================================ */
.usp-strip { padding: 56px 0; border-top: 1px solid var(--line); }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.usp-card {
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.usp-card svg { width: 26px; height: 26px; color: var(--tiger); margin-bottom: 14px; }
.usp-card h3 { font-size: 1.05rem; margin-bottom: 8px; text-transform: none; }
.usp-card p { color: var(--gray); font-size: 0.88rem; }

/* ============================================
   FLEET CARDS
   ============================================ */
.fleet__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.fleet__grid--full { grid-template-columns: repeat(3, 1fr); }

.fleet-card {
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.fleet-card__media {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  background: #111;
}
.fleet-card__media svg { width: 64%; height: 64%; color: var(--tiger); opacity: .92; }
.fleet-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  padding: 0;
  margin: 0;
  border-radius: 0;
}
.fleet-card__price-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--tiger);
  color: var(--black);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 4px;
}
.fleet-card__year-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(3px);
  color: var(--white);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.76rem;
  padding: 6px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.fleet-card__year-tag svg { width: 13px; height: 13px; color: var(--tiger-light); }
.fleet-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.fleet-card__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--tiger-light);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.fleet-card__name { font-size: 1.35rem; margin-bottom: 14px; }
.spec-list { border-top: 1px dashed var(--line); margin-bottom: 20px; }
.spec-list li {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
}
.spec-list li span:first-child { color: var(--gray); }
.spec-list li span:last-child { font-weight: 600; }
.fleet-card__actions { margin-top: auto; display: flex; gap: 8px; }
.fleet-card__actions .btn { flex: 1; padding: 11px 10px; font-size: 0.78rem; justify-content: center; }

.fleet-cta-banner {
  margin-top: 56px;
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  overflow: hidden;
}
.fleet-cta-banner > div { flex: 1 1 260px; min-width: 0; }
.fleet-cta-banner h3 { font-size: 1.5rem; margin-bottom: 6px; }
.fleet-cta-banner p { color: var(--gray); }
.fleet-cta-banner .btn {
  flex: 0 1 auto;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

@media (max-width: 560px) {
  .fleet-cta-banner { padding: 26px 20px; }
  .fleet-cta-banner .btn { width: 100%; justify-content: center; font-size: 0.84rem; padding: 15px 14px; }
}

/* filter pills (fleet page) */
.fleet-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.fleet-filters button {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--gray);
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
}
.fleet-filters button:hover { border-color: var(--tiger); color: var(--tiger-light); }
.fleet-filters button.is-active { background: var(--tiger); border-color: var(--tiger); color: var(--black); }

/* ============================================
   WHY US
   ============================================ */
.why__grid { display: grid; grid-template-columns: 280px 1fr; gap: 64px; }
.why__stat {
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 28px;
  align-self: start;
}
.why__stat-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 4rem;
  color: var(--tiger);
  line-height: 1;
  margin-bottom: 14px;
}
.why__stat-label { font-family: var(--font-mono); font-size: 0.85rem; color: var(--gray); }
.why__list li { display: flex; align-items: flex-start; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.why__list li:first-child { padding-top: 0; }
.why__list li p { min-width: 0; flex: 1; }
.why__list p { font-size: 1rem; padding-top: 4px; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 8px; }
.step__num { display: block; font-family: var(--font-display); font-weight: 900; font-size: 2.4rem; color: var(--tiger); margin-bottom: 14px; }
.step h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step p { color: var(--gray); }

/* ============================================
   REVIEWS
   ============================================ */
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: var(--black-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; }
.review-card__stars { color: var(--tiger-light); letter-spacing: 0.1em; margin-bottom: 14px; }
.review-card__quote { margin-bottom: 18px; font-size: 1rem; }
.review-card__name { font-family: var(--font-mono); font-size: 0.78rem; color: var(--gray); }

/* ============================================
   LOCATION / CONTACT
   ============================================ */
.location__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.info-list { margin-bottom: 28px; }
.info-list div { display: grid; grid-template-columns: 110px 1fr; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.info-list dt { font-family: var(--font-mono); font-size: 0.78rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; }
.info-list dd { margin: 0; }
.info-list a:hover { color: var(--tiger-light); }
.badge-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 28px; }
.badge-row__text { font-size: 0.85rem; color: var(--gray); margin-right: 10px; }
.location__map iframe { width: 100%; height: 460px; border: 1px solid var(--line); border-radius: var(--radius); filter: grayscale(0.2) invert(0.92) contrast(0.9); }

.contact-channels { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 36px; }
.contact-channel {
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
}
.contact-channel svg { width: 30px; height: 30px; margin: 0 auto 12px; }
.contact-channel__call svg { color: var(--tiger); }
.contact-channel__whatsapp svg { color: var(--whatsapp); }
.contact-channel__viber svg { color: var(--viber); }
.contact-channel h3 { font-size: 1rem; text-transform: none; margin-bottom: 6px; }
.contact-channel p { color: var(--gray); font-size: 0.82rem; margin-bottom: 16px; }

.contact-form { margin-top: 40px; padding-top: 36px; border-top: 1px solid var(--line); }
.contact-form__title { font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--tiger-light); margin-bottom: 8px; }
.contact-form__hint { color: var(--gray); font-size: 0.88rem; margin-bottom: 22px; }
.contact-form__row { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.contact-form__row label { font-family: var(--font-mono); font-size: 0.78rem; color: var(--gray); }
.contact-form__row input, .contact-form__row select, .contact-form__row textarea {
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 11px 13px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  resize: vertical;
}
.contact-form__row input:focus, .contact-form__row select:focus, .contact-form__row textarea:focus { border-color: var(--tiger); }
.contact-form__submit { margin-top: 6px; border: none; }
.contact-form__note { margin-top: 12px; font-size: 0.78rem; color: var(--gray); }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 600;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
}
.faq-item__q:hover { color: var(--tiger-light); }
.faq-item__icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-item__icon::before, .faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--tiger);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.faq-item__icon::before { width: 14px; height: 2px; }
.faq-item__icon::after { width: 2px; height: 14px; transition: transform .2s ease; }
.faq-item.is-open .faq-item__icon::after { transform: translate(-50%,-50%) rotate(90deg) scaleY(0); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  color: var(--gray);
}
.faq-item.is-open .faq-item__a { max-height: 400px; }
.faq-item__a p { padding-bottom: 22px; max-width: 70ch; }

/* ============================================
   TERMS / USLOVI page
   ============================================ */
.terms-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-bottom: 56px; }
.terms-card { background: var(--black-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; }
.terms-card svg { width: 28px; height: 28px; color: var(--tiger); margin-bottom: 14px; }
.terms-card h3 { font-size: 1.1rem; text-transform: none; margin-bottom: 8px; }
.terms-card p { color: var(--gray); font-size: 0.92rem; }
.terms-list { max-width: 760px; }
.terms-list li {
  display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line);
}
.terms-list li::before { content: "→"; color: var(--tiger); font-weight: 700; flex-shrink: 0; }
.terms-list p { color: var(--gray); }

/* ============================================
   ABOUT page
   ============================================ */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
.about-grid p + p { margin-top: 18px; }
.about-grid .section-lede { margin-bottom: 0; }
.about-figures { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-figure { background: var(--black-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 20px; text-align: center; }
.about-figure__num { font-family: var(--font-display); font-weight: 900; font-size: 2.4rem; color: var(--tiger); display: block; }
.about-figure__label { font-family: var(--font-mono); font-size: 0.74rem; color: var(--gray); text-transform: uppercase; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { border-top: 1px solid var(--line); padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 48px; }
.footer__brand { display: flex; align-items: flex-start; gap: 14px; }
.footer__brand img { width: 110px; height: auto; flex-shrink: 0; }
.footer__tagline { margin-top: 4px; color: var(--gray); max-width: 30ch; font-size: 0.92rem; }
.footer__heading { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--tiger-light); margin-bottom: 16px; }
.footer__nav { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a { font-family: var(--font-mono); font-size: 0.85rem; color: var(--gray); }
.footer__nav a:hover { color: var(--tiger-light); }
.footer__contact p { margin-bottom: 10px; font-size: 0.9rem; color: var(--gray); }
.footer__contact a:hover { color: var(--tiger-light); }
.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--gray);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__bottom a:hover { color: var(--tiger-light); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .fleet__grid { grid-template-columns: repeat(2, 1fr); }
  .fleet__grid--full { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: 1fr; }
  .why__stat { max-width: 280px; }
  .how__steps { grid-template-columns: 1fr; gap: 36px; }
  .reviews__grid { grid-template-columns: 1fr; }
  .location__grid { grid-template-columns: 1fr; }
  .contact-channels { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .terms-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--black);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .main-nav.is-open { max-height: 360px; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 8px 28px 20px; }
  .main-nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: flex; }
  .header-actions .btn--plate, .header-actions .icon-btn { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .promo-strip { font-size: 0.72rem; }
}

@media (max-width: 560px) {
  .fleet__grid, .fleet__grid--full { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { padding: 56px 0 48px; }
  .brand__sub { display: none; }
  .about-figures { grid-template-columns: 1fr 1fr; }
  .brand img { width: 90px; }
  .brand__name { font-size: 1.1rem; }
  .footer__brand img { width: 90px; }
}

/* ============================================
   MOBILE FIX PATCH — iPhone Pro audit
   ============================================ */

/* 1. Prevent ANY horizontal scroll on the whole page */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* 2. Hero stripes must not bleed outside hero */
.hero__stripes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* 3. Eyebrow — stop wrapping on narrow screens */
.eyebrow {
  white-space: normal;
  word-break: break-word;
}

/* 4. Hero inner — tighten on mobile so stat-row never gets cut */
@media (max-width: 430px) {
  .hero {
    padding: 44px 0 36px;
    overflow: visible; /* let content breathe, stripes are clipped above */
  }
  .hero__title {
    font-size: clamp(1.85rem, 8.5vw, 2.6rem);
    margin-bottom: 16px;
  }
  .hero__lede {
    font-size: 0.97rem;
    margin-bottom: 24px;
  }
  .hero__actions {
    gap: 10px;
    margin-bottom: 28px;
  }
  /* Full-width buttons in hero on smallest screens */
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .stat-row {
    gap: 8px;
  }
}

/* 5. Ticker — clip the scrolling strip fully */
.ticker {
  overflow: hidden;
  max-width: 100vw;
}

/* 6. Promo strip — prevent text overflow on very narrow */
.promo-strip {
  word-break: break-word;
  hyphens: auto;
}

/* 7. USP cards — ensure icon + text don't clip */
.usp-card {
  min-width: 0;
  word-break: break-word;
}

/* 8. Fleet card names — prevent long names overflowing */
.fleet-card__name {
  word-break: break-word;
  hyphens: auto;
}
.fleet-card__price-tag,
.fleet-card__year-tag {
  white-space: nowrap;
}

/* 9. Fleet card actions — stack on very small screens */
@media (max-width: 400px) {
  .fleet-card__actions {
    flex-direction: column;
  }
  .fleet-card__actions .btn {
    flex: unset;
    width: 100%;
    justify-content: center;
  }
}

/* 10. CTA banner — never overflow */
.fleet-cta-banner {
  overflow: hidden;
  word-break: break-word;
}
.fleet-cta-banner h3 {
  word-break: break-word;
}

/* 11. Why list — prevent plates from ever shrinking */
.why__list li {
  flex-wrap: nowrap;
  gap: 14px;
}
.why__list .tag-plate {
  flex-shrink: 0;
  min-width: 0;
}
@media (max-width: 430px) {
  .why__list li {
    gap: 12px;
    padding: 14px 0;
  }
  .why__list p {
    font-size: 0.92rem;
  }
}

/* 12. How steps — tighter on mobile */
@media (max-width: 430px) {
  .step__num {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .step h3 {
    font-size: 1.1rem;
  }
}

/* 13. Info list (location/contact) — prevent column overflow */
@media (max-width: 430px) {
  .info-list div {
    grid-template-columns: 90px 1fr;
    gap: 10px;
  }
  .info-list dt {
    font-size: 0.7rem;
  }
}

/* 14. Contact channels — padding tighter on mobile */
@media (max-width: 430px) {
  .contact-channel {
    padding: 18px 14px;
  }
}

/* 15. Contact form — inputs full width, no overflow */
.contact-form__row input,
.contact-form__row select,
.contact-form__row textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* 16. Footer bottom — stack on mobile */
@media (max-width: 430px) {
  .footer__bottom {
    flex-direction: column;
    gap: 6px;
    font-size: 0.72rem;
  }
}

/* 17. FAQ question text — no overflow */
.faq-item__q {
  word-break: break-word;
  hyphens: auto;
  text-align: left;
}

/* 18. Section titles — prevent any overflow */
.section-title,
.hero__title {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* 19. Breadcrumb — wrap gracefully */
.breadcrumb {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* 20. Buttons in hero__actions location section — full width on mobile */
@media (max-width: 430px) {
  #location .hero__actions .btn {
    flex: 1 1 calc(50% - 7px);
    min-width: 0;
    justify-content: center;
    font-size: 0.8rem;
    padding: 12px 10px;
  }
}

/* 21. Mobile callbar — safe area + no text overflow */
.mobile-callbar a span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 22. Map iframe — cap height on mobile */
@media (max-width: 560px) {
  .location__map iframe {
    height: 280px;
  }
}

/* 23. Container padding tighter on very small screens */
@media (max-width: 375px) {
  .container {
    padding: 0 18px;
  }
}

/* 24. Fleet filters pills — wrap properly */
.fleet-filters {
  overflow-x: visible;
  flex-wrap: wrap;
}
.fleet-filters button {
  white-space: nowrap;
}

/* 25. Terms grid — ensure text doesn't overflow */
.terms-card, .review-card {
  overflow: hidden;
  word-break: break-word;
}

/* 26. About figures — always 2 col on any size */
.about-figures {
  grid-template-columns: 1fr 1fr;
}
.about-figure__num {
  overflow-wrap: break-word;
}

/* 27. Stat row on hero — ensure full visibility on all phones */
.stat-row {
  position: relative;
  z-index: 2;
}

/* 28. Wrappable button variant for long text labels */
.btn--wrap {
  white-space: normal;
  text-align: center;
  word-break: break-word;
  height: auto;
  line-height: 1.4;
}
@media (max-width: 430px) {
  .btn--wrap {
    display: block;
    width: 100%;
    text-align: center;
  }
}

/* ============================================
   MOBILE POLISH — post-audit fixes
   ============================================ */

/* CTA banner button — never wrap more than 2 lines on any size */
.fleet-cta-banner .btn {
  line-height: 1.3;
}

/* Reviews ghost btn — long text, allow wrap but keep readable */
.btn--ghost {
  line-height: 1.4;
  text-align: center;
}

/* Hero title — tighter on iPhone SE / small phones */
@media (max-width: 375px) {
  .hero__title {
    font-size: clamp(1.7rem, 9vw, 2.2rem);
  }
  .hero__lede {
    font-size: 0.9rem;
  }
  .section-title {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }
}

/* Stat row — stack on smallest phones */
@media (max-width: 375px) {
  .stat-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* promo strip — ensure phone number doesn't clip */
.promo-strip a {
  white-space: nowrap;
}

/* fleet-cta-banner on mobile — stack vertically */
@media (max-width: 560px) {
  .fleet-cta-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 20px;
  }
  .fleet-cta-banner > div {
    flex: none;
  }
  .fleet-cta-banner h3 {
    font-size: 1.2rem;
  }
}

/* Contact form submit — full width on mobile */
@media (max-width: 560px) {
  .contact-form__submit {
    width: 100%;
    justify-content: center;
  }
}

/* Footer brand — wrap text gracefully */
.footer__brand .brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.1rem;
}

/* Hero actions — ensure ghost btn matches others on mobile */
@media (max-width: 430px) {
  .hero__actions a.btn--ghost {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.25);
  }
}

/* location section action buttons — row on small screens */
@media (max-width: 430px) {
  .location__info .hero__actions {
    flex-direction: column;
    gap: 10px;
  }
  .location__info .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* FAQ items — slight reduction in font on mobile */
@media (max-width: 430px) {
  .faq-item__q {
    font-size: 0.96rem;
    gap: 12px;
  }
}

/* about-figures — always 2 cols min */
@media (max-width: 430px) {
  .about-figures {
    gap: 10px;
  }
  .about-figure {
    padding: 18px 14px;
  }
  .about-figure__num {
    font-size: 1.9rem;
  }
}

/* Terms list arrows — shrink gracefully */
@media (max-width: 430px) {
  .terms-list li {
    gap: 10px;
    padding: 14px 0;
  }
  .terms-list li p {
    font-size: 0.88rem;
  }
}

/* Ensure nav brand text never wraps */
.brand__name {
  white-space: nowrap;
}

/* Section lede — slightly smaller on mobile */
@media (max-width: 430px) {
  .section-lede {
    font-size: 0.95rem;
  }
}

/* Ticker: ensure 1px line below doesn't cause layout shift */
.ticker {
  contain: content;
}

/* Info-list address column — allow address to wrap, never clip */
.info-list dd {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* ── Client feedback fixes ── */

/* Why-icon list (plates removed, replaced with emoji icons) */
.why__list li {
  align-items: flex-start;
  gap: 16px;
}
.why-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
  padding-top: 2px;
}

/* Brand name on mobile — wrap gracefully */
.brand__name {
  white-space: normal;
  font-size: 0.95rem;
  line-height: 1.2;
}
@media (min-width: 760px) {
  .brand__name { font-size: 1.05rem; white-space: nowrap; }
}
@media (max-width: 400px) {
  .brand img { width: 72px; }
  .brand__name { font-size: 0.82rem; }
}

/* Remove promo strip space completely */
.promo-strip { display: none !important; }
