/* Canadian Clean Fleet Awards landing page.
   All rules are scoped under #ccfa-page so the dark, full-bleed design
   does not leak into the rest of the headless WordPress frontend. */

:root {
  --ccfa-bg: #ffffff;
  --ccfa-bg2: #f1f5fb;
  --ccfa-bg3: #e8f0fa;
  --ccfa-card: #ffffff;
  --ccfa-blue: #2c87f5;
  --ccfa-blue-lt: #6aaef8;
  --ccfa-blue-dk: #00407f;
  --ccfa-blue-dim: rgba(44, 135, 245, 0.1);
  --ccfa-gold: #b8860b;
  --ccfa-gold-bright: #ffd45e;
  --ccfa-snow: #16263a;
  --ccfa-snow-dim: rgba(22, 38, 58, 0.62);
  --ccfa-muted: rgba(22, 38, 58, 0.42);
  --ccfa-border: rgba(44, 135, 245, 0.28);
  --ccfa-border2: rgba(22, 38, 58, 0.1);
  --ccfa-r: 8px;
  --ccfa-r2: 14px;
  --ccfa-fh: 'Lexend Mega', sans-serif;
  --ccfa-ft: 'Lexend Giga', sans-serif;
  --ccfa-fb: 'Lexend', sans-serif;
}
#ccfa-page *,
#ccfa-page *::before,
#ccfa-page *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
#ccfa-page {
  background: var(--ccfa-bg);
  color: var(--ccfa-snow);
  font-family: var(--ccfa-fb);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  scroll-behavior: smooth;
}
#ccfa-page a {
  color: inherit;
  text-decoration: none;
}
#ccfa-page ul {
  list-style: none;
}
#ccfa-page h1 {
  font-family: var(--ccfa-fh);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--ccfa-blue);
}
#ccfa-page h2 {
  font-family: var(--ccfa-ft);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ccfa-blue);
}
#ccfa-page h3 {
  font-family: var(--ccfa-ft);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ccfa-blue);
}

#ccfa-page .wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}
#ccfa-page .sec {
  padding: 80px 0;
}
#ccfa-page .lbl {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ccfa-blue-dk);
  margin-bottom: 14px;
}
#ccfa-page .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
#ccfa-page .reveal.visible {
  opacity: 1;
  transform: none;
}
#ccfa-page .d1 {
  transition-delay: 0.08s;
}
#ccfa-page .d2 {
  transition-delay: 0.16s;
}
#ccfa-page .d3 {
  transition-delay: 0.24s;
}
#ccfa-page .d4 {
  transition-delay: 0.32s;
}

#ccfa-page .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--ccfa-r);
  font-family: var(--ccfa-fb);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
#ccfa-page .btn-primary {
  background: var(--ccfa-blue);
  color: #fff;
}
#ccfa-page .btn-primary:hover {
  background: var(--ccfa-blue-lt);
  transform: translateY(-1px);
}
#ccfa-page .btn-outline {
  background: transparent;
  color: var(--ccfa-snow);
  border: 1.5px solid rgba(22, 38, 58, 0.22);
}
#ccfa-page .btn-outline:hover {
  border-color: var(--ccfa-blue);
  color: var(--ccfa-blue);
  transform: translateY(-1px);
}

/* The section nav sits directly beneath the fixed EA header so both navs are
   visible instead of overlapping. The EA header shrinks on scroll (desktop:
   154px -> 100px, over 1s), so the section nav's offset tracks it in sync.
   Mobile header height is a constant 72px. */
