:root {
  --bg: #f7f9fc;
  --panel: #ffffff;
  --ink: #102033;
  --muted: #64748b;
  --line: #d9e2ef;

  --accent: #f1a919;
  --accent-dark: #f1a919;

  --blue: #003d78;
  --blue-dark: #012247;
  --blue-deep: #06182b;
  --blue-soft: #eaf4ff;

  --white: #ffffff;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(13, 59, 102, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font: 16px/1.6 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(4rem, 7.2vw, 7.4rem);
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(24px, 4vw, 56px);
  background: #fff;
  color: var(--blue-dark);
  box-shadow: 0 2px 18px rgba(13, 59, 102, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--blue-dark);
  font-weight: 900;
  font-size: 1.45rem;
  letter-spacing: -0.05em;
}

.brand::before {
  content: "LM";
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-right: 12px;
  border: 2px solid var(--accent);
  border-radius: 999px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
}

.brand span {
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--blue);
}

.nav-cta {
  padding: 10px 18px;
  border: 1px solid rgba(13, 59, 102, 0.22);
  border-radius: 999px;
  background: var(--blue-dark);
  color: var(--white) !important;
}

.nav-cta:hover {
  border: 1px solid var(--white);
  background: var(--accent);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
}

/* Hero */

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 20px 0;
  background:
    radial-gradient(circle at 12% 92%, rgba(77,150,214,.22), transparent 34%),
    linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 72%, var(--blue-deep) 100%);
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.28fr;
  gap: clamp(40px, 6vw, 86px);
  align-items: start;
}

.hero-copy {
  max-width: 720px;
}

.hero h1 {
  margin-bottom: 30px;
}

.lede {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.12rem, 1.5vw, 1.35rem);
  line-height: 1.55;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero .actions {
  margin-bottom: 44px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  border: none;
  cursor: pointer;
  width: 220px;
}

.primary {
  background: var(--accent);
  color: #111;
  min-width: 188px;
  font-size: 16px;
}

.primary:hover {
  background: var(--accent);
}

.secondary {
  border: 1px solid rgba(255,255,255,.72);
  color: #fff;
}

.secondary:hover {
  background: rgba(255,255,255,.1);
}

.hero-image-wrap {
  width: 100%;
  min-width: 0;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255,255,255,.08);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  transform: rotate(0.5deg);
}

.hero-image {
  width: 100%;
  height: clamp(500px, 62vh, 720px);
  object-fit: cover;
  object-position: center;
  display: block;
}

/* General sections */

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.split > p,
.section-heading p,
.case-copy p,
.card p,
.timeline p,
.before-after li {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.compact {
  max-width: 720px;
}

.cards {
  display: grid;
  gap: 18px;
}

.three {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 10px 34px rgba(13,59,102,.06);
}

.card h3 {
  color: var(--blue);
}

/* Examples */
/* Old
.examples {
  background: #fff;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 42px;
}

.before-card,
.after-card {
  padding: 34px;
  border-radius: 28px;
  border: 1px solid #d8e2ee;
  background: #f8fafc;
  box-shadow: 0 18px 50px rgba(13, 59, 102, 0.08);
}

.after-card {
  background: #eaf4ff;
  border-color: #bfd7f0;
}

.before-card img,
.after-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
  margin: 18px 0 18px;
  box-shadow: 0 10px 28px rgba(13, 59, 102, 0.12);
}

.before-card > span,
.after-card > span {
  display: inline-flex;
  margin-bottom: 0;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.before-card > span {
  background: #e2e8f0;
  color: #334155;
}

.after-card > span {
  background: var(--accent);
  color: #111;
}

.before-card h3,
.after-card h3 {
  margin: 0 0 16px;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.before-card ul,
.after-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.before-card li,
.after-card li {
  color: var(--muted);
  font-size: 1.05rem;
}
*/

.compare-showcase {
  margin-top: 38px;
}

.compare-header {
  text-align: center;
  margin-bottom: 28px;
}

.compare-header span {
  display: block;
  margin-bottom: 10px;
  color: #dc2626;
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.compare-header h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  color: var(--dark);
}

.compare-frame {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 28px 80px rgba(13, 59, 102, 0.12);
}

.compare-side {
  position: relative;
  display: block;
  padding: clamp(22px, 3vw, 34px);
  text-decoration: none;
  color: inherit;
  background: #f8fbff;
  transition: background .2s ease, transform .2s ease;
}

.compare-side:hover {
  background: #f3f8ff;
}

.compare-after {
  background: #f4f9ff;
}

.compare-divider {
  background: rgba(13, 59, 102, 0.18);
}

.compare-side img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top center;
  display: block;
  margin-bottom: 22px;
  box-shadow: 0 12px 28px rgba(13, 59, 102, 0.12);
}

