
/* =========================================================
   MICKA OIL WEBSITE STYLES
   ---------------------------------------------------------
   01. Global reset, variables, base layout
   02. Shared components: preloader, social buttons, navbar
   03. Home page: hero, price board, slider, about, services
   04. Gallery page: coverflow and image grid
   05. Contact and loyalty support sections
   06. Products page sections and product cards
   07. Location page: hero, map, cards, info windows
   08. About page: legacy blocks, rebuilt hero, V2 layout
   09. Footer
   ---------------------------------------------------------
   Keep page-specific rules grouped under their page heading.
   ========================================================= */

/* =========================================================
   01. GLOBAL RESET, VARIABLES, BASE LAYOUT
   ========================================================= */

* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

:root {
  --nav-h: 72px;
  --radius: 16px;
  --shadow: 0 8px 30px rgba(0,0,0,.12);
  --text: #0f1115;
  --brand: #e40909;
  --site-bg: #f6f7f9;
  --white: #ffffff;
  --off: #f7f6f4;
  --border: #e4e2de;
  --muted: #777b85;
  --body-c: #202226;
  --head-c: #111318;
  --red: #d72b22;
  --red-h: #b51d15;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Manrope", "Segoe UI", system-ui, sans-serif;
  --dur: .45s;
  --ease: cubic-bezier(.22,1,.36,1);
  --motion-soft: cubic-bezier(0.2, 0.7, 0.2, 1);
  --motion-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --premium-shadow: 0 22px 50px rgba(16, 24, 38, 0.12);
}


html { scroll-behavior: smooth; }

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (min-width: 1101px) {
  :root {
    --nav-h: 76px;
  }

  html {
    font-size: 90%;
  }

  body {
    overflow-x: clip;
    padding-top: calc(var(--nav-h) + 18px);
  }

  .navbar__container,
  body.home-page .hero-panel,
  body.home-page .slider-showcase,
  body.home-page .home-locations,
  .slider,
  .about,
  .services-container,
  .services-grid,
  .products-wrap,
  #map,
  .locations-grid,
  .infographic-wrapper,
  .footer-container {
    max-width: 1260px;
  }

  #navbar__logo img {
    height: 68px;
  }

  .navbar__menu {
    gap: 18px;
  }

  .navbar__link {
    width: 154px;
    height: 44px;
    font-size: 1.03rem;
  }

  .lang-toggle {
    margin-left: 34px;
    font-size: 13px;
  }

  .lang-track {
    width: 68px;
    height: 32px;
  }

  .lang-knob,
  .lang-knob img {
    width: 26px;
    height: 26px;
  }

  .lang-knob {
    top: 3px;
    left: 3px;
  }

  .lang-switch input:checked + .lang-track .lang-knob {
    transform: translateX(36px);
  }

  .floating-social {
    right: 16px;
    bottom: 108px;
    gap: 12px;
  }

  .social-btn,
  #scrollTopBtn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #f6f7f9;
  padding-top: calc(var(--nav-h) + 20px);
  
}

/* Mobile scrollbar handling */
@media (max-width: 700px) {

  body::-webkit-scrollbar{
  display: none;
}
.thumbnail {
    scrollbar-width: none;
    
  }
}

/* Anchor scroll offset */
section, #about, #services, #products, #locations, #contact {
  scroll-margin-top: calc(var(--nav-h) + 28px);
}

.section-title {
  text-align: center;
  margin: 20px 0;
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--brand);
}

/* =========================================================
   02. SHARED COMPONENTS
   ========================================================= */

/* Preloader video */
#preloader {
    position: fixed;
    inset: 0;
    background:
      radial-gradient(circle at center, rgba(228, 9, 9, 0.14), transparent 34%),
      #050505;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

#preloader {
    pointer-events: none;
}

.loader-content {
    width: min(520px, 62vw);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 28px;
    background: #e40909;
    box-shadow:
      0 32px 90px rgba(0, 0, 0, 0.42),
      0 0 70px rgba(228, 9, 9, 0.28);
}

#preloader video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@media (max-width: 700px) {
    .loader-content {
      width: min(340px, 72vw);
      border-radius: 26px;
    }
}

/* FLOATING SOCIAL */
.floating-social {
  position: fixed;
  right: 18px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.social-btn,
#scrollTopBtn {
  width: 58px;
  height: 58px;
  background: var(--brand);
  border-radius: 16px; 
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.28);
  transition: transform 0.2s ease, background 0.3s ease;
}

/* SVG icons */
.social-btn svg {
  width: 66%;
  height: 66%;
  display: block;
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
}

.social-btn[aria-label="WhatsApp"] svg {
  width: 72%;
  height: 72%;
  transform: translate(1px, 1px);
}

.social-btn:hover,
#scrollTopBtn:hover {
  background: #c30707;
  transform: scale(1.08);
}

.social-btn,
#scrollTopBtn {
  position: relative;
  overflow: hidden;
}

.social-btn::after,
#scrollTopBtn::after {
  content: "";
  position: absolute;
  inset: -35%;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.55), transparent 65%);
  transform: translateX(-120%) rotate(18deg);
  transition: transform 0.55s ease;
}

.social-btn:hover::after,
#scrollTopBtn:hover::after {
  transform: translateX(120%) rotate(18deg);
}

/* Shared animated CTA treatment */
.products-cta__button,
.location-page-body .locations-page-hero__cta:not(.locations-page-hero__cta--secondary),
.location-actions button,
.btn,
.about-rebuild-btn--primary,
.about-v2-btn--primary,
.about-v2-btn--dark,
.support-banner__button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 0 18px 0 18px;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease,
    color 0.24s ease,
    border-color 0.24s ease;
}

.products-cta__button::before,
.location-page-body .locations-page-hero__cta:not(.locations-page-hero__cta--secondary)::before,
.location-actions button::before,
.btn::before,
.about-rebuild-btn--primary::before,
.about-v2-btn--primary::before,
.about-v2-btn--dark::before,
.support-banner__button::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: linear-gradient(120deg, transparent 0 34%, rgba(255, 255, 255, 0.72) 48%, transparent 62% 100%);
  transform: translateX(-135%);
  transition: transform 0.68s ease;
}

.products-cta__button::after,
.location-page-body .locations-page-hero__cta:not(.locations-page-hero__cta--secondary)::after,
.location-actions button::after,
.btn::after,
.about-rebuild-btn--primary::after,
.about-v2-btn--primary::after,
.about-v2-btn--dark::after,
.support-banner__button::after {
  content: "";
  position: absolute;
  inset: auto 14px 0 14px;
  height: 2px;
  z-index: -1;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.62);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.products-cta__button:hover,
.location-page-body .locations-page-hero__cta:not(.locations-page-hero__cta--secondary):hover,
.location-actions button:hover,
.btn:hover,
.about-rebuild-btn--primary:hover,
.about-v2-btn--primary:hover,
.about-v2-btn--dark:hover,
.support-banner__button:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 38px rgba(228, 9, 9, 0.34);
}

.products-cta__button:hover::before,
.location-page-body .locations-page-hero__cta:not(.locations-page-hero__cta--secondary):hover::before,
.location-actions button:hover::before,
.btn:hover::before,
.about-rebuild-btn--primary:hover::before,
.about-v2-btn--primary:hover::before,
.about-v2-btn--dark:hover::before,
.support-banner__button:hover::before {
  transform: translateX(135%);
}

.products-cta__button:hover::after,
.location-page-body .locations-page-hero__cta:not(.locations-page-hero__cta--secondary):hover::after,
.location-actions button:hover::after,
.btn:hover::after,
.about-rebuild-btn--primary:hover::after,
.about-v2-btn--primary:hover::after,
.about-v2-btn--dark:hover::after,
.support-banner__button:hover::after {
  transform: scaleX(1);
}

.location-actions a,
.contact-commercial__actions a,
.about-rebuild-btn--secondary,
.about-rebuild-btn--light,
.about-v2-btn--secondary {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease,
    background 0.24s ease;
}

.location-actions a:hover,
.contact-commercial__actions a:hover,
.about-rebuild-btn--secondary:hover,
.about-rebuild-btn--light:hover,
.about-v2-btn--secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(17, 24, 32, 0.12);
}

@keyframes ctaSoftPulse {
  0%,
  100% {
    box-shadow: 0 14px 26px rgba(228, 9, 9, 0.24);
  }
  50% {
    box-shadow: 0 20px 36px rgba(228, 9, 9, 0.38);
  }
}

.products-cta__button,
.about-rebuild-btn--primary,
.about-v2-btn--primary {
  animation: ctaSoftPulse 3.8s ease-in-out infinite;
}

.floating-social.hide-floating {
  opacity: 0;
  pointer-events: none;
}

/* ======== 
    NAVBAR
 =========*/
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(228, 9, 9, 0.97), rgba(228, 9, 9, 0.92));
  backdrop-filter: blur(5px);
  border-bottom: 1px solid #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
}

.navbar__container {
  max-width: 1400px;
  height: var(--nav-h);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

#navbar__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex: 0 0 auto;
}

#navbar__logo img {
  max-height: calc(var(--nav-h) - 12px);
  border-radius: 20px;
  width: auto;
  display: block;
  object-fit: contain;
}

.navbar__menu {
  list-style: none;
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 22px;
}

.navbar__link {
  text-decoration: none;
  color: #eee;
  width: 170px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;                 
  border-radius: 10px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.navbar__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0%;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.navbar__link:hover::after { width: 100%; }

.navbar__link.active {
  background: rgba(255, 255, 255, 0.142);
}

/* language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-left: 50px;
}

.lang-switch input { display: none; }

.lang-track {
  position: relative;
  width: 74px;
  height: 34px;
  border-radius: 999px;
  background: #000;
  overflow: hidden;
}

.lang-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.lang-knob img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  position: absolute;
}

.flag-en { opacity: 0; }

.lang-switch input:checked + .lang-track .lang-knob { transform: translateX(40px); }
.lang-switch input:checked + .lang-track .flag-en { opacity: 1; }
.lang-switch input:checked + .lang-track .flag-sq { opacity: 0; }

/* Mobile hamburger */
.navbar__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  flex-direction: column;
  padding: 6px;
}

.navbar__toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
}

@media (max-width: 900px) {
  .navbar__toggle { display: inline-flex; }

  .navbar__menu {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--nav-h);
    background: var(--brand);
    flex-direction: column;
    gap: 10px;
    padding: 0 16px; 
    overflow: hidden;
    max-height: 0;
    opacity: 0; 
    visibility: hidden; 
    transition: max-height .28s ease, opacity .28s ease, visibility .28s ease, padding .28s ease;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
  }

  .navbar__menu.active { 
    max-height: 560px;
    opacity: 1; 
    visibility: visible;
    padding: 14px 16px 18px; 
  }

  .navbar__link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
  }

  .navbar__link:hover { background: rgba(255,255,255,0.22); }

  .lang-toggle {
    padding-top: 6px;
    margin-left: 0;
    justify-content: center;
    width: 100%;
  }
}

/* =========================================================
   03. HOME PAGE
   Hero, price board, slider, about, services, products, map
   ========================================================= */
body.home-page {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
}

body.home-page h1,
body.home-page .showcase-title,
body.home-page .about__text h3,
body.home-page .services-header h2,
body.home-page .products-header h2,
body.home-page .section-title {
  font-family: "League Spartan", "Arial Narrow", sans-serif;
  letter-spacing: -0.035em;
}

body.home-page .hero-panel,
body.home-page .home-price-board,
body.home-page .home-proof,
body.home-page .slider-showcase,
body.home-page .business-cta,
body.home-page .home-locations {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 8px;
  padding-right: 8px;
}

body.home-page .hero-panel {
  margin-top: 20px;
  margin-bottom: 26px;
}

body.home-page .home-price-board,
body.home-page .home-proof,
body.home-page .business-cta {
  margin-bottom: 26px;
}

body.home-page .hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 34px;
  padding: 44px 42px 42px;
  border-radius: 28px;
  overflow: hidden;
  color: #1b1f26;
  background:
    linear-gradient(135deg, #ffffff 0%, #ffffff 58%, #f3f6f9 100%);
  border: 1px solid rgba(217, 223, 230, 0.95);
  box-shadow:
    0 28px 58px rgba(17, 24, 32, 0.10),
    0 10px 18px rgba(17, 24, 32, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

body.home-page .hero-shell::before {
  content: "";
  position: absolute;
  left: 40px;
  right: 40px;
  top: 0;
  height: 6px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(90deg, #c81b15 0%, #e40909 44%, rgba(228, 9, 9, 0) 78%);
  pointer-events: none;
}

body.home-page .hero-shell::after {
  content: none;
}

body.home-page .hero-copy,
body.home-page .hero-spotlight {
  position: relative;
  z-index: 2;
}

body.home-page .hero-copy {
  isolation: isolate;
  padding-right: 24px;
}

body.home-page .hero-copy::before {
  content: "";
  position: absolute;
  inset: -10px 0 -10px -10px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(249, 251, 253, 0.62));
  border: 1px solid rgba(234, 238, 243, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  opacity: 0.86;
  z-index: -2;
}

body.home-page .hero-copy::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -12px;
  width: 1px;
  height: calc(100% - 20px);
  background: linear-gradient(180deg, rgba(194, 201, 209, 0), rgba(194, 201, 209, 0.88) 18%, rgba(194, 201, 209, 0.38) 82%, rgba(194, 201, 209, 0));
  z-index: -1;
}

body.home-page .hero-eyebrow,
body.home-page .section-kicker,
body.home-page .spotlight-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.home-page .hero-eyebrow {
  position: relative;
  padding-left: 44px;
  background: #ffffff;
  color: #b41f18;
  border: 1px solid rgba(228, 9, 9, 0.16);
  box-shadow: none;
  backdrop-filter: none;
}

body.home-page .hero-eyebrow::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  transform: translateY(-50%);
  box-shadow: 0 0 0 6px rgba(228, 9, 9, 0.10);
}

body.home-page .hero-copy h1 {
  font-family: "League Spartan", "Arial Narrow", sans-serif;
  font-weight: 800;
  font-size: clamp(3.7rem, 6.4vw, 5.45rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  margin: 22px 0 20px;
  color: #1c2028;
  text-transform: none;
  text-wrap: balance;
  max-width: 18.4ch;
}

body.home-page .hero-copy h1 span {
  display: inline-block;
  color: var(--brand);
  text-shadow: none;
  white-space: nowrap;
}

body.home-page .hero-copy h1 .hero-title-dark {
  color: #1c2028;
}

body.home-page .hero-lead {
  max-width: 50ch;
  width: min(100%, 50ch);
  font-size: clamp(1.12rem, 1.55vw, 1.28rem);
  line-height: 1.58;
  color: #4c5661;
}

body.home-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

body.home-page .hero-btn {
  --btn-accent: rgba(228, 9, 9, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 0 16px 0 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

body.home-page .hero-btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    linear-gradient(120deg, transparent 0%, transparent 32%, rgba(255, 255, 255, 0.82) 50%, transparent 68%, transparent 100%);
  transform: translateX(-130%);
  transition: transform 0.7s ease;
  z-index: -1;
}

body.home-page .hero-btn::after {
  content: "";
  position: absolute;
  width: 112px;
  height: 112px;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid var(--btn-accent);
  transform: translate(-50%, -50%) scale(0.32);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease;
  z-index: -1;
}

body.home-page .hero-btn:hover {
  transform: translateY(-4px);
}

body.home-page .hero-btn:hover::before {
  transform: translateX(130%);
}

body.home-page .hero-btn:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.08);
}

body.home-page .hero-btn--primary {
  --btn-accent: rgba(255, 255, 255, 0.30);
  color: #fff;
  background: linear-gradient(180deg, #d81d17, #bc1712);
  box-shadow:
    0 18px 34px rgba(216, 29, 23, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 26px, 100% 100%, 0 100%);
}

body.home-page .hero-btn--secondary {
  --btn-accent: rgba(228, 9, 9, 0.22);
  color: #1b1f26;
  background: #ffffff;
  border-color: rgba(207, 214, 221, 0.95);
  box-shadow:
    0 12px 24px rgba(17, 24, 32, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: none;
  clip-path: polygon(24px 0, 100% 0, 100% 100%, 0 100%, 0 24px);
}

body.home-page .hero-btn--secondary:hover {
  border-color: rgba(228, 9, 9, 0.42);
  color: #bc1712;
}

body.home-page .home-price-board {
  position: relative;
}

body.home-page .price-board-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: end;
  padding: 28px 28px 18px;
  border-radius: 28px 28px 0 0;
  background:
    linear-gradient(135deg, #161a20 0%, #1f252e 62%, #2a313d 100%);
  color: #fff;
  box-shadow: 0 26px 48px rgba(10, 14, 19, 0.18);
}

body.home-page .price-board-shell .section-title {
  margin: 16px 0 12px;
  color: #fff;
  text-align: left;
}

body.home-page .price-board-lead {
  max-width: 54ch;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.76);
}

body.home-page .price-board-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body.home-page .price-station,
body.home-page .price-updated {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

body.home-page .price-station__label,
body.home-page .price-updated span {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

body.home-page .price-station strong,
body.home-page .price-updated strong {
  font-size: 1.08rem;
  line-height: 1.35;
}

body.home-page .price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 22px 22px 18px;
  background:
    linear-gradient(180deg, #f7f8fa, #ffffff);
  border: 1px solid rgba(209, 215, 222, 0.95);
  border-top: 0;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 22px 40px rgba(18, 25, 34, 0.08);
}

body.home-page .price-card {
  position: relative;
  overflow: hidden;
  min-height: 176px;
  padding: 20px 20px 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(216, 221, 228, 0.95);
  box-shadow: 0 14px 28px rgba(18, 25, 34, 0.06);
}

body.home-page .price-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #e40909, #f39a24);
}

body.home-page .price-card__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(228, 9, 9, 0.08);
  color: #b71c16;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.home-page .price-card h3 {
  margin: 16px 0 8px;
  font-size: 1.2rem;
  color: #1b2028;
}

body.home-page .price-card__value {
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: 6px;
  color: #11161d;
}

body.home-page .price-card__value strong {
  font-family: "League Spartan", "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

body.home-page .price-card__value span {
  font-size: 0.95rem;
  font-weight: 700;
  color: #6b7480;
  padding-bottom: 4px;
}

body.home-page .price-card p {
  margin-top: 14px;
  color: #5a6470;
  line-height: 1.6;
  font-size: 0.95rem;
}

body.home-page .price-board-note {
  margin: 16px 8px 0;
  color: #57616d;
  line-height: 1.7;
  font-size: 0.96rem;
}

body.home-page .home-proof__header {
  margin-bottom: 14px;
}

body.home-page .home-proof__header .section-title {
  text-align: left;
  margin: 16px 0 0;
}

body.home-page .home-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

body.home-page .proof-card {
  padding: 24px 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, #ffffff, #f7f9fb);
  border: 1px solid rgba(220, 225, 231, 0.95);
  box-shadow: 0 14px 30px rgba(17, 24, 32, 0.06);
}

body.home-page .proof-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(180deg, #e40909, #c61712);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 14px 24px rgba(228, 9, 9, 0.20);
}

body.home-page .proof-card h3 {
  margin: 18px 0 10px;
  font-size: 1.2rem;
  color: #1a1f27;
}

body.home-page .proof-card p {
  color: #5a6470;
  line-height: 1.68;
}

body.home-page .business-cta__shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 26px;
  padding: 30px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 32%),
    linear-gradient(135deg, #13171d 0%, #1a2028 58%, #212833 100%);
  color: #fff;
  box-shadow: 0 28px 52px rgba(12, 16, 22, 0.18);
}

body.home-page .business-cta__copy h2 {
  margin: 16px 0 14px;
  font-family: "League Spartan", "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

body.home-page .business-cta__copy p {
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

body.home-page .business-cta__details {
  display: grid;
  gap: 18px;
  align-content: center;
}

body.home-page .business-cta__points {
  display: grid;
  gap: 12px;
}

body.home-page .business-cta__points div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

body.home-page .business-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2px;
}

body.home-page .business-cta__actions .hero-btn--secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.20);
  box-shadow: none;
}

body.home-page .business-cta__actions .hero-btn--secondary:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.10);
}

body.home-page .hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 36px;
  position: relative;
  border: 1px solid rgba(20, 26, 34, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 247, 250, 0.96));
  box-shadow:
    0 20px 40px rgba(17, 24, 32, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  overflow: hidden;
}

body.home-page .hero-metrics::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(228, 9, 9, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(228, 9, 9, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.65;
  pointer-events: none;
}

body.home-page .hero-metric {
  position: relative;
  min-height: 168px;
  padding: 28px 18px 22px;
  background: rgba(255, 255, 255, 0.82);
  border-right: 1px solid rgba(20, 26, 34, 0.12);
  overflow: hidden;
  transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
  z-index: 0;
  isolation: isolate;
}

body.home-page .hero-metric::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(228, 9, 9, 0.2), #e40909, rgba(228, 9, 9, 0.18));
}

body.home-page .hero-metric::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  left: 50%;
  top: 54%;
  border-radius: 50%;
  border: 1px solid rgba(228, 9, 9, 0.12);
  background: radial-gradient(circle, rgba(228, 9, 9, 0) 58%, rgba(228, 9, 9, 0.04) 59%, rgba(228, 9, 9, 0.06) 100%);
  transform: translate(-50%, -50%) scale(0.72);
  opacity: 0.9;
  transition: transform 0.38s ease, opacity 0.32s ease, background 0.38s ease, border-color 0.38s ease;
  z-index: 0;
}

body.home-page .hero-metric:nth-child(1)::before {
  content: "";
}

body.home-page .hero-metric:nth-child(2)::before {
  content: "";
}

body.home-page .hero-metric:nth-child(3)::before {
  content: "";
}

body.home-page .hero-metric:nth-child(4)::before {
  content: "";
}

body.home-page .hero-metric:last-child {
  border-right: 0;
}

body.home-page .hero-metric:hover,
body.home-page .hero-metric.is-active {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(228, 9, 9, 0.08);
}

body.home-page .hero-metric:hover::after,
body.home-page .hero-metric.is-active::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  border-color: rgba(228, 9, 9, 0.02);
  background: radial-gradient(circle, rgba(255, 255, 255, 0) 58%, rgba(228, 9, 9, 0.9) 59%, rgba(207, 21, 16, 0.98) 100%);
}

body.home-page .hero-metric strong {
  display: block;
  position: relative;
  z-index: 2;
  font-family: "League Spartan", "Arial Narrow", sans-serif;
  font-size: clamp(2.5rem, 3.6vw, 3.15rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #1c232c;
  margin-top: 12px;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  width: auto;
  text-shadow: 0 0 0 rgba(228, 9, 9, 0);
  transition: color 0.28s ease, text-shadow 0.28s ease, transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

body.home-page .hero-metric:hover strong,
body.home-page .hero-metric.is-active strong {
  color: #cf1d17;
  text-shadow: none;
  transform: scale(1.01);
}

body.home-page .hero-metric-value {
  will-change: transform, contents;
}

body.home-page .hero-metric span {
  display: block;
  position: relative;
  z-index: 2;
  margin-top: 14px;
  color: #5a616a;
  line-height: 1.45;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  max-width: none;
}

body.home-page .hero-metric:hover span,
body.home-page .hero-metric.is-active span {
  color: #51627f;
}

body.home-page .hero-spotlight {
  display: grid;
  align-content: start;
  gap: 14px;
  padding-top: 6px;
}

body.home-page .hero-spotlight::before {
  content: none;
}

body.home-page .spotlight-card {
  position: relative;
  min-height: 360px;
  max-width: none;
  margin-left: 0;
  padding: 30px 30px 28px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(14, 18, 24, 0.12) 0%, rgba(14, 18, 24, 0.48) 48%, rgba(14, 18, 24, 0.88) 100%),
    url("images/kavaje naten 2.jpg") center / cover no-repeat;
  border: 1px solid rgba(34, 41, 50, 0.18);
  box-shadow:
    0 26px 46px rgba(17, 24, 32, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

body.home-page .spotlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0) 30%, rgba(0, 0, 0, 0.16) 100%);
  pointer-events: none;
}

body.home-page .spotlight-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 22px 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.06));
}

body.home-page .spotlight-label {
  align-self: flex-start;
  position: relative;
  z-index: 1;
  padding: 8px 14px;
  background: #e40909;
  color: #ffffff;
  border: 0;
  box-shadow: none;
}

body.home-page .spotlight-label::before {
  content: none;
}

body.home-page .spotlight-card h2 {
  font-family: "League Spartan", "Arial Narrow", sans-serif;
  font-size: clamp(2.55rem, 4.35vw, 3.55rem);
  line-height: 1.03;
  margin: 22px 0 14px;
  letter-spacing: -0.026em;
  color: #ffffff;
  position: relative;
  z-index: 1;
  max-width: 14.8ch;
}

body.home-page .spotlight-card p {
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.18vw, 1.24rem);
  line-height: 1.62;
  position: relative;
  z-index: 1;
}

body.home-page .spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  margin-left: 0;
}

body.home-page .spotlight-mini {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  color: #17191d;
  border: 1px solid rgba(215, 221, 228, 0.95);
  box-shadow:
    0 14px 26px rgba(17, 24, 32, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease, background 0.26s ease;
}

body.home-page .spotlight-mini::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: #e40909;
  transition: height 0.26s ease, opacity 0.26s ease;
}

body.home-page .spotlight-mini::after {
  content: "";
  position: absolute;
  inset: auto -40px -46px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 9, 9, 0.18) 0%, rgba(228, 9, 9, 0.08) 34%, rgba(228, 9, 9, 0) 72%);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.26s ease, transform 0.26s ease;
  pointer-events: none;
}

body.home-page .spotlight-mini__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #e40909;
  color: #ffffff;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: none;
  transition: transform 0.26s ease, box-shadow 0.26s ease, background 0.26s ease;
}

body.home-page .spotlight-mini h3 {
  font-size: 1.16rem;
  line-height: 1.28;
  margin-bottom: 8px;
  color: #1d232c;
  transition: color 0.26s ease;
}

body.home-page .spotlight-mini p {
  color: #59606a;
  line-height: 1.65;
  transition: color 0.26s ease;
}

body.home-page .spotlight-mini:hover,
body.home-page .spotlight-mini:focus-within {
  transform: translateY(-6px);
  border-color: rgba(228, 9, 9, 0.22);
  background: linear-gradient(180deg, #ffffff 0%, #fff6f5 100%);
  box-shadow:
    0 22px 34px rgba(17, 24, 32, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

body.home-page .spotlight-mini:hover::before,
body.home-page .spotlight-mini:focus-within::before {
  height: 6px;
}

body.home-page .spotlight-mini:hover::after,
body.home-page .spotlight-mini:focus-within::after {
  opacity: 1;
  transform: scale(1);
}

body.home-page .spotlight-mini:hover .spotlight-mini__icon,
body.home-page .spotlight-mini:focus-within .spotlight-mini__icon {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 12px 22px rgba(228, 9, 9, 0.20);
}

body.home-page .spotlight-mini:hover h3,
body.home-page .spotlight-mini:focus-within h3 {
  color: #c91b15;
}

body.home-page .spotlight-mini:hover p,
body.home-page .spotlight-mini:focus-within p {
  color: #465468;
}

body.home-page .slider-showcase {
  margin-bottom: 26px;
}

body.home-page .showcase-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 22px;
  padding: 12px 18px 0;
  position: relative;
}

body.home-page .section-kicker {
  background: #ffffff;
  color: #a1261e;
  border: 1px solid rgba(228, 9, 9, 0.16);
  box-shadow: 0 10px 22px rgba(228, 9, 9, 0.06);
}

body.home-page .showcase-title {
  font-size: clamp(2.6rem, 4.8vw, 4.65rem);
  line-height: 0.96;
  color: #d21b15;
  margin-top: 6px;
  margin-bottom: 0;
  max-width: none;
  letter-spacing: -0.055em;
  text-wrap: nowrap;
}

body.home-page .showcase-header p {
  max-width: 62ch;
  justify-self: center;
  align-self: center;
  color: #4d5560;
  line-height: 1.58;
  font-size: clamp(1.12rem, 1.25vw, 1.32rem);
  margin: 0;
  padding: 0;
  border-left: 0;
  position: relative;
}

body.home-page .slider {
  margin: 0;
  border-radius: 28px;
  box-shadow: 0 24px 58px rgba(12, 18, 30, 0.14);
}

body.home-page .list {
  height: clamp(480px, 64vh, 760px);
}

body.home-page .thumbnail {
  padding: 16px 18px 20px;
  background: #ffffff;
}

body.home-page .about {
  margin-top: 16px;
  margin-bottom: 14px;
  gap: 28px;
  padding: 22px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(220, 224, 230, 0.95);
  box-shadow: 0 18px 34px rgba(20, 27, 36, 0.05);
}

body.home-page .about__img {
  min-height: 420px;
}

body.home-page .about__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6px 4px 6px 0;
  gap: 0;
}

body.home-page .about__text .section-kicker,
body.home-page .services-header .section-kicker,
body.home-page .products-header .section-kicker {
  align-self: center;
  width: fit-content;
  margin-bottom: 18px;
}

body.home-page .about__text h3 {
  font-size: clamp(3.1rem, 6vw, 4.4rem);
  line-height: 0.95;
  margin: 0 0 16px;
  color: #d21b15;
  text-align: center;
}

body.home-page .about__text p {
  font-size: clamp(1.14rem, 1.18vw, 1.28rem);
  line-height: 1.68;
  color: #30343b;
  text-align: left;
  max-width: 64ch;
}

body.home-page .about-highlights--home {
  margin: 0 0 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
}

body.home-page .about-highlights--home div {
  border-left: none;
  border-radius: 16px;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid rgba(220, 224, 230, 0.95);
  box-shadow: 0 12px 24px rgba(20, 27, 36, 0.04);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.02rem, 1.08vw, 1.18rem);
  line-height: 1.28;
}

body.home-page .services {
  background: #ffffff !important;
}

body.home-page .products {
  background: #ffffff !important;
}

body.home-page .home-locations {
  position: relative;
  margin: 32px auto 28px;
  padding: 34px 34px 36px;
  width: min(100% - 40px, 1480px);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94)),
    radial-gradient(circle at top left, rgba(229, 35, 26, 0.08), transparent 36%);
  border: 1px solid rgba(223, 229, 236, 0.92);
  box-shadow: 0 24px 56px rgba(16, 24, 38, 0.10);
}

body.home-page #products,
body.home-page #locations {
  background: #ffffff !important;
}

body.home-page #products::before,
body.home-page #products::after,
body.home-page #locations::before,
body.home-page #locations::after,
body.home-page .services::before,
body.home-page .services::after,
body.home-page .products::before,
body.home-page .products::after {
  content: none !important;
}

body.home-page .locations-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 32px;
  align-items: end;
  margin-bottom: 24px;
  padding: 0;
}

body.home-page .locations-intro > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

body.home-page .locations-intro .section-kicker {
  width: fit-content;
  min-width: 0;
  padding: 9px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(229, 35, 26, 0.16);
  color: #b92b20;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(16, 24, 38, 0.05);
}

body.home-page .locations-intro .section-title {
  margin: 12px 0 10px;
  text-align: left;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}

body.home-page .locations-intro p {
  color: #536273;
  line-height: 1.55;
  font-size: clamp(1.08rem, 1.22vw, 1.24rem);
  max-width: 78ch;
  white-space: normal;
  margin: 0;
  justify-self: start;
}

body.home-page .map-link-cta {
  justify-self: end;
  align-self: center;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(180deg, var(--brand), #b90707);
  padding: 17px 26px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 16px 30px rgba(228, 9, 9, 0.20);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.home-page .map-link-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 32px rgba(228, 9, 9, 0.24);
}

body.home-page #locations #map {
  margin: 0;
  max-width: none;
  height: 540px;
  border: 4px solid #df3327;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(10, 16, 26, 0.14);
}

@media (max-width: 1100px) {
  body.home-page .hero-shell,
  body.home-page .showcase-header,
  body.home-page .locations-intro {
    grid-template-columns: 1fr;
  }

  body.home-page .hero-shell {
    padding: 32px 28px 28px;
    gap: 20px;
  }

  body.home-page .hero-shell::before {
    left: 28px;
    right: 28px;
    top: 0;
    height: 6px;
  }

  body.home-page .hero-copy {
    padding-right: 0;
  }

  body.home-page .hero-copy::before,
  body.home-page .hero-copy::after {
    content: none;
  }

  body.home-page .spotlight-card,
  body.home-page .spotlight-grid {
    margin-left: 0;
    max-width: none;
    width: 100%;
  }

  body.home-page .spotlight-grid {
    grid-template-columns: 1fr 1fr;
  }

  body.home-page .showcase-header p,
  body.home-page .locations-intro p,
  body.home-page .map-link-cta {
    justify-self: start;
  }

  body.home-page .showcase-header {
    gap: 14px;
    padding: 12px 0 0;
  }

  body.home-page .showcase-header p {
    max-width: 46ch;
    padding: 0;
  }

  body.home-page .hero-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body.home-page .locations-intro {
    gap: 18px;
    padding: 0;
    margin-bottom: 22px;
  }

  body.home-page .locations-intro > div {
    width: 100%;
  }

  body.home-page .locations-intro p {
    max-width: 64ch;
  }
}

@media (max-width: 700px) {
  body.home-page {
    padding-top: calc(var(--nav-h) + 12px);
  }

  body.home-page .hero-panel,
  body.home-page .slider-showcase,
  body.home-page .home-locations {
    padding-left: 0;
    padding-right: 0;
  }

  body.home-page .hero-panel {
    margin-top: 12px;
    margin-bottom: 18px;
  }

  body.home-page .hero-shell {
    padding: 24px 18px 20px;
    border-radius: 22px;
    gap: 18px;
    width: 100%;
    max-width: 100%;
  }

  body.home-page .hero-shell::before {
    left: 18px;
    right: 18px;
    top: 0;
    height: 6px;
  }

  body.home-page .hero-copy h1,
  body.home-page .showcase-title,
  body.home-page .about__text h3,
  body.home-page .section-title {
    letter-spacing: -0.03em;
  }

  body.home-page .hero-copy h1 {
    font-size: clamp(2.35rem, 9.8vw, 3.85rem);
    max-width: 18.4ch;
  }

  body.home-page .hero-copy,
  body.home-page .hero-spotlight,
  body.home-page .hero-metric,
  body.home-page .spotlight-mini {
    min-width: 0;
  }

  body.home-page .hero-lead {
    max-width: none;
  }

  body.home-page .showcase-header {
    padding: 8px 0 0;
    margin-bottom: 20px;
  }

  body.home-page .showcase-title {
    max-width: 11.5ch;
    font-size: clamp(2.4rem, 10vw, 3.4rem);
    line-height: 0.94;
    white-space: normal;
    text-wrap: balance;
  }

  body.home-page .showcase-header p {
    max-width: none;
    padding: 0;
    border-left: 0;
  }

  body.home-page .hero-actions,
  body.home-page .spotlight-grid,
  body.home-page .about-highlights--home,
  body.home-page .locations-intro {
    grid-template-columns: 1fr;
  }

  body.home-page .hero-actions {
    flex-direction: column;
  }

  body.home-page .hero-btn {
    width: 100%;
    text-align: center;
    min-width: 0;
    letter-spacing: 0.1em;
  }

  body.home-page .locations-intro {
    gap: 14px;
    margin-bottom: 18px;
  }

  body.home-page .locations-intro .section-title {
    margin-bottom: 8px;
    font-size: clamp(2.55rem, 11vw, 3.4rem);
  }

  body.home-page .locations-intro p,
  body.home-page .map-link-cta {
    max-width: none;
  }

  body.home-page .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  body.home-page .hero-metric {
    min-height: 144px;
    border: 1px solid rgba(20, 26, 34, 0.12);
    box-shadow:
      0 14px 24px rgba(17, 24, 32, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }

  body.home-page .hero-metric strong {
    margin-top: 8px;
    font-size: 2.4rem;
  }

  body.home-page .hero-metric:last-child {
    border-right: 1px solid rgba(20, 26, 34, 0.12);
  }

  body.home-page .spotlight-card {
    min-height: 300px;
    padding: 22px 20px 20px;
  }

  body.home-page .spotlight-card h2 {
    font-size: clamp(2.1rem, 9vw, 2.7rem);
    max-width: none;
  }

  body.home-page .spotlight-grid {
    grid-template-columns: 1fr;
  }

  body.home-page .spotlight-mini:nth-child(1),
  body.home-page .spotlight-mini:nth-child(2) {
    transform: none;
  }

  body.home-page .list {
    height: 50vh;
    min-height: 360px;
  }

  body.home-page .about {
    padding: 16px;
    border-radius: 24px;
  }

  body.home-page .about__img {
    min-height: 300px;
  }

  body.home-page .home-locations {
    width: calc(100% - 24px);
    margin-top: 24px;
    margin-bottom: 22px;
    padding: 24px 16px 18px;
    border-radius: 26px;
  }

  body.home-page #locations #map {
    height: 430px;
    border-radius: 20px;
  }

  .floating-social {
    right: 12px;
    bottom: 110px;
    gap: 10px;
  }

  #scrollTopBtn {
    right: 12px;
  }

  .social-btn,
  #scrollTopBtn {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }
}

