/* ==========================================================================
   WW RENTAL — main stylesheet
   Design language: "spec sheet" industrial — dark graphite base, gold + blue
   accents, corner-bracket frames and monospace spec-codes borrowed from
   equipment datasheets / technical drawings. See README for editing notes.
   ========================================================================== */

/* ---------- 1. Design tokens ------------------------------------------- */
:root{
  /* Colors */
  --c-black:        #0a0a0c;   /* primary background — near-black graphite */
  --c-black-soft:   #131418;   /* secondary dark section background */
  --c-black-elev:   #1a1c21;   /* elevated cards on dark bg */
  --c-white:        #f5f4f0;   /* primary text on dark / light bg fill */
  --c-white-soft:   #ffffff;
  --c-ink:          #14151a;   /* text on light sections */
  --c-muted:        #9a9ca6;   /* secondary text on dark */
  --c-muted-ink:    #5b5d68;   /* secondary text on light */
  --c-line:         rgba(245,244,240,0.12);
  --c-line-strong:  rgba(245,244,240,0.22);

  --c-gold:         #c9a24b;
  --c-gold-light:   #e8c877;
  --c-gold-dim:     rgba(201,162,75,0.35);

  --c-blue:         #3f7ee8;
  --c-blue-light:   #6fa1f2;
  --c-blue-dim:     rgba(63,126,232,0.35);

  /* Type */
  --f-display: 'Oswald', 'Arial Narrow', sans-serif;
  --f-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono:    'IBM Plex Mono', 'Courier New', monospace;

  /* Layout */
  --wrap: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-pad: clamp(64px, 10vw, 128px);
  --radius: 2px; /* deliberately sharp — industrial, not soft/rounded */

  /* Motion */
  --ease: cubic-bezier(.16,.84,.44,1);
}

/* ---------- 2. Reset ----------------------------------------------------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--c-black);
  color: var(--c-white);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{ margin: 0; font-family: var(--f-display); font-weight: 600; letter-spacing: .01em; }
p{ margin: 0; }
button{ font-family: inherit; cursor: pointer; }
input, textarea, select{ font-family: inherit; font-size: 1rem; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

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

.wrap{
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section{ padding-block: var(--section-pad); position: relative; }
.section--dark{ background: var(--c-black); }
.section--soft{ background: var(--c-black-soft); }
.section--light{ background: var(--c-white); color: var(--c-ink); }

/* Eyebrow / spec-code label — the recurring "datasheet" motif */
.eyebrow{
  font-family: var(--f-mono);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-gold);
  display: inline-flex;
  align-items: center;
  gap: .6em;
  margin-bottom: 1.1rem;
}
.eyebrow::before{
  content: '';
  width: 28px; height: 1px;
  background: var(--c-gold);
  display: inline-block;
}
.section--light .eyebrow{ color: var(--c-blue); }
.section--light .eyebrow::before{ background: var(--c-blue); }

.h2{
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  text-transform: uppercase;
  line-height: 1.12;
}
.h2 em{
  font-style: normal;
  color: var(--c-gold);
}
.section--light .h2 em{ color: var(--c-blue); }

.lede{
  font-size: 1.05rem;
  color: var(--c-muted);
  max-width: 640px;
  margin-top: 1.1rem;
}
.section--light .lede{ color: var(--c-muted-ink); }

.section-head{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  flex-wrap: wrap;
}

/* ---------- 3. Buttons --------------------------------------------------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--f-mono);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 1em 1.7em;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn--gold{
  background: var(--c-gold);
  color: var(--c-black);
}
.btn--gold:hover{ background: var(--c-gold-light); }
.btn--ghost{
  border-color: var(--c-line-strong);
  color: var(--c-white);
  background: transparent;
}
.btn--ghost:hover{ border-color: var(--c-gold); color: var(--c-gold); }
.btn--blue{
  background: var(--c-blue);
  color: var(--c-white);
}
.btn--blue:hover{ background: var(--c-blue-light); }
.section--light .btn--ghost{ color: var(--c-ink); border-color: rgba(20,21,26,.25); }
.section--light .btn--ghost:hover{ border-color: var(--c-blue); color: var(--c-blue); }

.btn-row{ display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- 4. Corner-bracket frame — signature device ------------------
   Used on hero image + category cards. Reads as a technical target /
   measurement frame, echoing spec-sheet callouts on machine drawings. */
.bracket{ position: relative; }
.bracket::before,
.bracket::after,
.bracket .bracket-tr,
.bracket .bracket-bl{
  content: '';
  position: absolute;
  width: 26px; height: 26px;
  border: 2px solid var(--c-gold);
  opacity: .85;
  transition: width .4s var(--ease), height .4s var(--ease);
  pointer-events: none;
}
.bracket::before{ top: -1px; left: -1px; border-right: none; border-bottom: none; }
.bracket::after{ bottom: -1px; right: -1px; border-left: none; border-top: none; }
.bracket .bracket-tr{ top: -1px; right: -1px; border-left: none; border-bottom: none; }
.bracket .bracket-bl{ bottom: -1px; left: -1px; border-right: none; border-top: none; }
.bracket:hover::before, .bracket:hover::after,
.bracket:hover .bracket-tr, .bracket:hover .bracket-bl{ width: 36px; height: 36px; }

/* ---------- 5. Navbar ----------------------------------------------------- */
.navbar{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: 1.3rem;
  transition: padding .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.navbar.is-scrolled{
  padding-block: .85rem;
  background: rgba(10,10,12,.92);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--c-line);
}
.navbar .wrap{ display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.logo{ font-family: var(--f-display); font-size: 1.35rem; letter-spacing: .04em; display: flex; align-items: center; gap: .55rem; }
.logo-mark{ width: 11px; height: 11px; background: var(--c-gold); display: inline-block; }
.logo b{ font-weight: 700; }
.logo span{ color: var(--c-gold); font-weight: 700; }

.nav-links{ display: flex; align-items: center; gap: 2.2rem; }
.nav-links a{
  font-size: .92rem;
  color: var(--c-white);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after{
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--c-gold); transition: width .3s var(--ease);
}
.nav-links a:hover::after{ width: 100%; }

.nav-cta{ display: none; }
@media (min-width: 861px){ .nav-cta{ display: inline-flex; } }

.nav-toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; padding: 6px;
}
.nav-toggle span{ width: 24px; height: 2px; background: var(--c-white); transition: transform .3s ease, opacity .3s ease; }

@media (max-width: 860px){
  .nav-links{
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw); height: 100vh;
    background: var(--c-black-soft);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.8rem; padding: 2rem var(--gutter);
    transform: translateX(100%); transition: transform .4s var(--ease);
    border-left: 1px solid var(--c-line);
  }
  .nav-links.is-open{ transform: translateX(0); }
  .nav-links a{ font-size: 1.15rem; }
  .nav-cta{ display: inline-flex; margin-top: .5rem; }
  .nav-toggle{ display: flex; z-index: 110; }
  .nav-toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2){ opacity: 0; }
  .nav-toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- 6. Hero -------------------------------------------------------- */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  overflow: hidden;
}
.hero-bg{
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(6,7,9,.35) 0%, rgba(6,7,9,.55) 55%, rgba(6,7,9,.97) 100%),
    linear-gradient(90deg, rgba(6,7,9,.94) 0%, rgba(6,7,9,.6) 42%, rgba(6,7,9,.15) 75%),
    url('../img/hero-telehandler.jpg');
  background-size: cover;
  background-position: center 32%;
}
.hero-grid{
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--c-line) 1px, transparent 1px), linear-gradient(90deg, var(--c-line) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .15;
  mask-image: linear-gradient(180deg, black, transparent 75%);
}
.hero-content{ position: relative; z-index: 2; max-width: 760px; }
.hero-code{
  font-family: var(--f-mono); font-size: .8rem; letter-spacing: .18em; color: var(--c-gold);
  text-transform: uppercase; margin-bottom: 1.4rem; display: flex; align-items: center; gap: .7em;
}
.hero-code::before{ content: ''; width: 8px; height: 8px; background: var(--c-blue); animation: blink 2.2s ease-in-out infinite; }
@keyframes blink{ 0%,100%{ opacity: 1;} 50%{ opacity: .25; } }

.hero h1{
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  text-transform: uppercase;
  line-height: 1.05;
  text-wrap: balance;
}
.hero h1 em{ font-style: normal; color: var(--c-gold); }
.hero .lede{ color: var(--c-white); opacity: .82; font-size: 1.12rem; max-width: 560px; }

