/* FAQ */
.faq { padding: 82px 0 90px; background: #f4f8f3; }
.faq-inner { display: grid; grid-template-columns: minmax(280px, 390px) minmax(0, 1fr); gap: 80px; align-items: start; }
.faq-heading { position: sticky; top: 125px; }
.faq-heading > span { display: block; margin-bottom: 12px; color: #139a14; font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: 3px; }
.faq-heading h2 { margin: 0; color: #141414; font-size: 42px; line-height: 1.14; letter-spacing: -1.2px; }
.faq-heading p { margin: 22px 0 0; color: #5d6961; font-size: 16px; line-height: 1.7; }
.faq-list { display: grid; gap: 12px; }
.faq-item { overflow: hidden; border: 1px solid #dce5dc; border-radius: 8px; background: #fff; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item.is-open { border-color: #b8d8b4; box-shadow: 0 12px 30px rgba(15,79,25,.08); }
.faq-item h3 { margin: 0; font-size: inherit; }
.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; min-height: 74px; padding: 18px 22px 18px 26px; color: #142019; border: 0; background: transparent; font: inherit; font-size: 17px; font-weight: 800; line-height: 1.35; text-align: left; cursor: pointer; }
.faq-question:hover { color: #139a14; }
.faq-question i { display: flex; flex: 0 0 auto; align-items: center; justify-content: center; width: 34px; height: 34px; color: #139a14; border-radius: 50%; background: #edf7ea; font-size: 13px; transition: color .25s ease, background .25s ease, transform .25s ease; }
.faq-item.is-open .faq-question i { color: #fff; background: #139a14; transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; visibility: hidden; transition: grid-template-rows .3s ease, visibility .3s ease; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; visibility: visible; }
.faq-answer > div { min-height: 0; overflow: hidden; }
.faq-answer p { margin: 0; padding: 0 78px 24px 26px; color: #5a665e; font-size: 15px; line-height: 1.7; }

/* Blog */
.blog-main { padding: 64px 0 94px; background: #fff; }
.blog-heading { max-width: 940px; margin-bottom: 48px; text-align: center; }
.blog-heading > span { display: block; margin-bottom: 13px; color: #139a14; font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: 3px; }
.blog-heading h1 { margin: 0; color: #141414; font-size: clamp(40px, 4.5vw, 62px); line-height: 1.08; letter-spacing: -2px; }
.blog-heading p { max-width: 760px; margin: 22px auto 0; color: #5c6860; font-size: 18px; line-height: 1.65; }
.blog-featured { display: grid; grid-template-columns: 1.16fr .84fr; min-height: 480px; margin-bottom: 42px; overflow: hidden; border-radius: 11px; background: #071c14; box-shadow: 0 22px 55px rgba(5,31,17,.12); }
.blog-featured-image { min-height: 100%; overflow: hidden; }
.blog-featured-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-featured:hover .blog-featured-image img { transform: scale(1.035); }
.blog-featured-content { display: flex; flex-direction: column; justify-content: center; padding: 55px 52px; color: #fff; }
.blog-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 9px 18px; margin-bottom: 17px; color: #718078; font-size: 13px; font-weight: 600; }
.blog-meta span { color: #139a14; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; }
.blog-meta small { font-size: inherit; }
.blog-featured .blog-meta { color: #b8c8bd; }
.blog-featured .blog-meta span { color: #87df72; }
.blog-featured h2 { margin: 0; color: #fff; font-size: 37px; line-height: 1.17; letter-spacing: -1px; }
.blog-featured h2 a { color: inherit; }
.blog-featured-content > p { margin: 22px 0 28px; color: #cbd6ce; font-size: 16px; line-height: 1.7; }
.blog-read-more { display: inline-flex; align-items: center; gap: 10px; width: fit-content; color: #139a14; font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .5px; }
.blog-read-more i { transition: transform .2s ease; }
.blog-read-more:hover i { transform: translateX(4px); }
.blog-featured .blog-read-more { color: #87df72; }
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
.blog-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid #dfe6df; border-radius: 9px; background: #fff; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.blog-card:hover { border-color: #c5ddc2; box-shadow: 0 18px 42px rgba(11,61,20,.09); transform: translateY(-5px); }
.blog-card-image { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: #eaf1e8; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.045); }
.blog-card-content { display: flex; flex: 1; flex-direction: column; padding: 27px 28px 29px; }
.blog-card h2 { margin: 0; color: #172119; font-size: 22px; line-height: 1.32; letter-spacing: -.35px; }
.blog-card h2 a { color: inherit; }
.blog-card h2 a:hover { color: #139a14; }
.blog-card-content > p { margin: 16px 0 23px; color: #647068; font-size: 14px; line-height: 1.65; }
.blog-card .blog-read-more { margin-top: auto; }
.blog-pagination { display: flex; justify-content: center; gap: 9px; margin-top: 52px; }
.blog-pagination a { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; color: #253128; border: 1px solid #dce4dd; border-radius: 6px; background: #fff; font-size: 14px; font-weight: 800; }
.blog-pagination a:hover, .blog-pagination a.active { color: #fff; border-color: #139a14; background: #139a14; }

/* Detail clanku */
.blog-detail-main { padding: 62px 0 95px; background: #fff; }
.blog-article-header { max-width: 1050px; margin: 0 auto 42px; text-align: center; }
.blog-article-header .blog-meta { justify-content: center; }
.blog-article-header h1 { margin: 0; color: #141414; font-size: clamp(42px, 5vw, 66px); line-height: 1.07; letter-spacing: -2.4px; }
.blog-article-header > p { max-width: 850px; margin: 25px auto 0; color: #58645c; font-size: 19px; line-height: 1.7; }
.blog-article-hero { height: min(590px, 42vw); min-height: 380px; margin: 0 0 58px; overflow: hidden; border-radius: 11px; background: #e8efe7; }
.blog-article-hero img { width: 100%; height: 100%; object-fit: cover; }
.blog-article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 75px; width: min(1260px, 100%); margin: 0 auto; align-items: start; }
.blog-article-content { min-width: 0; }
.blog-article-aside { position: sticky; top: 120px; }
.blog-article-aside > div { padding: 32px 30px; color: #fff; border-radius: 9px; background: linear-gradient(145deg, #082218, #0d6f18); box-shadow: 0 18px 45px rgba(5,48,18,.16); }
.blog-article-aside span { color: #9de38e; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px; }
.blog-article-aside h2 { margin: 12px 0 15px; color: #fff; font-size: 25px; line-height: 1.25; }
.blog-article-aside p { margin: 0 0 23px; color: #d6e2d8; font-size: 14px; line-height: 1.65; }
.blog-article-aside .btn { width: 100%; min-height: 54px; }
.blog-aside-phone { display: block; margin-top: 19px; color: #fff; font-size: 22px; font-weight: 900; text-align: center; }
.blog-back { width: min(1260px, 100%); margin: 55px auto 0; padding-top: 28px; border-top: 1px solid #e1e7e1; }
.blog-back a { display: inline-flex; align-items: center; gap: 10px; color: #139a14; font-size: 14px; font-weight: 800; }
