/* ==========================================================================
   HOMEPAGE - LIMOUSINES ZT
   ========================================================================== */

/* ── SVG ICON MASK HELPER ──────────────────────────────────────────────── */
.icon {
  display: inline-block;
  width: 1.25em; height: 1.25em;
  background: currentColor;
  flex-shrink: 0;
}
.icon-star       { mask: url('../img/icons/star.svg') no-repeat center / contain; }
.icon-check      { mask: url('../img/icons/check-circle.svg') no-repeat center / contain; }
.icon-shield     { mask: url('../img/icons/shield-alt.svg') no-repeat center / contain; }
.icon-clock      { mask: url('../img/icons/clock.svg') no-repeat center / contain; }
.icon-award      { mask: url('../img/icons/award.svg') no-repeat center / contain; }
.icon-users      { mask: url('../img/icons/users.svg') no-repeat center / contain; }
.icon-car        { mask: url('../img/icons/car.svg') no-repeat center / contain; }
.icon-phone      { mask: url('../img/icons/phone-alt.svg') no-repeat center / contain; }
.icon-calendar   { mask: url('../img/icons/calendar-alt.svg') no-repeat center / contain; }
.icon-heart      { mask: url('../img/icons/heart.svg') no-repeat center / contain; }
.icon-ring       { mask: url('../img/icons/ring.svg') no-repeat center / contain; }
.icon-briefcase  { mask: url('../img/icons/briefcase.svg') no-repeat center / contain; }
.icon-gem        { mask: url('../img/icons/gem.svg') no-repeat center / contain; }
.icon-smile      { mask: url('../img/icons/smile.svg') no-repeat center / contain; }
.icon-headset    { mask: url('../img/icons/headset.svg') no-repeat center / contain; }
.icon-arrow      { mask: url('../img/icons/arrow-right.svg') no-repeat center / contain; }

/* ── UTILITY ───────────────────────────────────────────────────────────── */
.container { max-width: var(--wrap); margin: 0 auto; padding: 0 2rem; }

.eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: .8rem;
  text-align: center;
}
.section-title--white { color: var(--white); }
.section-title--left  { text-align: left; }

.section-title::after {
  content: '';
  display: block;
  width: 44px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: .85rem auto 0;
  transition: width .4s var(--ease);
}
.section-title--left::after { margin-left: 0; }
.section-title--white::after { background: var(--gold-light); }

.section-lead {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto 3.5rem;
  line-height: 1.78;
}

/* ── BUTTONS ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  font-family: var(--font-b);
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .04em;
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all .28s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--btn-primary-bg);
  color: var(--white);
  border-color: var(--btn-primary-bg);
  box-shadow: var(--sh-gold);
}
.btn--primary:hover {
  background: var(--btn-primary-hover);
  border-color: var(--btn-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(74,104,152,.35);
}
.btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--secondary:hover { border-color: var(--gold); color: var(--gold-light); }
.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline-gold:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }

/* legacy aliases */
.btn--cta-primary  { @extend .btn--primary; }
.btn--cta-secondary{ @extend .btn--secondary; }
.btn--cta-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2.2rem; background: var(--btn-primary-bg); color: var(--white);
  border: 2px solid var(--btn-primary-bg); border-radius: var(--r-sm);
  font-weight: 700; font-size: .9rem; letter-spacing: .04em;
  transition: all .28s var(--ease); box-shadow: var(--sh-gold);
}
.btn--cta-primary:hover { background: var(--btn-primary-hover); border-color: var(--btn-primary-hover); transform: translateY(-2px); }
.btn--cta-secondary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2.2rem; background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.4); border-radius: var(--r-sm);
  font-weight: 600; font-size: .9rem; letter-spacing: .04em;
  transition: all .28s var(--ease);
}
.btn--cta-secondary:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ═══════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════ */
.homepage-hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.homepage-hero__background { position: absolute; inset: 0; }
.homepage-hero__image { width: 100%; height: 100%; object-fit: cover; }
.homepage-hero__placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #0d1e4a 0%, #1e3a8a 60%, #12275e 100%);
}
.homepage-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(12,30,78,.72) 0%,
    rgba(18,39,94,.60) 50%,
    rgba(8,18,50,.80) 100%
  );
}
.homepage-hero__content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 860px; width: 100%;
  padding: 0 1.5rem;
}
.homepage-hero__wrapper { animation: fadeUp .9s .1s var(--ease) both; }

