/* ==========================================================================
   We Pass Out Flyers — web stylesheet
   Fonts: Lato (primary) + Play (secondary) — self hosted
   ========================================================================== */

/* ---------- Lato ---------- */
@font-face {
  font-family: "Lato";
  src: url("fonts/lato-100.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/lato-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/lato-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/lato-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/lato-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/lato-400-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("fonts/lato-700-italic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ---------- Play ---------- */
@font-face {
  font-family: "Play";
  src: url("fonts/play-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Play";
  src: url("fonts/play-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   Brand tokens
   ========================================================================== */
:root {
  --wpof-navy: #003057;
  --wpof-navy-dark: #001b33;
  --wpof-blue: #00629b;
  --wpof-cyan: #0099d8;
  --wpof-orange: #f66200;
  --wpof-orange-dark: #f23c04;
  --wpof-magenta: #cc3366;
  --wpof-text: #333333;
  --wpof-text-muted: #7a7a7a;
  --wpof-heading: #3d3d3d;
  --wpof-footer-label: #acd1ff;
  --wpof-bg-light: #f5f5f5;
  --wpof-bg-lighter: #fafafa;
  --wpof-bg-gray: #efefef;
  --wpof-font: "Lato", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --wpof-font-alt: "Play", "Lato", Arial, sans-serif;
}

/* ==========================================================================
   Base typography
   ========================================================================== */
html,
body {
  height: 100%;
}
body {
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: var(--wpof-font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--wpof-text);
  background-color: #ffffff;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
p,
.p {
  font-weight: normal;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--wpof-font);
  color: var(--wpof-navy);
  line-height: 1.3;
}
h1 b,
h1.b,
h1.font-bold,
h2 b,
h2.b,
h2.font-bold,
h3 b,
h3.b,
h3.font-bold,
h4 b,
h4.b,
h4.font-bold,
h5 b,
h5.b,
h5.font-bold,
h6 b,
h6.b,
h6.font-bold {
  font-family: var(--wpof-font);
  font-weight: 700;
}
h1,
.h1 {
  font-size: 52px;
}
h2,
.h2 {
  font-size: 44px;
}
h3,
.h3 {
  font-size: 30px;
}
h4,
.h4 {
  font-size: 24px;
}
h5,
.h5 {
  font-size: 20px;
}
h6,
.h6 {
  font-size: 18px;
}
p,
.p {
  font-size: 17px;
}
small,
.small {
  font-size: 13px;
}

.font-play {
  font-family: var(--wpof-font-alt) !important;
}
.font-extra-light {
  font-family: var(--wpof-font);
  font-weight: 100;
}
.font-light {
  font-family: var(--wpof-font);
  font-weight: 300;
}
.font-normal {
  font-family: var(--wpof-font);
  font-weight: 400;
}
.font-medium {
  font-family: var(--wpof-font);
  font-weight: 500;
}
.font-semi-bold {
  font-family: var(--wpof-font);
  font-weight: 600;
}
b,
strong,
.font-bold {
  font-family: var(--wpof-font);
  font-weight: 700;
}
.font-extra-bold {
  font-family: var(--wpof-font);
  font-weight: 900;
}

/* ==========================================================================
   Brand helpers
   ========================================================================== */
.text-navy {
  color: var(--wpof-navy) !important;
}
.text-blue-brand {
  color: var(--wpof-blue) !important;
}
.text-cyan-brand {
  color: var(--wpof-cyan) !important;
}
.text-orange-brand {
  color: var(--wpof-orange) !important;
}
.bg-navy {
  background-color: var(--wpof-navy) !important;
}
.bg-navy-dark {
  background-color: var(--wpof-navy-dark) !important;
}
.bg-blue-brand {
  background-color: var(--wpof-blue) !important;
}
.bg-brand-light {
  background-color: var(--wpof-bg-light) !important;
}
.bg-brand-lighter {
  background-color: var(--wpof-bg-lighter) !important;
}
.bg-brand-gray {
  background-color: var(--wpof-bg-gray) !important;
}

.btn-brand {
  background-color: var(--wpof-orange);
  border: 0;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 19px;
  border-radius: 8px;
  padding: 11px 20px;
  display: inline-block;
  transition: background-color 0.2s ease-in-out;
}
.btn-brand:hover,
.btn-brand:focus {
  background-color: var(--wpof-orange-dark);
  color: #ffffff !important;
}
.btn-brand-sm {
  font-size: 16px;
  padding: 10px 18px;
}
.btn-brand-square {
  border-radius: 3px;
  font-size: 15px;
  font-weight: 400;
  padding: 12px 24px;
}
.link-brand {
  color: var(--wpof-blue) !important;
  font-weight: 600;
  font-size: 18px;
}
.link-brand:hover {
  color: var(--wpof-orange) !important;
}

.text-overflow-line-1,
.text-overflow-line-2,
.text-overflow-line-3,
.text-overflow-line-4,
.text-overflow-line-5,
.text-overflow-line-6 {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.text-overflow-line-1 {
  -webkit-line-clamp: 1;
}
.text-overflow-line-2 {
  -webkit-line-clamp: 2;
}
.text-overflow-line-3 {
  -webkit-line-clamp: 3;
}
.text-overflow-line-4 {
  -webkit-line-clamp: 4;
}
.text-overflow-line-5 {
  -webkit-line-clamp: 5;
}
.text-overflow-line-6 {
  -webkit-line-clamp: 6;
}
.btn,
a,
button,
input[type="submit"],
input[type="button"] {
  cursor: pointer !important;
  text-decoration: none !important;
}
.form-control {
  box-shadow: 0px 0px 0px 0px !important;
  height: auto;
}
table tr td {
  vertical-align: middle !important;
}

.alert-black,
.bg-black {
  background: #202020;
}
.alert-light-gray,
.bg-light-gray {
  background: #eeeeee;
}
.alert-gray,
.bg-gray {
  background: #d6d6d6;
}
.text-dark-gray {
  color: #666666;
}
.text-gray {
  color: #b2b2b2;
}

.text-green {
  color: #15bf78;
}
.text-orange {
  color: #ff771e;
}

.btn-outline-green {
  border-color: #15bf78;
  color: #15bf78;
}

.btn-outline-orange {
  border-color: #ff771e;
  color: #ff771e;
}

.bg-green,
.alert-green,
.btn-outline-green:hover,
.btn-green {
  background-color: #15bf78;
}
.btn-outline-green:hover,
.btn-green {
  color: #fff !important;
}
.btn-green:hover {
  background-color: #11a364;
}

.bg-orange,
.alert-orange,
.btn-outline-orange:hover,
.btn-orange {
  background-color: #ff771e;
}

.btn-outline-orange:hover,
.btn-orange {
  color: #fff !important;
}
.btn-orange:hover {
  background-color: #e06518;
}

.border-green {
  border-color: #15bf78;
}
.border-oragne {
  border-color: #ff771e;
}

.object-cover-center {
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  aspect-ratio: 16/9;
  overflow: hidden;
  width: 100%;
}

.white-space-nowrape {
  white-space: nowrap;
}
.white-space-normal {
  white-space: normal;
}

@media (min-width: 992px) {
}

@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 992px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 576px) {
}

/* ==========================================================================
   Layout container
   ========================================================================== */
.wpof-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.wpof-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  width: 100%;
}
.wpof-header-top {
  background-color: var(--wpof-navy);
  padding: 7px 30px;
  min-height: 81px;
  display: flex;
  align-items: center;
}
.wpof-header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
}
.wpof-logo img {
  width: 140px;
  height: auto;
  display: block;
}
.wpof-header-top-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wpof-header-top-right .btn-brand {
  padding: 10px 18px;
  font-size: 16px;
  border-radius: 8px;
}

.wpof-nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  width: 44px;
  height: 40px;
}
.wpof-nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px auto;
  background-color: #ffffff;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.wpof-nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.wpof-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.wpof-nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.wpof-header-nav {
  background-color: var(--wpof-bg-gray);
}
.wpof-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wpof-menu > li > a {
  display: block;
  padding: 13px 20px;
  font-family: var(--wpof-font);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.58;
  color: var(--wpof-text);
  transition: color 0.2s ease;
}
.wpof-menu > li > a:hover,
.wpof-menu > li > a:focus,
.wpof-menu > li.active > a {
  color: var(--wpof-orange);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.wpof-footer {
  background-color: var(--wpof-navy-dark);
  color: #ffffff;
  padding: 45px 0 0;
}
.wpof-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}
.wpof-footer-brand img {
  width: 200px;
  height: auto;
}
.wpof-footer-col h2 {
  font-size: 18px;
  font-weight: 400;
  color: var(--wpof-footer-label);
  margin: 0 0 12px;
  letter-spacing: 0.5px;
}
.wpof-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wpof-footer-col li {
  margin-bottom: 8px;
}
.wpof-footer-col a {
  color: #ffffff;
  font-size: 16px;
  transition: color 0.2s ease;
}
.wpof-footer-col a:hover {
  color: var(--wpof-orange);
}
.wpof-footer-bottom {
  margin-top: 35px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   Header / Footer responsive
   ========================================================================== */
@media screen and (max-width: 991px) {
  .wpof-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .wpof-header-top {
    padding: 7px 15px;
  }
  .wpof-nav-toggle {
    display: block;
  }
  .wpof-header-nav {
    display: none;
  }
  .wpof-header-nav.is-open {
    display: block;
  }
  .wpof-menu {
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0;
  }
  .wpof-menu > li > a {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
}
@media screen and (max-width: 576px) {
  .wpof-footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .wpof-header-top-right .btn-brand {
    font-size: 14px;
    padding: 9px 14px;
  }
}

/* ==========================================================================
   HOME PAGE
   ========================================================================== */

/* ---------- shared section helpers ---------- */
.wpof-section {
  padding: 40px 0;
}
.wpof-section-white {
  background-color: #ffffff;
}
.wpof-section-light {
  background-color: var(--wpof-bg-light);
  padding: 60px 0;
}
.wpof-section-lighter {
  background-color: var(--wpof-bg-lighter);
  padding: 50px 0 60px;
}
.wpof-container-wide {
  max-width: 1170px;
}
.wpof-container-narrow {
  max-width: 784px;
}
.wpof-container-slim {
  max-width: 930px;
}

.wpof-title {
  font-size: 44px;
  font-weight: 400;
  line-height: 44px;
  color: var(--wpof-navy);
  text-align: center;
  margin: 0 0 20px;
}
.wpof-title-left {
  text-align: left;
}
.wpof-title-white {
  color: #ffffff;
}
.wpof-title-blue {
  color: var(--wpof-blue);
}
.wpof-title-light {
  font-weight: 300;
}
.wpof-subtitle {
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  color: var(--wpof-text);
  text-align: center;
  margin: 35px 0 15px;
}
.wpof-subtitle-white {
  color: #ffffff;
}
.wpof-lead {
  font-size: 22px;
  font-weight: 300;
  line-height: 33px;
  color: var(--wpof-text);
  text-align: center;
  margin: 0;
}
.wpof-lead-sm {
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  color: var(--wpof-text);
  text-align: center;
  margin: 0;
}
.wpof-text {
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
  color: var(--wpof-text);
}
.wpof-text-center {
  text-align: center;
}
.wpof-text-white {
  color: #ffffff;
}
.wpof-section-head {
  margin-bottom: 45px;
}
.wpof-section-foot {
  text-align: center;
  margin-top: 50px;
}
.wpof-mt-20 {
  margin-top: 20px;
}

/* ---------- hero ---------- */
.wpof-hero {
  background-image: url("../media/images/cover-9C.webp");
  background-size: cover;
  background-position: 50% 0;
  background-repeat: no-repeat;
  padding: 150px 0;
}
.wpof-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.wpof-hero-yes {
  font-size: 52px;
  font-weight: 700;
  line-height: 52px;
  color: var(--wpof-cyan);
  margin: 0 0 10px;
}
.wpof-hero-tagline {
  font-size: 22px;
  font-weight: 700;
  line-height: 22px;
  color: #ffffff;
  margin: 0 0 20px;
}
.wpof-check-list {
  list-style: none;
  margin: 0 0 25px;
  padding: 0;
}
.wpof-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
  color: #ffffff;
  margin-bottom: 6px;
}
.wpof-check-list li i {
  color: #ffffff;
  font-size: 16px;
  line-height: 27px;
}

/* ---------- hero responsive ----------
   the desktop artwork has its headline baked into the image on the left,
   so from tablet down we swap to the plain version (same as the live site)
   otherwise our own text lands on top of the printed text.            */
@media screen and (max-width: 1024px) {
  .wpof-hero,
  .wpof-hero.wpof-hero-about {
    background-image: url("../media/images/cover-10C.jpg");
    background-position: center center;
  }
  .wpof-hero {
    padding: 90px 0;
  }
  .wpof-hero-grid {
    grid-template-columns: 1fr;
  }
  .wpof-hero-blank {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .wpof-hero,
  .wpof-hero.wpof-hero-about {
    padding: 45px 15px;
  }
}

/* ---------- blue divider ---------- */
.wpof-blue-bar {
  background-color: var(--wpof-blue);
  height: 41px;
}

/* ---------- icon cards (what we do / support) ---------- */
.wpof-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.wpof-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.wpof-icon-card {
  text-align: center;
  padding: 10px;
}
.wpof-icon-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
}
.wpof-icon-card h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  color: var(--wpof-text);
  margin: 0 0 20px;
}
.wpof-icon-card h3.wpof-card-title-bold {
  font-weight: 600;
}
.wpof-icon-card p {
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  color: var(--wpof-text);
  margin: 0;
}

/* ---------- split (map) ---------- */
.wpof-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.wpof-split-media img {
  max-width: 100%;
  height: auto;
}
.wpof-split-content .wpof-text {
  margin: 0 0 20px;
}
.wpof-dot-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.wpof-dot-list li {
  position: relative;
  padding-left: 22px;
  font-size: 22px;
  font-weight: 300;
  line-height: 33px;
  color: var(--wpof-text);
}
.wpof-dot-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--wpof-text);
}

