:root {
  --fp-yellow: #f4b400;
  --fp-dark: #1f1f1f;
  --fp-grey: #2e2e2e;
  --fp-light: #f5f5f5;
  --fp-white: #ffffff;
}

/* ========================================
   GLOBAL
======================================== */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--fp-dark);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title.light {
  color: var(--fp-white);
}

.section-header {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fp-yellow);
}

.section-intro {
  font-size: 1.12rem;
  line-height: 1.75;
  color: #444;
  max-width: 900px;
  margin: 0 auto;
}

.inline-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.inline-link:hover {
  color: var(--fp-yellow);
  text-decoration-color: var(--fp-yellow);
}

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-block;
  padding: 14px 30px;
  margin-right: 15px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn.btn-primary {
  background: var(--fp-yellow);
  color: #000;
  border: 2px solid var(--fp-yellow);
}

.btn.btn-primary:hover {
  background: #000;
  color: var(--fp-yellow);
  border-color: #000;
}

.btn-dark {
  background: #111;
  color: #fff;
  border: 2px solid #111;
}

.btn-dark:hover {
  background: transparent;
  color: #111;
}

/* ========================================
   HEADER / HERO - ALL PAGES
======================================== */
.hero {
  background: var(--fp-dark);
  color: #fff;
  padding: 60px 0;
}

.hero-overlay {
  width: 100%;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero-logo {
  height: 200px;
  width: auto;
  margin-top: 5px;
  flex-shrink: 0;
}

.hero-content {
  flex: 1;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 1.15rem;
  margin-bottom: 25px;
}

/* ========================================
   NAVIGATION
======================================== */
.main-nav {
  margin-top: 20px;
}

.main-nav a {
  margin-right: 28px;
  padding: 6px 10px;
  text-decoration: none;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background: var(--fp-yellow);
  color: #000;
}

.main-nav a.active {
  background: var(--fp-yellow);
  color: #000;
}

.main-nav a.active:hover {
  background: #000;
  color: var(--fp-yellow);
}

/* ========================================
   INDEX PAGE - VALUE BARS
======================================== */
.value-bars {
  padding: 70px 0;
  background: #fff;
}

.value-bar {
  width: min(1200px, 90%);
  margin: 0 auto 22px;
  padding: 30px 34px;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  color: #fff;
  opacity: 0;
  transform: translateX(-60px);
  transition:
    transform 0.7s ease,
    opacity 0.7s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}

.value-bar.visible {
  opacity: 1;
  transform: translateX(0);
}

.value-bar.visible:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
}

.value-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.04) 35%,
    rgba(255, 255, 255, 0) 65%
  );
  pointer-events: none;
}

.value-bar h2 {
  margin: 0 0 10px;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.value-bar p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.55;
  max-width: 900px;
  opacity: 0.96;
}