#ccfa-page nav {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 100;
  height: 92px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ccfa-border2);
  transition:
    background 0.3s,
    top 1s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 768px) {
  #ccfa-page nav {
    top: 154px;
  }
  #ccfa-page nav.scrolled {
    top: 100px;
  }
}
#ccfa-page nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
}
#ccfa-page .nav-in {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
#ccfa-page .nav-logo {
  font-family: var(--ccfa-ft);
  font-size: 0.86rem;
  font-weight: 600;
}
#ccfa-page .nav-logo span {
  color: var(--ccfa-blue);
}
#ccfa-page .nav-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
#ccfa-page .nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ccfa-blue-dk);
  transition: color 0.2s;
}
#ccfa-page .nav-links a:hover {
  color: var(--ccfa-blue);
}
#ccfa-page .nav-cta {
  margin-left: 16px;
  padding: 8px 18px;
  font-size: 0.76rem;
}

/* HERO */
#ccfa-page #hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
#ccfa-page .hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse 80% 70% at 10% 70%,
      rgba(44, 135, 245, 0.12) 0%,
      transparent 56%
    ),
    radial-gradient(
      ellipse 50% 50% at 88% 18%,
      rgba(245, 165, 0, 0.07) 0%,
      transparent 52%
    ),
    linear-gradient(168deg, #eef4fc 0%, #ffffff 100%);
}
#ccfa-page .hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(44, 135, 245, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(44, 135, 245, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 40% 60%, black 20%, transparent 72%);
  -webkit-mask-image: radial-gradient(
    ellipse at 40% 60%,
    black 20%,
    transparent 72%
  );
}
#ccfa-page .hero-body {
  position: relative;
  z-index: 2;
  padding: 148px 32px 110px;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}
#ccfa-page .hero-eye {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ccfa-blue-dk);
  margin-bottom: 22px;
  opacity: 0;
  animation: ccfaFadeUp 0.8s ease 0.2s forwards;
  font-size: 0.82rem;
}
#ccfa-page .hero-eye::before {
  content: none;
}
#ccfa-page h1.hero-h {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  margin-bottom: 20px;
  max-width: 780px;
  opacity: 0;
  animation: ccfaFadeUp 0.8s ease 0.4s forwards;
}
#ccfa-page .hero-sub {
  font-size: 1.2rem;
  color: var(--ccfa-snow);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 36px;
  opacity: 0;
  animation: ccfaFadeUp 0.8s ease 0.6s forwards;
}
#ccfa-page .hero-acts {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  opacity: 0;
  animation: ccfaFadeUp 0.8s ease 0.8s forwards;
}
#ccfa-page .hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(44, 135, 245, 0.08);
  border: 1px solid var(--ccfa-border);
  border-radius: 100px;
  padding: 6px 16px 6px 9px;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--ccfa-blue);
  opacity: 0;
  animation: ccfaFadeUp 0.8s ease 1s forwards;
}
#ccfa-page .pill-dot {
  width: 6px;
  height: 6px;
  background: var(--ccfa-blue);
  border-radius: 50%;
  animation: ccfaPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* WINNING */
#ccfa-page #winning {
  background: var(--ccfa-bg);
}
#ccfa-page .win-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 44px;
}
#ccfa-page .win-card {
  padding: 30px 26px;
  background: var(--ccfa-card);
  border: 1px solid var(--ccfa-border2);
  border-radius: var(--ccfa-r2);
  transition:
    border-color 0.3s,
    transform 0.3s;
}
#ccfa-page .win-card:hover {
  border-color: rgba(44, 135, 245, 0.35);
  transform: translateY(-2px);
}
#ccfa-page .win-n {
  font-family: var(--ccfa-fh);
  font-size: 2rem;
  font-weight: 800;
  color: var(--ccfa-blue);
  line-height: 1;
  margin-bottom: 14px;
}
#ccfa-page .win-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
#ccfa-page .win-card p {
  font-size: 1rem;
  color: var(--ccfa-snow);
  line-height: 1.7;
}

/* SCORING */
#ccfa-page #scoring {
  background: var(--ccfa-blue);
}
#ccfa-page .score-bars {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 700px;
}
#ccfa-page .score-label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 9px;
}
#ccfa-page .score-name {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ccfa-snow);
}
#ccfa-page .score-wt {
  font-size: 0.7rem;
  color: var(--ccfa-gold);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