/* SLIDER */
.slider {
  position: relative;
  max-width: 1400px;
  margin: 20px auto;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.list {
  position: relative;
  height: clamp(520px, 72vh, 820px);
}

.list .item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, transform 2s ease-in-out;
  transform: scale(1.05);
}

.list .item.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  transform: scale(1);
}

.list .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.list .item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45), transparent 40%);
  z-index: 1;
}

/* arrows */
.arrows {
  position: absolute;
  top: 43%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(-50%);
  z-index: 6;
  padding: 0 25px;
  pointer-events: none;
}

.arrows button {
  pointer-events: all;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  font-size: 24px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.arrows button:hover { background: #fff; transform: scale(1.08); }

/* thumbnail */
.thumbnail {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  background: #fff;
  border-top: 1px solid #eee;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.05);
}

.thumbnail .item {
  flex: 0 0 auto;
  width: 150px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #fafafa;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.thumbnail .item img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}

.thumbnail .item:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 rgba(228, 9, 9, 0.3); }
  50% { box-shadow: 0 0 10px rgba(228, 9, 9, 0.4); }
}

.thumbnail .item.active {
  outline: 2px solid var(--brand);
  animation: pulse 2s infinite;
  filter: brightness(1.1);
}

/* SLIDER – MOBILE 
=================== */
@media (max-width: 700px) {

  /* Reduce slider height */
  .list {
    height: 62vh; 
    min-height: 420px;
  }

  /* Move arrows up & make smaller */
  .arrows {
    top: 38%;
    padding: 0 12px;
  }

  .arrows button {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  /* Thumbnails cleanup */
  .thumbnail {
    padding: 10px 10px 14px;
    gap: 8px;
  }

  .thumbnail .item {
    width: 110px;
    height: 74px;
  }

  /* Keep floating socials aligned above the scroll-to-top button */
  .floating-social {
    bottom: 110px;
  }

  .slider {
    overflow: visible;
  }


}


/* FADE-IN */
.fade-in {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 0.82s var(--motion-soft),
    transform 0.82s var(--motion-soft);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.fade-in.visible { 
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.fade-in.reveal-left {
  transform: translate3d(-28px, 0, 0);
}

.fade-in.reveal-right {
  transform: translate3d(28px, 0, 0);
}

.fade-in.reveal-scale {
  transform: translate3d(0, 18px, 0) scale(0.975);
}

.fade-in.reveal-soft {
  transform: translate3d(0, 14px, 0);
}

.fade-in.visible.reveal-left,
.fade-in.visible.reveal-right,
.fade-in.visible.reveal-scale,
.fade-in.visible.reveal-soft {
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-child {
  transition-delay: var(--reveal-delay, 0ms);
}

@media (max-width: 820px) {
  body.home-page .fade-in,
  body.home-page .fade-in.reveal-left,
  body.home-page .fade-in.reveal-right,
  body.home-page .fade-in.reveal-scale,
  body.home-page .fade-in.reveal-soft,
  body.home-page .motion-child {
    opacity: 1 !important;
    transform: none !important;
    transition-delay: 0ms !important;
  }
}

.premium-hover {
  transition:
    transform 0.28s var(--motion-spring),
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    filter 0.28s ease;
}

.premium-hover:hover {
  transform: translateY(-5px);
  box-shadow: var(--premium-shadow);
}

.premium-hover:active {
  transform: translateY(-2px) scale(0.99);
}

.navbar,
.hero-shell,
.products-hero-panel,
.contact-commercial__media,
.contact-commercial__panel,
.about-v2-hero__shell,
.about-v2-timeline__shell,
.pg-header__inner,
.loyalty-hero,
.locations-page-hero__copy {
  animation: premiumPageSettle 0.72s var(--motion-soft) both;
}

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

@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .fade-in.reveal-left,
  .fade-in.reveal-right,
  .fade-in.reveal-scale,
  .fade-in.reveal-soft,
  .navbar,
  .hero-shell,
  .products-hero-panel,
  .contact-commercial__media,
  .contact-commercial__panel,
  .about-v2-hero__shell,
  .about-v2-timeline__shell,
  .pg-header__inner,
  .loyalty-hero,
  .locations-page-hero__copy {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* SCROLL TO TOP */
#scrollTopBtn {
  position: fixed;
  right: 18px;
  bottom: 48px; 
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 700px) {
  #scrollTopBtn {
    right: 12px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }
}

/* =========================================================
   04. GALLERY PAGE
   Coverflow gallery and image grid
   ========================================================= */

body.gallery-page {
  --gallery-surface: rgba(255, 255, 255, 0.08);
  --gallery-border: rgba(255, 255, 255, 0.14);
  --gallery-text: #f5f7fb;
  --gallery-muted: rgba(228, 234, 241, 0.76);
  --gallery-accent: #d52b1e;
  background: linear-gradient(135deg, #121c2f 0%, #1c2740 100%);
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--gallery-text);
}

/* =========================================================
   05. CONTACT AND LOYALTY SUPPORT SECTIONS
   Contact concepts, support banners, contact page form
   ========================================================= */

/* Contact concepts: optional contact layout previews */
body.contact-concepts-page {
  background:
    radial-gradient(circle at top left, rgba(228, 9, 9, 0.12), transparent 18%),
    linear-gradient(180deg, #f6f8fb 0%, #ffffff 24%, #ffffff 100%);
}

.contact-concepts {
  max-width: 1440px;
  margin: 0 auto;
  padding: 118px 20px 96px;
}

.contact-concepts__hero {
  max-width: 760px;
  margin-bottom: 38px;
}

.contact-concepts__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(228, 9, 9, 0.08);
  color: #bc1712;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-concepts__hero h1 {
  margin: 18px 0 14px;
  font-family: "League Spartan", "Arial Narrow", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #151b24;
}

.contact-concepts__hero p {
  max-width: 58ch;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #56606e;
}

.contact-concepts__grid {
  display: grid;
  gap: 24px;
}

/* LOYALTY SUPPORT BANNER
====================== */
.support-banner-section {
  max-width: 1400px;
  margin: 0 auto 28px;
  padding: 0 20px;
}

.support-banner {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(135deg, #bf1f19 0%, #d52b1e 52%, #b71a15 100%);
  color: #fff;
  box-shadow: 0 28px 52px rgba(156, 22, 17, 0.22);
}

.support-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(170, 18, 18, 0.82) 0%, rgba(187, 26, 24, 0.68) 38%, rgba(187, 26, 24, 0.12) 72%),
    url("images/tirane (2).jpg") center / cover no-repeat;
  filter: saturate(1.02);
  pointer-events: none;
}

.support-banner--loyalty-photo::before {
  background:
    linear-gradient(90deg, rgba(168, 25, 20, 0.68) 0%, rgba(189, 37, 28, 0.52) 30%, rgba(189, 37, 28, 0.14) 62%, rgba(20, 8, 8, 0.08) 100%),
    url("images/karta e besnikerise banner.jpeg") 70% 32% / 104% auto no-repeat;
}

.support-banner__hero,
.support-banner__meta {
  position: relative;
  z-index: 1;
}

.support-banner__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 24px;
  align-items: center;
  padding: 34px 40px 0;
}

.support-banner__copy {
  max-width: 600px;
  padding-bottom: 34px;
}

.support-banner__copy h2 {
  max-width: 15ch;
  margin: 0;
  font-family: "League Spartan", "Arial Narrow", sans-serif;
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.support-banner__rule {
  width: 72px;
  height: 4px;
  margin: 16px 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}

.support-banner__copy p {
  max-width: 34ch;
  margin: 0 0 24px;
  color: rgba(255, 244, 244, 0.92);
  font-size: 1.1rem;
  line-height: 1.6;
}

.support-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 62px;
  padding: 0 24px;
  border-radius: 18px;
  background: #fff;
  color: #cb231b;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.02rem;
  box-shadow: 0 18px 28px rgba(124, 15, 15, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-banner__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 34px rgba(124, 15, 15, 0.22);
}

.support-banner__button i {
  font-size: 0.95rem;
}

.support-banner__visual {
  position: relative;
  min-height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-banner__card {
  width: min(320px, 100%);
  filter: drop-shadow(0 24px 36px rgba(103, 8, 8, 0.34));
  transform: translateX(18px) rotate(12deg);
}

.support-banner__hand {
  position: absolute;
  right: -18px;
  bottom: -8px;
  width: min(270px, 76%);
  pointer-events: none;
}

.support-banner--loyalty-photo .support-banner__visual,
.support-banner--loyalty-photo .support-banner__card,
.support-banner--loyalty-photo .support-banner__hand {
  display: none;
}

.support-banner__meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 24px 40px 30px;
  background: #fff;
  color: #17202c;
}

.support-banner__meta-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.support-banner__meta-item + .support-banner__meta-item {
  border-left: 1px solid rgba(24, 33, 46, 0.14);
  padding-left: 26px;
}

.support-banner__meta-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(228, 9, 9, 0.08);
  color: #d52b1e;
  font-size: 1.28rem;
  flex-shrink: 0;
}

.support-banner__meta-item p {
  margin: 0;
  line-height: 1.55;
  color: #333c49;
}

.support-banner__meta-item strong {
  display: block;
  color: #111722;
}

body.home-page .support-banner-section {
  margin-bottom: 24px;
}

body.contact-page-body .support-banner-section {
  padding-top: 6px;
}

body.contact-page-body .support-banner-section,
body.home-page .support-banner-section {
  max-width: 1440px;
}

body.contact-page-body .contact-support-banner {
  margin-top: 118px;
  margin-bottom: 28px;
}

@media (max-width: 980px) {
  .support-banner__hero,
  .support-banner__meta {
    grid-template-columns: 1fr;
  }

  .support-banner__hero {
    padding: 28px 24px 0;
  }

  .support-banner__copy {
    padding-bottom: 10px;
  }

  .support-banner__visual {
    min-height: 220px;
    justify-content: flex-end;
  }

  .support-banner__card {
    width: min(280px, 82%);
    transform: rotate(9deg);
  }

  .support-banner__hand {
    width: min(230px, 68%);
  }

  .support-banner__meta {
    padding: 22px 24px 26px;
  }

  .support-banner__meta-item + .support-banner__meta-item {
    border-left: 0;
    border-top: 1px solid rgba(24, 33, 46, 0.14);
    padding-left: 0;
    padding-top: 18px;
  }
}

@media (max-width: 700px) {
  .support-banner-section {
    padding: 0 14px;
  }

  .support-banner {
    border-radius: 24px;
  }

  .support-banner__copy h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .support-banner__copy p {
    font-size: 1rem;
  }

  .support-banner__button {
    width: 100%;
  }

  .support-banner__visual {
    min-height: 180px;
    justify-content: center;
  }

  .support-banner__card {
    width: min(250px, 88%);
    transform: none;
  }

  .support-banner__hand {
    display: none;
  }

  .support-banner__meta-item {
    align-items: flex-start;
  }
}

.contact-concept {
  padding: 28px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(220, 225, 232, 0.95);
  box-shadow: 0 22px 44px rgba(17, 24, 32, 0.08);
}

.contact-concept__label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-concept__label span {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111723;
  color: #fff;
  font-weight: 800;
}

.contact-concept__label strong {
  font-size: 1.25rem;
  color: #141a23;
}

.contact-concept__preview {
  border-radius: 28px;
  overflow: hidden;
}

.contact-concept__note {
  margin-top: 16px;
  max-width: 62ch;
  line-height: 1.7;
  color: #53606f;
}

.concept-shell {
  min-height: 480px;
}

.concept-shell--corporate {
  padding: 34px;
  background:
    linear-gradient(135deg, #ffffff 0%, #f7f9fb 100%);
}

.concept-shell__split {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 420px);
  gap: 28px;
  align-items: stretch;
}

.concept-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.concept-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.concept-shell--corporate .concept-kicker {
  background: rgba(17, 23, 35, 0.08);
  color: #a41a15;
}

.concept-copy h2,
.concept-overlay h2,
.concept-editorial-copy h2 {
  font-family: "League Spartan", "Arial Narrow", sans-serif;
  letter-spacing: -0.04em;
}

.concept-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.3rem, 4.5vw, 4rem);
  line-height: 0.96;
  color: #171c24;
}

.concept-copy p {
  max-width: 38ch;
  color: #5a6470;
  line-height: 1.75;
}

.concept-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.concept-pills span {
  padding: 11px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(214, 220, 226, 0.95);
  color: #1b2230;
  font-size: 0.9rem;
}

.concept-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 28px;
  background: #111723;
}

.concept-form input,
.concept-form textarea {
  width: 100%;
  border: 0;
  border-radius: 16px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
}

.concept-form textarea {
  min-height: 150px;
  resize: none;
}

.concept-form button,
.concept-editorial-panel button {
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.concept-form button {
  min-height: 52px;
  border-radius: 16px;
  background: linear-gradient(180deg, #e40909, #c51612);
  color: #fff;
}

.concept-shell--commercial {
  position: relative;
  min-height: 540px;
  background: #0f1624;
}

.concept-shell__media,
.concept-shell__media img {
  width: 100%;
  height: 100%;
}

.concept-shell__media img {
  object-fit: cover;
  display: block;
}

.concept-overlay {
  position: absolute;
  inset: auto 28px 28px 28px;
  padding: 26px;
  border-radius: 28px;
  background: rgba(12, 18, 30, 0.78);
  backdrop-filter: blur(8px);
  color: #fff;
}

.concept-overlay h2 {
  max-width: 8ch;
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  line-height: 0.92;
  margin-bottom: 12px;
}

.concept-overlay p {
  max-width: 40ch;
  color: rgba(233, 238, 246, 0.82);
  line-height: 1.7;
}

.concept-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.concept-actions a {
  min-width: 130px;
  padding: 14px 18px;
  border-radius: 16px;
  text-decoration: none;
  text-align: center;
  font-weight: 800;
  background: #fff;
  color: #111723;
}

.concept-shell--editorial {
  display: grid;
  grid-template-columns: 180px 1fr 360px;
  gap: 24px;
  padding: 34px;
  background:
    linear-gradient(135deg, #121c2f 0%, #1c2740 100%);
  color: #fff;
}

.concept-stack {
  display: grid;
  gap: 16px;
}

.concept-stat {
  padding: 22px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.concept-stat strong {
  display: block;
  font-family: "League Spartan", "Arial Narrow", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 0.95;
}

.concept-stat span {
  display: block;
  margin-top: 8px;
  color: rgba(228, 234, 241, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
}

.concept-editorial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.concept-shell--editorial .concept-kicker {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.concept-editorial-copy h2 {
  max-width: 10ch;
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  line-height: 0.94;
}

.concept-editorial-panel {
  align-self: end;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.concept-editorial-panel p {
  color: rgba(228, 234, 241, 0.84);
  line-height: 1.8;
}

.concept-editorial-panel button {
  width: 100%;
  min-height: 52px;
  margin-top: 18px;
  border-radius: 16px;
  background: #fff;
  color: #122038;
}

@media (max-width: 1100px) {
  .concept-shell__split,
  .concept-shell--editorial {
    grid-template-columns: 1fr;
  }

  .concept-copy h2,
  .concept-editorial-copy h2 {
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .contact-concepts {
    padding-left: 14px;
    padding-right: 14px;
  }

  .contact-concept {
    padding: 18px;
    border-radius: 24px;
  }

  .concept-shell,
  .concept-shell--commercial {
    min-height: auto;
  }

  .concept-shell--corporate,
  .concept-shell--editorial {
    padding: 20px;
  }

  .concept-overlay {
    inset: auto 14px 14px 14px;
    padding: 18px;
  }

  .concept-actions a {
    min-width: 0;
    flex: 1 1 100%;
  }
}

body.gallery-page .gallery-coverflow {
  max-width: 1440px;
  margin: 0 auto;
  padding: 34px 24px 40px;
}

body.gallery-page .gallery-coverflow__intro {
  display: block;
  max-width: 980px;
  margin: 0 auto 16px;
  text-align: center;
}

body.gallery-page .gallery-coverflow__kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 11px;
  border: 1px solid var(--gallery-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(228, 234, 241, 0.76);
}

body.gallery-page .gallery-coverflow__intro h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  color: var(--brand);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.04em;
}

body.gallery-page .gallery-coverflow__intro p {
  font-size: 1.02rem;
  color: var(--gallery-text);
  max-width: 42ch;
  margin: 0 auto;
  line-height: 1.7;
}

body.gallery-page .gallery-coverflow__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  min-width: 420px;
}

body.gallery-page .gallery-coverflow__stats div {
  padding: 16px 16px 14px;
  border: 1px solid var(--gallery-border);
  border-radius: 20px;
  background: #ffffff;
}

body.gallery-page .gallery-coverflow__stats strong {
  display: block;
  font: 700 1.6rem/1 Georgia, "Times New Roman", serif;
}

body.gallery-page .gallery-coverflow__stats span {
  display: block;
  margin-top: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.58);
}

body.gallery-page .gallery-coverflow__frame {
  position: relative;
  min-height: clamp(390px, 40vw, 600px);
  margin-bottom: 20px;
  overflow: hidden;
}

body.gallery-page .gallery-coverflow__track {
  position: relative;
  width: min(100%, 1160px);
  margin: 0 auto;
  height: clamp(390px, 40vw, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: none;
}

body.gallery-page .gallery-coverflow__card {
  position: absolute;
  width: min(36vw, 520px);
  aspect-ratio: 0.84 / 1;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--gallery-border);
  background-color: rgba(255, 255, 255, 0.04);
  background-image: var(--gallery-img);
  background-position: center;
  background-size: cover;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

body.gallery-page .gallery-coverflow__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.gallery-page .gallery-coverflow__card.is-active {
  opacity: 1;
  z-index: 4;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

body.gallery-page .gallery-coverflow__card.is-prev {
  opacity: 1;
  z-index: 3;
  pointer-events: auto;
  transform: translateX(-74%) translateY(18px) scale(0.68) rotate(-5deg);
}

body.gallery-page .gallery-coverflow__card.is-next {
  opacity: 1;
  z-index: 3;
  pointer-events: auto;
  transform: translateX(74%) translateY(18px) scale(0.68) rotate(5deg);
}

body.gallery-page .gallery-coverflow__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: 1px solid var(--gallery-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f5f7fb;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  z-index: 5;
}

body.gallery-page .gallery-coverflow__arrow--prev {
  left: max(18px, calc(50% - min(100%, 1160px) / 2 + 12px));
}

body.gallery-page .gallery-coverflow__arrow--next {
  right: max(18px, calc(50% - min(100%, 1160px) / 2 + 12px));
}

body.gallery-page .gallery-coverflow__arrow:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(calc(-50% - 2px));
}

body.gallery-page .gallery-coverflow__caption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: end;
  max-width: min(48vw, 700px);
  margin: 0 auto;
}

body.gallery-page .gallery-coverflow__count {
  font: 700 0.86rem/1 "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(228, 234, 241, 0.7);
}

body.gallery-page .gallery-coverflow__caption h2 {
  font: 700 clamp(2rem, 4vw, 3.6rem)/0.95 Georgia, "Times New Roman", serif;
  margin-bottom: 8px;
}

body.gallery-page .gallery-coverflow__caption p {
  color: var(--gallery-muted);
}

@media (max-width: 900px) {
  body.gallery-page .gallery-coverflow {
    padding-top: 104px;
  }

  body.gallery-page .gallery-coverflow__intro {
    max-width: 100%;
  }

  body.gallery-page .gallery-coverflow__stats {
    min-width: 0;
  }

  body.gallery-page .gallery-coverflow__card {
    width: min(52vw, 500px);
  }

  body.gallery-page .gallery-coverflow__card.is-prev {
    transform: translateX(-68%) scale(0.66);
  }

  body.gallery-page .gallery-coverflow__card.is-next {
    transform: translateX(68%) scale(0.66);
  }
}

@media (max-width: 600px) {
  body.gallery-page .gallery-coverflow {
    padding-top: 82px;
    padding-left: 12px;
    padding-right: 12px;
  }

  body.gallery-page .gallery-coverflow__intro {
    margin-bottom: 18px;
  }

  body.gallery-page .gallery-coverflow__intro h1 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  body.gallery-page .gallery-coverflow__stats {
    grid-template-columns: repeat(3, 1fr);
  }

  body.gallery-page .gallery-coverflow__frame {
    min-height: 420px;
  }

  body.gallery-page .gallery-coverflow__track {
    height: 420px;
  }

  body.gallery-page .gallery-coverflow__card {
    width: 72vw;
    border-radius: 20px;
  }

  body.gallery-page .gallery-coverflow__card.is-prev {
    transform: translateX(-57%) scale(0.58);
  }

  body.gallery-page .gallery-coverflow__card.is-next {
    transform: translateX(57%) scale(0.58);
  }

  body.gallery-page .gallery-coverflow__caption {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.gallery-page .gallery-coverflow__caption h2 {
    font-size: clamp(1.6rem, 8vw, 2.4rem);
  }
}

@media (prefers-reduced-motion: no-preference) {
  body.gallery-page .gallery-coverflow {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@keyframes galleryFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.gallery-page .gallery-hive {
  max-width: 1440px;
  margin: 0 auto;
  padding: 22px 24px 88px;
}

body.gallery-page .gallery-hive__intro {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

body.gallery-page .gallery-hive__kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(228, 234, 241, 0.78);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.gallery-page .gallery-hive__intro h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 0.98;
  color: #ffffff;
  letter-spacing: -0.04em;
}

body.gallery-page .gallery-hive__intro p {
  max-width: 44ch;
  margin: 0 auto;
  color: rgba(228, 234, 241, 0.74);
  line-height: 1.7;
}

body.gallery-page .gallery-hive__grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr 0.82fr;
  grid-template-areas:
    "hero tall square"
    "hero wide wide"
    "detail wide wide";
  gap: 20px;
  align-items: stretch;
}

body.gallery-page .gallery-hive__tile {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.04);
  background-image: var(--gallery-img);
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  box-shadow: 0 24px 48px rgba(9, 14, 24, 0.22);
}

body.gallery-page .gallery-hive__tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 15, 24, 0.04) 0%, rgba(10, 15, 24, 0.34) 100%);
  z-index: 1;
  pointer-events: none;
}

body.gallery-page .gallery-hive__tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

body.gallery-page .gallery-hive__tile:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 56px rgba(9, 14, 24, 0.3);
}

body.gallery-page .gallery-hive__tile:hover img {
  transform: scale(1.04);
}

body.gallery-page .gallery-hive__overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.gallery-page .gallery-hive__eyebrow {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.gallery-page .gallery-hive__overlay h3 {
  margin: 0;
  max-width: 10ch;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

body.gallery-page .gallery-hive__tile--hero {
  grid-area: hero;
  min-height: 560px;
}

body.gallery-page .gallery-hive__tile--tall {
  grid-area: tall;
  min-height: 300px;
}

body.gallery-page .gallery-hive__tile--square {
  grid-area: square;
  min-height: 300px;
}

body.gallery-page .gallery-hive__tile--wide {
  grid-area: wide;
  min-height: 280px;
}

body.gallery-page .gallery-hive__tile--detail {
  grid-area: detail;
  min-height: 280px;
}

@media (max-width: 900px) {
  body.gallery-page .gallery-hive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "hero hero"
      "tall square"
      "wide wide"
      "detail detail";
  }

  body.gallery-page .gallery-hive__tile--hero {
    min-height: 460px;
  }

  body.gallery-page .gallery-hive__tile--tall,
  body.gallery-page .gallery-hive__tile--square,
  body.gallery-page .gallery-hive__tile--wide,
  body.gallery-page .gallery-hive__tile--detail {
    min-height: 250px;
  }
}

@media (max-width: 600px) {
  body.gallery-page .gallery-hive {
    padding: 18px 12px 64px;
  }

  body.gallery-page .gallery-hive__intro {
    margin-bottom: 24px;
  }

  body.gallery-page .gallery-hive__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero"
      "tall"
      "square"
      "wide"
      "detail";
    gap: 14px;
  }

  body.gallery-page .gallery-hive__tile,
  body.gallery-page .gallery-hive__tile--hero,
  body.gallery-page .gallery-hive__tile--tall,
  body.gallery-page .gallery-hive__tile--square,
  body.gallery-page .gallery-hive__tile--wide,
  body.gallery-page .gallery-hive__tile--detail {
    min-height: 260px;
    border-radius: 24px;
    box-shadow: 0 16px 30px rgba(10, 16, 28, 0.18);
  }

  body.gallery-page .gallery-hive__overlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  body.gallery-page .gallery-hive__overlay h3 {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }
}

/* ABOUT */
.about {
  max-width: 1400px;
  margin: 24px auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.about__text h3 {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 8px;
}

.about__text p { color: #2b2b2b; line-height: 1.55; }

@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
}

/* SERVICES */
.services {
  background: linear-gradient(180deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: 92px 20px 34px;
  position: relative;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* Header */
.services-header {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-header h2 {
  font-size: clamp(38px, 5vw, 52px);
  color: #e40909;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
}

.services-header .subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: #555;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 0 10px;
  max-width: 1400px;
  margin: 0 auto;
}


/* Card */
.service-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(228, 9, 9, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 15px 40px rgba(228, 9, 9, 0.15),
    0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: rgba(228, 9, 9, 0.3);
}

/* Image Container */
.service-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
}

.service-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(228, 9, 9, 0.05) 100%
  );
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-image::before {
  opacity: 1;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
  transform: scale(1.12);
}

/* Content */
.service-content {
  padding: 32px 28px 36px;
  text-align: center;
}

.service-content h3 {
  font-size: 26px;
  color: #2d2d2d;
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.service-content p {
  font-size: 16px;
  line-height: 1.65;
  color: #666;
  margin-bottom: 22px;
  min-height: 55px;
}

/* CTA Link */
.service-cta {
  display: inline-block;
  color: #e40909;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.service-cta::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 2px;
  background: #e40909;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.service-cta:hover {
  color: #c30707;
}

.service-cta:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Red accent corner */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 60px 60px 0;
  border-color: transparent #e40909 transparent transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.service-card:hover::before {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .services {
    padding: 64px 16px 52px;
  }

  .services-header {
    margin-bottom: 38px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .service-image {
    height: 240px;
  }

  .service-content p {
    min-height: auto;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Current homepage services layout */
body.home-page .services {
  padding: 68px 0 44px;
  background:
    radial-gradient(circle at 14% 10%, rgba(228, 9, 9, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
}

body.home-page .services-container {
  max-width: 1360px;
}

body.home-page .services-header {
  max-width: 860px;
  margin: 0 auto 44px;
}

body.home-page .services-header h2 {
  font-size: clamp(48px, 5vw, 74px);
  letter-spacing: -0.04em;
  line-height: 0.94;
}

body.home-page .services-header .subtitle {
  max-width: 820px;
  margin: 0 auto;
  color: #5d6470;
}

body.home-page .services-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  padding: 0;
}

body.home-page .service-card {
  grid-column: span 4;
  display: grid;
  grid-template-rows: 238px 1fr;
  min-height: 520px;
  border-radius: 22px;
  border: 1px solid rgba(228, 9, 9, 0.12);
  background: #fff;
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.08);
}

body.home-page .service-card:nth-child(4),
body.home-page .service-card:nth-child(5) {
  grid-column: span 6;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  grid-template-rows: auto;
  min-height: 330px;
}

body.home-page .service-card::before {
  border-width: 0 46px 46px 0;
}

body.home-page .service-card:hover {
  transform: translateY(-7px);
  box-shadow:
    0 30px 70px rgba(15, 23, 42, 0.12),
    0 12px 30px rgba(228, 9, 9, 0.10);
}

body.home-page .service-image {
  height: 100%;
  min-height: 0;
}

body.home-page .service-card:nth-child(4) .service-image,
body.home-page .service-card:nth-child(5) .service-image {
  min-height: 330px;
}

body.home-page .service-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  z-index: 1;
  background: linear-gradient(to top, rgba(4, 10, 22, 0.38), transparent);
  pointer-events: none;
}

body.home-page .service-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 28px 28px;
  text-align: left;
}

body.home-page .service-content h3 {
  margin-bottom: 12px;
  color: #111827;
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1.13;
  letter-spacing: -0.035em;
}

body.home-page .service-content p {
  min-height: 0;
  margin-bottom: 18px;
  color: #5f6877;
  font-size: clamp(17px, 1.18vw, 19px);
  line-height: 1.5;
}

body.home-page .service-cta {
  align-self: flex-start;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  color: #e40909;
  border: 1px solid rgba(228, 9, 9, 0.28);
  background: rgba(228, 9, 9, 0.045);
}

body.home-page .service-cta::after {
  display: none;
}

body.home-page .service-cta:hover {
  color: #fff;
  background: #e40909;
  border-color: #e40909;
}

@media (max-width: 1050px) {
  body.home-page .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-page .service-card,
  body.home-page .service-card:nth-child(4),
  body.home-page .service-card:nth-child(5) {
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 230px 1fr;
    min-height: 500px;
  }

  body.home-page .service-card:nth-child(4) .service-image,
  body.home-page .service-card:nth-child(5) .service-image {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  body.home-page .services {
    padding: 50px 16px 34px;
  }

  body.home-page .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body.home-page .service-card,
  body.home-page .service-card:nth-child(4),
  body.home-page .service-card:nth-child(5) {
    min-height: auto;
    grid-template-rows: 220px auto;
  }

  body.home-page .service-content {
    padding: 24px 22px 26px;
    text-align: left;
  }
}

/* =========================================================
   06. PRODUCTS PAGE SECTIONS AND PRODUCT CARDS
   Product grid, redesigned product families, hero media
   ========================================================= */
#products,
.products {
  padding: 38px 20px 72px;
  background: #f6f7f9;
}

.products-wrap {
  max-width: 1400px;
  margin: auto;
}

.products-groups {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@keyframes redLineLoad {
  0% {
    background-position: 120% 0;
  }
  100% {
    background-position: -120% 0;
  }
}

/* HEADER */
.products-header {
  text-align: center;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.products-header h2 {
  font-size: clamp(40px, 5vw, 54px);
  font-weight: 900;
  color: var(--brand);
  margin: 0 0 8px;
}

.products-header p {
  font-size: 18px;
  color: #555;
}

.product-family {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(249,250,252,0.98));
  border: 1px solid rgba(228,9,9,0.10);
  border-radius: 32px;
  padding: 22px;
  box-shadow: 0 18px 45px rgba(16,24,40,0.08);
}

.product-family::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 4px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(228, 9, 9, 0.16), #ff4b2b, #f04b2a, rgba(228, 9, 9, 0.16));
  background-size: 220% 100%;
  animation: redLineLoad 2.4s linear infinite;
}

.product-family--accent {
  background:
    radial-gradient(circle at top right, rgba(228,9,9,0.08), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,249,251,1));
}

.product-family__header {
  max-width: 780px;
  margin-bottom: 18px;
}

.product-family__kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(228,9,9,0.08);
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-family__header h3 {
  margin: 14px 0 10px;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.1;
  color: #171717;
}

.product-family__header p {
  margin: 0;
  color: #4f4f55;
  font-size: 16px;
  line-height: 1.7;
}

/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.products-grid--family {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}

.products-grid--family > .product-card {
  grid-column: span 4;
}

.products-grid--family:has(> .product-card:nth-child(5):last-child) > .product-card:nth-child(4) {
  grid-column: 3 / span 4;
}

.products-grid--family:has(> .product-card:nth-child(5):last-child) > .product-card:nth-child(5) {
  grid-column: 7 / span 4;
}

.products-grid--dual {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.products-grid--family.products-grid--dual {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.products-grid--family.products-grid--dual > .product-card {
  grid-column: auto;
}

.products-grid--single {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
}

/* CARD */
.product-card {
  background: #fff;
  border-radius: 24px;
  padding: 26px 24px 22px;
  border: 1px solid rgba(228,9,9,0.12);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 16px 40px rgba(0,0,0,0.14),
    0 0 30px rgba(228,9,9,0.16);
}

/* TITLE ROW */
.product-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.product-title h3 {
  font-size: 21px;
  font-weight: 800;
  margin: 0;
  line-height: 1.3;
}

/* BADGE */
.badge {
  background: linear-gradient(180deg, #e40909, #c50707);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* DESCRIPTION */
.product-desc {
  color: #333;
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 34ch;
  flex: 1 1 auto;
}

.products-grid--dual .product-desc,
.products-grid--single .product-desc {
  max-width: 46ch;
}

/* TAGS */
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-tags span {
  background: #f2f3f6;
  border: 1px solid #e4e6eb;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: #222;
}

.product-card--feature {
  width: min(100%, 760px);
  max-width: 760px;
  padding: 34px;
  border-radius: 28px;
  box-shadow:
    0 16px 42px rgba(16,24,40,0.10),
    0 0 36px rgba(228,9,9,0.08);
}

.product-card--feature .product-title h3 {
  font-size: clamp(30px, 4vw, 40px);
}

.product-card--feature .product-desc {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.75;
}

.product-card--feature .product-tags {
  gap: 10px;
}

.product-card--feature .product-tags span {
  padding: 9px 14px;
  font-size: 13px;
}

.products-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, #111111, #1e1e1e);
  color: #fff;
  box-shadow: 0 18px 50px rgba(17,17,17,0.24);
  margin-bottom: 0;
}

.products-cta p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  max-width: 700px;
}

.products-cta__button {
  flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid--family,
  .products-grid--dual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card--feature {
    width: 100%;
    max-width: 100%;
  }

  .products-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .products-grid,
  .products-grid--family,
  .products-grid--dual,
  .products-grid--single,
  .products-grid--family.products-grid--dual {
    grid-template-columns: 1fr;
  }

  .products-grid--family > .product-card,
  .products-grid--family.products-grid--dual > .product-card,
  .products-grid--family:has(> .product-card:nth-child(5):last-child) > .product-card,
  .products-grid--family:has(> .product-card:nth-child(5):last-child) > .product-card:nth-child(4),
  .products-grid--family:has(> .product-card:nth-child(5):last-child) > .product-card:nth-child(5) {
    grid-column: auto;
    width: 100%;
  }
}

@media (max-width: 650px) {
  .products-grid,
  .products-grid--family,
  .products-grid--dual,
  .products-grid--single {
    grid-template-columns: 1fr;
  }

  .products-grid--family > .product-card,
  .products-grid--family.products-grid--dual > .product-card,
  .products-grid--family:has(> .product-card:nth-child(5):last-child) > .product-card,
  .products-grid--family:has(> .product-card:nth-child(5):last-child) > .product-card:nth-child(4),
  .products-grid--family:has(> .product-card:nth-child(5):last-child) > .product-card:nth-child(5) {
    grid-column: auto;
    width: 100%;
  }

  .product-family {
    padding: 22px;
  }

  .product-card--feature {
    padding: 26px;
  }

  .product-card--feature .product-title h3 {
    font-size: 28px;
  }

  .product-card--feature .product-desc {
    font-size: 17px;
  }

  .products-cta {
    padding: 22px;
  }

  .products-cta__button {
    width: 100%;
    text-align: center;
  }
}

/* MAP INDEX PAGE
=================== */
#map {
  height: 600px;
  width: 100%;
  max-width: 1400px;
  margin: 20px auto;
  border: 4px solid var(--brand);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
}

@media (max-width: 700px) {
  #map {
    height: 400px;
    border-width: 3px;
  }
}
#products,
.products {
  background: #f6f7f9 !important;
  margin: 0 !important;
  padding: 38px 20px 20px !important;
  position: relative;
  z-index: 1;
}


#products::before,
#products::after,
.products::before,
.products::after {
  content: none !important;
}

/* PRODUCTS REDESIGN */
#products.products-redesign,
.products-redesign {
  padding: 52px 20px 84px !important;
  background:
    radial-gradient(circle at 12% 12%, rgba(228, 9, 9, 0.07), transparent 28%),
    linear-gradient(180deg, #f7f8fa 0%, #ffffff 42%, #f3f5f8 100%) !important;
  overflow: hidden;
}

.products-redesign .products-wrap {
  max-width: 1440px;
}

.products-hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.72fr);
  gap: 34px;
  align-items: stretch;
  margin-bottom: 24px;
  padding: 42px;
  overflow: hidden;
  border: 1px solid rgba(228, 9, 9, 0.12);
  border-radius: 38px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at 82% 18%, rgba(228, 9, 9, 0.09), transparent 36%);
  box-shadow: 0 26px 70px rgba(16, 24, 40, 0.10);
}

.products-hero-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 34px;
  right: 34px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(228, 9, 9, 0.18), #e40909, #ff7a45, rgba(228, 9, 9, 0.18));
  background-size: 220% 100%;
  animation: redLineLoad 2.4s linear infinite;
}

