/* =========================================================================
   Stratalis web scraping landing page (Google Ads)
   Self-contained styles. Design tokens mirror lp/ mockup.
   ========================================================================= */

:root {
  --lp-bg: #fdf8f5;
  --lp-ink: #1a1916;
  --lp-orange: #ff7040;
  --lp-orange-dark: #e55530;
  --lp-orange-deep: #c4441f;
  --lp-orange-light: #ff9070;
  --lp-muted-1: #6f6058;
  --lp-muted-2: #8a7a70;
  --lp-muted-3: #9a8a80;
  --lp-muted-4: #b0a196;
  --lp-card-border: #efe2d8;
  --lp-input-border: #e9ddd4;
  --lp-warm-bg: #fff1ec;
  --lp-warm-border: #ffd9c8;
  --lp-warm-hover: #fff6f1;
  --lp-display: 'Bricolage Grotesque', Helvetica, Arial, sans-serif;
  --lp-body: 'Instrument Sans', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 60px; } /* offset in-page anchors past the sticky nav so they land on the top of the target section, not under the nav */

html, body {
  margin: 0;
  padding: 0;
  background: var(--lp-bg);
}

body.lp {
  font-family: var(--lp-body);
  color: var(--lp-ink);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.5;
}

.lp a { color: var(--lp-orange-dark); text-decoration: none; }
.lp a:hover { color: var(--lp-orange-deep); text-decoration: underline; }
.lp img { max-width: 100%; }
.lp input::placeholder, .lp textarea::placeholder { color: #b9aa9f; }

.lp-wrap {
  min-height: 100vh;
  background:
    radial-gradient(1100px 540px at 50% -140px, #ffe0d2, rgba(255,224,210,0) 72%),
    var(--lp-bg);
}

.lp-container { max-width: 1160px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }

/* ---- buttons ---------------------------------------------------------- */
.lp-btn {
  display: inline-block;
  background: var(--lp-ink);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.lp-btn:hover {
  background: #3d1a08;
  color: #fff;
  text-decoration: none;
}
.lp-btn-lg {
  font-size: 17px;
  padding: 15px 30px;
}
.lp-btn-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -10px rgba(255,112,64,.7);
}
.lp-btn-dark { background: var(--lp-ink); }
.lp-btn-dark:hover { background: #3d1a08; }

/* ---- nav -------------------------------------------------------------- */
.lp-nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--lp-bg);
  border-bottom: 1px solid rgba(26,25,22,.08);
  box-shadow: 0 1px 12px -6px rgba(26,25,22,.18);
}
.lp-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1160px; margin: 0 auto; padding: 16px 32px;
}
.lp-nav-logo { height: 28px; display: block; }
.lp-nav-actions { display: flex; align-items: center; gap: 24px; }
.lp-phone { font-size: 15px; font-weight: 500; color: var(--lp-muted-1); }
.lp-phone:hover { color: var(--lp-ink); text-decoration: none; }
.lp-phone-icon { vertical-align: -2px; margin-right: 6px; }

