:root {
  --primary: #2563eb;
  --primary-alt: #3b82f6;
  --primary-dark: #1d4ed8;
  --primary-light: #eff6ff;
  --primary-soft: #dbeafe;
  --text-color: #111;
  --text-dark: #0f172a;
  --text-strong: #111827;
  --text-medium: #4b5563;
  --text-muted: #475569;
  --text-muted-strong: #334155;
  --text-muted-stronger: #64748b;
  --border-color: #e2e8f0;
  --border-color-soft: #cbd5e1;
  --border-color-lighter: #e5e7eb;
  --border-color-light: #eaeaea;
  --border-color-quiet: #bfdbfe;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --surface-soft: #eff6ff;
  --surface-soft-alt: #eef2ff;
  --surface-muted: #f5f5f5;
  --surface-muted-strong: #f1f5f9;
  --surface-muted-light: #f8fbff;
  --success: #16a34a;
  --success-alt: #22c55e;
  --success-dark: #14532d;
  --success-dark-alt: #15803d;
  --success-light: #dcfce7;
  --success-light-alt: #f0fdf4;
  --danger: #dc2626;
  --danger-dark: #b91c1c;
  --danger-light: #fee2e2;
  --danger-border-soft: #fecaca;
  --inverse-bg: #111827;
  --inverse-text: #ffffff;
  --inverse-muted: #9ca3af;
  --inverse-muted-strong: #798194;
  --shadow: rgba(15, 23, 42, 0.06);
  --shadow-soft: rgba(0, 0, 0, 0.05);
  --bg-pills: #f8fafc;
}

/**
 * Hero
 */
.lp-hero {
  background: linear-gradient(180deg, var(--primary-light), var(--surface));
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 42px 48px;
  text-align: center;
  margin: 0 0 50px;
  /* box-shadow: 0 28px 80px rgba(37, 99, 235, 0.12); */
}

.lp-hero-label {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.lp-hero-title {
  margin: 0;
  margin-top: 10px;
  font-size: 46px;
  line-height: 1.15;
  font-weight: bolder;
  color: var(--text-dark);
  max-width: 900px;
  margin-inline: auto;
}

.lp-hero-text {
  max-width: 720px;
  margin: 22px auto 0;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-muted);
}

.lp-hero-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--border-color);
}

.lp-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted-strong);
}

.lp-hero-meta-item-check {
  color: var(--success);
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
}

@media (max-width:768px){
  .lp-hero {
    padding: 34px 22px;
    text-align: left;
  }
  
  .lp-hero-title {
    font-size: 32px;
  }
  
  .lp-hero-text {
    margin-top: 18px;
    font-size: 16px;
  }
  
  .lp-hero-meta {
    justify-content: flex-start;
    gap: 16px;
    margin-top: 28px;
    padding-top: 22px;
  }
  
  .lp-meta-item {
    width: 100%;
  }
}

/**
 * Cards grid
 */
.lp-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 20px;
  margin-left: -20px;
  margin-right: -20px;
}

@media (max-width: 760px) {
  .lp-cards {
    grid-template-columns: 1fr;
  }
}

/* Each card: image left, text right */
.lp-cards .lp-card {
  display: flex;
  align-items: center;
  font-size: 80%;
  gap: 20px;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background-color: var(--surface);
  box-shadow: 0 2px 5px var(--shadow-soft);
}

.lp-cards .lp-card,
.lp-cards .lp-card > a {
  font-weight: normal;
  color: inherit;
  text-decoration: none;
}

.lp-cards .lp-card,
.lp-cards .lp-card a,
.lp-cards .lp-card h3 {
  
}

.lp-cards .lp-card h3 {
  font-size: 115%;
  line-height: 135%;
  margin-top: 0;
  margin-bottom: 5px;
}

/* Image styling */
.lp-cards .lp-card img {
  width: 120px;
  height: auto;
  border-radius: 8px;
  flex-shrink: 0; /* prevents shrinking */
}

/* Card content fills remaining space */
.lp-cards .lp-card-content {
  flex: 1;
}

/**
 * Features
 */
