*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #191919;
  --white: #ffffff;
  --accent: #009FD8;
  --accent-light: #66caf0;
  --dark-overlay: rgba(10,10,10,0.55);
  --nav-height: 80px;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  background: transparent;
  color: var(--white);
  overflow-x: hidden;
}

h2 {
  font-size: clamp(34px, 4vw, 62px);
}

.reviews-bar {
  background: #1a1a1a;
  border-bottom: 1px solid #2a2a2a;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #ccc;
}
.reviews-bar .stars {
  display: flex;
  gap: 2px;
}
.reviews-bar .star {
  color: #fbbc04;
  font-size: 14px;
}
.reviews-bar strong {
  color: var(--white);
  font-weight: 700;
}
.reviews-bar a {
  color: #009FD8;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}
.reviews-bar a:hover { opacity: 0.75; }
.google-g {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #4285f4;
  flex-shrink: 0;
}

header {
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

.logo-wrap img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}
nav a:hover { color: var(--accent); }

.header-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 32px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.icon-btn:hover {
  border-color: var(--accent);
  background: rgba(0,159,216,0.15);
}
.icon-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-fallback {
  display: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.30) 0%,
    rgba(0,0,0,0.42) 40%,
    rgba(0,0,0,0.68) 75%,
    rgba(0,0,0,0.90) 100%
  );
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .hero-fallback {
    display: block;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 64px 80px;
  max-width: 900px;
}

.hero-title {
  font-size: clamp(36px, 4.5vw, 72px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s forwards;
}

.hero-title .accent-word {
  color: var(--accent);
}

.hero-title .hero-line {
  display: block;
  white-space: nowrap;
}

.hero-sub {
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.9s 0.35s forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 11px 30px;
  border: 2px solid var(--accent);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.btn-primary:hover {
  background: transparent;
  color: var(--accent);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 11px 30px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.stat-bar {
  position: absolute;
  bottom: 80px;
  right: 0;
  z-index: 10;
  display: flex;
  opacity: 0;
  animation: fadeIn 1s 1s forwards;
}

.stat-item {
  background: rgba(0,159,216,0.1);
  backdrop-filter: blur(12px);
  border-left: 1px solid rgba(0,159,216,0.25);
  padding: 24px 36px;
  text-align: center;
}

.stat-item:first-child { border-left: none; }

.stat-num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.vehicle-wraps-section {
  width: 100%;
  background: #f5f5f3;
  padding: 96px 64px;
  color: #101010;
  font-family: 'Montserrat', sans-serif;
}

.vehicle-wraps-inner {
  width: 100%;
  margin: 0 auto;
}

.vehicle-wraps-title {
  font-size: clamp(34px, 4vw, 62px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.vehicle-wraps-body {
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.6;
  color: #2a2a2a;
  margin-bottom: 34px;
}

.vehicle-wraps-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 18px;
}

.process-step {
  background: #009FD8;
  color: #fff;
  padding: 28px 24px;
  min-height: 190px;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.process-step:last-child {
  border-right: none;
}

.step-number {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.72);
}

.process-step h3 {
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.process-step p {
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
}

.process-cta {
  background: #101010;
  border-right: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
}

.process-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background: #ffffff;
  color: #101010;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  padding: 11px 30px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.process-cta-btn:hover,
.process-cta-btn:focus-visible {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.vehicle-wraps-carousel {
  overflow: hidden;
}

.vehicle-wraps-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: wrapsCarouselScroll 36s linear infinite;
}

.carousel-item {
  flex: 0 0 300px;
  border-radius: 8px;
  overflow: hidden;
}

.carousel-item img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
}

.why-choose {
  width: 100%;
  background: #f5f5f3;
  padding: 112px 64px;
  color: #111;
  font-family: 'Montserrat', sans-serif;
}

.why-choose-inner {
  max-width: none;
  width: 100%;
  margin: 0 auto;
}

.why-choose-title {
  text-align: left;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 44px;
  color: #101010;
}

.why-choose-body {
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.6;
  color: #2a2a2a;
  margin-bottom: 34px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.why-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  min-height: 168px;
  padding: 28px 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

.why-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(44%) sepia(92%) saturate(1506%) hue-rotate(165deg) brightness(92%) contrast(101%);
}

.why-card p {
  line-height: 1.4;
  font-weight: 400;
  color: #1f1f1f;
}

.signage-showcase {
  width: 100%;
  background: #f5f5f3;
  padding: 96px 64px;
  color: #111;
  font-family: 'Montserrat', sans-serif;
}

.signage-showcase-inner {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: stretch;
}

.signage-gallery {
  position: relative;
  min-height: 0;
  /* Image is out-of-flow so it cannot inflate row height; cell still stretches to match the text + cards column */
}

.signage-gallery-item {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  overflow: hidden;
  margin: 0;
}

.signage-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 10px;
}

.signage-title {
  line-height: 1.02;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  color: #101010;
}

.signage-content {
  min-width: 0;
}

.signage-body {
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.6;
  color: #2a2a2a;
  margin-bottom: 24px;
}

.signage-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.signage-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  padding: 14px 16px;
  font-weight: 600;
  color: #1f1f1f;
  display: flex;
  align-items: center;
}

.services-section {
  width: 100%;
  background: #f5f5f3;
  padding: 96px 64px;
  color: #111;
  font-family: 'Montserrat', sans-serif;
}

.services-title {
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 34px;
  color: #101010;
}

.services-grid-wrap {
  width: 100%;
  margin: 0 auto;
}

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

.service-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-image-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
  transition: transform 260ms ease;
}

.service-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.68);
  opacity: 1;
  transition: opacity 220ms ease;
}

