@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

.lfpv26-wrapper,
.lfpv26-wrapper * {
  box-sizing: border-box;
}

.lfpv26-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
  color: #182026;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --lfpv26-primary: #134e4a;
  --lfpv26-secondary: #0f766e;
  --lfpv26-accent: #f59e0b;
  --lfpv26-soft: #f1f8f6;
  --lfpv26-text: #182026;
  --lfpv26-muted: #5d6b72;
  --lfpv26-border: rgba(19, 78, 74, 0.16);
  --lfpv26-shadow: rgba(16, 61, 57, 0.14);
  --lfpv26-glow: rgba(245, 158, 11, 0.22);
}

.lfpv26-section {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0;
}

.lfpv26-section-white {
  background: #ffffff;
}

.lfpv26-section-tint {
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.1), transparent 34%),
    linear-gradient(180deg, #f6fbfa 0%, var(--lfpv26-soft) 100%);
}

.lfpv26-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  min-width: 0;
}

.lfpv26-heading {
  margin: 0 auto;
  max-width: 980px;
  color: var(--lfpv26-text);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: center;
}

.lfpv26-heading::after {
  content: "";
  display: block;
  width: 76px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lfpv26-primary), var(--lfpv26-secondary), var(--lfpv26-accent));
}

.lfpv26-intro {
  margin: 18px auto 0;
  max-width: 740px;
  color: var(--lfpv26-muted);
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}

.lfpv26-grid {
  display: grid !important;
  width: 100%;
  align-items: stretch !important;
}

.lfpv26-card {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  height: 100% !important;
  min-width: 0;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 50% -20%, rgba(15, 118, 110, 0.12), transparent 52%);
  border: 1px solid var(--lfpv26-border);
  box-shadow: 0 18px 48px var(--lfpv26-shadow);
  transition: transform 360ms ease, box-shadow 360ms ease, border-color 360ms ease, background-position 360ms ease;
}

.lfpv26-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(19, 78, 74, 0.08), transparent 42%, rgba(245, 158, 11, 0.1));
  opacity: 0;
  transition: opacity 360ms ease;
}

.lfpv26-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 158, 11, 0.44);
  box-shadow: 0 24px 60px rgba(16, 61, 57, 0.18), 0 0 0 5px var(--lfpv26-glow);
}

.lfpv26-card:hover::before {
  opacity: 1;
}

.lfpv26-icon {
  position: relative;
  display: grid;
  place-items: center;
  margin: 0 auto;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(145deg, var(--lfpv26-primary), var(--lfpv26-secondary));
  box-shadow: 0 14px 30px rgba(19, 78, 74, 0.26);
  transition: transform 360ms ease, box-shadow 360ms ease;
}

.lfpv26-card:hover .lfpv26-icon {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 36px rgba(19, 78, 74, 0.32), 0 0 0 6px rgba(245, 158, 11, 0.16);
}

.lfpv26-i {
  display: block;
  line-height: 1;
  color: #ffffff;
  text-align: center;
}

.lfpv26-card-title {
  position: relative;
  margin: 0;
  color: var(--lfpv26-text);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
}

.lfpv26-card-text {
  position: relative;
  margin: 0 auto;
  max-width: 320px;
  color: var(--lfpv26-muted);
  font-weight: 500;
  line-height: 1.62;
  text-align: center;
}

.lfpv26-wrapper.lfpv26-js .lfpv26-card {
  opacity: 0;
  transform: translateY(18px);
}

.lfpv26-wrapper.lfpv26-js .lfpv26-card.lfpv26-show {
  opacity: 1;
  transform: translateY(0);
}

.lfpv26-wrapper.lfpv26-js .lfpv26-card.lfpv26-show:hover {
  transform: translateY(-8px);
}

