@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');

.lfpv-wrap,
.lfpv-wrap * {
  box-sizing: border-box;
  min-width: 0;
}

.lfpv-wrap {
  --lfpv-primary: #0f6b57;
  --lfpv-secondary: #1e9b7f;
  --lfpv-accent: #d89a1d;
  --lfpv-soft: #f1f8f5;
  --lfpv-text: #17231f;
  --lfpv-muted: #5f6f69;
  --lfpv-border: rgba(15, 107, 87, 0.16);
  --lfpv-shadow: rgba(15, 72, 58, 0.13);
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  font-family: inherit;
}

.lfpv-section {
  width: 100% !important;
}

.lfpv-section-white {
  background: #ffffff !important;
}

.lfpv-section-tint {
  background: linear-gradient(180deg, #f6fbf8 0%, var(--lfpv-soft) 100%);
}

.lfpv-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  text-align: center;
}

.lfpv-title {
  margin: 0 auto;
  color: var(--lfpv-text);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: center !important;
}

.lfpv-intro {
  margin: 14px auto 0;
  max-width: 760px;
  color: var(--lfpv-muted);
  line-height: 1.7;
  text-align: center !important;
}

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

.lfpv-card {
  position: relative;
  height: 100% !important;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center !important;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--lfpv-border);
  border-radius: 22px;
  box-shadow: 0 18px 44px var(--lfpv-shadow);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.lfpv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(216, 154, 29, 0.15), transparent 46%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.lfpv-card-tint {
  background: rgba(255, 255, 255, 0.9);
}

.lfpv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 154, 29, 0.45);
  box-shadow: 0 24px 58px rgba(15, 72, 58, 0.2);
}

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

.lfpv-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lfpv-primary), var(--lfpv-secondary));
  box-shadow: 0 12px 28px rgba(15, 107, 87, 0.24);
  color: #ffffff;
  text-align: center !important;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.lfpv-card:hover .lfpv-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 34px rgba(15, 107, 87, 0.3);
}

.lfpv-i {
  color: #ffffff;
  line-height: 1;
  text-align: center !important;
}

.lfpv-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--lfpv-text);
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center !important;
}

.lfpv-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--lfpv-muted);
  line-height: 1.62;
  text-align: center !important;
}

.lfpv-card.lfpv-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.lfpv-card.lfpv-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

  .lfpv-title {
    font-size: 42px;
    max-width: 980px;
    white-space: nowrap;
  }

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

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

  .lfpv-card {
    min-height: 292px;
    padding: 34px 28px 30px;
  }

  .lfpv-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
  }

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

  .lfpv-card h3 {
    font-size: 21px;
    margin-bottom: 13px;
  }

  .lfpv-card p {
    font-size: 15.5px;
  }
}

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

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

  .lfpv-title {
    font-size: 34px;
    max-width: 760px;
  }

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

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

  .lfpv-card {
    min-height: 262px;
    padding: 30px 24px 26px;
  }

  .lfpv-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 21px;
  }

  .lfpv-i {
    font-size: 25px;
  }

  .lfpv-card h3 {
    font-size: 19px;
    margin-bottom: 11px;
  }

  .lfpv-card p {
    font-size: 15px;
  }
}

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

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

  .lfpv-title {
    font-size: 27px;
    max-width: 520px;
  }

  .lfpv-intro {
    font-size: 14.5px;
    line-height: 1.6;
  }

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

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

  .lfpv-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
  }

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

  .lfpv-card h3 {
    font-size: 16px;
    margin-bottom: 9px;
  }

  .lfpv-card p {
    font-size: 13.2px;
    line-height: 1.5;
  }
}

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

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

  .lfpv-title {
    font-size: 24px;
    max-width: 360px;
  }

  .lfpv-intro {
    font-size: 13.8px;
    line-height: 1.55;
  }

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

  .lfpv-card {
    min-height: 224px;
    padding: 19px 12px 17px;
    border-radius: 16px;
  }

  .lfpv-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }

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

  .lfpv-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .lfpv-card p {
    font-size: 12.6px;
    line-height: 1.46;
  }
}

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

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

  .lfpv-title {
    font-size: 22px;
    max-width: 310px;
  }

  .lfpv-intro {
    font-size: 13px;
    line-height: 1.5;
  }

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

  .lfpv-card {
    min-height: 216px;
    padding: 17px 10px 15px;
    border-radius: 14px;
  }

  .lfpv-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }

  .lfpv-i {
    font-size: 18px;
  }

  .lfpv-card h3 {
    font-size: 14px;
    margin-bottom: 7px;
  }

  .lfpv-card p {
    font-size: 12px;
    line-height: 1.42;
  }
}

@media (max-width: 319px) {
  .lfpv-grid {
    grid-template-columns: 1fr;
  }
}