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

.rpv-976,
.rpv-976 * {
  box-sizing: border-box;
}

.rpv-976 {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
  --rpv-primary: #ff4500;
  --rpv-secondary: #7c2d12;
  --rpv-accent: #14b8a6;
  --rpv-tint: #fff7f2;
  --rpv-text: #1f2933;
  --rpv-muted: #5d6673;
  --rpv-border: rgba(255, 69, 0, 0.16);
  --rpv-shadow: rgba(124, 45, 18, 0.13);
  --rpv-card: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--rpv-text);
}

.rpv-976-section {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
}

.rpv-976-section-white {
  background: #ffffff;
}

.rpv-976-section-tint {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 69, 0, 0.08), transparent 34%),
    linear-gradient(180deg, #fff7f2 0%, #fffaf7 100%);
}

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

.rpv-976-heading,
.rpv-976-intro,
.rpv-976-card-title,
.rpv-976-card-text {
  text-align: center !important;
}

.rpv-976-heading {
  margin: 0 auto;
  color: var(--rpv-text);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.rpv-976-intro {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: var(--rpv-muted);
  line-height: 1.65;
  font-weight: 400;
}

.rpv-976-grid {
  display: grid !important;
  align-items: stretch !important;
  width: 100% !important;
  min-width: 0;
}

.rpv-976-card {
  height: 100% !important;
  min-width: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 247, 0.94));
  border: 1px solid var(--rpv-border);
  box-shadow: 0 18px 42px var(--rpv-shadow);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease, background 280ms ease;
}

.rpv-976-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.08), rgba(20, 184, 166, 0.06), transparent 58%);
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
}

.rpv-976-card:hover {
  transform: translateY(-7px) scale(1.012);
  border-color: rgba(255, 69, 0, 0.34);
  box-shadow: 0 24px 58px rgba(124, 45, 18, 0.18);
}

.rpv-976-card:hover::before {
  opacity: 1;
}

.rpv-976-icon {
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rpv-primary), var(--rpv-secondary));
  box-shadow: 0 14px 30px rgba(255, 69, 0, 0.24);
  transition: transform 280ms ease, box-shadow 280ms ease, background-position 280ms ease;
  background-size: 160% 160%;
  position: relative;
  z-index: 1;
}

.rpv-976-card:hover .rpv-976-icon {
  transform: translateY(-3px);
  background-position: 100% 50%;
  box-shadow: 0 18px 34px rgba(20, 184, 166, 0.22);
}

.rpv-976-i {
  line-height: 1;
  text-align: center !important;
}

.rpv-976-card-title {
  margin: 0;
  color: var(--rpv-text);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
}

.rpv-976-card-text {
  margin: 0;
  color: var(--rpv-muted);
  line-height: 1.58;
  position: relative;
  z-index: 1;
}

.rpv-976.js-enabled .rpv-976-card {
  opacity: 0;
  transform: translateY(18px);
}

.rpv-976.js-enabled .rpv-976-card.rpv-976-visible {
  opacity: 1;
  transform: translateY(0);
}

.rpv-976.js-enabled .rpv-976-card.rpv-976-visible:hover {
  transform: translateY(-7px) scale(1.012);
}