.lp-features {
  display: grid;
  gap: 4rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.lp-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.lp-feature-reverse {
  direction: rtl;
}

.lp-feature-reverse > * {
  direction: ltr;
}

.lp-feature-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  border-radius: 14px;
  overflow: hidden;
  background-color: var(--surface-muted);
  box-shadow: 0 18px 40px var(--shadow-soft);
}

.lp-feature-media img,
.lp-feature-media video,
.lp-feature-media picture,
.lp-feature-media picture img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}

.lp-feature-body {
  display: grid;
  gap: 1rem;
}

.lp-feature-label {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  margin: 0;
}

.lp-feature-body-title {
  all: unset;
  font-size: 135%;
  font-weight: bold;
  line-height: 1.25;
  margin: 0;
  padding: 0;
  color: var(--text-color);
}

.lp-feature-body-text {
  margin: 0;
  max-width: 54rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.lp-feature-body-button {
  justify-self: start;
}

.lp-feature-body .button.primary,
.lp-feature-body .button.secondary,
.lp-feature-body .button.outline,
.lp-feature-body .button.ghost,
.lp-feature-body .button.inverse {
  margin-top: 0.5rem;
}

@media (max-width: 980px) {
  .lp-feature {
    grid-template-columns: 1fr;
  }

  .lp-feature-reverse {
    direction: ltr;
  }
}


/**
 * About me box
 */
.lp-about-me {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
  margin: 50px 0;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02), 0 2px 4px -1px rgba(0,0,0,0.01);
}

.lp-about-me-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.lp-about-me-image-area {
  flex: 0 0 280px;
  position: relative;
  text-align: center;
}

.lp-about-me-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--surface-muted-strong);
}

.lp-about-me-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-muted-strong);
  color: var(--text-muted-strong);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
}

.lp-about-me-pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--success-alt);
  border-radius: 50%;
  display: inline-block;
}

.lp-about-me-text-area {
  flex: 1;
}

.lp-about-me-text-area p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 15px 0;
}

.lp-about-me-text-area p:last-of-type {
  margin-bottom: 25px;
}

.lp-about-me-subtitle {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  color: var(--primary);
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.lp-about-me-title {
  font-size: 28px;
  color: var(--text-dark);
  margin: 0 0 20px 0;
  font-weight: 800;
}

.lp-about-me-signature {
  border-top: 1px solid var(--border-color-light);
  padding-top: 15px;
  font-size: 16px;
}

.lp-about-me-button-more {
  padding-top: 15px;
}

@media (max-width: 768px) {
  .lp-about-me {
    padding: 25px;
  }
  .lp-about-me-grid {
    flex-direction: column;
    gap: 30px;
  }
  .lp-about-me-image-area {
    flex: 1 1 auto;
    width: 100%;
    max-width: 240px;
  }
  .lp-about-me-img {
    height: 240px;
  }
  .lp-about-me-title {
    font-size: 24px;
  }
}

.lp-about-me-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.lp-about-me-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--surface-alt);
  border: 1px solid var(--border-color);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted-strong);
  transition: all .2s ease;
}

.lp-about-me-badge:hover {
  background: var(--surface-soft);
  border-color: var(--border-color-quiet);
}

.lp-about-me-badge svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .lp-about-me-badges {
    gap: 10px;
  }

  .lp-about-me-badge {
    width: 100%;
    justify-content: flex-start;
  }
}

/**
 * Workflow
 */
.lp-workflow {
  padding: 60px 20px;
  background-color: var(--surface-soft-alt);
  color: var(--text-strong);
  border-radius: 12px;
  border-left: 5px solid var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.lp-workflow-container {
  max-width: 1200px;
  margin: 0 auto;
}

.lp-workflow-header {
  text-align: center;
  margin-bottom: 50px;
}

.lp-workflow-section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-strong);
}

.lp-workflow-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-medium);
}

.lp-workflow-steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.lp-workflow-step-card {
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--border-color-lighter);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.lp-workflow-step-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.lp-workflow-step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: var(--text-strong);
}

.lp-workflow-step-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: var(--text-medium);
}

/**
 * Compare
 */
.lp-compare {
  margin: 60px 0;
  padding: 48px;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--surface-muted-light) 0%, var(--surface) 100%);
}