.products-hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 760px;
}

.products-hero-copy .section-kicker {
  margin-bottom: 18px;
}

.products-hero-copy h2 {
  margin: 0 0 16px;
  color: #111827;
  font-size: clamp(54px, 7vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.products-hero-copy p {
  margin: 0;
  max-width: 62ch;
  color: #536173;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.65;
}

.products-hero-media {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 28px 70px rgba(16, 24, 40, 0.22);
}

.products-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(12, 20, 38, 0.24));
}

.products-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transform: scale(1.02);
}

.products-redesign .products-groups {
  gap: 22px;
}

.products-redesign .product-family {
  position: relative;
  padding: 28px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(228, 9, 9, 0.13);
  background:
    radial-gradient(circle at 92% 0%, rgba(228, 9, 9, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  box-shadow: 0 22px 58px rgba(16, 24, 40, 0.09);
}

.products-redesign .product-family::before {
  left: 28px;
  right: 28px;
  height: 5px;
  background: linear-gradient(90deg, rgba(228, 9, 9, 0.16), #e40909, #ff884d, rgba(228, 9, 9, 0.16));
  background-size: 220% 100%;
  animation: redLineLoad 2.3s linear infinite;
}

.products-redesign .product-family__header {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin-bottom: 24px;
}

.products-redesign .product-family__kicker {
  background: rgba(228, 9, 9, 0.08);
  color: #d53124;
}

.products-redesign .product-family__header h3 {
  color: #111827;
  font-size: clamp(30px, 3.7vw, 48px);
  letter-spacing: -0.055em;
}

.products-redesign .product-family__header p {
  max-width: 78ch;
  color: #546173;
  font-size: 17px;
}

.products-grid--vehicles {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.products-grid--vehicles .product-card:nth-child(-n + 3) {
  grid-column: span 2;
}

.products-grid--vehicles .product-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.products-grid--vehicles .product-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.products-redesign .product-card {
  position: relative;
  gap: 14px;
  min-height: 230px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(16, 24, 40, 0.10);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.products-redesign .product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(228, 9, 9, 0.24);
  box-shadow: 0 28px 68px rgba(16, 24, 40, 0.15), 0 0 34px rgba(228, 9, 9, 0.10);
}

.product-card__icon {
  width: 68px;
  height: 68px;
  padding: 14px;
  border-radius: 20px;
  background: #fff2ef;
  box-shadow: inset 0 0 0 1px rgba(228, 9, 9, 0.06);
}

.products-redesign .product-card:not(.product-card--red) .product-card__icon {
  background: #f2f4f7;
}

.products-redesign .product-title h3 {
  color: #0f172a;
  font-size: clamp(23px, 2vw, 30px);
  letter-spacing: -0.04em;
}

.products-redesign .badge {
  background: linear-gradient(180deg, #e23529, #bb1e17);
  box-shadow: 0 10px 18px rgba(228, 9, 9, 0.18);
}

.products-redesign .product-card:not(.product-card--red) .badge {
  background: linear-gradient(180deg, #111827, #060914);
}

.products-redesign .product-desc {
  max-width: none;
  color: #536173;
  font-size: 16px;
}

.products-redesign .product-tags span {
  color: #475569;
  background: #f8fafc;
  border-color: #e2e8f0;
}

.products-trust-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 170px repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(228, 9, 9, 0.13);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.08);
}

.products-trust-strip__truck {
  width: 150px;
  max-width: 100%;
  filter: drop-shadow(0 16px 18px rgba(16, 24, 40, 0.18));
}

.products-trust-strip span {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 18px;
  color: #111827;
  font-weight: 900;
  background: #f8fafc;
}

.products-trust-strip i {
  color: #e23529;
  font-size: 20px;
}

.product-family--industrial {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08) !important;
  background:
    linear-gradient(135deg, rgba(8, 13, 24, 0.94), rgba(17, 24, 39, 0.98)),
    #111827 !important;
}

.product-family--industrial .product-family__visual {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
}

.product-family--industrial .product-family__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-family--industrial .product-family__header h3,
.product-family--industrial .product-family__header p {
  color: #fff;
}

.product-family--industrial .product-family__header p {
  color: rgba(255, 255, 255, 0.76);
}

.products-grid--industrial {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-family--industrial .product-card {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.product-family--industrial .product-title h3,
.product-family--industrial .product-desc {
  color: #fff;
}

.product-family--industrial .product-desc {
  color: rgba(255, 255, 255, 0.76);
}

.product-card__media {
  width: 100%;
  height: 170px;
  margin-bottom: 10px;
  object-fit: cover;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
}

.product-card__media--drop {
  object-fit: contain;
  padding: 22px;
}

.product-card--aviation {
  min-height: 330px;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  align-items: end;
  isolation: isolate;
}

.product-card__aviation-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.48;
}

.product-card__aviation-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card--aviation::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 48%, rgba(255, 255, 255, 0.36) 100%);
}

.product-card__aviation-copy {
  max-width: 620px;
}

.product-card__aviation-truck {
  width: 100%;
  max-width: 360px;
  justify-self: end;
  filter: drop-shadow(0 22px 20px rgba(16, 24, 40, 0.20));
}

.products-redesign .products-cta {
  margin-top: 2px;
  padding: 18px 20px 18px 26px;
  border-radius: 26px;
  background: linear-gradient(135deg, #0b0f17, #181a1f);
  box-shadow: 0 26px 58px rgba(8, 13, 24, 0.22);
}

.products-redesign .products-cta p {
  color: #fff;
  font-weight: 900;
}

.products-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 16px 24px;
  border-radius: 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-decoration: none;
  background: linear-gradient(135deg, #e23529, #b91f18);
  box-shadow: 0 14px 26px rgba(228, 9, 9, 0.28);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.products-cta__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 34px rgba(228, 9, 9, 0.34);
}

@media (max-width: 1100px) {
  .products-hero-panel {
    grid-template-columns: 1fr;
  }

  .products-grid--vehicles,
  .products-grid--industrial {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-grid--vehicles .product-card,
  .products-grid--vehicles .product-card:nth-child(4),
  .products-grid--vehicles .product-card:nth-child(5) {
    grid-column: auto;
  }

  .products-trust-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  #products.products-redesign,
  .products-redesign {
    padding: 34px 14px 58px !important;
  }

  .products-hero-panel,
  .products-redesign .product-family {
    padding: 24px;
    border-radius: 28px;
  }

  .products-hero-media,
  .products-hero-media img {
    min-height: 260px;
  }

  .products-grid--vehicles,
  .products-grid--industrial,
  .products-trust-strip,
  .product-card--aviation {
    grid-template-columns: 1fr;
  }

  .products-redesign .product-card {
    min-height: auto;
  }

  .product-card__aviation-truck {
    justify-self: start;
    max-width: 280px;
  }

  .products-redesign .products-cta {
    align-items: stretch;
  }

  .products-cta__button {
    width: 100%;
  }
}

/* PRODUCTS IMAGE SHOWCASE */
#products.products-showcase {
  padding: 18px 20px 34px !important;
  background:
    radial-gradient(circle at 18% 8%, rgba(228, 9, 9, 0.08), transparent 24%),
    linear-gradient(180deg, #eef3f7 0%, #ffffff 36%, #f3f5f8 100%) !important;
}

.products-showcase .products-wrap {
  max-width: 1510px;
}

.products-showcase .products-hero-panel {
  min-height: 430px;
  margin-bottom: -6px;
  padding: 60px 38px 70px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.98) 0%, rgba(248, 250, 252, 0.88) 42%, rgba(248, 250, 252, 0.08) 74%),
    radial-gradient(circle at 42% 48%, rgba(228, 9, 9, 0.10), transparent 34%);
  box-shadow: none;
}

.products-showcase .products-hero-panel::before {
  content: none;
}

.products-showcase .products-kicker {
  position: relative;
  left: 330px;
  width: max-content;
  padding: 13px 22px;
  border: 1px solid rgba(228, 9, 9, 0.35);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: #e40909;
  box-shadow: 0 14px 32px rgba(228, 9, 9, 0.10);
}

.products-showcase .products-kicker i {
  color: #e40909;
}

.products-showcase .products-hero-copy {
  max-width: 760px;
}

.products-showcase .products-hero-copy h2 {
  color: #08090c;
  font-size: clamp(58px, 6.1vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.products-showcase .products-hero-copy h2 span {
  display: block;
  color: #e40909;
}

.products-showcase .products-hero-copy p {
  max-width: 560px;
  color: #171923;
  font-size: 20px;
  line-height: 1.48;
}

.products-hero-mark {
  display: block;
  width: 76px;
  height: 4px;
  margin-top: 26px;
  border-radius: 999px;
  background: #e40909;
}

.products-showcase .products-hero-media {
  position: absolute;
  inset: 0 0 auto auto;
  width: 58%;
  height: 430px;
  min-height: 430px;
  border-radius: 0 0 0 26px;
  box-shadow: none;
}

.products-showcase .products-hero-media::after {
  background: linear-gradient(90deg, rgba(248, 250, 252, 0.18), rgba(248, 250, 252, 0));
}

.products-showcase .products-hero-media img {
  min-height: 430px;
  object-position: center;
}

.products-showcase .products-groups {
  position: relative;
  z-index: 2;
  gap: 16px;
}

.products-showcase .product-family {
  border-radius: 28px;
}

.products-showcase .product-family::before {
  content: none;
}

.products-showcase .product-family--vehicles {
  padding: 72px 18px 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(228, 9, 9, 0.12);
  backdrop-filter: blur(18px);
}

.product-family__kicker--floating {
  position: absolute;
  top: 22px;
  left: 38px;
  gap: 8px;
  padding: 11px 20px;
  background: #e40909 !important;
  color: #fff !important;
  box-shadow: 0 14px 26px rgba(228, 9, 9, 0.22);
}

.products-showcase .products-grid--vehicles {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.products-showcase .products-grid--vehicles .product-card,
.products-showcase .products-grid--vehicles .product-card:nth-child(4),
.products-showcase .products-grid--vehicles .product-card:nth-child(5) {
  grid-column: auto;
}

.products-showcase .product-card {
  min-height: 244px;
  padding: 24px 22px 20px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 18px 38px rgba(16, 24, 40, 0.12);
}

.products-showcase .product-card--fuel {
  isolation: isolate;
  padding-right: 76px;
}

.product-card__topline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.product-card__symbol {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 12px 22px rgba(228, 9, 9, 0.16);
}

.product-card__symbol--dark {
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.14);
}

.products-showcase .product-title {
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 0;
}

.products-showcase .product-title h3 {
  color: #111111;
  font-size: clamp(20px, 1.55vw, 25px);
  line-height: 1.05;
}

.products-showcase .badge {
  padding: 5px 11px;
  font-size: 10px;
  background: linear-gradient(180deg, #f21c1c, #cf0808) !important;
}

.products-showcase .product-desc {
  position: relative;
  z-index: 2;
  color: #171923;
  font-size: 14px;
  line-height: 1.62;
}

.product-card__nozzle {
  position: absolute;
  right: -16px;
  bottom: 24px;
  z-index: 1;
  width: 112px;
  max-height: 172px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(15, 23, 42, 0.18));
  transition: transform 0.3s ease;
}

.product-card--fuel:hover .product-card__nozzle {
  transform: translateY(-6px) rotate(-2deg);
}

.products-showcase .product-tags {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.products-showcase .product-tags span {
  padding: 7px 11px;
  color: #475569;
  font-size: 11px;
  background: #f3f4f6;
}

.products-showcase .products-trust-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1180px;
  margin: 22px auto 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
}

.products-showcase .products-trust-strip span {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 4px 14px;
  min-height: 86px;
  padding: 18px 22px;
  background: transparent;
}

.products-showcase .products-trust-strip i {
  grid-row: span 2;
  align-self: center;
  justify-self: center;
  color: #e40909;
  font-size: 25px;
}

.products-showcase .products-trust-strip strong,
.products-showcase .products-trust-strip small {
  display: block;
  align-self: end;
}

.products-showcase .products-trust-strip small {
  align-self: start;
  color: #111827;
  font-size: 14px;
  font-weight: 600;
}

.products-showcase .products-trust-strip__highlight {
  color: #fff !important;
  background: linear-gradient(135deg, #f21b1b, #c90000) !important;
}

.products-showcase .products-trust-strip__highlight i,
.products-showcase .products-trust-strip__highlight small {
  color: #fff;
}

.products-showcase .product-family--industrial {
  min-height: 410px;
  padding: 36px 40px 26px;
  border-radius: 26px;
  background: #101827 !important;
}

.products-showcase .product-family--industrial .product-family__visual {
  opacity: 0.74;
}

.products-showcase .product-family--industrial .product-family__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 18, 32, 0.98) 0%, rgba(11, 18, 32, 0.82) 42%, rgba(11, 18, 32, 0.22) 100%);
}

.products-showcase .product-family--industrial .product-family__kicker {
  gap: 8px;
  background: #e40909;
  color: #fff;
}

.products-showcase .product-family--industrial .product-family__header {
  max-width: 520px;
}

.products-showcase .product-family--industrial .product-family__header h3 {
  font-size: clamp(34px, 3.4vw, 48px);
}

.products-showcase .products-grid--industrial {
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  margin-top: 24px;
}

.products-showcase .product-family--industrial .product-card {
  min-height: 178px;
  padding: 24px 250px 22px 26px;
  border-color: rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(17, 26, 43, 0.82), rgba(31, 41, 58, 0.64));
}

.product-card__vehicle {
  position: absolute;
  right: 8px;
  bottom: -8px;
  width: 260px;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.32));
}

.product-card__drop {
  position: absolute;
  right: 44px;
  bottom: 20px;
  width: 104px;
  filter: drop-shadow(0 18px 16px rgba(0, 0, 0, 0.38));
}

.products-showcase .product-card--mazut {
  padding-right: 170px !important;
}

.products-showcase .product-family--aviation {
  min-height: 242px;
  display: grid;
  grid-template-columns: 0.92fr 1.25fr;
  gap: 24px;
  align-items: center;
  padding: 34px 40px;
  border: 0;
  background: #eaf5ff;
}

.products-showcase .product-family--aviation .product-family__visual {
  position: absolute;
  inset: 0;
  opacity: 0.78;
}

.products-showcase .product-family--aviation .product-family__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(239, 248, 255, 0.98) 0%, rgba(239, 248, 255, 0.82) 39%, rgba(239, 248, 255, 0.16) 100%);
}

.products-showcase .product-family__kicker--blue,
.products-showcase .badge--blue {
  background: #0757ae !important;
  color: #fff !important;
}

.products-showcase .product-family--aviation .product-family__header {
  margin: 0;
}

.products-showcase .product-family--aviation .product-family__header h3 {
  font-size: clamp(30px, 3vw, 44px);
}

.products-showcase .product-card--aviation {
  grid-template-columns: 80px minmax(0, 1fr) 260px;
  min-height: 158px;
  padding: 28px;
  align-items: center;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
}

.products-showcase .product-card--aviation::after {
  content: none;
}

.products-showcase .product-card__symbol--blue {
  width: 74px;
  height: 74px;
  box-shadow: 0 16px 28px rgba(7, 87, 174, 0.20);
}

.products-showcase .product-card__aviation-truck {
  max-width: 250px;
}

/* AVIATION SPECIAL PRODUCTS CLEANUP */
.products-showcase .product-family--aviation {
  min-height: 270px !important;
  grid-template-columns: minmax(360px, 0.9fr) minmax(560px, 1.1fr) !important;
  gap: clamp(26px, 3vw, 46px) !important;
  padding: 34px 40px !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  background:
    linear-gradient(105deg, rgba(236, 246, 255, 0.96) 0%, rgba(229, 241, 252, 0.86) 46%, rgba(190, 220, 248, 0.52) 100%) !important;
  box-shadow:
    0 22px 54px rgba(21, 80, 151, 0.10),
    inset 0 0 0 1px rgba(7, 87, 174, 0.10) !important;
}

.products-showcase .product-family--aviation .product-family__visual {
  opacity: 0.82 !important;
}

.products-showcase .product-family--aviation .product-family__visual::after {
  background:
    linear-gradient(90deg, rgba(236, 246, 255, 0.98) 0%, rgba(236, 246, 255, 0.82) 36%, rgba(236, 246, 255, 0.08) 100%),
    radial-gradient(circle at 70% 35%, rgba(7, 87, 174, 0.12), transparent 42%) !important;
}

.products-showcase .product-family--aviation .product-family__header {
  position: relative !important;
  z-index: 2 !important;
  max-width: 620px !important;
}

.products-showcase .product-family--aviation .product-family__kicker {
  padding: 9px 16px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  letter-spacing: 0.08em !important;
  box-shadow: 0 12px 24px rgba(7, 87, 174, 0.16) !important;
}

.products-showcase .product-family--aviation .product-family__header h3 {
  max-width: 17ch !important;
  margin-top: 18px !important;
  color: #111827 !important;
  font-size: clamp(38px, 3.6vw, 56px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.042em !important;
}

.products-showcase .product-family--aviation .product-family__header p {
  max-width: 52ch !important;
  color: #4c5b70 !important;
  font-size: clamp(17px, 1.1vw, 20px) !important;
  line-height: 1.5 !important;
}

.products-showcase .product-card--aviation {
  grid-template-columns: 78px minmax(0, 1fr) 270px !important;
  gap: 22px !important;
  min-height: 178px !important;
  padding: 26px 28px !important;
  border-radius: 24px !important;
  border: 1px solid rgba(7, 87, 174, 0.10) !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow:
    0 22px 48px rgba(21, 80, 151, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
}

.products-showcase .product-card__symbol--blue {
  width: 72px !important;
  height: 72px !important;
  box-shadow:
    0 14px 28px rgba(7, 87, 174, 0.20),
    0 0 0 6px rgba(7, 87, 174, 0.07) !important;
}

.products-showcase .product-card--aviation .product-title {
  gap: 10px !important;
  margin-bottom: 8px !important;
}

.products-showcase .product-card--aviation .product-title h3 {
  font-size: clamp(28px, 2.2vw, 38px) !important;
  line-height: 1 !important;
}

.products-showcase .product-card--aviation .badge--blue {
  padding: 8px 13px !important;
  font-size: 12px !important;
}

.products-showcase .product-card--aviation .product-desc {
  max-width: 42ch !important;
  font-size: clamp(16px, 1vw, 18px) !important;
  line-height: 1.48 !important;
}

.products-showcase .product-card--aviation .product-tags span {
  padding: 8px 13px !important;
  font-size: 13px !important;
}

.products-showcase .product-card__aviation-truck {
  width: 270px !important;
  max-width: 100% !important;
  border-radius: 0 !important;
  filter: drop-shadow(0 14px 18px rgba(7, 32, 68, 0.14)) !important;
}

@media (max-width: 1180px) {
  .products-showcase .product-family--aviation {
    grid-template-columns: 1fr !important;
    padding: 32px 28px !important;
  }

  .products-showcase .product-family--aviation .product-family__header h3 {
    max-width: 18ch !important;
  }

  .products-showcase .product-card--aviation {
    grid-template-columns: 74px minmax(0, 1fr) 250px !important;
  }

  .products-showcase .product-card__aviation-truck {
    width: 250px !important;
  }
}

@media (max-width: 760px) {
  .products-showcase .product-family--aviation {
    padding: 24px 18px !important;
  }

  .products-showcase .product-family--aviation .product-family__header h3 {
    font-size: clamp(34px, 9vw, 46px) !important;
  }

  .products-showcase .product-card--aviation {
    grid-template-columns: 68px minmax(0, 1fr) !important;
    padding: 22px !important;
  }

  .products-showcase .product-card__aviation-truck {
    grid-column: 1 / -1 !important;
    justify-self: end !important;
    width: min(100%, 320px) !important;
  }
}

.products-showcase .products-cta {
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(360px, 1fr) 260px;
  gap: 18px;
  align-items: center;
  padding: 18px 32px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 8% 48%, rgba(228, 9, 9, 0.34), transparent 18%),
    linear-gradient(135deg, #11131a, #1d1014 52%, #08090d);
}

.products-cta__lead {
  display: flex;
  gap: 16px;
  align-items: center;
}

.products-cta__lead i,
.products-cta__lead img {
  display: grid;
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  background: #e40909;
  box-shadow: 0 0 34px rgba(228, 9, 9, 0.58);
}

.products-cta__lead img {
  padding: 12px;
  object-fit: contain;
}

.products-showcase .products-cta p {
  font-size: clamp(21px, 1.85vw, 28px);
  line-height: 1.14;
}

.products-cta__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.products-cta__features span {
  display: grid;
  gap: 7px;
  justify-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.products-cta__features i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(228, 9, 9, 0.75);
  border-radius: 50%;
  color: #ff3a32;
}

.products-showcase .products-cta__button {
  min-width: 0;
  width: 100%;
  gap: 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff2727, #d40808);
}

@media (max-width: 1180px) {
  .products-showcase .products-grid--vehicles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-showcase .products-hero-media {
    width: 52%;
  }

  .products-showcase .products-kicker {
    left: 0;
  }

  .products-showcase .products-trust-strip,
  .products-showcase .products-cta,
  .products-showcase .product-family--aviation {
    grid-template-columns: 1fr;
  }

  .products-cta__features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .products-showcase .products-hero-panel {
    min-height: 0;
    padding: 32px 22px;
  }

  .products-showcase .products-hero-media {
    position: relative;
    width: 100%;
    min-height: 240px;
    height: 240px;
    border-radius: 24px;
    order: -1;
  }

  .products-showcase .products-hero-media img {
    min-height: 240px;
  }

  .products-showcase .products-grid--vehicles,
  .products-showcase .products-grid--industrial,
  .products-showcase .products-trust-strip,
  .products-cta__features,
  .products-showcase .product-card--aviation {
    grid-template-columns: 1fr;
  }

  .products-showcase .product-family--industrial .product-card,
  .products-showcase .product-card--mazut {
    padding-right: 24px !important;
  }

  .product-card__vehicle,
  .product-card__drop {
    position: static;
    width: min(260px, 80%);
    margin-top: 12px;
  }

  .products-showcase .product-card__aviation-truck {
    max-width: 300px;
    justify-self: start;
  }
}

/* PRODUCTS SHOWCASE POLISH */
.products-showcase .product-family--vehicles {
  padding: 58px 20px 20px;
}

.products-showcase .products-grid--vehicles {
  align-items: stretch;
  gap: 16px;
}

.products-showcase .products-grid--vehicles .product-card {
  height: auto;
  min-height: 0;
}

.products-showcase .product-card--fuel {
  display: grid;
  grid-template-rows: auto minmax(76px, auto) auto;
  align-content: start;
  min-height: 248px;
  padding: 22px 92px 22px 22px;
}

.products-showcase .product-card--fuel::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 132px;
  height: 118px;
  z-index: 0;
  border-radius: 28px 0 18px 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0), #ffffff 48%);
  pointer-events: none;
}

.products-showcase .product-card__topline {
  align-items: center;
  min-height: 58px;
  margin-bottom: 14px;
}

.products-showcase .product-card__symbol {
  width: 52px;
  height: 52px;
  border-radius: 16px;
}

.products-showcase .product-card--fuel .product-title {
  display: grid;
  gap: 7px;
}

.products-showcase .product-card--fuel .product-title h3 {
  max-width: 9ch;
  font-size: clamp(24px, 1.9vw, 34px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.products-showcase .product-card--fuel .badge {
  justify-self: start;
  padding: 7px 13px;
  font-size: 11px;
  line-height: 1;
}

.products-showcase .product-card--fuel .product-desc {
  max-width: 27ch;
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.55;
}

.products-showcase .product-card--fuel .product-tags {
  align-self: end;
  gap: 8px;
}

.products-showcase .product-card--fuel .product-tags span {
  padding: 7px 12px;
  border-color: #dde3ea;
  background: #f3f6f9;
}

.products-showcase .product-card__nozzle {
  right: -24px;
  bottom: 22px;
  width: 120px;
  max-height: 158px;
  z-index: 1;
  mix-blend-mode: normal;
}

.products-showcase .products-trust-strip {
  max-width: 1260px;
  margin-top: 18px;
}

.products-showcase .products-trust-strip span {
  min-height: 78px;
}

.products-showcase .product-family--industrial {
  margin-top: 4px;
}

@media (min-width: 1181px) {
  .products-showcase .products-grid--vehicles {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .products-showcase .product-card--fuel .product-title h3 {
    max-width: 8.5ch;
  }
}

@media (max-width: 1380px) and (min-width: 1181px) {
  .products-showcase .product-card--fuel {
    padding-right: 78px;
  }

  .products-showcase .product-card__nozzle {
    width: 106px;
    right: -26px;
  }

  .products-showcase .product-card--fuel .product-title h3 {
    font-size: 26px;
  }

  .products-showcase .product-card--fuel .product-desc {
    font-size: 14px;
  }
}

@media (max-width: 1180px) {
  .products-showcase .product-family--vehicles {
    padding: 64px 18px 20px;
  }

  .products-showcase .product-card--fuel {
    min-height: 260px;
    padding-right: 104px;
  }
}

@media (max-width: 820px) {
  #products.products-showcase {
    padding: 14px 12px 48px !important;
  }

  .products-showcase .products-hero-panel {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 12px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(16, 24, 40, 0.08);
  }

  .products-showcase .products-hero-copy h2 {
    font-size: clamp(42px, 14vw, 64px);
    line-height: 0.95;
  }

  .products-showcase .products-hero-copy p {
    font-size: 17px;
  }

  .products-showcase .product-family--vehicles {
    padding: 68px 12px 14px;
    border-radius: 26px;
  }

  .product-family__kicker--floating {
    left: 18px;
    top: 18px;
    padding: 10px 16px;
    font-size: 12px;
  }

  .products-showcase .products-grid--vehicles {
    gap: 14px;
  }

  .products-showcase .product-card--fuel {
    grid-template-rows: auto auto auto;
    min-height: 0;
    padding: 20px 96px 20px 20px;
    border-radius: 20px;
  }

  .products-showcase .product-card--fuel .product-title h3 {
    max-width: 12ch;
    font-size: 28px;
  }

  .products-showcase .product-card--fuel .product-desc {
    max-width: 30ch;
    font-size: 15px;
  }

  .products-showcase .product-card__nozzle {
    right: -20px;
    bottom: 18px;
    width: 112px;
    max-height: 146px;
  }

  .products-showcase .products-trust-strip span {
    grid-template-columns: 38px 1fr;
    min-height: 72px;
    padding: 15px 16px;
  }

  .products-showcase .product-family--industrial,
  .products-showcase .product-family--aviation {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .products-showcase .product-family--industrial .product-family__header h3,
  .products-showcase .product-family--aviation .product-family__header h3 {
    font-size: 32px;
  }

  .products-showcase .products-cta {
    padding: 18px 16px;
    border-radius: 22px;
  }

  .products-cta__lead {
    align-items: flex-start;
  }

  .products-cta__lead img {
    width: 58px;
    height: 58px;
  }

  .products-showcase .products-cta p {
    font-size: 22px;
  }
}

@media (max-width: 520px) {
  .products-showcase .product-card--fuel {
    padding: 18px 18px 164px;
  }

  .products-showcase .product-card--fuel::after {
    width: 172px;
    height: 150px;
  }

  .products-showcase .product-card__nozzle {
    right: 8px;
    bottom: 10px;
    width: 132px;
    max-height: 150px;
  }

  .products-showcase .product-card--fuel .product-desc {
    max-width: none;
  }

  .products-showcase .product-card--fuel .product-tags {
    max-width: calc(100% - 120px);
  }

  .products-showcase .product-card--aviation {
    padding: 20px;
  }
}

/* PRODUCTS VEHICLE CARDS 3-2 REFINEMENT */
.products-showcase .product-family--vehicles {
  padding: 66px 34px 28px;
}

.products-showcase .products-grid--vehicles {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px;
}

.products-showcase .products-grid--vehicles .product-card {
  grid-column: span 2;
}

.products-showcase .products-grid--vehicles .product-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.products-showcase .products-grid--vehicles .product-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.products-showcase .product-card--fuel {
  min-height: 310px;
  padding: 28px 150px 28px 28px;
}

.products-showcase .product-card--fuel::after {
  width: 190px;
  height: 184px;
  background:
    radial-gradient(circle at 100% 100%, rgba(228, 9, 9, 0.06), transparent 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0), #ffffff 42%);
}

.products-showcase .product-card__topline {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  min-height: 74px;
}

.products-showcase .product-card--fuel .product-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  column-gap: 16px;
}

.products-showcase .product-card--fuel .product-title h3 {
  max-width: none;
  font-size: clamp(34px, 2.8vw, 48px);
}

.products-showcase .product-card--fuel .badge {
  justify-self: end;
  margin-top: 7px;
  padding: 8px 14px;
  font-size: 12px;
  white-space: nowrap;
}

.products-showcase .product-card--fuel .product-desc {
  max-width: 34ch;
  font-size: 17px;
  line-height: 1.56;
}

.products-showcase .product-card__nozzle {
  right: -26px;
  bottom: 20px;
  width: 176px;
  max-height: 224px;
}

.products-showcase .product-card--fuel .product-tags {
  max-width: 76%;
}

.products-showcase .product-card--fuel .product-tags span {
  font-size: 12px;
}

.products-showcase .products-trust-strip {
  max-width: 1220px;
  margin-top: 26px;
}

@media (min-width: 1181px) {
  .products-showcase .products-grid--vehicles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 1320px;
    margin-inline: auto;
  }

  .products-showcase .products-grid--vehicles .product-card,
  .products-showcase .products-grid--vehicles .product-card:nth-child(4),
  .products-showcase .products-grid--vehicles .product-card:nth-child(5) {
    grid-column: auto;
  }

  .products-showcase .products-grid--vehicles .product-card:nth-child(5) {
    grid-column: 1 / -1;
    width: min(100%, 650px);
    justify-self: center;
  }
}

@media (max-width: 1180px) {
  .products-showcase .products-grid--vehicles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-showcase .products-grid--vehicles .product-card,
  .products-showcase .products-grid--vehicles .product-card:nth-child(4),
  .products-showcase .products-grid--vehicles .product-card:nth-child(5) {
    grid-column: auto;
  }

  .products-showcase .product-card--fuel {
    padding-right: 132px;
  }

  .products-showcase .product-card__nozzle {
    width: 152px;
  }
}

@media (max-width: 820px) {
  .products-showcase .product-family--vehicles {
    padding: 68px 14px 16px;
  }

  .products-showcase .products-grid--vehicles {
    grid-template-columns: 1fr;
  }

  .products-showcase .product-card--fuel {
    min-height: 0;
    padding: 22px 128px 24px 22px;
  }

  .products-showcase .product-card--fuel .product-title h3 {
    font-size: 32px;
  }

  .products-showcase .product-card--fuel .product-desc {
    font-size: 16px;
  }

  .products-showcase .product-card__nozzle {
    right: -18px;
    width: 138px;
    max-height: 178px;
  }
}

@media (max-width: 520px) {
  .products-showcase .product-card__topline {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .products-showcase .product-card--fuel .product-title {
    grid-template-columns: 1fr;
  }

  .products-showcase .product-card--fuel .badge {
    justify-self: start;
    margin-top: 2px;
  }

  .products-showcase .product-card--fuel {
    padding: 20px 20px 186px;
  }

  .products-showcase .product-card__nozzle {
    right: 14px;
    bottom: 12px;
    width: 158px;
    max-height: 178px;
  }

  .products-showcase .product-card--fuel .product-tags {
    max-width: calc(100% - 128px);
  }
}

/* PRODUCTS HERO FINAL COMPOSITION */
.products-showcase .products-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  gap: 34px;
  align-items: center;
  min-height: 480px;
  margin-bottom: 18px;
  padding: 54px 38px;
  overflow: hidden;
  border: 1px solid rgba(228, 9, 9, 0.10);
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 26%, rgba(228, 9, 9, 0.08), transparent 26%),
    linear-gradient(90deg, #ffffff 0%, #fbfcfd 52%, #eef3f8 100%);
  box-shadow: 0 28px 70px rgba(16, 24, 40, 0.08);
}

.products-showcase .products-hero-copy {
  z-index: 2;
  max-width: 690px;
  min-width: 0;
}

.products-showcase .products-kicker {
  left: 0;
  margin-bottom: 28px;
}

.products-showcase .products-hero-copy h2 {
  max-width: 720px;
  font-size: clamp(58px, 5.15vw, 92px);
  line-height: 0.93;
  letter-spacing: -0.072em;
  text-wrap: balance;
}

.products-showcase .products-hero-copy h2 span {
  max-width: 100%;
}

.products-showcase .products-hero-copy p {
  max-width: 620px;
}

.products-showcase .products-hero-media {
  position: relative;
  inset: auto;
  width: 100%;
  height: 410px;
  min-height: 410px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 28px 62px rgba(16, 24, 40, 0.18);
}

.products-showcase .products-hero-media::after {
  background:
    linear-gradient(90deg, rgba(6, 9, 16, 0.18), transparent 36%),
    linear-gradient(180deg, transparent 45%, rgba(6, 9, 16, 0.16));
}

.products-showcase .products-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.03);
}

@media (max-width: 1180px) {
  .products-showcase .products-hero-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .products-showcase .products-hero-media {
    height: 360px;
    min-height: 360px;
  }

  .products-showcase .products-hero-media img {
    min-height: 360px;
  }
}

@media (max-width: 820px) {
  .products-showcase .products-hero-panel {
    padding: 24px;
    border-radius: 28px;
  }

  .products-showcase .products-hero-media {
    order: -1;
    height: 260px;
    min-height: 260px;
  }

  .products-showcase .products-hero-media img {
    min-height: 260px;
  }
}

@media (max-width: 520px) {
  .products-showcase .products-hero-panel {
    padding: 18px;
  }

  .products-showcase .products-hero-copy h2 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .products-showcase .products-hero-media {
    height: 220px;
    min-height: 220px;
  }

  .products-showcase .products-hero-media img {
    min-height: 220px;
  }
}

/* PRODUCTS HERO PREMIUM BLEND */
.products-showcase .products-hero-panel {
  grid-template-columns: minmax(390px, 0.82fr) minmax(560px, 1.18fr);
  gap: clamp(30px, 3.6vw, 56px);
  min-height: 460px;
  padding: clamp(30px, 3.4vw, 42px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 4% 6%, rgba(228, 9, 9, 0.10), transparent 24%),
    linear-gradient(112deg, #ffffff 0%, #ffffff 43%, #f4f7fa 100%);
  box-shadow:
    0 24px 64px rgba(16, 24, 40, 0.08),
    inset 0 0 0 1px rgba(228, 9, 9, 0.10);
}

.products-showcase .products-hero-panel::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 0;
  border-radius: 24px;
  border: 1px solid rgba(228, 9, 9, 0.07);
  pointer-events: none;
}

.products-showcase .products-hero-copy {
  align-self: center;
  max-width: 600px;
  padding-left: clamp(0px, 0.6vw, 10px);
}

.products-showcase .products-kicker {
  display: inline-flex;
  width: auto;
  min-width: 232px;
  justify-content: center;
  margin-bottom: 24px;
  padding: 12px 22px;
  border-radius: 999px;
  color: #b42318;
  font-size: 14px;
  letter-spacing: 0.11em;
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 14px 30px rgba(228, 9, 9, 0.10);
}

.products-showcase .products-hero-copy h2 {
  max-width: 590px;
  margin-bottom: 20px;
  color: #07080d;
  font-size: clamp(46px, 3.85vw, 66px);
  line-height: 1.12;
  letter-spacing: -0.026em;
}

.products-showcase .products-hero-copy h2 span {
  display: block;
  margin-top: 8px;
  color: #d92d20;
}

.products-showcase .products-hero-copy p {
  max-width: 540px;
  color: #243041;
  font-size: clamp(18px, 1.08vw, 21px);
  line-height: 1.62;
}

