/* Brand Emotion – Procurement & Supply Solutions */
:root {
  --black: #000000;
  --yellow: #FFD400;
  --white: #FFFFFF;
  --grey: #E5E5E5;
  --grey-dark: #1a1a1a;
  --grey-mid: #666666;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --space: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

/* Anchor link targets – scroll into view below fixed navbar */
#about,
#products,
#how,
#industries,
#why,
#downloads,
#quote {
  scroll-margin-top: 5.5rem;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--white);
  background: var(--black);
}

.main-content {
  padding-top: 72px;
}

/* Scroll reveal – modern entrance when section enters viewport */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.scroll-reveal.scroll-reveal-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  will-change: auto;
}

/* Direction variants */
.scroll-reveal-up { }
.scroll-reveal-up.scroll-reveal-visible { transform: translateY(0) scale(1); }

.scroll-reveal-left {
  transform: translateX(-36px) translateY(0) scale(0.98);
}
.scroll-reveal-left.scroll-reveal-visible { transform: translateX(0) translateY(0) scale(1); }

.scroll-reveal-right {
  transform: translateX(36px) translateY(0) scale(0.98);
}
.scroll-reveal-right.scroll-reveal-visible { transform: translateX(0) translateY(0) scale(1); }

/* Staggered children – add scroll-reveal-stagger to ScrollReveal + scroll-reveal-children to wrapper */
.scroll-reveal--stagger.scroll-reveal .scroll-reveal-children > * {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-reveal--stagger.scroll-reveal-visible .scroll-reveal-children > * {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.scroll-reveal--stagger.scroll-reveal-visible .scroll-reveal-children > *:nth-child(1) { transition-delay: 0.05s; }
.scroll-reveal--stagger.scroll-reveal-visible .scroll-reveal-children > *:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal--stagger.scroll-reveal-visible .scroll-reveal-children > *:nth-child(3) { transition-delay: 0.15s; }
.scroll-reveal--stagger.scroll-reveal-visible .scroll-reveal-children > *:nth-child(4) { transition-delay: 0.2s; }
.scroll-reveal--stagger.scroll-reveal-visible .scroll-reveal-children > *:nth-child(5) { transition-delay: 0.25s; }
.scroll-reveal--stagger.scroll-reveal-visible .scroll-reveal-children > *:nth-child(6) { transition-delay: 0.3s; }
.scroll-reveal--stagger.scroll-reveal-visible .scroll-reveal-children > *:nth-child(7) { transition-delay: 0.35s; }
.scroll-reveal--stagger.scroll-reveal-visible .scroll-reveal-children > *:nth-child(8) { transition-delay: 0.4s; }
.scroll-reveal--stagger.scroll-reveal-visible .scroll-reveal-children > *:nth-child(9) { transition-delay: 0.45s; }
.scroll-reveal--stagger.scroll-reveal-visible .scroll-reveal-children > *:nth-child(10) { transition-delay: 0.5s; }
.scroll-reveal--stagger.scroll-reveal-visible .scroll-reveal-children > *:nth-child(11) { transition-delay: 0.55s; }
.scroll-reveal--stagger.scroll-reveal-visible .scroll-reveal-children > *:nth-child(12) { transition-delay: 0.6s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .scroll-reveal--stagger .scroll-reveal-children > * {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

/* Bootstrap overrides – brand colours */
.bg-dark {
  background-color: var(--black) !important;
}

.btn-warning {
  background-color: var(--yellow) !important;
  border-color: var(--yellow) !important;
  color: var(--black) !important;
}

.btn-warning:hover {
  background-color: #e6bf00 !important;
  border-color: #e6bf00 !important;
  color: var(--black) !important;
}

.brand-navbar .btn-quote,
.brand-navbar .btn-quote:hover {
  color: var(--black) !important;
}

.btn-primary {
  background-color: var(--yellow) !important;
  border-color: var(--yellow) !important;
  color: var(--black) !important;
}

.btn-primary:hover {
  background-color: #e6bf00 !important;
  border-color: #e6bf00 !important;
  color: var(--black) !important;
  box-shadow: 0 4px 20px rgba(255, 212, 0, 0.35);
}

.btn-outline-light:hover {
  background-color: var(--white) !important;
  color: var(--black) !important;
  border-color: var(--white) !important;
}

/* Navbar */
.brand-navbar {
  background: linear-gradient(to right, #151616 0%, #151616 320px, var(--black) 520px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.brand-navbar .navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white) !important;
}

.navbar-logo-img {
  height: 40px;
  width: auto;
  max-height: 44px;
  flex-shrink: 0;
  display: block;
}

.brand-text {
  color: var(--white);
}

.brand-navbar .nav-link {
  color: var(--grey) !important;
  font-weight: 500;
  transition: color 0.2s;
}

.brand-navbar .nav-link:hover {
  color: var(--yellow) !important;
}

.brand-navbar .nav-link.btn-quote,
.brand-navbar .nav-link.btn-warning {
  color: var(--black) !important;
}

.brand-navbar .nav-link.btn-quote:hover,
.brand-navbar .nav-link.btn-warning:hover {
  color: var(--black) !important;
}

.brand-navbar .navbar-toggler {
  color: var(--white);
}

.brand-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Section heading */
.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
}

/* Hero – premium animated background */
.hero {
  background: #050505;
  position: relative;
  overflow: hidden;
}

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

/* Crossing rays – left-to-right */
.hero-rays {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  left: -50%;
  top: -50%;
  overflow: hidden;
}

.hero-ray {
  position: absolute;
  width: 3px;
  height: 180%;
  top: -40%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 212, 0, 0.06) 15%,
    rgba(255, 212, 0, 0.18) 50%,
    rgba(255, 212, 0, 0.06) 85%,
    transparent 100%
  );
  transform-origin: center center;
  animation: heroRayLeft 14s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.hero-rays-left .hero-ray-1 { left: 5%;  animation-delay: 0s; }
.hero-rays-left .hero-ray-2 { left: 18%; animation-delay: -1.5s; }
.hero-rays-left .hero-ray-3 { left: 32%; animation-delay: -3s; }
.hero-rays-left .hero-ray-4 { left: 48%; animation-delay: -4.5s; }
.hero-rays-left .hero-ray-5 { left: 62%; animation-delay: -6s; }
.hero-rays-left .hero-ray-6 { left: 76%; animation-delay: -7.5s; }
.hero-rays-left .hero-ray-7 { left: 90%; animation-delay: -9s; }

.hero-rays-left .hero-ray {
  transform: rotate(-22deg);
  animation-name: heroRayLeft;
}

/* Crossing rays – right-to-left (opposite angle) */
.hero-rays-right .hero-ray {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 212, 0, 0.04) 20%,
    rgba(255, 212, 0, 0.12) 50%,
    rgba(255, 212, 0, 0.04) 80%,
    transparent 100%
  );
  transform: rotate(22deg);
  animation: heroRayRight 16s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.hero-rays-right .hero-ray-1 { left: 8%;  animation-delay: -2s; }
.hero-rays-right .hero-ray-2 { left: 22%; animation-delay: -4s; }
.hero-rays-right .hero-ray-3 { left: 38%; animation-delay: -6s; }
.hero-rays-right .hero-ray-4 { left: 54%; animation-delay: -8s; }
.hero-rays-right .hero-ray-5 { left: 70%; animation-delay: -10s; }
.hero-rays-right .hero-ray-6 { left: 86%; animation-delay: -12s; }

@keyframes heroRayLeft {
  0%   { transform: rotate(-22deg) translateX(-100vw); opacity: 0.6; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: rotate(-22deg) translateX(100vw); opacity: 0.6; }
}

@keyframes heroRayRight {
  0%   { transform: rotate(22deg) translateX(100vw); opacity: 0.5; }
  100% { transform: rotate(22deg) translateX(-100vw); opacity: 0.5; }
}

/* Traveling shimmer – band of light sweeps down */
.hero-shimmer {
  position: absolute;
  left: -20%;
  width: 140%;
  height: 120px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 212, 0, 0.03) 20%,
    rgba(255, 212, 0, 0.12) 50%,
    rgba(255, 212, 0, 0.03) 80%,
    transparent 100%
  );
  filter: blur(40px);
  animation: heroShimmer 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes heroShimmer {
  0%   { top: -20%; opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { top: 120%; opacity: 0; }
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 212, 0, 0.5);
  box-shadow: 0 0 12px rgba(255, 212, 0, 0.4);
  animation: heroParticleFloat 20s ease-in-out infinite;
}

.hero-particle-1  { left: 12%; top: 20%; animation-delay: 0s;    animation-duration: 22s; }
.hero-particle-2  { left: 28%; top: 70%; animation-delay: -3s;   animation-duration: 18s; }
.hero-particle-3  { left: 45%; top: 35%; animation-delay: -6s;   animation-duration: 25s; }
.hero-particle-4  { left: 62%; top: 85%; animation-delay: -2s;   animation-duration: 20s; }
.hero-particle-5  { left: 78%; top: 15%; animation-delay: -8s;   animation-duration: 23s; }
.hero-particle-6  { left: 15%; top: 55%; animation-delay: -5s;   animation-duration: 19s; }
.hero-particle-7  { left: 55%; top: 50%; animation-delay: -10s;  animation-duration: 21s; }
.hero-particle-8  { left: 88%; top: 45%; animation-delay: -4s;   animation-duration: 17s; }
.hero-particle-9  { left: 35%; top: 90%; animation-delay: -7s;   animation-duration: 24s; }
.hero-particle-10 { left: 70%; top: 28%; animation-delay: -1s;   animation-duration: 26s; }

@keyframes heroParticleFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  25% { transform: translate(15px, -30px) scale(1.2); opacity: 0.9; }
  50% { transform: translate(-10px, 20px) scale(0.9); opacity: 0.6; }
  75% { transform: translate(-20px, -15px) scale(1.1); opacity: 0.8; }
}