@media (min-width: 1024px) {
  .rpv-976-section {
    padding: 92px 0;
  }

  .rpv-976-container {
    padding: 0 28px;
  }

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

  .rpv-976-intro {
    font-size: 17px;
    margin-top: 18px;
    margin-bottom: 42px;
  }

  .rpv-976-grid {
    gap: 26px;
  }

  .rpv-976-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rpv-976-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .rpv-976-card {
    min-height: 300px;
    padding: 36px 28px 32px;
  }

  .rpv-976-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 24px;
  }

  .rpv-976-i {
    font-size: 28px;
  }

  .rpv-976-card-title {
    font-size: 21px;
    margin-bottom: 14px;
  }

  .rpv-976-card-text {
    font-size: 15.5px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .rpv-976-section {
    padding: 74px 0;
  }

  .rpv-976-container {
    padding: 0 24px;
  }

  .rpv-976-heading {
    font-size: 34px;
  }

  .rpv-976-intro {
    font-size: 16px;
    margin-top: 16px;
    margin-bottom: 34px;
  }

  .rpv-976-grid,
  .rpv-976-grid-3,
  .rpv-976-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .rpv-976-card {
    min-height: 270px;
    padding: 30px 24px 28px;
    border-radius: 20px;
  }

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

  .rpv-976-i {
    font-size: 25px;
  }

  .rpv-976-card-title {
    font-size: 19px;
    margin-bottom: 12px;
  }

  .rpv-976-card-text {
    font-size: 15px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .rpv-976-section {
    padding: 54px 0;
  }

  .rpv-976-container {
    padding: 0 16px;
  }

  .rpv-976-heading {
    font-size: 28px;
    max-width: 360px;
  }

  .rpv-976-intro {
    font-size: 14.5px;
    margin-top: 12px;
    margin-bottom: 26px;
    line-height: 1.55;
  }

  .rpv-976-grid,
  .rpv-976-grid-3,
  .rpv-976-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .rpv-976-card {
    min-height: 230px;
    padding: 22px 14px 20px;
    border-radius: 17px;
  }

  .rpv-976-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 15px;
  }

  .rpv-976-i {
    font-size: 21px;
  }

  .rpv-976-card-title {
    font-size: 16px;
    margin-bottom: 9px;
  }

  .rpv-976-card-text {
    font-size: 13px;
    line-height: 1.48;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .rpv-976-section {
    padding: 48px 0;
  }

  .rpv-976-container {
    padding: 0 12px;
  }

  .rpv-976-heading {
    font-size: 25px;
    max-width: 310px;
  }

  .rpv-976-intro {
    font-size: 13.8px;
    margin-top: 11px;
    margin-bottom: 22px;
    line-height: 1.5;
  }

  .rpv-976-grid,
  .rpv-976-grid-3,
  .rpv-976-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .rpv-976-card {
    min-height: 222px;
    padding: 19px 11px 18px;
    border-radius: 15px;
  }

  .rpv-976-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    border-radius: 14px;
  }

  .rpv-976-i {
    font-size: 19px;
  }

  .rpv-976-card-title {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .rpv-976-card-text {
    font-size: 12.4px;
    line-height: 1.45;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .rpv-976-section {
    padding: 42px 0;
  }

  .rpv-976-container {
    padding: 0 10px;
  }

  .rpv-976-heading {
    font-size: 22px;
    max-width: 286px;
  }

  .rpv-976-intro {
    font-size: 13px;
    margin-top: 10px;
    margin-bottom: 20px;
    line-height: 1.48;
  }

  .rpv-976-grid,
  .rpv-976-grid-3,
  .rpv-976-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .rpv-976-card {
    min-height: 214px;
    padding: 17px 9px 16px;
    border-radius: 14px;
  }

  .rpv-976-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    border-radius: 13px;
  }

  .rpv-976-i {
    font-size: 17px;
  }

  .rpv-976-card-title {
    font-size: 14px;
    margin-bottom: 7px;
  }

  .rpv-976-card-text {
    font-size: 11.8px;
    line-height: 1.42;
  }
}

@media (max-width: 319px) {
  .rpv-976-section {
    padding: 38px 0;
  }

  .rpv-976-container {
    padding: 0 10px;
  }

  .rpv-976-heading {
    font-size: 21px;
  }

  .rpv-976-intro {
    font-size: 13px;
    margin-top: 10px;
    margin-bottom: 18px;
  }

  .rpv-976-grid,
  .rpv-976-grid-3,
  .rpv-976-grid-4 {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .rpv-976-card {
    min-height: 210px;
    padding: 18px 12px;
  }

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

  .rpv-976-i {
    font-size: 17px;
  }

  .rpv-976-card-title {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .rpv-976-card-text {
    font-size: 12px;
  }
}