/* VendiBean Dallas LP -- styles.css
   Brand palette locked from H1 wireframe approval (2026-06-02).
*/

:root {
  --lp-primary: #388186;       /* deep teal -- primary brand, CTAs */
  --lp-secondary: #00104B;     /* deep navy -- headlines, emphasis bg */
  --lp-accent: #C9A77A;        /* toasted cream -- eyebrows, line-art icons */
  --lp-neutral-dark: #00104B;  /* body text on cream */
  --lp-neutral-light: #F9F7ED; /* primary cream canvas */
  --lp-neutral-warm-white: #FBF8EE;   /* subtle warm-white -- for break sections */
  --lp-neutral-toasted: #F0E5CB;      /* deeper toasted cream -- for warmth-anchor sections */
  --lp-neutral-sage: #E5EBE9;         /* cool sage tint -- distinct break tone */
  --lp-cta: #388186;           /* teal pill */
  --lp-cta-hover: #2c6c70;
  --lp-white: #ffffff;
  --lp-card-bg: #ffffff;
  --lp-card-shadow: 0 6px 28px rgba(0, 16, 75, 0.08);
  --lp-border-radius-card: 16px;
  --lp-border-radius-pill: 999px;

  /* Type scale */
  --lp-font-heading: 'Inter Tight', 'GT America Extended', 'Inter', system-ui, -apple-system, sans-serif;
  --lp-font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--lp-font-body);
  color: var(--lp-neutral-dark);
  background: var(--lp-neutral-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; padding: 0; }

/* --- Section + Container --- */
.lp-section {
  padding: 96px 0;
  position: relative;
  scroll-margin-top: 100px;
}
.lp-section--dark {
  background: var(--lp-secondary);
  color: var(--lp-white);
}
.lp-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* --- Type utilities --- */
.lp-eyebrow {
  font-family: var(--lp-font-heading);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--lp-accent);
  margin: 0 0 16px 0;
}
.lp-eyebrow--center { text-align: center; }
.lp-heading {
  font-family: var(--lp-font-heading);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--lp-secondary);
  margin: 0 0 24px 0;
  text-wrap: balance;
}
.lp-heading--center { text-align: center; }
.lp-subhead {
  font-family: var(--lp-font-body);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--lp-secondary);
  opacity: 0.85;
  margin: 0 0 32px 0;
}
.lp-subhead--center { text-align: center; }

/* --- Card hover (shared across all white-surface cards) --- */
.lp-pain-card,
.lp-feature-card,
.lp-testimonial,
.lp-offer__item,
.lp-step-card,
.lp-service-area__contact {
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.lp-pain-card:hover,
.lp-feature-card:hover,
.lp-testimonial:hover,
.lp-offer__item:hover,
.lp-step-card:hover,
.lp-service-area__contact:hover {
  background: #FCF6E6;
  box-shadow: 0 16px 44px rgba(0, 16, 75, 0.14);
  transform: translateY(-2px);
}

/* --- Buttons --- */
.lp-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lp-cta);
  color: var(--lp-white);
  font-family: var(--lp-font-heading);
  font-weight: 600;
  font-size: 17px;
  padding: 18px 32px;
  border-radius: var(--lp-border-radius-pill);
  transition: background 0.18s ease, transform 0.18s ease;
  text-align: center;
  line-height: 1;
}
.lp-cta:hover { background: var(--lp-cta-hover); transform: translateY(-1px); }
.lp-cta--large { padding: 22px 40px; font-size: 19px; }
.lp-cta__arrow { display: inline-block; transition: transform 0.2s ease; }
.lp-cta:hover .lp-cta__arrow { transform: translateX(3px); }
.lp-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--lp-secondary);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--lp-accent);
}