.homepage-hero__eyebrow {
  display: inline-block;
  font-size: .7rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 1.2rem;
  padding: .35rem 1rem;
  border: 1px solid rgba(228,201,122,.35);
  border-radius: var(--r-pill);
}

.homepage-hero__title {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 800; color: var(--white);
  line-height: 1.1; letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}
.homepage-hero__title span { color: var(--gold-light); font-style: italic; }

.homepage-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.78);
  font-weight: 300; line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 580px; margin-left: auto; margin-right: auto;
}

.homepage-hero__buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* gold divider line below hero */
.homepage-hero__divider {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; z-index: 3;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, var(--gold-light) 60%, transparent 100%);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════════════
   SERVICES / EVENTS  (cream bg)
   ═══════════════════════════════════════════════════════════════════════ */
.homepage-events { padding: 6rem 2rem; background: var(--cream); }
.homepage-events__wrapper { max-width: var(--wrap); margin: 0 auto; }

.events-intro {
  text-align: center; font-size: 1.05rem; color: var(--text-mid);
  max-width: 620px; margin: 0 auto 3.5rem; line-height: 1.78;
}

/* Events grid - reuses .pcard styles from base.css */
.events-grid { margin-bottom: 2.5rem; }
.event-card--hidden { display: none !important; }
.events-load-more { text-align: center; padding-top: 2rem; }

/* ═══════════════════════════════════════════════════════════════════════
   FLEET  (white bg)
   ═══════════════════════════════════════════════════════════════════════ */
.homepage-fleet { padding: 6rem 2rem; background: var(--white); }
.homepage-fleet__wrapper { max-width: var(--wrap); margin: 0 auto; }

.fleet-tabs {
  display: flex; justify-content: center;
  gap: .5rem; margin-bottom: 3rem; flex-wrap: wrap;
}
.fleet-tab {
  padding: .6rem 1.5rem;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-mid); font-family: var(--font-b);
  font-size: .85rem; font-weight: 500;
  border-radius: var(--r-pill); cursor: pointer;
  transition: all .25s var(--ease);
}
.fleet-tab:hover { border-color: var(--navy); color: var(--navy); }
.fleet-tab--active {
  background: var(--navy); border-color: var(--navy); color: var(--white);
  box-shadow: var(--sh-md);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem; margin-bottom: 2.5rem;
}

.fleet-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s;
}
.fleet-card__actions {
  position: relative;
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}
.fleet-card:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); border-color: transparent; }

.fleet-card__image {
  display: block; width: 100%; aspect-ratio: 16/10;
  overflow: hidden; position: relative; background: var(--warm-gray);
}
.fleet-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.fleet-card:hover .fleet-card__image img { transform: scale(1.06); }
.fleet-card__image-placeholder { width: 100%; height: 100%; background: var(--warm-gray); }

.fleet-card__content { padding: 1.4rem 1.5rem 1.6rem; }
.fleet-card__title { font-family: var(--font-h); font-size: 1.15rem; color: var(--navy); margin-bottom: .5rem; font-weight: 700; }
.fleet-card__specs { display: flex; flex-wrap: wrap; gap: .4rem .85rem; font-size: .8rem; color: var(--text-light); margin-bottom: .65rem; }
.fleet-card__spec--price { color: var(--gold); font-weight: 700; font-size: .875rem; }
.fleet-card__excerpt { font-size: .84rem; color: var(--text-mid); line-height: 1.55; margin-bottom: 1.1rem; }

.fleet-card__badges {
  position: absolute;
  top: .75rem;
  left: .75rem;
  right: .75rem;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  z-index: 2;
  pointer-events: none;
}
.fleet-card__badge {
  position: static;
  background: var(--navy); color: var(--white);
  font-size: .65rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: .25rem .7rem;
  border-radius: var(--r-pill);
}
.fleet-card__btn {
  flex: 1; min-width: 120px; text-align: center;
  padding: .6rem .9rem; border-radius: var(--r-sm);
  font-size: .8rem; font-weight: 700; letter-spacing: .03em;
  transition: background .22s, transform .18s var(--ease-bounce);
}
.fleet-card__btn:hover { transform: translateY(-2px); }
.fleet-card__btn--book {
  background: var(--btn-primary-bg); color: #fff;
}
.fleet-card__btn--book:hover { background: var(--btn-primary-hover); }
.fleet-card__btn--details {
  background: var(--cream); color: var(--navy); border: 1.5px solid var(--border);
}
.fleet-card__btn--details:hover { background: var(--gold-pale); border-color: var(--gold); color: var(--navy); }

