/* =========================================================================
   Rentega Car Rental LLC — Design System
   Palette keyed to brand logo: Rentega red (#DB1C28) + charcoal (#171D25)
   on a clean white "showroom" UI. Avoids black/gold luxury cliché.
   Type: Sora (display) + Manrope (body). Mobile-first. [CLAUDE-DESIGN.md §6]
   ========================================================================= */

:root {
  /* Brand palette */
  --bg: #FFFFFF;
  --surface: #F5F6F8;
  --surface-2: #ECEEF2;
  --text: #171D25;
  --muted: #5B6470;
  --primary: #DB1C28;     /* Rentega red */
  --primary-dark: #B5151F;
  --secondary: #171D25;   /* charcoal */
  --secondary-2: #20272F;
  --accent: #1FA463;      /* WhatsApp / success green */
  --accent-dark: #178551;
  --border: #E2E5EA;
  --focus: #2B7FFF;

  /* Type */
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  /* Spacing scale (8px) */
  --s1: 8px; --s2: 16px; --s3: 24px; --s4: 32px;
  --s5: 48px; --s6: 64px; --s7: 96px; --s8: 128px;

  /* Radii & shadows */
  --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(23,29,37,.06), 0 1px 3px rgba(23,29,37,.05);
  --shadow-md: 0 6px 16px rgba(23,29,37,.08), 0 2px 6px rgba(23,29,37,.05);
  --shadow-lg: 0 24px 60px rgba(23,29,37,.16), 0 8px 22px rgba(23,29,37,.10);

  --maxw: 1240px;
  --header-h: 76px;
}

/* ----------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; border-radius: 4px; }

/* --------------------------------------------------------------- layout */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }
.section { padding-block: var(--s7); }
.section--tight { padding-block: var(--s6); }

/* --------------------------------------------------------------- type */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; color: var(--text); text-wrap: balance; }
.display { font-size: clamp(2.4rem, 6.2vw, 4.6rem); font-weight: 800; }
h2.title { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--muted); line-height: 1.55; }
.eyebrow {
  font-family: var(--font-body); font-weight: 700; font-size: .82rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--primary);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--primary); display: inline-block; }