.service-card img {
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 260ms ease;
}

.service-overlay-content {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
}

.service-overlay-content h3 {
  font-size: 24px;
  line-height: 1.02;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
  color: #ffffff;
}

.service-overlay-content p {
  line-height: 1.35;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  margin-bottom: 12px;
}

.service-hover-cta {
  display: block;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
  color: #ffffff;
  margin-top: 2px;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-6px);
}

.service-card:hover .service-image-wrap,
.service-card:focus-visible .service-image-wrap {
  box-shadow: 0 12px 26px rgba(0,0,0,0.18);
}

.service-card:hover .service-image-wrap::after,
.service-card:focus-visible .service-image-wrap::after {
  opacity: 0.52;
}

.service-card:hover img,
.service-card:focus-visible img {
  transform: scale(1.05);
}



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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes wrapsCarouselScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 6px)); }
}

@media (max-width: 900px) {
  header { padding: 0 24px; }
  nav { display: none; }
  .hero-content { padding: 0 24px 140px; }
  .hero-title .hero-line { white-space: normal; }
  .stat-bar { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .stat-item { border-top: 1px solid rgba(0,159,216,0.25); }
  .vehicle-wraps-section { padding: 72px 24px; }
  .vehicle-wraps-process { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); min-height: auto; }
  .process-step:last-child { border-bottom: none; }
  .vehicle-wraps-track { gap: 10px; animation-duration: 26s; }
  .carousel-item { flex-basis: 300px; }
  .why-choose { padding: 72px 24px; }
  .why-choose-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .signage-showcase { padding: 72px 24px; }
  .signage-showcase-inner { grid-template-columns: 1fr; gap: 22px; }
  .signage-content { display: block; min-height: auto; }
  .signage-gallery {
    min-height: 220px;
    height: 220px;
  }
  .signage-gallery-item img { height: 100%; }
  .signage-cards { grid-template-columns: 1fr; grid-template-rows: none; }
  .services-section { padding: 72px 24px; }
  h2 { font-size: clamp(30px, 9vw, 52px); }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 14px; }
  .service-overlay-content h3 { font-size: 20px; }
  .service-overlay-content p { margin-bottom: 10px; }
}

.homepage-cta.cta-section {
  background: #1aa5d8;
  width: 100%;
  padding: 80px 120px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 36px;
  align-items: stretch;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
}

.homepage-cta .cta-left {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.homepage-cta .eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.homepage-cta .cta-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
}

.homepage-cta .cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.homepage-cta .cta-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.homepage-cta .btn-primary {
  background: #fff;
  color: #1aa5d8;
  border: 2px solid #fff;
  padding: 11px 30px;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.homepage-cta .btn-primary:hover,
.homepage-cta .btn-primary:focus-visible {
  background: transparent;
  color: #fff;
}

.homepage-cta .btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 11px 30px;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.homepage-cta .btn-ghost:hover,
.homepage-cta .btn-ghost:focus-visible {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.9);
}

