/* ════════════════════════════════════════════════════════
   LANDING PAGE — smdrafter.com home
   Palette inherited from main.css (deep navy + blue + amber)
════════════════════════════════════════════════════════ */


/* ── Shared section helpers ──────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--blue-l);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-eyebrow::before { content: '——'; letter-spacing: -4px; }
.section-title {
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.08;
}
.section-sub { font-size: 15px; color: var(--text-g); line-height: 1.6; }

.lp-section__head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.lp-section__head .section-eyebrow::before { content: '——'; }

/* ── Buttons ─────────────────────────────────────────── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 11px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--t), border-color var(--t),
              transform var(--t), box-shadow var(--t), color var(--t);
  white-space: nowrap;
}
.lp-btn__arrow { transition: transform var(--t); }
.lp-btn:hover .lp-btn__arrow { transform: translateX(3px); }
.lp-btn:hover .lp-btn__arrow--down { transform: translateY(3px); }

.lp-btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,99,235,0.28);
}
.lp-btn--primary:hover {
  background: var(--blue-l);
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(37,99,235,0.42);
}
.lp-btn--secondary {
  background: rgba(255,255,255,0.05);
  color: var(--text-w);
  border-color: var(--border);
}
.lp-btn--secondary:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--border-b);
  transform: translateY(-2px);
}
.lp-btn--ghost {
  background: transparent;
  color: var(--text-gl);
  border-color: var(--border);
}
.lp-btn--ghost:hover {
  border-color: var(--border-b);
  color: var(--text-w);
  background: var(--blue-dim);
  transform: translateY(-2px);
}
.lp-btn--dark {
  background: var(--bg-card);
  color: var(--text-w);
  border-color: var(--border);
}
.lp-btn--dark .lp-btn__arrow { color: var(--text-g); }
.lp-btn--dark:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--border-b);
  transform: translateY(-2px);
}
.lp-btn--dark:hover .lp-btn__arrow { color: var(--text-w); }

/* ════════════════════════════════════════════════════════
   NAV
════════════════════════════════════════════════════════ */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 48px;
  height: 64px;
  background: rgba(7,12,24,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background var(--t), border-color var(--t), height var(--t);
}
.lp-nav.scrolled {
  background: rgba(7,12,24,0.88);
  border-bottom-color: var(--border);
  height: 58px;
}
.lp-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.lp-nav__brand img { width: 34px; height: 34px; object-fit: contain; }
.lp-nav__brand span {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-w);
  letter-spacing: 0.01em;
}

.lp-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.lp-nav__link {
  padding: 7px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-g);
  border-radius: 8px;
  transition: color var(--t), background var(--t);
}
.lp-nav__link:hover { color: var(--text-w); background: rgba(255,255,255,0.06); }
.lp-nav__cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: var(--blue);
  color: #fff;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 600;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.lp-nav__cta:hover {
  background: var(--blue-l);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(37,99,235,0.34);
}

/* ════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 160px;
  overflow: hidden;
}

/* Optional AI background image — drop assets/img/hero-bg.jpg then uncomment */
.lp-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/img/smbackground.jpg');
  background-size: cover;
  background-position: center;
  /* Darkening overlay keeps the title readable over any image */
  z-index: 0;
}
.lp-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 50% 42%, transparent 0%, rgba(7,12,24,0.55) 70%, rgba(7,12,24,0.9) 100%),
    linear-gradient(180deg, rgba(7,12,24,0.35) 0%, rgba(7,12,24,0.7) 100%);
}

/* Glow removed — no blue light behind title */
.lp-hero__glow { display: none; }

/* <picture> is a transparent wrapper — keep child <img> in normal flow */
picture { display: contents; }

.lp-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 920px;
}