.lp-compare-header {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.lp-compare-header-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.lp-compare-header-title {
  margin: 0;
  margin-top: 5px;
  margin-bottom: 15px;
  font-size: 34px;
  font-weight: 800;
  color: var(--text-dark);
}

.lp-compare-header-text {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 17px;
}

.lp-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.lp-compare-card {
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
}

.lp-compare-left {
  border-top: 5px solid var(--danger);
}

.lp-compare-right {
  border-top: 5px solid var(--success-alt);
}

.lp-compare-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.lp-compare-badge-red {
  background: var(--danger-light);
  color: var(--danger-dark);
}

.lp-compare-badge-green {
  background: var(--success-light);
  color: var(--success-dark-alt);
}

.lp-compare-card h3 {
  margin: 0 0 22px;
  font-size: 24px;
  color: var(--text-dark);
}

.lp-compare-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-compare-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 18px;
  line-height: 1.6;
  color: var(--text-muted);
}

.lp-compare-list li:last-child {
  margin-bottom: 0;
}

.lp-compare-left li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--danger-light);
  color: var(--danger);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.lp-compare-right li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--success-light);
  color: var(--success-dark-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.lp-compare-footer {
  margin-top: 36px;
  padding: 24px;
  border-radius: 14px;
  background: var(--surface-soft);
  border: 1px solid var(--border-color-quiet);
  text-align: center;
  color: #1e3a8a;
  line-height: 1.7;
  font-size: 16px;
}

@media (max-width:900px) {
  .lp-compare-box{
    padding: 28px 20px;
  }

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

  .lp-compare-head h2 {
    font-size: 28px;
  }
}

/**
 * Benefits
 */
.lp-benefits {
  grid-column: 1 / -1;
  background: linear-gradient(180deg, #eff6ff 0%, var(--surface) 100%);
  border-radius: 16px;
  border-left: 4px solid var(--primary);
  padding: 48px 32px;
  margin-bottom: 40px;
}

.lp-benefits-headline {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin: 0 0 16px;
  padding-left: 10%;
  padding-right: 10%;
  line-height: 1.3;
}

.lp-benefits-headline-label {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.lp-benefits-headline-title {
  display: block;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 20px;
}

.lp-benefits-subline {
  font-size: 16px;
  color: var(--text-muted);
  text-align: center;
  margin: 0 auto 48px;
  max-width: 720px;
  line-height: 1.6;
}

.lp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.lp-benefits-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--border-color);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-benefits-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  border-color: var(--border-color-soft);
}

.lp-benefits-icon {
  margin-bottom: 20px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 64px !important;
  height: 64px !important;
  background-color: var(--surface-soft) !important;
  border-radius: 12px;
}

.lp-benefits-icon svg {
  width: 32px !important;
  height: 32px !important;
  display: block;
  margin: 0;
  padding: 0;
}

.lp-benefits-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 10px !important;
  padding: 0 !important;
}

.lp-benefits-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 640px) {
  .lp-benefits {
    padding: 32px 20px;
  }
  .lp-benefits-headline {
    font-size: 24px;
  }
  .lp-benefits-subline {
    font-size: 15px;
    margin-bottom: 32px;
  }
}

/**
 * Problem-solution box
 */