.products-showcase .products-hero-mark {
  width: 110px;
  height: 4px;
  margin-top: 28px;
  background: linear-gradient(90deg, #d92d20, #ff6b45);
  box-shadow: 0 12px 22px rgba(217, 45, 32, 0.20);
}

.products-showcase .products-hero-media {
  height: 370px;
  min-height: 370px;
  align-self: center;
  border-radius: 26px;
  box-shadow:
    0 24px 54px rgba(16, 24, 40, 0.18),
    0 0 0 8px rgba(255, 255, 255, 0.82);
}

.products-showcase .products-hero-media::before {
  content: "";
  position: absolute;
  inset: auto 24px 22px auto;
  z-index: 2;
  width: 116px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e40909, #ff8a55);
  box-shadow: 0 12px 28px rgba(228, 9, 9, 0.34);
}

.products-showcase .products-hero-media::after {
  background:
    linear-gradient(90deg, rgba(7, 8, 13, 0.22), rgba(7, 8, 13, 0.02) 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(7, 8, 13, 0.24));
}

.products-showcase .products-hero-media img {
  min-height: 370px;
  object-position: center 50%;
  transform: scale(1.035);
}

@media (max-width: 1180px) {
  .products-showcase .products-hero-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px;
  }

  .products-showcase .products-hero-copy,
  .products-showcase .products-hero-copy h2,
  .products-showcase .products-hero-copy p {
    max-width: 100%;
  }

  .products-showcase .products-hero-media {
    height: 340px;
    min-height: 340px;
  }

  .products-showcase .products-hero-media img {
    min-height: 340px;
  }
}

@media (max-width: 820px) {
  .products-showcase .products-hero-panel {
    padding: 22px;
    border-radius: 28px;
  }

  .products-showcase .products-hero-panel::after {
    inset: 12px;
    border-radius: 22px;
  }

  .products-showcase .products-kicker {
    min-width: 0;
    width: 100%;
    margin-bottom: 22px;
    font-size: 13px;
  }

  .products-showcase .products-hero-copy h2 {
    font-size: clamp(42px, 10vw, 58px);
    line-height: 1.1;
    letter-spacing: -0.026em;
  }

  .products-showcase .products-hero-copy p {
    font-size: 18px;
  }

  .products-showcase .products-hero-media {
    height: 250px;
    min-height: 250px;
    border-radius: 24px;
    box-shadow: 0 22px 46px rgba(16, 24, 40, 0.14);
  }

  .products-showcase .products-hero-media img {
    min-height: 250px;
  }
}

@media (max-width: 520px) {
  .products-showcase .products-hero-panel {
    padding: 16px;
  }

  .products-showcase .products-hero-copy h2 {
    font-size: clamp(38px, 12vw, 50px);
    line-height: 1.1;
  }

  .products-showcase .products-hero-media {
    height: 210px;
    min-height: 210px;
  }

  .products-showcase .products-hero-media img {
    min-height: 210px;
  }
}

/* PRODUCTS CARD OVERLAP FIX */
.products-showcase .product-card--fuel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.72fr);
  grid-template-rows: auto 1fr auto;
  column-gap: 22px;
  min-height: 440px;
  padding: 34px 34px 34px 34px;
  border: 1px solid rgba(228, 9, 9, 0.16);
  border-radius: 32px;
}

.products-showcase .product-card--fuel::after {
  right: 0;
  bottom: 0;
  width: 48%;
  height: 100%;
  border-radius: 0 32px 32px 0;
  background:
    radial-gradient(circle at 62% 55%, rgba(228, 9, 9, 0.07), transparent 58%),
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.98));
}

.products-showcase .product-card__topline {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 112px;
  margin-bottom: 42px;
}

.products-showcase .product-card--fuel .product-card__symbol {
  width: 96px;
  height: 96px;
  padding: 16px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ef3b32, #c91f18);
  box-shadow:
    0 16px 34px rgba(228, 9, 9, 0.22),
    0 0 0 10px rgba(228, 9, 9, 0.08);
}

.products-showcase .product-card--fuel:not(.product-card--red) .product-card__symbol {
  background: linear-gradient(180deg, #242936, #0f172a);
}

.products-showcase .product-card--fuel .product-title {
  display: grid;
  grid-template-columns: minmax(0, max-content) auto;
  align-items: center;
  justify-content: start;
  gap: 28px;
}

.products-showcase .product-card--fuel .product-title h3 {
  max-width: 100%;
  font-size: clamp(48px, 4vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.products-showcase .product-card--fuel .badge {
  justify-self: start;
  margin: 0;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.products-showcase .product-card--fuel .product-desc {
  grid-column: 1 / 2;
  align-self: start;
  max-width: 28ch;
  margin: 0;
  color: #101828;
  font-size: clamp(21px, 1.65vw, 28px);
  line-height: 1.62;
}

.products-showcase .product-card--fuel .product-tags {
  grid-column: 1 / 2;
  max-width: none;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 16px;
}

.products-showcase .product-card__nozzle {
  grid-column: 2 / 3;
  grid-row: 2 / 4;
  align-self: end;
  justify-self: end;
  position: relative;
  right: -26px;
  top: auto;
  bottom: auto;
  width: min(310px, 116%);
  max-height: 390px;
  z-index: 2;
}

.products-showcase .product-card--fuel:hover .product-card__nozzle {
  transform: translateY(-8px) scale(1.03) rotate(-2deg);
}

@media (max-width: 1380px) and (min-width: 1181px) {
  .products-showcase .product-card--fuel {
    grid-template-columns: minmax(0, 1fr) minmax(150px, 0.62fr);
    min-height: 390px;
    padding: 28px;
  }

  .products-showcase .product-card__nozzle {
    width: min(250px, 118%);
  }

  .products-showcase .product-card--fuel .product-title h3 {
    font-size: 52px;
  }

  .products-showcase .product-card--fuel .badge {
    font-size: 14px;
    padding: 10px 18px;
  }

  .products-showcase .product-card--fuel .product-desc {
    font-size: 20px;
  }
}

@media (max-width: 1180px) {
  .products-showcase .product-card--fuel {
    grid-template-columns: minmax(0, 1fr) 190px;
    min-height: 360px;
  }

  .products-showcase .product-card__nozzle {
    width: 230px;
  }
}

@media (max-width: 820px) {
  .products-showcase .product-card--fuel {
    grid-template-columns: minmax(0, 1fr) 145px;
    min-height: 310px;
    padding: 24px;
  }

  .products-showcase .product-card--fuel .product-title h3 {
    font-size: 42px;
  }

  .products-showcase .product-card--fuel .badge {
    font-size: 12px;
    padding: 8px 14px;
  }

  .products-showcase .product-card__nozzle {
    right: -18px;
    width: 176px;
    max-height: 260px;
  }
}

@media (max-width: 520px) {
  .products-showcase .product-card--fuel {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 22px 22px 210px;
  }

  .products-showcase .product-card__topline {
    grid-template-columns: 72px 1fr;
    gap: 18px;
    min-height: 80px;
    margin-bottom: 24px;
  }

  .products-showcase .product-card--fuel .product-card__symbol {
    width: 72px;
    height: 72px;
    padding: 12px;
  }

  .products-showcase .product-card--fuel .product-title {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .products-showcase .product-card--fuel .product-title h3 {
    font-size: 38px;
  }

  .products-showcase .product-card__nozzle {
    position: absolute;
    right: 12px;
    bottom: 10px;
    width: 172px;
    max-height: 205px;
  }

  .products-showcase .product-card--fuel .product-tags {
    grid-template-columns: repeat(2, max-content);
    max-width: none;
  }
}

/* EXACT VEHICLE CARD LAYOUT */
.products-showcase .products-grid--exact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 28px !important;
  max-width: 1360px;
  margin-inline: auto;
}

.products-showcase .products-grid--exact > .product-card,
.products-showcase .products-grid--exact > .product-card:nth-child(4),
.products-showcase .products-grid--exact > .product-card:nth-child(5) {
  grid-column: auto !important;
  width: auto !important;
  justify-self: stretch !important;
}

.products-showcase .products-grid--exact > .product-card:nth-child(5) {
  grid-column: 1 / -1 !important;
  width: min(100%, 660px) !important;
  justify-self: center !important;
}

.products-showcase .product-card--exact {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 255px !important;
  grid-template-rows: auto minmax(150px, 1fr) auto !important;
  column-gap: 28px !important;
  min-height: 430px !important;
  padding: 36px 30px 34px 36px !important;
  overflow: hidden !important;
  border: 2px solid rgba(228, 9, 9, 0.13) !important;
  border-radius: 34px !important;
  background: #fff !important;
  box-shadow: 0 22px 58px rgba(16, 24, 40, 0.10) !important;
}

.products-showcase .product-card--exact::before,
.products-showcase .product-card--exact::after {
  content: none !important;
}

.products-showcase .product-card--exact .product-card__head {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 96px max-content auto;
  align-items: center;
  gap: 28px;
  min-width: 0;
  margin-bottom: 42px;
}

.products-showcase .product-card--exact .product-card__symbol {
  width: 96px !important;
  height: 96px !important;
  padding: 16px !important;
  border-radius: 999px !important;
  object-fit: contain !important;
  background: linear-gradient(180deg, #ef3b32, #c91f18) !important;
  box-shadow: 0 16px 34px rgba(228, 9, 9, 0.20), 0 0 0 10px rgba(228, 9, 9, 0.08) !important;
}

.products-showcase .product-card--exact .product-card__symbol--dark {
  background: linear-gradient(180deg, #242936, #0f172a) !important;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18), 0 0 0 10px rgba(15, 23, 42, 0.06) !important;
}

.products-showcase .product-card--exact h3 {
  margin: 0 !important;
  color: #08090c !important;
  font-size: clamp(54px, 4.5vw, 78px) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.07em !important;
}

.products-showcase .product-card--exact .badge {
  justify-self: start !important;
  align-self: center !important;
  margin: 0 !important;
  padding: 14px 26px !important;
  border-radius: 999px !important;
  color: #fff !important;
  font-size: 19px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  letter-spacing: 0.04em !important;
  background: linear-gradient(180deg, #f2241c, #cc0b08) !important;
  box-shadow: 0 16px 34px rgba(228, 9, 9, 0.24) !important;
  white-space: nowrap !important;
}

.products-showcase .product-card--exact .product-desc {
  grid-column: 1 / 2 !important;
  grid-row: 2 / 3 !important;
  max-width: 28ch !important;
  margin: 0 !important;
  color: #111827 !important;
  font-size: clamp(23px, 1.65vw, 29px) !important;
  line-height: 1.62 !important;
}

.products-showcase .product-card--exact .product-card__nozzle {
  position: absolute !important;
  right: 18px !important;
  bottom: -18px !important;
  top: auto !important;
  width: 315px !important;
  max-width: 48% !important;
  max-height: 380px !important;
  object-fit: contain !important;
  z-index: 2 !important;
  filter: drop-shadow(0 22px 22px rgba(15, 23, 42, 0.20)) !important;
  mix-blend-mode: normal;
}

.products-showcase .product-card--exact .product-tags {
  grid-column: 1 / 2 !important;
  grid-row: 3 / 4 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.products-showcase .product-card--exact .product-tags span {
  padding: 13px 25px !important;
  border: 2px solid #e1e6ee !important;
  border-radius: 999px !important;
  color: #4b5563 !important;
  font-size: 20px !important;
  line-height: 1 !important;
  background: #f8fafc !important;
}

@media (max-width: 1180px) {
  .products-showcase .products-grid--exact {
    grid-template-columns: 1fr !important;
    max-width: 760px;
  }

  .products-showcase .products-grid--exact > .product-card:nth-child(5) {
    grid-column: auto !important;
    width: auto !important;
  }
}

@media (max-width: 680px) {
  .products-showcase .product-card--exact {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
    padding: 24px 24px 250px !important;
  }

  .products-showcase .product-card--exact .product-card__head {
    grid-template-columns: 72px 1fr !important;
    gap: 18px !important;
    margin-bottom: 28px !important;
  }

  .products-showcase .product-card--exact .product-card__symbol {
    width: 72px !important;
    height: 72px !important;
    padding: 12px !important;
  }

  .products-showcase .product-card--exact h3 {
    font-size: clamp(38px, 12vw, 54px) !important;
  }

  .products-showcase .product-card--exact .badge {
    grid-column: 2 / 3;
    justify-self: start !important;
    padding: 10px 16px !important;
    font-size: 13px !important;
  }

  .products-showcase .product-card--exact .product-desc {
    max-width: none !important;
    font-size: 19px !important;
  }

  .products-showcase .product-card--exact .product-card__nozzle {
    right: 12px !important;
    bottom: -8px !important;
    width: 220px !important;
    max-width: 58% !important;
  }

  .products-showcase .product-card--exact .product-tags {
    max-width: calc(100% - 120px) !important;
    gap: 10px !important;
  }

  .products-showcase .product-card--exact .product-tags span {
    padding: 10px 15px !important;
    font-size: 15px !important;
  }
}

/* EXACT VEHICLE CARD COMPACT RESET */
.products-showcase .products-grid--exact {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 22px !important;
  max-width: 1420px !important;
}

.products-showcase .products-grid--exact > .product-card {
  grid-column: span 2 !important;
  width: auto !important;
  justify-self: stretch !important;
}

.products-showcase .products-grid--exact > .product-card:nth-child(4) {
  grid-column: 2 / span 2 !important;
}

.products-showcase .products-grid--exact > .product-card:nth-child(5) {
  grid-column: 4 / span 2 !important;
}

.products-showcase .product-card--exact {
  grid-template-columns: minmax(0, 1fr) 156px !important;
  grid-template-rows: auto auto auto !important;
  column-gap: 18px !important;
  min-height: 268px !important;
  padding: 24px 22px 22px 24px !important;
  border-width: 1px !important;
  border-radius: 22px !important;
}

.products-showcase .product-card--exact .product-card__head {
  grid-template-columns: 58px minmax(0, 1fr) auto !important;
  gap: 16px !important;
  min-height: 56px !important;
  margin-bottom: 18px !important;
}

.products-showcase .product-card--exact .product-card__symbol,
.products-showcase .product-card--exact .product-card__symbol--dark {
  width: 58px !important;
  height: 58px !important;
  padding: 0 !important;
  border-radius: 14px !important;
  background: transparent !important;
  box-shadow: 0 10px 24px rgba(228, 9, 9, 0.13) !important;
}

.products-showcase .product-card--exact h3 {
  font-size: clamp(31px, 2.55vw, 44px) !important;
  line-height: 1 !important;
  letter-spacing: -0.045em !important;
}

.products-showcase .product-card--exact .badge {
  padding: 9px 15px !important;
  font-size: 13px !important;
  box-shadow: 0 12px 22px rgba(228, 9, 9, 0.16) !important;
}

.products-showcase .product-card--exact .product-desc {
  max-width: 30ch !important;
  font-size: clamp(18px, 1.18vw, 21px) !important;
  line-height: 1.42 !important;
}

.products-showcase .product-card--exact .product-card__nozzle {
  right: -12px !important;
  bottom: 10px !important;
  width: 198px !important;
  max-width: none !important;
  max-height: 240px !important;
}

.products-showcase .product-card--exact .product-tags {
  gap: 9px !important;
  padding-right: 98px !important;
  margin-top: 18px !important;
}

.products-showcase .product-card--exact .product-tags span {
  padding: 9px 14px !important;
  border-width: 1px !important;
  font-size: 14px !important;
}

@media (max-width: 1180px) {
  .products-showcase .products-grid--exact {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 900px !important;
  }

  .products-showcase .products-grid--exact > .product-card,
  .products-showcase .products-grid--exact > .product-card:nth-child(4),
  .products-showcase .products-grid--exact > .product-card:nth-child(5) {
    grid-column: auto !important;
  }
}

@media (max-width: 680px) {
  .products-showcase .products-grid--exact {
    grid-template-columns: 1fr !important;
  }

  .products-showcase .product-card--exact {
    grid-template-columns: minmax(0, 1fr) 122px !important;
    min-height: 235px !important;
    padding: 20px !important;
  }

  .products-showcase .product-card--exact .product-card__head {
    grid-template-columns: 50px minmax(0, 1fr) !important;
  }

  .products-showcase .product-card--exact .badge {
    grid-column: 2 / 3 !important;
  }

  .products-showcase .product-card--exact .product-desc {
    font-size: 19px !important;
    line-height: 1.42 !important;
  }

  .products-showcase .product-card--exact .product-card__nozzle {
    right: -16px !important;
    bottom: 10px !important;
    width: 158px !important;
    max-height: 220px !important;
  }

  .products-showcase .product-card--exact .product-tags span {
    font-size: 15px !important;
  }
}

/* VEHICLE PRODUCT CARD POLISH */
.products-showcase .product-card--exact {
  grid-template-columns: minmax(0, 1fr) 188px !important;
  min-height: 304px !important;
  padding: 26px 24px 24px 26px !important;
  isolation: isolate !important;
  transition: transform 0.36s var(--motion-spring), box-shadow 0.36s ease, border-color 0.36s ease !important;
}

.products-showcase .product-card--exact:hover {
  border-color: rgba(228, 9, 9, 0.24) !important;
  box-shadow: 0 30px 70px rgba(16, 24, 40, 0.14) !important;
  transform: translateY(-5px) !important;
}

.products-showcase .product-card--exact .product-card__head {
  grid-template-columns: 60px minmax(0, 1fr) auto !important;
  gap: 17px !important;
  margin-bottom: 20px !important;
}

.products-showcase .product-card--exact .product-card__symbol,
.products-showcase .product-card--exact .product-card__symbol--dark {
  width: 60px !important;
  height: 60px !important;
  border-radius: 18px !important;
}

.products-showcase .product-card--exact h3 {
  max-width: 10ch !important;
  font-size: clamp(33px, 2.7vw, 46px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.035em !important;
}

.products-showcase .product-card--exact .product-desc {
  max-width: 31ch !important;
  color: #222733 !important;
  font-size: clamp(18px, 1.17vw, 21px) !important;
  line-height: 1.5 !important;
}

.products-showcase .product-card--exact .product-card__nozzle-frame {
  position: absolute !important;
  right: 18px !important;
  bottom: 18px !important;
  z-index: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 178px !important;
  height: 178px !important;
  border: 1px solid rgba(228, 9, 9, 0.16) !important;
  border-radius: 50% !important;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94) 50%, rgba(228, 9, 9, 0.08) 100%);
  box-shadow:
    0 24px 52px rgba(16, 24, 40, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transition: transform 0.42s var(--motion-spring), box-shadow 0.36s ease, border-color 0.36s ease !important;
}

.products-showcase .product-card--exact .product-card__nozzle-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  background: conic-gradient(from 120deg, rgba(228, 9, 9, 0.38), rgba(228, 9, 9, 0), rgba(15, 23, 42, 0.12), rgba(228, 9, 9, 0.38));
  opacity: 0.38;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 0);
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 0);
}

.products-showcase .product-card--exact .product-card__nozzle-frame::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e32720;
  box-shadow: 0 0 0 8px rgba(228, 9, 9, 0.09);
}

.products-showcase .product-card--exact .product-card__nozzle-frame .product-card__nozzle {
  position: static !important;
  right: auto !important;
  bottom: auto !important;
  width: 146px !important;
  max-width: 92% !important;
  max-height: 158px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 18px 18px rgba(15, 23, 42, 0.2)) !important;
  mix-blend-mode: normal;
  transform: rotate(-4deg) translateX(3px) !important;
  transition: transform 0.45s var(--motion-spring), filter 0.35s ease !important;
}

.products-showcase .product-card--exact:hover .product-card__nozzle-frame {
  border-color: rgba(228, 9, 9, 0.24) !important;
  box-shadow:
    0 30px 64px rgba(16, 24, 40, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  transform: translateY(-6px) scale(1.025) !important;
}

.products-showcase .product-card--exact:hover .product-card__nozzle {
  filter: drop-shadow(0 22px 22px rgba(15, 23, 42, 0.24)) !important;
  transform: rotate(-1deg) translateX(0) scale(1.04) !important;
}

.products-showcase .product-card--exact .product-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  align-content: flex-end !important;
  gap: 8px !important;
  max-width: calc(100% - 132px) !important;
  margin-top: 20px !important;
  padding-right: 0 !important;
}

.products-showcase .product-card--exact .product-tags span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  padding: 8px 12px !important;
  border: 1px solid rgba(148, 163, 184, 0.22) !important;
  border-radius: 999px !important;
  color: #4b5563 !important;
  font-size: 13px !important;
  font-weight: 750 !important;
  line-height: 1 !important;
  background: rgba(255, 255, 255, 0.82) !important;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06) !important;
}

.products-showcase .product-card--exact .product-tags span::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(228, 9, 9, 0.72);
}

@media (prefers-reduced-motion: no-preference) {
  .products-showcase .product-card--exact .product-card__nozzle-frame::before {
    animation: nozzleRingSpin 8s linear infinite;
  }

  .products-showcase .product-card--exact .product-card__nozzle-frame::after {
    animation: nozzleSignal 2.8s ease-in-out infinite;
  }
}