.lp-hero__pill {
  margin-bottom: 30px;
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.30);
  color: #e8edf5;
  font-weight: 600;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lp-hero__title {
  font-size: clamp(32px, 8.5vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  white-space: nowrap;
  color: #f0f4f8;
  -webkit-text-stroke: 0.5px rgba(0,0,0,0.30);
  text-shadow:
    0 2px 2px rgba(0,0,0,0.45),
    0 4px 4px rgba(0,0,0,0.35),
    0 8px 12px rgba(0,0,0,0.55),
    0 16px 32px rgba(0,0,0,0.65),
    0 24px 48px rgba(0,0,0,0.50);
}

.lp-hero__subtitle {
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 600;
  color: var(--text-gl);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.lp-hero__subtitle span { color: var(--blue-l); margin: 0 6px; }

.lp-hero__desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-g);
  max-width: 540px;
  margin-bottom: 38px;
}

.lp-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 64px;
}

.lp-hero__scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-l);
  transition: color var(--t);
}
.lp-hero__scroll:hover { color: var(--blue-l); }
.lp-hero__scroll svg { animation: scroll-bob 1.8s ease-in-out infinite; }
@keyframes scroll-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(5px); }
}
@media (prefers-reduced-motion: reduce) {
  .lp-hero__scroll svg { animation: none; }
}

/* ════════════════════════════════════════════════════════
   STATS STRIP
════════════════════════════════════════════════════════ */
.lp-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: transparent;
}
.lp-stat {
  position: relative;
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.lp-stat__icon {
  width: 26px;
  height: 26px;
  color: rgba(255,255,255,0.75);
}
.lp-stat__value {
  display: block;
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.lp-stat__label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ════════════════════════════════════════════════════════
   PAIN → SOLUTION (selling section)
════════════════════════════════════════════════════════ */
.ps-section {
  padding: 100px 80px;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
}
.ps-head {
  max-width: 720px;
  margin-bottom: 52px;
}
.ps-title {
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 8px 0 14px;
}
.ps-sub {
  font-size: 16px;
  color: var(--text-g);
  line-height: 1.7;
}

.ps-rows {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.ps-row {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: stretch;
}

.ps-pain,
.ps-fix {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 26px 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
}
.ps-pain {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.09);
}
.ps-fix {
  background: var(--blue-dim);
  border-color: var(--border-b);
}

.ps-pain__icon,
.ps-fix__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ps-pain__icon {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-g);
}
.ps-fix__icon {
  background: rgba(37, 99, 235, 0.18);
  color: var(--blue-l);
}

.ps-pain__title,
.ps-fix__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-w);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  line-height: 1.25;
}
.ps-pain__desc,
.ps-fix__desc {
  font-size: 13.5px;
  line-height: 1.62;
}
.ps-pain__desc { color: var(--text-g); }
.ps-fix__desc  { color: var(--text-gl); }

.ps-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-g);
}

/* CTA */
.ps-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.ps-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  background: var(--blue);
  color: #fff;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}
.ps-cta__btn:hover { background: var(--blue-l); transform: translateY(-1px); }
.ps-cta__note { font-size: 13.5px; color: var(--text-g); }

@media (max-width: 860px) {
  .ps-rows { gap: 48px; }
  .ps-row { grid-template-columns: 1fr; gap: 3px; }
  .ps-arrow { transform: rotate(90deg); padding: 6px 0; }
}

/* ════════════════════════════════════════════════════════
   THE REMOTE ADVANTAGE (benefits)
════════════════════════════════════════════════════════ */
.benefits-section {
  padding: 100px 80px;
  background: var(--bg-dark);
}
.benefits__title {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 8px 0 52px;
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.benefit-card:hover {
  border-color: var(--blue-l);
  transform: translateY(-4px);
}
.benefit-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-l);
  flex-shrink: 0;
}
.benefit-card__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.benefit-card__desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-g);
}

