:root {
  --navy: #07162f;
  --navy-2: #0d2446;
  --red: #dc1f2e;
  --red-dark: #8f0f1a;
  --silver: #d6dce5;
  --steel: #778293;
  --ink: #172033;
  --muted: #687386;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 24px 70px rgba(7, 22, 47, 0.16);
  --radius: 8px;
  --section: clamp(76px, 9vw, 132px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(245, 247, 251, 0.92), rgba(255, 255, 255, 0.92)),
    url('assets/car-panel.jpeg') center center / cover fixed no-repeat;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

/* ── Blank-section permanent fix ──────────────────────────────────────────
   GSAP animates from opacity:0. If ScrollTrigger never fires (direct link,
   slow network, JS error) elements stay invisible. These rules ensure every
   animated element is VISIBLE by default; GSAP overrides them only while
   the animation is actually running.
─────────────────────────────────────────────────────────────────────────── */
.reveal-up,
.feature-card,
.application-card,
.paint-scene,
.timeline__step,
.product-card,
.gallery-card {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), #ff6a72);
  box-shadow: 0 0 22px rgba(220, 31, 46, 0.48);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px clamp(18px, 4vw, 64px);
}

.nav {
  max-width: 1240px;
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 12px 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 38px rgba(7, 22, 47, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
}

/* Real logo image */
.brand__logo {
  display: block;
  height: 72px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  border-radius: 8px;
  padding: 4px 12px;
  background: #ffffff;
}

.brand__logo--footer {
  background: transparent;
  padding: 0;
  height: 60px;
}

/* Fallback PA mark — hidden when logo loads */
.brand__mark--fallback {
  display: none;
}

.brand__image {
  display: none;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--red));
  box-shadow: 0 12px 24px rgba(220, 31, 46, 0.24);
}

.brand__text {
  color: var(--navy);
  letter-spacing: 0.01em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: #32405a;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav__links a {
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__links a.is-active {
  color: var(--red);
}

.nav__links a.is-active::after {
  width: 100%;
}

.nav__action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nav__action,
.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 14px 30px rgba(220, 31, 46, 0.28);
}

.button--ghost {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(119, 130, 147, 0.26);
}

.button--light {
  color: var(--red);
  background: var(--white);
}

.button--on-dark {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.nav__action:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(7, 22, 47, 0.18);
}

.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--navy);
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: var(--white);
}