/* Floating gradient orbs – smoother, more visible */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  will-change: transform;
}

.hero-orb-1 {
  width: min(75vw, 520px);
  height: min(75vw, 520px);
  background: radial-gradient(circle, rgba(255, 212, 0, 0.4) 0%, rgba(255, 212, 0, 0.08) 45%, transparent 70%);
  top: -25%;
  left: -15%;
  opacity: 0.9;
  animation: heroOrb1 20s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.hero-orb-2 {
  width: min(55vw, 400px);
  height: min(55vw, 400px);
  background: radial-gradient(circle, rgba(255, 212, 0, 0.35) 0%, rgba(255, 212, 0, 0.04) 50%, transparent 70%);
  top: 35%;
  right: -20%;
  opacity: 0.85;
  animation: heroOrb2 24s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.hero-orb-3 {
  width: min(45vw, 340px);
  height: min(45vw, 340px);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  bottom: -15%;
  left: 25%;
  opacity: 0.8;
  animation: heroOrb3 22s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.hero-orb-4 {
  width: min(35vw, 260px);
  height: min(35vw, 260px);
  background: radial-gradient(circle, rgba(255, 212, 0, 0.2) 0%, transparent 65%);
  top: 60%;
  left: 5%;
  opacity: 0.7;
  animation: heroOrb4 18s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes heroOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(10%, 12%) scale(1.08); }
  66% { transform: translate(-6%, -10%) scale(0.94); }
}

@keyframes heroOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-14%, -8%) scale(1.12); }
}