@keyframes nozzleRingSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes nozzleSignal {
  0%,
  100% {
    opacity: 0.68;
    transform: scale(0.86);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 680px) {
  .products-showcase .product-card--exact {
    grid-template-columns: minmax(0, 1fr) 124px !important;
    min-height: 288px !important;
    padding: 20px 18px 18px !important;
  }

  .products-showcase .product-card--exact .product-card__head {
    grid-template-columns: 52px minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  .products-showcase .product-card--exact h3 {
    font-size: clamp(30px, 10vw, 39px) !important;
  }

  .products-showcase .product-card--exact .product-desc {
    max-width: 24ch !important;
    font-size: 18px !important;
    line-height: 1.46 !important;
  }

  .products-showcase .product-card--exact .product-card__nozzle-frame {
    right: 14px !important;
    bottom: 18px !important;
    width: 126px !important;
    height: 126px !important;
  }

  .products-showcase .product-card--exact .product-card__nozzle-frame .product-card__nozzle {
    width: 106px !important;
    max-height: 118px !important;
  }

  .products-showcase .product-card--exact .product-tags {
    max-width: calc(100% - 96px) !important;
    gap: 7px !important;
    margin-top: 16px !important;
  }

  .products-showcase .product-card--exact .product-tags span {
    padding: 8px 10px !important;
    font-size: 12px !important;
  }
}

/* VEHICLE CARD ALIGNMENT RESET */
.products-showcase .products-grid--exact {
  gap: 26px !important;
}

.products-showcase .product-card--exact {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 164px !important;
  grid-template-rows: auto 1fr auto !important;
  column-gap: 22px !important;
  min-height: 308px !important;
  padding: 28px !important;
  overflow: hidden !important;
}

.products-showcase .product-card--exact .product-card__head {
  grid-column: 1 / -1 !important;
  display: grid !important;
  grid-template-columns: 58px minmax(0, 1fr) auto !important;
  gap: 16px !important;
  align-items: center !important;
  min-height: 60px !important;
  margin: 0 0 18px !important;
}

.products-showcase .product-card--exact .product-card__symbol,
.products-showcase .product-card--exact .product-card__symbol--dark {
  width: 58px !important;
  height: 58px !important;
  border-radius: 17px !important;
}

.products-showcase .product-card--exact h3 {
  max-width: none !important;
  font-size: clamp(34px, 2.55vw, 46px) !important;
  line-height: 1 !important;
  letter-spacing: -0.035em !important;
}

.products-showcase .product-card--exact .badge {
  align-self: center !important;
  justify-self: end !important;
  padding: 9px 15px !important;
  font-size: 12px !important;
  line-height: 1 !important;
}

.products-showcase .product-card--exact .product-desc {
  grid-column: 1 / 2 !important;
  grid-row: 2 / 3 !important;
  align-self: start !important;
  max-width: 24ch !important;
  margin: 0 !important;
  font-size: clamp(17px, 1.08vw, 19px) !important;
  line-height: 1.48 !important;
}

.products-showcase .product-card--exact .product-tags {
  grid-column: 1 / 2 !important;
  grid-row: 3 / 4 !important;
  align-self: end !important;
  max-width: none !important;
  margin: 18px 0 0 !important;
  padding: 0 !important;
  gap: 8px !important;
}

.products-showcase .product-card--exact .product-tags span {
  padding: 8px 11px !important;
  font-size: 12px !important;
  line-height: 1.05 !important;
  white-space: normal !important;
}

.products-showcase .product-card--exact .product-card__nozzle-frame {
  grid-column: 2 / 3 !important;
  grid-row: 2 / 4 !important;
  position: relative !important;
  inset: auto !important;
  align-self: end !important;
  justify-self: end !important;
  width: 156px !important;
  height: 156px !important;
  overflow: hidden !important;
  border-radius: 50% !important;
  background:
    radial-gradient(circle at 44% 34%, #ffffff 0 36%, #f8fafc 54%, rgba(228, 9, 9, 0.09) 100%) !important;
}

.products-showcase .product-card--exact .product-card__nozzle-frame::before {
  inset: 8px !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

.products-showcase .product-card--exact .product-card__nozzle-frame::after {
  right: 16px !important;
  top: 18px !important;
  z-index: 3 !important;
}

.products-showcase .product-card--exact .product-card__nozzle-frame .product-card__nozzle {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: 142px !important;
  max-width: none !important;
  max-height: none !important;
  height: 142px !important;
  object-fit: contain !important;
  object-position: center !important;
  mix-blend-mode: normal !important;
  transform: translate(-50%, -44%) rotate(-5deg) !important;
}

.products-showcase .product-card--exact:hover .product-card__nozzle-frame .product-card__nozzle {
  transform: translate(-50%, -45%) rotate(-2deg) scale(1.04) !important;
}

@media (max-width: 1180px) and (min-width: 681px) {
  .products-showcase .product-card--exact {
    grid-template-columns: minmax(0, 1fr) 150px !important;
  }

  .products-showcase .product-card--exact .product-card__nozzle-frame {
    width: 146px !important;
    height: 146px !important;
  }

  .products-showcase .product-card--exact .product-card__nozzle-frame .product-card__nozzle {
    width: 132px !important;
    height: 132px !important;
  }
}

@media (max-width: 680px) {
  .products-showcase .product-card--exact {
    grid-template-columns: minmax(0, 1fr) 118px !important;
    min-height: 260px !important;
    padding: 20px !important;
    column-gap: 14px !important;
  }

  .products-showcase .product-card--exact .product-card__head {
    grid-template-columns: 50px minmax(0, 1fr) !important;
    gap: 12px !important;
    margin-bottom: 16px !important;
  }

  .products-showcase .product-card--exact .badge {
    grid-column: 2 / 3 !important;
    justify-self: start !important;
  }

  .products-showcase .product-card--exact h3 {
    font-size: clamp(29px, 8vw, 38px) !important;
  }

  .products-showcase .product-card--exact .product-desc {
    max-width: 22ch !important;
    font-size: 16px !important;
    line-height: 1.44 !important;
  }

  .products-showcase .product-card--exact .product-tags {
    gap: 7px !important;
    margin-top: 14px !important;
  }

  .products-showcase .product-card--exact .product-tags span {
    padding: 7px 9px !important;
    font-size: 11px !important;
  }

  .products-showcase .product-card--exact .product-card__nozzle-frame {
    width: 112px !important;
    height: 112px !important;
  }

  .products-showcase .product-card--exact .product-card__nozzle-frame .product-card__nozzle {
    width: 102px !important;
    height: 102px !important;
  }
}

/* VEHICLE PRODUCT CARDS - CLEAN REDESIGN */
.products-showcase .products-grid--exact {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  max-width: 1420px !important;
}

.products-showcase .products-grid--exact > .product-card,
.products-showcase .products-grid--exact > .product-card:nth-child(4),
.products-showcase .products-grid--exact > .product-card:nth-child(5) {
  grid-column: auto !important;
  width: auto !important;
  justify-self: stretch !important;
}

.products-showcase .products-grid--exact > .product-card:nth-child(4) {
  grid-column: 1 / span 2 !important;
}

.products-showcase .products-grid--exact > .product-card:nth-child(5) {
  grid-column: 3 / span 1 !important;
}

.products-showcase .product-card--exact {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 178px !important;
  grid-template-rows: auto minmax(112px, 1fr) auto !important;
  gap: 18px 20px !important;
  min-height: 320px !important;
  padding: 26px !important;
  overflow: hidden !important;
  border: 1px solid rgba(225, 232, 240, 0.95) !important;
  border-radius: 26px !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98)),
    radial-gradient(circle at 88% 80%, rgba(228, 9, 9, 0.12), transparent 34%) !important;
  box-shadow: 0 22px 52px rgba(16, 24, 40, 0.09) !important;
}

.products-showcase .product-card--exact::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 auto 0 0 !important;
  width: 5px !important;
  height: auto !important;
  border-radius: 26px 0 0 26px !important;
  background: linear-gradient(180deg, #f04438, #c81e1a) !important;
  opacity: 0.92 !important;
}

.products-showcase .product-card--exact::after {
  content: "" !important;
  position: absolute !important;
  right: -72px !important;
  bottom: -96px !important;
  width: 260px !important;
  height: 260px !important;
  border-radius: 50% !important;
  background: rgba(228, 9, 9, 0.05) !important;
  pointer-events: none !important;
}

.products-showcase .product-card--exact .product-card__head {
  grid-column: 1 / -1 !important;
  grid-row: 1 / 2 !important;
  display: grid !important;
  grid-template-columns: 56px minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 15px !important;
  min-height: 56px !important;
  margin: 0 !important;
}

.products-showcase .product-card--exact .product-card__symbol,
.products-showcase .product-card--exact .product-card__symbol--dark {
  width: 56px !important;
  height: 56px !important;
  border-radius: 18px !important;
  box-shadow: 0 16px 28px rgba(228, 9, 9, 0.12) !important;
}

.products-showcase .product-card--exact h3 {
  max-width: none !important;
  color: #070b13 !important;
  font-size: clamp(34px, 2.45vw, 45px) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.035em !important;
}

.products-showcase .product-card--exact .badge {
  justify-self: end !important;
  padding: 9px 15px !important;
  font-size: 12px !important;
  box-shadow: 0 14px 26px rgba(218, 39, 32, 0.18) !important;
}

.products-showcase .product-card--exact .product-desc {
  grid-column: 1 / 2 !important;
  grid-row: 2 / 3 !important;
  max-width: 30ch !important;
  align-self: start !important;
  color: #343b49 !important;
  font-size: clamp(17px, 1.08vw, 20px) !important;
  line-height: 1.46 !important;
}

.products-showcase .product-card--exact .product-tags {
  grid-column: 1 / 2 !important;
  grid-row: 3 / 4 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  align-self: end !important;
  gap: 8px !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.products-showcase .product-card--exact .product-tags span {
  padding: 8px 11px !important;
  border: 1px solid rgba(214, 222, 232, 0.9) !important;
  color: #4b5563 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 10px 22px rgba(16, 24, 40, 0.05) !important;
}

.products-showcase .product-card--exact .product-card__nozzle-frame {
  grid-column: 2 / 3 !important;
  grid-row: 2 / 4 !important;
  position: relative !important;
  inset: auto !important;
  align-self: stretch !important;
  justify-self: stretch !important;
  width: auto !important;
  height: auto !important;
  min-height: 182px !important;
  overflow: hidden !important;
  border: 1px solid rgba(226, 232, 240, 0.92) !important;
  border-radius: 24px !important;
  background:
    linear-gradient(160deg, #ffffff 0%, #f5f7fa 54%, #eef2f7 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 20px 38px rgba(16, 24, 40, 0.08) !important;
}

.products-showcase .product-card--exact .product-card__nozzle-frame::before {
  content: "" !important;
  position: absolute !important;
  inset: auto -34px -48px auto !important;
  width: 160px !important;
  height: 160px !important;
  border-radius: 50% !important;
  background: rgba(228, 9, 9, 0.08) !important;
  opacity: 1 !important;
  -webkit-mask: none !important;
  mask: none !important;
  animation: none !important;
}

.products-showcase .product-card--exact .product-card__nozzle-frame::after {
  content: none !important;
}

.products-showcase .product-card--exact .product-card__nozzle-frame .product-card__nozzle {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: 168px !important;
  height: 168px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
  mix-blend-mode: normal !important;
  filter: drop-shadow(0 16px 18px rgba(16, 24, 40, 0.22)) !important;
  transform: translate(-50%, -43%) rotate(-4deg) !important;
}

.products-showcase .product-card--exact:hover .product-card__nozzle-frame {
  transform: translateY(-3px) !important;
}

.products-showcase .product-card--exact:hover .product-card__nozzle-frame .product-card__nozzle {
  transform: translate(-50%, -45%) rotate(-1deg) scale(1.04) !important;
}

@media (max-width: 1180px) {
  .products-showcase .products-grid--exact {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .products-showcase .products-grid--exact > .product-card:nth-child(4),
  .products-showcase .products-grid--exact > .product-card:nth-child(5) {
    grid-column: auto !important;
  }
}

@media (max-width: 760px) {
  .products-showcase .products-grid--exact {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .products-showcase .product-card--exact {
    grid-template-columns: minmax(0, 1fr) 132px !important;
    min-height: 268px !important;
    padding: 20px !important;
    gap: 15px !important;
  }

  .products-showcase .product-card--exact .product-card__head {
    grid-template-columns: 50px minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  .products-showcase .product-card--exact .badge {
    grid-column: 2 / 3 !important;
    justify-self: start !important;
    width: fit-content !important;
  }

  .products-showcase .product-card--exact h3 {
    font-size: clamp(30px, 9vw, 39px) !important;
  }

  .products-showcase .product-card--exact .product-desc {
    max-width: 22ch !important;
    font-size: 16px !important;
  }

  .products-showcase .product-card--exact .product-card__nozzle-frame {
    min-height: 142px !important;
    border-radius: 20px !important;
  }

  .products-showcase .product-card--exact .product-card__nozzle-frame .product-card__nozzle {
    width: 126px !important;
    height: 126px !important;
  }
}

@media (max-width: 430px) {
  .products-showcase .product-card--exact {
    grid-template-columns: 1fr !important;
  }

  .products-showcase .product-card--exact .product-card__nozzle-frame {
    grid-column: 1 / -1 !important;
    grid-row: 3 / 4 !important;
    min-height: 150px !important;
  }

  .products-showcase .product-card--exact .product-tags {
    grid-row: 4 / 5 !important;
  }
}

/* VEHICLE PRODUCT CARDS - BALANCED FINAL PASS */
.products-showcase .products-grid--exact {
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: stretch !important;
}

.products-showcase .products-grid--exact > .product-card {
  grid-column: span 2 !important;
}

.products-showcase .products-grid--exact > .product-card:nth-child(4) {
  grid-column: 2 / span 2 !important;
}

.products-showcase .products-grid--exact > .product-card:nth-child(5) {
  grid-column: 4 / span 2 !important;
}

.products-showcase .product-card--exact {
  grid-template-columns: minmax(0, 1fr) 154px !important;
  grid-template-rows: auto minmax(116px, 1fr) auto !important;
  min-height: 312px !important;
  padding: 24px 24px 22px !important;
  gap: 18px 18px !important;
  border-color: rgba(224, 231, 240, 0.98) !important;
  border-left: 6px solid #df352d !important;
  background:
    radial-gradient(circle at 92% 88%, rgba(223, 53, 45, 0.08), transparent 30%),
    linear-gradient(145deg, #ffffff 0%, #fbfcfd 58%, #f5f7fa 100%) !important;
}

.products-showcase .product-card--exact::before,
.products-showcase .product-card--exact::after {
  content: none !important;
}

.products-showcase .product-card--exact .product-card__head {
  grid-template-columns: 54px minmax(0, 1fr) auto !important;
  gap: 14px !important;
  min-height: 54px !important;
}

.products-showcase .product-card--exact .product-card__symbol,
.products-showcase .product-card--exact .product-card__symbol--dark {
  width: 54px !important;
  height: 54px !important;
  border-radius: 16px !important;
}

.products-showcase .product-card--exact h3 {
  font-size: clamp(32px, 2.3vw, 42px) !important;
  line-height: 0.98 !important;
}

.products-showcase .product-card--exact .badge {
  padding: 8px 14px !important;
  font-size: 11px !important;
  letter-spacing: 0.045em !important;
}

.products-showcase .product-card--exact .product-desc {
  max-width: 26ch !important;
  font-size: clamp(16px, 1vw, 18px) !important;
  line-height: 1.48 !important;
}

.products-showcase .product-card--exact .product-tags {
  gap: 7px !important;
}

.products-showcase .product-card--exact .product-tags span {
  padding: 7px 10px !important;
  font-size: 11.5px !important;
  border-radius: 999px !important;
}

.products-showcase .product-card--exact .product-tags span::before {
  width: 5px !important;
  height: 5px !important;
}

.products-showcase .product-card--exact .product-card__nozzle-frame {
  min-height: 164px !important;
  border-radius: 22px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96)),
    linear-gradient(135deg, rgba(223, 53, 45, 0.05), transparent 48%) !important;
}

.products-showcase .product-card--exact .product-card__nozzle-frame::before {
  right: -46px !important;
  bottom: -56px !important;
  width: 150px !important;
  height: 150px !important;
  background: rgba(223, 53, 45, 0.07) !important;
}

.products-showcase .product-card--exact .product-card__nozzle-frame .product-card__nozzle {
  width: 146px !important;
  height: 146px !important;
  transform: translate(-50%, -43%) rotate(-3deg) !important;
}

.products-showcase .product-card--exact:hover .product-card__nozzle-frame .product-card__nozzle {
  transform: translate(-50%, -45%) rotate(0deg) scale(1.035) !important;
}

@media (max-width: 1180px) {
  .products-showcase .products-grid--exact {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .products-showcase .products-grid--exact > .product-card,
  .products-showcase .products-grid--exact > .product-card:nth-child(4),
  .products-showcase .products-grid--exact > .product-card:nth-child(5) {
    grid-column: auto !important;
  }
}

@media (max-width: 760px) {
  .products-showcase .products-grid--exact {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .products-showcase .products-grid--exact > .product-card,
  .products-showcase .products-grid--exact > .product-card:nth-child(4),
  .products-showcase .products-grid--exact > .product-card:nth-child(5) {
    grid-column: 1 / -1 !important;
  }

  .products-showcase .product-card--exact {
    grid-template-columns: minmax(0, 1fr) 126px !important;
    min-height: 252px !important;
    padding: 18px !important;
    border-left-width: 5px !important;
  }

  .products-showcase .product-card--exact .product-card__nozzle-frame {
    min-height: 132px !important;
  }

  .products-showcase .product-card--exact .product-card__nozzle-frame .product-card__nozzle {
    width: 116px !important;
    height: 116px !important;
  }
}

@media (max-width: 430px) {
  .products-showcase .product-card--exact {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding: 20px !important;
    gap: 14px !important;
  }

  .products-showcase .product-card--exact .product-card__head {
    grid-template-columns: 50px minmax(0, 1fr) !important;
  }

  .products-showcase .product-card--exact .product-desc {
    max-width: none !important;
    margin-bottom: 2px !important;
  }

  .products-showcase .product-card--exact .product-card__nozzle-frame {
    grid-column: 1 / -1 !important;
    width: min(100%, 340px) !important;
    justify-self: center !important;
    height: 92px !important;
    min-height: 92px !important;
    margin-top: 0 !important;
  }

  .products-showcase .product-card--exact .product-card__nozzle-frame .product-card__nozzle {
    width: 140px !important;
    height: 140px !important;
  }

  .products-showcase .product-card--exact .product-tags {
    grid-column: 1 / -1 !important;
    margin-top: 0 !important;
  }
}

/* INDUSTRIAL CARDS READABILITY FIX */
.products-showcase .product-family--industrial {
  padding: 42px 44px 32px !important;
  background: #0d1422 !important;
}

.products-showcase .product-family--industrial .product-family__visual {
  opacity: 0.82 !important;
}

.products-showcase .product-family--industrial .product-family__visual::after {
  background:
    linear-gradient(90deg, rgba(9, 14, 24, 0.98) 0%, rgba(9, 14, 24, 0.86) 42%, rgba(9, 14, 24, 0.46) 100%),
    linear-gradient(180deg, rgba(9, 14, 24, 0.12), rgba(9, 14, 24, 0.92)) !important;
}

.products-showcase .products-grid--industrial {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 28px !important;
}

.products-showcase .product-family--industrial .product-card--media {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 220px !important;
  grid-template-rows: auto auto 1fr auto !important;
  column-gap: 22px !important;
  min-height: 245px !important;
  padding: 28px 26px 24px !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 24px !important;
  background: linear-gradient(135deg, rgba(20, 30, 49, 0.94), rgba(17, 24, 39, 0.80)) !important;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22) !important;
  backdrop-filter: blur(10px);
}

.products-showcase .product-family--industrial .product-card__symbol {
  grid-column: 1 / 2;
  width: 58px !important;
  height: 58px !important;
  padding: 0 !important;
  border-radius: 16px !important;
  background: transparent !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22) !important;
}

.products-showcase .product-family--industrial .product-title {
  grid-column: 1 / 2;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 14px !important;
  margin: 14px 0 10px !important;
}

.products-showcase .product-family--industrial .product-title h3 {
  color: #ffffff !important;
  font-size: clamp(26px, 2.2vw, 34px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.04em !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.products-showcase .product-family--industrial .badge {
  padding: 8px 14px !important;
  font-size: 12px !important;
  background: linear-gradient(180deg, #f23a32, #c90c08) !important;
}

.products-showcase .product-family--industrial .product-desc {
  grid-column: 1 / 2;
  max-width: 44ch !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.84) !important;
  font-size: 16px !important;
  line-height: 1.62 !important;
}

.products-showcase .product-family--industrial .product-tags {
  grid-column: 1 / 2;
  align-self: end;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 9px !important;
  margin-top: 20px !important;
}

.products-showcase .product-family--industrial .product-tags span {
  padding: 9px 13px !important;
  color: #e8eef8 !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  background: rgba(255, 255, 255, 0.10) !important;
}

.products-showcase .product-card__vehicle {
  position: absolute !important;
  right: 0 !important;
  bottom: -4px !important;
  width: 295px !important;
  max-width: 43% !important;
  filter: drop-shadow(0 22px 20px rgba(0, 0, 0, 0.32)) !important;
}

.products-showcase .product-card__drop {
  position: absolute !important;
  right: 62px !important;
  bottom: 30px !important;
  width: 138px !important;
  max-width: 28% !important;
  filter: drop-shadow(0 22px 18px rgba(0, 0, 0, 0.40)) !important;
}

.products-showcase .product-card--mazut {
  padding-right: 220px !important;
}

@media (max-width: 920px) {
  .products-showcase .products-grid--industrial {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 620px) {
  .products-showcase .product-family--industrial {
    padding: 28px 18px 22px !important;
  }

  .products-showcase .product-family--industrial .product-card--media {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
    padding: 24px 22px 180px !important;
  }

  .products-showcase .product-card__vehicle {
    width: 230px !important;
    max-width: 62% !important;
  }

  .products-showcase .product-card__drop {
    right: 24px !important;
    bottom: 24px !important;
    width: 110px !important;
  }
}

/* INDUSTRIAL SECTION POLISHED FINAL */
.products-showcase .product-family--industrial {
  min-height: auto !important;
  padding: 42px 44px 44px !important;
  border-radius: 32px !important;
}

.products-showcase .product-family--industrial .product-family__header {
  max-width: 920px !important;
  margin-bottom: 26px !important;
  position: relative !important;
  z-index: 1 !important;
}

.products-showcase .product-family--industrial .product-family__header h3 {
  max-width: 30ch !important;
  font-size: clamp(38px, 3.4vw, 58px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.03em !important;
}

.products-showcase .product-family--industrial .product-family__header p {
  max-width: 68ch !important;
  width: min(100%, 68ch) !important;
  font-size: clamp(20px, 1.32vw, 24px) !important;
  line-height: 1.46 !important;
}

.products-showcase .product-family--industrial .products-grid--industrial {
  width: min(100%, 1240px) !important;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr) !important;
  gap: 18px !important;
  margin-top: 18px !important;
  margin-right: auto !important;
  align-items: stretch !important;
}

.products-showcase .product-family--industrial .product-card--media {
  grid-template-columns: minmax(0, 1fr) 300px !important;
  grid-template-rows: auto auto 1fr auto !important;
  min-height: 360px !important;
  padding: 34px !important;
  border-radius: 28px !important;
  background:
    linear-gradient(135deg, rgba(18, 28, 47, 0.98), rgba(13, 20, 34, 0.92)),
    radial-gradient(circle at 78% 70%, rgba(228, 9, 9, 0.14), transparent 34%) !important;
}

.products-showcase .product-family--industrial .product-card--media::before {
  content: none !important;
}

.products-showcase .product-family--industrial .product-card__symbol {
  grid-row: 1 / 2;
  width: 76px !important;
  height: 76px !important;
}

.products-showcase .product-family--industrial .product-title {
  grid-row: 2 / 3;
  margin: 16px 0 16px !important;
}

.products-showcase .product-family--industrial .product-title h3 {
  max-width: 12ch !important;
  font-size: clamp(34px, 2.3vw, 46px) !important;
  line-height: 1.08 !important;
}

.products-showcase .product-family--industrial .product-desc {
  grid-row: 3 / 4;
  max-width: 38ch !important;
  font-size: 18px !important;
  line-height: 1.6 !important;
}

.products-showcase .product-family--industrial .product-tags {
  grid-row: 4 / 5;
  margin-top: 26px !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

.products-showcase .product-family--industrial .product-tags span {
  min-height: 44px !important;
  padding: 10px 16px !important;
  font-size: 18px !important;
  line-height: 1.2 !important;
  border-radius: 999px !important;
}

.products-showcase .product-card__vehicle {
  right: -6px !important;
  bottom: 28px !important;
  width: 350px !important;
  max-width: 48% !important;
  border-radius: 18px 0 28px 0;
}

.products-showcase .product-card__drop {
  right: 50px !important;
  bottom: 52px !important;
  width: 175px !important;
  max-width: 34% !important;
  padding: 0 !important;
  border-radius: 22px !important;
  background: transparent !important;
}

.products-showcase .product-card--mazut {
  padding-right: 270px !important;
}

@media (max-width: 1100px) {
  .products-showcase .product-family--industrial .product-family__header {
    max-width: 700px !important;
  }

  .products-showcase .product-family--industrial .products-grid--industrial {
    width: 100% !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .products-showcase .product-family--industrial .product-card--media {
    grid-template-columns: minmax(0, 1fr) 230px !important;
  }

  .products-showcase .product-card__vehicle {
    width: 290px !important;
  }

  .products-showcase .product-card__drop {
    width: 138px !important;
  }
}

@media (max-width: 920px) {
  .products-showcase .product-family--industrial .product-family__header,
  .products-showcase .product-family--industrial .product-family__header p {
    max-width: 100% !important;
  }

  .products-showcase .product-family--industrial .products-grid--industrial {
    width: 100% !important;
    gap: 22px !important;
  }

  .products-showcase .product-family--industrial .product-card--media {
    grid-template-columns: minmax(0, 1fr) 240px !important;
  }
}

@media (max-width: 620px) {
  .products-showcase .product-family--industrial {
    padding: 28px 16px !important;
  }

  .products-showcase .product-family--industrial .product-card--media,
  .products-showcase .product-card--mazut {
    grid-template-columns: 1fr !important;
    padding: 24px 22px 190px !important;
  }

  .products-showcase .product-card__vehicle {
    width: 240px !important;
    max-width: 72% !important;
  }

  .products-showcase .product-card__drop {
    right: 24px !important;
    bottom: 24px !important;
    width: 120px !important;
  }
}

/* INDUSTRIAL CARD HEADER AND MEDIA BALANCE */
.products-showcase .product-family--industrial .product-card--media {
  grid-template-columns: 82px minmax(0, 1fr) 280px !important;
  grid-template-rows: auto 1fr auto !important;
  column-gap: 18px !important;
  row-gap: 18px !important;
  min-height: 320px !important;
  padding: 30px 32px !important;
}

.products-showcase .product-family--industrial .product-card__symbol {
  grid-column: 1 / 2 !important;
  grid-row: 1 / 2 !important;
  align-self: start !important;
  justify-self: start !important;
  width: 72px !important;
  height: 72px !important;
}

.products-showcase .product-family--industrial .product-title {
  grid-column: 2 / 3 !important;
  grid-row: 1 / 2 !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  margin: 0 !important;
  padding-right: 126px !important;
  min-width: 0 !important;
}

.products-showcase .product-family--industrial .product-title h3 {
  margin: 0 !important;
  max-width: 8ch !important;
  font-size: clamp(32px, 2.2vw, 44px) !important;
  line-height: 1.02 !important;
}

.products-showcase .product-family--industrial .product-card--bitum .product-title h3 {
  max-width: 11ch !important;
}

.products-showcase .product-family--industrial .product-title .badge {
  position: absolute !important;
  top: 30px !important;
  right: 30px !important;
  margin: 0 !important;
}

.products-showcase .product-family--industrial .product-desc {
  grid-column: 1 / 3 !important;
  grid-row: 2 / 3 !important;
  align-self: start !important;
  max-width: 32ch !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 18px !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

.products-showcase .product-family--industrial .product-tags {
  grid-column: 1 / 3 !important;
  grid-row: 3 / 4 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 12px !important;
  flex-wrap: nowrap !important;
  margin-top: 0 !important;
}

.products-showcase .product-card__vehicle,
.products-showcase .product-card__drop {
  grid-column: 3 / 4 !important;
  grid-row: 1 / 4 !important;
  align-self: center !important;
  justify-self: end !important;
  position: relative !important;
  top: auto !important;
  right: 0 !important;
  bottom: auto !important;
  width: 280px !important;
  height: 170px !important;
  max-width: none !important;
  object-fit: cover !important;
  border-radius: 24px !important;
  background: transparent !important;
  box-shadow: none !important;
}

.products-showcase .product-card__drop {
  width: 240px !important;
  height: 160px !important;
  padding: 0 !important;
  object-fit: contain !important;
}

.products-showcase .product-card--mazut {
  padding-right: 32px !important;
}

@media (max-width: 1100px) {
  .products-showcase .product-family--industrial .product-card--media {
    grid-template-columns: 74px minmax(0, 1fr) 220px !important;
  }

  .products-showcase .product-card__vehicle,
  .products-showcase .product-card__drop {
    width: 220px !important;
    height: 140px !important;
    right: 0 !important;
  }

  .products-showcase .product-card__drop {
    width: 190px !important;
    height: 132px !important;
  }
}

@media (max-width: 620px) {
  .products-showcase .product-family--industrial .product-card--media,
  .products-showcase .product-card--mazut {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto auto !important;
    padding: 24px 22px 220px !important;
  }

  .products-showcase .product-family--industrial .product-card__symbol,
  .products-showcase .product-family--industrial .product-title,
  .products-showcase .product-family--industrial .product-desc,
  .products-showcase .product-family--industrial .product-tags {
    grid-column: 1 / 2 !important;
  }

  .products-showcase .product-family--industrial .product-tags {
    flex-wrap: wrap !important;
  }

  .products-showcase .product-family--industrial .product-title {
    padding-right: 0 !important;
  }

  .products-showcase .product-family--industrial .product-title .badge {
    position: static !important;
    grid-column: 1 / 2 !important;
    margin-left: auto !important;
    justify-self: start !important;
  }

  .products-showcase .product-card__vehicle,
  .products-showcase .product-card__drop {
    position: absolute !important;
    top: auto !important;
    right: 22px !important;
    bottom: 22px !important;
    width: calc(100% - 44px) !important;
    height: 170px !important;
  }
}

/* INDUSTRIAL MOBILE RESET */
@media (max-width: 760px) {
  .products-showcase .product-family--industrial {
    padding: 30px 16px 22px !important;
    border-radius: 28px !important;
  }

  .products-showcase .product-family--industrial .product-family__header {
    margin-bottom: 20px !important;
  }

  .products-showcase .product-family--industrial .product-family__header h3 {
    font-size: clamp(2.15rem, 10vw, 3rem) !important;
    line-height: 1.02 !important;
  }

  .products-showcase .product-family--industrial .product-family__header p {
    font-size: 1.06rem !important;
    line-height: 1.5 !important;
  }

  .products-showcase .product-family--industrial .products-grid--industrial {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    width: 100% !important;
  }

  .products-showcase .product-family--industrial .product-card--media,
  .products-showcase .product-card--mazut {
    display: grid !important;
    grid-template-columns: 58px minmax(0, 1fr) !important;
    grid-template-rows: auto auto auto auto !important;
    column-gap: 14px !important;
    row-gap: 16px !important;
    min-height: 0 !important;
    width: 100% !important;
    padding: 20px !important;
    border-radius: 24px !important;
  }

  .products-showcase .product-family--industrial .product-card__symbol {
    grid-column: 1 / 2 !important;
    grid-row: 1 / 2 !important;
    width: 58px !important;
    height: 58px !important;
    border-radius: 16px !important;
  }

  .products-showcase .product-family--industrial .product-title {
    grid-column: 2 / 3 !important;
    grid-row: 1 / 2 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 10px !important;
    align-self: center !important;
    align-items: start !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .products-showcase .product-family--industrial .product-title h3,
  .products-showcase .product-family--industrial .product-card--bitum .product-title h3 {
    max-width: none !important;
    font-size: clamp(1.8rem, 8.2vw, 2.55rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.035em !important;
  }

  .products-showcase .product-family--industrial .product-title .badge {
    position: static !important;
    width: fit-content !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 8px 13px !important;
    font-size: 0.74rem !important;
    line-height: 1 !important;
    border-radius: 999px !important;
  }

  .products-showcase .product-family--industrial .product-desc {
    grid-column: 1 / -1 !important;
    grid-row: 2 / 3 !important;
    max-width: none !important;
    font-size: 1.08rem !important;
    line-height: 1.5 !important;
  }

  .products-showcase .product-card__vehicle,
  .products-showcase .product-card__drop {
    grid-column: 1 / -1 !important;
    grid-row: 3 / 4 !important;
    position: relative !important;
    inset: auto !important;
    justify-self: stretch !important;
    width: 100% !important;
    max-width: none !important;
    height: 150px !important;
    margin: 0 !important;
    object-fit: cover !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.08) !important;
  }

  .products-showcase .product-card__drop {
    object-fit: contain !important;
    padding: 12px !important;
    background: rgba(255, 255, 255, 0.94) !important;
  }

  .products-showcase .product-family--industrial .product-tags {
    grid-column: 1 / -1 !important;
    grid-row: 4 / 5 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin: 0 !important;
  }

  .products-showcase .product-family--industrial .product-tags span {
    min-height: 0 !important;
    padding: 8px 11px !important;
    font-size: 0.86rem !important;
    line-height: 1.1 !important;
    color: #edf3fb !important;
    background: rgba(255, 255, 255, 0.12) !important;
  }
}

@media (max-width: 420px) {
  .products-showcase .product-family--industrial {
    padding-inline: 12px !important;
  }

  .products-showcase .product-family--industrial .product-card--media,
  .products-showcase .product-card--mazut {
    grid-template-columns: 52px minmax(0, 1fr) !important;
    column-gap: 12px !important;
    padding: 18px !important;
  }

  .products-showcase .product-family--industrial .product-card__symbol {
    width: 52px !important;
    height: 52px !important;
  }

  .products-showcase .product-family--industrial .product-title h3,
  .products-showcase .product-family--industrial .product-card--bitum .product-title h3 {
    font-size: clamp(1.62rem, 7.4vw, 2.12rem) !important;
  }

  .products-showcase .product-card__vehicle,
  .products-showcase .product-card__drop {
    height: 136px !important;
  }
}

#locations {
  background: linear-gradient(
    180deg,
    #e8e8e8 0%,  
    #f6f7f9 60%,
    #f6f7f9 100%
  );
  padding: 40px 20px 52px;
}

.section-title {
  font-size: clamp(40px, 5vw, 54px);
  font-weight: 900;
  color: var(--brand);
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0.01em;
}

/* =========================================================
   07. LOCATION PAGE
   Hero, map panel, cards, actions, Google info windows
   ========================================================= */

body.location-page-body {
  background:
    radial-gradient(circle at top left, rgba(228, 9, 9, 0.12), transparent 32%),
    linear-gradient(180deg, #faf8f4 0%, #f3f0e8 32%, #ffffff 100%);
}

body.location-page-body .footer-section {
  margin-top: 0;
}

.location-page-body .locations-page-hero {
  padding: 54px 20px 22px;
}

.location-page-body .locations-page-hero__shell {
  max-width: 1320px;
  margin: 0 auto;
}

.location-page-body .locations-page-hero__copy,
.location-page-body .locations-map-panel,
.location-page-body .locations-cards {
  border: 1px solid rgba(34, 34, 34, 0.08);
  box-shadow: 0 24px 60px rgba(28, 30, 35, 0.09);
}

.location-page-body .locations-page-hero__copy {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 34px 42px 38px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 244, 238, 0.95) 100%);
}

.location-page-body .locations-page-hero__copy::after {
  content: "";
  position: absolute;
  inset: auto -36px -58px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 9, 9, 0.22), rgba(228, 9, 9, 0));
  pointer-events: none;
}

.location-page-body .locations-page-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(34, 34, 34, 0.06);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
}

.location-page-body .locations-page-hero__copy .section-title {
  margin: 0 0 12px;
  text-align: left;
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1;
}

.location-page-body .locations-subtitle {
  margin: 0;
  max-width: 640px;
  font-size: 17px;
  color: #4c4d52;
}

.location-page-body .locations-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.location-page-body .locations-page-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, #a70404 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(228, 9, 9, 0.22);
}

.location-page-body .locations-page-hero__cta--secondary {
  background: rgba(255, 255, 255, 0.92);
  color: #1f2024;
  border: 1px solid rgba(34, 34, 34, 0.1);
  box-shadow: none;
}

.location-page-body .locations-map-panel,
.location-page-body .locations-cards {
  max-width: 1320px;
  margin: 0 auto 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
}

.location-page-body .locations-map-panel {
  padding: 24px 24px 20px;
}

.location-page-body .locations-map-panel__header,
.location-page-body .locations-cards__header {
  max-width: 760px;
  margin: 0 auto 14px;
  text-align: center;
}

.location-page-body .locations-map-panel__header p {
  color: #5a5b61;
  line-height: 1.7;
}

/* HERO SECTION */
.locations-hero {
  padding: 80px 20px 40px;
  text-align: center;
  background: linear-gradient(180deg, #f6f7f9 0%, #ffffff 100%);
}

.locations-hero .section-title {
  margin-bottom: 16px;
}

.locations-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

.locations-subtitle strong {
  color: var(--brand);
  font-weight: 800;
}

/* MAP SECTION */
#map {
  height: 85vh;
  width: 100%;
  max-width: 1400px;
  margin: 50px auto;
  border: 4px solid var(--brand);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
}

/* CARDS SECTION */
.locations-cards {
  padding: 44px 20px 68px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
}

.location-page-body .locations-cards {
  padding: 30px 24px 34px;
}

.locations-cards .section-title {
  margin-bottom: 50px;
}

.location-page-body .locations-cards .section-title {
  margin-bottom: 0;
}

.locations-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.location-page-body .locations-grid {
  max-width: none;
}

/* LOCATION CARD */
.location-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid rgba(228,9,9,0.12);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, #c30707 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.location-card:hover::before {
  transform: scaleX(1);
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 16px 40px rgba(0,0,0,0.14),
    0 0 30px rgba(228,9,9,0.15);
  border-color: rgba(228,9,9,0.3);
}

.location-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 800;
  color: #222;
}

.location-card .area {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
  font-weight: 500;
}

.location-card p {
  font-size: 14.5px;
  margin-bottom: 8px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-card p strong {
  font-size: 16px;
}

/* ACTIONS */
.location-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.location-actions button,
.location-actions a {
  flex: 1;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.location-actions button {
  background: var(--brand);
  color: #fff;
}

.location-actions button:hover {
  background: #c30707;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(228,9,9,0.3);
}

.location-actions a {
  background: #f2f3f6;
  color: #222;
  border: 2px solid #e4e6eb;
}

.location-actions a:hover {
  background: #e8e9ed;
  border-color: #d0d2d8;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 700px) {
  body.home-page #map {
    height: 430px;
    margin: 0 auto;
    border-width: 3px;
    border-radius: 20px;
    box-shadow: 0 16px 30px rgba(12, 18, 30, 0.12);
  }

  .location-page-body .locations-page-hero {
    padding: 74px 14px 18px;
  }

  .location-page-body .locations-page-hero__copy,
  .location-page-body .locations-map-panel,
  .location-page-body .locations-cards {
    border-radius: 24px;
  }

  .location-page-body .locations-page-hero__copy,
  .location-page-body .locations-map-panel,
  .location-page-body .locations-cards {
    padding-left: 18px;
    padding-right: 18px;
  }

  .location-page-body .locations-page-hero__copy {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .location-page-body .locations-page-hero__copy .section-title {
    font-size: clamp(32px, 10vw, 46px);
  }

  .location-page-body .locations-subtitle {
    font-size: 15.5px;
    line-height: 1.6;
  }

  .location-page-body .locations-page-hero__actions {
    flex-direction: column;
  }

  .location-page-body .locations-page-hero__cta {
    width: 100%;
  }

  .location-page-body .locations-map-panel,
  .location-page-body .locations-cards {
    margin-bottom: 20px;
  }

  #map {
    height: 450px;
    border-width: 3px;
    margin: 20px auto;
  }

  .locations-hero {
    padding: 60px 16px 30px;
  }

  .locations-cards {
    padding: 40px 16px 70px;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .location-card {
    padding: 22px;
  }

  .location-actions {
    flex-direction: column;
  }

  .location-actions button,
  .location-actions a {
    width: 100%;
  }
}

/* INFO WINDOW CUSTOM STYLING */
.gm-style .gm-style-iw-c {
  border-radius: 12px;
  padding: 0;
  max-width: 320px;
}

.gm-style .gm-style-iw-d {
  overflow: hidden;
}

.gm-style .gm-style-iw-t::after {
  background: linear-gradient(45deg, white 50%, transparent 51%, transparent);
}

/* BADGE STYLING FOR SERVICE TAGS */
.service-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: #444;
  border: 1px solid #dee2e6;
  margin: 2px;
}

/* PULSE ANIMATION FOR ACTIVE MARKER */
@keyframes pulse-marker {
  0%, 100% { 
    transform: scale(1);
    opacity: 1;
  }
  50% { 
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.marker-pulse {
  animation: pulse-marker 2s ease-in-out infinite;
}

body.contact-page-body {
  background:
    linear-gradient(180deg, #f5f6f8 0%, #ffffff 24%, #ffffff 100%);
}

.contact-commercial {
  max-width: 1440px;
  margin: 0 auto;
  padding: 92px 20px 64px;
}

.contact-commercial__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 26px;
  align-items: stretch;
}

.contact-commercial__shell--single {
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
}

.contact-commercial__media {
  position: relative;
  min-height: 760px;
  border-radius: 34px;
  overflow: hidden;
  background: #111723;
  box-shadow: 0 32px 62px rgba(11, 17, 27, 0.16);
  isolation: isolate;
  animation: contactHeroReveal 0.75s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.contact-commercial__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.03);
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.4s ease;
}

.contact-commercial__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 12, 22, 0.82) 0%, rgba(7, 12, 22, 0.58) 42%, rgba(7, 12, 22, 0.22) 100%),
    radial-gradient(circle at 18% 18%, rgba(229, 35, 26, 0.26), transparent 34%),
    linear-gradient(180deg, rgba(7, 12, 22, 0.08), rgba(7, 12, 22, 0.64));
}

.contact-commercial__media:hover img {
  transform: scale(1.07);
  filter: saturate(1.12) contrast(1.08);
}

.contact-commercial__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(30px, 4.2vw, 58px);
  color: #fff;
}

.contact-commercial__kicker,
.contact-commercial__form-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-commercial__kicker {
  width: fit-content;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  animation: contactTextRise 0.65s cubic-bezier(0.2, 0.7, 0.2, 1) 0.08s both;
}

.contact-commercial__overlay h1,
.contact-commercial__intro h2 {
  font-family: "League Spartan", "Arial Narrow", sans-serif;
  letter-spacing: -0.04em;
}

.contact-commercial__overlay h1 {
  max-width: 12.5ch;
  margin: 22px 0 16px;
  font-size: clamp(3.25rem, 5.25vw, 5.4rem);
  line-height: 0.92;
  text-wrap: balance;
  text-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
  animation: contactTextRise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.14s both;
}

.contact-commercial__overlay p {
  max-width: 45ch;
  color: rgba(243, 247, 252, 0.9);
  line-height: 1.62;
  font-size: clamp(1.05rem, 1.2vw, 1.22rem);
  animation: contactTextRise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.2s both;
}

.contact-commercial__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  animation: contactTextRise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.28s both;
}

.contact-commercial__actions a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 144px;
  padding: 15px 20px;
  border-radius: 999px;
  text-decoration: none;
  text-align: center;
  font-weight: 800;
  background: #fff;
  color: #111723;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.contact-commercial__actions a:hover {
  background: #e53326;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(229, 35, 26, 0.28);
}

.contact-commercial__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
  animation: contactTextRise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 0.36s both;
}

.contact-commercial__points div {
  position: relative;
  overflow: hidden;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.contact-commercial__points div:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.18);
}

.contact-commercial__points strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.contact-commercial__points span {
  display: block;
  color: rgba(233, 238, 246, 0.86);
  line-height: 1.58;
  font-size: 1rem;
}

.contact-commercial__panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid rgba(216, 221, 228, 0.95);
  box-shadow: 0 24px 48px rgba(17, 24, 32, 0.08);
}

.contact-commercial__form-tag {
  background: rgba(228, 9, 9, 0.08);
  color: #c51612;
}

.contact-commercial__intro h2 {
  margin: 16px 0 12px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.94;
  color: #171d27;
}

.contact-commercial__intro p {
  color: #596373;
  line-height: 1.75;
}

.contact-commercial__form {
  display: grid;
  gap: 4px;
}

.contact-commercial__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #1c2230;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(213, 218, 224, 0.95);
  border-radius: 16px;
  font-size: 15.5px;
  font-family: inherit;
  background: #f8f9fb;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.form-group textarea {
  min-height: 170px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(228, 9, 9, 0.12);
}

.btn {
  display: block;
  width: 100%;
  min-height: 56px;
  margin-top: 4px;
  background: linear-gradient(180deg, var(--brand), #c30707);
  color: #fff;
  border: none;
  border-radius: 16px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(228, 9, 9, 0.3);
}

.contact-commercial__footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding-top: 8px;
}

.contact-commercial__footer a {
  min-width: 0;
  padding: 16px 18px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96));
  border: 1px solid rgba(220, 226, 235, 0.95);
  color: #101827;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(16, 24, 40, 0.07);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-commercial__quick-link {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.contact-commercial__quick-link:hover {
  transform: translateY(-2px);
  border-color: rgba(228, 9, 9, 0.26);
  box-shadow: 0 18px 34px rgba(16, 24, 40, 0.11);
}

.contact-commercial__quick-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(228, 9, 9, 0.10);
  color: var(--brand);
}

.contact-commercial__quick-link small,
.contact-commercial__quick-link strong {
  display: block;
  min-width: 0;
}

.contact-commercial__quick-link small {
  margin-bottom: 3px;
  color: #7b8797;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-commercial__quick-link strong {
  color: #101827;
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

@keyframes contactHeroReveal {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@media (max-width: 1100px) {
  .contact-commercial__shell {
    grid-template-columns: 1fr;
  }

  .contact-commercial__media {
    min-height: 640px;
  }
}

@media (max-width: 700px) {
  .contact-commercial {
    padding-top: 84px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .contact-commercial__media,
  .contact-commercial__panel {
    border-radius: 24px;
  }

  .contact-commercial__overlay,
  .contact-commercial__panel {
    padding: 22px;
  }

  .contact-commercial__media {
    min-height: 780px;
  }

  .contact-commercial__overlay {
    justify-content: flex-start;
    padding-right: 78px;
  }

  .contact-commercial__overlay h1 {
    max-width: 10.5ch;
    margin: 16px 0 12px;
    font-size: clamp(2.3rem, 11vw, 3.1rem);
    line-height: 0.98;
    letter-spacing: -0.02em;
  }

  .contact-commercial__overlay p {
    max-width: none;
    font-size: 0.96rem;
    line-height: 1.52;
  }

  .contact-commercial__actions {
    gap: 12px;
    margin-top: 20px;
  }

  .contact-commercial__actions a {
    min-width: 0;
    flex: 1 1 100%;
    min-height: 58px;
    padding: 14px 18px;
  }

  .contact-commercial__points {
    gap: 14px;
    margin-top: 20px;
    padding-right: 58px;
  }

  .contact-commercial__points div {
    padding: 16px 18px;
    border-radius: 18px;
  }

  .contact-commercial__points,
  .contact-commercial__grid,
  .contact-commercial__footer {
    grid-template-columns: 1fr;
  }
}


/* ABOUT PAGE 
============= */

/* HERO */
.about-hero {
  min-height: 60vh;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("images/punonjes me logo.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.about-hero-content {
  max-width: 720px;
  padding: 20px;
}

.about-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 0.08em;
}

.about-hero p {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.6;
}

/* SECTIONS */
.about-page-section {
  padding: 80px 20px;
}

.about-page-container {
  max-width: 900px;
  margin: auto;
}

.about-page-container h2 {
  color: var(--brand);
  margin-bottom: 22px;
  font-size: clamp(26px, 4vw, 34px);
}

/* LEAD TEXT */
.lead-text {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 28px;
  color: #222;
}

/* HIGHLIGHTS */
.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 30px 0;
}

.about-highlights div {
  background: rgba(228, 9, 9, 0.06);
  border-left: 4px solid var(--brand);
  padding: 14px 16px;
  font-weight: 700;
  border-radius: 8px;
  font-size: 15px;
}

/* BODY TEXT */
.about-page-container p {
  line-height: 1.7;
  margin-bottom: 18px;
  color: #333;
}

/* VALUES (MISSION & VISION) */
.about-values-section {
  background: #f6f7f9;
  padding: 70px 20px;
}

.about-values-grid {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.value-card {
  background: #fff;
  padding: 30px 22px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.14);
}

.value-card i {
  font-size: 34px;
  color: var(--brand);
  margin-bottom: 14px;
}

.value-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.value-card p {
  color: #555;
  line-height: 1.6;
}

/* CORE VALUES LIST */
.values-list {
  list-style: none;
  padding-left: 0;
}

.values-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  font-size: 16px;
}

.values-list li::before {
  content: "✔";
  color: var(--brand);
  font-weight: 900;
  margin-top: 2px;
}

/* PARTNERS */
.partners-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.partners-container {
  max-width: 1000px;
  margin: auto;
}

.partners-container p {
  max-width: 680px;
  margin: 0 auto 30px;
  color: #555;
}

.partners-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.partner-card {
  background: linear-gradient(180deg, #ffffff, #f1f1f1);
  padding: 30px;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  transition: transform .25s ease;
}

.partner-card:hover {
  transform: translateY(-4px);
}

/* CTA */
.about-cta-section {
  padding: 90px 20px;
  background: var(--brand);
  color: #fff;
  text-align: center;
}

.about-cta-section h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 36px);
}

.about-cta-section p {
  font-size: 18px;
}

.about-cta-section .btn {
  max-width: 260px;
  margin: 24px auto 0;
  font-weight: 800;
  letter-spacing: .04em;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}

/* RESPONSIVE */
@media (max-width: 700px) {
  .about-page-section {
    padding: 60px 16px;
  }

  .lead-text {
    font-size: 17px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }
}

/* STATS SECTION */
    .stats-section {
      background: #fff;
      padding: 80px 20px;
    }

    .stats-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
    }

    .stat-card {
      text-align: center;
      padding: 40px 20px;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .stat-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 40px rgba(228, 9, 9, 0.15);
    }

    .stat-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      background: linear-gradient(135deg, var(--brand) 0%, #c30707 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 20px rgba(228, 9, 9, 0.3);
    }

    .stat-icon i {
      font-size: 36px;
      color: #fff;
    }

    .stat-number {
      font-size: clamp(36px, 5vw, 48px);
      font-weight: 900;
      color: var(--brand);
      margin-bottom: 8px;
    }

    .stat-label {
      font-size: 18px;
      color: #555;
      font-weight: 600;
    }

@media (max-width: 600px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-card {
    padding: 30px 16px;
  }

  .stat-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 14px;
  }

  .stat-icon i {
    font-size: 28px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 14px;
  }
}

/* TIMELINE */
.infographic-section {
  padding: 110px 20px 130px;
  background: #fff;
}

.infographic-title {
  text-align: center;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 900;
  color: var(--brand);
  margin-bottom: 90px;
}

/* WRAPPER */
.infographic-wrapper {
  position: relative;
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* MAIN LINE */
.infographic-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 6px;
  background: #555;
  border-radius: 6px;
  z-index: 0;
}

/* ITEM */
.info-item {
  width: 18%;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* NODE (OUTER CIRCLE) */
.info-icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
  position: relative;
}

/* INNER ICON */
.info-icon i {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CONNECTOR */
.info-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: #aaa;
}

/* CONNECT TOP */
.info-item.top .info-icon::after {
  bottom: 100%;
  height: 40px;
}

/* CONNECT BOTTOM */
.info-item.bottom .info-icon::after {
  top: 100%;
  height: 40px;
}

/* TEXT */
.info-text {
  max-width: 230px;
  margin: auto;
}

.info-text h4 {
  font-size: 28px;
  font-weight: 900;
  color: #000;
  margin-bottom: 10px;
}

.info-text p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #444;
}

/* POSITION TEXT */
.info-item.top .info-text {
  margin-bottom: 36px;
}