.eyebrow--light { color: #fff; }
.eyebrow--light::before { background: var(--primary); }
.section-head { max-width: 640px; margin-bottom: var(--s5); }
.section-head .lead { margin-top: var(--s2); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  padding: 15px 26px; border-radius: var(--r-pill); min-height: 52px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap; letter-spacing: -0.01em;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(219,28,40,.28); }
.btn--primary:hover { background: var(--primary-dark); box-shadow: 0 12px 26px rgba(219,28,40,.34); }
.btn--whatsapp { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(31,164,99,.26); }
.btn--whatsapp:hover { background: var(--accent-dark); }
.btn--dark { background: var(--secondary); color: #fff; }
.btn--dark:hover { background: var(--secondary-2); }
.btn--ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn--ghost:hover { border-color: var(--text); background: var(--text); color: #fff; }
.btn--ghost-light { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn--ghost-light:hover { background: #fff; color: var(--text); border-color: #fff; }
.btn--lg { padding: 17px 32px; min-height: 58px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* --------------------------------------------------------------- header */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s3); width: 100%; }
.header--solid { background: rgba(255,255,255,.92); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--border); }
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 46px; width: auto; transition: height .3s ease; }
.header--solid .brand img { height: 42px; }
/* On transparent (hero) state, keep logo readable on dark image via white pill */
.brand--pill { background: rgba(255,255,255,.94); padding: 7px 14px; border-radius: var(--r-pill); box-shadow: var(--shadow-sm); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--font-display); font-weight: 500; font-size: .96rem;
  padding: 10px 16px; border-radius: var(--r-pill); color: var(--text);
  transition: background .15s ease, color .15s ease; position: relative;
}
.header:not(.header--solid) .nav a { color: #fff; }
.nav a:hover { background: rgba(23,29,37,.06); }
.header:not(.header--solid) .nav a:hover { background: rgba(255,255,255,.14); }
.header__actions { display: flex; align-items: center; gap: 12px; }
.header__phone {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display);
  font-weight: 600; font-size: .95rem; padding: 8px 6px; color: var(--text);
}
.header:not(.header--solid) .header__phone { color: #fff; }
.header__phone svg { width: 18px; height: 18px; color: var(--primary); }

.burger { display: none; width: 48px; height: 48px; border-radius: var(--r-sm); align-items: center; justify-content: center; }
.burger span { display: block; width: 24px; height: 2px; background: var(--text); position: relative; transition: .25s; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 24px; height: 2px; background: var(--text); transition: .25s; }
.burger span::before { top: -7px; } .burger span::after { top: 7px; }
.header:not(.header--solid) .burger span,
.header:not(.header--solid) .burger span::before,
.header:not(.header--solid) .burger span::after { background: #fff; }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 200; visibility: hidden; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(15,18,23,.5); opacity: 0; transition: opacity .3s ease; }
.drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 360px);
  background: var(--bg); box-shadow: var(--shadow-lg); transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column;
  padding: 22px; overflow-y: auto;
}
.drawer.open { visibility: visible; }
.drawer.open .drawer__scrim { opacity: 1; }
.drawer.open .drawer__panel { transform: translateX(0); }
.drawer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.drawer__top img { height: 40px; }
.drawer__close { width: 44px; height: 44px; border-radius: var(--r-sm); display: grid; place-items: center; font-size: 26px; color: var(--muted); }
.drawer nav { display: flex; flex-direction: column; gap: 2px; margin-top: 10px; border-top: 1px solid var(--border); padding-top: 14px; }
.drawer nav a { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; padding: 14px 8px; border-bottom: 1px solid var(--border); }
.drawer__cta { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }

/* --------------------------------------------------------------- hero */
.hero { position: relative; isolation: isolate; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(15,18,23,.86) 0%, rgba(15,18,23,.55) 42%, rgba(15,18,23,.08) 75%),
    linear-gradient(0deg, rgba(15,18,23,.72) 0%, rgba(15,18,23,0) 45%);
}
.hero__inner { padding-block: 130px 56px; width: 100%; }
.hero__content { max-width: 660px; }
.hero h1 { color: #fff; margin: 18px 0 0; }
.hero h1 .accent { color: #fff; }
.hero__sub { margin-top: 22px; font-size: clamp(1.08rem, 1.7vw, 1.35rem); color: rgba(255,255,255,.86); max-width: 540px; line-height: 1.5; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 30px 44px; margin-top: 46px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.18); }
.hero__stat .n { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.7rem, 3vw, 2.3rem); line-height: 1; letter-spacing: -0.02em; }
.hero__stat .l { font-size: .9rem; color: rgba(255,255,255,.72); margin-top: 7px; letter-spacing: .01em; }

/* --------------------------------------------------------------- trust strip */
.trustbar { background: var(--secondary); color: #fff; }
.trustbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trustbar__item { display: flex; align-items: center; gap: 14px; padding: 26px 22px; }
.trustbar__item + .trustbar__item { border-left: 1px solid rgba(255,255,255,.10); }
.trustbar__icon { width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,.07); display: grid; place-items: center; flex: none; color: var(--primary); }
.trustbar__icon svg { width: 22px; height: 22px; }
.trustbar__t { font-family: var(--font-display); font-weight: 700; font-size: 1rem; line-height: 1.15; }
.trustbar__d { font-size: .82rem; color: rgba(255,255,255,.62); margin-top: 2px; }