.section {
  position: relative;
  padding: var(--section) clamp(18px, 4vw, 64px);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(390px, 0.82fr) minmax(500px, 1.18fr);
  align-items: center;
  gap: clamp(28px, 4.5vw, 70px);
  padding-top: 122px;
  padding-bottom: clamp(50px, 6vw, 88px);
  background:
    radial-gradient(circle at 74% 24%, rgba(220, 31, 46, 0.13), transparent 34%),
    linear-gradient(140deg, #f8f9fc, #ffffff 60%, #edf1f7);
}

.page-hero {
  min-height: clamp(560px, 74vh, 760px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  padding-top: 150px;
  background:
    radial-gradient(circle at 78% 18%, rgba(220, 31, 46, 0.16), transparent 34%),
    linear-gradient(140deg, #f8f9fc, #ffffff 60%, #edf1f7);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(7, 22, 47, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 22, 47, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 84%);
}

.page-hero__content {
  max-width: 760px;
}

.page-hero__content p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.75;
}

.page-hero__visual {
  display: grid;
  place-items: center;
  min-height: 360px;
}

.page-hero__visual img {
  width: min(86%, 430px);
  filter: drop-shadow(0 34px 48px rgba(7, 22, 47, 0.2));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(7, 22, 47, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 22, 47, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 84%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.nowrap {
  white-space: nowrap;
}

h1 {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(3rem, 4.75vw, 5.15rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h2,
.section__intro h2,
.cta h2,
.contact h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4.6vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.page-hero h1 {
  max-width: 760px;
}

.hero h2 {
  max-width: 560px;
  margin-bottom: 16px;
  color: var(--red);
  font-size: clamp(1.45rem, 2.05vw, 2.25rem);
  line-height: 1.16;
  text-wrap: balance;
}

.hero p,
.section__intro p:not(.eyebrow),
.about p,
.cta p,
.contact p,
.contact address {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.75;
}

.hero__content {
  max-width: 640px;
}

.hero__content > p:not(.eyebrow) {
  max-width: 560px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.section-action {
  margin-top: 28px;
}

.hero__visual {
  position: relative;
  min-height: clamp(520px, 52vw, 720px);
  display: grid;
  place-items: center;
}

.surface {
  position: absolute;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.46), transparent 34%),
    repeating-linear-gradient(100deg, #9da6b5 0 3px, #cfd6df 3px 8px, #707b8e 8px 10px);
}

/* Surface image shows immediately when loaded */
.surface img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.surface img.is-loaded {
  opacity: 1;
}

.industrial-panel img,
.gallery-card img,
.paint-scene img,
.spray-can > img {
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.spray-can > img {
  object-fit: contain;
  background: transparent;
}

.industrial-panel img,
.gallery-card img,
.paint-scene img {
  object-fit: cover;
}

.industrial-panel img.is-loaded,
.gallery-card img.is-loaded,
.paint-scene img.is-loaded,
.spray-can > img.is-loaded {
  opacity: 1;
}

.spray-can.has-art .can-fallback {
  display: none;
}

.surface--hero {
  right: 0;
  top: 25%;
  width: min(76%, 650px);
  height: clamp(250px, 28vw, 390px);
  transform: perspective(1000px) rotateY(-12deg) rotateX(4deg);
}

.surface__grain,
.surface__paint,
.surface__shine {
  position: absolute;
  inset: 0;
}

.surface__grain {
  background:
    repeating-linear-gradient(12deg, rgba(255, 255, 255, 0.22) 0 2px, transparent 2px 10px),
    radial-gradient(circle at 18% 42%, rgba(7, 22, 47, 0.24), transparent 18%);
  mix-blend-mode: multiply;
}

.surface__paint {
  width: 8%;
  background: linear-gradient(90deg, var(--red-dark), var(--red), #f23c48);
  box-shadow: inset 20px 0 40px rgba(255, 255, 255, 0.14);
}

.surface__shine {
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.46) 42%, transparent 55%);
  transform: translateX(-120%);
}

.paint-mist {
  position: absolute;
  left: 25%;
  top: 24%;
  width: 54%;
  height: 34%;
  background: linear-gradient(92deg, rgba(220, 31, 46, 0.74), rgba(220, 31, 46, 0.26) 48%, transparent 78%);
  clip-path: polygon(0 46%, 100% 4%, 100% 96%);
  filter: blur(8px);
  transform: rotate(-2deg);
  opacity: 0.72;
}

.spray-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: rgba(220, 31, 46, 0.72);
  filter: blur(0.4px);
}

.spray-can {
  position: absolute;
  z-index: 4;
}

.hero-can {
  left: 4%;
  bottom: 0;
  width: clamp(170px, 17vw, 245px);
  height: clamp(420px, 39vw, 600px);
  transform: rotate(-5deg);
  filter: drop-shadow(0 34px 48px rgba(7, 22, 47, 0.22));
  background: transparent;
}

.hero-can > img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-can > img.is-loaded {
  opacity: 1;
}

.can-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 52px 1fr;
  filter: drop-shadow(0 26px 50px rgba(7, 22, 47, 0.3));
}

.can-cap {
  width: 48%;
  margin: 0 auto;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(90deg, #848d9f, #f9fbff 46%, #9aa4b6);
  box-shadow: inset 0 -8px 12px rgba(7, 22, 47, 0.18);
}

.can-body {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 26px 20px;
  border-radius: 12px 12px 24px 24px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), transparent 12% 78%, rgba(7, 22, 47, 0.24)),
    linear-gradient(180deg, #f8fafc 0 20%, var(--red) 20% 61%, var(--navy) 61%);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.can-body span {
  color: var(--navy);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 900;
}

.can-body strong {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  letter-spacing: 0.12em;
}

.can-body small {
  max-width: 120px;
  margin: 30px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.badge {
  position: absolute;
  z-index: 5;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 44px rgba(7, 22, 47, 0.13);
  font-size: 0.82rem;
  font-weight: 900;
}

.badge--one { top: 12%; left: 12%; }
.badge--two { top: 13%; right: 7%; }
.badge--three { bottom: 18%; right: 10%; }
.badge--four { bottom: 5%; left: 28%; }

.section__intro {
  max-width: 860px;
  margin-bottom: 44px;
}

/* Ensure all sections have solid backgrounds so body bg image doesn't bleed through */
.about.section,
.features.section,
.applications.section,
.process.section,
.showcase.section,
.gallery.section,
.contact.section {
  background: #f5f7fb;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.quality-card {
  padding: clamp(22px, 3vw, 34px);
}

.quality-card h3 {
  color: var(--navy);
}

.quality-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.paint-scenes.section {
  background:
    linear-gradient(180deg, rgba(7, 22, 47, 0.03), rgba(214, 220, 229, 0.18)),
    #eef1f6;
}

.comparison.section {
  background: #f0f3f8;
}

.cta.section {
  background:
    radial-gradient(circle at 76% 20%, rgba(220, 31, 46, 0.28), transparent 34%),
    linear-gradient(135deg, var(--navy), #102849);
}

.about__grid,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(24px, 4vw, 62px);
  align-items: center;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.about__copy {
  padding: clamp(24px, 4vw, 46px);
}

.about__media {
  position: relative;
  min-height: 430px;
}

.industrial-panel {
  width: 88%;
  height: 380px;
  margin-left: auto;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.5), transparent 35%),
    repeating-linear-gradient(90deg, #9ca6b7 0 1px, #d8dee8 1px 19%, #7a8495 19% 20%);
  box-shadow: var(--shadow);
}

.about__stat {
  position: absolute;
  left: 0;
  bottom: 22px;
  width: min(260px, 60%);
  padding: 24px;
}

.about__stat strong {
  display: block;
  color: var(--red);
  font-size: 3.25rem;
  line-height: 1;
}

.feature-grid,
.application-grid,
.product-grid,
.gallery-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid--preview,
.application-grid--preview {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  min-height: 230px;
  padding: 24px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-card span {
  color: var(--red);
  font-weight: 900;
}

.feature-card h3,
.application-card h3,
.product-card h3,
.timeline__step h3 {
  color: var(--navy);
  line-height: 1.18;
}

.feature-card p,
.application-card p,
.product-card p {
  color: var(--muted);
  line-height: 1.6;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(220, 31, 46, 0.34);
}

.application-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.application-card {
  min-height: 225px;
  padding: 22px;
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff, #edf1f7);
  border: 1px solid rgba(119, 130, 147, 0.16);
  box-shadow: 0 16px 38px rgba(7, 22, 47, 0.08);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.application-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--red));
  font-weight: 900;
}

.application-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.2;
}

.application-icon i::before {
  content: attr(data-fallback);
  font-style: normal;
  font-weight: 900;
}

.application-card:hover {
  transform: translateY(-8px) scale(1.01);
  background: var(--navy);
}

.application-card:hover h3,
.application-card:hover p {
  color: var(--white);
}

.application-card:hover .application-icon {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
}

.paint-scenes {
  /* background handled by .paint-scenes.section above */
}

.paint-scene-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.paint-scene {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 8px;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.46), transparent 30%),
    repeating-linear-gradient(104deg, #6f7a8b 0 3px, #cdd4df 3px 10px, #8b95a6 10px 12px);
  box-shadow: 0 18px 48px rgba(7, 22, 47, 0.13);
}

.paint-scene::before,
.paint-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.paint-scene::before {
  background:
    linear-gradient(42deg, transparent 0 42%, rgba(7, 22, 47, 0.42) 43% 44%, transparent 45%),
    linear-gradient(136deg, transparent 0 55%, rgba(255, 255, 255, 0.32) 56% 57%, transparent 58%);
  mix-blend-mode: multiply;
}

.paint-scene::after {
  background: linear-gradient(to top, rgba(7, 22, 47, 0.72), transparent 58%);
}

.paint-scene img {
  position: absolute;
  inset: 0;
}

.paint-scene__coat {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 0;
  background:
    linear-gradient(115deg, transparent 16%, rgba(255, 255, 255, 0.42) 28%, transparent 43%),
    linear-gradient(135deg, var(--red-dark), var(--red) 52%, #f34b55);
  box-shadow: inset 18px 0 34px rgba(255, 255, 255, 0.16);
}

.paint-scene--truck .paint-scene__coat {
  background:
    linear-gradient(115deg, transparent 16%, rgba(255, 255, 255, 0.34) 28%, transparent 43%),
    linear-gradient(135deg, #121927, var(--navy-2) 48%, #3a465b);
}

.paint-scene--door .paint-scene__coat {
  background:
    linear-gradient(115deg, transparent 16%, rgba(255, 255, 255, 0.38) 28%, transparent 43%),
    linear-gradient(135deg, #aab3c1, #eef2f7 48%, #8b96a8);
}

.paint-scene--machine .paint-scene__coat {
  background:
    linear-gradient(115deg, transparent 16%, rgba(255, 255, 255, 0.36) 28%, transparent 43%),
    linear-gradient(135deg, #222936, #4d596d 52%, #121722);
}

.paint-scene span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  color: var(--white);
  font-weight: 900;
}

.compare-widget {
  position: relative;
  overflow: hidden;
  min-height: clamp(340px, 42vw, 540px);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #aeb7c5;
}

.compare-widget__base,
.compare-widget__after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 26px;
}

/* Base (before) – real car-panel image, desaturated + scratched overlay */


.compare-widget__base img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  z-index: 0;
}

.compare-widget__base::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

}

/* After (painted) – same image with red paint overlay */
.compare-widget__after {
  width: 58%;
  overflow: hidden;
  background: #f90015;
}

.compare-widget__after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88) saturate(1.2);
  z-index: 0;
}

