:root {
  --lm-accent: #1629d7;
  --lm-accent-dark: #101f9e;
  --lm-dark: #05165b;
  --lm-text: #1f2937;
  --lm-muted: #5b6b7c;
  --lm-border: #e4e8f0;
  --lm-light: #f4f7fc;
}

html {
  scroll-behavior: smooth;
}

#lm-edwin {
  scroll-margin-top: 20px;
}

.container-lp p {
  font-size: 1rem;
}

/* ─── Accent text ─── */
.lm-accent {
  color: var(--lm-accent);
}

.auto-type {
  color: #fff;
}

.lm-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lm-accent);
}

.lm-eyebrow i {
  margin-right: 6px;
}

/* ─── Buttons ─── */
.btn-logicmonitor {
  display: inline-block;
  color: #00030d;
  background-color: #e8ff26;
  font-weight: bold;
  padding: 0.65rem 1.75rem;
  border: 2px solid #111;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.btn-logicmonitor:hover {
  background-color: var(--lm-accent);
  color: #fff;
  border-color: #111;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

/* ─── Hero ─── */
.lm-hero {
  padding: 22px 0 18px;
  background: #060f4b;
}

.lm-hero h4 {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.4rem;
}

.lm-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.5px;
}

.lm-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  line-height: 1.7;
}

.lm-hero-content {
  max-width: 480px;
  margin: 0 auto;
}

.lm-hero-media img {
  max-width: 80%;
  display: block;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(5, 22, 91, 0.18);
}

/* ─── Platform overview banner ─── */
.lm-platform-overview {
  background: linear-gradient(160deg, rgba(244, 247, 252, 0.94) 0%, rgba(223, 228, 252, 0.9) 100%),
    url('/images/logicmonitor/background-texture_01@4x.png');
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
}

.lm-platform-overview .lm-section-intro p {
  color: #181a18;
}

/* ─── Benefits list ─── */
.lm-benefits-list {
  margin-top: 24px;
}

.lm-benefit-item {
  padding: 16px 0;
  border-top: 1px solid var(--lm-border);
}

.lm-benefit-item:last-child {
  padding-bottom: 0;
}

.lm-benefit-item h3 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--lm-dark);
  margin-bottom: 6px;
}

.lm-benefit-item h3 i {
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--lm-accent);
}

.lm-benefit-item p {
  color: var(--lm-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ─── Section intros (centered heading blocks) ─── */
.lm-section-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.lm-section-intro h2 {
  font-weight: 800;
  color: var(--lm-dark);
}

.lm-section-intro p {
  color: var(--lm-muted);
}

/* ─── Bento feature cards ─── */
.card-feat {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--lm-border);
  border-radius: 14px;
  padding: 28px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(5, 22, 91, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.card-feat:hover {
  color: inherit;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(5, 22, 91, 0.14);
  transform: translateY(-4px);
}

.card-feat .img-wrapper {
  height: 220px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
  background: var(--lm-light);
}

.card-feat .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-feat h3 {
  font-weight: 700;
  color: var(--lm-dark);
  margin-bottom: 8px;
}

.card-feat p {
  color: var(--lm-muted);
  margin-bottom: 12px;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--lm-accent);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.btn-link i {
  transition: transform 0.2s ease;
}

.btn-link:hover {
  color: var(--lm-accent-dark);
  text-decoration: none;
  gap: 12px;
}

.btn-link:hover i {
  transform: translateX(3px);
}

/* ─── Icon feature grid ─── */
.lm-icon-feat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  background: var(--lm-light);
  border: 1px solid var(--lm-border);
  border-radius: 12px;
  padding: 26px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.lm-icon-feat:hover {
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(5, 22, 91, 0.12);
  transform: translateY(-3px);
}

.lm-icon-feat img {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}

.lm-icon-feat .text-wrapper h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--lm-dark);
  margin-bottom: 6px;
}

.lm-icon-feat .text-wrapper p {
  color: var(--lm-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.lm-icon-feat .btn-link {
  font-size: 14px;
}

/* ─── Product catalog ─── */
.lm-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--lm-border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(5, 22, 91, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.lm-product-card:hover {
  box-shadow: 0 12px 30px rgba(5, 22, 91, 0.14);
  transform: translateY(-4px);
}

.lm-product-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
}

.lm-product-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lm-dark);
  margin-bottom: 8px;
}

.lm-product-card p {
  color: var(--lm-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.btn-logicmonitor-sm {
  padding: 0.45rem 1.1rem;
  font-size: 14px;
  align-self: flex-start;
}

/* ─── Edwin AI closing section ─── */
.lm-edwin {
  padding: 70px 0;
  background: var(--lm-dark);
  color: #fff;
}

.lm-edwin h3 {
  font-weight: 700;
  color: #fff;
}

.lm-edwin .lm-accent {
  color: #7d97ff;
}

.lm-edwin p {
  color: rgba(255, 255, 255, 0.85);
}

.lm-edwin img {
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

/* ─── Practical guide (lead-gen form section) ─── */
.lm-guide-section {
  background: var(--lm-light);
}

.lm-guide-form {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.25);
  color: var(--lm-text);
}

.lm-guide-form-intro {
  margin-bottom: 20px;
}

.lm-guide-form-intro h3 {
  font-weight: 700;
  color: var(--lm-dark);
  margin-bottom: 6px;
}

.lm-guide-form-intro p {
  color: var(--lm-muted);
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

.lm-guide-form-intro p.lm-guide-form-cta-line {
  color: var(--lm-dark);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
}

.lm-guide-info {
  text-align: left;
}

.lm-guide-info h2 {
  color: var(--lm-dark);
  font-weight: 800;
  margin: 4px 0 14px;
}

.lm-guide-info p {
  color: var(--lm-muted);
  line-height: 1.7;
}

.lm-guide-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.lm-guide-icon {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 6px 14px rgba(5, 22, 91, 0.18);
}

.lm-guide-eyebrow-row .lm-eyebrow {
  margin-bottom: 0;
}

/* ─── Resources row ─── */
.lm-resource-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--lm-border);
  border-radius: 10px;
  color: var(--lm-text);
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.lm-resource-link:hover {
  background: var(--lm-light);
  border-color: var(--lm-accent);
  color: var(--lm-text);
  text-decoration: none;
}

.lm-resource-link .fa-file-pdf {
  color: var(--lm-accent);
  font-size: 1.1rem;
}

.lm-resource-link .fa-arrow-right {
  margin-left: auto;
  color: var(--lm-muted);
}

.lm-resource-link span {
  font-weight: 600;
  font-size: 14px;
}

/* ─── Closing CTA ─── */
.lm-cta {
  padding: 40px 0;
  background: linear-gradient(160deg, rgba(244, 247, 252, 0.94) 0%, rgba(223, 228, 252, 0.9) 100%),
    url('/images/logicmonitor/background-texture_01@4x.png');
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
}

.lm-cta h2 {
  font-weight: 800;
  color: var(--lm-dark);
  margin-bottom: 12px;
}

.lm-cta p {
  color: var(--lm-muted);
  max-width: 460px;
}

.lm-cta img {
  max-width: 100%;
}

/* ─── Layout rhythm ─── */
.lm-section {
  padding: 60px 0;
}

@media (max-width: 767px) {
  .lm-hero {
    padding: 20px 0 16px;
    text-align: center;
  }

  .lm-hero p {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .lm-hero-media {
    margin-top: 30px;
  }

  .lm-section {
    padding: 40px 0;
  }

  .lm-edwin {
    padding: 50px 0;
    text-align: center;
  }

  .lm-edwin img {
    margin-top: 24px;
  }
}