/* ════════════════════════════════════════════════════════
   SELECTED WORK — survey cards
════════════════════════════════════════════════════════ */
.lp-work {
  position: relative;
  z-index: 1;
  padding: 30px 48px 110px;
}
.lp-work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1840px;
  margin: 0 auto;
}
.lp-work__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  box-shadow: 0 18px 44px rgba(0,0,0,0.45);
}
.lp-work__card:hover {
  border-color: var(--border-b);
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(0,0,0,0.6),
              0 0 0 1px rgba(59,130,246,0.2),
              0 0 40px rgba(37,99,235,0.1);
}
.lp-work__card .card__bp {
  margin: 14px 14px 0;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-deep);
}
.lp-work__card .card__bp img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.lp-work__card:hover .card__bp img { transform: scale(1.05); }
/* "CSV to TIN Surfaces" thumb — zoomed in to clarify thin linework */
.lp-work__card .card__bp--zoom img { transform: scale(1.6); transform-origin: left top; }
.lp-work__card:hover .card__bp--zoom img { transform: scale(1.68); }
.lp-work__card .card__bp--zoom-center img { transform-origin: center; }
.lp-work__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 16px;
}
.lp-work__body .card__label {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-gl);
}
.lp-work__view {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue-l);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--t), transform var(--t);
}
.lp-work__card:hover .lp-work__view { opacity: 1; transform: translateX(0); }

.lp-work__more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: fit-content;
  margin: 48px auto 0;
  padding: 15px 34px;
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--blue-l);
  border-radius: 11px;
  box-shadow: 0 8px 26px rgba(37,99,235,0.42), 0 0 0 6px rgba(37,99,235,0.10);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  animation: lp-more-pulse 2.6s ease-in-out infinite;
}
.lp-work__more svg { transition: transform var(--t); }
.lp-work__more:hover {
  background: var(--blue-l);
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(37,99,235,0.55), 0 0 0 8px rgba(37,99,235,0.14);
  animation: none;
}
.lp-work__more:hover svg { transform: translateX(4px); }
@keyframes lp-more-pulse {
  0%, 100% { box-shadow: 0 8px 26px rgba(37,99,235,0.42), 0 0 0 0 rgba(37,99,235,0.30); }
  50%      { box-shadow: 0 8px 26px rgba(37,99,235,0.42), 0 0 0 10px rgba(37,99,235,0); }
}
@media (prefers-reduced-motion: reduce) {
  .lp-work__more { animation: none; }
}

/* ════════════════════════════════════════════════════════
   CTA BAND
════════════════════════════════════════════════════════ */
.lp-cta {
  position: relative;
  z-index: 1;
  padding: 100px 48px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-dark);
}
.lp-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
}
.lp-cta__content {
  flex: 1;
  min-width: 0;
  text-align: left;
}
.lp-cta__eyebrow { justify-content: flex-start; }
.lp-cta__title {
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin-bottom: 16px;
}
.lp-cta__desc {
  font-size: 16px;
  color: var(--text-g);
  line-height: 1.65;
  margin-bottom: 34px;
}
.lp-cta__btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 470px;
}
.lp-cta__btns .lp-btn { width: 100%; justify-content: center; }
.lp-cta__btns .lp-btn--dark { justify-content: space-between; }
.lp-cta__wa, .lp-cta__wa:hover { border-color: transparent; }
.lp-cta__wa svg { color: var(--blue-l); flex-shrink: 0; transition: color var(--t); }
.lp-cta__wa:hover svg { color: var(--blue); }
.lp-cta__img-wrap {
  flex: 1.5;
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.55);
}
.lp-cta__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
.lp-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 26px 48px;
  background: var(--bg-deep);
}
.lp-footer p { font-size: 12.5px; color: var(--text-g); }
.lp-footer a { color: var(--text-g); transition: color var(--t); }
.lp-footer a:hover { color: var(--blue-l); }
.lp-footer__loc { white-space: nowrap; }