.compare-widget__after::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.28) 32%, transparent 46%),
    linear-gradient(135deg, rgba(143, 15, 26, 0.72), rgba(220, 31, 46, 0.68) 48%, rgba(248, 77, 88, 0.55));
}

.compare-widget span {
  position: relative;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(7, 22, 47, 0.72);
  font-weight: 900;
}

.compare-widget__range {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.compare-widget__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 58%;
  z-index: 3;
  width: 4px;
  background: var(--white);
  box-shadow: 0 0 0 999px rgba(255, 255, 255, 0.02), 0 0 24px rgba(255, 255, 255, 0.9);
}

.compare-widget__handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 26px rgba(7, 22, 47, 0.28);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--silver), var(--navy));
}

.timeline__step {
  position: relative;
  padding-top: 72px;
}

.timeline__step span {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--navy));
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(7, 22, 47, 0.16);
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  display: grid;
  justify-items: center;
  min-height: 560px;
  padding: 30px;
  text-align: center;
  align-content: start;
}

.mini-can {
  width: min(72%, 210px);
  height: 360px;
  margin-bottom: 26px;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.mini-can img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(7, 22, 47, 0.16));
  transform: none;
}

.product-card--black { --can-color: #151a24; }
.product-card--custom { --can-color: #7f8da2; }

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 285px;
  margin: 0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(220, 31, 46, 0.28), transparent 35%),
    repeating-linear-gradient(120deg, #c8d0db 0 8px, #9aa5b6 8px 15px);
  box-shadow: 0 16px 42px rgba(7, 22, 47, 0.12);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 22, 47, 0.72), transparent 58%);
}

