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

.swv-root,
.swv-root * {
  box-sizing: border-box;
  min-width: 0;
}

.swv-root {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #182018;
  font-family: Arial, Helvetica, sans-serif;
}

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

.swv-root .swv-section-white {
  background: #ffffff;
}

.swv-root .swv-section-tint {
  background: linear-gradient(180deg, #fffde8 0%, #f8fff4 100%);
}

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

.swv-root .swv-heading,
.swv-root .swv-intro,
.swv-root .swv-card,
.swv-root .swv-card h3,
.swv-root .swv-card p {
  text-align: center !important;
}

.swv-root .swv-heading {
  margin: 0 auto;
  color: #111611;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.swv-root .swv-intro {
  margin: 14px auto 0;
  color: #536052;
  line-height: 1.65;
  max-width: 760px;
}

.swv-root .swv-grid {
  display: grid !important;
  align-items: stretch !important;
}

.swv-root .swv-card {
  position: relative;
  height: 100% !important;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #e0e8d6;
  box-shadow: 0 18px 42px rgba(113, 154, 55, 0.14);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease, background 280ms ease;
}

.swv-root .swv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 252, 0, 0.18), transparent 45%);
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
}

.swv-root .swv-icon {
  display: inline-grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 18px;
  background: linear-gradient(135deg, #fffc00 0%, #7ed957 100%);
  box-shadow: 0 12px 26px rgba(126, 217, 87, 0.28);
  color: #111611;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.swv-root .swv-i {
  display: block;
  line-height: 1;
}

.swv-root .swv-card h3 {
  position: relative;
  margin: 18px 0 0;
  color: #172017;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.swv-root .swv-card p {
  position: relative;
  margin: 12px auto 0;
  color: #5d675b;
  line-height: 1.58;
}

.swv-root .swv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(126, 217, 87, 0.72);
  background: #ffffff;
  box-shadow: 0 24px 58px rgba(113, 154, 55, 0.22);
}

.swv-root .swv-card:hover::before {
  opacity: 1;
}

.swv-root .swv-card:hover .swv-icon {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 34px rgba(255, 252, 0, 0.3);
}

.swv-root .swv-reveal {
  opacity: 1;
  transform: translateY(0);
}

.swv-root.swv-js .swv-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.swv-root.swv-js .swv-reveal.swv-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

@media (min-width: 1024px) {
  .swv-root .swv-section {
    padding: 88px 0;
  }

  .swv-root .swv-container {
    padding: 0 28px;
  }

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

  .swv-root .swv-intro {
    font-size: 18px;
  }

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

  .swv-root .swv-grid {
    gap: 26px;
    margin-top: 46px;
  }

  .swv-root .swv-card {
    min-height: 300px;
    padding: 36px 30px;
  }

  .swv-root .swv-icon {
    width: 74px;
    height: 74px;
    font-size: 30px;
  }

  .swv-root .swv-card h3 {
    font-size: 22px;
  }

  .swv-root .swv-card p {
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .swv-root .swv-section {
    padding: 72px 0;
  }

  .swv-root .swv-container {
    padding: 0 24px;
  }

  .swv-root .swv-heading {
    font-size: 34px;
  }

  .swv-root .swv-intro {
    font-size: 16px;
  }

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

  .swv-root .swv-card {
    min-height: 270px;
    padding: 30px 24px;
  }

  .swv-root .swv-icon {
    width: 66px;
    height: 66px;
    font-size: 26px;
  }

  .swv-root .swv-card h3 {
    font-size: 20px;
  }

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

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

  .swv-root .swv-container {
    padding: 0 16px;
  }

  .swv-root .swv-heading {
    font-size: 28px;
  }

  .swv-root .swv-intro {
    font-size: 14px;
  }

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

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

  .swv-root .swv-icon {
    width: 54px;
    height: 54px;
    font-size: 21px;
    border-radius: 15px;
  }

  .swv-root .swv-card h3 {
    margin-top: 14px;
    font-size: 16px;
  }

  .swv-root .swv-card p {
    margin-top: 9px;
    font-size: 13px;
    line-height: 1.5;
  }
}

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

  .swv-root .swv-container {
    padding: 0 12px;
  }

  .swv-root .swv-heading {
    font-size: 25px;
  }

  .swv-root .swv-intro {
    font-size: 13px;
    line-height: 1.55;
  }

  .swv-root .swv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
  }

  .swv-root .swv-card {
    min-height: 222px;
    padding: 20px 12px;
    border-radius: 16px;
  }

  .swv-root .swv-icon {
    width: 50px;
    height: 50px;
    font-size: 19px;
    border-radius: 14px;
  }

  .swv-root .swv-card h3 {
    margin-top: 13px;
    font-size: 15px;
  }

  .swv-root .swv-card p {
    margin-top: 8px;
    font-size: 12.5px;
    line-height: 1.48;
  }
}

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

  .swv-root .swv-container {
    padding: 0 10px;
  }

  .swv-root .swv-heading {
    font-size: 22px;
  }

  .swv-root .swv-intro {
    font-size: 12.5px;
    line-height: 1.5;
  }

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

  .swv-root .swv-card {
    min-height: 214px;
    padding: 18px 10px;
    border-radius: 14px;
  }

  .swv-root .swv-icon {
    width: 46px;
    height: 46px;
    font-size: 18px;
    border-radius: 13px;
  }

  .swv-root .swv-card h3 {
    margin-top: 12px;
    font-size: 14px;
  }

  .swv-root .swv-card p {
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.45;
  }
}