/* ============================================================ */
/* Section 0 + 1 -- Pre-header + Nav                            */
/* ============================================================ */
.lp-preheader {
  background: var(--lp-secondary);
  color: var(--lp-white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.015em;
  text-align: center;
  padding: 14px 16px;
}
.lp-preheader a { font-weight: 700; }
.lp-preheader span { opacity: 0.85; }
.lp-preheader a { font-weight: 600; opacity: 1; text-decoration: underline; text-underline-offset: 3px; }

.lp-nav {
  background: var(--lp-white);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(0, 16, 75, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.lp-nav__logo { height: 56px; display: block; }
.lp-nav__logo img {
  height: 100%;
  width: auto;
  /* Already black on transparent -- no filter */
}
.lp-nav__links {
  display: flex;
  gap: 36px;
  font-family: var(--lp-font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--lp-secondary);
}
.lp-nav__links a:hover { color: var(--lp-primary); }
.lp-nav__cta {
  background: var(--lp-cta);
  color: var(--lp-white);
  font-family: var(--lp-font-heading);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: var(--lp-border-radius-pill);
  transition: background 0.18s ease;
}
.lp-nav__cta:hover { background: var(--lp-cta-hover); }

@media (max-width: 900px) {
  .lp-nav__links { display: none; }
}

/* ============================================================ */
/* Section 2 -- Hero (C2 frosted glass card over Dallas photo)   */
/* ============================================================ */
.lp-hero {
  position: relative;
  min-height: 720px;
  background: var(--lp-neutral-light);
  overflow: hidden;
}
.lp-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 1;
}
.lp-hero__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(249, 247, 237, 0.25) 0%, rgba(249, 247, 237, 0.0) 45%);
  z-index: 2;
}
.lp-hero__container {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 90px 32px 120px;
  display: grid;
  grid-template-columns: minmax(420px, 540px) 1fr;
  gap: 48px;
  align-items: center;
}
.lp-hero__card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 40px 40px 36px;
  box-shadow: 0 24px 56px rgba(0, 16, 75, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.lp-hero__eyebrow {
  font-family: var(--lp-font-heading);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--lp-accent);
  margin: 0 0 18px 0;
}
.lp-hero__headline {
  font-family: var(--lp-font-heading);
  font-weight: 700;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--lp-secondary);
  margin: 0 0 22px 0;
}
.lp-hero__subhead {
  font-size: 16px;
  line-height: 1.55;
  color: var(--lp-secondary);
  opacity: 0.84;
  margin: 0 0 28px 0;
}
.lp-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.lp-hero__trust {
  font-size: 12.5px;
  color: var(--lp-secondary);
  opacity: 0.7;
  line-height: 1.6;
}

/* ============================================================ */
/* Section 3 -- Trust strip                                      */
/* ============================================================ */
.lp-trust {
  background: var(--lp-neutral-light);
  padding: 52px 32px 64px;
  border-top: 1px solid rgba(0, 16, 75, 0.06);
}
.lp-trust__label {
  font-family: var(--lp-font-heading);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--lp-secondary);
  opacity: 0.6;
  text-align: center;
  margin: 0 0 24px 0;
}
.lp-trust__logos {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
  justify-items: center;
}
.lp-trust__logo {
  filter: grayscale(1) opacity(0.72);
  transition: filter 0.2s ease;
  height: 40px;
  max-height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}
.lp-trust__logo--dfw {
  font-family: var(--lp-font-heading);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--lp-secondary);
  opacity: 0.78;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1;
  height: 40px;
}
.lp-trust__logo--dfw::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--lp-secondary);
  opacity: 0.72;
  clip-path: polygon(50% 0%, 60% 35%, 100% 50%, 60% 65%, 50% 100%, 40% 65%, 0% 50%, 40% 35%);
  display: inline-block;
  align-self: center;
}
.lp-trust__logo--dfw .lp-trust__logo-sub {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.78;
  align-self: center;
  margin-left: 4px;
}
.lp-trust__logo:hover { filter: grayscale(0.3) opacity(0.92); }