.hero .btn-row{ margin-top: 2.4rem; }

.hero-badges{
  margin-top: 3rem;
  display: flex; flex-wrap: wrap; gap: 1.8rem 2.6rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--c-line);
}
.hero-badge{ display: flex; align-items: center; gap: .7em; font-family: var(--f-mono); font-size: .82rem; letter-spacing: .04em; color: var(--c-white); }
.hero-badge svg{ width: 18px; height: 18px; color: var(--c-blue); flex-shrink: 0; }

.hero-scroll{
  position: absolute; right: var(--gutter); bottom: 2.4rem; z-index: 2;
  display: none; flex-direction: column; align-items: center; gap: .6rem;
  font-family: var(--f-mono); font-size: .7rem; letter-spacing: .2em; color: var(--c-muted);
}
.hero-scroll i{ width: 1px; height: 42px; background: linear-gradient(var(--c-gold), transparent); display: block; }
@media (min-width: 1000px){ .hero-scroll{ display: flex; } }

/* ---------- 7. Offer cards ------------------------------------------------ */
.offer-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
}
@media (max-width: 980px){ .offer-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .offer-grid{ grid-template-columns: 1fr; } }

.offer-card{
  background: var(--c-black-soft);
  display: flex; flex-direction: column;
  transition: background .3s ease;
}
.offer-card:hover{ background: var(--c-black-elev); }
.offer-media{
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 14px 14px 0;
}
.offer-media img{ width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.offer-card:hover .offer-media img{ transform: scale(1.07); }
.offer-tag{
  position: absolute; top: 10px; left: 10px;
  font-family: var(--f-mono); font-size: .68rem; letter-spacing: .1em;
  background: rgba(10,10,12,.78); color: var(--c-gold);
  padding: .35em .6em; border: 1px solid var(--c-gold-dim);
}
.offer-body{ padding: 1.6rem 1.5rem 1.9rem; display: flex; flex-direction: column; gap: .8rem; flex: 1; }
.offer-body h3{ font-size: 1.18rem; text-transform: uppercase; letter-spacing: .01em; }
.offer-body p{ color: var(--c-muted); font-size: .93rem; flex: 1; }
.offer-more{
  margin-top: .4rem;
  font-family: var(--f-mono); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--c-blue-light);
  display: inline-flex; align-items: center; gap: .5em;
}
.offer-more svg{ width: 14px; height: 14px; transition: transform .3s var(--ease); }
.offer-card:hover .offer-more svg{ transform: translateX(4px); }

/* ---------- 8. Feature strip (dark, "na czym polegać") ------------------- */
.feature-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}
@media (max-width: 900px){ .feature-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .feature-grid{ grid-template-columns: 1fr; } }

.feature{ border-top: 1px solid var(--c-line-strong); padding-top: 1.6rem; }
.feature svg{ width: 30px; height: 30px; color: var(--c-gold); margin-bottom: 1.4rem; }
.feature h3{ font-size: 1.05rem; text-transform: uppercase; margin-bottom: .6rem; letter-spacing: .01em; }
.feature p{ color: var(--c-muted); font-size: .92rem; }

/* ---------- 9. China machines split section ------------------------------- */
.split{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 900px){ .split{ grid-template-columns: 1fr; } }
.split-media{ position: relative; }
.split-media img{ width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.split-media .measure{
  position: absolute; left: 14px; right: 14px; bottom: -1px;
  height: 1px; background: repeating-linear-gradient(90deg, var(--c-gold) 0 6px, transparent 6px 12px);
  display: none;
}
@media (min-width: 700px){ .split-media .measure{ display: block; } }
.split-text .h2{ margin-bottom: 0; }
.split-text .lede{ max-width: none; }
.split-text .btn-row{ margin-top: 2.2rem; }
.spec-list{ margin-top: 1.8rem; display: grid; gap: .7rem; }
.spec-list li{
  font-family: var(--f-mono); font-size: .84rem; color: var(--c-muted);
  display: flex; gap: .8em; align-items: baseline;
}
.spec-list li::before{ content: '—'; color: var(--c-gold); }

.machine-specs{ margin-top: 1.8rem; display: grid; gap: .6rem; max-width: 420px; }
.machine-specs li{
  font-family: var(--f-mono); font-size: .84rem; color: var(--c-white);
  display: flex; justify-content: space-between; gap: 1rem;
  padding-bottom: .6rem; border-bottom: 1px solid var(--c-line);
}
.machine-specs li strong{ color: var(--c-gold); font-weight: 500; }
.section--light .machine-specs li{ color: var(--c-ink); border-color: rgba(20,21,26,.12); }

/* ---------- 10. Stats strip ------------------------------------------------ */
.stats{
  background: var(--c-black-elev);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.stats-grid{
  display: grid; grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 760px){ .stats-grid{ grid-template-columns: repeat(2, 1fr); } }
.stat{
  padding: clamp(2rem, 4vw, 3.2rem) var(--gutter);
  border-left: 1px solid var(--c-line);
  text-align: left;
}
.stat:first-child{ border-left: none; }
.stat .stat-num{
  font-family: var(--f-mono); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--c-gold); display: block;
}
.stat .stat-label{ margin-top: .4rem; font-size: .88rem; color: var(--c-muted); text-transform: uppercase; letter-spacing: .04em; }

/* ---------- 11. Process steps ---------------------------------------------- */
.steps{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--c-line);
  border: 1px solid var(--c-line);
}
@media (max-width: 820px){ .steps{ grid-template-columns: 1fr; } }
.step{ background: var(--c-black); padding: 2.4rem 2rem; position: relative; }
.step-num{ font-family: var(--f-mono); font-size: .82rem; color: var(--c-blue-light); letter-spacing: .1em; }
.step h3{ margin-top: 1.1rem; font-size: 1.15rem; text-transform: uppercase; }
.step p{ margin-top: .7rem; color: var(--c-muted); font-size: .92rem; }
.step::after{
  content: ''; position: absolute; left: 2rem; right: 2rem; bottom: 0; height: 2px;
  background: var(--c-gold); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.step:hover::after{ transform: scaleX(1); }

/* ---------- 12. CTA band --------------------------------------------------- */
.cta-band{
  background: linear-gradient(120deg, var(--c-black-soft) 0%, var(--c-black) 100%);
  border-top: 1px solid var(--c-gold-dim);
  border-bottom: 1px solid var(--c-gold-dim);
  padding-block: clamp(56px, 9vw, 96px);
  position: relative;
  overflow: hidden;
}
.cta-band::before{
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(201,162,75,.06) 0 2px, transparent 2px 22px);
  pointer-events: none;
}
.cta-inner{ position: relative; display: flex; justify-content: space-between; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.cta-inner h2{ font-size: clamp(1.7rem, 3.2vw, 2.4rem); text-transform: uppercase; max-width: 560px; }
.cta-inner p{ color: var(--c-muted); margin-top: .8rem; max-width: 480px; }

/* ---------- 13. Contact ----------------------------------------------------- */
.contact-grid{
  display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem);
}
@media (max-width: 900px){ .contact-grid{ grid-template-columns: 1fr; } }

.contact-info{ display: flex; flex-direction: column; gap: 1.8rem; }
.contact-item{ display: flex; gap: 1rem; align-items: flex-start; }
.contact-item svg{ width: 20px; height: 20px; color: var(--c-gold); margin-top: 3px; flex-shrink: 0; }
.contact-item h4{ font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--c-muted); font-family: var(--f-mono); font-weight: 500; }
.contact-item p, .contact-item a{ margin-top: .3rem; font-size: 1.02rem; }
.contact-item a:hover{ color: var(--c-gold); }

.form-card{
  background: var(--c-black-soft);
  border: 1px solid var(--c-line);
  padding: clamp(1.6rem, 3vw, 2.6rem);
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px){ .form-row{ grid-template-columns: 1fr; } }
.field{ margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: .5rem; }
.field label{ font-family: var(--f-mono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--c-muted); }
.field input, .field select, .field textarea{
  background: var(--c-black);
  border: 1px solid var(--c-line-strong);
  color: var(--c-white);
  padding: .85em 1em;
  transition: border-color .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color: var(--c-gold); outline: none; }