#ccfa-page .score-bar {
  height: 6px;
  background: rgba(22, 38, 58, 0.09);
  border-radius: 3px;
  overflow: hidden;
}
#ccfa-page .score-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--ccfa-blue-dk),
    var(--ccfa-blue),
    var(--ccfa-blue-lt)
  );
  border-radius: 3px;
  width: 0;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#ccfa-page .score-desc {
  font-size: 0.94rem;
  color: var(--ccfa-snow-dim);
  margin-top: 7px;
  line-height: 1.55;
}

/* PARTNERS */
#ccfa-page #partners {
  background: var(--ccfa-bg3);
}
#ccfa-page .partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 44px;
}
#ccfa-page .pw-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}
#ccfa-page .pw-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
#ccfa-page .pw-icon {
  width: 30px;
  height: 30px;
  background: var(--ccfa-blue-dim);
  border: 1px solid var(--ccfa-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ccfa-blue);
  flex-shrink: 0;
  margin-top: 2px;
}
#ccfa-page .pw-icon svg {
  width: 14px;
  height: 14px;
}
#ccfa-page .pw-row strong {
  font-size: 1.03rem;
  font-weight: 600;
  color: var(--ccfa-snow);
  display: block;
  margin-bottom: 3px;
}
#ccfa-page .pw-row p {
  font-size: 0.98rem;
  color: var(--ccfa-snow);
  line-height: 1.6;
}
#ccfa-page .tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
#ccfa-page .tag {
  padding: 4px 12px;
  background: var(--ccfa-blue-dim);
  border: 1px solid var(--ccfa-border);
  border-radius: 100px;
  font-size: 0.86rem;
  color: var(--ccfa-blue);
  font-weight: 500;
}
#ccfa-page .ps-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
#ccfa-page .ps-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
#ccfa-page .ps-n {
  width: 22px;
  height: 22px;
  background: var(--ccfa-blue-dim);
  border: 1px solid var(--ccfa-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.64rem;
  font-weight: 700;
  color: var(--ccfa-blue);
  flex-shrink: 0;
  margin-top: 2px;
}
#ccfa-page .ps-row span {
  font-size: 1rem;
  color: var(--ccfa-snow);
  line-height: 1.65;
}
#ccfa-page .partner-note {
  margin-top: 24px;
  padding: 14px 18px;
  background: var(--ccfa-blue-dim);
  border-left: 2px solid var(--ccfa-blue);
  border-radius: 0 var(--ccfa-r) var(--ccfa-r) 0;
  font-size: 0.96rem;
  color: var(--ccfa-snow);
  line-height: 1.65;
}
#ccfa-page .partner-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

/* ELIGIBILITY */
#ccfa-page #eligibility {
  background: var(--ccfa-blue);
}
#ccfa-page .elig-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
}
#ccfa-page .elig-head {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ccfa-snow-dim);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ccfa-border2);
}
#ccfa-page .elig-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#ccfa-page .elig-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--ccfa-snow);
  line-height: 1.55;
}
#ccfa-page .ck {
  color: var(--ccfa-blue);
  font-weight: 700;
  font-size: 0.76rem;
  margin-top: 2px;
  flex-shrink: 0;
}
#ccfa-page .cx {
  color: #c5362f;
  font-weight: 700;
  font-size: 0.76rem;
  margin-top: 2px;
  flex-shrink: 0;
}
#ccfa-page .elig-note {
  margin-top: 20px;
  padding: 12px 16px;
  background: var(--ccfa-blue-dim);
  border-left: 2px solid var(--ccfa-blue);
  border-radius: 0 var(--ccfa-r) var(--ccfa-r) 0;
  font-size: 0.94rem;
  color: var(--ccfa-snow);
  line-height: 1.65;
}
#ccfa-page .elig-note a {
  color: var(--ccfa-gold);
}