@media (max-width: 900px) {
  .lp-hero__container { grid-template-columns: 1fr; padding: 60px 24px 80px; }
  .lp-hero__card { padding: 32px 28px 28px; }
  .lp-hero__photo-overlay { background: linear-gradient(180deg, rgba(249, 247, 237, 0.55) 0%, rgba(249, 247, 237, 0.0) 60%); }
  .lp-trust__logos { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .lp-trust__logo { height: 36px; }
}

/* ============================================================ */
/* Section 4 -- Problem / Pain (3 pain cards)                    */
/* ============================================================ */
.lp-problem {
  background: var(--lp-neutral-light);
  padding: 96px 0 112px;
}
.lp-problem .lp-heading {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.lp-problem__intro {
  max-width: 780px;
  margin: 0 auto 64px;
  text-align: center;
  padding: 0 24px;
}
.lp-problem__intro p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--lp-secondary);
  opacity: 0.8;
  margin: 0;
}
.lp-problem__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 32px;
}
.lp-pain-card {
  background: var(--lp-card-bg);
  border-radius: var(--lp-border-radius-card);
  padding: 48px 36px 40px;
  box-shadow: var(--lp-card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.lp-pain-card__icon {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.lp-pain-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lp-pain-card__heading {
  font-family: var(--lp-font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--lp-secondary);
  margin: 0;
  letter-spacing: -0.01em;
}
.lp-pain-card__body {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--lp-secondary);
  opacity: 0.78;
  margin: 0;
}
@media (max-width: 900px) {
  .lp-problem { padding: 72px 0 88px; }
  .lp-problem__cards { grid-template-columns: 1fr; gap: 18px; padding: 0 24px; }
  .lp-pain-card { padding: 32px 28px 28px; }
}

/* ============================================================ */
/* Section 4b -- Workforce evidence block (between Problem + Smart Tech) */
/* ============================================================ */
.lp-workforce {
  background: var(--lp-neutral-toasted);
  padding: 96px 0 104px;
  text-align: center;
}
.lp-workforce .lp-heading {
  max-width: 920px;
  margin: 0 auto 48px;
}
.lp-workforce__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  max-width: 1220px;
  margin: 0 auto 40px;
  padding: 0 32px;
}
.lp-workforce__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
}
.lp-workforce__stat + .lp-workforce__stat::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 14%;
  bottom: 14%;
  width: 1px;
  background: rgba(0, 16, 75, 0.18);
}
.lp-workforce__num {
  font-family: var(--lp-font-heading);
  font-size: clamp(80px, 9vw, 132px);
  font-weight: 800;
  color: var(--lp-primary);
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 0 rgba(0, 16, 75, 0.04);
}
.lp-workforce__label {
  font-size: 16.5px;
  line-height: 1.45;
  color: var(--lp-secondary);
  max-width: 260px;
}
.lp-workforce__source {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lp-secondary);
  opacity: 0.55;
  margin-top: 4px;
}
.lp-workforce__dallas {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--lp-secondary);
  opacity: 0.85;
}
.lp-workforce__dallas strong { color: var(--lp-secondary); font-weight: 700; opacity: 1; }
@media (max-width: 900px) {
  .lp-workforce { padding: 72px 0 80px; }
  .lp-workforce__stats { grid-template-columns: 1fr; gap: 48px; }
  .lp-workforce__stat + .lp-workforce__stat::before { display: none; }
}