.field textarea{ resize: vertical; min-height: 110px; }
.form-note{ font-size: .78rem; color: var(--c-muted); margin-top: .3rem; }
.form-msg{ margin-top: 1rem; font-family: var(--f-mono); font-size: .85rem; color: var(--c-blue-light); display: none; }
.form-msg.is-visible{ display: block; }

/* ---------- 14. Footer ------------------------------------------------------ */
.footer{
  background: #060607;
  border-top: 1px solid var(--c-line);
  padding-block: clamp(48px, 7vw, 84px) 2rem;
}
.footer-grid{
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid var(--c-line);
}
@media (max-width: 760px){ .footer-grid{ grid-template-columns: 1fr; gap: 2.2rem; } }
.footer-about p{ margin-top: 1rem; color: var(--c-muted); font-size: .92rem; max-width: 340px; }
.footer h5{ font-family: var(--f-mono); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 1.2rem; }
.footer-links{ display: grid; gap: .8rem; }
.footer-links a:hover{ color: var(--c-gold); }
.footer-bottom{
  padding-top: 1.6rem; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap; font-size: .82rem; color: var(--c-muted);
}
.footer-bottom a:hover{ color: var(--c-gold); }

/* ---------- 15. Scroll-reveal utility --------------------------------------- */
[data-reveal]{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-visible{ opacity: 1; transform: translateY(0); }

/* ==========================================================================
   16. MULTI-PAGE ADDITIONS
   ========================================================================== */

/* Active nav link on current page */
.nav-links a.is-active{ color: var(--c-gold); }
.nav-links a.is-active::after{ width: 100%; }

/* ---------- Page hero (used on subpages instead of full home hero) ------- */
.page-hero{
  position: relative;
  padding: clamp(7.5rem, 14vw, 10.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  overflow: hidden;
}
.page-hero-bg{
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,9,11,.78) 0%, rgba(8,9,11,.92) 100%);
}
.page-hero-content{ position: relative; z-index: 2; max-width: 720px; }
.page-hero h1{
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  text-transform: uppercase;
  line-height: 1.1;
}
.page-hero h1 em{ font-style: normal; color: var(--c-gold); }
.page-hero .lede{ color: var(--c-white); opacity: .82; }
.breadcrumb{
  font-family: var(--f-mono); font-size: .76rem; letter-spacing: .08em; color: var(--c-muted);
  text-transform: uppercase; margin-bottom: 1rem; display: flex; gap: .5em; align-items: center;
}
.breadcrumb a:hover{ color: var(--c-gold); }