.compare-side h4 {
  margin: 0 0 10px;
  text-align: center;
  font-size: clamp(1.45rem, 2vw, 2rem);
  color: var(--dark);
}

.compare-side p {
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.proof-card {
  margin-top: 44px;
}

.compare-label {
  display: flex;
  width: fit-content;
  margin: 0 auto 22px;
  padding: 10px 20px;
  border-radius: 999px;
  background: #dfe7f1;
  color: #24364d;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(13, 59, 102, 0.10);
}

.compare-side:hover .compare-label {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(13, 59, 102, 0.36);
}

.compare-label {
  transition: transform .2s ease, box-shadow .2s ease;
}

.compare-image-wrap {
  overflow: hidden;
  margin-bottom: 22px;
  border: 3px solid transparent;
  box-shadow: 0 12px 28px rgba(13, 59, 102, 0.12);
  transition:
    border-color .25s ease,
    box-shadow .25s ease,
    transform .25s ease;
}

.compare-side:hover .compare-image-wrap {
  border-color: var(--accent);
  box-shadow:
    0 0 0 4px rgba(250, 176, 5, 0.14),
    0 18px 44px rgba(13, 59, 102, 0.16);
}

.compare-image-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top center;
  display: block;
  margin-bottom: 0;
  box-shadow: none;
  transition:
    transform .35s ease,
    filter .35s ease;
}

.compare-side:hover .compare-image-wrap img {
  transform: scale(1.025);
  filter: saturate(1.05);
}

.compare-image-wrap {
  position: relative;
}

.compare-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(250, 176, 5, 0);
  transition: background .25s ease;
  pointer-events: none;
}

.compare-image-wrap::after {
  content: "Click to view ↗";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -42%);
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
  opacity: 0;
  transition:
    opacity .25s ease,
    transform .25s ease;
  pointer-events: none;
}

.compare-side:hover .compare-image-wrap::before {
  background: rgba(250, 176, 5, 0.09);
}

.compare-side:hover .compare-image-wrap::after {
  opacity: 1;
  transform: translate(-50%, -50%);
}


.compare-frame {
  position: relative;
}

.compare-center-badge {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 5;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 60%, transparent);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
  transform: translate(-50%, -50%);
  box-shadow: 0 14px 34px rgba(13, 59, 102, 0.22);
  pointer-events: none;
}

@media (max-width: 900px) {
  .compare-frame {
    grid-template-columns: 1fr;
  }

  .compare-divider {
    height: 1px;
  }

  .compare-side img {
    height: 320px;
  }

  .compare-image-wrap::before {
    background: rgba(250, 176, 5, 0.10);
  }

  .compare-image-wrap::after {
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  .compare-center-badge {
    top: 51%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
  }
}



.case-study {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 10px);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.case-study img {
  border-radius: 18px;
  border: 1px solid var(--line);
}

.case-copy {
  padding: 16px;
}

.text-link {
  color: var(--blue);
  font-weight: 900;
}

/* Process */
.process-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(216,155,23,.12), transparent 28%),
    linear-gradient(180deg, #f7f9fc 0%, #eef5fc 100%);
}

.process-heading {
  margin-bottom: 54px;
}

.process-heading p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.1rem;
}

.process-timeline {
  position: relative;
  display: grid;
  gap: 26px;
  max-width: 980px;
  margin-left: 40px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 35px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    var(--accent),
    var(--blue),
    var(--accent)
  );
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.process-number {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 30px rgba(0, 61, 120, 0.24);
}

.process-card {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 26px 30px;
  border: 1px solid #d8e2ee;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(13, 59, 102, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.process-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(13, 59, 102, 0.14);
}

.process-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 24px;
}

.process-card h3 {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 1.28rem;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.55;
}

/* Contact */

.contact-card {
  padding: clamp(34px, 7vw, 80px);
  border-radius: calc(var(--radius) + 18px);
  background: var(--blue-dark);
  color: #fff;
  text-align: center;

  background:
    radial-gradient(circle at 12% 92%, rgba(77,150,214,.22), transparent 34%),
    linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 72%, var(--blue-deep) 100%);
}

.contact-card p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,.76);
}

.contact-form {
  max-width: 720px;
  margin: 34px auto 0;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  color: #fff;
  text-align: left;
  box-shadow: var(--shadow);
}

.contact-form[hidden] {
  display: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-weight: 800;
  color: #fff;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 2px var(--accent);
}

.contact-form textarea {
  resize: vertical;
}

.hp {
  position: absolute;
  left: -9999px;
}

.center {
  justify-content: center;
}

/* Footer */