.homepage-cta .trust-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.homepage-cta .stars {
  color: #ffd700;
  font-size: 16px;
  letter-spacing: 2px;
}

.homepage-cta .trust-text {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.homepage-cta .trust-link {
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.homepage-cta .trust-link:hover,
.homepage-cta .trust-link:focus-visible {
  color: #ffffff;
  opacity: 1;
}

.homepage-cta .cta-right {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
}

.homepage-cta .cta-middle {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
}

.homepage-cta .cta-form-card {
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-shadow: 0 16px 56px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.homepage-cta .cta-form-card label {
  font-size: 12px;
  font-weight: 700;
  color: #0f0f0f;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.homepage-cta .cta-form-card input,
.homepage-cta .cta-form-card textarea {
  width: 100%;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  color: #111;
  background: #fff;
}

.homepage-cta .cta-form-card textarea {
  resize: vertical;
  min-height: 110px;
  flex: 1;
}

.homepage-cta .cta-form-card input:focus,
.homepage-cta .cta-form-card textarea:focus {
  outline: 2px solid rgba(26,165,216,0.28);
  border-color: #1aa5d8;
}

.homepage-cta .cta-form-card .btn-primary {
  margin-top: 4px;
  width: 100%;
  text-align: center;
}

.homepage-cta .map-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(0,0,0,0.22);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.homepage-cta .map-header {
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.homepage-cta .map-name {
  font-weight: 700;
  font-size: 15px;
  color: #111;
  margin-bottom: 3px;
}

.homepage-cta .map-addr {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

.homepage-cta .map-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
}

.homepage-cta .map-stars {
  color: #ffd700;
  font-size: 12px;
}

.homepage-cta .map-count {
  font-size: 12px;
  color: #888;
}

.homepage-cta .map-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 16px;
}

.homepage-cta .map-icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  color: #555;
  background: #fff;
  text-decoration: none;
  transition: background 0.15s;
}

.homepage-cta .map-icon-btn:hover,
.homepage-cta .map-icon-btn:focus-visible {
  background: #f5f5f5;
}

.homepage-cta .map-icon-btn.directions {
  color: #1aa5d8;
}

.homepage-cta .map-embed {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: none;
  display: block;
  flex: 1;
}

@media (max-width: 1024px) {
  .homepage-cta.cta-section {
    padding: 64px 60px;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .homepage-cta .cta-middle {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .homepage-cta.cta-section {
    grid-template-columns: 1fr;
    padding: 48px 32px;
    gap: 40px;
  }

  .homepage-cta .cta-sub {
    max-width: 100%;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   VEHICLE WRAPS PAGE
───────────────────────────────────────────────────────────────────────────── */

/* Impact strip ------------------------------------------------------------ */
.vw-impact-strip {
  background: #101010;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  overflow: hidden;
}

.vw-impact-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
  gap: 8px;
}

.vw-impact-num {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
}

.vw-impact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.vw-impact-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Intro -------------------------------------------------------------------- */
.vw-intro {
  background: #ffffff;
  padding: 80px 64px;
  font-family: 'Montserrat', sans-serif;
}

.vw-intro-inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.vw-intro-lead {
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.7;
  color: #1f1f1f;
  margin-bottom: 20px;
}

.vw-intro-body {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* Wrap Types --------------------------------------------------------------- */
.vw-types {
  background: #f5f5f3;
  padding: 96px 64px;
  font-family: 'Montserrat', sans-serif;
}

.vw-types-inner {
  width: 100%;
}

.vw-types-header {
  margin-bottom: 52px;
}

.vw-types-title {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #101010;
  line-height: 1;
  margin-bottom: 14px;
}

.vw-types-sub {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
}

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

.vw-type-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  display: flex;
  flex-direction: column;
}

.vw-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  border-color: rgba(0,159,216,0.3);
}

.vw-type-img {
  overflow: hidden;
  height: 340px;
  flex-shrink: 0;
}

.vw-type-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.vw-type-card:hover .vw-type-img img {
  transform: scale(1.05);
}

.vw-type-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vw-type-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  background: rgba(0,159,216,0.1);
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 12px;
  width: fit-content;
}

.vw-type-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #101010;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.vw-type-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #555;
}

/* CTA card in wrap types grid */
.vw-type-cta {
  background: var(--black);
  border-radius: 12px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.vw-type-cta-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.vw-type-cta-heading {
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #ffffff;
  line-height: 1.0;
}

.vw-type-cta-body {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
}

/* Mid CTA Banner ----------------------------------------------------------- */
.vw-cta-banner {
  position: relative;
  padding: 140px 64px;
  text-align: center;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}

.vw-cta-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vw-cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.vw-cta-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.84);
}

.vw-cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.vw-cta-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.vw-cta-heading {
  font-size: clamp(52px, 8vw, 108px);
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 0.92;
  margin-bottom: 30px;
}

.vw-cta-accent {
  color: var(--accent);
}

.vw-cta-body {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Process Section ---------------------------------------------------------- */
.vw-process-section {
  background: #101010;
  padding: 96px 64px 0;
  font-family: 'Montserrat', sans-serif;
}

/* Prevent the process grid's margin-bottom leaking outside the dark section */
.vw-process-section .vehicle-wraps-process {
  margin-bottom: 0;
}

.vw-process-header {
  margin-bottom: 48px;
}

.vw-process-title {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 14px;
}

.vw-process-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* Gallery ------------------------------------------------------------------ */
.vw-gallery {
  background: #0a0a0a;
  padding: 96px 64px;
  font-family: 'Montserrat', sans-serif;
}

.vw-gallery-header {
  margin-bottom: 48px;
}

.vw-gallery-title {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 14px;
}

.vw-gallery-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.vw-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: 360px 280px 280px;
  gap: 8px;
}

.vw-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.vw-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
}

.vw-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,159,216,0);
  transition: background 300ms ease;
}

