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

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

.swv26-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #17201a;
  font-family: inherit;
}

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

.swv26-wrapper .swv26-section-white {
  background: #ffffff;
}

.swv26-wrapper .swv26-section-tint {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 252, 0, 0.22), transparent 34%),
    linear-gradient(180deg, #fffef0 0%, #f7fbf6 100%);
}

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

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

.swv26-wrapper .swv26-heading {
  margin: 0 auto;
  color: #121812;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.swv26-wrapper .swv26-intro {
  margin: 0 auto;
  max-width: 760px;
  color: #526053;
  line-height: 1.65;
}

.swv26-wrapper .swv26-grid {
  display: grid !important;
  align-items: stretch !important;
  min-width: 0;
}

.swv26-wrapper .swv26-card {
  position: relative;
  min-width: 0;
  height: 100% !important;
  display: grid;
  justify-items: center;
  align-content: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 50% 0%, rgba(255, 252, 0, 0.16), transparent 42%);
  border: 1px solid rgba(203, 210, 180, 0.78);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(23, 32, 26, 0.09);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background-position 260ms ease;
  overflow: hidden;
}

.swv26-wrapper .swv26-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 252, 0, 0.16), rgba(0, 184, 148, 0.08), transparent 58%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.swv26-wrapper .swv26-card:hover {
  transform: translateY(-7px) scale(1.01);
  border-color: rgba(0, 184, 148, 0.42);
  box-shadow: 0 24px 58px rgba(23, 32, 26, 0.14);
}

.swv26-wrapper .swv26-card:hover::before {
  opacity: 1;
}

.swv26-wrapper .swv26-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #fffc00 0%, #00b894 100%);
  box-shadow: 0 12px 26px rgba(0, 184, 148, 0.22);
  color: #111611;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.swv26-wrapper .swv26-card:hover .swv26-icon {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(255, 204, 0, 0.28);
}

.swv26-wrapper .swv26-i {
  color: #111611;
  line-height: 1;
  text-align: center;
}

.swv26-wrapper .swv26-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #17201a;
  font-weight: 760;
  line-height: 1.22;
  letter-spacing: 0;
}

.swv26-wrapper .swv26-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #5b665c;
  line-height: 1.58;
}

.swv26-wrapper .swv26-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.swv26-wrapper .swv26-reveal.swv26-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

  .swv26-wrapper .swv26-container {
    padding: 0 28px;
  }

  .swv26-wrapper .swv26-heading {
    font-size: 42px;
    max-width: 980px;
    white-space: nowrap;
  }

  .swv26-wrapper .swv26-intro {
    margin-top: 16px;
    font-size: 17px;
  }

  .swv26-wrapper .swv26-grid {
    margin-top: 42px;
    gap: 24px;
  }

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

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

  .swv26-wrapper .swv26-card {
    min-height: 296px;
    padding: 34px 26px 30px;
  }

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

  .swv26-wrapper .swv26-i {
    font-size: 28px;
  }

  .swv26-wrapper .swv26-card h3 {
    font-size: 20px;
  }

  .swv26-wrapper .swv26-card p {
    margin-top: 13px;
    font-size: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .swv26-wrapper .swv26-section {
    padding: 70px 0;
  }

  .swv26-wrapper .swv26-container {
    padding: 0 24px;
  }

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

  .swv26-wrapper .swv26-intro {
    margin-top: 14px;
    font-size: 16px;
  }

  .swv26-wrapper .swv26-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 34px;
    gap: 20px;
  }

  .swv26-wrapper .swv26-card {
    min-height: 270px;
    padding: 30px 24px 26px;
    border-radius: 18px;
  }

  .swv26-wrapper .swv26-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 21px;
  }

  .swv26-wrapper .swv26-i {
    font-size: 25px;
  }

  .swv26-wrapper .swv26-card h3 {
    font-size: 19px;
  }

  .swv26-wrapper .swv26-card p {
    margin-top: 12px;
    font-size: 14.5px;
  }
}

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

  .swv26-wrapper .swv26-container {
    padding: 0 16px;
  }

  .swv26-wrapper .swv26-heading {
    font-size: 28px;
    max-width: 390px;
  }

  .swv26-wrapper .swv26-intro {
    margin-top: 12px;
    font-size: 14.5px;
    line-height: 1.55;
  }

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

  .swv26-wrapper .swv26-card {
    min-height: 232px;
    padding: 22px 14px 20px;
    border-radius: 15px;
  }

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

  .swv26-wrapper .swv26-i {
    font-size: 21px;
  }

  .swv26-wrapper .swv26-card h3 {
    font-size: 16px;
  }

  .swv26-wrapper .swv26-card p {
    margin-top: 9px;
    font-size: 13px;
    line-height: 1.45;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .swv26-wrapper .swv26-section {
    padding: 46px 0;
  }

  .swv26-wrapper .swv26-container {
    padding: 0 12px;
  }

  .swv26-wrapper .swv26-heading {
    font-size: 25px;
    max-width: 340px;
  }

  .swv26-wrapper .swv26-intro {
    margin-top: 10px;
    font-size: 13.5px;
    line-height: 1.5;
  }

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

  .swv26-wrapper .swv26-card {
    min-height: 224px;
    padding: 18px 10px 17px;
    border-radius: 14px;
  }

  .swv26-wrapper .swv26-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
  }

  .swv26-wrapper .swv26-i {
    font-size: 18px;
  }

  .swv26-wrapper .swv26-card h3 {
    font-size: 14.5px;
  }

  .swv26-wrapper .swv26-card p {
    margin-top: 8px;
    font-size: 12.3px;
    line-height: 1.42;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .swv26-wrapper .swv26-section {
    padding: 40px 0;
  }

  .swv26-wrapper .swv26-container {
    padding: 0 10px;
  }

  .swv26-wrapper .swv26-heading {
    font-size: 22px;
    max-width: 300px;
  }

  .swv26-wrapper .swv26-intro {
    margin-top: 9px;
    font-size: 12.8px;
    line-height: 1.45;
  }

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

  .swv26-wrapper .swv26-card {
    min-height: 218px;
    padding: 16px 8px 15px;
    border-radius: 12px;
  }

  .swv26-wrapper .swv26-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
  }

  .swv26-wrapper .swv26-i {
    font-size: 16px;
  }

  .swv26-wrapper .swv26-card h3 {
    font-size: 13.5px;
  }

  .swv26-wrapper .swv26-card p {
    margin-top: 7px;
    font-size: 11.8px;
    line-height: 1.38;
  }
}

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