@import url('../../colors_and_type.css');
@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@400;500;600;700&display=swap');

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
body { margin: 0; padding: 0; background: #FBFBF7; color: var(--fg); font-family: var(--font-sans); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden; }
img, svg { max-width: 100%; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }

/* ============================================================
   PRIMITIVES
   ============================================================ */
.lp-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--font-sans); font-weight: 600; font-size: 14px; padding: 12px 20px; border-radius: 4px; border: 1px solid transparent; cursor: pointer; line-height: 1.1; text-decoration: none; transition: all 200ms var(--ease-out); letter-spacing: 0.005em; }
.lp-btn--lg { font-size: 15px; padding: 16px 26px; }
.lp-btn--primary { background: var(--navy-900); color: white; }
.lp-btn--primary:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(7,47,96,.28); }
.lp-btn--ghost { background: transparent; color: var(--navy-700); border-color: var(--slate-300); }
.lp-btn--ghost:hover { border-color: var(--navy-700); background: var(--slate-50); }
.lp-btn--ghost-dark { background: white; color: var(--navy-900); border-color: var(--navy-900); }
.lp-btn--ghost-dark:hover { background: var(--navy-900); color: white; }
.lp-btn--ghost-light { background: transparent; color: white; border-color: rgba(255,255,255,0.32); margin-top: 12px; align-self: flex-start; }
.lp-btn--ghost-light:hover { background: rgba(255,255,255,0.10); border-color: white; }
.lp-btn--whatsapp { background: #25D366; color: #052449; border: none; font-weight: 700; padding: 14px 16px; }
.lp-btn--whatsapp:hover { background: #1FBE5A; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37,211,102,0.32); }

/* Mono "tag" — used as section labels and identifiers (blueprint feel) */
.lp-tag { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.lp-tag__num { font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--blue-600); letter-spacing: 0.02em; background: var(--blue-50); padding: 3px 8px; border-radius: 3px; }
.lp-tag__label { font-family: var(--font-mono); font-weight: 600; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--slate-700); }
.lp-tag--on-dark .lp-tag__num { background: rgba(66,176,242,0.16); color: var(--blue-300); }
.lp-tag--on-dark .lp-tag__label { color: var(--blue-200); }

/* Eyebrow — simpler one-line label used inside the quote section + calibration */
.lp-eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.lp-eyebrow span { font-family: var(--font-mono); font-weight: 700; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue-600); background: var(--blue-50); padding: 5px 10px; border-radius: 3px; }
.lp-eyebrow--on-dark span { background: rgba(66,176,242,0.16); color: var(--blue-300); }

/* ============================================================
   NAV
   ============================================================ */
.lp-nav { position: sticky; top: 0; z-index: 50; background: rgba(251,251,247,0.92); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(7,23,47,0.08); }
.lp-nav__inner { max-width: 1320px; margin: 0 auto; padding: 16px 40px; display: flex; align-items: center; }
.lp-nav__brand img { height: auto;width: 180px;object-fit: contain; display: block; }
.lp-nav__links { display: flex; gap: 28px; flex: 1; }
.lp-nav__links a { color: var(--slate-700); font-size: 15px; font-weight: 500; text-decoration: none; transition: color 120ms; }
.lp-nav__links a:hover { color: var(--navy-900); }
.lp-nav__cta { display: flex; gap: 10px; align-items: center; }
.lp-nav__cta .lp-btn--ghost { padding: 10px 14px; font-size: 13px; font-family: var(--font-mono); font-weight: 600; letter-spacing: 0.02em; }
.lp-nav__cta .lp-btn--primary { padding: 11px 18px; font-size: 14px; }

/* Hamburger — hidden on desktop */
.lp-nav__burger {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--slate-300);
  border-radius: 6px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.lp-nav__burger:hover { border-color: var(--navy-700); }
.lp-nav__burger-bar {
  display: block;
  width: 18px; height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform 220ms var(--ease-out), opacity 200ms var(--ease-out);
  transform-origin: center;
}
.lp-nav__burger-bar.is-open-1 { transform: translateY(7px) rotate(45deg); }
.lp-nav__burger-bar.is-open-2 { opacity: 0; transform: scaleX(0.4); }
.lp-nav__burger-bar.is-open-3 { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.lp-nav__drawer {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #FBFBF7;
  z-index: 49;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 260ms var(--ease-out), transform 260ms var(--ease-out), visibility 0s linear 260ms;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.lp-nav__drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 280ms var(--ease-out), transform 280ms var(--ease-out), visibility 0s;
}
.lp-nav__drawer-inner {
  padding: 88px 24px 40px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  max-width: 560px;
  margin: 0 auto;
}
.lp-nav__drawer-links {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(7,23,47,0.08);
  margin-bottom: 28px;
}
.lp-nav__drawer-links a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 4px;
  border-bottom: 1px solid rgba(7,23,47,0.08);
  text-decoration: none;
  color: var(--navy-900);
  -webkit-tap-highlight-color: transparent;
  transition: background 160ms;
}
.lp-nav__drawer-links a:active { background: rgba(7,47,96,0.04); }
.lp-nav__drawer-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-600);
  letter-spacing: 0.04em;
  min-width: 28px;
}
.lp-nav__drawer-label {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.015em;
  flex: 1;
}
.lp-nav__drawer-links a svg { color: var(--slate-400); transition: transform 200ms, color 200ms; }
.lp-nav__drawer-links a:hover svg, .lp-nav__drawer-links a:active svg { color: var(--blue-600); transform: translateX(3px); }
.lp-nav__drawer-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-nav__drawer-cta .lp-btn { width: 100%; }
.lp-nav__drawer-foot {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-nav__drawer-tag, .lp-nav__drawer-iso {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--slate-500);
}
.lp-nav__drawer-iso { color: var(--blue-600); }

/* ============================================================
   HERO — Editorial × Blueprint
   ============================================================ */