.bar-amber {
  background: linear-gradient(135deg, #f4b400 0%, #d89b00 100%);
  border-left: 6px solid #565656;
}

.bar-amber p {
  opacity: 0.92;
}

.bar-grey {
  background: linear-gradient(135deg, #565656 0%, #3d3d3d 100%);
  border-left: 6px solid #111111;
}

.bar-black {
  background: linear-gradient(135deg, #1a1a1a 0%, #080808 100%);
  border-left: 6px solid #f4b400;
}

/* ========================================
   INDEX PAGE - SOLUTIONS CARDS
======================================== */
.solutions {
  padding: 60px 0;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.solution-card {
  display: grid;
  grid-template-rows: 60px 110px 400px minmax(300px, 1fr) 60px;
  gap: 16px;
  height: 100%;
  padding: 28px;
  background: #efefef;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.solution-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: flex-start;
}

.solution-desc {
  margin: 0;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
}

.solution-lists {
  overflow: hidden;
  padding-top: 10px;
}

.solution-card ul {
  margin: 0 0 14px;
  padding-left: 18px;
}

.solution-card ul ul {
  margin-top: 10px;
  padding-left: 18px;
}

.solution-card li {
  margin: 6px 0;
  line-height: 1.35;
}

.btn-card {
  align-self: end;
}

/* ========================================
   IMAGE ROTATORS / SLIDERS
======================================== */
.solution-image-rotator {
  position: relative;
  height: 100%;
  margin-left: -28px;
  margin-right: -28px;
  overflow: hidden;
  background: #d9d9d9;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.solution-image-slide,
.award-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.solution-image-slide.is-active,
.award-slide.is-active {
  opacity: 1;
}

.solution-image-slide img,
.award-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.award-slide.is-active {
  pointer-events: auto;
}

/* ========================================
   INDEX PAGE - CATEGORIES
======================================== */
.categories {
  background: var(--fp-grey);
  color: #fff;
  padding: 60px 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: center;
}

.category-grid div {
  padding: 20px;
  background: #3a3a3a;
}

.category-grid .more {
  background: var(--fp-yellow);
  color: #000;
}

/* ========================================
   AWARD SECTION
======================================== */
.award {
  background: var(--fp-dark);
  color: var(--fp-white);
  padding: 80px 0;
}

.award-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
}

.award-image-slider {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.award-content h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

.award-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 520px;
  opacity: 0.95;
}

/* ========================================
   WHY FP
======================================== */
.why-fp {
  background: #111;
  color: #fff;
  padding: 100px 0;
}

.why-fp .section-header {
  max-width: 980px;
  margin: 0 auto 80px;
  text-align: center;
}

.why-fp .section-title.light {
  margin-bottom: 18px;
  font-size: 2.3rem;
  color: #fff;
}

.why-fp .section-intro {
  max-width: 860px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.45rem;
  line-height: 1.7;
}

.why-fp-block {
  padding: 50px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.why-fp-block:first-of-type {
  border-top: none;
  padding-top: 0;
}

.why-fp-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
}

.why-fp-grid.reverse {
  grid-template-columns: 1fr 1.15fr;
}

.why-fp-content h3 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  color: #fff;
}

.why-fp-content p {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.75;
}

.why-fp-kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f0c94a;
}

.why-fp-media {
  position: relative;
}

.why-fp-certifications {
  display: grid;
  gap: 16px;
}

.cert-card {
  display: block;
  padding: 22px 24px;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border-left: 4px solid var(--fp-yellow);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.cert-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-left-color: #ffd24a;
}

.cert-card strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.cert-card span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cert-card-muted {
  opacity: 0.78;
}

/* ========================================
   FINAL CTA
======================================== */
.final-cta {
  background: var(--fp-yellow);
  color: #111;
  padding: 70px 0;
  text-align: center;
}

.final-cta h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.final-cta p {
  margin: 0 auto 24px;
  max-width: 760px;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ========================================
   FOOTER - ALL PAGES
======================================== */
.site-footer {
  background: #050505;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 60px;
  padding: 70px 0 50px;
  align-items: start;
}

.footer-column h3,
.footer-contact h4 {
  margin: 0 0 20px;
  font-size: 1.2rem;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column li {
  margin-bottom: 16px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--fp-yellow);
}

.footer-brand {
  text-align: center;
}

.footer-logo {
  width: 90px;
  height: auto;
  margin-bottom: 18px;
}

.footer-brand h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-brand > p {
  margin: 0 auto 26px;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  font-size: 1.1rem;
}

.footer-contact {
  margin-top: 26px;
}

.footer-contact p {
  margin: 0 0 14px;
  font-size: 1.05rem;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--fp-yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #0a0d14;
}

.footer-bottom p {
  margin: 0;
  padding: 18px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

/* ========================================
   CONTACT PAGE
======================================== */
.contact-page {
  padding: 80px 0;
  background: #f5f5f5;
}

.contact-page-header {
  max-width: 850px;
  margin: 0 auto 50px;
  text-align: center;
}

.contact-intro {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #444;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: stretch;
}

.contact-card {
  background: #fff;
  padding: 36px;
  border-radius: 0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--fp-yellow);
}

.contact-card-alt {
  background: #1f1f1f;
  color: #fff;
}

.contact-card-alt p,
.contact-card-alt li {
  color: rgba(255, 255, 255, 0.86);
}

.contact-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fp-yellow);
}

.contact-card h3 {
  margin: 0 0 16px;
  font-size: 2rem;
  line-height: 1.15;
}

.contact-card p {
  margin: 0 0 24px;
  line-height: 1.7;
  color: #444;
}

.contact-details {
  display: grid;
  gap: 20px;
}

.contact-detail strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666;
}

.contact-detail a {
  color: #111;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 700;
}

.contact-detail a:hover {
  color: var(--fp-yellow);
}

.contact-list {
  margin: 0 0 28px;
  padding-left: 20px;
}

.contact-list li {
  margin-bottom: 12px;
  line-height: 1.5;
}

.contact-card-alt .btn.btn-primary:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
}

.contact-feature-card {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(145deg, #1c1c1c, #111111);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0px;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.contact-feature-image img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 0px;
  display: block;
}

.contact-feature-content {
  color: #fff;
}

.contact-feature-content h3 {
  margin: 0 0 0.9rem;
  color: #fff;
}

.contact-feature-content p {
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.contact-feature-person h4 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  color: #fff;
}

.contact-feature-person p {
  margin: 0 0 1.25rem;
  opacity: 0.8;
}

.contact-feature-card .contact-detail strong {
  color: rgba(255, 255, 255, 0.68);
}

.contact-feature-card .contact-detail a {
  color: #fff;
}

.contact-feature-card .contact-detail a:hover {
  color: var(--fp-yellow);
}

/* ========================================
   SOLUTIONS PAGE
======================================== */
.solutions-page-intro {
  background: #fff;
  padding: 80px 0 30px;
}

.solution-blocks {
  background: #fff;
}

.solution-feature {
  padding: 80px 0;
  border-top: 1px solid #e8e8e8;
}

.solution-feature:first-child {
  border-top: none;
}

.solution-feature.alt {
  background: #f6f6f6;
}

.solution-feature-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
}