/* ENTER */
#ccfa-page #enter {
  background: var(--ccfa-bg3);
}
#ccfa-page .enter-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 32px;
}
#ccfa-page .step {
  position: relative;
  padding: 26px 22px;
  border: 1px solid var(--ccfa-border2);
  border-radius: var(--ccfa-r2);
  background: var(--ccfa-card);
  overflow: hidden;
}
#ccfa-page .step::after {
  content: attr(data-s);
  position: absolute;
  top: 6px;
  right: 12px;
  font-family: var(--ccfa-fh);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(44, 135, 245, 0.14);
  line-height: 1;
  pointer-events: none;
}
#ccfa-page .step-lbl {
  display: inline-block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ccfa-gold);
  background: rgba(245, 165, 0, 0.1);
  padding: 3px 9px;
  border-radius: 100px;
  margin-bottom: 12px;
  border: 1px solid rgba(245, 165, 0, 0.22);
}
#ccfa-page .step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
#ccfa-page .step ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#ccfa-page .step li {
  font-size: 0.94rem;
  color: var(--ccfa-snow-dim);
  padding-left: 13px;
  position: relative;
  line-height: 1.45;
}
#ccfa-page .step li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--ccfa-blue);
  font-size: 0.68rem;
}
#ccfa-page .fee-table {
  background: var(--ccfa-card);
  border: 1px solid var(--ccfa-border2);
  border-radius: var(--ccfa-r2);
  overflow: hidden;
  margin-bottom: 24px;
}
#ccfa-page .fee-head {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  background: var(--ccfa-blue-dim);
  border-bottom: 1px solid var(--ccfa-border);
  padding: 10px 22px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ccfa-blue);
}
#ccfa-page .fee-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  padding: 14px 22px;
  border-bottom: 1px solid var(--ccfa-border2);
  font-size: 1rem;
  align-items: center;
}
#ccfa-page .fee-row:last-child {
  border-bottom: none;
}
#ccfa-page .fee-amt {
  font-family: var(--ccfa-ft);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ccfa-blue);
}
#ccfa-page .fee-note {
  font-size: 0.72rem;
  color: var(--ccfa-muted);
}
#ccfa-page .enter-acts {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
#ccfa-page .link-dl {
  font-size: 0.78rem;
  color: var(--ccfa-gold);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}
#ccfa-page .link-dl:hover {
  color: #ffc133;
}

/* FAQ */
#ccfa-page #faq {
  background: var(--ccfa-bg2);
}
#ccfa-page .faq-wrap {
  max-width: 720px;
  margin: 40px auto 0;
}
#ccfa-page .faq-item {
  border-bottom: 1px solid var(--ccfa-border2);
}
#ccfa-page .faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ccfa-snow);
  cursor: pointer;
  background: transparent;
  border: none;
  text-align: left;
  gap: 14px;
  transition: color 0.2s;
  font-family: var(--ccfa-fb);
}
#ccfa-page .faq-q:hover {
  color: var(--ccfa-blue);
}
#ccfa-page .faq-q svg {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--ccfa-blue);
}
#ccfa-page .faq-item.open .faq-q svg {
  transform: rotate(45deg);
}
#ccfa-page .faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
  font-size: 1rem;
  color: var(--ccfa-snow);
  line-height: 1.82;
}
#ccfa-page .faq-item.open .faq-a {
  max-height: 600px;
  padding-bottom: 20px;
}
#ccfa-page .faq-a a {
  color: var(--ccfa-gold);
}

/* CTA */
#ccfa-page #cta {
  background: var(--ccfa-blue);
  padding: 100px 0;
  text-align: center;
}
#ccfa-page .cta-h {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 14px;
}
#ccfa-page .cta-sub {
  font-size: 1.14rem;
  color: var(--ccfa-snow);
  max-width: 380px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