.vw-gallery-item:hover img {
  transform: scale(1.06);
}

.vw-gallery-item:hover .vw-gallery-overlay {
  background: rgba(0,159,216,0.15);
}

.vw-gi-1 { grid-column: 1 / 3; grid-row: 1; }
.vw-gi-2 { grid-column: 3;     grid-row: 1; }
.vw-gi-3 { grid-column: 4;     grid-row: 1; }
.vw-gi-4 { grid-column: 1;     grid-row: 2; }
.vw-gi-5 { grid-column: 2 / 4; grid-row: 2; }
.vw-gi-6 { grid-column: 4;     grid-row: 2; }
.vw-gi-7 { grid-column: 1 / 3; grid-row: 3; }
.vw-gi-8 { grid-column: 3 / 5; grid-row: 3; }

/* Why Choose --------------------------------------------------------------- */
.vw-why {
  background: #f5f5f3;
  padding: 96px 64px;
  font-family: 'Montserrat', sans-serif;
}

.vw-why-inner {
  width: 100%;
}

.vw-why-title {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #101010;
  line-height: 1;
  margin-bottom: 52px;
}

.vw-why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.vw-why-card {
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 32px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.vw-why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.09);
}

.vw-why-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(0,159,216,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vw-why-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vw-why-card h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #101010;
  line-height: 1.3;
}

.vw-why-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #555;
}

/* FAQ ---------------------------------------------------------------------- */
.vw-faq {
  background: #ffffff;
  padding: 96px 64px;
  font-family: 'Montserrat', sans-serif;
}

.vw-faq-inner {
  width: 100%;
}

.vw-faq-title {
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #101010;
  line-height: 1;
  margin-bottom: 52px;
}

/* Responsive – Vehicle Wraps Page ----------------------------------------- */
@media (max-width: 1200px) {
  .vw-why-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  .vw-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(4, 260px);
  }
  .vw-gi-1 { grid-column: 1 / 3; grid-row: 1; }
  .vw-gi-2 { grid-column: 1;     grid-row: 2; }
  .vw-gi-3 { grid-column: 2;     grid-row: 2; }
  .vw-gi-4 { grid-column: 1 / 3; grid-row: 3; }
  .vw-gi-5 { grid-column: 1;     grid-row: 4; }
  .vw-gi-6 { grid-column: 2;     grid-row: 4; }
  .vw-gi-7 { display: none; }
  .vw-gi-8 { display: none; }
}