/* ============================================================ */
/* Section 5 -- Outcome / What You Get (3 feature cards)         */
/* ============================================================ */
.lp-outcome {
  background: var(--lp-neutral-toasted);
  padding: 96px 0 112px;
}
.lp-outcome .lp-heading {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.lp-outcome__intro {
  max-width: 780px;
  margin: 0 auto 64px;
  text-align: center;
  padding: 0 24px;
}
.lp-outcome__intro p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--lp-secondary);
  opacity: 0.8;
  margin: 0;
}
.lp-outcome__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 32px;
}
.lp-feature-card {
  background: var(--lp-card-bg);
  border-radius: var(--lp-border-radius-card);
  padding: 48px 36px 40px;
  box-shadow: var(--lp-card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.lp-feature-card__icon {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.lp-feature-card__icon img { width: 100%; height: 100%; object-fit: contain; }
.lp-feature-card__heading {
  font-family: var(--lp-font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--lp-secondary);
  margin: 0;
  letter-spacing: -0.01em;
}
.lp-feature-card__body {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--lp-secondary);
  opacity: 0.78;
  margin: 0;
}
@media (max-width: 900px) {
  .lp-outcome { padding: 72px 0 88px; }
  .lp-outcome__cards { grid-template-columns: 1fr; gap: 18px; padding: 0 24px; }
  .lp-feature-card { padding: 32px 28px 28px; }
}

/* ============================================================ */
/* Section 6 -- Smart Tech Moat (2-col text + dashboard image)   */
/* ============================================================ */
.lp-smart-tech {
  background: var(--lp-neutral-warm-white);
  padding: 96px 0 112px;
}
.lp-smart-tech__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.lp-smart-tech__copy { justify-content: center; }
.lp-smart-tech__copy { display: flex; flex-direction: column; gap: 28px; }
.lp-smart-tech .lp-heading { margin-bottom: 16px; }
.lp-smart-tech__subhead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--lp-secondary);
  opacity: 0.8;
  margin: 0;
}
.lp-smart-tech__bullets {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-smart-tech__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16.5px;
  line-height: 1.45;
  color: var(--lp-secondary);
}
.lp-smart-tech__check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: 0;
  background: var(--lp-accent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lp-smart-tech__check svg {
  width: 16px;
  height: 16px;
  stroke: var(--lp-white);
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lp-smart-tech__stat {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.lp-smart-tech__stat-num { display: block; }
.lp-smart-tech__stat-label { display: block; }
.lp-smart-tech__stat-num {
  font-family: var(--lp-font-heading);
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 800;
  color: var(--lp-accent);
  line-height: 1;
  letter-spacing: -0.03em;
}
.lp-smart-tech__stat-label {
  font-size: 16px;
  line-height: 1.4;
  color: var(--lp-secondary);
  opacity: 0.85;
  max-width: 280px;
}
.lp-smart-tech__visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 16, 75, 0.12);
  aspect-ratio: 4 / 5;
}
.lp-smart-tech__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .lp-smart-tech { padding: 72px 0 88px; }
  .lp-smart-tech__grid { grid-template-columns: 1fr; gap: 40px; }
  .lp-smart-tech__visual { aspect-ratio: 4 / 3; }
}

/* ============================================================ */
/* Section 7 -- Stats callout (navy bg, 3 big numbers)           */
/* ============================================================ */
.lp-stats {
  background: var(--lp-secondary);
  color: var(--lp-white);
  padding: 104px 0 100px;
  text-align: center;
}
.lp-stats .lp-eyebrow { color: var(--lp-accent); }
.lp-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1180px;
  margin: 48px auto 0;
  padding: 0 32px;
}
.lp-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
}
.lp-stats__item + .lp-stats__item::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}
.lp-stats__num {
  font-family: var(--lp-font-heading);
  font-size: clamp(72px, 9vw, 132px);
  font-weight: 800;
  color: var(--lp-accent);
  line-height: 1;
  letter-spacing: -0.04em;
}
.lp-stats__label {
  font-size: 18px;
  line-height: 1.45;
  color: var(--lp-white);
  opacity: 0.92;
  max-width: 240px;
}
.lp-stats__anchor {
  margin-top: 56px;
  font-size: 15px;
  color: var(--lp-white);
  opacity: 0.72;
  letter-spacing: 0.01em;
}
@media (max-width: 900px) {
  .lp-stats { padding: 72px 0 72px; }
  .lp-stats__grid { grid-template-columns: 1fr; gap: 56px; }
  .lp-stats__item + .lp-stats__item::before { display: none; }
}

/* ============================================================ */
/* Section 8 -- Testimonial wall (6 cards in 3x2 grid)            */
/* ============================================================ */
.lp-testimonials {
  background: var(--lp-neutral-light);
  padding: 96px 0 112px;
}
.lp-testimonials .lp-heading {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}
.lp-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 32px;
}
.lp-testimonial {
  background: var(--lp-card-bg);
  border-radius: var(--lp-border-radius-card);
  padding: 40px 36px 36px;
  box-shadow: var(--lp-card-shadow);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.lp-testimonial__quote-mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 108px;
  line-height: 0.7;
  font-weight: 700;
  color: var(--lp-accent);
  margin: 0;
  height: 48px;
}
.lp-testimonial__body {
  font-family: var(--lp-font-heading);
  font-size: 21px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  color: var(--lp-secondary);
  margin: 0;
  flex: 1;
  letter-spacing: -0.005em;
}
.lp-testimonial__divider {
  height: 1px;
  background: rgba(0, 16, 75, 0.1);
  border: none;
  margin: 4px 0 0;
}
.lp-testimonial__attribution {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lp-testimonial__logo {
  flex-shrink: 0;
  height: 36px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.78);
}
.lp-testimonial__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lp-testimonial__role {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--lp-accent);
}
.lp-testimonial__company {
  font-size: 16px;
  font-weight: 700;
  color: var(--lp-secondary);
  letter-spacing: -0.005em;
}
.lp-testimonials__footnote {
  text-align: center;
  margin-top: 44px;
  font-size: 14px;
  color: var(--lp-secondary);
  opacity: 0.7;
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  .lp-testimonials__grid { grid-template-columns: 1fr; gap: 18px; padding: 0 24px; }
  .lp-testimonials { padding: 72px 0 88px; }
}