#ccfa-page .cta-acts {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
#ccfa-page .cta-fine {
  font-size: 0.74rem;
  color: var(--ccfa-muted);
}
#ccfa-page .cta-fine a {
  color: var(--ccfa-gold);
}

#ccfa-page footer {
  padding: 20px 32px;
  border-top: 1px solid var(--ccfa-border2);
  background: var(--ccfa-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
#ccfa-page footer p {
  font-size: 0.72rem;
  color: var(--ccfa-muted);
}
#ccfa-page .ftr-links {
  display: flex;
  gap: 20px;
}
#ccfa-page .ftr-links a {
  font-size: 0.72rem;
  color: var(--ccfa-muted);
  transition: color 0.2s;
}
#ccfa-page .ftr-links a:hover {
  color: var(--ccfa-gold);
}

@keyframes ccfaFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes ccfaPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

@media (max-width: 900px) {
  #ccfa-page .win-grid,
  #ccfa-page .partners-grid,
  #ccfa-page .elig-grid,
  #ccfa-page .enter-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  #ccfa-page .nav-links {
    display: none;
  }
}
@media (max-width: 580px) {
  #ccfa-page .wrap {
    padding: 0 20px;
  }
  #ccfa-page .sec {
    padding: 60px 0;
  }
  #ccfa-page .hero-body {
    padding: 112px 20px 72px;
  }
  #ccfa-page nav,
  #ccfa-page footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  #ccfa-page .fee-head,
  #ccfa-page .fee-row {
    grid-template-columns: 1fr 1fr;
  }
  #ccfa-page .fee-head > *:last-child,
  #ccfa-page .fee-row > *:last-child {
    display: none;
  }
}

/* ------------------------------------------------------------------ */
/* SPONSORS & PARTNERS                                                 */
/* Logos sit directly on the dark navy background, so white/reversed   */
/* logos are expected. A white text wordmark is the fallback.          */
/* ------------------------------------------------------------------ */
#ccfa-page .sp-logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#ccfa-page .sp-logo-item img {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}
#ccfa-page .sp-wordmark {
  font-family: var(--ccfa-ft);
  font-weight: 600;
  color: var(--ccfa-snow);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* Compact strip directly under the hero */
#ccfa-page .sp-strip {
  background: var(--ccfa-bg2);
  border-top: 1px solid var(--ccfa-border2);
  border-bottom: 1px solid var(--ccfa-border2);
  padding: 48px 0;
}
#ccfa-page .sp-strip-in {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px 60px;
}
#ccfa-page .sp-strip-lbl {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ccfa-snow-dim);
}
#ccfa-page .sp-strip-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 56px;
}
#ccfa-page .sp-strip .sp-logo-item img {
  max-height: 60px;
  max-width: 300px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
#ccfa-page .sp-strip .sp-logo-item:hover img {
  opacity: 1;
}
#ccfa-page .sp-strip .sp-wordmark {
  font-size: 1.05rem;
}

/* Full tiered partners section */
#ccfa-page .sp-tiers {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}
#ccfa-page .sp-tier {
  width: 100%;
  max-width: 640px;
  text-align: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--ccfa-border2);
}
#ccfa-page .sp-tier:last-child {
  border-bottom: none;
}
#ccfa-page .sp-tier-lbl {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ccfa-snow-dim);
  margin-bottom: 22px;
}
#ccfa-page .sp-tier.gold .sp-tier-lbl {
  color: var(--ccfa-gold);
}
#ccfa-page .sp-tier.presenting .sp-logo-item img {
  max-height: 54px;
  max-width: 240px;
}
#ccfa-page .sp-tier.presenting .sp-wordmark {
  font-size: 1.85rem;
}
#ccfa-page .sp-tier.gold .sp-logo-item img {
  max-height: 54px;
  max-width: 240px;
}
#ccfa-page .sp-tier.gold .sp-wordmark {
  font-size: 1.5rem;
}
#ccfa-page .sp-tier.supporting .sp-logo-item img {
  max-height: 54px;
  max-width: 240px;
}
#ccfa-page .sp-tier.supporting .sp-wordmark {
  font-size: 1.25rem;
}

