@charset "UTF-8";

/* Pricing cards */
.pricing-section {
  background-color: #f7f7f7;
  padding: 50px 0;
}

.pricing-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.pricing-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  padding: 20px;
  position: relative;
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.pricing-container .pricing-card {
  flex: 1;
  max-width: 400px;
  min-width: 300px;
}

.pricing-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-10px);
}

.pricing-header {
  background-color: var(--kc);
  border-radius: 10px 10px 0 0;
  color: #fff;
  padding: 20px 0;
  position: relative;
}

.pricing-plan {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

.pricing-price {
  background-color: var(--kc);
  border-radius: 5px;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  margin: 10px 0;
  padding: 10px;
}

.pricing-description {
  color: #555;
  font-weight: bold;
  margin: 15px 0;
}

.pricing-features {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  text-align: left;
}

.pricing-features li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  color: var(--kc);
  content: "✓";
  font-weight: bold;
  left: 0;
  position: absolute;
}

.badge {
  background-color: #ff4b4b;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 5px 10px;
  position: absolute;
  right: 10px;
  top: 10px;
}

/* Box accents */
.c-box-border {
  background-color: #fff;
  border: var(--border, 5px solid var(--scd));
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 20px;
}

.fa-check-circle {
  color: #008000;
  margin-right: 10px;
}

/* Footer/order-made footer */
.company-link i {
  color: #fff;
  font-size: 0.8em;
  margin-left: 5px;
}

/* Common UI overrides */
.g-pagetop a {
  background: var(--kc);
}

.c-btn--contact {
  background: linear-gradient(to bottom, #ff7e00, #e06800) !important;
}

.p-common-texture::after {
  background-color: #b8ddff;
}

.c-headline-compact .c-headline-compact__ttl::first-letter {
  color: var(--kc);
}

.p-contact .g-form {
  border: 3px dashed var(--kc);
}

/* Sitemap */
.c-sitemap .nav-item a {
  background-color: var(--kc);
  border: 1px solid #333;
  color: #fff;
}

.c-sitemap .nav-item a::after {
  background-image: none;
}

.c-sitemap .nav-item a .c-btn-simple__icon,
.c-sitemap .nav-item a i {
  color: #fff;
}
body.lai-cursor--native #cursor,
body.lai-cursor--native #stalker {
  display: none;
}