/* ---------- how it works steps ---------- */
.wpof-step {
  text-align: center;
}
.wpof-step-icon {
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.wpof-step-icon img {
  max-width: 100%;
  height: auto;
}
.wpof-step h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  color: var(--wpof-blue);
  min-height: 48px;
  margin: 0 0 20px;
}
.wpof-step-list {
  list-style: none;
  margin: 0;
  padding: 0 20px;
  text-align: left;
}
.wpof-step-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
  color: var(--wpof-text);
  margin-bottom: 0;
}
.wpof-step-list li i {
  flex: 0 0 auto;
  font-size: 22px;
  line-height: 27px;
  color: var(--wpof-cyan);
}

/* ---------- flyers find buyers ---------- */
.wpof-awards {
  background-image: url("../media/images/7117.svg");
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  padding: 50px 0 20px;
}
.wpof-awards-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 10px auto 0;
}

/* ---------- grow slider ---------- */
.wpof-slider {
  margin-top: 10px;
  margin-bottom: 50px;
}
.wpof-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  overflow: hidden;
}
.wpof-slide-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.wpof-slide-body {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: 560px;
  padding: 0 20px;
  text-align: left;
}
.wpof-slide-title {
  display: block;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 12px;
}
.wpof-slide-text {
  display: block;
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  color: #ffffff;
  margin-bottom: 20px;
}
.wpof-slider .carousel-indicators {
  margin-bottom: 12px;
}
.wpof-slider .carousel-control-prev,
.wpof-slider .carousel-control-next {
  width: 8%;
}