@media (max-width: 580px) {
  #ccfa-page .sp-strip-in {
    flex-direction: column;
    gap: 14px;
  }
  #ccfa-page .sp-tier.presenting .sp-logo-item img,
  #ccfa-page .sp-tier.gold .sp-logo-item img,
  #ccfa-page .sp-tier.supporting .sp-logo-item img {
    max-height: 44px;
    max-width: 200px;
  }
  #ccfa-page .sp-tier.presenting .sp-wordmark {
    font-size: 1.5rem;
  }
}

/* Light-theme card definition */
#ccfa-page .win-card,
#ccfa-page .step,
#ccfa-page .fee-table {
  box-shadow: 0 2px 12px rgba(22, 38, 58, 0.06);
}

/* ------------------------------------------------------------------ */
/* HERO LOGO + COMPACTING                                              */
/* ------------------------------------------------------------------ */
/* Remove the full-height hero so there's no large empty band above
   the logo; the hero now sizes to its content. */
#ccfa-page #hero {
  min-height: auto;
}
#ccfa-page .hero-logo {
  display: block;
  height: 272px; /* ~4x the previous 68px mark */
  width: auto;
  max-width: 100%;
}
@media (max-width: 580px) {
  #ccfa-page .hero-logo {
    height: 188px;
  }
}

/* ------------------------------------------------------------------ */
/* VEHICLE IMAGE BANDS (relief between sections)                       */
/* ------------------------------------------------------------------ */
#ccfa-page .veh-band {
  padding: 10px 0;
}
#ccfa-page .veh-band figure {
  max-width: 1000px;
  margin: 0 auto;
}
#ccfa-page .veh-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--ccfa-r2);
  box-shadow: 0 14px 40px rgba(22, 38, 58, 0.14);
}

/* ------------------------------------------------------------------ */
/* SIGNATURE-BLUE SECTIONS (alternating rhythm + gold pop)             */
/* ------------------------------------------------------------------ */
#ccfa-page .sec-blue {
  --ccfa-snow: #ffffff;
  --ccfa-snow-dim: rgba(255, 255, 255, 0.84);
  --ccfa-muted: rgba(255, 255, 255, 0.72);
  --ccfa-border2: rgba(255, 255, 255, 0.18);
}
#ccfa-page .sec-blue h2,
#ccfa-page .sec-blue h3 {
  color: #ffffff;
}
#ccfa-page .sec-blue .lbl,
#ccfa-page .sec-blue .score-wt {
  color: var(--ccfa-gold-bright);
}
#ccfa-page .sec-blue .score-bar {
  background: rgba(255, 255, 255, 0.24);
}
#ccfa-page .sec-blue .score-fill {
  background: linear-gradient(90deg, #ffd45e, #ffb020);
}
#ccfa-page .sec-blue .ck {
  color: var(--ccfa-gold-bright);
}
#ccfa-page .sec-blue .cx {
  color: #ffd6d6;
}
#ccfa-page .sec-blue .elig-head {
  color: rgba(255, 255, 255, 0.85);
}
#ccfa-page .sec-blue .elig-note {
  background: rgba(255, 255, 255, 0.14);
  border-left-color: var(--ccfa-gold-bright);
}
#ccfa-page .sec-blue .elig-note a,
#ccfa-page .sec-blue .cta-fine a {
  color: var(--ccfa-gold-bright);
}
/* Buttons on a blue field */
#ccfa-page .sec-blue .btn-primary {
  background: #ffffff;
  color: var(--ccfa-blue);
}
#ccfa-page .sec-blue .btn-primary:hover {
  background: #eaf2ff;
}
#ccfa-page .sec-blue .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}
#ccfa-page .sec-blue .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: #ffffff;
}