.footer {
  padding: 32px 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer a {
  color: var(--ink);
  font-weight: 900;
}


.site-header {
  background: #fff;
  border-bottom: 1px solid #e7edf5;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border: 3px solid var(--accent);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  color: var(--blue);
  background: #fff;
}

.logo-text {
  display: flex;
  align-items: baseline;
  line-height: 1;
  gap: 8px;
}

.logo-text-main {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
}

.logo-text-accent {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}

.site-header {
  background: #fff;
  color: var(--blue-dark);
  box-shadow: 0 2px 18px rgba(13, 59, 102, 0.08);
}



.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 900;
  font-size: 1.45rem;
  color: var(--blue-dark);
}

.brand::before {
  content: "LM";
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-right: 12px;
  border: 2px solid var(--accent);
  border-radius: 999px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 900;
}

.brand span {
  color: var(--accent);
}



.hero .container {
  width: min(1680px, calc(100% - 72px));
}

.hero-grid {
  grid-template-columns: 0.65fr 1.55fr;
  gap: 20px;
  align-items: start;
}

.hero-product-image {
  width: 100%;
  max-width: none;
}

.hero-copy {
  max-width: 660px;
}

.hero-image-actions {
  justify-content: center;
  padding-top: 40px;
}

.hero h1 {
  font-size: clamp(4.4rem, 7.1vw, 7.6rem);
}


.hero-visual {
  align-self: start;
  width: 100%;
  padding-top: 60px;
}

.hero-product {
  width: 100%;
  background: rgba(255,255,255,.08);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
  border-radius: 20px;
  overflow: hidden;
}

.hero-product-image {
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 88%;
  margin: 0 auto;
  margin-top: 30px;;
  position: relative;
  z-index: 2;
  background: #fff;
  color: var(--blue-dark);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.hero-points div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
}

.hero-points div + div {
  border-left: 1px solid #d9e2ef;
}

.hero-point-icon {
  flex: 0 0 auto;
  font-size: 30px;
  line-height: 1;
  color: var(--blue);
  font-weight: 900;
}

.hero-points p {
  margin: 0;
}

.hero-points strong {
  display: block;
  margin-bottom: 2px;
  color: var(--blue-dark);
  font-size: 0.92rem;
  line-height: 1.15;
}

.hero-points span:not(.hero-point-icon) {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.offer-copy {
  max-width: 680px;
}

.feature-cards {
  margin-top: 48px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  min-height: 310px;
  background:
    radial-gradient(circle at 85% 15%, rgba(216,155,23,.14), transparent 34%),
    #fff;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: rgba(0, 61, 120, .06);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: #bfd7f0;
  box-shadow: 0 26px 70px rgba(13, 59, 102, 0.13);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  border-radius: 18px;
  background: var(--blue);
  color: #fff;
  font-size: 26px;
  box-shadow: 0 14px 32px rgba(0, 61, 120, .22);
}

.feature-card h3 {
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-size: 1.45rem;
}

.feature-card p {
  position: relative;
  z-index: 1;
}


.before-card,
.after-card {
  text-align: left;
}

.before-card h3,
.after-card h3 {
  text-align: center;
  margin-top: 8px;
}

.before-card ul,
.after-card ul {
  width: fit-content;
  max-width: 90%;
  margin: 0 auto;
  padding-left: 22px;
}

.before-card li,
.after-card li {
  margin-bottom: 10px;
  line-height: 1.35;
}

/* Mobile */

@media (max-width: 900px) {
  .site-header {
    padding: 16px 20px;
  }

  .brand {
    font-size: 1.2rem;
  }

  .brand::before {
    width: 34px;
    height: 34px;
    font-size: 0.78rem;
  }

  .nav-toggle {
    display: inline-flex;
    padding: 9px 12px;
    border: 1px solid rgba(13, 59, 102, 0.22);
    border-radius: 999px;
    background: transparent;
    color: var(--blue-dark);
    font-weight: 800;
  }

  .site-nav {
    display: none;
    position: absolute;
    inset: 72px 16px auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(13, 59, 102, 0.16);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .container,
  .hero .container {
    width: min(1120px, calc(100% - 40px));
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    min-height: auto;
    padding: 64px 0;
  }

  .hero-grid,
  .split,
  .case-study,
  .three,
  .before-after,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 14vw, 5.2rem);
  }

  .hero-image-wrap {
    transform: none;
  }

  .hero-image {
    height: auto;
  }

  .before-card,
  .after-card {
    padding: 24px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .process-timeline::before {
    left: 25px;
  }

  .process-step {
    grid-template-columns: 52px 1fr;
    gap: 18px;
  }

  .process-number {
    width: 52px;
    height: 52px;
    font-size: 0.8rem;
  }

  .process-card {
    padding: 22px;
    flex-direction: column;
  }

  .process-icon {
    width: 44px;
    height: 44px;
  }
}