:root {
    --primary-color: #2C5F2D;
    /* Deep Forest Green */
    --secondary-color: #97BC62;
    /* Fresh Sage Green */
    --accent-color: #D4A574;
    /* Warm Gold */
    --dark-color: #2D3E40;
    /* Deep Teal */
    --light-bg: #F5F3EF;
    /* Warm Cream */
    --text-primary: #2D3E40;
    --text-secondary: #5C6D70;
}

* {
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    font-family: 'Poppins', sans-serif;
}

/* Common */
.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: var(--line-clamp, 2);
    -webkit-box-orient: vertical;
    overflow: hidden;
}

a {
    text-decoration: none;
}

.content {
    width: 1110px;
    max-width: calc(100% - 48px);
    margin: 0 auto;
}

/*=============== Header ===============*/
.fixed-header {
    background-color: var(--light-bg);
    padding-top: 26px;
    position: sticky;
    top: -26px;
    z-index: 1;
}

.hero-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light-bg);
    height: calc(100vh - 90px);
}

.btn {
    display: inline-block;
    min-width: 98px;
    max-height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #FFF;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500;
    padding: 18px 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.2);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.3);
}

.navbar {
    display: flex;
    align-items: center;
    /* padding-top: 38px; */
    padding: 12px 0;
    border-radius: 8px;
}

.navbar ul {
    display: flex;
    margin-left: 50px;
}

.navbar .actions {
    margin-left: auto;
}

.navbar ul a {
    font-weight: 500;
    font-size: 1.4rem;
    padding: 8px 14px;
    color: var(--text-secondary);
}