.info-item.bottom .info-text {
  margin-top: 36px;
}

/* CURRENT (SOT) */
.info-item.now .info-icon i {
  background: linear-gradient(180deg, #e40909, #b30707);
}

.info-item.now h4 {
  color: var(--brand);
  font-size: 30px;
}

/* MOBILE TIMELINE */
@media (max-width: 900px) {

  .infographic-section {
    position: relative;
  }

  .infographic-section .infographic-wrapper {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 40px 20px 40px 72px;
    position: relative;
  }

  .infographic-section .infographic-line {
    display: block;
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 42px;
    width: 4px;
    background: #555;
    border-radius: 4px;
    z-index: 1;
  }

  .infographic-section .info-item {
    all: unset;
    display: grid;
    grid-template-columns: 64px 1fr;
    grid-template-areas: "icon text";
    align-items: flex-start;
    column-gap: 16px;
    position: relative;
  }

  .infographic-section .info-item.top,
  .infographic-section .info-item.bottom {
    display: grid;
    grid-template-columns: 64px 1fr;
    grid-template-areas: "icon text";
  }

  .infographic-section .info-icon {
    all: unset;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    grid-area: icon;
    position: relative;
    z-index: 2;
  }

  .infographic-section .info-icon i {
    all: unset;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
    font-size: 22px;
  }

  .infographic-section .info-text {
    all: unset;
    grid-area: text;
    display: block;
  }

  .infographic-section .info-text h4 {
    font-size: 22px;
    font-weight: 900;
    margin: 0 0 6px 0;
    line-height: 1.2;
  }

  .infographic-section .info-text p {
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
    color: #444;
  }
}

/* =========================================================
   08. ABOUT PAGE
   Legacy sections, rebuilt hero, V2 editorial layout
   ========================================================= */

/* About page rebuilds */
body.about-page-body {
  background:
    radial-gradient(circle at top left, rgba(244, 89, 48, 0.12), transparent 18%),
    linear-gradient(180deg, #f4f7fb 0%, #ffffff 26%, #ffffff 100%);
}

body.about-page-body .footer-section {
  margin-top: 0;
}

.about-rebuild-hero,
.about-story-section,
.about-pillars-section,
.about-journey-section,
.about-page-cta {
  padding-left: 20px;
  padding-right: 20px;
}

.about-rebuild-hero {
  padding-top: calc(var(--nav-h) + 30px);
  padding-bottom: 34px;
}

.about-rebuild-shell,
.about-story-shell,
.about-pillars-section,
.about-journey-shell,
.about-page-cta__shell {
  max-width: 1400px;
  margin: 0 auto;
}

.about-rebuild-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 36px;
  padding: 42px;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #fbfbfc);
  border: 1px solid rgba(219, 225, 232, 0.92);
  box-shadow: 0 28px 54px rgba(14, 22, 32, 0.10);
}

.about-rebuild-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff5e33, #ff8450);
}

.about-rebuild-shell::after {
  content: "";
  position: absolute;
  inset: auto auto -120px -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 103, 56, 0.18) 0%, rgba(247, 103, 56, 0.04) 38%, transparent 72%);
  pointer-events: none;
}

.about-rebuild-copy,
.about-rebuild-visual {
  position: relative;
  z-index: 1;
}

.about-rebuild-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.about-rebuild-kicker,
.about-section-kicker {
  display: inline-flex;
  justify-self: start;
  align-self: start;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(244, 89, 48, 0.18);
  color: #d53a22;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-rebuild-kicker::before,
.about-section-kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff4d2d;
  box-shadow: 0 0 0 6px rgba(255, 77, 45, 0.10);
}

.about-section-kicker--light {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.about-section-kicker--light::before {
  background: #ffd4c7;
  box-shadow: 0 0 0 6px rgba(255, 212, 199, 0.16);
}

.about-rebuild-copy h1,
.about-section-head h2,
.about-story-copy h2 {
  font-family: "League Spartan", "Arial Narrow", sans-serif;
  letter-spacing: -0.04em;
}

.about-rebuild-copy h1 {
  margin: 0;
  max-width: 9.3ch;
  font-size: clamp(3.8rem, 8vw, 6.2rem);
  line-height: 0.92;
  color: #171d27;
}

.about-rebuild-lead {
  max-width: 35ch;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.78;
  color: #505866;
}

.about-rebuild-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.about-rebuild-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 18px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.about-rebuild-btn:hover {
  transform: translateY(-2px);
}

.about-rebuild-btn--primary {
  color: #fff;
  background: linear-gradient(180deg, #e5241b, #bb1512);
  box-shadow: 0 18px 32px rgba(229, 36, 27, 0.20);
}

.about-rebuild-btn--secondary {
  color: #1e2430;
  background: #fff;
  border: 1px solid rgba(212, 218, 224, 0.95);
  box-shadow: 0 12px 24px rgba(15, 24, 36, 0.06);
}

.about-rebuild-btn--secondary:hover {
  border-color: rgba(229, 36, 27, 0.25);
  color: #bb1512;
}

.about-rebuild-btn--light {
  color: #132033;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 18px 28px rgba(7, 15, 26, 0.20);
}

.about-rebuild-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.about-proof-card {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(223, 228, 234, 0.96);
  box-shadow: 0 14px 28px rgba(18, 26, 36, 0.05);
}

.about-proof-card strong {
  display: block;
  margin-bottom: 8px;
  color: #161d28;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1;
}

.about-proof-card span {
  display: block;
  color: #596272;
  font-size: 0.93rem;
  line-height: 1.45;
}

.about-rebuild-visual {
  min-height: 620px;
}

.about-visual-main,
.about-visual-secondary {
  margin: 0;
  position: absolute;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 28px 52px rgba(10, 18, 28, 0.20);
}

.about-visual-main {
  top: 16px;
  right: 0;
  bottom: 86px;
  left: 72px;
}

.about-visual-secondary {
  left: 0;
  bottom: 136px;
  width: 40%;
  aspect-ratio: 0.88;
  border: 6px solid rgba(255, 255, 255, 0.92);
}

.about-visual-main::after,
.about-visual-secondary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 14, 24, 0.04), rgba(8, 14, 24, 0.18));
}

.about-visual-main img,
.about-visual-secondary img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-visual-note {
  position: absolute;
  right: 22px;
  bottom: 0;
  width: min(360px, 78%);
  padding: 24px 24px 26px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0f1a2c, #16243b);
  color: #fff;
  box-shadow: 0 26px 42px rgba(8, 14, 24, 0.26);
}

.about-visual-note span,
.about-card-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(221, 230, 240, 0.78);
}

.about-network-card .about-card-label {
  color: #8b97a7;
}

.about-visual-note strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.48rem;
  line-height: 1.1;
  font-family: "League Spartan", "Arial Narrow", sans-serif;
  letter-spacing: -0.03em;
}

.about-visual-note p {
  margin: 0;
  color: rgba(221, 230, 240, 0.84);
  line-height: 1.66;
}

.about-story-section {
  padding-top: 18px;
  padding-bottom: 34px;
}

.about-story-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  gap: 34px;
  align-items: start;
}

.about-story-copy,
.about-story-side {
  display: grid;
  gap: 22px;
}

.about-story-copy h2 {
  margin: 0;
  max-width: 12.8ch;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.01;
  color: #171d27;
}

.about-story-copy p,
.about-network-card p,
.about-section-head p,
.about-pillar-card p,
.about-milestone-card p {
  margin: 0;
  color: #405063;
  line-height: 1.82;
  font-size: 1.05rem;
}

.about-manifesto-card,
.about-network-card {
  padding: 32px;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(14, 22, 32, 0.08);
}

.about-manifesto-card {
  background: linear-gradient(135deg, #101a2d, #18253d);
  color: #fff;
}

.about-manifesto-card p {
  margin: 0;
  max-width: 24ch;
  font-size: 1.26rem;
  line-height: 1.62;
  color: rgba(238, 243, 248, 0.94);
}

.about-network-card {
  background: linear-gradient(180deg, #ffffff, #fbfbfc);
  border: 1px solid rgba(223, 228, 234, 0.96);
}

.about-city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.about-city-chips span {
  padding: 11px 16px;
  border-radius: 999px;
  background: #f4f6f9;
  border: 1px solid rgba(216, 222, 228, 0.92);
  color: #243143;
  font-weight: 700;
  font-size: 1rem;
}

.about-pillars-section {
  padding-top: 38px;
  padding-bottom: 42px;
}

.about-section-head {
  max-width: 820px;
  margin: 0 auto 30px;
  text-align: center;
}

.about-section-head--left {
  max-width: 820px;
  margin: 0 0 28px;
  text-align: left;
}

.about-section-head h2 {
  margin: 16px 0 14px;
  max-width: 17ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.15rem, 3.5vw, 3.25rem);
  line-height: 1;
  color: #171d27;
}

.about-section-head--left h2 {
  margin-left: 0;
  margin-right: 0;
}

.about-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.about-pillar-card {
  position: relative;
  padding: 28px 24px 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #fbfbfc);
  border: 1px solid rgba(223, 228, 234, 0.95);
  box-shadow: 0 20px 40px rgba(14, 22, 32, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.about-pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(90deg, #ff4d2d, #ff8a40);
}

.about-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 48px rgba(14, 22, 32, 0.10);
}

.about-pillar-icon {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, #182235, #101826);
  color: #fff;
  font-size: 1.55rem;
  box-shadow: 0 14px 26px rgba(16, 24, 38, 0.16);
}

.about-pillar-card h3 {
  margin: 0 0 12px;
  color: #17202d;
  font-size: 1.38rem;
}

.about-journey-section {
  padding-top: 22px;
  padding-bottom: 44px;
}

.about-journey-shell {
  position: relative;
  overflow: hidden;
  padding: 42px 38px 46px;
  border-radius: 36px;
  background: linear-gradient(135deg, #121c2f 0%, #1c2740 100%);
  box-shadow: 0 28px 52px rgba(8, 14, 24, 0.14);
}

.about-journey-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 30%);
  pointer-events: none;
}

.about-journey-shell > * {
  position: relative;
  z-index: 1;
}

.about-journey-shell .about-section-head {
  max-width: 1180px;
  margin-bottom: 30px;
}

.about-journey-shell .about-section-head h2,
.about-journey-shell .about-section-head p {
  color: #fff;
}

.about-journey-shell .about-section-head h2 {
  max-width: 11.4ch;
  margin: 16px 0 16px;
  font-size: clamp(3rem, 5.7vw, 5.2rem);
  line-height: 0.96;
}

.about-journey-shell .about-section-head p {
  max-width: 60ch;
  margin: 0;
  color: rgba(228, 234, 241, 0.80);
  font-size: 1.05rem;
  line-height: 1.76;
}

.about-milestone-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.about-milestone-grid::before {
  display: none;
}

.about-milestone-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 252px;
  padding: 24px 24px 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.about-milestone-card:nth-child(odd) {
  transform: translateY(-4px);
}

.about-milestone-card:nth-child(even) {
  transform: translateY(8px);
}

.about-milestone-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  height: 38px;
  padding: 0 16px;
  margin-bottom: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffd7c9;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-milestone-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.34rem;
  line-height: 1.16;
}

.about-milestone-card p {
  margin: 0;
  color: rgba(224, 232, 240, 0.84);
  font-size: 0.98rem;
  line-height: 1.72;
}

.about-page-cta {
  padding-top: 14px;
  padding-bottom: 48px;
}

.about-page-cta__shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px 38px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 26%),
    linear-gradient(120deg, #d91f16, #a80f12);
  color: #fff;
  box-shadow: 0 28px 48px rgba(169, 16, 19, 0.20);
}

.about-page-cta__shell h2 {
  margin: 14px 0 12px;
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  line-height: 0.95;
  font-family: "League Spartan", "Arial Narrow", sans-serif;
  letter-spacing: -0.04em;
}

.about-page-cta__shell p {
  margin: 0;
  max-width: 42ch;
  color: rgba(255, 239, 235, 0.9);
  line-height: 1.72;
}

@media (max-width: 1180px) {
  .about-rebuild-shell,
  .about-story-shell {
    grid-template-columns: 1fr;
  }

  .about-rebuild-visual {
    min-height: 560px;
  }

  .about-visual-main {
    left: 48px;
  }

  .about-proof-card strong {
    font-size: 1.7rem;
  }

  .about-pillar-grid,
  .about-milestone-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-milestone-card:nth-child(odd),
  .about-milestone-card:nth-child(even) {
    transform: none;
  }

  .about-milestone-grid::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .about-rebuild-hero,
  .about-story-section,
  .about-pillars-section,
  .about-journey-section,
  .about-page-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .about-rebuild-shell,
  .about-journey-shell,
  .about-page-cta__shell {
    padding: 28px 24px;
    border-radius: 28px;
  }

  .about-journey-shell .about-section-head {
    margin-bottom: 26px;
  }

  .about-rebuild-shell::before {
    left: 24px;
    right: 24px;
  }

  .about-rebuild-copy h1,
  .about-story-copy h2,
  .about-section-head h2,
  .about-page-cta__shell h2 {
    max-width: none;
    font-size: clamp(2.8rem, 11vw, 4.3rem);
  }

  .about-journey-shell .about-section-head h2 {
    margin-bottom: 14px;
    line-height: 0.98;
  }

  .about-story-copy p,
  .about-network-card p,
  .about-section-head p,
  .about-pillar-card p,
  .about-milestone-card p {
    font-size: 1rem;
    line-height: 1.74;
  }

  .about-rebuild-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-rebuild-visual {
    min-height: 520px;
  }

  .about-visual-main {
    left: 18px;
    bottom: 86px;
  }

  .about-visual-secondary {
    width: 38%;
    bottom: 150px;
  }

  .about-visual-note {
    right: 0;
    width: min(360px, 86%);
  }

  .about-page-cta__shell {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .about-rebuild-shell,
  .about-journey-shell,
  .about-page-cta__shell,
  .about-manifesto-card,
  .about-network-card,
  .about-pillar-card {
    border-radius: 24px;
  }

  .about-rebuild-shell,
  .about-journey-shell {
    padding: 24px 18px;
  }

  .about-journey-shell .about-section-head {
    margin-bottom: 22px;
  }

  .about-rebuild-shell::before {
    left: 18px;
    right: 18px;
  }

  .about-rebuild-copy {
    gap: 18px;
  }

  .about-rebuild-copy h1 {
    max-width: 8.6ch;
    font-size: clamp(3rem, 16vw, 4.2rem);
  }

  .about-rebuild-lead {
    font-size: 1rem;
  }

  .about-rebuild-actions,
  .about-rebuild-proof {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .about-rebuild-actions {
    display: grid;
  }

  .about-rebuild-btn {
    width: 100%;
  }

  .about-rebuild-visual {
    min-height: 420px;
  }

  .about-visual-main {
    inset: 0 0 96px 0;
  }

  .about-visual-secondary {
    display: none;
  }

  .about-visual-note {
    left: 0;
    right: 0;
    width: auto;
    padding: 20px 18px 22px;
  }

  .about-story-shell,
  .about-pillar-grid,
  .about-milestone-grid {
    grid-template-columns: 1fr;
  }

  .about-milestone-grid {
    gap: 16px;
  }

  .about-milestone-card {
    min-height: auto;
    padding: 22px 20px 24px;
    gap: 12px;
  }

  .about-milestone-year {
    min-width: 72px;
    height: 36px;
    padding: 0 16px;
    font-size: 0.88rem;
  }

  .about-milestone-card h3 {
    font-size: 1.3rem;
  }

  .about-milestone-card p {
    font-size: 0.96rem;
    line-height: 1.66;
  }

  .about-story-copy h2,
  .about-section-head h2,
  .about-page-cta__shell h2 {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .about-story-copy h2 {
    max-width: 11ch;
  }

  .about-manifesto-card p {
    font-size: 1.1rem;
    max-width: none;
  }

  .about-page-cta__shell {
    padding: 24px 18px;
  }

  .about-rebuild-btn--light {
    min-width: 0;
  }
}

/* ABOUT PAGE V2 */
body.about-page-body {
  background:
    radial-gradient(circle at top left, rgba(255, 101, 54, 0.08), transparent 26%),
    linear-gradient(180deg, #f8f5f2 0%, #fbfaf8 42%, #f6f3ef 100%);
}

body.about-page-body .fade-in {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

body.about-page-body .fade-in.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes aboutHeroLift {
  from {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes aboutHeroSlideLeft {
  from {
    opacity: 0;
    transform: translate3d(26px, 18px, 0) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes aboutHeroSlideUp {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.about-v2-main {
  padding-bottom: 48px;
}

.about-v2-editorial__headline,
.about-v2-editorial__left,
.about-v2-editorial__right,
.about-v2-section-head,
.about-v2-value-card,
.about-v2-event,
.about-v2-cta__copy,
.about-v2-cta__shell > .about-v2-btn {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.about-v2-editorial.visible .about-v2-editorial__headline,
.about-v2-editorial.visible .about-v2-editorial__left,
.about-v2-editorial.visible .about-v2-editorial__right,
.about-v2-values.visible .about-v2-section-head,
.about-v2-values.visible .about-v2-value-card,
.about-v2-timeline.visible .about-v2-section-head,
.about-v2-timeline.visible .about-v2-event,
.about-v2-cta.visible .about-v2-cta__copy,
.about-v2-cta.visible .about-v2-cta__shell > .about-v2-btn {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.about-v2-editorial.visible .about-v2-editorial__headline { transition-delay: 0.04s; }
.about-v2-editorial.visible .about-v2-editorial__left { transition-delay: 0.14s; }
.about-v2-editorial.visible .about-v2-editorial__right { transition-delay: 0.26s; }
.about-v2-values.visible .about-v2-value-card:nth-child(1) { transition-delay: 0.08s; }
.about-v2-values.visible .about-v2-value-card:nth-child(2) { transition-delay: 0.16s; }
.about-v2-values.visible .about-v2-value-card:nth-child(3) { transition-delay: 0.24s; }
.about-v2-values.visible .about-v2-value-card:nth-child(4) { transition-delay: 0.32s; }
.about-v2-timeline.visible .about-v2-event:nth-child(2) { transition-delay: 0.06s; }
.about-v2-timeline.visible .about-v2-event:nth-child(3) { transition-delay: 0.14s; }
.about-v2-timeline.visible .about-v2-event:nth-child(4) { transition-delay: 0.22s; }
.about-v2-timeline.visible .about-v2-event:nth-child(5) { transition-delay: 0.30s; }
.about-v2-timeline.visible .about-v2-event:nth-child(6) { transition-delay: 0.38s; }
.about-v2-cta.visible .about-v2-cta__copy { transition-delay: 0.08s; }
.about-v2-cta.visible .about-v2-cta__shell > .about-v2-btn { transition-delay: 0.2s; }

.about-v2-hero,
.about-v2-editorial,
.about-v2-values,
.about-v2-timeline,
.about-v2-cta {
  padding-left: 20px;
  padding-right: 20px;
  overflow-x: clip;
}

.about-v2-shell {
  max-width: 1420px;
  margin: 0 auto;
  min-width: 0;
}

.about-v2-tag {
  display: inline-flex;
  align-items: center;
  width: min(100%, 820px);
  justify-content: flex-start;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(236, 108, 71, 0.20);
  background: rgba(255, 255, 255, 0.92);
  color: #dd4125;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-v2-tag::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5a36;
  box-shadow: 0 0 0 6px rgba(255, 90, 54, 0.10);
}

.about-v2-tag--soft {
  background: rgba(255, 255, 255, 0.68);
}

.about-v2-tag--dark {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.10);
  color: #fff3ee;
}

.about-v2-tag--dark::before {
  background: #ffd2c5;
  box-shadow: 0 0 0 6px rgba(255, 210, 197, 0.14);
}

.about-v2-hero {
  padding-top: calc(var(--nav-h) + 4px);
  padding-bottom: 26px;
}

.about-v2-hero__shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(420px, 0.78fr);
  gap: 30px;
  padding: 30px 46px 40px;
  border-radius: 38px;
  background: linear-gradient(135deg, #ffffff 0%, #fffdfa 62%, #f5f7fa 100%);
  border: 1px solid rgba(229, 234, 240, 0.96);
  box-shadow:
    0 30px 60px rgba(16, 24, 38, 0.10),
    0 10px 22px rgba(16, 24, 38, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  overflow: hidden;
}

.about-v2-hero__shell:hover .about-v2-media-card--main {
  transform: translate3d(0, -4px, 0) scale(1.01);
}

.about-v2-hero__shell:hover .about-v2-media-card--offset {
  transform: translate3d(4px, -6px, 0) rotate(-1deg);
}

.about-v2-hero__shell:hover .about-v2-floating-note {
  transform: translate3d(0, -4px, 0);
  box-shadow: 0 34px 56px rgba(9, 15, 26, 0.30);
}

.about-v2-hero__shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 36px;
  right: 36px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff4b2b 0%, #f04b2a 55%, #ff6b3d 100%);
}

.about-v2-hero__copy,
.about-v2-hero__media {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.about-v2-hero__copy {
  display: grid;
  align-content: start;
  gap: 28px;
  padding: 0;
  animation: aboutHeroLift 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.about-v2-hero__copy h1,
.about-v2-editorial__left h2,
.about-v2-section-head h2 {
  margin: 0;
  font-family: "League Spartan", "Arial Narrow", sans-serif;
  letter-spacing: -0.04em;
}

.about-v2-hero__copy h1 {
  max-width: 14.6ch;
  font-size: clamp(3.6rem, 4.7vw, 5rem);
  line-height: 0.96;
  color: #0d1b44;
  text-wrap: balance;
}

.about-v2-hero__copy h1 span {
  display: block;
  white-space: nowrap;
}

.about-v2-hero__lead {
  max-width: 41ch;
  margin: 0;
  font-size: clamp(1.26rem, 1.55vw, 1.5rem);
  line-height: 1.74;
  color: #425a7c;
  font-weight: 500;
}

.about-v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.about-v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 30px;
  border-radius: 22px;
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.about-v2-btn:hover {
  transform: translateY(-2px);
}

.about-v2-btn--primary {
  gap: 12px;
  overflow: hidden;
  border-radius: 999px;
  clip-path: none;
  color: #fff;
  background: #121a2a;
  border: 1px solid rgba(18, 26, 42, 0.92);
  box-shadow: 0 18px 32px rgba(18, 26, 42, 0.18);
}

.about-v2-actions .about-v2-btn--primary::before {
  inset: 0;
  background: linear-gradient(135deg, #ef3f2c, #c51d16);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.about-v2-actions .about-v2-btn--primary::after {
  content: "\2192";
  position: static;
  width: 30px;
  height: 30px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  transform: none;
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.24s ease, background 0.24s ease;
}

.about-v2-actions .about-v2-btn--primary:hover {
  border-color: rgba(239, 63, 44, 0.62);
  box-shadow: 0 20px 34px rgba(229, 35, 26, 0.20);
}

.about-v2-actions .about-v2-btn--primary:hover::before {
  transform: scaleX(1);
}

.about-v2-actions .about-v2-btn--primary:hover::after {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.18);
}

.about-v2-btn--secondary {
  color: #1f2837;
  background: #fff;
  border: 1px solid rgba(214, 221, 229, 0.96);
  box-shadow: 0 12px 24px rgba(18, 26, 36, 0.06);
}

.about-v2-btn--secondary:hover {
  border-color: rgba(255, 90, 54, 0.36);
}

.about-v2-btn--dark {
  color: #fff;
  background: linear-gradient(180deg, #162235, #0f1828);
  min-width: 204px;
  box-shadow: 0 16px 28px rgba(15, 24, 40, 0.16);
}

.about-v2-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.about-v2-stat-card {
  padding: 18px 18px 20px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(222, 228, 235, 0.94);
  box-shadow: 0 16px 34px rgba(16, 24, 38, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.about-v2-stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(234, 52, 27, 0.22);
  box-shadow: 0 22px 40px rgba(16, 24, 38, 0.10);
}

.about-v2-stat-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 76, 47, 0.10), rgba(255, 76, 47, 0.04));
  color: #ea341b;
  font-size: 1.4rem;
}

.about-v2-stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: #111d44;
  font-size: clamp(1.9rem, 2.2vw, 2.3rem);
  font-family: "League Spartan", "Arial Narrow", sans-serif;
  line-height: 0.95;
}

.about-v2-stat-card span:last-child {
  display: block;
  color: #5a6880;
  font-size: 0.92rem;
  line-height: 1.52;
}

.about-v2-hero__media {
  min-height: 560px;
  animation: aboutHeroSlideLeft 1s cubic-bezier(0.2, 0.7, 0.2, 1) 0.14s both;
}

.about-v2-media-card {
  position: absolute;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 28px 52px rgba(15, 24, 40, 0.16);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.about-v2-media-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-v2-media-card--main {
  inset: 0 0 106px 18%;
}

.about-v2-media-card--offset {
  left: 0;
  bottom: 134px;
  width: 43%;
  aspect-ratio: 0.86;
  border: 8px solid rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 42px rgba(15, 24, 40, 0.14);
}

.about-v2-floating-note {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(500px, 86%);
  padding: 26px 28px 28px;
  border-radius: 30px;
  background: linear-gradient(135deg, #071632, #0d2248 70%, #122956 100%);
  color: #fff;
  box-shadow: 0 28px 46px rgba(9, 15, 26, 0.28);
  animation: aboutHeroSlideUp 0.85s cubic-bezier(0.2, 0.7, 0.2, 1) 0.3s both;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.about-v2-floating-note span,
.about-v2-card-label {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-v2-floating-note span {
  color: #ff6f42;
}

.about-v2-floating-note strong {
  display: block;
  margin-bottom: 14px;
  max-width: 19ch;
  font-size: clamp(1.58rem, 1.75vw, 2.05rem);
  line-height: 1.04;
  font-family: "League Spartan", "Arial Narrow", sans-serif;
  letter-spacing: -0.032em;
}

.about-v2-floating-note p {
  margin: 0;
  color: rgba(230, 237, 246, 0.88);
  line-height: 1.58;
  font-size: 0.96rem;
}

@media (prefers-reduced-motion: reduce) {
  .product-family::before,
  .about-v2-value-card::before {
    animation: none !important;
    background-position: 0 0;
  }

  .about-v2-hero__copy,
  .about-v2-hero__media,
  .about-v2-floating-note,
  .about-v2-editorial__headline,
  .about-v2-editorial__left,
  .about-v2-editorial__right,
  .about-v2-section-head,
  .about-v2-value-card,
  .about-v2-event,
  .about-v2-cta__copy,
  .about-v2-cta__shell > .about-v2-btn {
    animation: none !important;
  }

  .about-v2-media-card,
  .about-v2-floating-note,
  .about-v2-stat-card,
  .about-v2-editorial-photo,
  .about-v2-note,
  .about-v2-chip-row span,
  .about-v2-value-card,
  .about-v2-value-icon,
  .about-v2-event__node,
  .about-v2-event__card,
  .about-v2-cta__shell,
  .about-v2-timeline__line {
    transition: none !important;
  }

  .about-v2-hero__shell:hover .about-v2-media-card--main,
  .about-v2-hero__shell:hover .about-v2-media-card--offset,
  .about-v2-hero__shell:hover .about-v2-floating-note,
  .about-v2-stat-card:hover,
  .about-v2-editorial-photo:hover,
  .about-v2-note:hover,
  .about-v2-chip-row span:hover,
  .about-v2-value-card:hover,
  .about-v2-value-card:hover .about-v2-value-icon,
  .about-v2-event:hover .about-v2-event__node,
  .about-v2-event:hover .about-v2-event__card,
  .about-v2-cta__shell:hover {
    transform: none !important;
  }
}

.about-v2-editorial {
  padding-top: 20px;
  padding-bottom: 42px;
}

.about-v2-editorial__shell {
  display: grid;
  gap: 30px;
}

.about-v2-editorial__headline {
  width: min(100%, 560px);
  margin-bottom: 24px;
}

.about-v2-editorial__headline .about-v2-tag {
  width: 100%;
  justify-content: flex-start;
}

.about-v2-editorial__left h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2.45rem, 4.3vw, 3.85rem);
  line-height: 0.98;
  letter-spacing: -0.036em;
  text-wrap: balance;
  color: #182132;
}

.about-v2-editorial__grid {
  display: grid;
  grid-template-columns: minmax(0, 610px) minmax(0, 560px);
  width: min(100%, 1210px);
  margin: 0 auto;
  column-gap: 38px;
  align-items: start;
}

.about-v2-editorial__left,
.about-v2-editorial__right {
  display: grid;
  gap: 22px;
  align-self: start;
}

.about-v2-editorial__left {
  width: 100%;
}

.about-v2-editorial__right {
  gap: 20px;
  width: 100%;
}

.about-v2-prose-copy {
  display: grid;
  gap: 24px;
}

.about-v2-editorial-photo {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 32px;
  aspect-ratio: 1 / 1;
  min-height: 0;
  background-color: #ebe8e3;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  box-shadow: 0 24px 42px rgba(15, 21, 33, 0.14);
  transition: transform 0.42s ease, box-shadow 0.42s ease, filter 0.42s ease;
}

.about-v2-editorial-photo:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 32px 54px rgba(15, 21, 33, 0.18);
  filter: saturate(1.04);
}

.about-v2-editorial-photo--top {
  aspect-ratio: 1 / 1.04;
}

.about-v2-editorial-photo--bottom {
  aspect-ratio: 1 / 1.24;
}

.about-v2-editorial-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 16, 26, 0.02), rgba(10, 16, 26, 0.18));
  pointer-events: none;
}

.about-v2-prose-copy p,
.about-v2-note--light p,
.about-v2-section-head p,
.about-v2-value-card p,
.about-v2-event__card p,
.about-v2-cta__copy p {
  margin: 0;
  color: #425264;
  font-size: clamp(1.14rem, 1.08vw, 1.26rem);
  line-height: 1.7;
}

.about-v2-note {
  padding: 34px;
  border-radius: 30px;
  box-shadow: 0 22px 42px rgba(16, 24, 38, 0.08);
  transition: transform 0.34s ease, box-shadow 0.34s ease;
}

.about-v2-note:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 52px rgba(16, 24, 38, 0.12);
}

.about-v2-note--dark {
  background: linear-gradient(135deg, #101a2e, #1b2842);
  color: #fff;
}

.about-v2-note--dark .about-v2-card-label {
  color: rgba(229, 236, 245, 0.76);
}

.about-v2-note--dark p {
  margin: 0;
  max-width: 38ch;
  color: rgba(240, 244, 248, 0.94);
  font-size: clamp(1.36rem, 1.42vw, 1.58rem);
  line-height: 1.38;
}

.about-v2-note--light {
  background: linear-gradient(180deg, #ffffff, #fbfaf8);
  border: 1px solid rgba(224, 229, 235, 0.94);
}

.about-v2-note--light .about-v2-card-label {
  color: #8c98a8;
}

.about-v2-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.about-v2-chip-row span {
  padding: 12px 18px;
  border-radius: 999px;
  background: #f4f6f8;
  border: 1px solid rgba(216, 222, 229, 0.94);
  color: #253244;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.about-v2-chip-row span:hover {
  transform: translateY(-2px);
  border-color: rgba(234, 52, 27, 0.22);
  background: #ffffff;
}

.about-v2-values {
  padding-top: 12px;
  padding-bottom: 48px;
}

.about-v2-values .about-v2-section-head {
  max-width: 1240px;
}

.about-v2-values .about-v2-tag {
  width: fit-content;
  min-width: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 18px;
  border-radius: 999px;
}

.about-v2-values .about-v2-section-head h2 {
  max-width: 32ch;
  font-size: clamp(2.55rem, 4.1vw, 4.1rem);
  line-height: 1.06;
  letter-spacing: -0.032em;
}

.about-v2-values .about-v2-section-head p {
  max-width: 96ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.16rem, 1.26vw, 1.36rem);
  line-height: 1.52;
}

.about-v2-section-head {
  max-width: 820px;
  margin: 0 auto 30px;
  text-align: center;
}

.about-v2-section-head h2 {
  max-width: 20ch;
  margin: 16px auto 14px;
  font-size: clamp(2.2rem, 3.8vw, 3.45rem);
  line-height: 0.98;
  color: #172130;
}

.about-v2-section-head--left {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.about-v2-section-head--left h2 {
  margin-left: 0;
  margin-right: 0;
}

.about-v2-section-head--light h2,
.about-v2-section-head--light p {
  color: #fff;
}

.about-v2-section-head--light p {
  color: rgba(227, 234, 243, 0.82);
}

.about-v2-values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.about-v2-value-card {
  position: relative;
  padding: 28px 24px 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #fbfbfc);
  border: 1px solid rgba(223, 228, 234, 0.95);
  box-shadow: 0 20px 40px rgba(14, 22, 32, 0.07);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.about-v2-value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(234, 52, 27, 0.18);
  box-shadow: 0 28px 48px rgba(14, 22, 32, 0.11);
}

.about-v2-value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 28px 28px 0 0;
  background:
    linear-gradient(90deg, rgba(255, 77, 45, 0.18), #ff4d2d, #ff8a40, rgba(255, 77, 45, 0.18));
  background-size: 220% 100%;
  animation: redLineLoad 2.4s linear infinite;
}

.about-v2-value-icon {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, #192438, #101826);
  color: #fff;
  font-size: 1.55rem;
  box-shadow: 0 14px 26px rgba(16, 24, 38, 0.16);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.about-v2-value-card:hover .about-v2-value-icon {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 30px rgba(16, 24, 38, 0.2);
}

.about-v2-value-card h3 {
  margin: 0 0 12px;
  color: #17202d;
  font-size: 1.38rem;
}

.about-v2-timeline {
  padding-top: 14px;
  padding-bottom: 60px;
}

.about-v2-timeline__shell {
  position: relative;
  overflow: hidden;
  padding: 46px 46px 58px;
  border-radius: 42px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(135deg, #111a2e 0%, #1a2540 100%);
  box-shadow: 0 30px 56px rgba(8, 14, 24, 0.18);
}

.about-v2-timeline .about-v2-section-head {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
  text-align: center;
}

.about-v2-timeline .about-v2-tag {
  width: fit-content;
  min-width: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 18px;
  border-radius: 999px;
}

.about-v2-timeline .about-v2-section-head h2 {
  max-width: none;
  margin: 16px auto 12px;
  font-size: clamp(2.85rem, 4.7vw, 4.35rem);
  line-height: 1;
  letter-spacing: -0.032em;
}

.about-v2-timeline .about-v2-section-head p {
  max-width: 92ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.22rem, 1.42vw, 1.48rem);
  line-height: 1.42;
}

.about-v2-timeline__track {
  position: relative;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin-top: 58px;
  padding: 34px 0;
}

.about-v2-timeline__line {
  position: absolute;
  top: 50%;
  left: 7%;
  right: 7%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 210, 197, 0.42), rgba(255, 255, 255, 0.08));
  transform-origin: left center;
  transition: transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 1.1s ease;
}

.about-v2-timeline:not(.visible) .about-v2-timeline__line {
  opacity: 0.35;
  transform: translateY(-50%) scaleX(0.2);
}

.about-v2-timeline.visible .about-v2-timeline__line {
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
}

.about-v2-event {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-v2-event--top {
  padding-bottom: 268px;
}

.about-v2-event--bottom {
  padding-top: 268px;
}

.about-v2-event__node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.42rem;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  transition: transform 0.34s ease, box-shadow 0.34s ease, background 0.34s ease;
}

.about-v2-event:hover .about-v2-event__node {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.22);
}

.about-v2-event__node::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.20);
}

.about-v2-event--top .about-v2-event__node::after {
  bottom: 100%;
  height: 86px;
}

.about-v2-event--bottom .about-v2-event__node::after {
  top: 100%;
  height: 86px;
}

.about-v2-event__card {
  width: 100%;
  min-height: 214px;
  padding: 24px 22px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.34s ease, background 0.34s ease, border-color 0.34s ease;
}

.about-v2-event:hover .about-v2-event__card {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 210, 197, 0.2);
}

.about-v2-event--top .about-v2-event__card {
  margin-bottom: 112px;
}

.about-v2-event--bottom .about-v2-event__card {
  margin-top: 112px;
}

.about-v2-event__year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  min-height: 38px;
  padding: 0 18px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffd7c9;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-v2-event__card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.36rem;
  line-height: 1.16;
}

.about-v2-event__card p {
  color: rgba(227, 234, 243, 0.84);
  font-size: 0.98rem;
}

.about-v2-event--now .about-v2-event__node {
  background: linear-gradient(180deg, #f04c2e, #c92418);
  border-color: rgba(255, 130, 99, 0.42);
}

.about-v2-cta {
  padding-top: 4px;
  padding-bottom: 54px;
}

.about-v2-cta__shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: clamp(30px, 4vw, 52px);
  align-items: center;
  padding: 38px 42px 40px;
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at 88% 28%, rgba(229, 35, 26, 0.14), transparent 30%),
    linear-gradient(135deg, #ffffff, #f8fafc);
  border: 1px solid rgba(223, 229, 236, 0.94);
  box-shadow: 0 30px 56px rgba(16, 24, 38, 0.10);
  transition: transform 0.34s ease, box-shadow 0.34s ease;
  overflow: hidden;
}

.about-v2-cta__shell::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: 30px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1px solid rgba(229, 35, 26, 0.10);
  background: radial-gradient(circle, rgba(229, 35, 26, 0.045), transparent 62%);
  pointer-events: none;
}

.about-v2-cta__shell::before {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  top: 0;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff4b2b, #f04b2a 55%, rgba(240, 75, 42, 0));
}

.about-v2-cta__shell:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 52px rgba(16, 24, 38, 0.12);
}

.about-v2-cta__copy {
  display: grid;
  gap: 20px;
  max-width: 1040px;
  position: relative;
  z-index: 1;
}

.about-v2-cta__copy h2 {
  margin: 0;
  max-width: 30ch;
  color: #172130;
  font-size: clamp(2.55rem, 3.45vw, 3.45rem);
  line-height: 1.12;
  font-family: "League Spartan", "Arial Narrow", sans-serif;
  letter-spacing: -0.028em;
}

.about-v2-cta__copy p {
  max-width: 78ch;
  font-size: clamp(1.22rem, 1.28vw, 1.4rem);
  line-height: 1.55;
  color: #526277;
}

.about-v2-cta__points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2px;
}

.about-v2-cta__points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(223, 229, 236, 0.94);
  color: #34445a;
  font-weight: 800;
  font-size: 1.06rem;
  box-shadow: 0 10px 20px rgba(16, 24, 38, 0.05);
  transition: transform 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.about-v2-cta__points i {
  color: #e5231a;
  font-size: 0.78rem;
}

.about-v2-cta__points span:hover {
  transform: translateY(-2px);
  border-color: rgba(229, 35, 26, 0.24);
  color: #162235;
}

.about-v2-cta__shell > .about-v2-btn {
  position: relative;
  z-index: 1;
  width: min(100%, 310px);
  min-height: 72px;
  gap: 0;
  border-radius: 14px;
  align-self: center;
  justify-self: end;
  clip-path: none;
  background: #111827;
  color: #ffffff;
  font-size: 1.06rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(17, 24, 39, 0.92);
  box-shadow:
    0 16px 30px rgba(17, 24, 39, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
  animation: none;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.about-v2-cta__shell > .about-v2-btn::before {
  content: "";
  position: absolute;
  inset: 0 50% 0 0;
  z-index: -1;
  background: #e5231a;
  transform: translateX(-100%);
  transition: transform 0.28s ease;
}

.about-v2-cta__shell > .about-v2-btn::after {
  content: "";
  position: absolute;
  inset: 0 0 0 50%;
  z-index: -1;
  width: auto;
  height: auto;
  margin: 0;
  border-radius: 0;
  background: #c91f18;
  box-shadow: none;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.about-v2-cta__shell > .about-v2-btn:hover {
  transform: translateY(-2px);
  background: #111827;
  border-color: rgba(229, 35, 26, 0.56);
  color: #ffffff;
  box-shadow:
    0 18px 34px rgba(229, 35, 26, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.about-v2-cta__shell > .about-v2-btn:hover::before {
  transform: translateX(0);
}

.about-v2-cta__shell > .about-v2-btn:hover::after {
  transform: translateX(0);
}


@media (max-width: 1240px) {
  .about-v2-hero__shell,
  .about-v2-editorial__grid {
    grid-template-columns: 1fr;
  }

  .about-v2-editorial__left,
  .about-v2-editorial__right {
    width: 100%;
  }

  .about-v2-editorial__left h2 {
    max-width: 12ch;
  }

  .about-v2-hero__media {
    min-height: 560px;
  }

  .about-v2-values__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .about-v2-timeline {
    padding-top: 8px;
    padding-bottom: 44px;
  }

  .about-v2-timeline__shell {
    padding: 38px 30px 42px;
  }

  .about-v2-timeline .about-v2-section-head {
    margin-bottom: 26px;
  }

  .about-v2-timeline__track {
    display: grid;
    gap: 28px;
    margin-top: 34px;
    padding: 8px 0 10px;
  }

  .about-v2-timeline__line {
    top: 28px;
    bottom: 28px;
    left: 40px;
    right: auto;
    width: 2px;
    height: auto;
    transform: none;
    transform-origin: center top;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 210, 197, 0.42), rgba(255, 255, 255, 0.08));
  }

  .about-v2-timeline:not(.visible) .about-v2-timeline__line {
    opacity: 0.35;
    transform: scaleY(0.2);
  }

  .about-v2-timeline.visible .about-v2-timeline__line {
    opacity: 1;
    transform: scaleY(1);
  }

  .about-v2-event,
  .about-v2-event--top,
  .about-v2-event--bottom {
    padding: 0;
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    grid-template-areas: "node card";
    align-items: center;
    gap: 24px;
  }

  .about-v2-event__node {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    grid-area: node;
    justify-self: center;
    align-self: center;
    margin-top: 0;
  }

  .about-v2-event__node::after {
    display: none;
  }

  .about-v2-event__card,
  .about-v2-event--top .about-v2-event__card,
  .about-v2-event--bottom .about-v2-event__card {
    grid-area: card;
    margin: 0;
    min-height: auto;
    align-self: center;
    padding: 28px 26px 30px;
  }
}

@media (max-width: 900px) {
  .about-v2-hero,
  .about-v2-editorial,
  .about-v2-values,
  .about-v2-timeline,
  .about-v2-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .about-v2-hero {
    padding-top: calc(var(--nav-h) + 2px);
    padding-bottom: 20px;
  }

  .about-v2-hero__shell,
  .about-v2-timeline__shell,
  .about-v2-cta__shell {
    padding: 26px 24px;
    border-radius: 30px;
  }

  .about-v2-hero__shell::before {
    left: 24px;
    right: 24px;
  }

  .about-v2-hero__copy h1 {
    max-width: none;
    font-size: clamp(3.2rem, 14vw, 5rem);
  }

  .about-v2-editorial__left h2,
  .about-v2-section-head h2,
  .about-v2-section-head--light h2,
  .about-v2-cta__copy h2 {
    max-width: none;
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .about-v2-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-v2-hero__media {
    min-height: 540px;
  }

  .about-v2-media-card--main {
    inset: 8px 0 120px 8%;
  }

  .about-v2-media-card--offset {
    width: 42%;
    bottom: 148px;
  }

  .about-v2-floating-note {
    width: min(460px, 90%);
    right: 0;
  }

  .about-v2-cta__shell {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .about-v2-cta__shell > .about-v2-btn {
    width: min(100%, 280px);
    justify-self: start;
  }

  .about-v2-cta__points {
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .about-v2-hero__shell,
  .about-v2-timeline__shell,
  .about-v2-cta__shell,
  .about-v2-note,
  .about-v2-value-card,
  .about-v2-event__card {
    border-radius: 24px;
  }

  .about-v2-hero__shell,
  .about-v2-timeline__shell {
    padding: 22px 18px 26px;
  }

  .about-v2-hero__shell::before {
    left: 18px;
    right: 18px;
  }

  .about-v2-cta__shell::before {
    left: 18px;
    right: 18px;
  }

  .about-v2-cta__shell::after {
    right: -40px;
    bottom: -40px;
  }

  .about-v2-cta__points span {
    width: 100%;
  }

  .about-v2-hero__copy {
    gap: 18px;
  }

  .about-v2-hero__copy h1 {
    font-size: clamp(1.95rem, 8.5vw, 2.6rem);
    max-width: none;
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .about-v2-editorial__left h2,
  .about-v2-section-head h2,
  .about-v2-section-head--light h2,
  .about-v2-cta__copy h2 {
    font-size: clamp(1.95rem, 8.5vw, 2.7rem);
    overflow-wrap: anywhere;
  }

  .about-v2-hero__lead,
  .about-v2-prose-copy p,
  .about-v2-note--light p,
  .about-v2-section-head p,
  .about-v2-value-card p,
  .about-v2-event__card p,
  .about-v2-cta__copy p {
    font-size: 1rem;
    line-height: 1.74;
  }

  .about-v2-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .about-v2-actions {
    display: grid;
  }

  .about-v2-btn,
  .about-v2-btn--dark {
    width: 100%;
    min-width: 0;
  }

  .about-v2-values__grid {
    grid-template-columns: 1fr;
  }

  .about-v2-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
  }

  .about-v2-stat-card {
    min-height: 148px;
    padding: 18px 14px 16px;
    border-radius: 20px;
  }

  .about-v2-stat-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    border-radius: 14px;
    font-size: 1.16rem;
  }

  .about-v2-stat-card strong {
    margin-bottom: 6px;
    font-size: clamp(1.62rem, 8vw, 2rem);
  }

  .about-v2-stat-card span:last-child {
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .about-v2-hero__media {
    min-height: 420px;
  }

  .about-v2-media-card--main {
    inset: 0 0 96px 0;
  }

  .about-v2-media-card--offset {
    display: none;
  }

  .about-v2-floating-note {
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    padding: 20px 18px 22px;
  }

  .about-v2-floating-note strong {
    max-width: 20ch;
    font-size: clamp(1.34rem, 7vw, 1.72rem);
    line-height: 1.08;
  }

  .about-v2-floating-note p {
    font-size: 0.94rem;
    line-height: 1.56;
  }

  .about-v2-note {
    padding: 24px 20px;
  }

  .about-v2-note--dark p {
    max-width: none;
    font-size: 1.14rem;
  }

  .about-v2-editorial-photo {
    min-height: 0;
    border-radius: 28px;
  }

  .about-v2-chip-row span {
    font-size: 0.95rem;
  }

  .about-v2-timeline__line {
    left: 34px;
    top: 40px;
    bottom: 40px;
  }

  .about-v2-event,
  .about-v2-event--top,
  .about-v2-event--bottom {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 18px;
  }

  .about-v2-event__node {
    width: 68px;
    height: 68px;
    font-size: 1.18rem;
  }

  .about-v2-event__card {
    padding: 24px 18px 26px;
  }

  .about-v2-event__year {
    min-width: 70px;
    min-height: 34px;
    padding: 0 14px;
    font-size: 0.84rem;
  }

  .about-v2-event__card h3 {
    font-size: 1.2rem;
  }

  .about-v2-cta__shell {
    padding: 24px 18px;
  }
}

/* =========================================================
   09. FOOTER
   Brand, menu links, contact details, social links
   ========================================================= */
.footer-section {
  background: var(--brand);
  color: white;
  padding: 38px 20px 22px;
  margin-top: 50px;
  border-top: 1px solid #ffffff55;
}

.footer-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  align-items: start;
}

/* BRAND */
.footer-brand {
  text-align: center;
}

.footer-logo {
  width: 95px;
  margin-bottom: 10px;
  border-radius: 12px;
}

.footer-brand h3 {
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 14px;
  opacity: 0.9;
}

/* HOMEPAGE PHOTO COLLAGE */
body.home-page .about__img--collage {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(180px, 0.82fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body.home-page .about__img--collage img {
  border-radius: 0;
}

body.home-page .about-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, #151d2b, #202c41);
  box-shadow: 0 18px 34px rgba(15, 22, 33, 0.16);
}

body.home-page .about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(6, 10, 18, 0.16) 100%);
  pointer-events: none;
}

body.home-page .about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

body.home-page .about-photo:hover img {
  transform: scale(1.04);
}

body.home-page .about-photo--main {
  grid-row: 1 / span 2;
}

@media (max-width: 900px) {
  body.home-page .about__img--collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(260px, 360px) minmax(160px, 220px);
  }

  body.home-page .about-photo--main {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  body.home-page .about__img--collage {
    grid-template-columns: 1fr;
    grid-template-rows: 250px 180px 180px;
  }

  body.home-page .about-photo,
  body.home-page .about-photo--main {
    grid-column: auto;
    grid-row: auto;
  }

  .about-v2-editorial-photo {
    min-height: 0;
    border-radius: 24px;
  }
}

/* HEADERS */
.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 17px;
  margin-bottom: 12px;
}

/* LINKS */
.footer-links a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 6px;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.75;
}

/* CONTACT */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}

.contact-item .icon {
  width: 24px;
  text-align: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.contact-item a:hover {
  opacity: 0.75;
}

/* SOCIAL */
.footer-social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-social-icons a {
  width: 42px;
  height: 42px;
  background: #ffffff22;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: background 0.3s, transform 0.2s;
  text-decoration: none; 
}

.footer-social-icons a:hover {
  background: #ffffff44;
  transform: translateY(-2px);
}

.footer-social-icons i {
  font-size: 20px;
  color: white;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 14px;
  border-top: 1px solid #ffffff44;
}

@media (max-width: 900px) {
  body.home-page .price-board-shell,
  body.home-page .business-cta__shell {
    grid-template-columns: 1fr;
  }

  body.home-page .price-grid,
  body.home-page .home-proof__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body.home-page .home-price-board,
  body.home-page .home-proof,
  body.home-page .business-cta {
    padding-left: 14px;
    padding-right: 14px;
  }

  body.home-page .home-proof__header {
    margin-bottom: 18px;
  }

  body.home-page .home-proof__header .section-kicker {
    padding: 7px 13px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  body.home-page .home-proof__header .section-title {
    max-width: 10.8ch;
    margin-top: 14px;
    font-size: clamp(2.35rem, 10.5vw, 2.85rem);
    line-height: 0.98;
    letter-spacing: 0;
  }

  body.home-page .price-board-shell,
  body.home-page .price-grid,
  body.home-page .business-cta__shell {
    padding: 22px;
  }

  body.home-page .price-board-meta,
  body.home-page .price-grid,
  body.home-page .home-proof__grid {
    grid-template-columns: 1fr;
  }

  body.home-page .price-card {
    min-height: auto;
  }

  body.home-page .business-cta__actions {
    flex-direction: column;
  }

  body.home-page .business-cta__actions .hero-btn {
    width: 100%;
  }
}

body.home-page .home-price-board {
  position: relative;
}

body.home-page .price-board-frame {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(180deg, #fbfbfc, #ffffff);
  border: 1px solid rgba(214, 221, 228, 0.9);
  box-shadow: 0 28px 54px rgba(14, 22, 32, 0.10);
  padding-bottom: 28px;
}

body.home-page .price-board-hero {
  display: grid;
  grid-template-columns: minmax(520px, 1.08fr) minmax(460px, 0.92fr);
  min-height: 420px;
  background: linear-gradient(135deg, #081221 0%, #0c1b2f 48%, #10161e 100%);
}

body.home-page .price-board-shell {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  min-height: 100%;
  padding: 32px 42px 40px;
  background:
    radial-gradient(circle at 20% 30%, rgba(250, 114, 40, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(4, 12, 23, 0.92), rgba(8, 18, 33, 0.88));
}

body.home-page .price-board-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 34%, rgba(244, 89, 48, 0.16) 0, rgba(244, 89, 48, 0.06) 22%, transparent 48%);
  pointer-events: none;
}

body.home-page .price-board-copy,
body.home-page .price-board-meta {
  position: relative;
  z-index: 1;
}

body.home-page .price-board-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  align-self: flex-start;
}

body.home-page .price-board-copy .section-title {
  margin: 0;
  color: #fff;
  text-align: left;
  font-size: clamp(3rem, 4.9vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  max-width: 13.5ch;
  text-wrap: balance;
}

body.home-page .price-board-lead {
  max-width: 58ch;
  width: min(100%, 58ch);
  margin-top: 16px;
  color: rgba(234, 239, 244, 0.86);
  font-size: clamp(1.12rem, 1.28vw, 1.28rem);
  line-height: 1.5;
}

body.home-page .price-board-accent {
  display: inline-block;
  width: 56px;
  height: 3px;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fd492d, #ff7f25);
}

body.home-page .price-board-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 900px);
  margin-top: 8px;
  align-self: flex-start;
}

body.home-page .price-meta-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(20, 28, 42, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body.home-page .price-meta-card__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: #ff5b2e;
  font-size: 1.4rem;
}

body.home-page .price-meta-card__copy {
  display: grid;
  gap: 6px;
}

body.home-page .price-meta-card__copy span {
  color: rgba(224, 230, 238, 0.82);
  font-size: 0.92rem;
}

body.home-page .price-meta-card__copy strong {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.2;
}

body.home-page .price-board-hero__image {
  position: relative;
  min-height: 100%;
}

body.home-page .price-board-hero__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 18, 33, 0.72) 0%, rgba(8, 18, 33, 0.18) 32%, rgba(8, 18, 33, 0) 58%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.26));
  z-index: 1;
}