/* ============================================================ */
/* Section 9 -- 200 Cup Free Trial offer (risk reversal)          */
/* ============================================================ */
.lp-offer {
  background: var(--lp-neutral-toasted);
  padding: 104px 0 112px;
  position: relative;
}
.lp-offer::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: var(--lp-primary);
}
.lp-offer .lp-heading {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.lp-offer__subhead {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 19px;
  line-height: 1.55;
  color: var(--lp-secondary);
  opacity: 0.85;
}
.lp-offer__items {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 0 32px;
}
.lp-offer__item {
  background: var(--lp-card-bg);
  border-radius: var(--lp-border-radius-card);
  padding: 32px 32px;
  box-shadow: 0 12px 32px rgba(0, 16, 75, 0.08);
  display: flex;
  align-items: center;
  gap: 22px;
}
.lp-offer__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-offer__icon img { width: 100%; height: 100%; object-fit: contain; }
.lp-offer__text {
  font-size: 17px;
  line-height: 1.45;
  color: var(--lp-secondary);
  font-weight: 500;
  margin: 0;
}
.lp-offer__cta-row {
  text-align: center;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lp-offer__note {
  font-size: 13.5px;
  color: var(--lp-secondary);
  opacity: 0.65;
}
@media (max-width: 900px) {
  .lp-offer { padding: 80px 0 88px; }
  .lp-offer__items { grid-template-columns: 1fr; gap: 16px; padding: 0 20px; }
  .lp-offer__item { padding: 24px 24px; }
}

/* ============================================================ */
/* Section 10 -- How It Works (3 numbered step cards)            */
/* ============================================================ */
.lp-how {
  background: var(--lp-neutral-sage);
  padding: 96px 0 112px;
}
.lp-how .lp-heading {
  max-width: 980px;
  margin: 0 auto 64px;
}
.lp-how__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}
.lp-how__cards::before {
  content: '';
  position: absolute;
  top: 90px;
  left: 14%;
  right: 14%;
  height: 1px;
  border-top: 2px dashed rgba(201, 167, 122, 0.55);
  z-index: 0;
  pointer-events: none;
}
.lp-step-card {
  background: var(--lp-card-bg);
  border-radius: var(--lp-border-radius-card);
  padding: 36px 36px 36px;
  box-shadow: var(--lp-card-shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.lp-step-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.lp-step-card__number {
  font-family: var(--lp-font-heading);
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  color: var(--lp-accent);
  letter-spacing: -0.04em;
}
.lp-step-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-step-card__icon img { width: 100%; height: 100%; object-fit: contain; }
.lp-step-card__heading {
  font-family: var(--lp-font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--lp-secondary);
  margin: 0;
  letter-spacing: -0.01em;
}
.lp-step-card__body {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--lp-secondary);
  opacity: 0.78;
  margin: 0;
}
@media (max-width: 900px) {
  .lp-how { padding: 72px 0 88px; }
  .lp-how__cards { grid-template-columns: 1fr; gap: 16px; padding: 0 24px; }
  .lp-how__cards::before { display: none; }
}

/* ============================================================ */
/* Section 11 -- Dallas service area (cities grid + DFW map)     */
/* ============================================================ */
.lp-service-area {
  background: var(--lp-neutral-light);
  padding: 96px 0 112px;
}
.lp-service-area__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  align-items: stretch;
}
.lp-service-area__copy { display: flex; flex-direction: column; gap: 20px; }
.lp-service-area .lp-heading { margin-bottom: 0; max-width: 560px; }
.lp-service-area__subhead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--lp-secondary);
  opacity: 0.82;
  margin: 0 0 8px;
  max-width: 540px;
}
.lp-service-area__cities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 28px;
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  font-size: 15.5px;
  color: var(--lp-secondary);
}
.lp-service-area__cities li { padding: 0; }
.lp-service-area__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}
.lp-service-area__map {
  flex: 1 1 auto;
  width: 100%;
  border-radius: var(--lp-border-radius-card);
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 16, 75, 0.08);
  background: var(--lp-neutral-light);
  min-height: 380px;
}
.lp-service-area__map img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.lp-service-area__contact {
  background: var(--lp-card-bg);
  border-radius: var(--lp-border-radius-card);
  padding: 28px 32px;
  box-shadow: var(--lp-card-shadow);
}
.lp-service-area__contact-heading {
  font-family: var(--lp-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--lp-secondary);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.lp-service-area__contact-body {
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--lp-secondary);
  opacity: 0.8;
  margin: 0 0 14px;
}
.lp-service-area__contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--lp-font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--lp-primary);
  text-decoration: none;
}
.lp-service-area__contact-phone:hover { text-decoration: underline; text-underline-offset: 4px; }
.lp-service-area__contact-hours {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--lp-secondary);
  opacity: 0.65;
  margin-top: 4px;
}
@media (max-width: 900px) {
  .lp-service-area { padding: 72px 0 88px; }
  .lp-service-area__grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .lp-service-area__copy { align-items: center; }
  .lp-service-area .lp-heading,
  .lp-service-area__subhead { margin-left: auto; margin-right: auto; }
  .lp-service-area__cities {
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    text-align: left;
    gap: 14px 56px;
    margin-left: auto;
    margin-right: auto;
  }
  .lp-service-area__contact { text-align: left; }
}

