/* ==========================================================================
   OutSouth — landing pages (Book a Meeting)
   Uses the site's brand tokens: Questrial headings, Roboto body,
   navy #001D4F, accent #0A58A0, the gradient band imagery.
   ========================================================================== */

.lp-main { width: 100%; }

.lp-section {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 24px;
  box-sizing: border-box;
  text-align: center;
}

.lp-inner { max-width: 1080px; margin: 0 auto; width: 100%; }

/* ---------- palettes ---------- */
.lp-dark {
  background-color: #001D4F;
  background-image: linear-gradient(rgba(0, 29, 79, .62), rgba(0, 29, 79, .62)),
    url("../images/codioful-formerly-gradienta-OzfD79w8ptA-unsplash-scaled.jpg");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  color: #ffffff;
}
.lp-light { background-color: #ffffff; color: #4a4d55; }
.lp-grey { background-color: #f8f8f8; color: #4a4d55; }

/* ---------- type ---------- */
.lp-section h1,
.lp-section h2 {
  font-family: "Questrial", Helvetica, Arial, Verdana, sans-serif;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 22px;
}
.lp-section h1 { font-size: clamp(34px, 5vw, 58px); }
.lp-section h2 { font-size: clamp(28px, 3.6vw, 42px); }
.lp-dark h1, .lp-dark h2, .lp-dark h3 { color: #ffffff; }
.lp-light h2, .lp-grey h2 { color: #001D4F; }

.lp-kicker {
  font-family: "Roboto", Helvetica, Arial, Verdana, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: #0A58A0;
}
.lp-dark .lp-kicker { color: #58b8e8; }

.lp-sub {
  font-family: "Roboto", Helvetica, Arial, Verdana, sans-serif;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.65;
  max-width: 780px;
  margin: 0 auto 34px;
}
.lp-dark .lp-sub { color: rgba(255, 255, 255, .88); }

.lp-section p { font-size: 15px; line-height: 1.6; }

/* compact variant for in-page bands (e.g. the contact booking section) */
.lp-section.lp-compact { min-height: 0; padding: 96px 24px; }

/* ---------- CTA button (matches the site's pill buttons) ---------- */
.lp-btn {
  display: inline-block;
  font-family: "Roboto", Helvetica, Arial, Verdana, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff !important;
  background-color: #0A58A0;
  border-radius: 100px;
  padding: 16px 42px;
  text-decoration: none;
  transition: background-color .25s ease, transform .25s ease;
  margin-top: 10px;
}
.lp-btn:hover { background-color: #001D4F; transform: translateY(-2px); color: #ffffff; }
.lp-dark .lp-btn { background-color: #0A58A0; }
.lp-dark .lp-btn:hover { background-color: #ffffff; color: #001D4F !important; }

.lp-btn-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.lp-btn-ghost { background: transparent; border: 2px solid rgba(255, 255, 255, .6); }
.lp-btn-ghost:hover { background: #ffffff; color: #001D4F !important; border-color: #ffffff; }

/* ---------- card grids ---------- */
.lp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin: 40px 0 42px;
  text-align: left;
}
.lp-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: 0 10px 30px rgba(0, 29, 79, .08);
}
.lp-dark .lp-card {
  background: rgba(255, 255, 255, .06);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, .14);
}
.lp-card h3 {
  font-family: "Questrial", Helvetica, Arial, Verdana, sans-serif;
  font-weight: 400;
  font-size: 21px;
  color: #001D4F;
  margin: 0 0 10px;
}
.lp-dark .lp-card h3 { color: #ffffff; }
.lp-card p { margin: 0; color: #5a5e66; }
.lp-dark .lp-card p { color: rgba(255, 255, 255, .82); }
.lp-card .lp-num {
  display: inline-block;
  font-family: "Questrial", sans-serif;
  font-size: 15px;
  color: #ffffff;
  background: #0A58A0;
  width: 34px; height: 34px; line-height: 34px;
  border-radius: 50%;
  text-align: center;
  margin-bottom: 14px;
}

/* ---------- audience pills ---------- */
.lp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 36px auto 40px;
  max-width: 880px;
}
.lp-pill {
  font-family: "Roboto", Helvetica, Arial, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: #001D4F;
  background: #f2f7fc;
  border: 1.5px solid rgba(10, 88, 160, .28);
  border-radius: 100px;
  padding: 14px 28px;
  box-shadow: 0 6px 18px rgba(0, 29, 79, .05);
}

/* ---------- even 3 + 3 card grid ---------- */
.lp-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .lp-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .lp-grid-3 { grid-template-columns: 1fr; } }

.lp-card .lp-tick {
  display: inline-block;
  width: 34px; height: 34px;
  border-radius: 50%;
  margin-bottom: 14px;
  background: #0A58A0 url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M6.5 11.2 3.3 8l1.1-1.1 2.1 2.1 5-5L12.6 5z'/%3E%3C/svg%3E") center/18px no-repeat;
}

/* ---------- section background variants (same imagery as the services pages) ---------- */
.lp-where-talent {
  background-image: linear-gradient(rgba(0, 29, 79, .74), rgba(0, 29, 79, .74)),
    url("../images/dominik-lange-Lej_oqHljbk-unsplash-scaled.jpg");
  background-position: center;
  background-size: cover;
}
.lp-where-accounting {
  background-image: linear-gradient(rgba(0, 29, 79, .74), rgba(0, 29, 79, .74)),
    url("../images/fabrizio-conti-nqCoYoPG4R0-unsplash-scaled.jpg");
  background-position: center;
  background-size: cover;
}

/* ---------- founder trust block ---------- */
.lp-founder {
  width: 172px; height: 172px;
  border-radius: 34px;
  object-fit: cover;
  display: block;
  margin: 0 auto 16px;
  box-shadow: 0 14px 34px rgba(0, 29, 79, .18);
}
.lp-founder-name {
  font-family: "Roboto", Helvetica, Arial, Verdana, sans-serif;
  font-weight: 700;
  color: #001D4F;
  font-size: 15px;
}
.lp-founder-role {
  color: #0A58A0;
  font-size: 13.5px;
  margin-bottom: 6px;
}

/* ---------- checklist ---------- */
.lp-check {
  list-style: none;
  padding: 0;
  margin: 36px auto 40px;
  max-width: 760px;
  text-align: left;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px 34px;
}
.lp-check li {
  position: relative;
  padding-left: 34px;
  font-size: 16px;
  line-height: 1.55;
}
.lp-check li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #0A58A0 url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M6.5 11.2 3.3 8l1.1-1.1 2.1 2.1 5-5L12.6 5z'/%3E%3C/svg%3E") center/14px no-repeat;
}
.lp-dark .lp-check li { color: rgba(255, 255, 255, .9); }

/* ---------- stat strip ---------- */
.lp-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin: 40px 0 42px;
}
.lp-stat .lp-stat-num {
  font-family: "Questrial", sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  color: #0A58A0;
  line-height: 1.1;
}
.lp-dark .lp-stat .lp-stat-num { color: #58b8e8; }
.lp-stat .lp-stat-label { font-size: 14px; margin-top: 6px; }

/* ---------- testimonials ---------- */
.lp-quote {
  font-style: normal;
  text-align: left;
}
.lp-quote p { font-size: 15.5px; line-height: 1.7; color: #4a4d55; margin: 0 0 16px; }
.lp-quote .lp-quote-name { font-weight: 700; color: #001D4F; font-size: 14px; }
.lp-quote .lp-quote-role { color: #8b8d94; font-size: 13px; }
.lp-quote::before {
  content: "\201C";
  display: block;
  font-family: "Questrial", sans-serif;
  font-size: 54px;
  line-height: .6;
  color: #0A58A0;
  margin-bottom: 16px;
}

/* keep the landing content clear of the theme content paddings */
.lp-page .wf-container-main,
.lp-page .content { padding: 0 !important; margin: 0 !important; max-width: 100% !important; float: none !important; width: 100% !important; }
.lp-page .wf-wrap { max-width: 100% !important; padding: 0 !important; width: 100% !important; }

@media (max-width: 640px) {
  .lp-section { padding: 72px 18px; }
  .lp-grid, .lp-check { text-align: left; }
}