/* ---------- why choose us ---------- */
.wpof-why {
  background-color: var(--wpof-navy);
  background-image: url("../media/images/grid.png");
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  padding: 50px 0 60px;
}
.wpof-why .wpof-title {
  color: #f6f9fa;
  margin-bottom: 30px;
}
.wpof-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}
.wpof-why-media img {
  max-width: 100%;
  height: auto;
}
.wpof-quote {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.35;
  color: #ffffff;
  margin: 0 0 20px;
}
.wpof-quote-name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #ffffff;
  margin: 0 0 6px;
}
.wpof-quote-role {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  color: #ffffff;
  margin: 0 0 22px;
}

/* ---------- get started form ---------- */
.wpof-form {
  max-width: 1140px;
  margin: 0 auto;
}
.wpof-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 14px;
}
.wpof-form-group-full {
  grid-column: 1 / -1;
}
.wpof-form-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.wpof-form-group label {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: var(--wpof-text);
  margin-bottom: 6px;
}
.wpof-form .form-control {
  width: 100%;
  padding: 11px 14px;
  font-size: 16px;
  font-family: var(--wpof-font);
  color: var(--wpof-text);
  border: 1px solid #d5d8dc;
  border-radius: 3px;
  background-color: #ffffff;
}
.wpof-form .form-control:focus {
  border-color: var(--wpof-blue);
  outline: 0;
}
.wpof-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  padding-top: 4px;
}
.wpof-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 16px;
  cursor: pointer;
}
.wpof-radio input {
  width: 16px;
  height: 16px;
  accent-color: var(--wpof-orange);
}
.wpof-form-submit {
  text-align: center;
  margin-top: 25px;
}
.wpof-form-submit .btn-brand {
  padding: 8px 25px;
}

