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

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

.ypv-section-wrap {
  width: 100% !important;
  overflow: hidden;
  --ypv-primary: #e62117;
  --ypv-secondary: #111827;
  --ypv-accent: #ffb703;
  --ypv-soft: #fff6f4;
  --ypv-text: #202124;
  --ypv-muted: #5f6673;
  --ypv-border: rgba(230, 33, 23, 0.16);
  --ypv-shadow: rgba(36, 12, 10, 0.12);
  --ypv-shadow-hover: rgba(230, 33, 23, 0.22);
  background: #ffffff;
  font-family: inherit;
}

.ypv-section-wrap .ypv-band {
  width: 100% !important;
}

.ypv-section-wrap .ypv-band-white {
  background: #ffffff;
}

.ypv-section-wrap .ypv-band-tint {
  background: linear-gradient(180deg, #fff8f6 0%, #fff2ef 100%);
}

.ypv-section-wrap .ypv-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.ypv-section-wrap h2,
.ypv-section-wrap h3,
.ypv-section-wrap p {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

.ypv-section-wrap h2 {
  color: var(--ypv-text);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 14px;
}

.ypv-section-wrap .ypv-intro {
  color: var(--ypv-muted);
  line-height: 1.7;
  max-width: 760px;
  margin-top: 0;
}

.ypv-section-wrap .ypv-grid {
  display: grid !important;
  align-items: stretch !important;
}

.ypv-section-wrap .ypv-card {
  position: relative;
  height: 100% !important;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center !important;
  background: linear-gradient(180deg, #ffffff 0%, #fffdfc 100%);
  border: 1px solid var(--ypv-border);
  box-shadow: 0 18px 44px var(--ypv-shadow);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease, background 320ms ease;
}

.ypv-section-wrap .ypv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(230, 33, 23, 0.12), transparent 42%);
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}

.ypv-section-wrap .ypv-card-tinted {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf8 100%);
}

.ypv-section-wrap .ypv-icon {
  position: relative;
  display: grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, var(--ypv-primary), #ff4d3f 52%, var(--ypv-secondary));
  box-shadow: 0 14px 28px rgba(230, 33, 23, 0.24);
  color: #ffffff;
  border-radius: 18px;
  transition: transform 320ms ease, box-shadow 320ms ease;
}

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

.ypv-section-wrap .ypv-card h3 {
  position: relative;
  color: var(--ypv-text);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  margin: 0;
}

.ypv-section-wrap .ypv-card p {
  position: relative;
  color: var(--ypv-muted);
  line-height: 1.62;
  margin-bottom: 0;
}

.ypv-section-wrap .ypv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(230, 33, 23, 0.38);
  box-shadow: 0 24px 60px var(--ypv-shadow-hover);
  background: linear-gradient(180deg, #ffffff 0%, #fff7f4 100%);
}

.ypv-section-wrap .ypv-card:hover::before {
  opacity: 1;
}

.ypv-section-wrap .ypv-card:hover .ypv-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 36px rgba(230, 33, 23, 0.32);
}

.ypv-section-wrap .ypv-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.ypv-section-wrap .ypv-reveal.ypv-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 620ms ease, transform 620ms ease;
}

@media (min-width: 1024px) {
  .ypv-section-wrap .ypv-band {
    padding: 92px 24px;
  }

  .ypv-section-wrap .ypv-container {
    padding: 0 18px;
  }

  .ypv-section-wrap h2 {
    font-size: 42px;
    white-space: nowrap;
  }

  .ypv-section-wrap .ypv-intro {
    font-size: 17px;
    margin-bottom: 42px;
  }

  .ypv-section-wrap .ypv-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ypv-section-wrap .ypv-grid {
    gap: 26px;
  }

  .ypv-section-wrap .ypv-card {
    min-height: 292px;
    padding: 34px 28px 32px;
  }

  .ypv-section-wrap .ypv-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 24px;
  }

  .ypv-section-wrap .ypv-i {
    font-size: 28px;
  }

  .ypv-section-wrap .ypv-card h3 {
    font-size: 21px;
    margin-bottom: 13px;
  }

  .ypv-section-wrap .ypv-card p {
    font-size: 15.5px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .ypv-section-wrap .ypv-band {
    padding: 72px 22px;
  }

  .ypv-section-wrap .ypv-container {
    padding: 0 12px;
  }

  .ypv-section-wrap h2 {
    font-size: 34px;
  }

  .ypv-section-wrap .ypv-intro {
    font-size: 16px;
    margin-bottom: 34px;
  }

  .ypv-section-wrap .ypv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .ypv-section-wrap .ypv-card {
    min-height: 270px;
    padding: 30px 24px 28px;
  }

  .ypv-section-wrap .ypv-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 21px;
  }

  .ypv-section-wrap .ypv-i {
    font-size: 25px;
  }

  .ypv-section-wrap .ypv-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
  }

  .ypv-section-wrap .ypv-card p {
    font-size: 15px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .ypv-section-wrap .ypv-band {
    padding: 54px 16px;
  }

  .ypv-section-wrap .ypv-container {
    padding: 0;
  }

  .ypv-section-wrap h2 {
    font-size: 28px;
  }

  .ypv-section-wrap .ypv-intro {
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 26px;
  }

  .ypv-section-wrap .ypv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

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

  .ypv-section-wrap .ypv-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
    border-radius: 15px;
  }

  .ypv-section-wrap .ypv-i {
    font-size: 21px;
  }

  .ypv-section-wrap .ypv-card h3 {
    font-size: 16px;
    margin-bottom: 9px;
  }

  .ypv-section-wrap .ypv-card p {
    font-size: 13px;
    line-height: 1.52;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .ypv-section-wrap .ypv-band {
    padding: 48px 14px;
  }

  .ypv-section-wrap h2 {
    font-size: 25px;
  }

  .ypv-section-wrap .ypv-intro {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 22px;
  }

  .ypv-section-wrap .ypv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .ypv-section-wrap .ypv-card {
    min-height: 224px;
    padding: 19px 11px 18px;
    border-radius: 16px;
  }

  .ypv-section-wrap .ypv-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
    border-radius: 14px;
  }

  .ypv-section-wrap .ypv-i {
    font-size: 19px;
  }

  .ypv-section-wrap .ypv-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .ypv-section-wrap .ypv-card p {
    font-size: 12.5px;
    line-height: 1.48;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .ypv-section-wrap .ypv-band {
    padding: 42px 10px;
  }

  .ypv-section-wrap h2 {
    font-size: 22px;
  }

  .ypv-section-wrap .ypv-intro {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .ypv-section-wrap .ypv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .ypv-section-wrap .ypv-card {
    min-height: 216px;
    padding: 17px 9px 16px;
    border-radius: 14px;
  }

  .ypv-section-wrap .ypv-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
    border-radius: 12px;
  }

  .ypv-section-wrap .ypv-i {
    font-size: 17px;
  }

  .ypv-section-wrap .ypv-card h3 {
    font-size: 14px;
    margin-bottom: 7px;
  }

  .ypv-section-wrap .ypv-card p {
    font-size: 12px;
    line-height: 1.42;
  }
}