.gallery-card img {
  transition: transform 0.45s ease, opacity 0.25s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  color: var(--white);
  font-weight: 900;
}

.cta {
  color: var(--white);
}

.cta__inner {
  max-width: 920px;
}

.cta h2,
.cta p {
  color: var(--white);
}

.contact {
  align-items: start;
}

.contact a {
  color: var(--red);
  font-weight: 800;
}

.contact-list {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

address {
  font-style: normal;
}

.enquiry-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 38px);
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(119, 130, 147, 0.28);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  outline: none;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(220, 31, 46, 0.12);
}

.footer {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 7vw, 86px) clamp(18px, 4vw, 64px) 28px;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 14% 0%, rgba(220, 31, 46, 0.22), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(214, 220, 229, 0.12), transparent 28%),
    linear-gradient(135deg, #050b18, #07162f 52%, #030711);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.footer__top,
.footer__bottom {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.7fr) minmax(280px, 1fr);
  gap: 22px;
  align-items: stretch;
}

.footer__brand,
.footer__panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.footer__brand {
  padding: clamp(24px, 4vw, 38px);
}

.footer__brand p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.footer__panel {
  padding: 28px;
}

.footer .brand__text,
.footer .brand__mark {
  color: var(--white);
}

.footer .brand__mark {
  box-shadow: 0 18px 34px rgba(220, 31, 46, 0.34);
}