@keyframes heroOrb3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(12%, -14%) scale(1.06); }
  75% { transform: translate(-10%, 8%) scale(0.96); }
}

@keyframes heroOrb4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8%, -12%) scale(1.1); }
}

/* Moving grid – smooth diagonal drift */
.hero-grid {
  position: absolute;
  inset: -20%;
  width: 140%;
  height: 140%;
  left: -20%;
  top: -20%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 65% 45% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 65% 45% at 50% 50%, black 20%, transparent 70%);
  animation: heroGridMove 25s linear infinite;
}

@keyframes heroGridMove {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(48px, 48px); }
}

/* Vignette – keeps centre clear, text readable */
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 45% at 50% 50%, transparent 35%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeSlideUp 0.8s ease-out;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--grey);
  max-width: 560px;
}

.hero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow) 0%, transparent 100%);
  opacity: 0.8;
  z-index: 1;
}

/* ═══ Trust bar – single strip with dividers ═══ */
.trust-bar {
  background: var(--grey-dark);
  padding: var(--space-lg) 0;
  position: relative;
}

.trust-bar-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--yellow);
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1.5rem;
}

.trust-bar-icon {
  font-size: 1.35rem;
  color: var(--yellow);
}

.trust-bar-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.trust-bar-divider {
  width: 1px;
  height: 2rem;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.trust-bar-tagline {
  text-align: center;
  font-size: 0.85rem;
  color: var(--grey-mid);
  margin: var(--space) 0 0;
}

@media (max-width: 768px) {
  .trust-bar-inner { flex-direction: column; gap: 1rem; }
  .trust-bar-divider { display: none; }
  .trust-bar-item { padding: 0.25rem 0; }
}

/* ═══ About – editorial: copy block + sidebar with yellow bar ═══ */
.about {
  background: var(--black);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (max-width: 992px) {
  .about-layout { grid-template-columns: 1fr; }
}

.about-copy-block {
  padding-right: var(--space);
}

.about-copy {
  font-size: 1.05rem;
  color: var(--grey);
  margin: 0 0 var(--space);
  line-height: 1.65;
}

.about-copy-last {
  margin-bottom: 0;
}

.about-sidebar {
  position: relative;
  padding-left: var(--space-lg);
}

.about-sidebar-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--yellow);
  border-radius: 2px;
}