.logo-text {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar .action-link {
    color: var(--primary-color, #0F1B4C);
    font-size: 1.4rem;
    font-weight: 500;
    padding: 8px 14px;
}

.navbar .action-btn {
    padding: 13px 16px;
    border-radius: 8px;
}

.navbar ul a:hover {
    text-decoration: underline;
}

.hero-wrapper .info {
    width: 53.3%;
}

.hero-wrapper .sub-title {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.hero-wrapper .title {
    margin-top: 8px;
    color: var(--dark-color);
    font-size: 6.4rem;
    font-weight: 700;
    line-height: 1.19;
}

.hero-wrapper .desc {
    margin-top: 30px;
    color: var(--text-secondary);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 177.778%;
}

.hero-cta {
    min-width: 170px;
    margin-top: 40px;
}

.hero-img {
    position: absolute;
    right: calc((100vw - 1110px)/2 - 100px);
    bottom: 0;
}

/* ===== Client ==== */
.clients {
    margin-top: 79px;
    padding: 43px 0;
}

.clients .row {
    display: flex;
    justify-content: space-between;
}

.clients .desc {
    color: #7D8589;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 125%;
}

.row-desc {
    margin-top: 23px;
}

.clients .images {
    margin-top: 96.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.clients .images a {
    display: flex;
    align-items: center;
    padding: 0 42px;
    height: 90px;
    border-radius: 12px;
}

.clients .images a:hover {
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

/* ===== Guides ======= */

.guides {
    margin-top: 40px;
    padding: 93px 0 79px;
}

.guides .sub-title {
    color: var(--dark-color);
    text-align: center;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1;
    position: relative;
}

.guides .sub-title::before {
    content: "";
    position: absolute;
    width: 41px;
    height: 4px;
    border-radius: 12px;
    background: var(--accent-color);
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.guides .content .desc {
    color: var(--text-secondary);
    text-align: center;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 187.5%;
    width: 459px;
    max-width: 100%;
    margin: 20px auto 0;
}

.list-guide {
    margin-top: 70px;
    display: flex;
    justify-content: center;
}

.guide-item {
    margin: 0 70px;
    text-align: center;
}

.guide-item .title {
    margin-top: 26px;
    color: var(--dark-color);
    font-size: 2rem;
    font-weight: 500;
    line-height: 110%;
}

.guide-item .link {
    margin-top: 10px;
    color: var(--secondary-color);
    font-size: 1.4rem;
    font-weight: 600;
}

.guide-item .arrow {
    margin-left: 6px;
}

.guide-cta {
    display: flex;
    margin-top: 50px;
    justify-content: center;
}

.guide-cta .btn {
    min-width: 170px;
    color: #FFF;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
}

/* ===== Feature ======= */
.featured {
    margin-top: 41px;
    padding: 110px 0;
    background: var(--light-bg);
}

.featured .sub-title {
    color: var(--dark-color);
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1;
}

.featured .row {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}

.featured .row .desc {
    color: var(--text-secondary);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 187.5%;
}

.featured .row .link {
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 600;
}

.featured .row .arrow {
    margin-left: 8px;
    display: inline-block;
}

.featured .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 70px;
    gap: 30px;
}

.featured .item {
    flex: 1;
    background-color: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.featured .item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(44, 95, 45, 0.15);
}

.featured .item .thumb {
    width: 100%;
    height: 227px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.featured .body {
    padding: 17px 20px 24px;
}

.featured .item .title a {
    margin-top: 17px;
    color: var(--dark-color);
    font-size: 2rem;
    font-weight: 600;
    line-height: 100%;
    line-height: 1.5;
}

.featured .item .desc {
    --line-clamp: 3;
    color: #A3A6AB;
    margin-top: 14px;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.5rem;
    word-break: break-all;
}

.featured .item .info {
    --margin-left-icon: 23px;
    margin-top: 21px;
    display: flex;
    align-items: center;
    margin-left: calc(-1* var(--margin-left-icon));
}

.featured .item .label {
    margin-left: 8px;
    color: #4D4D52;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.14px;
}

.featured .item .icon {
    margin-left: var(--margin-left-icon);
}

/*======== stats ======== */
.stats {
    margin-top: 75px;
    padding: 50px 0;
}

.stats .content {
    width: 1048px;
}

.stats .row {
    display: flex;
}

.stats .img-block {
    position: relative;
}

.stats .img-block,
.stats .info {
    width: 50%;
}

.stats .img-block .image {
    display: block;
    width: 400px;
    height: 460px;
    object-fit: cover;
    border-radius: 12px;
    margin-left: auto;
}

.stats .info {
    padding: 79px 0 0 165px;
}

.stats .sub-title {
    position: relative;
    width: 269px;
    color: var(--dark-color);
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 128.571%;
}

.stats .sub-title::before {
    position: absolute;
    left: 0;
    top: -10px;
    content: "";
    width: 41px;
    height: 4px;
    border-radius: 12px;
    background: var(--accent-color);
    display: block;
}

.stats .info .desc {
    margin-top: 20px;
    width: 309px;
    color: var(--text-secondary);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 187.5%;
}

.stats .stats-trend {
    padding: 45px 22px 40px;
    top: 0;
    left: 0;
    position: absolute;
    width: 239px;
    border-radius: 0px 0px 12px 12px;
    background: #FFF;
    box-shadow: 90px 85px 100px 0px rgba(0, 0, 0, 0.06);
}

.stats .stats-trend .value {
    color: var(--dark-color);
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.26px;
}

.stats .stats-trend .icon {
    margin-left: auto;
}

.stats .stats-trend .desc {
    margin-top: 8px;
    color: #A7A7A7;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 150%;
}

.stats .stats-trend .separate {
    margin-top: 25px;
    width: 193.62px;
    height: 1.5px;
    background: #E9E9E9;
}

.stats-trend .avatar-block {
    margin-top: 26px;
    display: flex;
    gap: 14px 16px;
    flex-wrap: wrap;
}

.stats-trend .avatar-group {
    display: flex;
}

.avatar-blank {
    text-align: center;
    font-family: "Circular Std", sans-serif;
    font-size: 0.7261rem;
    font-weight: 450;
    letter-spacing: -0.145px;
    line-height: 16px;
    background-color: var(--bg-color, #1F3BB1);
}

.stats .avatar-6 {
    background-color: #1F3BB0;

}

.stats-trend .avatar-group .avatar {
    margin-left: -3px;
    width: 16px;
    height: 16px;
    object-fit: cover;
    border-radius: 50%;
    color: #FFF;
}

.stats-trend .avatar-group .avatar:first-child {
    margin-left: 0;
}

.row-quantity {
    margin-top: 110px;
    justify-content: space-between;
    padding: 0 32px;
}

.row-quantity .qty {
    color: #000;
    font-size: 6.4rem;
    font-weight: 600;
    line-height: 1;
}

.row-quantity .qty-desc {
    margin-top: 24px;
    color: #7B8087;
    font-size: 1.8rem;
    font-weight: 500;
}

.subscription {
    margin-top: 90px;
}

.subscription .body {
    height: 370px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    display: flex;
    align-items: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(44, 95, 45, 0.2);
}

.subscription .info {
    padding: 0 80px;
    width: 671px;
    max-width: 100%;
}

.subscription .body .image {
    position: absolute;
    right: 221px;
    bottom: 0;
}

.subscription .info .sub-title {
    color: #FFF;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.5;
}

.subscription .info .desc {
    margin-top: 15px;
    color: #FFF;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 187.5%;
    opacity: 0.75;
}

.subscription .info .btn {
    margin-top: 20px;
    min-width: 151px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #E8C68A 100%);
    color: var(--dark-color);
    font-weight: 600;
}

/* ========= Footer ========== */

.footer {
    margin-top: 55px;
    padding: 50px 0 58px;
}

.footer .row-top {
    display: flex;
    column-gap: 185px;
}

.footer .heading {
    color: var(--dark-color);
    font-family: Lato, sans-serif;
    font-size: 2.0rem;
    font-weight: 700;
}

.footer .list,
.footer .desc {
    margin-top: 42px;
}

.footer .list .item {
    margin-top: 18px;
}

.footer .list .item a,
.footer .desc {
    white-space: nowrap;
    font-weight: 400;
    font-size: 1.6rem;
    color: #7a7a7e;
}

.footer .desc {
    white-space: normal;
    line-height: 1.75;
}

.footer .social {
    display: flex;
    margin-top: 40px;
    gap: 16px;
}

.footer .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #F9F9F9;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.footer .social-link:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 3px;
}

.footer .row-bottom {
    margin-top: 81px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer .row-bottom .copyright {
    color: #C2C2C2;
    font-size: 1.4rem;
    font-weight: 400;
}