body.home-page .price-board-hero__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

body.home-page .price-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin: -40px 28px 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.home-page .price-grid::before {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 34px;
  bottom: -12px;
  border-radius: 26px;
  background: #ffffff;
  z-index: -1;
}

body.home-page .price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 298px;
  padding: 22px 20px 20px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff, #fcfcfd);
  border: 1px solid rgba(226, 230, 235, 0.96);
  box-shadow: 0 22px 46px rgba(18, 26, 36, 0.10);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  outline: none;
}

body.home-page .price-card:hover,
body.home-page .price-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 28px 54px rgba(18, 26, 36, 0.14);
}

body.home-page .price-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(253, 73, 45, 0.34);
  box-shadow: 0 30px 60px rgba(18, 26, 36, 0.16);
}

body.home-page .price-card::before {
  display: none;
}

body.home-page .price-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  border-radius: 0 0 26px 26px;
}

body.home-page .price-card--red::after {
  background: linear-gradient(90deg, #ff4a2d, #ff3a20);
}

body.home-page .price-card--amber::after {
  background: linear-gradient(90deg, #ff8d11, #ff6d00);
}

body.home-page .price-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

body.home-page .price-card__label {
  min-width: 68px;
  padding: 8px 14px;
  border-radius: 14px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #ff7f25, #ff610a);
}

body.home-page .price-card--red .price-card__label {
  background: linear-gradient(180deg, #ff5733, #ef2d1b);
}

body.home-page .price-card__icon {
  width: 66px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.96), rgba(255, 240, 237, 0.96));
  color: #ff8e12;
  font-size: 1.65rem;
  box-shadow: inset 0 0 0 1px rgba(255, 186, 138, 0.24);
}

body.home-page .price-card--red .price-card__icon {
  color: #ef3421;
}

body.home-page .price-card h3 {
  margin: 22px 0 10px;
  font-size: 1.26rem;
  color: #162133;
}

body.home-page .price-card__value {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: nowrap;
}

body.home-page .price-card__single-value {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
  flex: 1 1 auto;
}

body.home-page .price-card__single-value strong {
  font-size: clamp(3rem, 5vw, 4.2rem);
  line-height: 0.92;
  color: #0e1726;
  letter-spacing: -0.04em;
}

body.home-page .price-card__single-value span {
  padding-bottom: 0;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #445165;
}

body.home-page .price-pair {
  display: inline-flex;
  align-items: flex-end;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}

body.home-page .price-pair__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
}

body.home-page .price-pair__item strong {
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  line-height: 0.92;
  color: #0e1726;
  letter-spacing: -0.04em;
}

body.home-page .price-pair__item span {
  padding-bottom: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #445165;
}

body.home-page .price-pair__divider {
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, rgba(23, 35, 54, 0.12), rgba(23, 35, 54, 0.36), rgba(23, 35, 54, 0.12));
}

body.home-page .price-pair--compact {
  gap: 16px;
  align-items: center;
  flex-wrap: nowrap;
}

body.home-page .price-pair--compact .price-pair__item strong {
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  color: inherit;
}

body.home-page .price-pair--compact .price-pair__item span {
  font-size: 0.72rem;
  color: rgba(225, 231, 239, 0.82);
}

body.home-page .price-pair--compact .price-pair__divider {
  height: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.14));
}

body.home-page .price-pair--stacked {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-items: flex-start;
}

body.home-page .price-pair--stacked .price-pair__item {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 10px;
  flex-wrap: nowrap;
}

body.home-page .price-calculator__summary-card--total .price-pair--stacked .price-pair__item strong {
  color: #ffa530;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  letter-spacing: -0.025em;
  text-shadow: 0 4px 16px rgba(255, 165, 48, 0.2);
}

body.home-page .price-calculator__summary-card--total .price-pair--stacked .price-pair__item span {
  color: rgba(242, 247, 255, 0.95);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.home-page .price-card__change {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  margin-bottom: 6px;
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  background: #eef2f5;
  color: #596577;
}

body.home-page .price-card__change i {
  font-size: 0.8rem;
}

body.home-page .price-card__change > span {
  padding-bottom: 0;
  font-size: 0.86rem;
  color: inherit;
}

body.home-page .price-card__change--up {
  background: rgba(239, 52, 33, 0.10);
  color: #d93025;
}

body.home-page .price-card__change--down {
  background: rgba(27, 153, 96, 0.12);
  color: #14784c;
}

body.home-page .price-card__change--flat {
  background: #eef2f5;
  color: #687486;
}

body.home-page .price-card__divider {
  width: 100%;
  height: 1px;
  margin: 18px 0 20px;
  background: linear-gradient(90deg, rgba(230, 234, 238, 0.94), rgba(230, 234, 238, 0.42));
}

body.home-page .price-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.62;
  color: #536074;
}

/* Current homepage price card themes */
body.home-page .price-card {
  --fuel: #e5392d;
  --fuel-strong: #c9261d;
  --fuel-soft: rgba(229, 57, 45, 0.1);
  --fuel-ring: rgba(229, 57, 45, 0.24);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 84% 14%, var(--fuel-soft), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfd 72%, color-mix(in srgb, var(--fuel) 7%, #ffffff) 100%);
  border-color: var(--fuel-ring);
}

body.home-page .price-card--red {
  --fuel: #e5392d;
  --fuel-strong: #c9261d;
  --fuel-soft: rgba(229, 57, 45, 0.12);
  --fuel-ring: rgba(229, 57, 45, 0.28);
}

body.home-page .price-card--green {
  --fuel: #26a86a;
  --fuel-strong: #158452;
  --fuel-soft: rgba(38, 168, 106, 0.13);
  --fuel-ring: rgba(38, 168, 106, 0.28);
}

body.home-page .price-card--navy {
  --fuel: #153b72;
  --fuel-strong: #0b2448;
  --fuel-soft: rgba(21, 59, 114, 0.13);
  --fuel-ring: rgba(21, 59, 114, 0.26);
}

body.home-page .price-card--yellow {
  --fuel: #f6c736;
  --fuel-strong: #d69f08;
  --fuel-soft: rgba(246, 199, 54, 0.19);
  --fuel-ring: rgba(246, 199, 54, 0.36);
}

body.home-page .price-card--sky {
  --fuel: #59bde7;
  --fuel-strong: #268fbe;
  --fuel-soft: rgba(89, 189, 231, 0.16);
  --fuel-ring: rgba(89, 189, 231, 0.32);
}

body.home-page .price-card::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--fuel) 13%, transparent), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,0.72), transparent);
  opacity: 0.9;
}

body.home-page .price-card::after {
  height: 6px;
  background: linear-gradient(90deg, var(--fuel-strong), var(--fuel));
  box-shadow: 0 -10px 30px var(--fuel-ring);
}

body.home-page .price-card__label {
  min-width: 76px;
  text-align: center;
  background: linear-gradient(180deg, var(--fuel), var(--fuel-strong));
  box-shadow: 0 12px 26px var(--fuel-ring);
}

body.home-page .price-card__icon {
  background:
    radial-gradient(circle at 36% 28%, rgba(255,255,255,0.95), rgba(255,255,255,0.62)),
    color-mix(in srgb, var(--fuel) 8%, #ffffff);
  color: var(--fuel);
  box-shadow:
    inset 0 0 0 1px var(--fuel-ring),
    0 16px 34px color-mix(in srgb, var(--fuel) 18%, transparent);
}

body.home-page .price-card--yellow .price-card__icon {
  color: #e2ac0b;
}

body.home-page .price-card h3 {
  min-height: 2.7em;
  display: flex;
  align-items: flex-end;
}

body.home-page .price-card.is-active,
body.home-page .price-card:hover,
body.home-page .price-card:focus-visible {
  border-color: var(--fuel-ring);
  box-shadow:
    0 30px 62px rgba(18, 26, 36, 0.14),
    0 0 0 1px color-mix(in srgb, var(--fuel) 20%, transparent);
}

/* Final homepage price card polish */
body.home-page .price-grid {
  gap: 20px;
  margin-top: -52px;
}

body.home-page .price-card {
  min-height: 332px;
  padding: 24px 22px 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.84)),
    radial-gradient(circle at 80% 12%, color-mix(in srgb, var(--fuel) 19%, transparent), transparent 34%),
    linear-gradient(145deg, color-mix(in srgb, var(--fuel) 10%, #ffffff), #ffffff 56%);
  border: 1px solid color-mix(in srgb, var(--fuel) 32%, rgba(226, 230, 235, 0.86));
  box-shadow:
    0 28px 58px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(255,255,255,0.72) inset;
}

body.home-page .price-card::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, var(--fuel) 0 7px, transparent 7px),
    radial-gradient(circle at 24% 0%, color-mix(in srgb, var(--fuel) 20%, transparent), transparent 28%);
  opacity: 0.95;
}

body.home-page .price-card::after {
  height: 7px;
  border-radius: 0 0 28px 28px;
  background:
    linear-gradient(90deg, var(--fuel-strong), var(--fuel) 48%, color-mix(in srgb, var(--fuel) 70%, #ffffff));
  box-shadow:
    0 -12px 34px color-mix(in srgb, var(--fuel) 28%, transparent),
    0 0 0 1px color-mix(in srgb, var(--fuel) 12%, transparent);
}

body.home-page .price-card__top {
  align-items: center;
}

body.home-page .price-card__label {
  min-width: 78px;
  padding: 10px 16px;
  border-radius: 16px;
  font-size: 0.95rem;
  box-shadow:
    0 14px 30px color-mix(in srgb, var(--fuel) 24%, transparent),
    0 1px 0 rgba(255,255,255,0.28) inset;
}

body.home-page .price-card__icon {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 36% 28%, #ffffff, rgba(255,255,255,0.66)),
    color-mix(in srgb, var(--fuel) 12%, #ffffff);
  color: var(--fuel);
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--fuel) 22%, transparent),
    0 18px 38px color-mix(in srgb, var(--fuel) 18%, transparent);
}

body.home-page .price-card h3 {
  min-height: 3.05em;
  margin-top: 28px;
  margin-bottom: 12px;
  color: #0d1626;
  font-size: clamp(1.24rem, 1.45vw, 1.48rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

body.home-page .price-card__single-value strong {
  font-size: clamp(3.35rem, 5.4vw, 4.75rem);
}

body.home-page .price-card__divider {
  margin: 20px 0 18px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--fuel) 14%, transparent), rgba(230, 234, 238, 0.7));
}

body.home-page .price-card p {
  max-width: 22ch;
  color: #586476;
  font-size: 1rem;
}

body.home-page .price-card.is-active,
body.home-page .price-card:hover,
body.home-page .price-card:focus-visible {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--fuel) 48%, rgba(226, 230, 235, 0.86));
  box-shadow:
    0 34px 72px rgba(15, 23, 42, 0.16),
    0 18px 42px color-mix(in srgb, var(--fuel) 16%, transparent),
    0 0 0 1px color-mix(in srgb, var(--fuel) 18%, transparent) inset;
}

body.home-page .price-card--yellow {
  --fuel: #f4c12f;
  --fuel-strong: #d6a010;
}

body.home-page .price-card--yellow .price-card__label {
  color: #fff;
}

@media (max-width: 1200px) {
  body.home-page .price-card {
    min-height: 310px;
    padding: 22px 18px 20px;
  }

  body.home-page .price-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 21px;
  }
}

/* Premium final layer for current price cards */
body.home-page .price-grid::before {
  top: 46px;
  bottom: -16px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,248,251,0.94)),
    radial-gradient(circle at 50% 0%, rgba(15, 23, 42, 0.06), transparent 44%);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.09);
}

body.home-page .price-card {
  min-height: 338px;
  padding: 0;
  border-radius: 28px;
  border-width: 1px;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 58%, #f8fafc 100%),
    radial-gradient(circle at 70% 10%, color-mix(in srgb, var(--fuel) 11%, transparent), transparent 34%);
  border-color: color-mix(in srgb, var(--fuel) 28%, rgba(221, 227, 236, 0.95));
  box-shadow:
    0 24px 56px rgba(15, 23, 42, 0.13),
    0 10px 24px color-mix(in srgb, var(--fuel) 8%, transparent),
    inset 0 1px 0 rgba(255,255,255,0.92);
}

body.home-page .price-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background:
    linear-gradient(var(--fuel), var(--fuel)) top left / 100% 8px no-repeat,
    linear-gradient(var(--fuel), var(--fuel)) top left / 8px 100% no-repeat;
  opacity: 1;
  pointer-events: none;
}

body.home-page .price-card::after {
  height: 5px;
  border-radius: 0 0 28px 28px;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--fuel) 65%, transparent), color-mix(in srgb, var(--fuel) 26%, transparent));
  box-shadow:
    0 -10px 28px color-mix(in srgb, var(--fuel) 20%, transparent);
}

body.home-page .price-card__top {
  margin: 0;
  padding: 24px 24px 19px;
  border-radius: 28px 28px 18px 18px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--fuel) 16%, #ffffff), #ffffff 68%);
  border-bottom: 1px solid color-mix(in srgb, var(--fuel) 24%, rgba(220, 226, 235, 0.72));
}

body.home-page .price-card__label {
  min-width: 76px;
  padding: 10px 16px;
  border-radius: 14px;
  font-size: 0.96rem;
  letter-spacing: 0.03em;
  background: var(--fuel);
  box-shadow:
    0 14px 30px color-mix(in srgb, var(--fuel) 26%, transparent),
    inset 0 1px 0 rgba(255,255,255,0.32);
}

body.home-page .price-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 19px;
  font-size: 1.55rem;
  background:
    linear-gradient(180deg, #ffffff, color-mix(in srgb, var(--fuel) 6%, #ffffff));
  color: var(--fuel);
  box-shadow:
    inset 0 0 0 2px color-mix(in srgb, var(--fuel) 18%, transparent),
    0 14px 30px color-mix(in srgb, var(--fuel) 16%, transparent);
}

body.home-page .price-card h3 {
  min-height: 2.65em;
  margin: 26px 24px 8px;
  font-size: clamp(1.28rem, 1.45vw, 1.5rem);
  font-weight: 900;
  color: #0a1323;
}

body.home-page .price-card__value {
  margin: 8px 24px 0;
}

body.home-page .price-card__single-value strong {
  font-size: clamp(3.45rem, 5.4vw, 4.85rem);
  color: #081121;
  text-shadow: none;
}

body.home-page .price-card__single-value span {
  font-size: 0.9rem;
  color: #344155;
}

body.home-page .price-card__change {
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

body.home-page .price-card__divider {
  height: 1px;
  margin: 20px 24px 18px;
  width: auto;
}

body.home-page .price-card p {
  margin: 0 24px 24px;
  max-width: 24ch;
  font-size: 1rem;
  line-height: 1.58;
  color: #4b576a;
}

body.home-page .price-card.is-active,
body.home-page .price-card:hover,
body.home-page .price-card:focus-visible {
  transform: translateY(-7px);
  box-shadow:
    0 34px 72px rgba(15, 23, 42, 0.16),
    0 16px 40px color-mix(in srgb, var(--fuel) 15%, transparent),
    0 0 0 1px color-mix(in srgb, var(--fuel) 18%, transparent) inset;
}

body.home-page .price-board-utility {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 20px 28px 0;
  align-items: start;
}

body.home-page .price-calculator {
  min-width: 0;
  overflow: hidden;
  padding: 36px 40px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(61, 90, 151, 0.16), transparent 32%),
    linear-gradient(135deg, #0b1627 0%, #10203a 100%);
  color: #fff;
  box-shadow: 0 22px 42px rgba(11, 22, 39, 0.22);
}

body.home-page .price-calculator__intro {
  display: flex;
  align-items: center;
  gap: 16px;
}

body.home-page .price-calculator__icon {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.75rem;
}

body.home-page .price-calculator__intro h3 {
  margin: 0;
  font-size: clamp(2.2rem, 2.6vw, 2.9rem);
  line-height: 1.1;
  font-weight: 800;
  font-family: "League Spartan", "Arial Narrow", sans-serif;
  letter-spacing: -0.02em;
}

body.home-page .price-calculator__intro p {
  margin: 8px 0 0;
  color: rgba(225, 231, 239, 0.82);
  font-size: clamp(1.12rem, 1.3vw, 1.35rem);
  line-height: 1.6;
  font-weight: 400;
}

body.home-page .price-calculator__layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.93fr) minmax(0, 1.07fr);
  gap: 40px;
  margin-top: 32px;
  min-width: 0;
}

body.home-page .price-calculator__control {
  display: grid;
  gap: 16px;
}

body.home-page .price-calculator__control > span,
body.home-page .price-calculator__summary-card > span {
  color: rgba(225, 231, 239, 0.70);
  font-size: clamp(1.11rem, 1.25vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.3px;
}

body.home-page .price-qty {
  display: inline-grid;
  grid-template-columns: 66px minmax(120px, 160px) 66px auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(8, 16, 28, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

body.home-page .price-qty__btn {
  width: 66px;
  height: 62px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

body.home-page .price-qty__btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

body.home-page .price-qty input {
  width: 100%;
  height: 62px;
  border: 0;
  border-radius: 14px;
  text-align: center;
  font-size: 1.85rem;
  font-weight: 800;
  color: #0d1726;
  background: #fff;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

body.home-page .price-qty input:hover {
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

body.home-page .price-qty input:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(255, 155, 47, 0.3);
}

body.home-page .price-qty__unit {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

body.home-page .price-calculator__summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: 40px;
  min-width: 0;
}

body.home-page .price-calculator__summary-card {
  display: grid;
  gap: 14px;
  padding: 16px 28px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.2s ease;
}

body.home-page .price-calculator__summary-card:hover {
  background: rgba(255, 255, 255, 0.06);
}

body.home-page .price-calculator__summary-card strong {
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  line-height: 1.08;
  font-weight: 800;
  min-width: 0;
  overflow-wrap: anywhere;
  text-transform: uppercase;
  white-space: pre-line;
}

body.home-page #priceSelectedFuel {
  overflow-wrap: normal;
  word-break: normal;
  white-space: normal;
  text-transform: none;
}

body.home-page .price-calculator__summary-card--total .price-pair__item strong {
  white-space: nowrap;
}

body.home-page .price-calculator__summary-card--total #priceEstimatedTotal {
  color: #ffa530;
  display: block;
  min-width: 0;
  text-shadow: 0 2px 12px rgba(255, 165, 48, 0.25);
}

body.home-page .price-calculator__summary-card small {
  color: rgba(225, 231, 239, 0.72);
  font-size: clamp(1.05rem, 1.1vw, 1.18rem);
  line-height: 1.5;
  font-weight: 500;
}

body.home-page .price-fleet-cta {
  display: none;
}

body.home-page .price-fleet-cta__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.96), rgba(255, 239, 236, 0.96));
  color: #ef3421;
  font-size: 1.35rem;
}

body.home-page .price-fleet-cta__copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

body.home-page .price-fleet-cta__copy small {
  color: #606c80;
  font-size: 1rem;
}

body.home-page .price-fleet-cta__copy strong {
  color: #182234;
  font-size: clamp(1.6rem, 1.75vw, 2rem);
  line-height: 1.08;
}

body.home-page .price-fleet-cta__copy p {
  margin: 0;
  color: #5b6779;
  font-size: clamp(1.05rem, 1.12vw, 1.22rem);
  line-height: 1.42;
  max-width: 32ch;
}

body.home-page .price-fleet-cta__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 15px 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ff5733, #ef2d1b);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

body.home-page .price-fleet-cta__action::after {
  content: "→";
  margin-left: 10px;
  font-size: 1.1rem;
}

body.home-page .price-board-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 22px 28px 0;
  padding-top: 18px;
  color: #5f6b7d;
  border-top: 1px solid rgba(225, 230, 235, 0.92);
  font-size: 1rem;
}

body.home-page .price-board-footnote i {
  color: #44546a;
}