.lp-hero { position: relative; overflow: hidden; padding: 30px 0 0; background: #FBFBF7; }
.lp-hero__bgGrid {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle, rgba(7,47,96,0.12) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(180deg, #FBFBF7 0%, #F1F5FA 100%);
  mask-image: linear-gradient(180deg, white 30%, rgba(255,255,255,0.4) 80%, transparent);
  pointer-events: none;
}
.lp-hero__crosshairs { position: absolute; inset: 32px 40px auto auto; pointer-events: none; }
.lp-cross { position: absolute; font-family: var(--font-mono); font-size: 14px; color: var(--blue-600); font-weight: 700; opacity: 0.55; }
.lp-cross--tl { top: 0; left: 0; }
.lp-cross--tr { top: 0; right: 0; }
.lp-cross--bl { bottom: 0; left: 0; }
.lp-cross--br { bottom: 0; right: 0; }
/* Render crosshairs full-bleed */
.lp-hero__crosshairs { inset: 32px 40px; }

.lp-hero__inner { position: relative; max-width: 1320px; margin: 0 auto; padding: 56px 40px 96px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }

.lp-hero__title {
  font-family: "Fraunces", "Space Grotesk", serif;
  font-weight: 500;
  font-size: clamp(48px, 5.6vw, 80px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--navy-900);
  margin: 0 0 32px;
  display: flex; flex-direction: column;
}
.lp-hero__title em {
  font-style: italic;
  color: var(--blue-600);
  font-weight: 500;
}
.lp-hero__line-1 { font-weight: 400; }
.lp-hero__line-2 { font-weight: 500; }
.lp-hero__line-3 { font-weight: 500; }
.lp-hero__line-4 { font-family: var(--font-sans); font-size: 0.42em; font-weight: 500; color: var(--slate-700); margin-top: 16px; letter-spacing: -0.005em; line-height: 1.2; max-width: 28ch; }

.lp-hero__divider { display: flex; align-items: center; gap: 14px; margin: 0 0 24px; }
.lp-hero__divider-tag { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: var(--blue-700); background: var(--blue-50); padding: 5px 10px; border-radius: 999px; border: 1px solid var(--blue-200); }
.lp-hero__divider-line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--blue-200), transparent); }

.lp-hero__sub { font-size: 18px; line-height: 1.65; color: var(--slate-700); max-width: 580px; margin: 0 0 36px; }
.lp-hero__sub strong { color: var(--navy-900); font-weight: 600; }

.lp-hero__cta { display: flex; gap: 10px; flex-wrap: wrap; }

/* Schematic SVG */
.lp-hero__schematic { display: flex; justify-content: center; }
.lp-svg { width: 100%; max-width: 560px; height: auto; }

/* Below-fold rail with 4 highlights */
.lp-hero__rail { background: var(--navy-900); color: white; position: relative; overflow: hidden; }
.lp-hero__rail::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px) 0 0 / 24px 24px;
  pointer-events: none;
}
.lp-hero__rail-inner { position: relative; max-width: 1320px; margin: 0 auto; padding: 36px 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.lp-railitem { padding: 0 28px; border-right: 1px solid rgba(255,255,255,0.10); }
.lp-railitem:first-child { padding-left: 0; }
.lp-railitem:last-child { border-right: none; padding-right: 0; }
.lp-railitem__v { font-family: "Fraunces", serif; font-weight: 600; font-size: 44px; color: white; line-height: 1; letter-spacing: -0.02em; }
.lp-railitem__l { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: var(--blue-300); margin-top: 8px; }
.lp-railitem__d { font-size: 13px; color: var(--blue-200); margin-top: 8px; line-height: 1.5; }

/* ============================================================
   GENERIC SECTION
   ============================================================ */
.lp-section { max-width: 1320px; margin: 0 auto; padding: 120px 40px; }
.lp-section__head { max-width: 800px; margin-bottom: 72px; }
.lp-section__head h2 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--navy-900);
  margin: 0 0 18px;
}
.lp-section__head h2 em { font-style: italic; color: var(--blue-600); font-weight: 500; }
.lp-section__head p { font-size: 17px; line-height: 1.65; color: var(--slate-600); margin: 0; max-width: 620px; }

/* ============================================================
   SERVICES — Bold visual tiles
   ============================================================ */
.lp-svc__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.lp-svc__tile {
  position: relative;
  border-radius: 12px; overflow: hidden;
  display: grid; grid-template-rows: 200px auto;
  transition: all 240ms var(--ease-out);
  scroll-margin-top: 100px;
  border: 1px solid rgba(7,23,47,0.06);
}
.lp-svc__tile:hover { transform: translateY(-3px); box-shadow: 0 24px 56px rgba(7,23,47,0.10); }
.lp-svc__tile--light { background: #F1F5FA; color: var(--navy-700); }
.lp-svc__tile--dark { background: var(--navy-900); color: var(--blue-300); }
.lp-svc__illo { display: flex; align-items: center; justify-content: center; padding: 24px; border-bottom: 1px solid rgba(7,23,47,0.08); position: relative; overflow: hidden; }
.lp-svc__tile--dark .lp-svc__illo { border-bottom-color: rgba(255,255,255,0.10); }
.lp-illo { width: 100%; height: 100%; max-height: 180px; }
.lp-svc__body { background: white; padding: 28px 28px 32px; position: relative; }
.lp-svc__num { position: absolute; top: 24px; right: 28px; font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: var(--blue-600); letter-spacing: 0.08em; }
.lp-svc__body h3 { font-family: "Fraunces", serif; font-weight: 500; font-size: 28px; line-height: 1.05; letter-spacing: -0.02em; color: var(--navy-900); margin: 0 0 6px; }
.lp-svc__sub { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.06em; color: var(--blue-600); text-transform: uppercase; margin-bottom: 14px; }
.lp-svc__lead { font-size: 14.5px; line-height: 1.55; color: var(--slate-700); margin: 0 0 18px; }
.lp-svc__body ul { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 6px; }
.lp-svc__body li { font-size: 13.5px; color: var(--slate-700); padding-left: 18px; position: relative; line-height: 1.5; }
.lp-svc__body li::before { content: "→"; position: absolute; left: 0; top: 0; color: var(--blue-500); font-family: var(--font-mono); font-weight: 700; font-size: 14px; }
.lp-svc__actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.lp-svc__cta {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--navy-900); font-weight: 600; font-size: 14px;
  text-decoration: none;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--navy-900);
  padding: 0 0 2px;
  cursor: pointer;
  font-family: inherit;
  transition: all 160ms;
}
.lp-svc__cta:hover { color: var(--blue-600); border-bottom-color: var(--blue-600); }
.lp-svc__cta svg { transition: transform 200ms; }
.lp-svc__cta:hover svg { transform: translateX(4px); }
.lp-svc__cta--alt {
  color: var(--blue-600);
  border-bottom-color: transparent;
}
.lp-svc__cta--alt:hover { border-bottom-color: var(--blue-600); }

/* ============================================================
   BRANDS — Partner logo grid + secondary marquee
   ============================================================ */
.lp-brands { background: var(--navy-900); color: white; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); position: relative; overflow: hidden; }
.lp-brands::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px) 0 0 / 24px 24px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.lp-brands__inner { position: relative; max-width: 1320px; margin: 0 auto; padding: 96px 40px 80px; }

.lp-brands__head { max-width: 760px; margin-bottom: 56px; }
.lp-brands__title {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: white;
  margin: 0 0 16px;
}
.lp-brands__title em { font-style: italic; color: var(--blue-400); font-weight: 500; }
.lp-brands__sub { font-size: 16px; line-height: 1.6; color: var(--blue-200); margin: 0; max-width: 560px; }