@media (max-width: 900px) {
  .vw-impact-strip { flex-wrap: wrap; }
  .vw-impact-item { flex: 1 1 calc(50% - 1px); }
  .vw-impact-divider { display: none; }
  .vw-intro { padding: 64px 24px; }
  .vw-intro-inner { grid-template-columns: 1fr; gap: 32px; }
  .vw-types { padding: 72px 24px; }
  .vw-types-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vw-type-img { height: 200px; }
  .vw-cta-banner { padding: 100px 24px; }
  .vw-process-section { padding: 72px 24px 0; }
  .vw-gallery { padding: 72px 24px; }
  .vw-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 200px);
  }
  .vw-gi-4 { grid-column: 1 / 3; }
  .vw-why { padding: 72px 24px; }
  .vw-why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vw-faq { padding: 72px 24px; }
}

@media (max-width: 600px) {
  .vw-types-grid { grid-template-columns: 1fr; }
  .vw-why-grid { grid-template-columns: 1fr; }
  .vw-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 220px);
  }
  .vw-gi-1, .vw-gi-4, .vw-gi-7 { grid-column: 1; }
  .vw-gi-5 { grid-column: 1; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   SIGNAGE PAGE
───────────────────────────────────────────────────────────────────────────── */

/* Intro -------------------------------------------------------------------- */
.sg-intro {
  background: #ffffff;
  padding: 80px 64px;
  font-family: 'Montserrat', sans-serif;
}

.sg-intro-inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.sg-intro-lead {
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.7;
  color: #1f1f1f;
  margin-bottom: 20px;
}

.sg-intro-body {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.sg-testimonial {
  background: #f5f5f3;
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 36px 32px 28px;
  position: relative;
  margin: 0;
}

.sg-testimonial-mark {
  display: block;
  font-size: 64px;
  line-height: 0.7;
  color: var(--accent);
  font-family: Georgia, serif;
  margin-bottom: 16px;
  opacity: 0.5;
}

.sg-testimonial p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  font-style: italic;
  margin-bottom: 18px;
}

.sg-testimonial cite {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-style: normal;
}

/* Signage Types ------------------------------------------------------------ */
.sg-types {
  background: #f5f5f3;
  padding: 96px 64px;
  font-family: 'Montserrat', sans-serif;
}

.sg-types-inner {
  width: 100%;
}

.sg-types-header {
  margin-bottom: 52px;
}

.sg-types-title {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #101010;
  line-height: 1;
  margin-bottom: 14px;
}

.sg-types-sub {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
}

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

.sg-type-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  display: flex;
  flex-direction: column;
}

.sg-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  border-color: rgba(0,159,216,0.3);
}

.sg-type-img {
  overflow: hidden;
  height: 220px;
  flex-shrink: 0;
}

.sg-type-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.sg-type-card:hover .sg-type-img img {
  transform: scale(1.05);
}

.sg-type-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sg-type-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  background: rgba(0,159,216,0.1);
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 12px;
  width: fit-content;
}

.sg-type-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #101010;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.sg-type-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #555;
}

/* CTA Banner --------------------------------------------------------------- */
.sg-cta-banner {
  position: relative;
  padding: 100px 64px;
  text-align: center;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}

.sg-cta-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sg-cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.sg-cta-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.78);
}

.sg-cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.sg-cta-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.sg-cta-heading {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 0.95;
  margin-bottom: 24px;
}

.sg-cta-body {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
}

/* Office Section ----------------------------------------------------------- */
.sg-office {
  background: #ffffff;
  padding: 96px 64px;
  font-family: 'Montserrat', sans-serif;
}

.sg-office-inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.sg-office-title {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #101010;
  line-height: 1.05;
  margin-bottom: 24px;
}

.sg-office-lead {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

.sg-office-lead--gap {
  margin-top: 24px;
}

.sg-office-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.sg-office-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #1f1f1f;
  background: #f5f5f3;
  border-radius: 8px;
  padding: 10px 14px;
}

.sg-office-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.sg-office-list--premium li::before {
  background: #101010;
}

.sg-office-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.sg-office-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* Project Showcase --------------------------------------------------------- */
.sg-projects {
  background: #101010;
  padding: 96px 64px;
  font-family: 'Montserrat', sans-serif;
}

.sg-projects-inner {
  width: 100%;
}

.sg-projects-header {
  margin-bottom: 52px;
}

.sg-projects-title {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 14px;
}

.sg-projects-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.sg-projects-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.sg-project-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.sg-project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.sg-project-img-wrap {
  overflow: hidden;
  height: 220px;
}

.sg-project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.sg-project-card:hover .sg-project-img-wrap img {
  transform: scale(1.06);
}