/* ============================================================ */
/* Section 12 -- FAQ accordion                                   */
/* ============================================================ */
.lp-faq {
  background: var(--lp-neutral-warm-white);
  padding: 96px 0 112px;
}
.lp-faq .lp-heading {
  max-width: 760px;
  margin: 0 auto 56px;
}
.lp-faq__list {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}
.lp-faq__item {
  border-bottom: 1px solid rgba(0, 16, 75, 0.12);
  padding: 0;
}
.lp-faq__item:first-of-type {
  border-top: 1px solid rgba(0, 16, 75, 0.12);
}
.lp-faq__item[open] .lp-faq__icon { transform: rotate(45deg); }
.lp-faq__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  font-family: var(--lp-font-heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--lp-secondary);
  letter-spacing: -0.005em;
  transition: color 0.18s ease;
}
.lp-faq__summary::-webkit-details-marker { display: none; }
.lp-faq__summary:hover { color: var(--lp-primary); }
.lp-faq__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--lp-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}
.lp-faq__icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--lp-white);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}
.lp-faq__answer {
  padding: 0 0 24px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--lp-secondary);
  opacity: 0.84;
  max-width: 740px;
}
@media (max-width: 900px) {
  .lp-faq { padding: 72px 0 88px; }
  .lp-faq__summary { font-size: 17px; padding: 20px 0; }
  .lp-faq__answer { font-size: 15.5px; }
}