/* Logo grid */
.lp-brands__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.lp-brand-card {
  --brand-accent: var(--blue-400);
  background: white;
  border: none;
  border-radius: 10px;
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
  min-height: 132px;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.lp-brand-card__arrow {
  position: absolute;
  top: 12px; right: 12px;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  color: #C2CBD8;
  transition: color 220ms, transform 220ms;
}
.lp-brand-card:hover .lp-brand-card__arrow {
  color: var(--brand-accent);
  transform: translate(2px, -2px);
}
.lp-brand-card::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--brand-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms var(--ease-out);
}
.lp-brand-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}
.lp-brand-card:hover::before { transform: scaleX(1); }
.lp-brand-card__mark {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.lp-brand-card__mark svg {
  height: 100%;
  width: auto;
  max-width: 100%;
  display: block;
}
.lp-brand-card__caption {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #5B6473;
  text-transform: uppercase;
  text-align: center;
}

/* Secondary "plus more" marquee */
.lp-brands__more {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0 4px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.lp-brands__more-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--blue-300);
  flex: none;
  padding-top: 2px;
}
.lp-brands__more-marquee {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, white 6%, white 94%, transparent);
}
.lp-brands__more-track {
  display: flex;
  align-items: center;
  animation: marq 38s linear infinite;
  width: max-content;
}
.lp-brands__more-item {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  white-space: nowrap;
}
.lp-brands__more-dot {
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--blue-400);
  border-radius: 999px;
  margin-left: 20px;
}
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   CALIBRATION (dark) — kept from v1, restyled
   ============================================================ */
.lp-cal { background: #061528; color: white; position: relative; overflow: hidden; }
.lp-cal::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px) 0 0 / 28px 28px; pointer-events: none; }
.lp-cal__inner { position: relative; max-width: 1320px; margin: 0 auto; padding: 120px 40px; }
.lp-cal__inner .lp-section__head h2 { color: white; }
.lp-cal__inner .lp-section__head p { color: var(--blue-200); }
.lp-cal__inner .lp-section__head p strong { color: white; }
.lp-cal__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.lp-cal__col { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10); border-radius: 12px; padding: 36px; display: flex; flex-direction: column; }
.lp-cal__col h3 { font-family: "Fraunces", serif; font-weight: 500; font-size: 30px; color: white; margin: 0 0 8px; letter-spacing: -0.02em; }
.lp-cal__lead { color: var(--blue-200); font-size: 15px; margin: 0 0 24px; line-height: 1.6; }
.lp-cal__col ul { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.lp-cal__col li { font-size: 14.5px; color: var(--blue-100); padding-left: 22px; position: relative; line-height: 1.5; }
.lp-cal__col li::before { content: ""; position: absolute; left: 0; top: 8px; width: 10px; height: 2px; background: var(--blue-400); border-radius: 2px; }
.lp-cal__caption { margin-top: 32px; padding: 18px 24px; background: rgba(66,176,242,0.10); border: 1px solid rgba(66,176,242,0.30); border-radius: 8px; display: inline-flex; align-items: center; gap: 14px; color: white; font-size: 15px; line-height: 1.5;}
.lp-cal__caption span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--blue-300); font-weight: 700; flex: none;}

/* ============================================================
   STATS — animated counters
   ============================================================ */
.lp-stats { background: #FBFBF7; padding: 120px 0; position: relative; overflow: hidden;}
.lp-stats::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle, rgba(7,47,96,0.08) 1px, transparent 1px) 0 0 / 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.lp-stats__inner { position: relative; max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.lp-stats__head { margin-bottom: 64px; max-width: 700px; }
.lp-stats__head h2 { font-family: "Fraunces", serif; font-weight: 500; font-size: clamp(40px, 4vw, 60px); line-height: 1.0; letter-spacing: -0.025em; color: var(--navy-900); margin: 0; }
.lp-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.lp-stat { padding: 32px 28px 32px 0; border-right: 1px solid rgba(7,23,47,0.10);}
.lp-stat:first-child { padding-left: 0; }
.lp-stat:last-child { border-right: none; padding-right: 0; }
.lp-stat__v { font-family: "Fraunces", serif; font-weight: 500; font-size: clamp(56px, 6vw, 96px); line-height: 1; color: var(--navy-900); letter-spacing: -0.035em; font-feature-settings: "tnum" 1, "lnum" 1; }
.lp-stat__l { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: var(--blue-600); margin-top: 18px; text-transform: uppercase;}
.lp-stat__d { font-size: 14px; color: var(--slate-600); margin-top: 12px; line-height: 1.5; max-width: 220px;}

/* ============================================================
   PROCESS DIAGRAM
   ============================================================ */
.lp-process { background: white; }
.lp-process__inner { max-width: 1320px; margin: 0 auto; padding: 120px 40px; }
.lp-process__flow { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.lp-process__connector { position: absolute; top: 36px; left: 0; right: 0; height: 40px; width: 100%; z-index: 0; }
.lp-step { position: relative; z-index: 1; text-align: left; padding-right: 16px;}
.lp-step__circle { width: 72px; height: 72px; border-radius: 999px; background: white; border: 1.5px solid var(--navy-900); display: flex; align-items: center; justify-content: center; color: var(--navy-900); position: relative; margin-bottom: 24px; box-shadow: 0 6px 16px rgba(7,23,47,0.05); }
.lp-step__icon svg { width: 28px; height: 28px; }
.lp-step__num { position: absolute; top: -4px; right: -8px; font-family: var(--font-mono); font-size: 10px; font-weight: 700; color: white; background: var(--blue-600); padding: 3px 7px; border-radius: 999px; letter-spacing: 0.05em; }
.lp-step__t { font-family: "Fraunces", serif; font-weight: 500; font-size: 28px; color: var(--navy-900); margin: 0 0 8px; letter-spacing: -0.02em; line-height: 1; }
.lp-step__d { font-size: 14px; line-height: 1.55; color: var(--slate-600); margin: 0; max-width: 230px;}

/* ============================================================
   INDUSTRIES — bold visual tiles with iconography
   ============================================================ */
.lp-ind__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lp-ind__tile {
  background: white; border: 1px solid rgba(7,23,47,0.08); border-radius: 10px;
  padding: 28px 24px; position: relative;
  transition: all 200ms var(--ease-out); overflow: hidden;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
}
.lp-ind__tile::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--blue-500); transform: scaleY(0); transform-origin: bottom; transition: transform 220ms var(--ease-out);
}
.lp-ind__tile:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(7,23,47,0.08); border-color: var(--blue-300); }
.lp-ind__tile:hover::before { transform: scaleY(1); }
.lp-ind__icon { display: inline-flex; width: 44px; height: 44px; border-radius: 10px; background: var(--blue-50); color: var(--blue-700); align-items: center; justify-content: center; margin-bottom: 18px; transition: all 200ms;}
.lp-ind__tile:hover .lp-ind__icon { background: var(--navy-900); color: var(--blue-300); }
.lp-ind__tile h3 { font-family: "Fraunces", serif; font-weight: 500; font-size: 22px; color: var(--navy-900); margin: 0 0 8px; line-height: 1.1; letter-spacing: -0.015em; }
.lp-ind__tile p { font-size: 13.5px; line-height: 1.55; color: var(--slate-600); margin: 0;}
.lp-ind__arrow { position: absolute; top: 28px; right: 24px; color: var(--slate-300); transition: all 220ms;}
.lp-ind__tile:hover .lp-ind__arrow { color: var(--blue-600); transform: translate(2px, -2px); }