/* ==========================================================================
   HOME PAGE responsive
   ========================================================================== */
@media screen and (max-width: 1200px) {
  .wpof-title {
    font-size: 38px;
    line-height: 42px;
  }
}
@media screen and (max-width: 991px) {
  .wpof-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .wpof-split,
  .wpof-why-grid {
    grid-template-columns: 1fr;
  }
  .wpof-title-left {
    text-align: center;
  }
  .wpof-split-content {
    text-align: center;
  }
  .wpof-dot-list {
    display: inline-block;
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .wpof-grid-3 {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .wpof-title {
    font-size: 32px;
    line-height: 38px;
  }
  .wpof-lead {
    font-size: 19px;
    line-height: 29px;
  }
  .wpof-slide {
    height: 340px;
  }
  .wpof-slide-title {
    font-size: 26px;
  }
  .wpof-form-row {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 576px) {
  .wpof-grid-4 {
    grid-template-columns: 1fr;
  }
  .wpof-hero-yes {
    font-size: 42px;
    line-height: 42px;
  }
  .wpof-quote {
    font-size: 20px;
  }
}

/* ---------- what we do : service list ---------- */
.wpof-service-list-wrap {
  text-align: center;
}
.wpof-service-list {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.wpof-service-list li {
  font-size: 22px;
  font-weight: 700;
  line-height: 33px;
  color: var(--wpof-text);
}
@media screen and (max-width: 768px) {
  .wpof-service-list li {
    font-size: 19px;
    line-height: 29px;
  }
}

/* ==========================================================================
   What We Do : service list (v2) + card alignment fix
   ========================================================================== */
.wpof-service-list {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 55px;
  row-gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.wpof-service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--wpof-text);
}
.wpof-service-tick {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--wpof-cyan);
  color: #ffffff;
  font-size: 12px;
}

/* icon cards : keep every card body on the same baseline even when the
   title runs onto a second line */
.wpof-icon-card h3 {
  min-height: 48px;
}

@media screen and (max-width: 768px) {
  .wpof-service-list {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 12px;
  }
  .wpof-service-list li {
    font-size: 17px;
  }
  .wpof-icon-card h3 {
    min-height: 0;
  }
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.wpof-breadcrumb {
  background-color: var(--wpof-bg-gray);
  padding: 12px 0;
}
.wpof-breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  font-size: 15px;
  color: var(--wpof-text-muted);
}
.wpof-breadcrumb li + li::before {
  content: "\203A";
  margin-right: 8px;
  color: var(--wpof-text-muted);
}
.wpof-breadcrumb a {
  color: var(--wpof-blue);
}
.wpof-breadcrumb a:hover {
  color: var(--wpof-orange);
}
.wpof-breadcrumb li[aria-current] {
  color: var(--wpof-text);
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.wpof-cta-band {
  padding: 50px 0;
}

/* single column variant of the tick list */
.wpof-service-list-one-col {
  grid-template-columns: 1fr;
}

/* dot list bullets follow the brand cyan, same as the live site */
.wpof-dot-list li::before {
  background-color: var(--wpof-cyan);
  width: 10px;
  height: 10px;
  top: 12px;
}

/* ==========================================================================
   About us
   ========================================================================== */
.wpof-hero-about {
  background-image: url("../media/images/cover-two-small.jpg");
}
.wpof-hero-about .wpof-check-list li {
  align-items: flex-start;
  margin-bottom: 0;
}
.wpof-hero-about .wpof-check-list li i {
  margin-top: 5px;
}

/* ==========================================================================
   Sales / start your campaign funnel
   ========================================================================== */
.wpof-funnel {
  padding: 55px 0;
}
.wpof-funnel-title {
  font-family: var(--wpof-font-alt);
  font-size: 60px;
  font-weight: 100;
  line-height: 1.15;
  color: var(--wpof-navy);
  text-align: center;
  margin: 0 0 15px;
}
.wpof-funnel-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 35px 35px 30px;
  box-shadow: 0 2px 18px rgba(0, 48, 87, 0.08);
}
.wpof-funnel-card .form-control {
  height: 48px;
}
.wpof-funnel-card select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%2300629b' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 38px;
}
.wpof-form-submit .btn-brand-funnel,
.btn-brand-funnel {
  background-color: var(--wpof-orange-dark);
  border-radius: 0;
  padding: 18px 55px;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.5px;
}
.btn-brand-funnel:hover {
  background-color: var(--wpof-orange);
}
.wpof-form-consent {
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  color: var(--wpof-text-muted);
  text-align: center;
  max-width: 720px;
  margin: 18px auto 0;
}

@media screen and (max-width: 768px) {
  .wpof-funnel-title {
    font-size: 38px;
  }
  .wpof-funnel-card {
    padding: 22px 18px 20px;
  }
  .wpof-form-submit .btn-brand-funnel,
  .btn-brand-funnel {
    padding: 15px 32px;
    font-size: 16px;
  }
}

/* ==========================================================================
   Blog listing
   ========================================================================== */
.wpof-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.wpof-blog-card {
  background-color: #ffffff;
  border: 1px solid #e7eaee;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.wpof-blog-card:hover {
  box-shadow: 0 6px 22px rgba(0, 48, 87, 0.1);
  transform: translateY(-2px);
}
.wpof-blog-card-media {
  display: block;
  aspect-ratio: 5 / 3;
  overflow: hidden;
  background-color: var(--wpof-bg-light);
}
.wpof-blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.wpof-blog-card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.wpof-blog-date {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--wpof-text-muted);
  margin-bottom: 8px;
}
.wpof-blog-card-title {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 10px;
}
.wpof-blog-card-title a {
  color: var(--wpof-navy);
}
.wpof-blog-card-title a:hover {
  color: var(--wpof-orange);
}
.wpof-blog-card-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 25px;
  color: var(--wpof-text);
  margin: 0 0 16px;
}
.wpof-blog-card-body .link-brand {
  margin-top: auto;
  font-size: 16px;
}
.wpof-blog-pagination {
  margin-top: 35px;
  display: flex;
  justify-content: center;
}
.wpof-blog-pagination .pagination {
  margin: 0;
}
.wpof-blog-empty {
  text-align: center;
  padding: 30px 0 10px;
}
.wpof-blog-empty .wpof-text {
  margin-bottom: 20px;
}