/* ------------------------------------------------------------------ */
/* VEHICLE PHOTOS BLED INTO ADJACENT BLUE MODULES                      */
/* ------------------------------------------------------------------ */
#ccfa-page #scoring,
#ccfa-page #eligibility {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
#ccfa-page #scoring > *,
#ccfa-page #eligibility > * {
  position: relative;
  z-index: 1;
}
#ccfa-page #scoring::before,
#ccfa-page #eligibility::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.92;
  pointer-events: none;
}
#ccfa-page #scoring::before {
  background-image: url('/images/winners/f150-lightning.jpg');
  background-position: right center;
  -webkit-mask-image: linear-gradient(90deg, transparent 30%, #000 82%);
  mask-image: linear-gradient(90deg, transparent 30%, #000 82%);
}
#ccfa-page #eligibility::before {
  background-image: url('/images/winners/volvo-vnr.jpg');
  background-position: right center;
  -webkit-mask-image: linear-gradient(90deg, transparent 40%, #000 90%);
  mask-image: linear-gradient(90deg, transparent 40%, #000 90%);
}

/* ------------------------------------------------------------------ */
/* "HOW TO ENTER" STEP CARDS — blue cards with gold pops              */
/* ------------------------------------------------------------------ */
#ccfa-page .step {
  background: var(--ccfa-blue);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 30px rgba(44, 135, 245, 0.22);
}
#ccfa-page .step h3 {
  color: #ffffff;
}
#ccfa-page .step li {
  color: rgba(255, 255, 255, 0.9);
}
#ccfa-page .step li::before {
  color: var(--ccfa-gold-bright);
}
#ccfa-page .step::after {
  color: rgba(255, 255, 255, 0.18);
}
#ccfa-page .step-lbl {
  color: var(--ccfa-gold-bright);
  background: var(--ccfa-blue-dk);
  border-color: var(--ccfa-blue-dk);
}

/* ------------------------------------------------------------------ */
/* "WHAT WINNING MEANS" CARDS — blue cards with gold number pops       */
/* ------------------------------------------------------------------ */
#ccfa-page .win-card {
  background: var(--ccfa-blue);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 30px rgba(44, 135, 245, 0.22);
}
#ccfa-page .win-card:hover {
  border-color: rgba(255, 255, 255, 0.42);
}
#ccfa-page .win-n {
  color: var(--ccfa-gold-bright);
}
#ccfa-page .win-card h3 {
  color: #ffffff;
}
#ccfa-page .win-card p {
  color: rgba(255, 255, 255, 0.9);
}

/* ------------------------------------------------------------------ */
/* STANDALONE VEHICLE FEATURE BAND (van above the FAQ)                 */
/* ------------------------------------------------------------------ */
#ccfa-page .veh-feature {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ccfa-blue);
  height: 520px;
}
#ccfa-page .veh-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/winners/brightdrop-van.jpg') center / contain
    no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.92;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 20%,
    #000 80%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 20%,
    #000 80%,
    transparent 100%
  );
}

/* ------------------------------------------------------------------ */
/* MOBILE: scoring/eligibility vehicles as their own photo band       */
/* (desktop keeps the side-bleed; on phones the text would cover it)  */
/* ------------------------------------------------------------------ */
@media (max-width: 760px) {
  #ccfa-page #scoring,
  #ccfa-page #eligibility {
    padding-bottom: 320px;
  }
  #ccfa-page #scoring::before,
  #ccfa-page #eligibility::before {
    top: auto;
    height: 300px;
    background-size: contain;
    background-position: center bottom;
    -webkit-mask-image: linear-gradient(
      180deg,
      transparent 0%,
      #000 16%,
      #000 86%,
      transparent 100%
    );
    mask-image: linear-gradient(
      180deg,
      transparent 0%,
      #000 16%,
      #000 86%,
      transparent 100%
    );
  }
}