.about-list-item {
  padding: 0.6rem 0;
  padding-left: 1rem;
  color: var(--grey);
  font-size: 1rem;
  position: relative;
}

.about-list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 5px;
  height: 5px;
  background: var(--yellow);
  border-radius: 50%;
}

/* ═══ Products – bento grid (one large, two smaller) ═══ */
.products {
  background: var(--grey-dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space);
  margin-bottom: var(--space-lg);
}

.product-card-wrap {
  min-width: 0;
}

@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.product-tile {
  background: var(--black);
  padding: var(--space-lg);
  height: 100%;
  border-top: 4px solid var(--yellow);
  transition: box-shadow 0.2s, transform 0.2s;
}

.product-tile:hover {
  box-shadow: 0 8px 32px rgba(255, 212, 0, 0.12);
  transform: translateY(-2px);
}

.product-tile-num {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

.product-tile-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--white);
  margin: 0 0 var(--space);
  padding-bottom: var(--space);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-tile-item {
  padding: 0.35rem 0;
  color: var(--grey);
  font-size: 0.95rem;
}

.products-cta-wrap {
  text-align: center;
}

/* ═══ How it works – vertical timeline ═══ */
.how-it-works {
  background: var(--black);
}

.timeline {
  max-width: 640px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--space);
  padding-bottom: var(--space-lg);
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 29px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--yellow) 0%, rgba(255, 212, 0, 0.2) 100%);
}

.timeline-node {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--grey-dark);
  border: 3px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.timeline-num {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--yellow);
}

.timeline-content {
  padding-top: 0.25rem;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin: 0 0 0.35rem;
}

.timeline-desc {
  font-size: 0.95rem;
  color: var(--grey);
  margin: 0;
  line-height: 1.5;
}

/* ═══ Industries – pill tags (no cards) ═══ */
.industries {
  background: var(--grey-dark);
}

.industries-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.industry-pill {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  background: var(--black);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.industry-pill:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  box-shadow: 0 0 0 1px var(--yellow);
}

/* ═══ Why choose – checklist + quote box ═══ */
.why-choose {
  background: var(--black);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (max-width: 992px) {
  .why-layout { grid-template-columns: 1fr; }
}

.why-checklist-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0;
  color: var(--grey);
  font-size: 1rem;
}