/* ============================================================
   MANPOWER — dramatic dark section
   ============================================================ */
.lp-manpower { background: var(--navy-900); color: white; position: relative; overflow: hidden;}
.lp-manpower::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px) 0 0 / 24px 24px; pointer-events: none; }
.lp-manpower__inner { position: relative; max-width: 1320px; margin: 0 auto; padding: 100px 40px; display: grid; grid-template-columns: 1.1fr 1.4fr; gap: 64px; align-items: center;}
.lp-manpower__copy h2 { font-family: "Fraunces", serif; font-weight: 500; font-size: clamp(40px, 4vw, 56px); line-height: 1.0; letter-spacing: -0.025em; color: white; margin: 0 0 18px; }
.lp-manpower__copy h2 em { font-style: italic; color: var(--blue-400); }
.lp-manpower__copy p { font-size: 17px; line-height: 1.7; color: var(--blue-200); margin: 0; }
.lp-manpower__copy strong { color: white; font-weight: 600; }
.lp-manpower__roles { display: flex; flex-direction: column; gap: 14px;}
.lp-role { background: rgba(255,255,255,0.04); padding: 22px 24px 22px 28px; border-radius: 8px; position: relative; transition: all 200ms; }
.lp-role:hover { background: rgba(255,255,255,0.07); transform: translateX(4px); }
.lp-role__bar { position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--blue-400); }
.lp-role h3 { font-family: "Fraunces", serif; font-weight: 500; font-size: 22px; color: white; margin: 0 0 6px; letter-spacing: -0.015em; }
.lp-role p { font-size: 14.5px; color: var(--blue-200); margin: 0; line-height: 1.55; }

/* ============================================================
   FAQ
   ============================================================ */
.lp-faq__list { display: flex; flex-direction: column; gap: 8px; max-width: 920px; }
.lp-faq__item { background: white; border: 1px solid rgba(7,23,47,0.08); border-radius: 8px; transition: all 160ms var(--ease-out); }
.lp-faq__item[open] { border-color: var(--blue-500); box-shadow: 0 8px 24px rgba(7,47,96,0.06); }
.lp-faq__item summary { list-style: none; cursor: pointer; padding: 22px 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: "Fraunces", serif; font-weight: 500; font-size: 20px; color: var(--navy-900); letter-spacing: -0.015em; }
.lp-faq__item summary::-webkit-details-marker { display: none; }
.lp-faq__item summary svg { color: var(--slate-500); transition: transform 200ms var(--ease-out); flex: none; }
.lp-faq__item[open] summary svg { transform: rotate(180deg); color: var(--blue-600); }
.lp-faq__item > div { padding: 0 28px 26px; }
.lp-faq__item p { font-size: 15.5px; line-height: 1.7; color: var(--slate-700); margin: 0; }

/* ============================================================
   QUOTE FORM
   ============================================================ */
.lp-quote { background: #FBFBF7; border-top: 1px solid rgba(7,23,47,0.08); position: relative; overflow: hidden;}
.lp-quote::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle, rgba(7,47,96,0.10) 1px, transparent 1px) 0 0 / 28px 28px;
  mask-image: radial-gradient(ellipse 60% 60% at 70% 50%, black, transparent 75%);
  pointer-events: none;
}
.lp-quote__inner { position: relative; max-width: 1320px; margin: 0 auto; padding: 100px 40px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: start; }
.lp-quote__form h2 { font-family: "Fraunces", serif; font-weight: 500; font-size: clamp(40px, 4vw, 56px); line-height: 1.0; letter-spacing: -0.025em; color: var(--navy-900); margin: 0 0 14px; }
.lp-quote__sub { font-size: 17px; color: var(--slate-600); margin: 0 0 32px; line-height: 1.6;}
.lp-form { display: flex; flex-direction: column; gap: 16px; background: white; padding: 32px; border-radius: 14px; border: 1px solid rgba(7,23,47,0.08); }
.lp-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lp-field { display: flex; flex-direction: column; gap: 6px; }
.lp-field > span { font-size: 11.5px; font-weight: 700; color: var(--slate-700); letter-spacing: 0.08em; text-transform: uppercase; font-family: var(--font-mono);}
.lp-field em { color: var(--danger-500); font-style: normal;}
.lp-field input, .lp-field select, .lp-field textarea {
  font-family: var(--font-sans); font-size: 15px;
  padding: 13px 16px; border: 1px solid transparent;
  border-radius: 8px; background: #F1F5FA; color: var(--navy-900);
  outline: none; transition: all 200ms var(--ease-out);
}
.lp-field input::placeholder, .lp-field textarea::placeholder { color: var(--slate-400); }
.lp-field input:hover, .lp-field select:hover, .lp-field textarea:hover { background: #EAF0F7; }
.lp-field input:focus, .lp-field select:focus, .lp-field textarea:focus {
  background: white; border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(66,176,242,0.18);
}
.lp-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B7585' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px;
}
.lp-field textarea { resize: vertical; min-height: 110px; }
.lp-form__submit { display: flex; align-items: center; gap: 16px; margin-top: 8px; flex-wrap: wrap;}
.lp-form__legal { font-size: 12.5px; color: var(--slate-500); max-width: 280px; line-height: 1.5;}

.lp-quote__thanks { background: white; border: 1px solid rgba(7,23,47,0.08); border-radius: 14px; padding: 40px; text-align: left;}
.lp-quote__thanks-tick { width: 64px; height: 64px; border-radius: 999px; background: var(--success-100); color: var(--success-500); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px;}
.lp-quote__thanks h3 { font-family: "Fraunces", serif; font-weight: 500; font-size: 32px; color: var(--navy-900); margin: 0 0 10px; letter-spacing: -0.02em;}
.lp-quote__thanks p { font-size: 16px; color: var(--slate-600); margin: 0 0 22px; line-height: 1.65;}

.lp-quote__rail { background: var(--navy-900); color: white; border-radius: 14px; padding: 32px; position: sticky; top: 100px;}
.lp-quote__rail h3 { font-family: "Fraunces", serif; font-weight: 500; font-size: 22px; color: white; margin: 0 0 22px; letter-spacing: -0.015em; line-height: 1.2; }
.lp-direct { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 20px;}
.lp-direct li { padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.10);}
.lp-direct li:last-child { border-bottom: none; padding-bottom: 0; }
.lp-direct__l { font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; color: var(--blue-300); text-transform: uppercase; margin-bottom: 8px;}
.lp-direct__v { display: block; font-size: 15px; color: white; font-weight: 500; text-decoration: none; line-height: 1.5;}
.lp-direct__v:hover { color: var(--blue-300);}
.lp-direct__addr { font-style: normal; font-size: 14px; color: var(--blue-200); line-height: 1.6;}
.lp-direct__sla { margin-top: 22px; padding: 14px 16px; background: rgba(66,176,242,0.12); border-radius: 8px; font-size: 13px; color: var(--blue-100); line-height: 1.5;}
.lp-direct__sla strong { display: block; color: white; font-weight: 700; margin-bottom: 2px;}

