/* RTL וכללי */
.tiktokPage { direction: rtl; }
.tiktokPage .title h2 { font-weight: 800; }

/* --- HERO --- */
.hero { background: linear-gradient(180deg, #eef4ff 0%, #ffffff 60%); }
.heroTitle {
  font-size: 40px; 
  font-weight: 800; 
  line-height: 1.08;
  margin: 0;
}
.heroArtWrap { text-align: left; }
section.mainContainer .sectionTop .sectionTopImage {
    width: 100px;
}

/* --- WHY TIKTOK --- */
.whyTitle { font-size: 50px; font-weight: 800; }
.whyIntro {
  font-size: 24px;  
  font-weight: 400;   
  color: var(--text-muted);
  max-width: 625px;
  margin: auto;
  margin-top: 10px;
}

/* --- WHO IS IT FOR --- */
.whoFor { margin-top: 60px;}
.whoFor .subtitle { color: var(--text-muted); margin-top: 4px; }
.whoRow {
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.whoCard {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: #ffffff;
    border: 1px solid black;
    box-shadow: 6px 4px 4px 0 var(--secondary);
    border-radius: 30px;
    padding: 16px;
    text-align: center;
    height: 248px;
    margin-top: 140px;
}
.whoImg {
    position: absolute; top: -63px; left: 0;
    width: 182px; height: 182px; 
    object-fit: contain; 
}
.whoCard .whoTitle { font-size: 32px; font-weight: 700; color: var(--secondary)}
.whoText  { font-size: 20px; font-weight: 400; color: var(--text-muted); }

/* --- AUDIENCE --- */
.audience {
    margin-top: 70px;
}
.audienceRow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
.audienceItem {
    width: 100%;
    margin-bottom: 20px;
}
.audienceItem .aTitle { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.audienceItem .aText { font-size: 20px; }

/* --- HOW-TO STEPS --- */
.howTo {
  margin-top: 40px;
}

.howTo .trustGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.trustItem {
    text-align: center;
}

.trustItem .trustText {
    font-size: 24px;
    font-weight: 700;
    margin-top: 12px;
}

.trustItem .trustSubText {
    font-size: 20px;
}


/* --- BENEFITS --- */
.benefits {
    margin-top: 80px;
}
.benefitsList { width:100%; margin: auto; text-align: right; font-size: 22px; }
.benefitsList p { margin: 24px 0;}

/* --- WHY BEST LINKS --- */
.whyBL {
    margin-top: 70px;
    margin-bottom: 60px;
}
.whyBL .infoListsContainer {
    margin-top: 20px;
}

.whyBL .infoListsContainer .infoLists {
    display: flex;
    justify-content: center;
}

.whyBL .infoListsContainer .infoList {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    width: unset;
    max-width: 411px;
    height: unset;
}


/* Laptop Screen 1280px */
@media only screen and (min-width: 1280px) {
    section.mainContainer .sectionTop .sectionTopImage {
        width: 163px;
    }
    .heroTitle {
        font-size: 80px; 
    }
    .whoFor { margin-top: 190px;}
    .whoRow {
        flex-direction: row;
        align-items: flex-start;
    }

    .whoCard {
        max-width: 348px;
        margin-left: 50px;
    }
    .audienceRow {
        flex-direction: row;
        align-items: flex-start;
    }
    .audienceItem {
        margin-bottom: 0;
        width: 247px;
    }
    .howTo {
        margin-top: 80px;
    }
    .howTo .trustGrid {
        grid-template-columns: repeat(3, 1fr);
        gap: 120px;
    }
    .benefitsList { width:536px; font-size: 26px; }
    .whyBL .infoListsContainer {
        margin-top: 130px;
    }
    .whyBL .infoListsContainer .infoLists {
        margin-bottom: 80px;
    }
}