/* --------------------------------------------------------------- categories */
.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat {
  position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3/4;
  display: block; color: #fff; box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.cat:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.6,.2,1); }
.cat:hover img { transform: scale(1.07); }
.cat__scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,18,23,.82) 6%, rgba(15,18,23,.18) 56%, rgba(15,18,23,.30) 100%); }
.cat__body { position: absolute; inset: auto 0 0 0; padding: 22px; }
.cat__count { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.78); font-weight: 600; }
.cat__name { font-family: var(--font-display); font-weight: 700; font-size: 1.32rem; margin-top: 4px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.cat__name .arrow { width: 30px; height: 30px; border-radius: 50%; background: var(--primary); display: grid; place-items: center; flex: none; transition: transform .25s ease; }
.cat:hover .cat__name .arrow { transform: translateX(3px); }
.cat__name .arrow svg { width: 16px; height: 16px; }

/* --------------------------------------------------------------- fleet */
.fleet { background: var(--surface); }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: var(--s4); }
.filter {
  font-family: var(--font-display); font-weight: 600; font-size: .94rem;
  padding: 11px 20px; border-radius: var(--r-pill); background: #fff;
  border: 1.5px solid var(--border); color: var(--muted); min-height: 46px;
  transition: all .18s ease;
}
.filter:hover { border-color: var(--text); color: var(--text); }
.filter.active { background: var(--secondary); border-color: var(--secondary); color: #fff; }
.filter .badge { opacity: .6; font-weight: 500; margin-left: 4px; }

.grid-cars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.car {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, opacity .3s ease;
}
.car:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.car.is-hidden { display: none; }
.car__media { position: relative; aspect-ratio: 16/10; background: var(--surface-2); overflow: hidden; }
.car__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.car:hover .car__media img { transform: scale(1.05); }
.car__chip {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .04em;
  text-transform: uppercase; padding: 6px 12px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.94); color: var(--secondary); box-shadow: var(--shadow-sm);
}
.car__chip--super { background: var(--primary); color: #fff; }
.car__year { position: absolute; top: 14px; right: 14px; z-index: 2; font-family: var(--font-display); font-weight: 600; font-size: .8rem; color: #fff; background: rgba(15,18,23,.55); padding: 5px 11px; border-radius: var(--r-pill); backdrop-filter: blur(4px); }
.car__body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.car__name { font-family: var(--font-display); font-weight: 700; font-size: 1.28rem; letter-spacing: -0.01em; }
.car__type { color: var(--muted); font-size: .92rem; margin-top: 2px; }
.car__specs { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 20px; }
.spec { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 600; color: var(--muted); background: var(--surface); border: 1px solid var(--border); padding: 6px 11px; border-radius: var(--r-pill); }
.spec svg { width: 14px; height: 14px; color: var(--muted); }
.car__foot { margin-top: auto; display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.car__quote { background: var(--secondary); color: #fff; border-radius: var(--r-pill); font-family: var(--font-display); font-weight: 600; font-size: .92rem; min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: background .18s ease; }
.car__quote:hover { background: var(--primary); }
.car__wa { width: 48px; min-width: 48px; height: 48px; border-radius: 50%; background: rgba(31,164,99,.10); color: var(--accent); display: grid; place-items: center; transition: all .18s ease; }
.car__wa:hover { background: var(--accent); color: #fff; }
.car__wa svg { width: 21px; height: 21px; }
.fleet__note { margin-top: var(--s4); font-size: .9rem; color: var(--muted); display: flex; align-items: center; gap: 9px; }
.fleet__note svg { width: 17px; height: 17px; color: var(--primary); flex: none; }

/* --------------------------------------------------------------- services */
.svcs { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.svc {
  border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px 28px;
  background: #fff; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex; flex-direction: column; gap: 14px; position: relative; overflow: hidden;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc__num { font-family: var(--font-display); font-weight: 800; font-size: .9rem; color: var(--primary); letter-spacing: .04em; }
.svc__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--surface); display: grid; place-items: center; color: var(--secondary); }
.svc__icon svg { width: 26px; height: 26px; }
.svc h3 { font-size: 1.25rem; }
.svc p { color: var(--muted); font-size: .96rem; line-height: 1.55; }
.svc--wide { grid-column: span 6; }
.svc--feature { grid-column: span 6; background: var(--secondary); color: #fff; border: none; }
.svc--feature h3, .svc--feature .svc__num { color: #fff; }
.svc--feature .svc__num { color: var(--primary); }
.svc--feature p { color: rgba(255,255,255,.72); }
.svc--feature .svc__icon { background: rgba(255,255,255,.08); color: var(--primary); }
.svc--third { grid-column: span 4; }

/* --------------------------------------------------------------- about */
.about__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.about__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__badge {
  position: absolute; left: 22px; bottom: 22px; background: rgba(255,255,255,.95);
  backdrop-filter: blur(6px); border-radius: var(--r-md); padding: 18px 22px; box-shadow: var(--shadow-md);
}
.about__badge .n { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; line-height: 1; color: var(--primary); }
.about__badge .l { font-size: .82rem; color: var(--muted); font-weight: 600; margin-top: 4px; }
.about__points { display: grid; gap: 18px; margin-top: var(--s4); }
.about__point { display: flex; gap: 15px; align-items: flex-start; }
.about__point .tick { width: 30px; height: 30px; border-radius: 50%; background: rgba(219,28,40,.10); color: var(--primary); display: grid; place-items: center; flex: none; margin-top: 2px; }
.about__point .tick svg { width: 16px; height: 16px; }
.about__point h4 { font-size: 1.06rem; font-family: var(--font-display); }
.about__point p { color: var(--muted); font-size: .94rem; margin-top: 2px; }

/* --------------------------------------------------------------- contact / CTA */
.contact { background: var(--surface); }
.contact__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; }
.card-form { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: var(--s3); }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 700; font-family: var(--font-display); color: var(--text); }
.field label .req { color: var(--primary); }
.field input, .field select, .field textarea {
  background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--r-sm);
  padding: 13px 15px; font-size: .98rem; transition: border-color .15s ease, background .15s ease; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); background: #fff; }
.field textarea { resize: vertical; min-height: 96px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--primary); background: #fdf3f4; }
.field__err { font-size: .78rem; color: var(--primary); font-weight: 600; display: none; }
.field.invalid .field__err { display: block; }
.form-foot { margin-top: var(--s3); }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 14px; text-align: center; line-height: 1.5; }
.form-success { display: none; flex-direction: column; align-items: center; text-align: center; gap: 14px; padding: 30px 10px; }
.form-success.show { display: flex; }
.form-success .ok { width: 64px; height: 64px; border-radius: 50%; background: rgba(31,164,99,.12); color: var(--accent); display: grid; place-items: center; }
.form-success .ok svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 1.5rem; }

.contact__info { display: flex; flex-direction: column; gap: 14px; }
.info-row { display: flex; gap: 15px; align-items: flex-start; padding: 18px; background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); transition: border-color .18s ease, box-shadow .18s ease; }
.info-row:hover { box-shadow: var(--shadow-sm); }
a.info-row:hover { border-color: var(--primary); }
.info-row .ic { width: 44px; height: 44px; border-radius: 11px; background: var(--surface); color: var(--primary); display: grid; place-items: center; flex: none; }
.info-row .ic svg { width: 21px; height: 21px; }
.info-row .k { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; }
.info-row .v { font-family: var(--font-display); font-weight: 600; font-size: 1.04rem; margin-top: 2px; word-break: break-word; }
.info-row .v small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .85rem; color: var(--muted); }