.lp-problem-solution {
  max-width: 1000px;
  margin: 60px auto;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.lp-problem-solution-header {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.lp-problem-solution-header-label {
  display: inline-block;
  padding: 6px 14px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lp-problem-solution-header-title {
  margin: 0 0 16px;
  margin-top: 12px;
  font-size: 32px;
  line-height: 1.25;
  color: var(--text-dark);
  font-weight: 800;
}

.lp-problem-solution-header-text {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 16px;
}

.lp-problem-solution-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-problem-solution-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: var(--bg-pills);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-problem-solution-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.06);
  border-color: var(--border-color-soft);
}

.lp-problem-solution-card-column {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp-problem-solution-card-column h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.lp-problem-solution-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 4px;
}

.lp-problem-solution-card-badge-red {
  background: var(--danger-light);
  color: var(--danger);
  border: 1px solid var(--danger-border-soft);
}

.lp-problem-solution-card-badge-green {
  background: var(--success-light-alt);
  color: var(--success);
  border: 1px solid #bbf7d0;
}

.lp-problem-solution-card-problem strong {
  color: var(--text-dark);
  font-size: 16px;
}

.lp-problem-solution-card-problem p {
  margin: 0;
  color: var(--text-muted-stronger);
  font-size: 14px;
  line-height: 1.5;
}

.lp-problem-solution-card-solution strong {
  color: var(--text-dark);
  font-size: 16px;
}

.lp-problem-solution-card-solution p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.lp-problem-solution-divider {
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
}

.lp-problem-solution-arrow {
  padding-top: 8px;
  padding-left: 8px;
  
  width: 36px;
  height: 36px;
  
  background: var(--surface);
  color: var(--primary);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.lp-problem-solution-arrow svg {
  display: block;
  width: 16px;
  margin: 0 !important; 
}

.lp-problem-solution-footer {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--success-light-alt);
  border: 1px solid #bbf7d0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--success-dark);
  font-size: 15px;
  line-height: 1.5;
}

.lp-problem-solution-footer-icon {
  font-size: 24px;
  flex-shrink: 0;
}

/* Responsive Mobile Rules */
@media (max-width: 768px) {
  .lp-problem-solution-box {
    padding: 24px 16px;
    margin: 30px 0;
    border-radius: 14px;
  }

  .lp-problem-solution-head h2 {
    font-size: 24px;
  }

  .lp-problem-solution-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }
  
  .lp-problem-solution-divider {
    padding: 8px 0;
  }

  .lp-problem-solution-arrow {
    transform: rotate(90deg);
    transform-origin: center center;
  }

  .ag-wf-col {
    background: var(--surface);
    padding: 16px;
    border-radius: 10px;
    border: 1px solid var(--surface-muted-strong);
  }

  .lp-problem-solution-footer {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/**
 * Services box
 */
.lp-services {
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 48px 36px;
  margin: 50px 0;
}

.lp-services-headline {
  text-align: center;
  margin-bottom: 14px;
}

.lp-services-headline-label {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.lp-services-headline-title {
  display: block;
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
  margin-top: 10px;
  margin-bottom: 20px;
}

.lp-services-subtitle {
  max-width: 760px;
  margin: 0 auto 45px;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

.lp-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
 
.lp-services-feature-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  transition: all .2s ease;
}

.lp-services-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
}

.lp-services-feature-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 58px;
  height: 58px;
  margin-bottom: 18px;

  background: var(--surface-soft);
  border-radius: 12px;
}

.lp-services-feature-card-title {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

.lp-services-feature-card-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-services-feature-card-content li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 22px;
  line-height: 1.5;
  color: var(--text-muted);
}

.lp-services-feature-card-content li:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .lp-services {
    padding: 32px 22px;
  }

  .lp-services-headline-title {
    font-size: 26px;
  }

  .lp-services-subtitle {
    margin-bottom: 32px;
  }

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

/**
 * Final CTA section
 */

.lp-cta-final {
  padding: 80px 20px;
  margin: 0;
  background-color: var(--text-strong);
  color: var(--surface);
  text-align: center;
}

.lp-cta-final-container {
  max-width: 800px;
  margin: 0 auto;
}

.lp-cta-final-label {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  /*   border: 1px solid var(--primary-soft); */
  background: #fff;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.lp-cta-final-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.lp-cta-final-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--inverse-muted);
  margin-bottom: 40px;
}

.lp-cta-final-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.lp-cta-final-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 16px 32px;
  background: var(--primary);
  color: var(--surface) !important;
  font-size: 1.05rem;
  font-weight: 600 !important;
  text-decoration: none !important;
  border: 1px solid var(--primary);
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35);
  transition: all .2s ease;
}

.lp-cta-final-button:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.lp-cta-final-button-secondary {
  background: transparent;
  color: var(--surface) !important;
  border-color: rgba(255,255,255,.25);
  box-shadow: none;
}

.lp-cta-final-button-secondary:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.45);
}

@media (max-width: 768px) {
  .lp-cta-final-buttons {
    flex-direction: column;
    width: 100%;
  }

  .lp-cta-final-button {
    width: 100%;
    max-width: 340px;
  }
}

.lp-cta-final-features-note {
  font-size: 0.9rem;
  color: var(--inverse-muted-strong);
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}