.footer__panel h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 1rem;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  align-content: start;
}

.footer__links a,
.footer__contact a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer__contact {
  display: grid;
  gap: 14px;
}

.footer__contact p {
  display: grid;
  gap: 5px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer__contact strong {
  color: var(--silver);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer__contact span {
  min-width: 0;
}

.footer__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, background 0.25s ease;
}

.footer__button--primary {
  border-color: rgba(220, 31, 46, 0.7);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.footer__button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.footer__copy {
  margin: 0;
}

@keyframes shimmer {
  from { transform: translateX(-120%); }
  to   { transform: translateX(120%); }
}

@media (max-width: 1080px) {
  .hero,
  .page-hero,
  .about__grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 820px;
  }

  .feature-grid,
  .application-grid,
  .paint-scene-grid,
  .quality-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero {
    min-height: auto;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 10px;
  }

  .nav {
    min-height: 60px;
  }

  .nav__toggle {
    display: block;
  }

  .nav__links {
    position: absolute;
    top: calc(100% + 10px);
    left: 10px;
    right: 10px;
    display: grid;
    gap: 0;
    padding: 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
  }

  .nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__links a {
    padding: 13px 8px;
  }

  .nav__action {
    display: none;
  }

  .hero {
    padding-top: 110px;
  }

  .page-hero {
    padding-top: 118px;
  }

  .hero__visual {
    min-height: 500px;
  }

  .surface--hero {
    top: 22%;
    width: 86%;
  }

  .hero-can {
    left: 4%;
    bottom: 1%;
    width: clamp(155px, 24vw, 220px);
    height: clamp(390px, 56vw, 520px);
  }

  .product-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 31px;
    width: 2px;
    height: auto;
  }

  .timeline__step {
    min-height: 92px;
    padding: 8px 0 8px 86px;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .brand__text {
    max-width: 112px;
    line-height: 1.05;
  }

  h1 {
    font-size: clamp(2.6rem, 12vw, 3.8rem);
  }

  .hero h2,
  .section__intro h2,
  .cta h2,
  .contact h2 {
    font-size: clamp(1.85rem, 10vw, 3.1rem);
  }

  .hero h2 {
    font-size: clamp(1.32rem, 7vw, 2rem);
  }

  .hero__visual {
    min-height: 450px;
  }

  .hero-can {
    width: clamp(138px, 36vw, 180px);
    height: clamp(340px, 86vw, 420px);
    left: 2%;
  }

  .paint-mist {
    left: 26%;
    top: 25%;
    width: 62%;
  }

  .mini-can {
    height: 320px;
  }

  .feature-grid,
  .application-grid,
  .paint-scene-grid,
  .quality-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .application-card {
    min-height: auto;
  }

  .paint-scene {
    min-height: 280px;
  }

  .badge {
    font-size: 0.72rem;
    padding: 9px 10px;
  }

  .badge--two { right: 0; }
  .badge--three { right: 0; bottom: 14%; }
  .badge--four { left: 10%; }

  .about__media {
    min-height: 360px;
  }

  .industrial-panel {
    width: 100%;
    height: 310px;
  }

  .about__stat {
    width: 72%;
  }
}

/* Final clean-design override */
:root {
  --navy: #0b1728;
  --navy-2: #14243a;
  --red: #d7192a;
  --red-dark: #a61120;
  --silver: #e4e8ef;
  --steel: #7b8797;
  --ink: #182133;
  --muted: #657184;
  --glass: rgba(255, 255, 255, 0.86);
  --shadow: 0 16px 42px rgba(11, 23, 40, 0.1);
  --section: clamp(58px, 7vw, 96px);
}

body {
  background: #f7f9fc;
}

.scroll-progress {
  height: 3px;
  box-shadow: none;
}

.site-header {
  padding: 12px clamp(14px, 3vw, 42px);
}

.nav {
  min-height: 68px;
  max-width: 1180px;
  padding: 6px 10px 6px 14px;
  border-color: rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(11, 23, 40, 0.08);
}

.brand__logo {
  height: 54px;
  max-width: 178px;
  padding: 2px 8px;
}

.brand__logo--footer {
  height: 52px;
}

.nav__links {
  gap: clamp(12px, 1.5vw, 20px);
  font-size: 0.88rem;
}

.nav__action,
.button {
  min-height: 42px;
  padding: 0 17px;
  font-size: 0.92rem;
}

.nav__action,
.button--primary {
  box-shadow: 0 12px 24px rgba(215, 25, 42, 0.2);
}

.button--ghost {
  background: #ffffff;
  border-color: rgba(123, 135, 151, 0.22);
}

.button:hover,
.nav__action:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(11, 23, 40, 0.14);
}