@media (max-width: 1220px) {
  body.home-page .price-board-hero {
    grid-template-columns: 1fr;
  }

  body.home-page .price-board-shell {
    padding: 32px 36px 36px;
  }

  body.home-page .price-board-copy {
    max-width: 40rem;
  }

  body.home-page .price-board-copy .section-title {
    max-width: 12ch;
  }

  body.home-page .price-board-hero__image {
    min-height: 300px;
  }

  body.home-page .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -30px;
  }

  body.home-page .price-board-utility {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  body.home-page .price-board-copy .section-title {
    max-width: 11.5ch;
    font-size: clamp(2.8rem, 10vw, 4.3rem);
  }

  body.home-page .price-board-lead {
    max-width: 32ch;
  }

  body.home-page .price-board-meta,
  body.home-page .price-calculator__layout,
  body.home-page .price-calculator__summary {
    grid-template-columns: 1fr;
  }

  body.home-page .price-calculator__summary {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 16px;
  }
}

@media (max-width: 640px) {
  body.home-page .price-board-frame {
    border-radius: 24px;
  }

  body.home-page .price-board-shell {
    padding: 24px 20px 26px;
  }

  body.home-page .price-board-meta {
    gap: 12px;
  }

  body.home-page .price-meta-card {
    padding: 16px;
  }

  body.home-page .price-board-copy .section-title {
    max-width: 12.4ch;
    font-size: clamp(2.3rem, 9.4vw, 3.45rem);
    line-height: 0.94;
  }

  body.home-page .price-board-lead {
    max-width: 33ch;
  }

  body.home-page .price-board-hero__image {
    min-height: 220px;
  }

  body.home-page .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: -22px 18px 0;
  }

  body.home-page .price-grid > .price-card:nth-child(5):last-child {
    grid-column: 1 / -1;
    width: min(100%, calc(50% - 8px));
    justify-self: center;
  }

  body.home-page .price-card {
    min-height: auto;
    padding: 20px;
  }

  body.home-page .price-pair__item strong {
    font-size: 2.6rem;
  }

  body.home-page .price-card__single-value strong {
    font-size: 3.4rem;
  }

  body.home-page .price-card__value {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  body.home-page .price-card__change {
    margin-left: 0;
  }

  body.home-page .price-board-utility {
    margin: 18px 18px 0;
  }

  body.home-page .price-calculator,
  body.home-page .price-fleet-cta {
    padding: 20px;
  }

  body.home-page .price-qty {
    grid-template-columns: 46px minmax(76px, 1fr) 46px auto;
    gap: 8px;
    padding: 10px;
  }

  body.home-page .price-qty__btn,
  body.home-page .price-qty input {
    height: 44px;
  }

  body.home-page .price-fleet-cta {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  body.home-page .price-fleet-cta__action {
    width: 100%;
  }

  body.home-page .price-board-footnote {
    margin: 20px 18px 0;
    text-align: center;
  }

  body.home-page .price-card__value {
    gap: 10px;
    flex-wrap: wrap;
  }

  body.home-page .price-pair {
    gap: 10px;
    flex-wrap: wrap;
  }

  body.home-page .price-pair__item strong {
    font-size: 2rem;
  }

  body.home-page .price-card__single-value strong {
    font-size: 3rem;
  }

  body.home-page .price-pair__divider {
    height: 28px;
  }

  body.home-page .price-pair--compact {
    flex-wrap: wrap;
  }
}

/* =========================================================
   MAP INFO WINDOWS AND LOCATION CARD STYLES
   ========================================================= */

/* Map info window styles */
.map-infowindow {
  font-family: system-ui, -apple-system, sans-serif;
  max-width: 300px;
  padding: 8px;
}

.map-infowindow--compact {
  max-width: 250px;
  padding: 6px;
}

.map-infowindow__title {
  color: #e40909;
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.map-infowindow__title--compact {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.2;
}

.map-infowindow__item {
  margin: 5px 0;
  color: #333;
  font-size: 14px;
  line-height: 1.45;
}

.map-infowindow__item--compact {
  margin: 4px 0;
  font-size: 13px;
  line-height: 1.4;
}

.map-infowindow__services {
  margin: 8px 0 0;
}

.map-infowindow__services strong {
  color: #555;
  font-size: 13px;
}

.map-infowindow__service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 5px;
}

.map-infowindow__service-tag {
  background: #f5f5f5;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  border: 1px solid #ddd;
  display: inline-block;
}

.map-infowindow__directions {
  display: inline-block;
  background: #e40909;
  color: white;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  margin-top: 10px;
  font-size: 14px;
  transition: background 0.2s ease;
}

.map-infowindow__directions:hover {
  background: #b50910;
}

/* Map error message */
.map-error {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  background: #f6f7f9;
  border-radius: 12px;
  color: #555;
  text-align: center;
  padding: 20px;
}

.map-error p {
  margin: 0;
  font-size: 16px;
}

/* Location card styles */
.location-card__services {
  margin: 12px 0;
}

.location-card__services-label {
  font-size: 13px;
  color: #555;
  display: block;
}

.location-card__services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.location-card__service-tag {
  background: #f2f3f6;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  color: #222;
  display: inline-block;
}

/* LOCATION PAGE CARD BUTTON REDESIGN */
.location-page-body .location-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.location-page-body .location-actions button,
.location-page-body .location-actions a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  overflow: hidden;
  border-radius: 16px;
  clip-path: none !important;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  transform: none;
  isolation: isolate;
  transition:
    transform 0.18s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.location-page-body .location-actions a::before {
  content: none !important;
}

.location-page-body .location-actions button::after,
.location-page-body .location-actions a::after {
  content: "" !important;
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  transition: transform 0.28s ease;
}

.location-page-body .location-actions button {
  justify-content: center;
  gap: 0;
  padding: 0 20px;
  border: 1px solid #d92d25;
  color: #fff;
  background: #d92d25;
  box-shadow: 0 12px 22px rgba(217, 45, 37, 0.20);
}

.location-page-body .location-actions button::after {
  content: none !important;
}

.location-page-body .location-actions button::before {
  content: none !important;
}

.location-page-body .location-actions a {
  gap: 8px;
  border: 1px solid rgba(214, 219, 226, 0.95);
  color: #111827;
  background: #f8fafc;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.82);
}

.location-page-body .location-actions a::after {
  content: "\f061" !important;
  position: static;
  z-index: 1;
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  color: #e3342b;
  background: #fff;
  box-shadow: 0 6px 12px rgba(15, 23, 42, 0.08);
  font-family: "Font Awesome 6 Free";
  font-size: 11px;
  font-weight: 900;
  transform: none;
  transition: transform 0.22s ease, color 0.22s ease, background 0.22s ease;
}

.location-page-body .location-actions button:hover,
.location-page-body .location-actions button:focus-visible {
  border-color: #b91f18;
  color: #fff;
  background: #b91f18;
  box-shadow: 0 14px 26px rgba(217, 45, 37, 0.26);
  transform: translateY(-2px);
}

.location-page-body .location-actions a:hover,
.location-page-body .location-actions a:focus-visible {
  border-color: rgba(227, 52, 43, 0.28);
  color: #e3342b;
  background: #fff;
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.location-page-body .location-actions a:hover::after,
.location-page-body .location-actions a:focus-visible::after {
  color: #fff;
  background: #e3342b;
  transform: translateX(3px);
}

@media (max-width: 520px) {
  .location-page-body .location-actions {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   04B. CURRENT GALLERY PAGE
   Masonry media wall, video thumbnails, and fullscreen lightbox.
   ========================================================= */
body.gallery-page {
  background: var(--white);
  color: var(--body-c);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* -----------------------------------------
       PAGE HEADER  (sits below the site navbar)
    ----------------------------------------- */
    .pg-header {
      margin-top: 12px;
      border-bottom: 1px solid var(--border);
      background:
        radial-gradient(circle at 84% 22%, rgba(211, 54, 42, 0.08), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #fffefe 74%, #fbfaf8 100%);
    }

    .pg-header__inner {
      max-width: 1320px;
      margin: 0 auto;
      padding: 18px 56px 34px;
      display: block;
    }

    .pg-header__copy {
      min-width: 0;
    }

    .pg-header__breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      padding: 9px 14px;
      border-radius: 999px;
      border: 1px solid rgba(211, 54, 42, 0.20);
      background: rgba(255, 255, 255, 0.94);
      font-size: 13px;
      font-weight: 700;
      color: #687587;
      letter-spacing: .03em;
      margin-bottom: 18px;
      box-shadow: 0 12px 28px rgba(22, 21, 19, 0.05);
    }
    .pg-header__breadcrumb a { color: inherit; text-decoration: none; }
    .pg-header__breadcrumb a:hover { color: var(--body-c); }
    .pg-header__breadcrumb span { color: #a7b0bb; }
    .pg-header__breadcrumb span:last-child { color: #9c2f25; }

    .pg-header__title {
      font-family: var(--serif);
      max-width: 13.8ch;
      font-size: clamp(66px, 6.25vw, 106px);
      font-weight: 400;
      color: var(--head-c);
      line-height: 0.96;
      letter-spacing: -.012em;
    }

    .pg-header__title em {
      position: relative;
      z-index: 0;
      font-style: italic;
      color: var(--red);
    }

    .pg-header__title em::after {
      content: "";
      position: absolute;
      left: 0.16em;
      right: 0.32em;
      bottom: 0.04em;
      height: 0.1em;
      z-index: -1;
      background: linear-gradient(90deg, rgba(200, 24, 15, 0), rgba(200, 24, 15, 0.22), rgba(200, 24, 15, 0));
      border-radius: 999px;
      transform: skewX(-14deg);
      filter: blur(1px);
    }

    .pg-header__desc {
      font-size: clamp(19px, 1.45vw, 23px);
      font-weight: 400;
      color: #5f6d7d;
      max-width: 72ch;
      line-height: 1.5;
      margin-top: 20px;
    }

    .pg-header__chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
    }

    .pg-header__chips span {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 14px;
      border-radius: 999px;
      background: #ffffff;
      border: 1px solid rgba(22, 21, 19, 0.08);
      color: #2c3542;
      font-size: 13px;
      font-weight: 700;
      box-shadow: 0 10px 24px rgba(22, 21, 19, 0.05);
    }

    /* -----------------------------------------
       GRID SECTION
    ----------------------------------------- */
    .g-section {
      max-width: 1320px;
      margin: 30px auto 0;
      padding: 0 56px;
    }

    .g-section--all {
      margin-top: 26px;
    }

    .g-section__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 24px;
    }

    .g-section__title {
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 400;
      color: var(--head-c);
      letter-spacing: -.01em;
    }

    .g-section__sub {
      font-size: 12px;
      font-weight: 400;
      color: var(--muted);
      letter-spacing: .04em;
    }

    /* Natural masonry grid */
    .g-grid {
      column-count: 3;
      column-gap: 18px;
    }

    .g-grid.view-3col {
      column-count: 3;
    }

    .g-grid.view-list  {
      column-count: 1;
    }

    .g-card {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      background: var(--off);
      border: 1px solid rgba(22, 21, 19, 0.08);
      cursor: pointer;
      display: inline-block;
      width: 100%;
      margin: 0 0 18px;
      break-inside: avoid;
      vertical-align: top;
      box-shadow: 0 14px 42px rgba(22, 21, 19, 0.07);
      isolation: isolate;
      opacity: 0;
      transform: translateY(18px);
      animation: galleryReveal 0.72s var(--ease) forwards;
      transition: border-color .24s ease, box-shadow .24s ease, transform .24s var(--ease);
    }

    .g-card:nth-child(3n + 1) { animation-delay: .04s; }
    .g-card:nth-child(3n + 2) { animation-delay: .12s; }
    .g-card:nth-child(3n) { animation-delay: .2s; }

    .g-card::after {
      content: "";
      position: absolute;
      top: 12px;
      right: 12px;
      width: 22px;
      height: 22px;
      z-index: 2;
      opacity: 0;
      border-top: 2px solid var(--red);
      border-right: 2px solid var(--red);
      transform: translate(5px, -5px);
      transition: opacity .22s ease, transform .22s var(--ease);
    }

    .g-card:hover {
      border-color: rgba(200, 24, 15, 0.2);
      box-shadow: 0 22px 58px rgba(22, 21, 19, 0.12), 0 0 0 1px rgba(200, 24, 15, 0.08);
    }

    .g-card:hover::after {
      opacity: 1;
      transform: translate(0, 0);
    }

    @keyframes galleryReveal {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .g-grid.view-list .g-card {
      aspect-ratio: unset;
      height: auto;
      border-radius: 0;
    }

    .g-card img,
    .g-card video {
      width: 100%;
      height: auto;
      object-fit: contain;
      display: block;
      transition: transform var(--dur) var(--ease), filter .4s ease;
      filter: brightness(.88);
    }

    .g-card video {
      aspect-ratio: 16 / 9;
      background:
        radial-gradient(circle at 70% 30%, rgba(200, 24, 15, 0.18), transparent 34%),
        linear-gradient(135deg, #111, #24201f);
      opacity: 0;
    }

    .g-card video.is-thumb-ready {
      opacity: 1;
    }

    .g-card:hover img,
    .g-card:hover video {
      transform: scale(1.05);
      filter: brightness(1);
    }

    .g-card__overlay {
      position: absolute;
      inset: 0;
      background: rgba(15,14,12,0);
      transition: background .25s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .g-card:hover .g-card__overlay {
      background: rgba(15,14,12,.28);
    }

    .g-card__icon {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: rgba(255,255,255,.95);
      display: flex; align-items: center; justify-content: center;
      font-size: 14px;
      color: var(--head-c);
      opacity: 0;
      transform: scale(.7);
      transition: opacity .22s ease, transform .28s var(--ease);
      box-shadow: 0 4px 20px rgba(0,0,0,.14);
    }

    .g-card:hover .g-card__icon {
      opacity: 1;
      transform: scale(1);
    }

    .g-card__tag {
      position: absolute;
      top: 10px; left: 10px;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,.9);
      background: rgba(15,14,12,.48);
      backdrop-filter: blur(6px);
      padding: 3px 8px;
      border-radius: 4px;
      opacity: 0;
      transition: opacity .22s ease;
    }

    .g-card:hover .g-card__tag { opacity: 1; }

    .g-media-play {
      position: absolute;
      right: 10px;
      bottom: 10px;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(200, 24, 15, 0.96);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      box-shadow: 0 14px 32px rgba(200, 24, 15, 0.25), 0 8px 22px rgba(0, 0, 0, 0.18);
    }

    .g-video-caption {
      position: absolute;
      left: 14px;
      right: 76px;
      bottom: 15px;
      z-index: 2;
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .08em;
      line-height: 1.2;
      text-transform: uppercase;
      text-shadow: 0 2px 16px rgba(0, 0, 0, 0.48);
    }

    .g-card--video::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(to top, rgba(12, 10, 9, 0.46), rgba(12, 10, 9, 0.02) 56%);
      pointer-events: none;
    }

    /* -----------------------------------------
       LIGHTBOX
    ----------------------------------------- */
    .g-lb {
      position: fixed;
      inset: 0;
      z-index: 2147483000;
      display: grid;
      grid-template-rows: 1fr auto;
      background: var(--white);
      opacity: 0;
      pointer-events: none;
      transition: opacity .32s ease;
    }

    .g-lb.open {
      opacity: 1;
      pointer-events: all;
    }

    body.lb-open .navbar,
    body.lb-open .floating-social {
      opacity: 0;
      pointer-events: none;
    }

    /* Top bar */
    .g-lb__topbar {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 28px;
      border-bottom: 1px solid rgba(91, 8, 5, 0.32);
      background:
        linear-gradient(90deg, #a9140d 0%, var(--red) 46%, #d92d22 100%);
      box-shadow: 0 10px 34px rgba(200, 24, 15, 0.18);
      z-index: 2;
    }

    .g-lb__brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .g-lb__brand-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 0 0 4px rgba(255,255,255,.16);
    }

    .g-lb__brand-name {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255,255,255,.94);
    }

    .g-lb__topbar-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .g-lb__zoom {
      position: absolute;
      left: 34px;
      bottom: 28px;
      z-index: 5;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 16px;
      background: rgba(17,17,17,.9);
      box-shadow: 0 18px 48px rgba(0,0,0,.22);
      backdrop-filter: blur(16px);
    }

    .g-lb__counter {
      font-size: 12px;
      font-weight: 700;
      color: rgba(255,255,255,.82);
      letter-spacing: .04em;
      margin-right: 8px;
    }

    .g-lb__btn {
      width: 36px; height: 36px;
      border-radius: 8px;
      border: 1px solid var(--border);
      background: transparent;
      display: flex; align-items: center; justify-content: center;
      font-size: 13px;
      color: var(--body-c);
      transition: background .15s, border-color .15s, color .15s;
    }

    .g-lb__btn:hover {
      background: var(--head-c);
      border-color: var(--head-c);
      color: #fff;
    }

    .g-lb__topbar .g-lb__btn {
      border-color: rgba(255,255,255,.28);
      background: rgba(255,255,255,.1);
      color: #fff;
    }

    .g-lb__topbar .g-lb__btn:hover {
      background: #fff;
      border-color: #fff;
      color: var(--red);
    }

    .g-lb__zoom .g-lb__btn {
      width: 46px;
      height: 46px;
      border-color: rgba(255,255,255,.22);
      background: rgba(255,255,255,.08);
      color: #fff;
      font-size: 16px;
    }

    .g-lb__zoom .g-lb__btn:hover {
      background: var(--red);
      border-color: var(--red);
      transform: translateY(-1px);
    }

    #gLbZoomReset {
      min-width: 76px;
      padding: 0 12px;
      font-weight: 800;
      letter-spacing: .01em;
    }

    /* Image stage */
    .g-lb__stage {
      position: absolute;
      inset: 64px 224px 54px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 32px 96px;
    }

    .g-lb__img-wrap {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      overflow: auto;
      scrollbar-width: none;
    }

    .g-lb__img-wrap::-webkit-scrollbar {
      display: none;
    }

    #gLbImg,
    #gLbVideo {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      display: block;
      border-radius: 4px;
      box-shadow: 0 24px 80px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.06);
      transform: scale(var(--lb-zoom, 1));
      transform-origin: center center;
      transition: opacity .2s ease, transform .32s var(--ease);
    }

    #gLbVideo {
      background: #000;
    }

    #gLbImg.is-out,
    #gLbVideo.is-out {
      opacity: 0;
      transform: translateX(var(--lb-dir,0)) scale(.97);
    }

    #gLbImg.is-in,
    #gLbVideo.is-in {
      opacity: 0;
      transform: translateX(calc(var(--lb-dir,0) * -1)) scale(1.02);
    }

    .g-lb__nav {
      position: absolute;
      top: 50%; transform: translateY(-50%);
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--white);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 13px;
      color: var(--body-c);
      box-shadow: 0 2px 16px rgba(0,0,0,.08);
      transition: background .15s, border-color .15s, transform .15s;
      z-index: 2;
    }

    .g-lb__nav:hover {
      background: var(--head-c);
      border-color: var(--head-c);
      color: #fff;
    }

    .g-lb__nav--prev { left: 20px; }
    .g-lb__nav--prev:hover { transform: translateY(-50%) translateX(-2px); }
    .g-lb__nav--next { right: 20px; }
    .g-lb__nav--next:hover { transform: translateY(-50%) translateX(2px); }

    /* Side filmstrip */
    .g-lb__filmbar {
      position: absolute;
      top: 64px;
      right: 0;
      bottom: 0;
      width: 224px;
      border-left: 1px solid var(--border);
      background: var(--white);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      padding: 18px 16px;
      overflow-y: auto;
      scrollbar-width: none;
    }

    .g-lb__filmbar::-webkit-scrollbar { display: none; }

    .g-lb__thumb {
      flex-shrink: 0;
      width: 184px;
      height: 122px;
      object-fit: cover;
      display: block;
      border-radius: 4px;
      border: 2px solid transparent;
      opacity: .45;
      transition: opacity .18s ease, border-color .18s ease, transform .18s ease;
      cursor: pointer;
    }

    .g-lb__thumb.active {
      opacity: 1;
      border-color: var(--red);
    }

    .g-lb__thumb:hover:not(.active) {
      opacity: .75;
      transform: translateX(-2px);
    }

    /* Caption strip */
    .g-lb__caption-row {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 224px;
      padding: 10px 96px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: linear-gradient(to top, rgba(247,246,244,.95), transparent);
      pointer-events: none;
    }

    .g-lb__caption {
      font-size: 12px;
      font-weight: 400;
      color: var(--muted);
      letter-spacing: .04em;
    }

    /* -----------------------------------------
       FOOTER SPACING
    ----------------------------------------- */
    .g-footer-gap { height: 80px; }

    /* -----------------------------------------
       RESPONSIVE
    ----------------------------------------- */
    @media (max-width: 1100px) {
      .pg-header__inner, .g-section { padding-left: 32px; padding-right: 32px; }
      .pg-header__title {
        font-size: clamp(56px, 7.4vw, 84px);
      }
      .g-grid { column-count: 3; }
    }

    @media (max-width: 768px) {
      .pg-header { margin-top: 10px; }
      .pg-header__inner {
        padding: 14px 20px 24px;
        display: block;
      }
      .pg-header__breadcrumb {
        margin-bottom: 14px;
      }
      .pg-header__title {
        font-size: clamp(50px, 13vw, 72px);
        max-width: 10.8ch;
        line-height: 0.96;
      }
      .pg-header__desc {
        max-width: 100%;
        font-size: 18px;
        line-height: 1.55;
        margin-top: 18px;
      }
      .pg-header__chips {
        margin-top: 16px;
      }
      .g-section { padding: 0 14px; margin-top: 18px; }
      .g-grid { column-count: 2; column-gap: 12px; }
      .g-card { margin-bottom: 12px; border-radius: 16px; }
      .g-lb__stage { inset: 64px 156px 46px 0; padding: 16px 42px; }
      .g-lb__filmbar { width: 156px; padding: 12px 10px; }
      .g-lb__caption-row { right: 156px; padding: 8px 16px; }
      .g-lb__thumb { width: 130px; height: 92px; }
      .g-lb__zoom { left: 16px; bottom: 16px; padding: 6px; }
      .g-lb__zoom .g-lb__btn { width: 40px; height: 40px; }
      #gLbZoomReset { min-width: 66px; }
      .g-lb__nav--prev { left: 6px; }
      .g-lb__nav--next { right: 6px; }
    }

    @media (prefers-reduced-motion: reduce) {
      .g-card {
        opacity: 1;
        transform: none;
        animation: none;
      }
    }

    @media (max-width: 480px) {
      .g-grid { column-count: 1; }
      .g-card { border-radius: 18px; margin-bottom: 14px; }
      .g-card img,
      .g-card video { width: 100%; }
      .g-lb__stage { inset: 64px 116px 46px 0; padding: 12px 30px; }
      .g-lb__filmbar { width: 116px; padding: 10px 8px; }
      .g-lb__caption-row { right: 116px; }
      .g-lb__thumb { width: 96px; height: 68px; }
      .g-lb__zoom { left: 10px; bottom: 12px; }
      .g-lb__zoom .g-lb__btn { width: 36px; height: 36px; font-size: 14px; }
      #gLbZoomReset { min-width: 58px; padding: 0 8px; }
    }

/* =========================================================
   HOMEPAGE PRICE CARDS - DARK PREMIUM DESIGN
   ========================================================= */

body.home-page .price-grid {
  align-items: stretch;
  width: auto;
  max-width: none;
  margin: -38px 28px 0;
  transform: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

body.home-page .price-board-frame {
  overflow: hidden;
}

body.home-page .price-grid::before {
  display: none;
}

body.home-page .price-card {
  --fuel: #ef443a;
  --fuel-strong: #c82922;
  position: relative;
  min-height: 552px;
  height: 552px;
  padding: 22px 26px 18px;
  overflow: hidden;
  isolation: isolate;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 10%, color-mix(in srgb, var(--fuel) 12%, transparent), transparent 32%),
    linear-gradient(150deg, color-mix(in srgb, var(--fuel) 25%, transparent) 0%, transparent 31%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)),
    #211115;
  border: 2px solid color-mix(in srgb, var(--fuel) 23%, transparent);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    inset 0 -18px 44px rgba(0,0,0,.2),
    0 22px 60px rgba(0,0,0,.34);
}

body.home-page .price-card--green {
  --fuel: #69d36a;
  --fuel-strong: #35a84a;
  background:
    radial-gradient(circle at 82% 10%, rgba(105, 211, 106, .12), transparent 32%),
    linear-gradient(150deg, rgba(105, 211, 106, .25) 0%, transparent 31%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)),
    #071a17;
}

body.home-page .price-card--navy {
  --fuel: #407fe9;
  --fuel-strong: #2e65c6;
  background:
    radial-gradient(circle at 82% 10%, rgba(64, 127, 233, .12), transparent 32%),
    linear-gradient(150deg, rgba(64, 127, 233, .25) 0%, transparent 31%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)),
    #091727;
}

body.home-page .price-card--yellow {
  --fuel: #f0c33f;
  --fuel-strong: #c99a16;
  background:
    radial-gradient(circle at 82% 10%, rgba(240, 195, 63, .12), transparent 32%),
    linear-gradient(150deg, rgba(240, 195, 63, .25) 0%, transparent 31%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)),
    #1b1b12;
}

body.home-page .price-card--sky {
  --fuel: #61d4e4;
  --fuel-strong: #35aabd;
  background:
    radial-gradient(circle at 82% 10%, rgba(97, 212, 228, .12), transparent 32%),
    linear-gradient(150deg, rgba(97, 212, 228, .25) 0%, transparent 31%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)),
    #0b1f2c;
}

body.home-page .price-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 76%;
  height: 45%;
  border-radius: 28px 0 42px 0;
  background:
    linear-gradient(118deg, rgba(255,255,255,.32), transparent 35%),
    linear-gradient(130deg, var(--fuel), color-mix(in srgb, var(--fuel) 30%, transparent) 58%, transparent 59%);
  clip-path: polygon(0 0, 100% 0, 76% 18%, 0 49%);
  opacity: .96;
  z-index: -2;
  pointer-events: none;
}

body.home-page .price-card::after {
  content: "";
  position: absolute;
  left: -8%;
  top: 29%;
  width: 112%;
  height: 58%;
  border-radius: 0;
  background:
    linear-gradient(135deg, transparent 0 26%, rgba(255,255,255,.18) 26.2%, rgba(255,255,255,.04) 27%, transparent 27.4%),
    linear-gradient(140deg, rgba(255,255,255,.04), transparent 44%);
  transform: skewY(-8deg);
  opacity: .7;
  z-index: -1;
  pointer-events: none;
}

body.home-page .price-card__corner-pill {
  position: absolute;
  top: 54px;
  right: 20px;
  min-width: 78px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0 16px;
  border-radius: 19px;
  color: color-mix(in srgb, var(--fuel), white 24%);
  font-size: 18px;
  font-weight: 900;
  text-shadow: 0 0 18px color-mix(in srgb, var(--fuel) 60%, transparent);
  background:
    radial-gradient(circle at 50% 0, rgba(255,255,255,.12), transparent 58%),
    rgba(8, 18, 25, .72);
  border: 2px solid color-mix(in srgb, var(--fuel) 34%, transparent);
  box-shadow: inset 0 0 18px color-mix(in srgb, var(--fuel) 16%, transparent), 0 13px 24px rgba(0,0,0,.42);
  z-index: 2;
}

body.home-page .price-card__medallion {
  position: relative;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  margin: 66px 0 22px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 48%, #0b1118 0 45%, transparent 46%),
    conic-gradient(from 225deg, rgba(255,255,255,.5), var(--fuel), rgba(0,0,0,.65), var(--fuel), rgba(255,255,255,.2));
  box-shadow:
    0 18px 28px rgba(0,0,0,.5),
    0 0 0 8px rgba(0,0,0,.14),
    inset 0 0 24px rgba(255,255,255,.1);
  color: var(--fuel);
}

body.home-page .price-card__medallion::before {
  content: "";
  position: absolute;
  inset: 17px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 32%, rgba(255,255,255,.08), transparent 36%),
    linear-gradient(145deg, #050a0f, #101922);
  box-shadow:
    inset 0 0 28px rgba(0,0,0,.78),
    0 0 24px color-mix(in srgb, var(--fuel) 8%, transparent);
}

body.home-page .price-card__medallion i {
  position: relative;
  z-index: 1;
  display: block;
  color: currentColor;
  font-size: 35px;
  line-height: 1;
  filter:
    drop-shadow(0 0 10px color-mix(in srgb, var(--fuel) 62%, transparent))
    drop-shadow(0 2px 2px rgba(0,0,0,.45));
}

body.home-page .price-card__medallion .fa-crown {
  font-size: 43px;
}

body.home-page .price-card__content {
  display: grid;
  grid-template-rows: 74px 27px 30px 76px 20px 30px 1fr;
  align-items: start;
}

body.home-page .price-card h3 {
  min-height: 0;
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.18;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(255,255,255,.18);
  display: grid !important;
  grid-auto-flow: row;
  justify-items: start;
  align-content: start;
  gap: 3px;
}

body.home-page .price-card__variant,
body.home-page .price-card__title-line,
body.home-page .price-card__shell-word {
  display: block !important;
  width: fit-content;
  clear: both;
  grid-column: 1;
}

body.home-page .price-card__variant,
body.home-page .price-card__shell-word {
  margin-top: 0;
  color: var(--fuel);
  font-size: 25px;
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 0 16px color-mix(in srgb, var(--fuel) 32%, transparent);
}

body.home-page .price-card__shell-word {
  color: #f0c33f;
  text-shadow: 0 0 16px rgba(240, 195, 63, .36);
}

body.home-page .price-card__badge {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 27px;
  min-width: 88px;
  padding: 0 15px;
  border-radius: 18px;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .02em;
  background: linear-gradient(180deg, color-mix(in srgb, var(--fuel), white 14%), color-mix(in srgb, var(--fuel), black 25%));
  box-shadow: 0 8px 18px color-mix(in srgb, var(--fuel) 25%, transparent);
}

body.home-page .price-card__badge--placeholder {
  visibility: hidden;
}

body.home-page .price-card__divider,
body.home-page .price-card__footer-line {
  width: 100%;
  height: 1px;
  align-self: center;
  margin: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
}

body.home-page .price-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

body.home-page .price-card__price-row strong {
  color: #fff;
  font-size: 62px;
  line-height: .88;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 8px 24px rgba(0,0,0,.42), 0 0 13px rgba(255,255,255,.24);
}

body.home-page .price-card__unit {
  color: rgba(183, 189, 199, .82);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

body.home-page .price-card__change {
  width: fit-content;
  min-width: 62px;
  height: 29px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border-radius: 23px;
  border: 0;
  color: var(--fuel);
  font-size: 15px;
  font-weight: 900;
  background: color-mix(in srgb, var(--fuel) 13%, transparent);
  text-shadow: 0 0 12px color-mix(in srgb, var(--fuel) 28%, transparent);
  box-shadow: none;
}

body.home-page .price-card__change i {
  font-size: 16px;
}

body.home-page .price-card p {
  position: relative;
  margin: 0;
  max-width: none;
  color: rgba(255,255,255,.84);
  font-size: 15px;
  line-height: 1.38;
  font-weight: 800;
  display: grid;
  grid-template-columns: 39px 1fr;
  align-items: center;
  gap: 12px;
}

body.home-page .price-card p::before {
  content: none;
}

body.home-page .price-card__note-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0,0,0,.22);
  border: 2px solid color-mix(in srgb, var(--fuel) 22%, transparent);
  box-shadow: inset 0 0 18px color-mix(in srgb, var(--fuel) 5%, transparent);
  color: var(--fuel);
}

body.home-page .price-card__note-icon i {
  font-size: 18px;
}

body.home-page .price-card:hover,
body.home-page .price-card:focus-visible,
body.home-page .price-card.is-active {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--fuel) 38%, transparent);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    inset 0 -18px 44px rgba(0,0,0,.2),
    0 28px 72px rgba(0,0,0,.42);
}

@media (max-width: 980px) {
  body.home-page .price-card {
    min-height: 525px;
    height: 525px;
    padding-inline: 24px;
  }
}

@media (max-width: 640px) {
  body.home-page .price-card {
    min-height: 525px;
    height: 525px;
  }
}

/* MOBILE PRICE BOARD WRAP FIX */
@media (max-width: 760px) {
  body.home-page .home-price-board {
    overflow: hidden;
  }

  body.home-page .price-board-frame {
    overflow: visible !important;
  }

  body.home-page .price-grid {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 13px !important;
    width: min(100% - 24px, 560px) !important;
    max-width: 560px !important;
    margin: -24px auto 0 !important;
    padding-inline: 0 !important;
    transform: none !important;
  }

  body.home-page .price-grid > .price-card {
    grid-column: span 3 !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 430px !important;
    height: 430px !important;
    padding: 18px 18px 16px !important;
    border-radius: 24px !important;
  }

  body.home-page .price-grid > .price-card:nth-child(n + 3) {
    grid-column: span 3 !important;
    min-height: 430px !important;
    height: 430px !important;
    padding-inline: 18px !important;
    border-radius: 24px !important;
  }

  body.home-page .price-grid > .price-card:nth-child(5) {
    grid-column: 2 / span 4 !important;
    min-height: 430px !important;
    height: 430px !important;
  }

  body.home-page .price-card__corner-pill {
    top: 34px !important;
    right: 13px !important;
    min-width: 58px !important;
    height: 34px !important;
    padding-inline: 10px !important;
    border-radius: 15px !important;
    font-size: 14px !important;
  }

  body.home-page .price-card__medallion {
    width: 72px !important;
    height: 72px !important;
    margin: 50px 0 18px !important;
  }

  body.home-page .price-grid > .price-card:nth-child(n + 3) .price-card__medallion {
    width: 72px !important;
    height: 72px !important;
    margin-top: 50px !important;
    margin-bottom: 18px !important;
  }

  body.home-page .price-card__medallion::before {
    inset: 14px !important;
  }

  body.home-page .price-card__medallion i {
    font-size: 29px !important;
  }

  body.home-page .price-card__medallion .fa-crown {
    font-size: 34px !important;
  }

  body.home-page .price-card__content {
    grid-template-rows: 60px 22px 26px 64px 18px 26px 1fr !important;
  }

  body.home-page .price-grid > .price-card:nth-child(n + 3) .price-card__content {
    grid-template-rows: 60px 22px 26px 64px 18px 26px 1fr !important;
  }

  body.home-page .price-card h3 {
    font-size: 19px !important;
    line-height: 1.08 !important;
  }

  body.home-page .price-grid > .price-card:nth-child(n + 3) h3 {
    font-size: 19px !important;
    line-height: 1.08 !important;
  }

  body.home-page .price-card__variant,
  body.home-page .price-card__shell-word {
    font-size: 23px !important;
  }

  body.home-page .price-grid > .price-card:nth-child(n + 3) .price-card__variant,
  body.home-page .price-grid > .price-card:nth-child(n + 3) .price-card__shell-word {
    font-size: 23px !important;
  }

  body.home-page .price-card__badge {
    width: fit-content !important;
    min-height: 28px !important;
    padding: 7px 12px !important;
    font-size: 11px !important;
  }

  body.home-page .price-grid > .price-card:nth-child(n + 3) .price-card__badge {
    padding: 7px 12px !important;
    font-size: 11px !important;
  }

  body.home-page .price-card__price-row strong {
    font-size: clamp(42px, 13vw, 58px) !important;
  }

  body.home-page .price-grid > .price-card:nth-child(n + 3) .price-card__price-row strong {
    font-size: clamp(42px, 13vw, 58px) !important;
  }

  body.home-page .price-card__unit {
    font-size: 12px !important;
    letter-spacing: 0.12em !important;
  }

  body.home-page .price-card p {
    grid-template-columns: 28px 1fr !important;
    gap: 9px !important;
    font-size: 13px !important;
    line-height: 1.22 !important;
  }

  body.home-page .price-grid > .price-card:nth-child(n + 3) p {
    grid-template-columns: 28px 1fr !important;
    gap: 9px !important;
    font-size: 13px !important;
  }

  body.home-page .price-card__note-icon {
    width: 28px !important;
    height: 28px !important;
    font-size: 12px !important;
  }

  body.home-page .price-grid > .price-card:nth-child(n + 3) .price-card__note-icon {
    width: 28px !important;
    height: 28px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 430px) {
  body.home-page .price-grid {
    gap: 10px !important;
    width: min(100% - 18px, 420px) !important;
  }

  body.home-page .price-grid > .price-card {
    min-height: 408px !important;
    height: 408px !important;
    padding-inline: 14px !important;
  }

  body.home-page .price-grid > .price-card:nth-child(n + 3) {
    min-height: 408px !important;
    height: 408px !important;
    padding-inline: 14px !important;
  }

  body.home-page .price-grid > .price-card:nth-child(5) {
    grid-column: 1 / -1 !important;
    width: min(100%, 280px) !important;
    justify-self: center !important;
  }
}