/* ============================================================
   FOOTER
   ============================================================ */
.lp-footer { background: #03101F; color: var(--blue-200); padding: 80px 0 24px;}
.lp-footer__inner { max-width: 1320px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1.2fr 2.8fr; gap: 64px;}
.lp-footer__brand { display: flex; gap: 18px; align-items: flex-start;}
.lp-footer__brand img { height: 64px; flex: none; }
.lp-footer__brand strong { display: block; color: white; font-size: 16px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.005em; font-family: "Fraunces", serif;}
.lp-footer__brand p { font-size: 13.5px; line-height: 1.65; color: var(--blue-200); margin: 0; max-width: 320px;}
.lp-footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;}
.lp-footer__h { font-family: var(--font-mono); font-weight: 700; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-300); margin-bottom: 16px;}
.lp-footer__cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px;}
.lp-footer__cols a { color: var(--blue-200); font-size: 13.5px; text-decoration: none;}
.lp-footer__cols a:hover { color: white; text-underline-offset: 3px;}
.lp-footer address { font-style: normal; font-size: 13.5px; line-height: 1.65; color: var(--blue-200);}
.lp-footer__map { display: inline-block; margin-top: 10px; color: var(--blue-400); font-size: 13px; text-decoration: none; font-weight: 600;}
.lp-footer__map:hover { color: white;}
.lp-footer__bar { max-width: 1320px; margin: 56px auto 0; padding: 24px 40px 0; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-family: var(--font-mono); font-size: 11.5px; color: var(--blue-300); letter-spacing: 0.06em;}

/* ============================================================
   CALIBRATION action row (two buttons per col)
   ============================================================ */
.lp-cal__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: auto; }
.lp-cal__more {
  background: transparent;
  border: none;
  color: var(--blue-300);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 160ms, border-color 160ms;
}
.lp-cal__more:hover { color: white; border-bottom-color: var(--blue-400); }

/* ============================================================
   FORM — extras: error states, spinner, thanks meta
   ============================================================ */
.lp-field__err {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--danger-500);
  margin-top: 2px;
  letter-spacing: 0;
  text-transform: none;
}
.lp-field--err input,
.lp-field--err select,
.lp-field--err textarea {
  background: #FFF5F5;
  border-color: var(--danger-500) !important;
  box-shadow: 0 0 0 4px rgba(220,38,38,0.10);
}
.lp-spinner {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.32);
  border-top-color: white;
  border-radius: 999px;
  animation: lp-spin 0.7s linear infinite;
}
@keyframes lp-spin { to { transform: rotate(360deg); } }

.lp-quote__thanks-meta {
  display: grid;
  gap: 8px;
  margin: 20px 0 24px;
  padding: 16px 18px;
  background: #F1F5FA;
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--navy-700);
  line-height: 1.5;
}
.lp-quote__thanks-meta div { display: flex; gap: 8px; align-items: baseline; }
.lp-quote__thanks-meta span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue-600);
  min-width: 72px;
  flex: none;
}

.lp-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ============================================================
   MODAL — universal dialog used by service/industry/brand/calval
   ============================================================ */
.lp-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  animation: lp-modal-in 220ms var(--ease-out);
}
@keyframes lp-modal-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.lp-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 16, 31, 0.72);
  backdrop-filter: blur(4px);
  border: none;
  padding: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.lp-modal__card {
  position: relative;
  width: 100%;
  max-width: 920px;
  max-height: calc(100vh - 64px);
  background: #FBFBF7;
  border-radius: 14px;
  box-shadow: 0 32px 80px rgba(3,16,31,0.45);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 56px 56px 32px;
  animation: lp-modal-card-in 280ms var(--ease-out);
}
@keyframes lp-modal-card-in {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.lp-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(7,23,47,0.10);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--navy-900);
  transition: all 180ms var(--ease-out);
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
}
.lp-modal__close:hover { background: var(--navy-900); color: white; border-color: var(--navy-900); transform: rotate(90deg); }

.lp-modal__head { margin-bottom: 28px; }
.lp-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--slate-700);
}
.lp-modal__num {
  background: var(--blue-50);
  color: var(--blue-600);
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.04em;
}
.lp-modal__title {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin: 0 0 10px;
}
.lp-modal__title em { font-style: italic; color: var(--blue-600); font-weight: 500; }
.lp-modal__lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-700);
  margin: 0;
  max-width: 64ch;
}

.lp-modal__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 8px 0 28px;
}
.lp-modal__panel {
  background: white;
  border: 1px solid rgba(7,23,47,0.08);
  border-radius: 10px;
  padding: 22px 22px 24px;
}
.lp-modal__panel--illo {
  background: #F1F5FA;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  min-height: 180px;
  color: var(--navy-700);
}
.lp-modal__panel--illo .lp-illo { max-height: 200px; }
.lp-modal__panel--meta { background: var(--navy-900); border: none; color: white; padding: 24px; }
.lp-modal__metarow { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.10); }
.lp-modal__metarow:first-child { padding-top: 0; }
.lp-modal__metarow:last-child { padding-bottom: 0; border-bottom: none; }
.lp-modal__metalabel { font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; color: var(--blue-300); margin-bottom: 6px; }
.lp-modal__metavalue { font-size: 14.5px; color: white; line-height: 1.5; }

.lp-modal__h3 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  margin: 0 0 12px;
}
.lp-modal__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-modal__list li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--slate-700);
  padding-left: 20px;
  position: relative;
}
.lp-modal__list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--blue-600);
  font-weight: 700;
  font-family: var(--font-mono);
  font-size: 13px;
}

.lp-modal__detail {
  background: white;
  border: 1px solid rgba(7,23,47,0.08);
  border-radius: 10px;
  padding: 22px 24px;
  margin-bottom: 24px;
}
.lp-modal__detail p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--slate-700);
  margin: 0 0 18px;
}
.lp-modal__deliverables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.lp-modal__deliverable {
  background: #F1F5FA;
  border-radius: 8px;
  padding: 14px 16px;
}
.lp-modal__deliverable-t {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 15.5px;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.lp-modal__deliverable-d {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--slate-700);
}

/* Brand modal — mark sits in a white plate */
.lp-modal__brandmark {
  background: white;
  border: 1px solid rgba(7,23,47,0.08);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  border-top: 4px solid var(--brand-accent, var(--blue-500));
}
.lp-modal__brandmark svg { height: 52px; width: auto; }
.lp-modal__products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.lp-modal__product {
  background: white;
  border: 1px solid rgba(7,23,47,0.08);
  border-radius: 10px;
  padding: 18px 20px;
}
.lp-modal__product-t {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--navy-900);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.lp-modal__product-d { font-size: 13.5px; line-height: 1.55; color: var(--slate-700); }