.sg-project-info {
  padding: 20px 20px 22px;
}

.sg-project-info h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 8px;
}

.sg-project-info p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}

/* FAQ ---------------------------------------------------------------------- */
.sg-faq {
  background: #f5f5f3;
  padding: 96px 64px;
  font-family: 'Montserrat', sans-serif;
}

.sg-faq-inner {
  width: 100%;
}

.sg-faq-title {
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #101010;
  line-height: 1;
  margin-bottom: 52px;
}

.sg-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sg-faq-item {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.sg-faq-item[open] {
  border-color: rgba(0,159,216,0.3);
}

.sg-faq-question {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #101010;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}

.sg-faq-question::-webkit-details-marker { display: none; }

.sg-faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 240ms ease;
}

.sg-faq-item[open] > .sg-faq-question::after {
  transform: rotate(45deg);
}

.sg-faq-answer {
  padding: 0 24px 22px;
  border-top: 1px solid #f0f0f0;
}

.sg-faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-top: 18px;
}

.sg-faq-answer ul {
  margin: 12px 0 0 18px;
}

.sg-faq-answer li {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 4px;
}

/* Responsive – Signage Page ------------------------------------------------ */
@media (max-width: 1100px) {
  .sg-projects-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .sg-intro { padding: 64px 24px; }
  .sg-intro-inner { grid-template-columns: 1fr; gap: 32px; }
  .sg-types { padding: 72px 24px; }
  .sg-types-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sg-type-img { height: 180px; }
  .sg-cta-banner { padding: 80px 24px; }
  .sg-office { padding: 72px 24px; }
  .sg-office-inner { grid-template-columns: 1fr; gap: 40px; }
  .sg-office-image img { height: 320px; }
  .sg-projects { padding: 72px 24px; }
  .sg-projects-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sg-faq { padding: 72px 24px; }
}

@media (max-width: 600px) {
  .sg-types-grid { grid-template-columns: 1fr; }
  .sg-office-list { grid-template-columns: 1fr; }
  .sg-projects-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   DIGITAL PRINT PAGE
═══════════════════════════════════════════════════════════════════════════ */

/* Intro ------------------------------------------------------------------- */
.dp-intro {
  background: #ffffff;
  padding: 96px 64px;
  font-family: 'Montserrat', sans-serif;
}

.dp-intro-inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.dp-intro-lead {
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 600;
  color: #101010;
  line-height: 1.55;
  margin-bottom: 20px;
}

.dp-intro-body {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
}

/* Popular Products grid override (4 cards, single row) -------------------- */
.dp-popular-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Paper Products Section -------------------------------------------------- */
.dp-products {
  background: #f5f5f3;
  padding: 96px 64px;
  font-family: 'Montserrat', sans-serif;
}

.dp-products-inner { width: 100%; }

.dp-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.dp-products-header { margin-bottom: 48px; }

.dp-products-title {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #101010;
  line-height: 1;
  margin-bottom: 14px;
}

.dp-products-sub {
  font-size: 17px;
  color: #666;
  line-height: 1.6;
  max-width: 640px;
}

/* Pill grid (shared by paper products + POS) ------------------------------ */
.dp-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Light pills (paper products) -------------------------------------------- */
.dp-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  color: #1f1f1f;
  font-family: 'Montserrat', sans-serif;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  cursor: default;
}

.dp-pill::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.dp-pill:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(0,159,216,0.12);
}

/* CTA Banner -------------------------------------------------------------- */
.dp-cta-banner {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 64px;
}

.dp-cta-banner-bg {
  position: absolute;
  inset: 0;
}

.dp-cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.dp-cta-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.74);
}

.dp-cta-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
}

.dp-cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}

.dp-cta-heading {
  font-size: clamp(42px, 6.5vw, 82px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 0.95;
  margin-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
}

.dp-cta-accent { color: var(--accent); }

.dp-cta-body {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  font-family: 'Montserrat', sans-serif;
}

/* POS / Display Section --------------------------------------------------- */
.dp-pos {
  background: #101010;
  padding: 96px 64px;
  font-family: 'Montserrat', sans-serif;
}

.dp-pos-inner { width: 100%; }

.dp-pos-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.dp-pos-title {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 14px;
}

.dp-pos-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 640px;
}