/* ============================================================ */
/* Section 13 -- Final CTA (navy bg, copy left, form right)      */
/* ============================================================ */
.lp-final-cta {
  background: var(--lp-secondary);
  color: var(--lp-white);
  padding: 104px 0 112px;
}
.lp-final-cta__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  align-items: center;
}
.lp-final-cta__copy { display: flex; flex-direction: column; gap: 24px; }
.lp-final-cta__eyebrow {
  font-family: var(--lp-font-heading);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--lp-accent);
  margin: 0 0 6px;
}
.lp-final-cta__heading {
  font-family: var(--lp-font-heading);
  font-weight: 800;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--lp-white);
  margin: 0;
}
.lp-final-cta__subhead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--lp-white);
  opacity: 0.85;
  margin: 0;
  max-width: 540px;
}
.lp-final-cta__phone {
  font-family: var(--lp-font-heading);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--lp-white);
  text-decoration: none;
  margin-top: 8px;
  letter-spacing: -0.01em;
  display: inline-block;
}
.lp-final-cta__phone:hover { color: var(--lp-accent); }
.lp-final-cta__phone-prefix { font-weight: 500; opacity: 0.7; margin-right: 8px; }
.lp-final-cta__dfw {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 16px 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  align-self: flex-start;
}
.lp-final-cta__dfw-badge {
  font-family: var(--lp-font-heading);
  font-weight: 800;
  font-size: 16px;
  color: var(--lp-white);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.lp-final-cta__dfw-badge::before {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--lp-accent);
  clip-path: polygon(50% 0%, 60% 35%, 100% 50%, 60% 65%, 50% 100%, 40% 65%, 0% 50%, 40% 35%);
  display: inline-block;
  align-self: center;
}
.lp-final-cta__dfw-badge small {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  opacity: 0.85;
}
.lp-final-cta__dfw-text {
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--lp-white);
  opacity: 0.85;
  max-width: 240px;
}
.lp-form-card {
  background: var(--lp-white);
  border-radius: 24px;
  padding: 36px 36px 32px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.18);
  color: var(--lp-secondary);
}
.lp-form-card__heading {
  font-family: var(--lp-font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--lp-secondary);
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}
.lp-form-card form { display: flex; flex-direction: column; gap: 16px; }
.lp-form-field { display: flex; flex-direction: column; gap: 6px; }
.lp-form-field label {
  font-family: var(--lp-font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lp-secondary);
  opacity: 0.78;
}
.lp-form-field input,
.lp-form-field select {
  font-family: var(--lp-font-body);
  font-size: 16px;
  padding: 12px 14px;
  border: 1.5px solid rgba(0, 16, 75, 0.16);
  border-radius: 10px;
  background-color: var(--lp-white);
  color: var(--lp-secondary);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  line-height: 1.4;
}
.lp-form-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%2300104B' stroke-width='2' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}
.lp-form-field select option { color: var(--lp-secondary); }
.lp-form-field input:focus,
.lp-form-field select:focus {
  outline: none;
  border-color: var(--lp-primary);
  box-shadow: 0 0 0 3px rgba(56, 129, 134, 0.18);
}
.lp-form-card .lp-cta { width: 100%; justify-content: center; margin-top: 8px; }
.lp-form-card__note {
  font-size: 12.5px;
  text-align: center;
  color: var(--lp-secondary);
  opacity: 0.65;
  margin: 12px 0 0;
}
.lp-form-card__honeypot {
  position: absolute;
  left: -9999px;
  top: 0;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.lp-form-card__error {
  font-size: 13.5px;
  color: #B00020;
  margin-top: 6px;
  display: none;
}
.lp-form-card__error.is-visible { display: block; }
.lp-form-card__success {
  background: rgba(56, 129, 134, 0.06);
  border: 1px solid rgba(56, 129, 134, 0.25);
  color: var(--lp-secondary);
  padding: 16px;
  border-radius: 10px;
  font-size: 14.5px;
  line-height: 1.5;
  display: none;
}
.lp-form-card__success.is-visible { display: block; }
@media (max-width: 900px) {
  .lp-final-cta { padding: 72px 0 80px; }
  .lp-final-cta__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================ */
/* Footer                                                         */
/* ============================================================ */
.lp-footer {
  background: var(--lp-neutral-light);
  padding: 56px 0 32px;
  color: var(--lp-secondary);
  font-size: 14.5px;
}
.lp-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  align-items: start;
}
.lp-footer__logo img { height: 56px; width: auto; }
.lp-footer__col-heading {
  font-family: var(--lp-font-heading);
  text-transform: uppercase;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  color: var(--lp-accent);
  margin: 0 0 14px;
  font-weight: 700;
}
.lp-footer__col p, .lp-footer__col a { margin: 0 0 8px; color: var(--lp-secondary); opacity: 0.85; text-decoration: none; display: block; }
.lp-footer__col a:hover { color: var(--lp-primary); }
.lp-footer__forbes {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-secondary);
  background: rgba(0, 16, 75, 0.05);
  border-radius: 6px;
  padding: 6px 10px;
  margin-top: 6px;
}
.lp-footer__bottom {
  max-width: 1280px;
  margin: 36px auto 0;
  padding: 24px 32px 0;
  border-top: 1px solid rgba(0, 16, 75, 0.08);
  text-align: center;
  font-size: 13px;
  color: var(--lp-secondary);
  opacity: 0.65;
}
@media (max-width: 900px) {
  .lp-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