/* Calibration scope table */
.lp-modal__table {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
  border-top: 1px solid rgba(7,23,47,0.08);
}
.lp-modal__row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(7,23,47,0.08);
}
.lp-modal__row-t {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--navy-900);
  letter-spacing: -0.005em;
}
.lp-modal__row-d { font-size: 13.5px; line-height: 1.55; color: var(--slate-700); }

/* Modal CTA footer */
.lp-modal__foot {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid rgba(7,23,47,0.08);
  margin-top: 8px;
}

/* ============================================================
   BACK TO TOP — floating button
   ============================================================ */
.lp-totop {
  position: fixed;
  bottom: 62px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--navy-900);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  visibility: hidden;
  transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out), visibility 0s linear 220ms, background 160ms;
  box-shadow: 0 12px 28px rgba(7,23,47,0.28);
  z-index: 40;
  -webkit-tap-highlight-color: transparent;
}
.lp-totop.is-show {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
  transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out), visibility 0s, background 160ms;
}
.lp-totop:hover { background: var(--blue-600); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  /* Drawer relies on a visibility transition-delay to hide-after-fade.
     With transitions effectively disabled, force the static states explicitly
     so the open/closed visibility actually applies. */
  .lp-nav__drawer { transition: none !important; transition-delay: 0s !important; }
  .lp-nav__drawer:not(.is-open) { visibility: hidden; opacity: 0; transform: none; }
  .lp-nav__drawer.is-open { visibility: visible; opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE · 3-tier system
   - Desktop (default, > 1024px)
   - Tablet  (641px – 1024px)
   - Mobile  (≤ 640px)
   ============================================================ */

/* ---------- TABLET (641px – 1024px) ---------- */
@media (max-width: 1024px) {
  html { scroll-padding-top: 72px; }

  /* Nav: hide secondary links, keep primary CTA + phone (icon only on smaller) */
  .lp-nav__inner { padding: 14px 28px; }
  .lp-nav__links { display: none; }
  .lp-nav__burger { display: flex; }
  .lp-nav__cta { gap: 8px; }
  .lp-nav__cta .lp-btn--ghost { padding: 10px 12px; }

  /* Hero */
  .lp-hero { padding: 40px 0 0; }
  .lp-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 40px 28px 72px;
  }
  .lp-hero__schematic { order: 2; max-width: 560px; margin: 0 auto; width: 100%; }
  .lp-hero__crosshairs { inset: 24px 28px; }
  .lp-hero__sub { font-size: 17px; max-width: 100%; }
  .lp-hero__rail-inner {
    grid-template-columns: repeat(4, 1fr);
    padding: 32px 28px;
    gap: 0;
  }
  .lp-railitem { padding: 0 20px; }
  .lp-railitem__v { font-size: 36px; }

  /* Generic section */
  .lp-section { padding: 88px 28px; }
  .lp-section__head { margin-bottom: 56px; }

  /* Services — 2 cols still works at tablet */
  .lp-svc__grid { gap: 20px; }

  /* Calibration */
  .lp-cal__inner { padding: 88px 28px; }
  .lp-cal__grid { gap: 20px; }
  .lp-cal__col { padding: 28px; }

  /* Stats — keep 4 cols but tighten */
  .lp-stats { padding: 88px 0; }
  .lp-stats__inner { padding: 0 28px; }
  .lp-stat { padding: 24px 20px 24px 0; }
  .lp-stat__d { font-size: 13px; }

  /* Process — 2x2 grid */
  .lp-process__inner { padding: 88px 28px; }
  .lp-process__flow { grid-template-columns: 1fr 1fr; row-gap: 44px; }
  .lp-process__connector { display: none; }

  /* Industries 2x4 */
  .lp-ind__grid { grid-template-columns: repeat(2, 1fr); }

  /* Manpower */
  .lp-manpower__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 28px;
  }

  /* Quote */
  .lp-quote__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 80px 28px;
  }
  .lp-quote__rail { position: static; }

  /* Footer */
  .lp-footer__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 28px;
  }
  .lp-footer__cols { grid-template-columns: repeat(4, 1fr); }
  .lp-footer__bar { padding: 24px 28px 0; }

  /* Brands marquee — slightly smaller */
  .lp-brands__inner { padding: 80px 28px 64px; }
  .lp-brands__head { margin-bottom: 44px; }
  .lp-brands__grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .lp-brand-card { padding: 26px 18px 20px; min-height: 116px; }
  .lp-brand-card__mark { height: 38px; }
  .lp-brands__more-item { font-size: 16px; padding: 0 16px; }

  /* Modal */
  .lp-modal { padding: 24px; }
  .lp-modal__card { padding: 44px 36px 28px; max-height: calc(100vh - 48px); }
  .lp-modal__split { grid-template-columns: 1fr; gap: 16px; }
  .lp-modal__deliverables { grid-template-columns: 1fr 1fr; }
  .lp-modal__products { grid-template-columns: 1fr 1fr; }
  .lp-modal__panel--illo { min-height: 160px; }
}