.fleet-grid--empty { min-height: auto; }
.fleet-empty { text-align: center; color: var(--text-light); padding: 3rem; grid-column: 1/-1; }
.fleet-empty a { color: var(--gold); }
.fleet-load-more { text-align: center; padding-top: 2.5rem; }

/* MAP layout + region buttons: див. css/interactive-map.css (секція .homepage-map) */

/* ═══════════════════════════════════════════════════════════════════════
   BENEFITS  (navy bg - 3-column even grid)
   ═══════════════════════════════════════════════════════════════════════ */
.homepage-benefits { padding: 6rem 2rem; background: var(--navy); position: relative; overflow: hidden; }
.homepage-benefits::before {
  content: '';
  position: absolute; top: -80px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(156,196,238,.12) 0%, transparent 65%);
  pointer-events: none;
}
.homepage-benefits::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(92,155,218,.1) 0%, transparent 65%);
  pointer-events: none;
}
.homepage-benefits__wrapper { max-width: var(--wrap); margin: 0 auto; position: relative; text-align: center; }

/* Eyebrow на темно-синьому тлі - світлий колір (не «синій на синьому») */
.homepage-benefits .section-eyebrow {
  color: var(--gold-light);
}

/* Force 3-column equal grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem; margin-top: 3rem;
}

.benefit-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(156,196,238,.15);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background .3s, border-color .3s, transform .32s var(--ease-bounce), box-shadow .3s;
}
.benefit-card:hover {
  background: rgba(92,155,218,.14);
  border-color: rgba(156,196,238,.4);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(26,58,126,.25);
}
.benefit-card__icon-wrap {
  width: 64px; height: 64px;
  background: rgba(156,196,238,.15);
  border-radius: 50%; border: 1.5px solid rgba(156,196,238,.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.4rem;
  transition: background .3s, border-color .3s;
  font-size: 1.6rem;
}
.benefit-card__icon-wrap img.benefit-card__icon-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.benefit-card__title { font-family: var(--font-h); font-size: 1.1rem; color: var(--white); margin-bottom: .6rem; }
.benefit-card__desc  { color: rgba(206,226,238,.65); font-size: .875rem; line-height: 1.7; margin: 0; }

/* ═══════════════════════════════════════════════════════════════════════
   PROCESS  - modern numbered timeline (white bg)
   ═══════════════════════════════════════════════════════════════════════ */
.homepage-process { padding: 6rem 2rem; background: var(--white); }
.homepage-process__wrapper { max-width: var(--wrap); margin: 0 auto; text-align: center; }

.process-track {
  display: flex; gap: 0;
  margin: 3.5rem auto 0;
  max-width: 1100px;
  position: relative;
}

/* horizontal connector line */
.process-track::before {
  content: '';
  position: absolute;
  top: 44px; left: 60px; right: 60px; height: 2px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold-light) 50%, var(--navy) 100%);
  opacity: .25;
  z-index: 0;
}

.process-node {
  flex: 1; text-align: center; position: relative; z-index: 1;
  padding: 0 .75rem;
}

/* numbered badge */
.process-node__badge {
  width: 88px; height: 88px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 1.75rem; font-weight: 700; color: #fff;
  margin: 0 auto 1.5rem;
  box-shadow: var(--sh-md);
  position: relative;
  transition: transform .3s var(--ease-bounce), box-shadow .3s;
}
/* outer ring */
.process-node__badge::after {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(92,155,218,.3);
  transition: border-color .3s, inset .3s;
}
.process-node:hover .process-node__badge {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(26,58,126,.28);
}
.process-node:hover .process-node__badge::after {
  border-color: rgba(92,155,218,.6);
  inset: -8px;
}