/* ---------- Floating action buttons (call / whatsapp) --------------------- */
.fab-stack{
  position: fixed; right: clamp(14px, 3vw, 26px); bottom: clamp(14px, 3vw, 26px);
  z-index: 90; display: flex; flex-direction: column; gap: .8rem;
}
.fab{
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-white); box-shadow: 0 8px 24px rgba(0,0,0,.4);
  transition: transform .3s var(--ease);
}
.fab:hover{ transform: translateY(-3px) scale(1.05); }
.fab svg{ width: 24px; height: 24px; }
.fab--call{ background: var(--c-gold); color: var(--c-black); }
.fab--whatsapp{ background: #25D366; }
.fab-label{
  position: absolute; right: 64px; top: 50%; transform: translateY(-50%);
  background: var(--c-black-elev); border: 1px solid var(--c-line);
  padding: .5em .8em; font-family: var(--f-mono); font-size: .72rem; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.fab:hover .fab-label{ opacity: 1; }
@media (max-width: 560px){ .fab-label{ display: none; } }

/* ---------- Cookie banner -------------------------------------------------- */
.cookie-banner{
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: var(--c-black-elev);
  border-top: 1px solid var(--c-gold-dim);
  padding: 1.2rem var(--gutter);
  display: none;
}
.cookie-banner.is-visible{ display: block; }
.cookie-inner{
  max-width: var(--wrap); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1.6rem; flex-wrap: wrap;
}
.cookie-inner p{ font-size: .88rem; color: var(--c-muted); max-width: 640px; }
.cookie-inner a{ color: var(--c-gold); }
.cookie-actions{ display: flex; gap: .8rem; flex-shrink: 0; }
.btn--sm{ padding: .75em 1.3em; font-size: .76rem; }

/* ---------- FAQ accordion --------------------------------------------------- */
.faq-list{ max-width: 820px; }
.faq-item{ border-bottom: 1px solid var(--c-line); }
.faq-q{
  width: 100%; background: none; border: none; color: var(--c-white);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.5rem 0; text-align: left; font-family: var(--f-display); font-size: 1.05rem; text-transform: uppercase;
}
.faq-q svg{ width: 18px; height: 18px; color: var(--c-gold); flex-shrink: 0; transition: transform .3s var(--ease); }
.faq-item.is-open .faq-q svg{ transform: rotate(45deg); }
.faq-a{
  max-height: 0; overflow: hidden; transition: max-height .35s var(--ease);
}
.faq-a p{ padding-bottom: 1.5rem; color: var(--c-muted); font-size: .95rem; max-width: 680px; }

/* ---------- Pricing calculator ---------------------------------------------- */
.calc-card{
  background: var(--c-black-soft); border: 1px solid var(--c-line);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  max-width: 640px;
}
.calc-result{
  margin-top: 1.6rem; padding: 1.4rem; background: var(--c-black-elev);
  border-left: 2px solid var(--c-gold); display: none;
}
.calc-result.is-visible{ display: block; }
.calc-result .calc-total{ font-family: var(--f-mono); font-size: 1.7rem; color: var(--c-gold); }
.calc-result p{ font-size: .82rem; color: var(--c-muted); margin-top: .5rem; }

/* ---------- Realizacje gallery ---------------------------------------------- */
.gallery-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 900px){ .gallery-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .gallery-grid{ grid-template-columns: 1fr; } }
.gallery-item{ position: relative; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img{ width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item:hover img{ transform: scale(1.08); }
.gallery-caption{
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(6,7,9,.92), transparent);
  padding: 1.4rem 1.2rem .9rem;
}
.gallery-caption h4{ font-size: .95rem; text-transform: uppercase; }
.gallery-caption span{ font-family: var(--f-mono); font-size: .72rem; color: var(--c-gold); }

/* ---------- Blog ------------------------------------------------------------- */
.blog-toc{
  display: flex; flex-wrap: wrap; gap: .8rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.blog-toc a{
  font-family: var(--f-mono); font-size: .78rem; text-transform: uppercase; letter-spacing: .05em;
  border: 1px solid var(--c-line-strong); padding: .7em 1.1em;
}
.blog-toc a:hover{ border-color: var(--c-gold); color: var(--c-gold); }
.blog-post{ max-width: 760px; padding-block: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--c-line); }
.blog-post:first-of-type{ border-top: none; padding-top: 0; }
.blog-meta{ font-family: var(--f-mono); font-size: .76rem; color: var(--c-gold); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .8rem; }
.blog-post h2{ font-size: clamp(1.4rem, 2.6vw, 1.9rem); text-transform: none; line-height: 1.2; }
.blog-post p{ margin-top: 1.1rem; color: var(--c-muted); line-height: 1.75; }
.blog-post p + p{ margin-top: 1rem; }

/* ---------- Legal pages (Polityka prywatności / Regulamin) ------------------ */
.legal-content{ max-width: 760px; }
.legal-notice{
  background: rgba(201,162,75,.08); border: 1px solid var(--c-gold-dim);
  padding: 1.2rem 1.4rem; margin-bottom: 2.5rem; font-size: .88rem; color: var(--c-muted);
}
.legal-notice strong{ color: var(--c-gold); }
.legal-content h2{ font-size: 1.3rem; text-transform: uppercase; margin-top: 2.4rem; margin-bottom: .9rem; }
.legal-content h2:first-child{ margin-top: 0; }
.legal-content p, .legal-content li{ color: var(--c-muted); font-size: .95rem; line-height: 1.75; }
.legal-content ul, .legal-content ol{ margin-top: .8rem; padding-left: 1.3rem; display: grid; gap: .5rem; }
.legal-content p + p{ margin-top: .8rem; }

/* ---------- Map embed --------------------------------------------------------- */
.map-frame{ border: 1px solid var(--c-line); filter: grayscale(.4) contrast(1.05); }
.map-frame iframe{ width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Blog listing grid ------------------------------------------------- */
.post-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
@media (max-width: 900px){ .post-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px){ .post-grid{ grid-template-columns: 1fr; } }
.post-card{ background: var(--c-black-soft); border: 1px solid var(--c-line); display: flex; flex-direction: column; transition: border-color .3s ease; }
.post-card:hover{ border-color: var(--c-gold-dim); }
.post-media{ aspect-ratio: 16/10; overflow: hidden; }
.post-media img{ width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.post-card:hover .post-media img{ transform: scale(1.06); }
.post-body{ padding: 1.5rem 1.4rem 1.7rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.post-body h3{ font-size: 1.05rem; text-transform: none; line-height: 1.3; }
.post-body p{ color: var(--c-muted); font-size: .9rem; flex: 1; }

/* ---------- Single article page ------------------------------------------------ */
.article-body{ max-width: 720px; }
.article-body p{ color: var(--c-muted); font-size: 1rem; line-height: 1.8; }
.article-body p + p{ margin-top: 1.1rem; }
.article-back{
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--f-mono); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--c-gold); margin-bottom: 2.4rem;
}
.article-back svg{ width: 14px; height: 14px; }

/* ---------- Machine model cards (within a category on maszyny.html) ----------- */
.model-grid{ margin-top: 2.6rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--c-line); border: 1px solid var(--c-line); }
@media (max-width: 620px){ .model-grid{ grid-template-columns: 1fr; } }
.model-card{ background: var(--c-black-elev); padding: 1.4rem; display: flex; gap: 1.1rem; }
.section--light .model-card{ background: #fff; }
.model-card img{ width: 92px; height: 92px; object-fit: cover; flex-shrink: 0; }
.model-card h4{ font-size: .95rem; text-transform: uppercase; }
.model-card ul{ margin-top: .5rem; display: grid; gap: .25rem; }
.model-card li{ font-family: var(--f-mono); font-size: .74rem; color: var(--c-muted); }
.model-card li strong{ color: var(--c-gold); }

/* ---------- Admin / content-panel tool ----------------------------------------- */
.admin-shell{ max-width: 880px; }
.admin-tabs{ display: flex; gap: .8rem; margin-bottom: 2.4rem; flex-wrap: wrap; }
.admin-tab{
  font-family: var(--f-mono); font-size: .8rem; letter-spacing: .06em; text-transform: uppercase;
  padding: .8em 1.3em; border: 1px solid var(--c-line-strong); background: none; color: var(--c-white);
}
.admin-tab.is-active{ border-color: var(--c-gold); color: var(--c-gold); }
.admin-panel{ display: none; }
.admin-panel.is-active{ display: block; }
.admin-field-full{ margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: .5rem; }
.admin-field-full label{ font-family: var(--f-mono); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--c-muted); }
.admin-field-full input, .admin-field-full select, .admin-field-full textarea{
  background: var(--c-black); border: 1px solid var(--c-line-strong); color: var(--c-white); padding: .85em 1em;
}
.admin-field-full textarea{ min-height: 90px; resize: vertical; }
.spec-inputs{ display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.admin-output{ margin-top: 2rem; }
.admin-output textarea{
  width: 100%; min-height: 160px; background: var(--c-black-elev); border: 1px solid var(--c-line);
  color: var(--c-gold); font-family: var(--f-mono); font-size: .78rem; padding: 1rem;
}
.admin-note{ font-size: .82rem; color: var(--c-muted); margin-top: .8rem; }
.admin-actions{ display: flex; gap: 1rem; margin-top: 1rem; flex-wrap: wrap; }


/* ========================================================================== 
   HOME V2 — cinematic / editorial direction
   A quieter premium "wow": typography, image movement and large editorial cards.
   Scoped to .home-page so subpages keep their existing design.
   ========================================================================== */
.home-page{
  --home-gold: #d7ad53;
  --home-cream: #f3f0e9;
}

/* Cinematic hero --------------------------------------------------------- */
.home-page .hero{
  min-height: min(980px, 100svh);
  isolation: isolate;
  padding-top: 7.5rem;
  padding-bottom: 4.5rem;
}
.home-page .hero::before{
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8,8,10,.98) 0%, rgba(8,8,10,.92) 30%, rgba(8,8,10,.48) 56%, rgba(8,8,10,.08) 78%),
    linear-gradient(180deg, rgba(8,8,10,.08) 56%, rgba(8,8,10,.94) 100%);
}
.home-page .hero::after{
  content: '';
  position: absolute;
  z-index: 2;
  top: 11%;
  right: clamp(22px, 5vw, 72px);
  width: 1px;
  height: 67%;
  background: linear-gradient(180deg, transparent, rgba(215,173,83,.8) 20%, rgba(215,173,83,.18) 75%, transparent);
  transform-origin: top;
  animation: homeLineIn 1.35s var(--ease) .35s both;
  pointer-events: none;
}
@keyframes homeLineIn{
  from{ transform: scaleY(0); opacity: 0; }
  to{ transform: scaleY(1); opacity: 1; }
}
.home-page .hero-bg{
  inset: -3%;
  background-image: url('../img/hero-telehandler.jpg');
  background-position: 58% 34%;
  transform: scale(var(--home-bg-scale, 1.035)) translate3d(0, var(--home-bg-y, 0%), 0);
  transition: transform .12s linear;
  filter: saturate(.92) contrast(1.04);
  will-change: transform;
}
.home-page .hero-grid{
  z-index: 1;
  opacity: .08;
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, black 0%, rgba(0,0,0,.45) 46%, transparent 75%);
}
.home-page .hero-glow{
  position: absolute;
  z-index: 1;
  left: 45%;
  bottom: -22%;
  width: min(62vw, 900px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215,173,83,.18) 0%, rgba(215,173,83,.055) 28%, transparent 68%);
  filter: blur(4px);
  pointer-events: none;
  transform: translate3d(var(--home-glow-x, 0px), var(--home-glow-y, 0px), 0);
  transition: transform .6s var(--ease);
}
.home-page .hero-word{
  position: absolute;
  z-index: 1;
  right: -1.5vw;
  bottom: -0.08em;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(9rem, 23vw, 24rem);
  line-height: .72;
  letter-spacing: -.045em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.115);
  text-stroke: 1px rgba(255,255,255,.115);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  transform: translate3d(var(--home-word-x, 0vw), 0, 0);
  will-change: transform;
}
.home-page .hero-content{
  z-index: 3;
  max-width: 830px;
  margin-left: 0;
  transform: translate3d(0, var(--home-content-y, 0px), 0);
  opacity: var(--home-content-opacity, 1);
  will-change: transform, opacity;
}
.home-page .hero-code{
  color: var(--home-cream);
  opacity: .72;
  margin-bottom: 1.6rem;
  animation: homeFadeUp .85s var(--ease) .1s both;
}
.home-page .hero-code::before{
  width: 34px;
  height: 1px;
  background: var(--home-gold);
  animation: none;
}
.home-page .hero h1{
  max-width: 820px;
  font-size: clamp(3.2rem, 7.4vw, 7rem);
  line-height: .92;
  letter-spacing: -.018em;
  animation: homeFadeUp 1s var(--ease) .18s both;
}
.home-page .hero h1 em{
  color: var(--home-gold);
  position: relative;
  display: inline-block;
}
.home-page .hero h1 em::after{
  content: '';
  position: absolute;
  left: .02em;
  right: 0;
  bottom: -.06em;
  height: 2px;
  background: linear-gradient(90deg, var(--home-gold), transparent 88%);
  transform-origin: left;
  animation: homeUnderline 1.1s var(--ease) .95s both;
}
@keyframes homeUnderline{ from{ transform: scaleX(0); } to{ transform: scaleX(1); } }
@keyframes homeFadeUp{
  from{ opacity: 0; transform: translateY(28px); }
  to{ opacity: 1; transform: translateY(0); }
}
.home-page .hero .lede{
  max-width: 590px;
  margin-top: 1.7rem;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.7;
  opacity: .78;
  animation: homeFadeUp 1s var(--ease) .3s both;
}
.home-page .hero .btn-row{
  margin-top: 2rem;
  animation: homeFadeUp 1s var(--ease) .42s both;
}
.home-page .hero .btn{
  min-height: 52px;
}
.home-page .hero .btn--gold{
  background: var(--home-gold);
  border-color: var(--home-gold);
  box-shadow: 0 0 0 0 rgba(215,173,83,0);
}
.home-page .hero .btn--gold:hover{
  transform: translateY(-3px);
  box-shadow: 0 13px 38px rgba(0,0,0,.28), 0 0 32px rgba(215,173,83,.10);
}
.home-page .hero-badges{
  width: min(100%, 680px);
  margin-top: 2.5rem;
  padding-top: 1.35rem;
  gap: .85rem 0;
  border-top-color: rgba(255,255,255,.16);
  animation: homeFadeUp 1s var(--ease) .55s both;
}
.home-page .hero-badge{
  padding-right: 1.45rem;
  margin-right: 1.45rem;
  border-right: 1px solid rgba(255,255,255,.17);
  font-size: .75rem;
  color: rgba(255,255,255,.74);
}
.home-page .hero-badge:last-child{ border-right: 0; margin-right: 0; padding-right: 0; }
.home-page .hero-badge svg{ color: var(--home-gold); width: 16px; height: 16px; }
.home-page .hero-scroll{
  z-index: 4;
  right: calc(var(--gutter) + 18px);
  color: rgba(255,255,255,.5);
}
.home-page .hero-scroll i{
  height: 56px;
  background: linear-gradient(var(--home-gold), transparent);
  animation: homeScrollPulse 1.8s ease-in-out infinite;
  transform-origin: top;
}
@keyframes homeScrollPulse{
  0%,100%{ transform: scaleY(.55); opacity: .45; }
  50%{ transform: scaleY(1); opacity: 1; }
}