.map-ph {
  margin-top: 4px; border-radius: var(--r-md); border: 1.5px dashed var(--border);
  background:
    repeating-linear-gradient(45deg, #fff, #fff 12px, var(--surface) 12px, var(--surface) 24px);
  min-height: 200px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; padding: 24px;
}
.map-ph svg { width: 30px; height: 30px; color: var(--muted); }
.map-ph .t { font-family: 'Sora', monospace; font-weight: 600; font-size: .92rem; color: var(--text); }
.map-ph .d { font-size: .82rem; color: var(--muted); }

/* --------------------------------------------------------------- band CTA */
.band { background: var(--secondary); color: #fff; position: relative; overflow: hidden; }
.band__r { position: absolute; right: -60px; top: 50%; transform: translateY(-50%); font-family: var(--font-display); font-weight: 800; font-size: 30rem; line-height: 1; color: rgba(255,255,255,.03); pointer-events: none; }
.band__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.band h2 { color: #fff; }
.band p { color: rgba(255,255,255,.75); margin-top: 12px; max-width: 480px; }
.band__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* --------------------------------------------------------------- footer */
.footer { background: #0F1318; color: rgba(255,255,255,.66); padding-block: var(--s6) var(--s4); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer__brand img { height: 52px; background: #fff; padding: 9px 14px; border-radius: var(--r-sm); }
.footer__brand p { margin-top: 18px; font-size: .92rem; line-height: 1.6; max-width: 300px; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-body); font-weight: 700; }
.footer ul { display: flex; flex-direction: column; gap: 11px; }
.footer ul a { font-size: .94rem; transition: color .15s ease; }
.footer ul a:hover { color: #fff; }
.footer__contact li { font-size: .92rem; line-height: 1.5; display: flex; gap: 10px; align-items: flex-start; }
.footer__contact svg { width: 17px; height: 17px; color: var(--primary); flex: none; margin-top: 3px; }
.footer__socials { display: flex; gap: 10px; margin-top: 20px; }
.footer__socials a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.07); display: grid; place-items: center; transition: background .18s ease; }
.footer__socials a:hover { background: var(--primary); color: #fff; }
.footer__socials svg { width: 19px; height: 19px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: var(--s5); padding-top: var(--s3); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .84rem; }

/* --------------------------------------------------------------- mobile action bar */
.actionbar { position: fixed; inset: auto 0 0 0; z-index: 90; display: none; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border-top: 1px solid var(--border); padding: 9px 12px calc(9px + env(safe-area-inset-bottom)); grid-template-columns: 1fr 1fr 1.2fr; gap: 9px; }
.actionbar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: 9px 4px; border-radius: var(--r-sm); font-family: var(--font-display); font-weight: 600; font-size: .76rem; min-height: 54px; }
.actionbar svg { width: 21px; height: 21px; }
.actionbar .ab-call { background: var(--surface); color: var(--text); }
.actionbar .ab-wa { background: var(--accent); color: #fff; }
.actionbar .ab-quote { background: var(--primary); color: #fff; }

/* --------------------------------------------------------------- reveal anim */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; } .reveal.d2 { transition-delay: .14s; } .reveal.d3 { transition-delay: .21s; } .reveal.d4 { transition-delay: .28s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1080px) {
  .cats { grid-template-columns: repeat(2, 1fr); }
  .grid-cars { grid-template-columns: repeat(2, 1fr); }
  .about__grid { gap: 36px; }
}
@media (max-width: 920px) {
  .nav, .header__phone { display: none; }
  .burger { display: flex; }
  .trustbar__grid { grid-template-columns: repeat(2, 1fr); }
  .trustbar__item:nth-child(2) { border-left: none; }
  .trustbar__item:nth-child(3), .trustbar__item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.10); }
  .trustbar__item:nth-child(3) { border-left: none; }
  .svcs { grid-template-columns: 1fr 1fr; }
  .svc--wide, .svc--feature, .svc--third { grid-column: span 1; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { aspect-ratio: 16/11; max-height: 460px; order: -1; }
  .contact__grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  :root { --header-h: 66px; }
  .section { padding-block: var(--s6); }
  .actionbar { display: grid; }
  body { padding-bottom: 74px; }
  .hero { min-height: 92svh; }
  .hero__inner { padding-block: 110px 40px; }
  .hero__stats { gap: 20px 30px; }
  .band__inner { flex-direction: column; align-items: flex-start; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .wrap { padding-inline: 18px; }
  .cats { grid-template-columns: 1fr; }
  .cat { aspect-ratio: 16/10; }
  .grid-cars { grid-template-columns: 1fr; gap: 18px; }
  .svcs { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .card-form { padding: 24px 20px; }
  .footer__grid { grid-template-columns: 1fr; }
  .trustbar__item { padding: 18px 14px; }
  .hero__stat .n { font-size: 1.8rem; }
}
@media (max-width: 400px) {
  .hero__cta .btn { width: 100%; }
}