@media (min-width: 1024px) {
  .lfpv26-section {
    padding: 86px 0 !important;
  }

  .lfpv26-container {
    padding: 0 28px !important;
  }

  .lfpv26-heading {
    font-size: 42px;
    white-space: nowrap;
  }

  .lfpv26-intro {
    font-size: 17px;
  }

  .lfpv26-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-top: 46px;
  }

  .lfpv26-card {
    min-height: 294px;
    padding: 34px 28px 30px;
    border-radius: 24px;
  }

  .lfpv26-icon {
    width: 74px;
    height: 74px;
    border-radius: 22px;
    margin-bottom: 24px;
  }

  .lfpv26-i {
    font-size: 31px;
  }

  .lfpv26-card-title {
    font-size: 21px;
  }

  .lfpv26-card-text {
    margin-top: 14px;
    font-size: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .lfpv26-section {
    padding: 68px 0 !important;
  }

  .lfpv26-container {
    padding: 0 24px !important;
  }

  .lfpv26-heading {
    font-size: 34px;
    max-width: 760px;
  }

  .lfpv26-intro {
    font-size: 16px;
  }

  .lfpv26-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 38px;
  }

  .lfpv26-card {
    min-height: 268px;
    padding: 30px 24px 26px;
    border-radius: 22px;
  }

  .lfpv26-icon {
    width: 66px;
    height: 66px;
    border-radius: 20px;
    margin-bottom: 22px;
  }

  .lfpv26-i {
    font-size: 28px;
  }

  .lfpv26-card-title {
    font-size: 20px;
  }

  .lfpv26-card-text {
    margin-top: 12px;
    font-size: 14.5px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .lfpv26-section {
    padding: 48px 0 !important;
  }

  .lfpv26-container {
    padding: 0 16px !important;
  }

  .lfpv26-heading {
    max-width: 420px;
    font-size: 27px;
  }

  .lfpv26-heading::after {
    width: 58px;
    height: 3px;
    margin-top: 13px;
  }

  .lfpv26-intro {
    margin-top: 14px;
    max-width: 420px;
    font-size: 14px;
    line-height: 1.58;
  }

  .lfpv26-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
  }

  .lfpv26-card {
    min-height: 232px;
    padding: 22px 14px 20px;
    border-radius: 18px;
  }

  .lfpv26-icon {
    width: 54px;
    height: 54px;
    border-radius: 17px;
    margin-bottom: 16px;
  }

  .lfpv26-i {
    font-size: 23px;
  }

  .lfpv26-card-title {
    font-size: 16px;
  }

  .lfpv26-card-text {
    margin-top: 9px;
    font-size: 12.8px;
    line-height: 1.5;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .lfpv26-section {
    padding: 42px 0 !important;
  }

  .lfpv26-container {
    padding: 0 12px !important;
  }

  .lfpv26-heading {
    max-width: 350px;
    font-size: 24px;
  }

  .lfpv26-heading::after {
    width: 52px;
    height: 3px;
    margin-top: 12px;
  }

  .lfpv26-intro {
    margin-top: 12px;
    max-width: 350px;
    font-size: 13.2px;
    line-height: 1.52;
  }

  .lfpv26-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    margin-top: 24px;
  }

  .lfpv26-card {
    min-height: 222px;
    padding: 19px 11px 17px;
    border-radius: 16px;
  }

  .lfpv26-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    margin-bottom: 14px;
  }

  .lfpv26-i {
    font-size: 21px;
  }

  .lfpv26-card-title {
    font-size: 14.5px;
  }

  .lfpv26-card-text {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.46;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .lfpv26-section {
    padding: 36px 0 !important;
  }

  .lfpv26-container {
    padding: 0 10px !important;
  }

  .lfpv26-heading {
    max-width: 300px;
    font-size: 21px;
  }

  .lfpv26-heading::after {
    width: 46px;
    height: 3px;
    margin-top: 10px;
  }

  .lfpv26-intro {
    margin-top: 11px;
    max-width: 300px;
    font-size: 12.4px;
    line-height: 1.48;
  }

  .lfpv26-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 21px;
  }

  .lfpv26-card {
    min-height: 214px;
    padding: 16px 9px 15px;
    border-radius: 14px;
  }

  .lfpv26-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    margin-bottom: 12px;
  }

  .lfpv26-i {
    font-size: 19px;
  }

  .lfpv26-card-title {
    font-size: 13.2px;
    line-height: 1.22;
  }

  .lfpv26-card-text {
    margin-top: 7px;
    font-size: 11.2px;
    line-height: 1.42;
  }
}