/* Moving category ribbon ------------------------------------------------ */
.home-marquee{
  position: relative;
  z-index: 5;
  overflow: hidden;
  background: var(--home-gold);
  color: #0b0b0d;
  border-block: 1px solid rgba(255,255,255,.16);
}
.home-marquee-track{
  width: max-content;
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.4vw, 2.3rem);
  padding-block: .9rem;
  font-family: var(--f-display);
  font-size: clamp(.9rem, 1.35vw, 1.12rem);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  animation: homeMarquee 28s linear infinite;
}
.home-marquee-track i{ font-style: normal; opacity: .45; }
@keyframes homeMarquee{ to{ transform: translateX(-50%); } }

/* Large editorial offer cards ------------------------------------------ */
.home-page .home-offer{
  padding-top: clamp(78px, 10vw, 132px);
}
.home-page .home-offer .section-head{
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}
.home-page .home-offer .h2{
  max-width: 760px;
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
  line-height: .98;
  letter-spacing: -.02em;
}
.home-page .offer-grid{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.3rem, 3vw, 2.8rem);
  background: transparent;
  border: 0;
  counter-reset: offer;
}
.home-page .offer-card{
  counter-increment: offer;
  position: relative;
  overflow: hidden;
  min-height: 540px;
  background: #111216;
  border: 1px solid rgba(255,255,255,.105);
  transition: transform .55s var(--ease), border-color .4s ease, box-shadow .55s var(--ease);
}
.home-page .offer-card:nth-child(even){ transform: translateY(42px); }
.home-page .offer-card::before{
  content: '0' counter(offer);
  position: absolute;
  z-index: 5;
  top: 1.35rem;
  right: 1.45rem;
  font-family: var(--f-display);
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1;
  color: rgba(255,255,255,.23);
  transition: color .35s ease, transform .45s var(--ease);
}
.home-page .offer-card::after{
  content: '';
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 28%, rgba(8,8,10,.18) 48%, rgba(8,8,10,.97) 88%);
}
.home-page .offer-card:hover{
  background: #111216;
  transform: translateY(-7px);
  border-color: rgba(215,173,83,.46);
  box-shadow: 0 32px 70px rgba(0,0,0,.32);
}
.home-page .offer-card:nth-child(even):hover{ transform: translateY(35px); }
.home-page .offer-card:hover::before{ color: var(--home-gold); transform: translateY(-3px); }
.home-page .offer-media{
  position: absolute;
  inset: 0;
  margin: 0;
  aspect-ratio: auto;
}
.home-page .offer-media::after{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.09) 48%, transparent 61%);
  transform: translateX(-120%);
  transition: transform .9s var(--ease);
  z-index: 2;
}
.home-page .offer-card:hover .offer-media::after{ transform: translateX(120%); }
.home-page .offer-media img{
  filter: saturate(.72) contrast(1.05) brightness(.82);
  transform: scale(1.01);
  transition: transform 1s var(--ease), filter .7s ease;
}
.home-page .offer-card:hover .offer-media img{
  transform: scale(1.055);
  filter: saturate(.98) contrast(1.03) brightness(.9);
}
.home-page .offer-media.bracket::before,
.home-page .offer-media.bracket::after,
.home-page .offer-media .bracket-tr,
.home-page .offer-media .bracket-bl{ display: none; }
.home-page .offer-tag{
  top: 1.55rem;
  left: 1.55rem;
  z-index: 4;
  background: rgba(10,10,12,.42);
  backdrop-filter: blur(8px);
  border-color: rgba(215,173,83,.45);
  color: var(--home-gold);
}
.home-page .offer-body{
  position: relative;
  z-index: 4;
  justify-content: flex-end;
  min-height: 540px;
  padding: clamp(2rem, 4vw, 3.2rem);
  gap: .9rem;
}
.home-page .offer-body h3{
  max-width: 80%;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1;
}
.home-page .offer-body p{
  flex: 0 0 auto;
  max-width: 500px;
  color: rgba(255,255,255,.7);
  font-size: .94rem;
}
.home-page .offer-more{
  margin-top: .45rem;
  color: var(--home-gold);
}

/* More sculpted feature row -------------------------------------------- */
.home-page .section--soft .feature-grid{ gap: 0; border-top: 1px solid var(--c-line); }
.home-page .section--soft .feature{
  position: relative;
  min-height: 250px;
  padding: 2rem clamp(1.2rem, 2.5vw, 2rem);
  border-top: 0;
  border-right: 1px solid var(--c-line);
  transition: background .35s ease, transform .4s var(--ease);
}
.home-page .section--soft .feature:last-child{ border-right: 0; }
.home-page .section--soft .feature::before{
  content: '0' counter(homefeature);
  position: absolute;
  right: 1.25rem;
  top: 1.2rem;
  font-family: var(--f-mono);
  color: rgba(255,255,255,.18);
  font-size: .72rem;
}
.home-page .section--soft .feature-grid{ counter-reset: homefeature; }
.home-page .section--soft .feature{ counter-increment: homefeature; }
.home-page .section--soft .feature:hover{ background: rgba(255,255,255,.028); transform: translateY(-4px); }
.home-page .section--soft .feature svg{ color: var(--home-gold); }

@media (max-width: 980px){
  .home-page .hero::before{
    background:
      linear-gradient(90deg, rgba(8,8,10,.95) 0%, rgba(8,8,10,.76) 48%, rgba(8,8,10,.25) 100%),
      linear-gradient(180deg, rgba(8,8,10,.12) 45%, rgba(8,8,10,.96) 100%);
  }
  .home-page .hero-word{ font-size: clamp(8rem, 26vw, 15rem); opacity: .75; }
  .home-page .offer-card,
  .home-page .offer-body{ min-height: 470px; }
}