.solution-feature-grid.reverse {
  grid-template-columns: 1fr 1.05fr;
}

.solution-feature-content h2 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.15;
  color: #111;
}

.solution-feature-content p {
  margin: 0 0 20px;
  max-width: 620px;
  font-size: 1.04rem;
  line-height: 1.75;
  color: #444;
}

.solution-feature-content ul {
  margin: 0;
  padding-left: 20px;
}

.solution-feature-content li {
  margin: 10px 0;
  line-height: 1.55;
  color: #333;
}

.solution-feature-kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fp-yellow);
}

.solution-feature-media {
  position: relative;
}

.solution-page-slider {
  min-height: 420px;
}

.solutions-differentiators {
  padding-bottom: 100px;
}

.solutions-highlight-card {
  padding: 34px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--fp-yellow);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.solutions-highlight-card strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.2rem;
}

.solutions-highlight-card span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.7;
}

/* ========================================
   SPILL MANAGEMENT PAGE
======================================== */
.spill-page-intro {
  background: #fff;
  padding: 80px 0 30px;
}

.spill-feature-blocks {
  background: #fff;
}

.spill-feature {
  padding: 80px 0;
  border-top: 1px solid #e8e8e8;
}

.spill-feature:first-child {
  border-top: none;
}

.spill-feature.alt {
  background: #f6f6f6;
}

.spill-feature-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
}

.spill-feature-grid.reverse {
  grid-template-columns: 1fr 1.05fr;
}

.spill-feature-content h2 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.15;
  color: #111;
}

.spill-feature-content p {
  margin: 0 0 20px;
  max-width: 620px;
  font-size: 1.04rem;
  line-height: 1.75;
  color: #444;
}

.spill-feature-content ul {
  margin: 0;
  padding-left: 20px;
}

.spill-feature-content li {
  margin: 10px 0;
  line-height: 1.55;
  color: #333;
}

.spill-feature-kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fp-yellow);
}

.spill-feature-media {
  position: relative;
}

.spill-page-slider {
  min-height: 420px;
}

.spill-why-fp {
  padding-bottom: 100px;
}

/* ========================================
   CUSTOMER PORTAL PAGE
======================================== */
.portal-page-intro {
  background: #fff;
  padding: 80px 0 30px;
}

.portal-feature-blocks {
  background: #fff;
}

.portal-feature {
  padding: 80px 0;
  border-top: 1px solid #e8e8e8;
}

.portal-feature:first-child {
  border-top: none;
}

.portal-feature.alt {
  background: #f6f6f6;
}

.portal-feature-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
}

.portal-feature-grid.reverse {
  grid-template-columns: 1fr 1.05fr;
}

.portal-feature-content h2 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.15;
  color: #111;
}

.portal-feature-content p {
  margin: 0 0 20px;
  max-width: 620px;
  font-size: 1.04rem;
  line-height: 1.75;
  color: #444;
}

.portal-feature-content ul {
  margin: 0;
  padding-left: 20px;
}

.portal-feature-content li {
  margin: 10px 0;
  line-height: 1.55;
  color: #333;
}

.portal-feature-kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fp-yellow);
}

.portal-feature-media {
  position: relative;
}

.portal-page-slider {
  min-height: 420px;
}

.portal-why-fp {
  padding-bottom: 100px;
}

/* ========================================
   VENDING PAGE
======================================== */
.vending-page-intro {
  background: #fff;
  padding: 80px 0 30px;
}

.vending-feature-blocks {
  background: #fff;
}

.vending-feature {
  padding: 80px 0;
  border-top: 1px solid #e8e8e8;
}

.vending-feature:first-child {
  border-top: none;
}

.vending-feature.alt {
  background: #f6f6f6;
}

.vending-feature-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
}

.vending-feature-grid.reverse {
  grid-template-columns: 1fr 1.05fr;
}

.vending-feature-content h2 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.15;
  color: #111;
}

.vending-feature-content p {
  margin: 0 0 20px;
  max-width: 620px;
  font-size: 1.04rem;
  line-height: 1.75;
  color: #444;
}

.vending-feature-content ul {
  margin: 0;
  padding-left: 20px;
}

.vending-feature-content li {
  margin: 10px 0;
  line-height: 1.55;
  color: #333;
}

.vending-feature-kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fp-yellow);
}

.vending-feature-media {
  position: relative;
}

.vending-page-slider {
  min-height: 420px;
}

