.navbar .navbar-nav .nav-link {
    color: #333;
}
.navbar-nav .nav-link.active {
    color: #111 !important;
    opacity: 1 !important;
    font-weight: bold;
}
.header-icon .icon > a {
    color: #333 !important;
}
.span-push-button {
    background-color: #333 !important;
}
.font-archivo {
    font-family: "Archivo", sans-serif;
}

.sitetisfy-gradient {
    background: linear-gradient(
        270deg,
        rgba(47, 159, 255, 0.5) 14.42%,
        rgba(75, 32, 232, 0.5) 87.98%
    ) !important;
}

.bg-sitetisfy-hero {
    background-image: url('../images/bg-hero-sitetisfy.png') !important;
    background-repeat: no-repeat !important;
}

.bg-sitetisfy-line {
    background-image: url('../images/bg-gradient-line.png') !important;
    background-repeat: no-repeat !important;
}

.text-gradient {
    background: linear-gradient(270deg, #2f9fff 14.42%, #4b20e8 87.98%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.border-custom {
    position: relative;
}

.border-custom::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 30px;
    height: 50%;
    width: 2px;
    background: #999;
}

.floating-wa {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,.3);
  z-index: 9999;
  transition: transform .2s ease, box-shadow .2s ease;
}

.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0,0,0,.4);
}

.custom-feature-box {
    /* max-width: 520px; */
    /* font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; */
    color: #111827;
}

.custom-feature-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
    color: #1f2937;
}

.custom-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 6px;
    color: #111827;
}

.custom-feature-list li::before {
    content: "✔";
    color: #16a34a;
    font-weight: 600;
    margin-top: 1px;
}

.ml-10px {
    margin-left: 10px;
}

.linear-vertical-gradient {
    -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 100%); 
    mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

.lh-25px{
    line-height: 25px;
}

.lh-30px {
    line-height: 30px;
}

/* ===== Single Page Navigation ===== */
html {
    scroll-behavior: smooth;
}

section[id],
footer[id] {
    scroll-margin-top: 80px;
}

/* ===== Responsive Images ===== */
.stack-card .col-xl-6 img,
.stack-card .col-lg-6 img {
    max-width: 100%;
    height: auto;
}

.atropos-inner img {
    max-width: 100%;
    height: auto;
}

/* ===== Navbar Get Started Button ===== */
.nav-get-started {
    font-size: 13px;
    padding: 6px 16px;
    letter-spacing: 0;
    white-space: nowrap;
}

/* ===== Footer Nav Links ===== */
.footer-nav-link {
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav-link:hover {
    color: #2f9fff !important;
}

/* ===== Hero section mobile fix ===== */
@media (max-width: 767px) {
    #hero .col-md-5 {
        margin-top: 30px;
        text-align: center;
    }
    #hero .col-md-5 img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
    }
}

/* ===== About section mobile: prevent overflow from decorative images ===== */
@media (max-width: 767px) {
    #about .row.row-cols-md-2 .col:first-child {
        margin-bottom: 40px;
        min-height: 280px;
    }
    #about .col:first-child .position-relative.w-60 {
        width: 70% !important;
    }
}

/* ===== Stack card image alignment ===== */
.stack-card-item .row .col-xl-6:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
}