.why-checklist-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.why-quote-box {
  background: var(--grey-dark);
  padding: var(--space-lg);
  border-left: 4px solid var(--yellow);
  border-radius: 0 8px 8px 0;
}

.why-quote-text {
  margin: 0;
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.6;
}

/* ═══ Certifications – horizontal badge strip ═══ */
.certifications {
  background: var(--grey-dark);
}

.cert-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: var(--space);
}

.cert-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 2px solid var(--yellow);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  transition: background 0.2s, color 0.2s;
}

.cert-badge:hover {
  background: var(--yellow);
  color: var(--black);
}

.cert-footnote {
  text-align: center;
  font-size: 0.9rem;
  color: var(--grey-mid);
  margin: 0;
}

/* ═══ Downloads – list rows (icon + title + button) ═══ */
.downloads {
  background: var(--black);
}

.downloads-coming-soon {
  text-align: center;
  font-size: 1.1rem;
  color: var(--grey-mid);
  margin: 0;
  padding: var(--space) 0;
}

.download-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}

.download-row {
  display: flex;
  align-items: center;
  gap: var(--space);
  padding: var(--space) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s;
}

.download-row:last-child {
  border-bottom: none;
}

.download-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.download-row-icon {
  font-size: 1.75rem;
  color: var(--yellow);
  flex-shrink: 0;
}

.download-row-body {
  flex: 1;
  min-width: 0;
}

.download-row-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin: 0 0 0.2rem;
}

.download-row-type {
  font-size: 0.85rem;
  color: var(--grey-mid);
}

/* ═══ Quote form – compact contact invite ═══ */
.quote-form {
  background: var(--grey-dark);
}

.quote-form--compact {
  padding: var(--space-lg) 0;
}

.quote-form-invite {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.quote-form-invite-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--white);
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}

.quote-form-invite-text {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.5;
  margin: 0 0 var(--space);
}

.quote-form-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.quote-form-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 212, 0, 0.4);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.quote-form-cta:hover {
  background: rgba(255, 212, 0, 0.15);
  border-color: var(--yellow);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 212, 0, 0.2);
}

.quote-form-cta .bi {
  font-size: 1.1em;
  color: var(--yellow);
}

.quote-form-cta--email:hover .bi,
.quote-form-cta--phone:hover .bi {
  color: var(--white);
}

.quote-form-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-xl);
  align-items: start;
}

@media (max-width: 992px) {
  .quote-form-layout { grid-template-columns: 1fr; }
}

.quote-form-main .section-heading {
  margin-bottom: var(--space);
}

.quote-form-contact-message {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--grey);
}

.quote-form-contact-message a {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
}

.quote-form-contact-message a:hover {
  text-decoration: underline;
}

.quote-form-aside {
  background: var(--black);
  padding: var(--space-lg);
  border-top: 4px solid var(--yellow);
  position: sticky;
  top: 100px;
}

.quote-aside-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin: 0 0 0.5rem;
}

.quote-aside-text {
  font-size: 0.95rem;
  color: var(--grey);
  margin: 0 0 var(--space);
  line-height: 1.5;
}

.quote-aside-contact {
  font-size: 0.9rem;
  color: var(--grey);
}

.quote-aside-contact .bi {
  color: var(--yellow);
}

.form-control-dark {
  background-color: var(--black) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: var(--white) !important;
}

.form-control-dark::placeholder {
  color: var(--grey-mid);
}

.form-control-dark:focus {
  border-color: var(--yellow) !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 212, 0, 0.2);
  color: var(--white);
}

/* ═══ Footer – yellow top accent ═══ */
.footer {
  background: var(--black);
  position: relative;
}

.footer-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.footer-tagline {
  color: var(--white);
  font-size: 0.95rem;
  margin: 0;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1rem;
}

.footer-link {
  color: var(--grey);
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--yellow);
}

.footer .border-secondary {
  border-color: rgba(255, 255, 255, 0.06) !important;
}

/* Spacing helpers for sections */
.py-lg-6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 992px) {
  .py-lg-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