/* ==========================================================================
   Blog post
   ========================================================================== */
.wpof-post-title {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--wpof-navy);
  margin: 0 0 12px;
}
.wpof-post-meta {
  font-size: 15px;
  color: var(--wpof-text-muted);
  margin-bottom: 22px;
}
.wpof-post-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 26px;
}
.wpof-post-lead {
  font-size: 20px;
  font-weight: 300;
  line-height: 31px;
  color: var(--wpof-text);
  padding-left: 18px;
  border-left: 4px solid var(--wpof-cyan);
  margin: 0 0 26px;
}
.wpof-post-body {
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
  color: var(--wpof-text);
}
.wpof-post-body h1,
.wpof-post-body h2,
.wpof-post-body h3,
.wpof-post-body h4 {
  color: var(--wpof-navy);
  margin: 30px 0 12px;
  line-height: 1.3;
}
.wpof-post-body h2 {
  font-size: 30px;
}
.wpof-post-body h3 {
  font-size: 24px;
}
.wpof-post-body h4 {
  font-size: 20px;
}
.wpof-post-body p {
  margin: 0 0 18px;
}
.wpof-post-body ul,
.wpof-post-body ol {
  margin: 0 0 18px;
  padding-left: 22px;
}
.wpof-post-body li {
  margin-bottom: 8px;
}
.wpof-post-body a {
  color: var(--wpof-blue);
  text-decoration: underline !important;
}
.wpof-post-body a:hover {
  color: var(--wpof-orange);
}
.wpof-post-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.wpof-post-body blockquote {
  border-left: 4px solid var(--wpof-cyan);
  padding-left: 18px;
  margin: 0 0 18px;
  color: var(--wpof-text-muted);
}
.wpof-post-body table {
  width: 100%;
  margin-bottom: 18px;
}
.wpof-post-foot {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid #e7eaee;
}