.process-node__card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.4rem 1.2rem;
  transition: box-shadow .3s, transform .3s var(--ease);
}
a.process-node__card {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
.process-node:hover .process-node__card {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}
.process-node__title { font-family: var(--font-h); font-size: .975rem; color: var(--navy); margin-bottom: .4rem; font-weight: 700; }
.process-node__desc  { font-size: .82rem; color: var(--text-mid); line-height: 1.58; }

/* ═══════════════════════════════════════════════════════════════════════
   REVIEWS / TESTIMONIALS  (cream bg, like limousine-service.com)
   ═══════════════════════════════════════════════════════════════════════ */
.homepage-reviews { padding: 6rem 2rem; background: var(--cream); }
.homepage-reviews__wrapper { max-width: var(--wrap); margin: 0 auto; }

/* top row: title left, overall score right */
.reviews-header {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 2rem;
  margin-bottom: 2.5rem; flex-wrap: wrap;
}

.reviews-score {
  text-align: center; flex-shrink: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 1.5rem 2rem;
  box-shadow: var(--sh-sm);
}
.reviews-score__number {
  display: block; font-family: var(--font-h);
  font-size: 3rem; font-weight: 800; color: var(--navy);
  line-height: 1;
}
.reviews-score__stars { color: var(--gold); font-size: 1.1rem; letter-spacing: .1em; margin: .35rem 0; }
.reviews-score__label { font-size: .75rem; color: var(--text-light); }

/* rating breakdown bars */
.reviews-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem; margin-bottom: 3rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 1.75rem 2rem;
  box-shadow: var(--sh-sm);
}
.rb-item { display: flex; align-items: center; gap: 1rem; }
.rb-item__label { flex: 1; font-size: .85rem; color: var(--text-mid); font-weight: 500; }
.rb-item__bar {
  width: 140px; height: 6px;
  background: var(--warm-gray); border-radius: 3px; overflow: hidden; flex-shrink: 0;
}
.rb-item__fill {
  height: 100%; background: var(--gold); border-radius: 3px;
  transform-origin: left;
  animation: barGrow .8s var(--ease) both;
}
@keyframes barGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.rb-item__score { font-size: .85rem; font-weight: 700; color: var(--navy); width: 28px; flex-shrink: 0; }

/* review cards grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 1.75rem;
  transition: transform .3s var(--ease), box-shadow .3s;
  position: relative; overflow: hidden;
}
.review-card::before {
  content: '\201C';
  position: absolute; top: .5rem; right: 1.25rem;
  font-family: var(--font-h); font-size: 5.5rem;
  color: var(--gold-pale); line-height: 1;
  pointer-events: none;
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }

.review-card__top {
  display: flex; align-items: center; gap: .9rem; margin-bottom: 1rem;
}
.review-card__avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 1.1rem; font-weight: 700;
  flex-shrink: 0; overflow: hidden;
}
.review-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-card__meta { flex: 1; }
.review-card__name { display: block; font-weight: 700; font-size: .9rem; color: var(--navy); }
.review-card__role { display: block; font-size: .75rem; color: var(--text-light); margin-top: .1rem; }

/* source badge */
.review-card__source {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--warm-gray); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; font-weight: 700; letter-spacing: .04em; color: var(--text-mid);
}
.review-card__source img { width: 18px; height: 18px; object-fit: contain; }

.review-card__stars { color: var(--gold); font-size: .95rem; letter-spacing: .1em; margin-bottom: .85rem; }
.review-card__text  { font-size: .88rem; color: var(--text-mid); line-height: 1.7; font-style: italic; margin-bottom: 1rem; }
.review-card__event {
  display: inline-block; font-size: .7rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-pale);
  padding: .2rem .7rem; border-radius: var(--r-pill);
}

.reviews-more { text-align: center; padding-top: 2.5rem; }

/* keep old class for fallback */
.homepage-testimonials { padding: 6rem 2rem; background: var(--cream); }
.homepage-testimonials__wrapper { max-width: var(--wrap); margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 2rem; }
.testimonial-card__rating { color: var(--gold); font-size: .95rem; margin-bottom: .75rem; }
.testimonial-card__text { color: var(--text-mid); font-size: .9rem; font-style: italic; line-height: 1.7; margin-bottom: 1.25rem; }
.testimonial-card__author { font-weight: 700; font-size: .9rem; color: var(--navy); }
.testimonial-card__position { font-size: .78rem; color: var(--text-light); display: block; margin-top: .15rem; }
.no-testimonials { text-align: center; color: var(--text-light); padding: 2rem; grid-column: 1/-1; }