/* ════════════════════════════════════════════════════════
   CARD PREVIEW MODAL  (reused by js/index.js)
════════════════════════════════════════════════════════ */
.cmodal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}
.cmodal.open { opacity: 1; pointer-events: auto; }
.cmodal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 24, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.cmodal__wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 0;
  transform: translateY(22px);
  transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1);
}
.cmodal.open .cmodal__wrap { transform: translateY(0); }
.cmodal__frame {
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.84),
    0  0   0  1px rgba(59, 130, 246, 0.18),
    0  0  70px    rgba(37,  99, 235, 0.10);
  border-radius: var(--rl);
}
.cmodal__frame img {
  display: block;
  width: min(780px, 88vw);
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--rl);
}
.cmodal__caption {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-g);
  text-align: center;
}
.cmodal__close {
  position: absolute;
  top: -13px;
  right: -13px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-g);
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--t), color var(--t), background var(--t);
  z-index: 2;
}
.cmodal__close:hover {
  border-color: var(--blue);
  color: var(--blue-l);
  background: var(--blue-dim);
}

/* ════════════════════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .lp-work__grid { grid-template-columns: repeat(2, 1fr); }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .lp-stats { grid-template-columns: repeat(2, 1fr); }
  .lp-stats .lp-stat:nth-child(2) { border-right: none; }
  .lp-stats .lp-stat:nth-child(3) { border-top: 1px solid var(--border); }
  .lp-stats .lp-stat:nth-child(4) { border-top: 1px solid var(--border); }
}

@media (max-width: 768px) {
  /* ── Mobile perf: drop GPU-heavy blur, use lighter hero image ── */
  .lp-nav {
    backdrop-filter: none; -webkit-backdrop-filter: none;
    background: rgba(7,12,24,0.94);
  }
  .lp-nav.scrolled { background: rgba(7,12,24,0.97); }
  .lp-hero__pill { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(255,255,255,0.16); }
  .cmodal__backdrop { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(7,12,24,0.95); }
  .lp-hero__bg { background-image: url('../assets/img/smbackground-m.jpg'); }

  .lp-nav { padding: 0 20px; gap: 12px; }
  .lp-nav__links { display: none; }
  .lp-work { padding-left: 22px; padding-right: 22px; }
  .ps-section { padding: 60px 24px; }
  .ps-cta { gap: 14px; }
  .benefits-section { padding: 60px 24px; }
  .benefits__title { font-size: 28px; }
  .benefits__grid { grid-template-columns: 1fr; }
  .lp-cta { padding: 70px 22px; }
  .lp-cta__inner { flex-direction: column; gap: 36px; }
  .lp-cta__img-wrap { width: 100%; max-height: 260px; }
  .lp-cta__content { text-align: left; }
  .lp-footer { padding: 22px; justify-content: center; text-align: center; }
  .lp-footer__loc { width: 100%; }
}

@media (max-width: 600px) {
  .lp-hero { padding: 80px 20px 0; min-height: auto; flex-direction: column; justify-content: center; }
  .lp-hero__scroll { display: none; }
  .lp-hero__title {
    -webkit-text-stroke: none;
    text-shadow:
      0 2px 2px rgba(0,0,0,0.45),
      0 4px 8px rgba(0,0,0,0.50),
      0 10px 24px rgba(0,0,0,0.60);
  }
  .lp-hero__ctas { flex-direction: column; width: 100%; max-width: 320px; }
  .lp-hero__ctas .lp-btn { width: 100%; justify-content: center; }
  .lp-work__grid { grid-template-columns: 1fr; }
  .lp-stats {
    position: relative;
    grid-template-columns: repeat(2, 1fr);
    background: transparent;
    border-top: none;
    gap: 0;
    padding: 0;
  }
  .lp-stat {
    background: transparent;
    border: none;
    padding: 20px 12px;
  }
  .lp-cta__btns { grid-template-columns: 1fr; max-width: none; }
  .cmodal__close { top: -10px; right: -10px; width: 30px; height: 30px; font-size: 12px; }
}