@media screen and (max-width: 991px) {
  .wpof-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .wpof-blog-grid {
    grid-template-columns: 1fr;
  }
  .wpof-post-title {
    font-size: 30px;
  }
  .wpof-post-lead {
    font-size: 18px;
    line-height: 28px;
  }
  .wpof-post-body {
    font-size: 17px;
    line-height: 28px;
  }
}

/* ==========================================================================
   Form messages / validation
   ========================================================================== */
.wpof-form-alert {
  max-width: 1140px;
  margin: 0 auto 25px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 24px;
  border: 1px solid transparent;
}
.wpof-form-alert-success {
  background-color: #e8f6ee;
  border-color: #b7e3c9;
  color: #14683c;
}
.wpof-form-alert-error {
  background-color: #fdecec;
  border-color: #f6c4c4;
  color: #a02121;
}
.wpof-field-error {
  font-size: 13px;
  line-height: 19px;
  color: #d32f2f;
  margin-top: 5px;
}
.wpof-form-group .form-control.is-invalid,
.wpof-field-error + .form-control {
  border-color: #d32f2f;
}

/* honeypot : must stay reachable for bots but invisible to people */
.wpof-hp {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.wpof-funnel-card .wpof-form-alert {
  max-width: 100%;
}

/* ==========================================================================
   reCAPTCHA
   ========================================================================== */
.wpof-recaptcha {
  display: flex;
  justify-content: center;
  margin: 22px 0 4px;
}
.wpof-recaptcha .g-recaptcha {
  transform-origin: center;
}
@media screen and (max-width: 400px) {
  .wpof-recaptcha .g-recaptcha {
    transform: scale(0.87);
  }
}

/* reCAPTCHA v3 badge (bottom right) - keep it clear of the page edge */
/* reCAPTCHA v3 badge is hidden - Google allows this only when the
   "protected by reCAPTCHA" note is shown instead, see include/recaptcha.php */
.grecaptcha-badge {
  visibility: hidden;
}
.wpof-recaptcha-note {
  font-size: 13px;
  font-weight: 300;
  line-height: 20px;
  color: var(--wpof-text-muted);
  text-align: center;
  max-width: 720px;
  margin: 10px auto 0;
}
.wpof-recaptcha-note a {
  color: var(--wpof-blue);
  text-decoration: underline !important;
}
.wpof-recaptcha-note a:hover {
  color: var(--wpof-orange);
}

/* ==========================================================================
   404
   ========================================================================== */
.wpof-404 {
  text-align: center;
  padding: 70px 0 80px;
}
.wpof-404-code {
  font-family: var(--wpof-font-alt);
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  color: var(--wpof-cyan);
  margin-bottom: 10px;
}
.wpof-404 .wpof-title {
  margin-bottom: 14px;
}
.wpof-404-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 28px 0 30px;
}
.wpof-404-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  margin: 0 0 26px;
  padding: 0;
}
.wpof-404-list a {
  font-size: 17px;
  font-weight: 600;
  color: var(--wpof-blue);
}
.wpof-404-list a:hover {
  color: var(--wpof-orange);
}
.wpof-404-help {
  font-size: 16px;
  font-weight: 300;
  color: var(--wpof-text-muted);
  margin: 0;
}
.wpof-404-help a {
  color: var(--wpof-blue);
  font-weight: 600;
}
@media screen and (max-width: 576px) {
  .wpof-404-code {
    font-size: 64px;
  }
}