.vending-benefits {
  padding-bottom: 100px;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 900px) {
  .hero {
    padding: 50px 0;
  }

  .hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-logo {
    height: 120px;
    margin-bottom: 15px;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

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

  .solution-card {
    grid-template-rows: auto auto 300px auto 60px;
  }

  .solution-image-rotator {
    height: 100%;
    margin-left: -28px;
    margin-right: -28px;
  }

  .solution-title,
  .solution-desc,
  .solution-lists {
    min-height: unset;
  }

  .solution-lists {
    overflow: visible;
  }

  .value-bar {
    padding: 22px;
    margin-bottom: 18px;
  }

  .value-bar h2 {
    font-size: 1.45rem;
  }

  .value-bar p {
    font-size: 1rem;
    line-height: 1.45;
  }

  .award-grid,
  .why-fp-grid,
  .why-fp-grid.reverse,
  .contact-grid,
  .solution-feature-grid,
  .solution-feature-grid.reverse,
  .spill-feature-grid,
  .spill-feature-grid.reverse,
  .portal-feature-grid,
  .portal-feature-grid.reverse,
  .vending-feature-grid,
  .vending-feature-grid.reverse,
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .award-grid {
    text-align: center;
  }

  .award-image-slider {
    min-height: 280px;
    height: auto;
  }

  .award-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .why-fp {
    padding: 70px 0;
  }

  .why-fp-block {
    padding: 30px 0;
  }

  .site-footer .footer-grid {
    gap: 40px;
    padding: 50px 0 40px;
  }

  .footer-brand {
    text-align: left;
  }

  .footer-logo {
    margin-bottom: 14px;
  }

  .footer-brand > p {
    margin-left: 0;
    margin-right: 0;
  }

  .contact-card {
    padding: 28px;
  }

  .contact-feature-card {
    grid-template-columns: 1fr;
  }

  .contact-feature-image img {
    max-height: 360px;
  }

  .solution-page-slider,
  .spill-page-slider,
  .portal-page-slider,
  .vending-page-slider {
    min-height: 340px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 42px 0;
  }

  .hero-logo {
    height: 105px;
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: 1.7rem;
    line-height: 1.12;
    margin-bottom: 14px;
  }

  .hero-sub {
    font-size: 1rem;
    line-height: 1.45;
    margin-bottom: 20px;
  }

  .hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
  }

  .hero-cta .btn {
    margin-right: 0;
    width: 100%;
    max-width: 260px;
    padding: 14px 20px;
    text-align: center;
    box-sizing: border-box;
  }

  .main-nav {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .main-nav a {
    margin-right: 0;
    padding: 8px 10px;
    font-size: 0.9rem;
    line-height: 1.2;
    text-align: center;
    box-sizing: border-box;
  }

  .solutions {
    padding: 50px 0;
  }

  .solutions-grid {
    gap: 36px;
  }

  .solution-card {
    padding: 24px;
    gap: 18px;
    grid-template-rows: auto auto 380px auto auto;
  }

  .solution-title {
    font-size: 1.2rem;
    line-height: 1.25;
  }

  .solution-desc {
    line-height: 1.5;
  }

  .solution-lists {
    padding-top: 4px;
  }

  .solution-card ul {
    margin: 0 0 16px;
    padding-left: 20px;
  }

  .solution-card ul ul {
    margin-top: 10px;
    padding-left: 18px;
  }

  .solution-card li {
    margin: 8px 0;
    line-height: 1.45;
  }

  .solution-image-rotator {
    margin-left: -24px;
    margin-right: -24px;
  }

  .btn-card {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .solutions-page-intro,
  .solution-feature,
  .spill-page-intro,
  .spill-feature,
  .portal-page-intro,
  .portal-feature,
  .vending-page-intro,
  .vending-feature,
  .why-fp {
    padding-left: 0;
    padding-right: 0;
  }

  .solution-page-slider,
  .spill-page-slider,
  .portal-page-slider,
  .vending-page-slider {
    min-height: 280px;
  }

  .solution-feature-content h2,
  .spill-feature-content h2,
  .portal-feature-content h2,
  .vending-feature-content h2 {
    font-size: 1.9rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-sub {
    font-size: 0.92rem;
  }

  .hero-cta .btn {
    max-width: 230px;
    padding: 13px 16px;
    font-size: 0.92rem;
  }

  .main-nav {
    max-width: 300px;
    gap: 8px;
  }

  .main-nav a {
    font-size: 0.82rem;
    padding: 8px 6px;
  }

  .solution-card {
    padding: 20px;
    gap: 16px;
    grid-template-rows: auto auto 360px auto auto;
  }

  .solution-title {
    font-size: 1.1rem;
  }

  .solution-image-rotator {
    margin-left: -20px;
    margin-right: -20px;
  }
}