.section {
  padding: var(--section) clamp(18px, 4vw, 52px);
}

.hero,
.page-hero {
  min-height: auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 249, 252, 0.98)),
    radial-gradient(circle at 78% 22%, rgba(215, 25, 42, 0.09), transparent 32%);
}

.hero {
  grid-template-columns: minmax(340px, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(24px, 4vw, 54px);
  padding-top: 112px;
  padding-bottom: clamp(40px, 5vw, 68px);
}

.page-hero {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  min-height: 480px;
  padding-top: 124px;
  padding-bottom: 54px;
}

.hero::before,
.page-hero::before {
  opacity: 0.48;
  background-size: 80px 80px;
}

h1 {
  max-width: 600px;
  margin-bottom: 16px;
  font-size: clamp(2.75rem, 4.15vw, 4.55rem);
  line-height: 1.03;
}

.hero h2,
.section__intro h2,
.cta h2,
.contact h2 {
  font-size: clamp(1.8rem, 3.3vw, 3.35rem);
  line-height: 1.08;
}

.hero h2 {
  font-size: clamp(1.25rem, 1.65vw, 1.72rem);
}

.hero p,
.section__intro p:not(.eyebrow),
.about p,
.cta p,
.contact p,
.contact address,
.page-hero__content p:not(.eyebrow) {
  font-size: clamp(0.97rem, 1.05vw, 1.06rem);
  line-height: 1.68;
}

.eyebrow {
  margin-bottom: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
}

.hero__actions {
  gap: 10px;
  margin-top: 24px;
}

.hero__visual {
  min-height: clamp(420px, 44vw, 600px);
}

.surface--hero {
  top: 24%;
  width: min(72%, 560px);
  height: clamp(220px, 24vw, 330px);
  box-shadow: 0 18px 46px rgba(11, 23, 40, 0.14);
}

.hero-can {
  width: clamp(145px, 14vw, 205px);
  height: clamp(360px, 33vw, 500px);
  filter: drop-shadow(0 22px 34px rgba(11, 23, 40, 0.18));
}

.paint-mist {
  opacity: 0.48;
  filter: blur(10px);
}

.particle {
  opacity: 0.42;
}

.badge {
  padding: 8px 11px;
  border-color: rgba(226, 232, 240, 0.92);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 24px rgba(11, 23, 40, 0.08);
  font-size: 0.75rem;
}

.section__intro {
  max-width: 760px;
  margin-bottom: 30px;
}

.about.section,
.features.section,
.applications.section,
.process.section,
.showcase.section,
.gallery.section,
.contact.section {
  background: #f7f9fc;
}

.paint-scenes.section,
.comparison.section {
  background: #ffffff;
}

.glass-card,
.application-card,
.quality-card {
  border-color: rgba(226, 232, 240, 0.95);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(11, 23, 40, 0.07);
  backdrop-filter: none;
}

.about__grid,
.contact {
  gap: clamp(22px, 3vw, 44px);
}

.about__copy,
.quality-card,
.feature-card,
.application-card,
.enquiry-form {
  padding: clamp(20px, 2.5vw, 30px);
}

.about__media {
  min-height: 360px;
}

.industrial-panel {
  height: 320px;
  box-shadow: 0 14px 34px rgba(11, 23, 40, 0.1);
}

.about__stat {
  bottom: 10px;
  padding: 18px;
}

.about__stat strong {
  font-size: 2.45rem;
}

.feature-grid,
.application-grid,
.product-grid,
.gallery-grid,
.quality-grid,
.paint-scene-grid {
  gap: 14px;
}

.feature-card {
  min-height: 178px;
}

.feature-card h3,
.application-card h3,
.product-card h3,
.timeline__step h3 {
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.feature-card p,
.application-card p,
.product-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.feature-card:hover,
.application-card:hover {
  transform: translateY(-4px);
}

.application-card {
  min-height: 182px;
}

.application-card:hover {
  background: #101b2e;
}

.application-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
}

.application-icon svg {
  width: 21px;
  height: 21px;
}

.paint-scene {
  min-height: 300px;
  box-shadow: 0 14px 34px rgba(11, 23, 40, 0.1);
}

.compare-widget {
  min-height: clamp(300px, 36vw, 460px);
  box-shadow: 0 14px 36px rgba(11, 23, 40, 0.1);
}

.timeline {
  gap: 14px;
}

.timeline__step span {
  width: 52px;
  height: 52px;
  box-shadow: 0 12px 24px rgba(11, 23, 40, 0.12);
}

.timeline::before {
  top: 25px;
}

.product-card {
  min-height: 430px;
  padding: 24px;
}

.mini-can {
  width: min(62%, 170px);
  height: 280px;
  margin-bottom: 18px;
}

.mini-can img {
  filter: drop-shadow(0 14px 20px rgba(11, 23, 40, 0.12));
}

.gallery-card {
  min-height: 240px;
  box-shadow: 0 12px 28px rgba(11, 23, 40, 0.08);
}

.gallery-card::after {
  background: linear-gradient(to top, rgba(11, 23, 40, 0.62), transparent 56%);
}

.cta.section {
  padding-top: clamp(52px, 6vw, 82px);
  padding-bottom: clamp(52px, 6vw, 82px);
  background:
    linear-gradient(135deg, rgba(11, 23, 40, 0.96), rgba(20, 36, 58, 0.96)),
    radial-gradient(circle at 78% 18%, rgba(215, 25, 42, 0.18), transparent 30%);
}

.cta__inner {
  max-width: 800px;
}

.enquiry-form input,
.enquiry-form textarea {
  background: #ffffff;
}

.footer {
  padding-top: clamp(42px, 6vw, 66px);
}

@media (max-width: 1080px) {
  .hero,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .page-hero__visual {
    display: none;
  }
}

@media (max-width: 860px) {
  .nav {
    min-height: 58px;
  }

  .brand__logo {
    height: 48px;
  }

  .nav__links {
    box-shadow: 0 16px 34px rgba(11, 23, 40, 0.12);
  }

  .hero {
    padding-top: 96px;
  }

  .page-hero {
    padding-top: 104px;
  }

  .hero__visual {
    min-height: 390px;
  }

  .hero-can {
    width: clamp(130px, 23vw, 175px);
    height: clamp(320px, 52vw, 420px);
  }

  .surface--hero {
    width: 80%;
  }
}

@media (max-width: 620px) {
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.15rem);
  }

  .hero h2,
  .section__intro h2,
  .cta h2,
  .contact h2 {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }

  .hero__visual {
    min-height: 350px;
  }

  .surface--hero {
    width: 82%;
    height: 210px;
  }

  .hero-can {
    width: clamp(116px, 32vw, 150px);
    height: clamp(285px, 74vw, 350px);
  }

  .badge {
    font-size: 0.68rem;
  }

  .about__media {
    min-height: 300px;
  }

  .industrial-panel {
    height: 250px;
  }

  .about__stat {
    width: min(230px, 76%);
  }

  .product-card {
    min-height: 380px;
  }

  .mini-can {
    height: 240px;
  }
}