/* ---- hero ------------------------------------------------------------- */
.lp-hero { max-width: 1160px; margin: 0 auto; padding: 56px 32px 40px; }
.lp-hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center;
}
.lp-hero h1 {
  font-family: var(--lp-display);
  font-weight: 600; font-size: 54px; line-height: 1.05;
  letter-spacing: -.03em; margin: 0 0 22px; text-wrap: balance;
}
.lp-hero h1 .accent, .lp-hero h1 strong { color: var(--lp-orange); font-weight: 600; }
.lp-hero-sub {
  font-size: 19px; line-height: 1.55; color: var(--lp-muted-1);
  margin: 0 0 32px; max-width: 520px; text-wrap: pretty;
}
.lp-hero-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.lp-hero-micro { font-size: 15px; color: var(--lp-muted-3); margin: 0; max-width: 520px; }
.lp-hero-micro strong { color: var(--lp-orange-deep); font-weight: 600; }
.lp-hero-media {
  height: 440px;
  -webkit-mask-image: radial-gradient(ellipse 68% 62% at 50% 50%, #000 56%, rgba(0,0,0,.6) 78%, transparent 90%);
  mask-image: radial-gradient(ellipse 68% 62% at 50% 50%, #000 56%, rgba(0,0,0,.6) 78%, transparent 90%);
}
.lp-hero-media img {
  width: 100%; height: 100%; object-fit: contain; display: block;
  mix-blend-mode: multiply;
  animation: lpHeroFloat 6s ease-in-out infinite alternate;
}
@keyframes lpHeroFloat { from { transform: translateY(0); } to { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) {
  .lp-hero-media img { animation: none; }
}

/* ---- trust / logo banner --------------------------------------------- */
.lp-trust { margin-top: 36px; text-align: center; }
.lp-trust-title {
  font-size: 13px; color: var(--lp-muted-4); letter-spacing: .08em;
  text-transform: uppercase; margin: 0 0 18px;
}
.lp-logos {
  display: flex; justify-content: center; align-items: center;
  gap: 14px 20px; flex-wrap: wrap; max-width: 1000px; margin: 0 auto;
}
/* Fixed bounding box + object-fit: contain (constrained by width AND height).
   grayscale(1) + fade for a calm, uniform strip; full colour on hover. This
   leaves lighter marks (Accor's gold) a touch faint, which is acceptable. */
.lp-logo-item {
  width: 92px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-logo-item img {
  max-width: 100%; max-height: 100%; object-fit: contain; display: block;
  filter: grayscale(1); opacity: .62;
  transition: filter .2s ease, opacity .2s ease;
}
.lp-logo-item img:hover { filter: grayscale(0); opacity: 1; }
/* Single row on desktop: items share the row and shrink to fit. */
@media (min-width: 62rem) {
  .lp-logos { flex-wrap: nowrap; gap: clamp(10px, 1.5vw, 24px); }
  .lp-logo-item { flex: 1 1 0; min-width: 0; max-width: 108px; width: auto; }
}

/* ---- quote form section ---------------------------------------------- */
.lp-quote {
  padding: 64px 24px 72px;
  background:
    radial-gradient(760px 540px at 10% 4%, rgba(255,112,64,.42), transparent 64%),
    radial-gradient(680px 520px at 92% 96%, rgba(229,85,48,.45), transparent 66%),
    radial-gradient(500px 400px at 78% 12%, rgba(255,144,112,.18), transparent 60%),
    var(--lp-ink);
}
.lp-quote-card {
  max-width: 880px; margin: 0 auto; background: #fff;
  border: 1px solid rgba(255,255,255,.55); border-radius: 24px;
  box-shadow: 0 32px 80px -32px rgba(0,0,0,.55); overflow: hidden;
}
.lp-progress { height: 4px; background: #f6e9e1; }
.lp-progress-bar {
  height: 4px; background: var(--lp-orange); border-radius: 0 2px 2px 0;
  width: 4%; transition: width .45s ease; animation: lpPulse 2.6s ease-in-out infinite;
}
@keyframes lpPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,112,64,0); }
  50% { box-shadow: 0 0 14px 1px rgba(255,112,64,.55); }
}
.lp-quote-body {
  padding: 40px 64px 48px; min-height: 480px; display: flex; flex-direction: column;
}
.lp-quote-top {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 34px; margin-bottom: 20px;
}
.lp-back {
  display: inline-flex; align-items: center; gap: 6px; background: none; border: none;
  cursor: pointer; font: inherit; font-size: 14px; font-weight: 500; color: var(--lp-muted-3);
  padding: 6px 10px; border-radius: 8px;
}
.lp-back:hover { background: #fdf4ee; color: var(--lp-ink); }
.lp-pct { font-size: 13px; color: #c0b1a6; font-variant-numeric: tabular-nums; }

.lp-step {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  transition: opacity .18s ease, transform .18s ease;
}
.lp-step.is-hidden { opacity: 0; transform: translateY(12px); }
.lp-q-head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 8px; }
.lp-q-num { color: var(--lp-orange); font-weight: 600; font-size: 15px; font-variant-numeric: tabular-nums; }
.lp-q-title {
  font-family: var(--lp-display); font-weight: 600; font-size: 31px;
  letter-spacing: -.02em; line-height: 1.15; margin: 0; text-wrap: balance;
}
.lp-q-sub { font-size: 16px; color: var(--lp-muted-2); margin: 2px 0 0 34px; line-height: 1.5; }

.lp-options, .lp-fields { display: flex; flex-direction: column; gap: 10px; margin: 28px 0 0 34px; max-width: 560px; }
.lp-fields { gap: 22px; }
.lp-option {
  display: flex; align-items: center; gap: 14px; width: 100%; text-align: left;
  background: #fff; border: 1.5px solid var(--lp-input-border); border-radius: 14px;
  padding: 15px 18px; cursor: pointer; font: inherit;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.lp-option:hover { border-color: var(--lp-orange); background: var(--lp-warm-hover); transform: translateX(4px); }
.lp-option.is-selected { border-color: var(--lp-orange); background: var(--lp-warm-bg); }
.lp-option-key {
  display: flex; align-items: center; justify-content: center; width: 24px; height: 24px;
  border-radius: 6px; font-size: 12px; font-weight: 600; background: var(--lp-warm-bg);
  color: var(--lp-orange-deep); border: 1px solid var(--lp-warm-border); flex-shrink: 0;
}
.lp-option.is-selected .lp-option-key { background: var(--lp-orange); color: #fff; border-color: var(--lp-orange); }
.lp-option-label { font-size: 17px; font-weight: 500; color: var(--lp-ink); line-height: 1.35; }

.lp-field { display: flex; flex-direction: column; gap: 8px; }
.lp-field-label { font-size: 15px; font-weight: 600; color: #4a3d35; }
.lp-field-label span { font-weight: 400; color: #b9aa9f; }
.lp-input, .lp-textarea {
  font: inherit; font-size: 17px; color: var(--lp-ink); background: #fdfaf7;
  border: 1.5px solid var(--lp-input-border); border-radius: 12px; padding: 13px 16px; outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease; width: 100%;
}
.lp-textarea { line-height: 1.5; padding: 14px 16px; resize: vertical; min-height: 92px; }
.lp-input:focus, .lp-textarea:focus {
  border-color: var(--lp-orange); box-shadow: 0 0 0 3px rgba(255,112,64,.14); background: #fff;
}

.lp-calendly { margin: 28px 0 0 34px; }
.lp-calendly-embed { width: 100%; height: 700px; border: 1px solid var(--lp-input-border); border-radius: 14px; background: #fff; overflow: hidden; }
/* Calendly injects an iframe styled height:100%; the container needs an explicit
   height (not just min-height) or the iframe collapses to its ~150px default. */
.lp-calendly-embed iframe { display: block; width: 100%; height: 100%; border: 0; }

.lp-continue-row { display: flex; align-items: center; gap: 16px; margin: 30px 0 0 34px; }
.lp-continue-btn {
  background: var(--lp-ink); color: #fff; border: none; border-radius: 999px;
  padding: 13px 30px; font: inherit; font-size: 17px; font-weight: 600; cursor: pointer;
  transition: background .15s ease, opacity .15s ease;
}
.lp-continue-btn:hover { background: #3d1a08; }
.lp-continue-btn.is-disabled { opacity: .35; }
.lp-enter-hint { font-size: 13px; color: #c0b1a6; }

.lp-note {
  display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--lp-muted-3);
  margin: 26px 0 0 34px; max-width: 520px; line-height: 1.5;
}
.lp-note-dot, .lp-reassure li::before {
  content: ""; width: 6px; height: 6px; border-radius: 99px; background: var(--lp-orange);
  flex-shrink: 0; display: inline-block; margin-top: 7px;
}

.lp-end { margin: 20px 0 0 34px; max-width: 560px; }
.lp-end-check {
  display: flex; align-items: center; justify-content: center; width: 52px; height: 52px;
  border-radius: 999px; background: var(--lp-orange); color: #fff; font-size: 24px; font-weight: 700; margin-bottom: 20px;
}
.lp-end-text { font-size: 18px; line-height: 1.55; color: #4a3d35; margin: 0 0 24px; }
.lp-end-restart {
  background: none; border: 1.5px solid var(--lp-input-border); border-radius: 999px;
  padding: 10px 22px; font: inherit; font-size: 15px; font-weight: 500; color: var(--lp-muted-2); cursor: pointer;
}
.lp-end-restart:hover { border-color: var(--lp-orange); color: var(--lp-ink); }

.lp-form-error { color: #ffd9c8; font-size: 14px; margin: 16px 0 0 34px; max-width: 520px; }

/* reassurance strip */
.lp-reassure {
  list-style: none; display: flex; justify-content: center; gap: 14px 36px; flex-wrap: wrap;
  max-width: 880px; margin: 26px auto 0; padding: 0 12px;
}
.lp-reassure li { font-size: 14px; color: #cbb9ac; display: flex; align-items: center; gap: 8px; }
.lp-reassure li::before { margin-top: 0; }

/* testimonial (on dark) */
.lp-quote-testimonial { max-width: 680px; margin: 48px auto 0; text-align: center; padding: 0 12px; }
.lp-quote-testimonial blockquote {
  font-family: var(--lp-display); font-size: 22px; font-weight: 500; line-height: 1.45;
  color: #f6ede5; margin: 0 0 12px; text-wrap: balance;
}
.lp-quote-testimonial blockquote strong { color: var(--lp-orange-light); font-weight: 500; }
.lp-quote-testimonial cite { font-size: 14px; color: var(--lp-muted-3); font-style: normal; }

/* ---- sections shared -------------------------------------------------- */
.lp-section { max-width: 1160px; margin: 0 auto; padding: 88px 32px 0; }
.lp-section-narrow { max-width: 1000px; }
.lp-section-title {
  font-family: var(--lp-display); font-weight: 600; font-size: 34px; letter-spacing: -.02em;
  text-align: center; margin: 0 0 12px;
}
.lp-section-sub { font-size: 17px; color: var(--lp-muted-2); text-align: center; margin: 0 auto 44px; max-width: 560px; }
.lp-section-title.tight { margin-bottom: 44px; }

/* ---- stats ------------------------------------------------------------ */
.lp-stats { max-width: 1000px; margin: 0 auto; padding: 64px 32px 0; }
.lp-stats-eyebrow {
  font-size: 13px; color: #b0713f; letter-spacing: .08em; text-transform: uppercase;
  text-align: center; margin: 0 0 24px;
}
.lp-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 20px; text-align: center; }
.lp-stat-value {
  font-family: var(--lp-display); font-weight: 700; font-size: 36px; letter-spacing: -.02em;
  color: var(--lp-orange); font-variant-numeric: tabular-nums;
}
.lp-stat-label { font-size: 14px; color: var(--lp-muted-2); margin-top: 4px; }

/* ---- card grids ------------------------------------------------------- */
.lp-card {
  background: #fff; border: 1px solid var(--lp-card-border); border-radius: 18px; padding: 28px;
}
.lp-card-title { font-family: var(--lp-display); font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.lp-card p { font-size: 15px; line-height: 1.6; color: var(--lp-muted-1); margin: 0; }
.lp-card--warm { background: var(--lp-warm-bg); border-color: var(--lp-warm-border); }
.lp-card--warm .lp-card-title { color: var(--lp-orange-deep); }

.lp-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-why-grid .lp-card--wide { grid-column: span 2; }

.lp-build-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-build-grid .lp-card { padding: 26px; }
.lp-build-grid .lp-card-title { font-family: var(--lp-body); font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.lp-build-grid .lp-card p { font-size: 15px; line-height: 1.55; }
.lp-build-wide {
  grid-column: span 3; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.lp-build-wide > div { max-width: 680px; }
.lp-build-wide a { font-weight: 600; font-size: 15px; white-space: nowrap; }

/* ---- delivery pills --------------------------------------------------- */
.lp-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 860px; margin: 0 auto; }
.lp-pill {
  background: #fff; border: 1px solid var(--lp-card-border); border-radius: 999px;
  padding: 11px 20px; font-size: 15px; font-weight: 500;
}

/* ---- projects --------------------------------------------------------- */
.lp-projects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.lp-project { background: var(--lp-ink); border-radius: 18px; padding: 32px; color: #f6ede5; }
.lp-project-tag { font-size: 13px; color: var(--lp-orange-light); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
.lp-project-title { font-family: var(--lp-display); font-size: 22px; font-weight: 600; margin-bottom: 20px; line-height: 1.25; }
.lp-project-metrics { display: flex; flex-direction: column; gap: 10px; }
.lp-project-metric { display: flex; align-items: baseline; gap: 10px; }
.lp-project-metric b {
  font-family: var(--lp-display); font-weight: 700; font-size: 22px; color: var(--lp-orange);
  min-width: 96px;
}
.lp-project-metric span { font-size: 14px; color: #cbb9ac; }

/* ---- how it works ----------------------------------------------------- */
.lp-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lp-how-step { background: #fff; border: 1px solid var(--lp-card-border); border-radius: 18px; padding: 28px; }
.lp-how-step .lp-how-eyebrow { font-family: var(--lp-display); font-size: 15px; font-weight: 600; color: #b0713f; margin-bottom: 12px; }
.lp-how-step p { font-size: 16px; line-height: 1.55; color: #4a3d35; margin: 0; }
.lp-how-step--warm { background: var(--lp-warm-bg); border-color: var(--lp-warm-border); }
.lp-how-step--warm .lp-how-eyebrow { color: var(--lp-orange-deep); }
.lp-how-step--dark { background: var(--lp-ink); border-color: var(--lp-ink); }
.lp-how-step--dark .lp-how-eyebrow { color: var(--lp-orange-light); }
.lp-how-step--dark p { color: #e9ddd4; }

/* ---- faq -------------------------------------------------------------- */
.lp-faq { max-width: 760px; margin: 0 auto; padding: 88px 32px 24px; }
.lp-faq-list { display: flex; flex-direction: column; gap: 12px; }
.lp-faq-item { background: #fff; border: 1px solid var(--lp-card-border); border-radius: 16px; overflow: hidden; }
.lp-faq-item.is-open { border-color: var(--lp-warm-border); }
.lp-faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%;
  text-align: left; background: none; border: none; cursor: pointer; font: inherit;
  font-size: 17px; font-weight: 600; color: var(--lp-ink); padding: 19px 22px;
}
.lp-faq-q:hover { color: var(--lp-orange-dark); }
.lp-faq-mark { color: var(--lp-orange); font-size: 20px; font-weight: 500; flex-shrink: 0; }
.lp-faq-a { font-size: 15.5px; line-height: 1.6; color: var(--lp-muted-1); margin: 0; padding: 0 22px 20px; }

/* ---- final cta band --------------------------------------------------- */
.lp-final { background: var(--lp-orange); padding: 52px 32px; margin-top: 64px; }
.lp-final-inner {
  max-width: 840px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.lp-final h2 { color: #3d1a08; font-family: var(--lp-display); font-weight: 600; font-size: 26px; letter-spacing: -.02em; margin: 0 0 6px; }
.lp-final h2 strong { font-weight: 600; }
.lp-final p { color: #fff2ea; font-size: 16px; margin: 0; }

/* ---- footer ----------------------------------------------------------- */
.lp-footer {
  max-width: 1160px; margin: 0 auto; padding: 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.lp-footer-logo { height: 20px; display: block; }
.lp-footer span { font-size: 13px; color: var(--lp-muted-4); }
.lp-footer a { color: var(--lp-muted-2); }

.lp-sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* honeypot: keep in DOM and fillable, out of sight and out of the tab order */
.lp-hp {
  position: absolute !important; left: -9999px !important;
  width: 1px; height: 1px; opacity: 0; overflow: hidden;
}

/* inline field validation */
.lp-field-error { color: var(--lp-orange-deep); font-size: 13px; margin-top: 2px; }
.lp-input.has-error, .lp-textarea.has-error {
  border-color: var(--lp-orange-deep);
  box-shadow: 0 0 0 3px rgba(196,68,31,.12);
}
.lp-end-check.is-error { background: var(--lp-orange-deep); }

/* no-JS fallback */
.lp-noscript {
  border: 1.5px dashed var(--lp-input-border); border-radius: 14px;
  padding: 22px 24px; text-align: center; color: var(--lp-muted-1);
}
.lp-noscript p { margin: 0 0 8px; font-size: 16px; }
.lp-noscript p:last-child { margin-bottom: 0; }

/* footer legal links */
.lp-footer-legal { width: 100%; display: flex; gap: 12px 20px; flex-wrap: wrap; }
.lp-footer-legal a { font-size: 13px; color: var(--lp-muted-2); }
.lp-footer-legal a:hover { color: var(--lp-ink); }

/* keyboard focus visibility */
.lp-option:focus-visible, .lp-input:focus-visible, .lp-textarea:focus-visible,
.lp-continue-btn:focus-visible, .lp-back:focus-visible, .lp-faq-q:focus-visible,
.lp-btn:focus-visible, .lp-end-restart:focus-visible {
  outline: 2px solid var(--lp-orange); outline-offset: 2px;
}
.lp-q-title:focus { outline: none; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 900px) {
  .lp-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .lp-hero { padding: 40px 24px 24px; }
  .lp-hero h1 { font-size: 40px; }
  .lp-hero-sub { font-size: 18px; }
  .lp-hero-media { height: 280px; }
  .lp-why-grid, .lp-build-grid, .lp-how-grid, .lp-projects-grid { grid-template-columns: 1fr; }
  .lp-why-grid .lp-card--wide, .lp-build-wide { grid-column: auto; }
  .lp-build-wide { flex-direction: column; align-items: flex-start; }
  .lp-section { padding: 56px 24px 0; }
  .lp-quote-body { padding: 32px 24px 36px; }
  .lp-q-title { font-size: 26px; }
  .lp-options, .lp-fields, .lp-continue-row, .lp-note, .lp-q-sub, .lp-calendly, .lp-end, .lp-form-error { margin-left: 0; }
}

@media (max-width: 640px) {
  .lp-nav-inner { padding: 14px 20px; }
  .lp-phone { display: none; }
  .lp-container { padding-left: 20px; padding-right: 20px; }
  .lp-hero h1 { font-size: 33px; }
  .lp-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-stat-value { font-size: 30px; }
  .lp-section-title { font-size: 27px; }
  .lp-final-inner { flex-direction: column; align-items: flex-start; }
  .lp-footer { flex-direction: column; align-items: flex-start; text-align: left; }
  /* Calendly stacks the date picker above the time slots on narrow screens. */
  .lp-calendly-embed { height: 1000px; }
}