@media (max-width: 760px){
  .home-page .hero{
    min-height: 880px;
    align-items: flex-end;
    padding-top: 7rem;
    padding-bottom: 5.5rem;
  }
  .home-page .hero::before{
    background:
      linear-gradient(180deg, rgba(8,8,10,.2) 0%, rgba(8,8,10,.4) 35%, rgba(8,8,10,.96) 70%, #08080a 100%);
  }
  .home-page .hero::after{ right: 22px; opacity: .65; }
  .home-page .hero-bg{
    inset: 0;
    background-position: 62% 20%;
    transform: scale(1.03);
  }
  .home-page .hero-glow{ left: 12%; bottom: -8%; width: 110vw; }
  .home-page .hero-word{ right: -5vw; bottom: 1.6rem; font-size: 42vw; line-height: .7; opacity: .52; }
  .home-page .hero-content{ transform: none; opacity: 1; }
  .home-page .hero h1{ font-size: clamp(3rem, 14vw, 5.4rem); max-width: 10ch; }
  .home-page .hero .lede{ max-width: 34rem; }
  .home-page .hero-badges{ gap: .7rem 0; }
  .home-page .hero-badge{ width: 100%; border-right: 0; padding-right: 0; margin-right: 0; }
  .home-page .offer-grid{ grid-template-columns: 1fr; }
  .home-page .offer-card:nth-child(even),
  .home-page .offer-card:nth-child(even):hover{ transform: none; }
  .home-page .offer-card,
  .home-page .offer-body{ min-height: 510px; }
  .home-page .section--soft .feature-grid{ grid-template-columns: 1fr 1fr; }
  .home-page .section--soft .feature:nth-child(2){ border-right: 0; }
  .home-page .section--soft .feature{ border-bottom: 1px solid var(--c-line); }
}

@media (max-width: 520px){
  .home-page .hero{ min-height: 820px; }
  .home-page .hero h1{ font-size: clamp(2.75rem, 15vw, 4.2rem); }
  .home-page .hero-code{ font-size: .66rem; letter-spacing: .12em; }
  .home-page .hero .btn-row .btn{ width: 100%; justify-content: center; }
  .home-page .offer-card,
  .home-page .offer-body{ min-height: 460px; }
  .home-page .offer-body h3{ max-width: 90%; }
  .home-page .section--soft .feature-grid{ grid-template-columns: 1fr; }
  .home-page .section--soft .feature{ border-right: 0; }
}

@media (hover: none), (pointer: coarse){
  .home-page .offer-card:hover,
  .home-page .offer-card:nth-child(even):hover{ transform: none; box-shadow: none; }
}

@media (prefers-reduced-motion: reduce){
  .home-page .hero-bg,
  .home-page .hero-content,
  .home-page .hero-word,
  .home-page .hero-glow{ transform: none !important; opacity: 1; }
  .home-marquee-track{ animation: none; }
  .home-page .hero-scroll i{ animation: none; }
}


/* ==========================================================================
   WW RENTAL — RENTAL CATALOG V2
   Product-led catalogue inspired by best practices from large rental sites.
   ========================================================================== */
.catalog-page,.product-page{ background:#0a0a0c; }
.catalog-hero{ position:relative; padding:clamp(8rem,13vw,11rem) 0 clamp(4rem,7vw,6rem); overflow:hidden; border-bottom:1px solid var(--c-line); }
.catalog-hero-bg{ position:absolute; inset:0; background:linear-gradient(90deg,rgba(7,8,10,.97) 0%,rgba(7,8,10,.84) 48%,rgba(7,8,10,.42) 100%),linear-gradient(180deg,rgba(7,8,10,.2),rgba(7,8,10,.95)),url('../img/hero-telehandler.jpg') center 35%/cover no-repeat; transform:scale(1.02); }
.catalog-hero-inner{ position:relative; display:grid; grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr); gap:clamp(2rem,6vw,6rem); align-items:end; }
.catalog-hero h1{ font-size:clamp(2.7rem,6vw,5.4rem); line-height:.98; text-transform:uppercase; max-width:820px; }
.catalog-hero h1 em{ font-style:normal; color:var(--c-gold); }
.catalog-hero .lede{ max-width:700px; color:rgba(255,255,255,.82); }
.catalog-hero-panel{ background:rgba(19,20,24,.88); border:1px solid var(--c-line-strong); border-top:3px solid var(--c-gold); padding:clamp(1.5rem,3vw,2.2rem); backdrop-filter:blur(10px); }
.catalog-panel-label{ display:block; font:500 .72rem var(--f-mono); letter-spacing:.12em; text-transform:uppercase; color:var(--c-gold); margin-bottom:.8rem; }
.catalog-hero-panel strong{ display:block; font:600 1.35rem var(--f-display); text-transform:uppercase; line-height:1.15; }
.catalog-hero-panel p{ color:var(--c-muted); margin:.8rem 0 1.4rem; font-size:.92rem; }
.catalog-benefits{ background:#111216; border-bottom:1px solid var(--c-line); }
.catalog-benefits-grid{ display:grid; grid-template-columns:repeat(4,1fr); }
.catalog-benefits-grid>div{ padding:1.35rem 1.2rem; border-left:1px solid var(--c-line); display:flex; align-items:center; gap:.9rem; }
.catalog-benefits-grid>div:first-child{ border-left:none; }
.catalog-benefits strong{ color:var(--c-gold); font:500 .72rem var(--f-mono); }
.catalog-benefits span{ font-size:.87rem; font-weight:600; }
.catalog-nav{ position:sticky; top:64px; z-index:70; background:rgba(10,10,12,.96); border-bottom:1px solid var(--c-line); backdrop-filter:blur(12px); }
.navbar.is-scrolled + .catalog-hero + .catalog-benefits + .catalog-nav{ }
.catalog-nav .wrap{ display:flex; gap:.5rem; overflow:auto; padding-top:.85rem; padding-bottom:.85rem; scrollbar-width:none; }
.catalog-nav .wrap::-webkit-scrollbar{ display:none; }
.catalog-nav a{ flex:0 0 auto; padding:.65rem 1rem; border:1px solid var(--c-line); font:500 .75rem var(--f-mono); letter-spacing:.05em; text-transform:uppercase; }
.catalog-nav a:hover{ border-color:var(--c-gold); color:var(--c-gold); }
.catalog-section{ padding:clamp(4rem,8vw,7rem) 0; border-bottom:1px solid var(--c-line); scroll-margin-top:82px; }
.catalog-section:nth-of-type(even){ background:#111216; }
.catalog-heading{ display:flex; justify-content:space-between; align-items:end; gap:2rem; margin-bottom:2.4rem; }
.catalog-heading h2{ font-size:clamp(2rem,3.7vw,3.3rem); text-transform:uppercase; }
.catalog-heading p:not(.eyebrow){ max-width:650px; margin-top:.7rem; color:var(--c-muted); }
.catalog-back{ color:var(--c-gold); font:500 .73rem var(--f-mono); text-transform:uppercase; letter-spacing:.06em; white-space:nowrap; }
.rental-grid{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:1.4rem; }
.rental-card{ display:grid; grid-template-columns:minmax(220px,.9fr) minmax(0,1.1fr); min-height:330px; background:var(--c-black-elev); border:1px solid var(--c-line); transition:transform .35s var(--ease),border-color .3s ease,box-shadow .35s ease; }
.rental-card:hover{ transform:translateY(-4px); border-color:var(--c-gold-dim); box-shadow:0 22px 55px rgba(0,0,0,.22); }
.rental-card-media{ position:relative; overflow:hidden; min-height:100%; }
.rental-card-media::after{ content:''; position:absolute; inset:0; background:linear-gradient(180deg,transparent 45%,rgba(0,0,0,.66)); pointer-events:none; }
.rental-card-media img{ width:100%; height:100%; object-fit:cover; transition:transform .65s var(--ease); }
.rental-card:hover .rental-card-media img{ transform:scale(1.045); }
.rental-card-code{ position:absolute; z-index:2; left:1rem; top:1rem; background:var(--c-gold); color:#0a0a0c; padding:.42rem .6rem; font:600 .68rem var(--f-mono); letter-spacing:.08em; }
.availability-dot{ position:absolute; z-index:2; left:1rem; bottom:1rem; font:500 .69rem var(--f-mono); text-transform:uppercase; padding:.45rem .65rem; background:rgba(8,9,11,.86); border:1px solid rgba(255,255,255,.18); }
.availability-dot::before{ content:''; display:inline-block; width:7px; height:7px; border-radius:50%; background:#53c874; margin-right:.5rem; }
.rental-card-body{ padding:1.55rem; display:flex; flex-direction:column; }
.rental-card-category{ color:var(--c-gold)!important; font:500 .7rem var(--f-mono)!important; text-transform:uppercase; letter-spacing:.08em; margin-bottom:.55rem!important; }
.rental-card h3{ font-size:clamp(1.25rem,2vw,1.65rem); line-height:1.1; text-transform:uppercase; }
.rental-card h3 a:hover{ color:var(--c-gold); }
.rental-card-body>p{ color:var(--c-muted); font-size:.88rem; margin-top:.75rem; }
.rental-card-specs{ margin-top:1rem; display:grid; gap:.3rem; }
.rental-card-specs li{ display:flex; justify-content:space-between; gap:1rem; border-bottom:1px solid var(--c-line); padding:.42rem 0; font:400 .72rem var(--f-mono); color:var(--c-muted); }
.rental-card-specs strong{ color:var(--c-white); font-weight:500; text-align:right; }
.rental-card-actions{ margin-top:auto; padding-top:1.2rem; display:flex; gap:.65rem; flex-wrap:wrap; }
.rental-card-actions .btn{ padding:.82em 1.05em; font-size:.72rem; }
.rental-wide-cta{ border:1px solid var(--c-line); border-left:4px solid var(--c-gold); padding:clamp(2rem,4vw,3rem); display:flex; align-items:center; justify-content:space-between; gap:3rem; background:var(--c-black-elev); }
.rental-wide-cta p:not(.eyebrow){ color:var(--c-muted); margin-top:.8rem; max-width:720px; }

/* Product detail */
.product-top{ padding:clamp(7.6rem,12vw,9rem) 0 3.2rem; background:linear-gradient(180deg,#101115,#0a0a0c); }
.product-top .breadcrumb{ margin-bottom:1.4rem; flex-wrap:wrap; }
.product-layout{ display:grid; grid-template-columns:minmax(0,1.15fr) minmax(390px,.85fr); gap:clamp(2rem,5vw,5rem); align-items:start; }
.product-gallery{ position:sticky; top:96px; }
.product-main-image{ position:relative; min-height:520px; background:#17191e; border:1px solid var(--c-line); overflow:hidden; }
.product-main-image::after{ content:''; position:absolute; inset:0; box-shadow:inset 0 -120px 110px -110px rgba(0,0,0,.8); pointer-events:none; }
.product-main-image img{ width:100%; height:100%; min-height:520px; object-fit:cover; }
.product-code{ position:absolute; z-index:2; left:1rem; top:1rem; background:var(--c-gold); color:#090a0c; padding:.5rem .72rem; font:600 .72rem var(--f-mono); letter-spacing:.08em; }
.product-thumb-row{ display:grid; grid-template-columns:repeat(3,1fr); gap:.7rem; margin-top:.7rem; }
.product-thumb{ height:86px; border:1px solid var(--c-line); background:var(--c-black-elev); color:var(--c-white); padding:0; overflow:hidden; }
.product-thumb.is-active{ border-color:var(--c-gold); }
.product-thumb img{ width:100%; height:100%; object-fit:cover; }
.product-thumb--info{ display:flex; flex-direction:column; align-items:center; justify-content:center; }
.product-thumb--info span{ color:var(--c-gold); font:700 1.1rem var(--f-display); }
.product-thumb--info small{ color:var(--c-muted); font:500 .62rem var(--f-mono); text-transform:uppercase; }
.product-summary h1{ font-size:clamp(2.3rem,4.3vw,4.1rem); line-height:1; text-transform:uppercase; }
.product-intro{ color:var(--c-muted); font-size:1rem; margin-top:1rem; }
.product-status{ display:flex; gap:.85rem; margin-top:1.5rem; padding:1rem 1.1rem; border:1px solid var(--c-line); background:var(--c-black-elev); }
.status-dot{ width:10px; height:10px; border-radius:50%; background:#53c874; box-shadow:0 0 0 5px rgba(83,200,116,.11); margin-top:.38rem; flex:0 0 auto; }
.product-status strong{ display:block; font-size:.88rem; }
.product-status small{ color:var(--c-muted); display:block; margin-top:.15rem; }
.product-keys{ display:grid; grid-template-columns:repeat(2,1fr); margin-top:1rem; border-top:1px solid var(--c-line); border-left:1px solid var(--c-line); }
.product-key{ padding:1rem; border-right:1px solid var(--c-line); border-bottom:1px solid var(--c-line); }
.product-key span{ display:block; color:var(--c-muted); font:500 .66rem var(--f-mono); text-transform:uppercase; letter-spacing:.06em; }
.product-key strong{ display:block; margin-top:.25rem; font:600 1.12rem var(--f-display); text-transform:uppercase; }
.product-price{ margin-top:1.2rem; background:#f5f4f0; color:#14151a; padding:1.2rem 1.3rem; border-left:4px solid var(--c-gold); }
.product-price span{ display:block; font:500 .68rem var(--f-mono); text-transform:uppercase; letter-spacing:.07em; color:#5b5d68; }
.product-price strong{ display:block; font:700 clamp(1.7rem,3vw,2.3rem) var(--f-display); text-transform:uppercase; line-height:1.05; margin:.15rem 0; }
.product-price small{ color:#656771; }
.product-actions{ display:flex; gap:.8rem; margin-top:1.2rem; flex-wrap:wrap; }
.product-service-list{ display:grid; grid-template-columns:1fr 1fr; gap:.55rem 1rem; margin-top:1.4rem; }
.product-service-list li{ font-size:.78rem; color:var(--c-muted); }
.product-service-list li::before{ content:'✓'; color:var(--c-gold); margin-right:.5rem; }
.product-anchor-nav{ position:sticky; top:64px; z-index:65; background:rgba(10,10,12,.97); border-top:1px solid var(--c-line); border-bottom:1px solid var(--c-line); backdrop-filter:blur(12px); }
.product-anchor-nav .wrap{ display:flex; gap:.3rem; overflow:auto; scrollbar-width:none; }
.product-anchor-nav a{ padding:1rem 1.1rem; white-space:nowrap; color:var(--c-muted); font:500 .72rem var(--f-mono); text-transform:uppercase; letter-spacing:.06em; border-bottom:2px solid transparent; }
.product-anchor-nav a:hover{ color:var(--c-gold); border-bottom-color:var(--c-gold); }
.product-content-grid{ display:grid; grid-template-columns:minmax(0,1.3fr) minmax(280px,.7fr); gap:clamp(2rem,6vw,6rem); align-items:start; }
.product-copy{ color:var(--c-muted-ink); font-size:1.05rem; line-height:1.8; margin-top:1.25rem; max-width:760px; }
.product-subhead{ margin-top:2rem; font-size:1.2rem; text-transform:uppercase; }
.check-list{ display:grid; gap:.65rem; margin-top:1rem; }
.check-list li{ padding-left:1.5rem; position:relative; color:var(--c-muted-ink); }
.check-list li::before{ content:'✓'; position:absolute; left:0; color:var(--c-blue); font-weight:700; }
.product-note{ background:#16181d; color:var(--c-white); padding:2rem; border-top:4px solid var(--c-gold); }
.product-note>span{ color:var(--c-gold); font:500 .68rem var(--f-mono); text-transform:uppercase; letter-spacing:.08em; }
.product-note h3{ margin-top:.55rem; font-size:1.4rem; text-transform:uppercase; }
.product-note p{ margin-top:.8rem; color:var(--c-muted); font-size:.9rem; }
.product-spec-layout{ display:grid; grid-template-columns:.72fr 1.28fr; gap:clamp(2rem,6vw,6rem); align-items:start; }
.spec-table-wrap{ border:1px solid var(--c-line); }
.product-spec-table{ width:100%; border-collapse:collapse; }
.product-spec-table th,.product-spec-table td{ padding:1rem 1.15rem; border-bottom:1px solid var(--c-line); text-align:left; }
.product-spec-table tr:last-child th,.product-spec-table tr:last-child td{ border-bottom:0; }
.product-spec-table th{ width:48%; color:var(--c-muted); font:500 .74rem var(--f-mono); text-transform:uppercase; letter-spacing:.04em; }
.product-spec-table td{ color:var(--c-white); font-weight:600; }
.rental-form-shell{ display:grid; grid-template-columns:.8fr 1.2fr; border:1px solid var(--c-line); background:#0c0d10; }
.rental-form-copy{ padding:clamp(2rem,4vw,3.4rem); background:linear-gradient(150deg,#17191e,#101115); }
.rental-form-copy>p:not(.eyebrow){ color:var(--c-muted); margin-top:1rem; }
.rental-steps{ display:grid; gap:.85rem; margin-top:2rem; }
.rental-steps span{ display:flex; align-items:center; gap:.7rem; font-size:.85rem; color:var(--c-muted); }
.rental-steps b{ width:30px; height:30px; display:grid; place-items:center; border:1px solid var(--c-gold-dim); color:var(--c-gold); font:500 .7rem var(--f-mono); }
.rental-form{ padding:clamp(2rem,4vw,3.4rem); background:var(--c-black-soft); }
.rental-form .field input,.rental-form .field textarea{ background:#090a0c; }
.consent-line{ display:flex; align-items:flex-start; gap:.7rem; color:var(--c-muted); font-size:.76rem; margin:.25rem 0 1.2rem; }
.consent-line input{ accent-color:var(--c-gold); margin-top:.18rem; }
.rental-submit{ width:100%; justify-content:center; }
.related-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.2rem; }
.related-card{ background:var(--c-black-elev); border:1px solid var(--c-line); }
.related-card>a{ display:block; height:220px; overflow:hidden; }
.related-card img{ width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease); }
.related-card:hover img{ transform:scale(1.04); }
.related-card>div{ padding:1.2rem; }
.related-card span{ color:var(--c-gold); font:500 .66rem var(--f-mono); text-transform:uppercase; }
.related-card h3{ font-size:1.15rem; text-transform:uppercase; margin:.45rem 0 .8rem; }

@media (max-width:1080px){
  .rental-grid{ grid-template-columns:1fr; }
  .rental-card{ grid-template-columns:minmax(260px,.85fr) minmax(0,1.15fr); }
  .product-layout{ grid-template-columns:1fr; }
  .product-gallery{ position:relative; top:auto; }
  .product-main-image,.product-main-image img{ min-height:440px; }
  .product-spec-layout{ grid-template-columns:1fr; }
}
@media (max-width:860px){
  .catalog-hero-inner,.product-content-grid,.rental-form-shell{ grid-template-columns:1fr; }
  .catalog-benefits-grid{ grid-template-columns:repeat(2,1fr); }
  .catalog-benefits-grid>div:nth-child(3){ border-left:0; border-top:1px solid var(--c-line); }
  .catalog-benefits-grid>div:nth-child(4){ border-top:1px solid var(--c-line); }
  .related-grid{ grid-template-columns:1fr 1fr; }
  .rental-wide-cta{ flex-direction:column; align-items:flex-start; }
}
@media (max-width:620px){
  .catalog-hero{ padding-top:7rem; }
  .catalog-hero h1{ font-size:2.6rem; }
  .catalog-heading{ align-items:flex-start; flex-direction:column; }
  .rental-card{ grid-template-columns:1fr; }
  .rental-card-media{ min-height:250px; }
  .product-main-image,.product-main-image img{ min-height:330px; }
  .product-summary h1{ font-size:2.45rem; }
  .product-keys{ grid-template-columns:1fr 1fr; }
  .product-service-list{ grid-template-columns:1fr; }
  .related-grid{ grid-template-columns:1fr; }
  .catalog-benefits-grid{ grid-template-columns:1fr; }
  .catalog-benefits-grid>div{ border-left:0!important; border-top:1px solid var(--c-line); }
  .catalog-benefits-grid>div:first-child{ border-top:0; }
}

#opis,#parametry,#zapytaj,#podobne{ scroll-margin-top:140px; }

/* ========================================================================== 
   HOME HERO V3 — conversion-first sales hero
   ========================================================================== */
.home-page .hero{
  min-height: min(920px, 100svh);
  display: flex;
  align-items: center;
  padding-top: 8.5rem;
  padding-bottom: 5.5rem;
}
.home-page .hero::before{
  background:
    linear-gradient(90deg, rgba(8,8,10,.985) 0%, rgba(8,8,10,.94) 37%, rgba(8,8,10,.58) 63%, rgba(8,8,10,.18) 100%),
    linear-gradient(180deg, rgba(8,8,10,.05) 52%, rgba(8,8,10,.94) 100%);
}
.home-page .hero-content{
  width: 100%;
  max-width: var(--wrap);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}
.home-page .hero-sales-copy{ min-width: 0; }
.home-page .hero h1{
  max-width: 800px;
  font-size: clamp(3.35rem, 6.7vw, 6.8rem);
  line-height: .9;
}
.home-page .hero h1 em{ display: block; }
.home-page .hero .lede{
  max-width: 650px;
  color: rgba(255,255,255,.86);
  font-size: clamp(1.03rem, 1.3vw, 1.17rem);
}
.home-page .hero-actions{
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  animation: homeFadeUp 1s var(--ease) .42s both;
}
.home-page .hero-actions .btn{
  min-height: 56px;
  justify-content: center;
}
.home-page .hero-actions .btn--gold{
  padding-inline: 2rem;
  font-weight: 600;
}
.home-page .hero-proof{
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.15);
  animation: homeFadeUp 1s var(--ease) .55s both;
}
.home-page .hero-proof span{
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding-right: 1.25rem;
  margin: .25rem 1.25rem .25rem 0;
  border-right: 1px solid rgba(255,255,255,.14);
  font-size: .76rem;
  color: rgba(255,255,255,.73);
}
.home-page .hero-proof span:last-child{ border-right: 0; }
.home-page .hero-proof b{
  font-family: var(--f-mono);
  font-size: .67rem;
  color: var(--home-gold);
  letter-spacing: .08em;
}
.home-page .hero-badges{ display: none; }

.home-page .hero-rental-card{
  position: relative;
  align-self: center;
  background: linear-gradient(145deg, rgba(20,21,25,.94), rgba(10,10,12,.86));
  border: 1px solid rgba(255,255,255,.17);
  border-top: 3px solid var(--home-gold);
  padding: clamp(1.6rem, 2.7vw, 2.35rem);
  box-shadow: 0 30px 90px rgba(0,0,0,.38);
  backdrop-filter: blur(16px);
  animation: homeCardIn 1s var(--ease) .36s both;
}
@keyframes homeCardIn{
  from{ opacity: 0; transform: translate3d(30px,20px,0); }
  to{ opacity: 1; transform: translate3d(0,0,0); }
}
.home-page .hero-rental-card::before,
.home-page .hero-rental-card::after{
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  pointer-events: none;
}
.home-page .hero-rental-card::before{
  left: -1px; bottom: -1px;
  border-left: 1px solid var(--home-gold);
  border-bottom: 1px solid var(--home-gold);
}
.home-page .hero-rental-card::after{
  right: -1px; top: -3px;
  border-right: 1px solid var(--home-gold);
  border-top: 1px solid var(--home-gold);
}
.home-page .hero-rental-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.home-page .hero-rental-kicker{
  font-family: var(--f-mono);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--home-gold);
}
.home-page .hero-rental-status{
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .7rem;
  color: rgba(255,255,255,.62);
}
.home-page .hero-rental-status i{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--home-gold);
  box-shadow: 0 0 0 4px rgba(215,173,83,.13);
}
.home-page .hero-rental-card h2{
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  line-height: 1;
  text-transform: uppercase;
}
.home-page .hero-rental-intro{
  margin-top: .8rem;
  font-size: .88rem;
  line-height: 1.6;
  color: rgba(255,255,255,.63);
}
.home-page .hero-rental-steps{
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.home-page .hero-rental-step{
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.11);
}
.home-page .hero-rental-step > span{
  font-family: var(--f-display);
  font-size: 1.3rem;
  color: var(--home-gold);
}
.home-page .hero-rental-step div{ display: grid; gap: .12rem; }
.home-page .hero-rental-step b{ font-size: .9rem; font-weight: 600; color: #fff; }
.home-page .hero-rental-step small{ font-size: .72rem; color: rgba(255,255,255,.55); }
.home-page .hero-rental-link{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.35rem;
  padding: 1rem 1.15rem;
  background: var(--home-gold);
  color: #0b0b0d;
  font-family: var(--f-mono);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .25s ease, transform .25s var(--ease);
}
.home-page .hero-rental-link:hover{
  background: var(--c-gold-light);
  transform: translateY(-2px);
}
.home-page .hero-rental-link svg{ width: 18px; height: 18px; }

@media (max-width: 1040px){
  .home-page .hero{
    min-height: auto;
    padding-top: 8.5rem;
    padding-bottom: 4rem;
  }
  .home-page .hero-content{
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .home-page .hero-sales-copy{ max-width: 780px; }
  .home-page .hero-rental-card{ width: min(100%, 680px); }
  .home-page .hero::before{
    background:
      linear-gradient(90deg, rgba(8,8,10,.97), rgba(8,8,10,.75)),
      linear-gradient(180deg, rgba(8,8,10,.08) 42%, rgba(8,8,10,.96) 100%);
  }
}
@media (max-width: 620px){
  .home-page .hero{ padding-top: 7rem; padding-bottom: 3rem; }
  .home-page .hero h1{ font-size: clamp(2.75rem, 14vw, 4.25rem); }
  .home-page .hero h1 em{ display: inline; }
  .home-page .hero-actions{ display: grid; grid-template-columns: 1fr; }
  .home-page .hero-actions .btn{ width: 100%; }
  .home-page .hero-proof{ display: grid; gap: .45rem; }
  .home-page .hero-proof span{ border-right: 0; margin: 0; padding: 0; }
  .home-page .hero-rental-card{ padding: 1.35rem; }
  .home-page .hero-rental-top{ align-items: flex-start; flex-direction: column; gap: .45rem; }
}