/* Dark pills (POS section) ------------------------------------------------ */
.dp-pos-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  border-radius: 50px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  font-family: 'Montserrat', sans-serif;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  cursor: default;
}

.dp-pos-pill::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.dp-pos-pill:hover {
  border-color: rgba(0,159,216,0.4);
  box-shadow: 0 4px 14px rgba(0,159,216,0.1);
}

/* Why Choose Section ------------------------------------------------------ */
.dp-why {
  background: #ffffff;
  padding: 96px 64px;
  font-family: 'Montserrat', sans-serif;
}

.dp-why-inner { width: 100%; }

.dp-why-title {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #101010;
  line-height: 1;
  margin-bottom: 48px;
}

.dp-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.dp-why-card {
  background: #f5f5f3;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 32px 24px;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.dp-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.dp-why-icon-wrap {
  width: 48px;
  height: 48px;
  background: #101010;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.dp-why-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dp-why-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #101010;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dp-why-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

/* Responsive – Digital Print Page ---------------------------------------- */
@media (max-width: 1200px) {
  .dp-why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1000px) {
  .dp-popular-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .dp-intro { padding: 64px 24px; }
  .dp-intro-inner { grid-template-columns: 1fr; gap: 32px; }
  .dp-products { padding: 72px 24px; }
  .dp-cta-banner { padding: 72px 24px; min-height: 380px; }
  .dp-pos { padding: 72px 24px; }
  .dp-why { padding: 72px 24px; }
}

@media (max-width: 600px) {
  .dp-popular-grid { grid-template-columns: 1fr; }
  .dp-why-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────────────────────────────────────────── */

/* Honeypot – must be visually and structurally hidden from humans */
.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  tab-size: 0;
}

/* Contact details list in CTA left column */
.contact-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.contact-details-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
}

.contact-detail-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}

.contact-detail-link {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-detail-link:hover,
.contact-detail-link:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

/* Required field asterisk */
.field-required {
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  margin-left: 2px;
}

.homepage-cta .cta-form-card .field-required {
  color: #e03c3c;
}

/* Form note */
.contact-form-note {
  font-size: 11px;
  color: #888;
  margin-top: -4px;
  margin-bottom: 4px;
}

/* Error/success alerts */
.contact-form-alert {
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 4px;
}
.contact-form-alert p { margin: 0; }
.contact-form-alert p + p { margin-top: 4px; }

.contact-form-alert--error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
}

/* Success state card */
.contact-success-card {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.contact-success-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 16px;
}

.contact-success-icon {
  width: 56px;
  height: 56px;
  color: #1aa5d8;
  flex-shrink: 0;
}

.contact-success-heading {
  font-size: 26px;
  font-weight: 800;
  color: #111;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.contact-success-text {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  max-width: 280px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   OUR WORK PAGE
───────────────────────────────────────────────────────────────────────────── */

.our-work-hero {
  position: relative;
  padding: 190px 64px 72px;
  background: linear-gradient(180deg, #0f0f0f 0%, #181818 100%);
  font-family: 'Montserrat', sans-serif;
}

.our-work-hero-inner {
  max-width: 980px;
}

.our-work-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.our-work-title {
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  color: #ffffff;
}

.our-work-sub {
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.7;
  color: rgba(255,255,255,0.76);
  max-width: 760px;
}

.our-work-gallery-section {
  background: #f5f5f3;
  color: #111;
  font-family: 'Montserrat', sans-serif;
  padding: 48px 64px 96px;
}

.our-work-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.our-work-filter {
  border: 1px solid #d8d8d8;
  background: #ffffff;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #333;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.our-work-filter:hover,
.our-work-filter:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.our-work-filter.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.our-work-count {
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5d5d5d;
}

.our-work-grid {
  columns: 4 260px;
  column-gap: 16px;
}

.our-work-card {
  break-inside: avoid;
  margin: 0 0 16px;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.07);
}

.our-work-card img {
  width: 100%;
  height: auto;
  display: block;
}


.our-work-empty {
  background: #fff;
  border: 1px dashed #cfcfcf;
  color: #444;
  border-radius: 10px;
  padding: 24px;
  line-height: 1.6;
  font-size: 15px;
}

@media (max-width: 900px) {
  .our-work-hero {
    padding: 160px 24px 56px;
  }

  .our-work-gallery-section {
    padding: 36px 24px 72px;
  }
}