/* ---------- MOBILE (≤ 640px) ---------- */
@media (max-width: 640px) {
  html { scroll-padding-top: 64px; }

  /* Buttons — full-width feel + 44px tap target */
  .lp-btn { padding: 14px 18px; font-size: 14px; min-height: 44px; }
  .lp-btn--lg { padding: 16px 20px; font-size: 15px; min-height: 48px; }

  /* Nav */
  .lp-nav__inner { padding: 12px 18px;}
  /* .lp-nav__brand img { height: 30px; } */
  .lp-nav__phone { display: none; }
  .lp-nav__cta .lp-btn--primary.lp-nav__quote {
    padding: 9px 14px;
    font-size: 13px;
    min-height: 40px;
  }

  /* Drawer */
  .lp-nav__drawer-inner { padding: 76px 20px 32px; }
  .lp-nav__drawer-label { font-size: 22px; }
  .lp-nav__drawer-links a { padding: 18px 4px; }

  /* Hero */
  .lp-hero { padding: 24px 0 0; }
  .lp-hero__inner {
    padding: 24px 20px 56px;
    gap: 36px;
  }
  .lp-hero__crosshairs { inset: 14px 18px; }
  .lp-cross { font-size: 12px; }
  .lp-hero__title {
    font-size: clamp(40px, 12vw, 56px);
    margin: 0 0 24px;
  }
  .lp-hero__line-4 { font-size: 17px; margin-top: 14px; max-width: 100%; }
  .lp-hero__sub { font-size: 16px; line-height: 1.6; margin: 0 0 28px; }
  .lp-hero__divider { flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
  .lp-hero__divider-line { min-width: 40px; }
  .lp-hero__cta { gap: 10px; }
  .lp-hero__cta .lp-btn { flex: 1 1 100%; }
  .lp-hero__cta .lp-btn--whatsapp { flex: 0 0 auto; min-width: 56px; }
  .lp-hero__schematic { max-width: 100%; }

  /* Rail — 2x2 */
  .lp-hero__rail-inner {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 24px 20px;
  }
  .lp-railitem {
    padding: 18px 14px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.10);
  }
  .lp-railitem:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.10); padding-left: 0; }
  .lp-railitem:nth-child(even) { padding-right: 0; }
  .lp-railitem:nth-child(3), .lp-railitem:nth-child(4) { border-bottom: none; padding-bottom: 0; }
  .lp-railitem:nth-child(1), .lp-railitem:nth-child(2) { padding-top: 0; }
  .lp-railitem__v { font-size: 32px; }
  .lp-railitem__l { font-size: 10px; margin-top: 6px; }
  .lp-railitem__d { font-size: 12px; margin-top: 6px; }

  /* Sections */
  .lp-section { padding: 64px 20px; }
  .lp-section__head { margin-bottom: 40px; }
  .lp-section__head h2 { font-size: clamp(32px, 8vw, 42px); }
  .lp-section__head p { font-size: 15.5px; }

  /* Services */
  .lp-svc__grid { grid-template-columns: 1fr; gap: 16px; }
  .lp-svc__tile { grid-template-rows: 160px auto; }
  .lp-svc__illo { padding: 18px; }
  .lp-illo { max-height: 140px; }
  .lp-svc__body { padding: 22px 22px 24px; }
  .lp-svc__body h3 { font-size: 24px; }
  .lp-svc__num { top: 18px; right: 22px; }

  /* Brands marquee */
  .lp-brands__inner { padding: 56px 20px 48px; }
  .lp-brands__head { margin-bottom: 32px; }
  .lp-brands__title { font-size: clamp(28px, 7vw, 36px); }
  .lp-brands__sub { font-size: 15px; }
  .lp-brands__grid { grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 32px; }
  .lp-brand-card { padding: 22px 14px 18px; min-height: 104px; gap: 10px; }
  .lp-brand-card__mark { height: 32px; }
  .lp-brand-card__caption { font-size: 9.5px; letter-spacing: 0.10em; }
  .lp-brands__more { flex-direction: column; align-items: flex-start; gap: 10px; padding: 16px 0 4px; }
  .lp-brands__more-marquee { width: 100%; }
  .lp-brands__more-item { font-size: 15px; padding: 0 14px; }
  .lp-brands__more-dot { margin-left: 14px; }

  /* Calibration */
  .lp-cal__inner { padding: 64px 20px; }
  .lp-cal__grid { grid-template-columns: 1fr; gap: 16px; }
  .lp-cal__col { padding: 24px; }
  .lp-cal__col h3 { font-size: 26px; }
  .lp-cal__caption { font-size: 14px; padding: 14px 18px; gap: 10px; align-items: flex-start; flex-wrap: wrap; }

  /* Stats — 2x2, no right borders, top borders instead */
  .lp-stats { padding: 64px 0; }
  .lp-stats__inner { padding: 0 20px; }
  .lp-stats__head { margin-bottom: 40px; }
  .lp-stats__grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .lp-stat {
    padding: 20px 12px;
    border-right: none;
    border-top: 1px solid rgba(7,23,47,0.10);
  }
  .lp-stat:nth-child(odd) { border-right: 1px solid rgba(7,23,47,0.10); padding-left: 0; }
  .lp-stat:nth-child(even) { padding-right: 0; }
  .lp-stat__v { font-size: clamp(44px, 12vw, 60px); }
  .lp-stat__l { font-size: 10px; margin-top: 12px; letter-spacing: 0.10em; }
  .lp-stat__d { font-size: 13px; margin-top: 8px; max-width: 100%; }

  /* Process — single column, vertical timeline feel */
  .lp-process__inner { padding: 64px 20px; }
  .lp-process__flow { grid-template-columns: 1fr; row-gap: 28px; }
  .lp-process__connector { display: none; }
  .lp-step { padding-right: 0; }
  .lp-step__circle { width: 56px; height: 56px; margin-bottom: 18px; }
  .lp-step__icon svg { width: 22px; height: 22px; }
  .lp-step__t { font-size: 24px; }
  .lp-step__d { max-width: 100%; font-size: 14.5px; }

  /* Industries — single column at very small */
  .lp-ind__grid { grid-template-columns: 1fr; gap: 12px; }
  .lp-ind__tile { padding: 22px 20px; }
  .lp-ind__arrow { top: 22px; right: 20px; }
  .lp-ind__icon { width: 40px; height: 40px; margin-bottom: 14px; }

  /* Manpower */
  .lp-manpower__inner { padding: 64px 20px; gap: 36px; }
  .lp-manpower__copy p { font-size: 16px; }
  .lp-role { padding: 18px 20px 18px 24px; }
  .lp-role h3 { font-size: 20px; }
  .lp-role p { font-size: 14px; }
  .lp-role:hover { transform: none; } /* no jitter on touch */

  /* FAQ */
  .lp-faq__list { gap: 6px; }
  .lp-faq__item summary { padding: 18px 20px; font-size: 17px; gap: 12px; }
  .lp-faq__item > div { padding: 0 20px 22px; }
  .lp-faq__item p { font-size: 14.5px; }

  /* Quote */
  .lp-quote__inner { padding: 64px 20px; gap: 28px; }
  .lp-form { padding: 22px; gap: 14px; }
  .lp-form__row { grid-template-columns: 1fr; gap: 14px; }
  .lp-field input, .lp-field select, .lp-field textarea { font-size: 16px; padding: 14px 16px; }
  .lp-form__submit { flex-direction: column; align-items: stretch; gap: 14px; }
  .lp-form__submit .lp-btn { width: 100%; }
  .lp-form__legal { max-width: 100%; }
  .lp-quote__thanks { padding: 28px 22px; }
  .lp-quote__thanks h3 { font-size: 26px; }
  .lp-quote__rail { padding: 24px; position: static; }
  .lp-quote__rail h3 { font-size: 19px; }

  /* Footer */
  .lp-footer { padding: 56px 0 20px; }
  .lp-footer__inner { padding: 0 20px; gap: 36px; }
  .lp-footer__brand img { height: 52px; }
  .lp-footer__cols { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .lp-footer__bar {
    padding: 20px 20px 0;
    margin-top: 40px;
    font-size: 10.5px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  /* Disable hover-translates on tile cards (touch noise) */
  .lp-svc__tile:hover, .lp-ind__tile:hover { transform: none; }

  /* Service action stack — buttons go full-width below list */
  .lp-svc__actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .lp-svc__cta { font-size: 14.5px; }

  /* Modal — full-screen on mobile */
  .lp-modal { padding: 0; align-items: stretch; }
  .lp-modal__card {
    border-radius: 0;
    max-height: 100vh;
    max-width: 100%;
    padding: 64px 20px 24px;
  }
  .lp-modal__close { top: 12px; right: 12px; }
  .lp-modal__head { margin-bottom: 20px; }
  .lp-modal__title { font-size: clamp(24px, 7vw, 30px); }
  .lp-modal__lead { font-size: 15px; }
  .lp-modal__split { grid-template-columns: 1fr; gap: 12px; margin-bottom: 20px; }
  .lp-modal__panel { padding: 18px 18px 20px; }
  .lp-modal__panel--illo { min-height: 140px; padding: 14px; }
  .lp-modal__panel--meta { padding: 18px; }
  .lp-modal__detail { padding: 18px 18px 20px; margin-bottom: 18px; }
  .lp-modal__deliverables { grid-template-columns: 1fr; gap: 10px; }
  .lp-modal__products { grid-template-columns: 1fr; gap: 10px; margin-bottom: 22px; }
  .lp-modal__brandmark { padding: 18px 20px; }
  .lp-modal__brandmark svg { height: 42px; }
  .lp-modal__row { grid-template-columns: 1fr; gap: 4px; padding: 14px 4px; }
  .lp-modal__row-t { font-size: 15.5px; }
  .lp-modal__foot { flex-direction: column; align-items: stretch; }
  .lp-modal__foot .lp-btn { width: 100%; }

  /* Calibration actions wrap */
  .lp-cal__actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .lp-cal__actions .lp-btn { width: 100%; }

  /* Back-to-top — tucked above bottom edge so it doesn't hide WhatsApp etc */
  .lp-totop { bottom: 62px; right: 16px; width: 40px; height: 40px; }

  /* Thanks meta — stack labels above values on tight screens */
  .lp-quote__thanks-meta div { flex-direction: column; gap: 2px; }
  .lp-quote__thanks-meta span { min-width: 0; }
}

/* ---------- VERY SMALL (≤ 380px) — type compresses a little more ---------- */
@media (max-width: 380px) {
  .lp-hero__title { font-size: 38px; }
  .lp-section__head h2 { font-size: 30px; }
  .lp-railitem__v { font-size: 28px; }
  .lp-stat__v { font-size: 42px; }
  /* .lp-nav__brand img { height: 28px; } */
  .lp-nav__cta .lp-btn--primary.lp-nav__quote {
    padding: 9px 12px;
    font-size: 12.5px;
  }
}

/* ---------- TOUCH-DEVICE TUNING (no hover) ---------- */
@media (hover: none) {
  .lp-btn:hover,
  .lp-svc__tile:hover,
  .lp-ind__tile:hover,
  .lp-role:hover { transform: none; box-shadow: none; }
  .lp-svc__tile:active, .lp-ind__tile:active { transform: scale(0.995); transition: transform 120ms; }
}



.lp-nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
}