/* ═══════════════════════════════════════════════════════════════════════
   NEWS  (white bg)
   ═══════════════════════════════════════════════════════════════════════ */
.homepage-news { padding: 6rem 2rem; background: var(--white); }
.homepage-news__wrapper { max-width: var(--wrap); margin: 0 auto; }

.news-filters {
  display: flex; flex-wrap: wrap; gap: .4rem;
  margin-bottom: 2.5rem; justify-content: center;
}
.news-filter {
  padding: .45rem 1.25rem;
  background: transparent; border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  font-family: var(--font-b); font-size: .8rem; font-weight: 500;
  color: var(--text-mid); cursor: pointer;
  transition: all .22s var(--ease);
}
.news-filter:hover { border-color: var(--navy); color: var(--navy); }
.news-filter--active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

.news-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: transparent; }

.news-card__image {
  display: block; aspect-ratio: 16/10;
  overflow: hidden; position: relative; background: var(--warm-gray);
}
.news-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.news-card:hover .news-card__image img { transform: scale(1.06); }

.news-card__cat {
  position: absolute; bottom: .6rem; left: .6rem;
  background: var(--navy); color: var(--white);
  font-size: .64rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: .22rem .6rem;
  border-radius: var(--r-pill);
}

.news-card__content { padding: 1.35rem; }
.news-card__date {
  display: block; font-size: .7rem; color: var(--text-light);
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: .5rem;
}
.news-card__title { font-family: var(--font-h); font-size: 1.05rem; color: var(--navy); line-height: 1.35; margin-bottom: .55rem; }
.news-card__title a { color: var(--navy); }
.news-card__title a:hover { color: var(--gold); }
.news-card__excerpt { font-size: .84rem; color: var(--text-mid); line-height: 1.6; margin-bottom: .9rem; }
.news-card__link {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .76rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--gold);
  transition: gap .2s, color .2s;
}
.news-card__link:hover { gap: .6rem; color: var(--navy); }

.news-empty { text-align: center; color: var(--text-light); padding: 2rem; font-style: italic; grid-column: 1/-1; }
.news-more   { text-align: center; padding-top: 2.5rem; }
.no-news     { text-align: center; color: var(--text-light); padding: 2rem; font-style: italic; }

/* ═══════════════════════════════════════════════════════════════════════
   CTA  (navy gradient)
   ═══════════════════════════════════════════════════════════════════════ */
.homepage-cta {
  position: relative; padding: 7rem 2rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0d1e4a 100%);
  text-align: center; overflow: hidden;
}
.homepage-cta::before {
  content: '';
  position: absolute; bottom: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(201,168,76,.18) 0%, transparent 70%);
  pointer-events: none;
}
.homepage-cta::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.homepage-cta__content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.homepage-cta__eyebrow {
  display: inline-block; font-size: .7rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: .9rem;
}
.homepage-cta__title {
  font-family: var(--font-h);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 1rem;
}
.homepage-cta__subtitle { font-size: 1rem; color: rgba(255,255,255,.62); line-height: 1.75; margin-bottom: 2.5rem; }
.homepage-cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════ */
@media(max-width:960px){
  .reviews-header { flex-direction: column; }
  .reviews-score  { align-self: flex-start; }
  .benefits-grid  { grid-template-columns: repeat(2, 1fr); }
  .process-track  { flex-wrap: wrap; }
  .process-node   { flex: 1; min-width: 200px; }
}
@media(max-width:768px){
  .homepage-hero { min-height: 88vh; }
  .homepage-hero__buttons { flex-direction: column; align-items: center; }

  .homepage-events,.homepage-fleet,.homepage-map,
  .homepage-benefits,.homepage-process,.homepage-reviews,
  .homepage-testimonials,.homepage-news,.homepage-cta { padding: 4rem 1.25rem; }

  .events-grid { grid-template-columns: 1fr; }
  .fleet-grid,.reviews-grid,.news-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .benefits-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  .reviews-breakdown { grid-template-columns: 1fr; }
  .process-track { flex-direction: column; align-items: center; gap: 1.5rem; }
  .process-track::before { display: none; }
  .process-node { width: 100%; max-width: 400px; padding: 0; }
  .news-filters { justify-content: flex-start; }
}
@media(max-width:480px){
  #primary-menu a { padding: 0 .55rem; font-size: .72rem; }
  .logo-text { font-size: .95rem; }
}