/* LEFT */
.lp-nav__brand {
  justify-self: start;
}

/* CENTER */
.lp-nav__links {
  justify-self: center;
  display: flex;
  gap: 28px;
}

/* RIGHT */
.lp-nav__cta {
  justify-self: end;
  display: flex;
  gap: 12px;
  align-items: center;
}

/* FIX spacing issue */
.lp-nav__cta a,
.lp-nav__cta button {
  white-space: nowrap;
}

/* MOBILE */
@media (max-width: 980px) {
  .lp-nav__links {
    display: none;
  }

  .lp-nav__inner {
    grid-template-columns: auto 1fr auto;
  }

  .lp-nav__quote {
    display: none;
  }
}



.lp-whatsapp {
  position: fixed;
  left: 18px;
  bottom: 50px;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9;
  text-decoration: none;
}

.lp-whatsapp.is-show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.lp-whatsapp:hover {
  transform: scale(1.08);
}

.lp-stat:nth-child(2n) {
        padding-left: 20px;
    }
    .lp-stat:nth-child(3n) {
        padding-left: 20px;
    }
    .lp-stat:nth-child(4n) {
        padding-left: 20px;
    }


    .lp-faq__container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* LEFT SIDE */
.lp-faq__left h2 {
 font-family: "Fraunces", serif;
    font-weight: 500;
    font-size: clamp(40px, 4vw, 56px);
    line-height: 1.0;
    letter-spacing: -0.025em;
    color: var(--navy-900);
    margin: 0 0 14px;
}

.lp-faq__left p {
  font-size: 16px;
  opacity: 0.75;
  max-width: 420px;
}

/* RIGHT SIDE */
.lp-faq__right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* FAQ ITEM */
.lp-faq__item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 18px 20px;
  background: #fff;
}

.lp-faq__item summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}

/* ANSWER */
.lp-faq__item p {
  margin-top: 12px;
  color: #444;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .lp-faq__container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .lp-faq__left h2 {
   font-family: "Fraunces", serif;
    font-weight: 500;
    font-size: clamp(40px, 4vw, 56px);
    line-height: 1.0;
    letter-spacing: -0.025em;
    color: var(--navy-900);
    margin: 0 0 14px;
  }
}

/* MAIN LAYOUT */
.lp-faq__container {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  align-items: flex-start;
}

/* LEFT SIDE - STICKY */
.lp-faq__left {
  flex: 1;
  position: sticky;
  top: 100px; /* adjust based on header height */
  height: fit-content;
}

/* RIGHT SIDE - SCROLL */
.lp-faq__right {
  flex: 1.4;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* FAQ ITEM */
.lp-faq__item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 18px 20px;
  background: #fff;
}

/* SUMMARY */
.lp-faq__item summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}

/* ANSWER */
.lp-faq__answer {
  margin-top: 10px;
  color: #444;
  line-height: 1.6;
}

/* ARROW ANIMATION */
.lp-faq__item summary svg {
  transition: transform 0.3s ease;
}

.lp-faq__item[open] summary svg {
  transform: rotate(180deg);
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .lp-faq__container {
    flex-direction: column;
  }

  .lp-faq__left {
    position: relative;
    top: auto;
  }
}

.contact-locations-wrapper {
  margin: 0 auto;
}

.address-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 22px;
}

.address-icon svg {
  margin-top: 4px;
  flex-shrink: 0;
      min-width: 16px;
    max-width: 16px;

}

.address-text {
       font-size: 13.5px;
  line-height: 1.6;
  color: #fff;
}

.address-text strong {
  color: #333;
  font-weight: 600;
}

.phone-link {
  color: #B7E1F9;           /* Orange phone number */
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.phone-link:hover {
  color: #B7E1F9;           /* Slightly darker orange on hover */
  text-decoration: underline;
}

.footer-head{
  font-family: var(--font-mono);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue-300);
    margin-top: 16px;
}
.address-sec{
      max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 2.8fr;
    gap: 64px;
}

@media (min-width: 320px) and (max-width: 600px) {
    .lp-quote__inner {
        display: block !important;
    }
    .lp-form{
      margin-bottom: 30px;
    }
}