:root {
  --gold: #b8943b;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --overlay: rgba(0, 0, 0, 0.55);
  --overlay-2: rgba(0, 0, 0, 0.35);
}

html,
body {
  height: 100%;
}
body {
  font-family:
      "Poppins",
      system-ui,
      -apple-system,
      Segoe UI,
      Roboto,
      Arial,
      sans-serif;
}
html {
    margin-top: 0px !important;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  /* Replace with your real hero image */
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) -10.07%, rgba(0, 0, 0, 0) 66.45%), linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 24.87%), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)), url("../img/hero.webp");
  /* background: url("../img/hero.webp"); */
  background-size: cover;
  background-position: center;
  /* margin-top: -112px; */
}

/* .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
      linear-gradient(
          90deg,
          rgba(0, 0, 0, 0.7) 0%,
          rgba(0, 0, 0, 0.35) 55%,
          rgba(0, 0, 0, 0.55) 100%
      ),
      linear-gradient(0deg, var(--overlay), var(--overlay-2));
} */

.hero-inner {
  position: relative;
  width: 100%;
  padding-top: 92px; /* space for header */
  padding-bottom: 52px;
  display: flex;
  align-items: flex-end;
}

.hero-title {
  font-size: clamp(2.1rem, 3.6vw, 4rem);
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0.2px;
  margin: 0;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  color: #FFFFFF;
}
@media (max-width: 991.98px) {
  .middle-banner{
    padding-bottom: 0px !important;
  }
  .hero-title {
      max-width: 100% !important;
  }
  .hero{
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) -10.07%, rgba(0, 0, 0, 0) 66.45%), linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 24.87%), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)), url("../img/hero-mobi.webp") !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;

  }
  .whatwedo__group h3{
    font-size: 20px !important;
  }
  .btn{
    max-width: fit-content !important;
  }
  .how-row{
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }
  .how-title{
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
  }
  section .top-rule{
    margin: 16px 0 40px !important;
  }
  .contact-image{
    border-radius: 0px !important;
    min-height: unset !important;
  }
  .contact-image img{
    min-height: unset !important;
  }
  .form-panel{
    padding: 20px 16px 40px 16px !important;
    height: fit-content !important;
  }
  .contact-body{
    padding-bottom: 0px !important;
  }
  .content{
    padding-bottom: 10px !important;
  }
}

.hero-sub {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0;
  max-width: 420px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  font-weight: 300;
  leading-trim: both;
  text-edge: cap;
}

/* Desktop layout: title left, subtext bottom-right */
.hero-copy {
  width: 100%;
  position: relative;
}
.hero-sub.desktop-pos {
  position: absolute;
  right: 0;
  bottom: 6px;
  text-align: left;
}

/* Mobile layout: subtext below title, left aligned */
@media (max-width: 991.98px) {
  .service-row .col-lg-5{
    margin-left: 0px !important;
  }
  .hero-inner {
      padding-top: 84px;
      padding-bottom: 36px;
  }
  .hero-sub.desktop-pos {
      position: static;
      margin-top: 18px;
      max-width: 520px;
  }
}

/* ========== HEADER / NAV ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 18px 0;
  background: #000000;
  max-width: 100vw !important;
  max-height: 112px;
}
section{
  max-width: 100vw !important;
  overflow: hidden;
}
main{
  margin-top: 100px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-group {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  min-width: 260px;
}

/* Replace these with real logo images if you have them */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  user-select: none;
}
.logo .big {
  font-size: 34px;
}
.logo .small {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 6px;
  letter-spacing: 1.6px;
}

.divider {
  width: 1px;
  height: -webkit-fill-available;
  display: block;
  background: rgba(255, 255, 255, 0.35);
  margin: 0 2px;
}

.logo-mz .big {
  font-size: 38px;
  color: var(--gold);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
}
.logo-mz .small {
  letter-spacing: 2px;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 56px;
  justify-content: center;
  flex: 1;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 8px 6px;
  position: relative;
}
.main-nav a:hover {
  color: #fff;
}

/* Brackets for active item like [ HOME ] */
.main-nav a.active {
  color: #fff;
}
.main-nav a.active::before,
.main-nav a.active::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}
.main-nav a.active::before {
  content: "";
  background-image: url("../img/before.svg");
  left: -10px;
  width: 9px;
  height: 24px;
}
.main-nav a.active::after {
  content: "";
  background-image: url("../img/after.svg");
  right: -10px;
  width: 9px;
  height: 24px;
}

.main-nav a:hover {
  color: #fff;
}
.main-nav a:hover::before,
.main-nav a:hover::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}
.main-nav a:hover::before {
  content: "";
  background-image: url("../img/before.svg");
  left: -10px;
  width: 9px;
  height: 24px;
}
.main-nav a:hover::after {
  content: "";
  background-image: url("../img/after.svg");
  right: -10px;
  width: 9px;
  height: 24px;
}

.actions {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
  justify-content: flex-end;
}

.lang-pill {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  letter-spacing: 0.6px;
  background: rgba(0, 0, 0, 0.1);
  text-decoration: none;
  text-transform: uppercase;
}
.lang-pill:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-contact {
  background: linear-gradient(90deg, #D0B162 -31.11%, #9B7C39 33.26%, #72551D 100%);
  color: #fff;
  border: 0;
  border-radius: 4px;
  padding: 8px 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}
.btn-contact:hover {
  filter: brightness(1.05);
  border: 1px solid #D0B162;
}

/* Mobile: hide desktop nav + show hamburger in circle */
.hamburger-circle {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.65);
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.1);
}
.navbar-toggler {
  border: 0;
  padding: 0;
  box-shadow: none !important;
}
.navbar-toggler .bi {
  font-size: 26px;
  color: #fff;
}

@media (max-width: 991.98px) {
  .main-nav,
  .actions .lang-pill,
  .actions .btn-contact {
      display: none;
  }
  .brand-group {
      min-width: auto;
  }
  .actions {
      min-width: auto;
  }
  .divider {
      height: 40px;
  }
}

/* Offcanvas styling */
.offcanvas {
  background: rgba(10, 10, 10, 0.96);
  color: #fff;
}
.offcanvas a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}
.offcanvas a:hover {
  color: #fff;
}
.offcanvas .nav-link {
  padding: 14px 0;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.offcanvas .btn-contact {
  width: 100%;
  border-radius: 12px;
  padding: 14px 16px;
}

/* ========== LATEST INSIGHTS ========== */
.insights{
  padding: 40px 0 120px;
  background: #fff;
  color:#111;
}
section{
  padding-bottom:80px;
}
section .section-title{
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  leading-trim: both;
  text-edge: cap;
  line-height: 1.3;
  color: #7A8696; /* giống tone ảnh */
  margin: 0;
}

section .top-rule{
  height: 0.5px;
  background: #cfd6df;
  margin: 25px 0 50px;
}

.btn-insights{
  background: linear-gradient(90deg, #9FA9B5 -13.33%, #7A8696 42.31%, #515964 100%);
  color: #FFFFFF;
  border: 0;
  border-radius: 4px;
  padding: 10px 16px;
  font-size: 16px;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-weight: 500;
}
.btn-insights:hover{ filter: brightness(1.06); color:#fff; }

.insight-card{
  border: 0.5px solid #7A8696;
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
  /* position: relative; */
}

.insight-card::after{
  content:"";
  position: absolute;
  right: 20px;
  transform: scaleX(-1);
  bottom: -9px;
  width: 37.45px;
  height: 79.38px;
  background: url(../img/highlight-after.svg);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  transition: opacity 0.4s ease-out;
}

.insight-card:hover::after{
  opacity: 1;
}

.insight-card .insight-thumb{
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.insight-card img{
  width: 100%;
  height: 280px;        /* giữ tỷ lệ như mock */
  object-fit: cover;
  display:block;
  transition: transform 0.4s ease-out;
}

.insight-card:hover img{
  transform: scale(1.08);
}

.insight-body{
  padding: 22px 22px 26px;
}

.insight-body h3{
  font-size: 18px;
  line-height: 1.45;
  margin: 0;
  font-weight: 500;
  color:#000000;
}

/* Responsive */
@media (max-width: 991.98px){
  .insights{ padding: 54px 0 46px; }
  .insight-card img{ height: 240px; }
  .insight-card::after{
    right: 8px !important;
    bottom: -13px !important;
  }
  .insight-card{
    height: 101% !important;
  }
  .how-desc{
    height: max-content !important;
  }
  .contact-image{
    height: auto !important;
  }
}

@media (max-width: 575.98px){
  .insight-card img{ height: 210px; }
}


/* ========== CTA BANNER (above footer) ========== */
.cta-band{
  padding: 64px 0;
  padding-top: 0px;
  background: transparent; /* để ăn nền trang */
}

.cta-card{
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 260px;
  background: #2b2b2b;
  box-shadow: 0 18px 60px rgba(0,0,0,.25);
}

.cta-card .cta-media{
  position: absolute;
  inset: 0;
  background-image: url("../img/footer.webp"); /* đổi path theo dự án */
  background-size: cover;
  background-position: left center;
  filter: saturate(1.02);
}

.cta-card .cta-overlay{
  position: absolute;
  inset: 0;
  /* tạo mảng xám chiếm phần phải, đúng vibe ảnh */
  background:
    linear-gradient(90deg,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0) 48%,
      rgba(120,130,140,.88) 48%,
      rgba(120,130,140,.88) 100%
    );
}

.cta-card .cta-content{
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 54px 115px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.cta-content-inner{
  max-width: 520px;
  color: #fff;
}

.cta-title{
  font-weight: 600;
  letter-spacing: .2px;
  line-height: 1.12;
  font-size: clamp(1.8rem, 2.2vw, 2.6rem);
  margin: 0 0 14px;
}

.cta-sub{
  color: rgba(255,255,255,.85);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 22px;
}

.btn-cta{
  background: linear-gradient(90deg, #515964 -13.33%, #292D32 42.31%, #000000 100%);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff !important;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 500;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-size: 16px;
}
.btn-cta:hover{
  background: rgba(0,0,0,.60);
  color:#fff;
}

/* Responsive */
@media (max-width: 991.98px){
  .cta-card{
    min-height: 360px;
  }
  .cta-card .cta-overlay{
    /* mobile: phủ xám toàn bộ để text dễ đọc */
    background: rgba(120,130,140,.86);
  }
  .cta-card .cta-content{
    margin-top: 38vh;
    justify-content: flex-start;
    padding: 34px 22px;
    background: linear-gradient(0deg, rgba(122, 134, 150, 0) 27.86%, #7A8696 50%);
  }
  .cta-content-inner{
    max-width: 620px;
  }
  .cta-card .cta-media{
    background-image: url("../img/footer-mobi.webp"); /* đổi path theo dự án */
    background-size: cover;
    background-position: left top;
  }
  .footer-links a{
    font-size: 16px !important;
  }
}
/* ========== FOOTER ========== */
.site-footer{
  background: linear-gradient(180deg, rgba(122, 134, 150, 0) 4.07%, #000000 27.15%);
  background-blend-mode: multiply;
  color: rgba(255,255,255,.86);
  padding: 72px 0 28px;
  padding-top: 0px;
  overflow: hidden;
  max-width: 100vw !important;
  /* border-top: 1px solid rgba(255,255,255,.08); */
}

.footer-logo{
  display:flex;
  /* align-items:center; */
  justify-content:center;
  min-height: 140px;
  opacity: .95;
}

.footer-brand{
  color:#fff;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 14px;
}

.footer-block{
  max-width: 420px;
}

.footer-text{
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  color: #FFFFFF;
}

.footer-divider{
  height: 1px;
  background: rgba(255,255,255,.16);
  margin: 18px 0 18px;
}

.footer-kv{
  display:grid;
  grid-template-columns: 22px 1fr;
  gap: 10px 14px;
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.82);
}
.footer-kv .k{
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .8px;
}
.footer-kv a{
  color: #FFFFFF;
  text-decoration: none;
}

.footer-kv .mz{
  color: #9FA9B5;
  font-weight: 700;
  letter-spacing: .8px;
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 18px;
  margin-top: 44px;
}

.footer-links{
  display:flex;
  gap: 34px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a{
  color: rgba(255,255,255,.65);
  text-decoration:none;
  font-size: 14px;
}
.footer-links a:hover{
  color:#fff;
}

.footer-copy{
  color: rgba(255,255,255,.65);
  font-size: 14px;
  text-align: right;
}

@media (max-width: 991.98px){
  .site-footer{ padding: 54px 0 24px; }
  .footer-logo{ min-height: auto; justify-content:flex-start; }
  .footer-copy{ text-align: left; margin-top: 12px; }
}

/* ========== WHAT OUR CLIENTS SAY ========== */
.clients-say{
  padding: 0px 0 40px;
}

/* Left image with gold corner frame */
.clients-say__photo{
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  max-width: 420px;
}

.clients-say__photo img{
  width: 100%;
  /* height: 520px; */
  object-fit: contain;
  display:block;
}

/* gold corners */
.clients-say__photo::before,
.clients-say__photo::after{
  content:"";
  position:absolute;
  width: 44px;
  height: 44px;
  border: 6px solid var(--gold);
  pointer-events:none;
}

.clients-say__photo::before{
  left: -6px;
  top: -6px;
  border-right: 0;
  border-bottom: 0;
  border-radius: 14px 0 0 0;
}

.clients-say__photo::after{
  right: -6px;
  bottom: -6px;
  border-left: 0;
  border-top: 0;
  border-radius: 0 0 14px 0;
}

/* Quote boxes */
.clients-say__stack{
  display:flex;
  flex-direction:column;
  gap: 32px;
}

.clients-say__card{
  border-radius: 4px;
  padding: 40px;
  background: linear-gradient(180deg, #FFFFFF 19.83%, rgba(204, 208, 220, 0.5) 99.78%);
}

.clients-say__card--gold{
  background: linear-gradient(180deg, #FFFFFF 19.83%, rgba(221, 196, 127, 0.5) 99.78%);
}

.clients-say__row{
  display:flex;
  gap: 34px;
  align-items:flex-start;
}

.clients-say__quote{
  font-size: 92px;
  line-height: .82;
  font-weight: 800;
  margin-top: -10px;
  flex: 0 0 auto;
  color:#7f8a97;
}

.clients-say__card--gold .clients-say__quote{
  color:#a8862f;
}

.clients-say__name{
  font-size: 32px;
  font-weight: 500;
  margin: 0;
  color: #7A8696;
  line-height: 1.5;
}

.clients-say__card--gold .clients-say__name{
  color: #9B7C39;
}

.clients-say__meta{
  margin: 4px 0 14px;
  color: #000000;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.4;
}

.clients-say__text{
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
  font-weight: 300;
}

/* responsive */
@media (max-width: 991.98px){
  .clients-say{ padding: 54px 0; }
  .clients-say__photo{ max-width: 100%; }
  /* .clients-say__photo img{ height: 360px; } */
  .clients-say__name{ font-size: 24px; }
  .clients-say__quote{ font-size: 74px; }
  .clients-say__photo::before{
    display: none;
  }
  .clients-say__photo::after{
    display: none;
  }
  .whatwedo__group h3{
    margin-bottom: 20px !important;
  }
  .whatwedo__group{
    padding-bottom: 0px !important;
    padding-top: 40px !important;
  }
  .middle-banner__bg{
    transform: unset !important;
    min-height: -webkit-fill-available !important;
  }
}

/* ========== MIDDLE BANNER ========== */

.middle-banner__wrap{
  position: relative;
  overflow: hidden;
  min-height: 735px;
}

.middle-banner__bg{
  position: absolute;
  inset: 0;
  background: url(../img/banner.webp), #000000;
  background-size: cover;
  background-position: center;
  min-height: -webkit-fit-content;
}

.middle-banner__content{
  position: absolute;
  z-index: 2;
  height: 100%;
  display:flex;
  align-items: center;
  padding: 0 3rem;
}

.middle-banner__box{
  position: relative;
  background: linear-gradient(90deg, #9FA9B5 -13.33%, #7A8696 42.31%, #515964 100%);
  border-radius: 4px;
  padding: 56px;
  max-width: 520px;
  margin-top: 45%;
}

.middle-banner__title{
  margin: 0;
  color: #FFFFFF;
  font-weight: 500;
  font-size: clamp(2rem, 2.6vw, 3rem);
  letter-spacing: -0.01em;
  line-height: 1.33; /* giống kiểu 48/64 */
}

/* gold L corner */
.middle-banner__corner-left{
  position:absolute;
  left: -7px;
  bottom: -13px;
  width: 37.45px;
  height: 79.38px;
  background: url("../img/highlight-after.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.middle-banner__corner-right{
  position:absolute;
  right: -7px;
  top: -7px;
  width: 37.45px;
  height: 79.38px;
  background: url("../img/highlight-before.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

/* Responsive */
@media (max-width: 991.98px){
  /* .middle-banner{ padding: 46px 0; } */
  .middle-banner__wrap{ min-height: 70vh; }
  .middle-banner__content{ padding: 0 18px; }
  .middle-banner__box{ max-width: 92%; padding: 26px 22px; }
  .middle-banner__corner{ left: -14px; bottom: -14px; width: 48px; height: 48px; }
  .btn-contact{
    width: 100%;
    max-width: 100% !important;
  }
  .lang-pill{
    border-radius: 12px !important;
    width: 100% !important;
  }
  .lang-switcher{
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
}

/* ========== WHY US ========== */
.whyus{
  padding: 90px 0 0cqmin;
  color: #fff;
  background: #000000;
  background-blend-mode: multiply;
  position: relative;
}
.whyus::after{
  content:"";
  position:absolute;
  width: 100%;
  /* min-height: 150px; */
  min-height: 100px;
  /* background: linear-gradient(180deg, #000000 44.37%, rgba(122, 134, 150, 0) 100%); */
  background: #000000;
  z-index: 1;
  /* bottom: -150px; */
  bottom: -100px;
}

.whyus__title{
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 300;
  color: #7f8a97;
  margin: 0;
}

.whyus__rule{
  height: 1px;
  background: rgba(255,255,255,.14);
  margin: 14px 0 54px;
}

/* item */
.whyus__item{
  max-width: 360px;
}

.whyus__icon{
  margin-bottom: 40px;
}


.whyus__h{
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  margin: 0 0 16px;
}

.whyus__p{
  margin: 0;
  font-weight: 300;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 1.5;
  max-width: 320px;
}

/* grid spacing giống hình */
.whyus__grid{
  row-gap: 24px;
}

@media (max-width: 991.98px){
  .whyus{ padding: 64px 0 56px; margin-top: -1px; }
  .whyus__rule{ margin-bottom: 34px; }
  .whyus__item{ max-width: 100%; }
  .whyus__grid{ row-gap: 34px; }
}

/* ========== WHAT WE DO ========== */
.whatwedo{
  padding: 86px 0 0;
  color:#fff;
  background:
    radial-gradient(900px 520px at 50% 10%, rgba(255,255,255,.06) 0%, rgba(0,0,0,0) 58%),
    #040404;
}

.whatwedo__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 16px;
}

.whatwedo__title{
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 300;
  color: #7f8a97;
  margin: 0;
}

.whatwedo__btn{
  background:#808a97;
  color:#fff;
  border:0;
  border-radius: 4px;
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-weight: 600;
}
.whatwedo__btn:hover{ filter: brightness(1.06); color:#fff; }

.whatwedo__rule{
  height: 1px;
  background: rgba(255,255,255,.14);
  margin: 16px 0 22px;
}

.whatwedo__group{
  padding: 22px 0 32px;
  border-bottom: 0.5px solid #7A8696;
}

.whatwedo__group:last-child{
  border-bottom: 0;
  padding-bottom: 0;
}

@media (max-width: 767.98px) {
  .whatwedo__group:last-child {
    border-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
}

.whatwedo__group h3{
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  color: #FFFFFF;
  margin: 0 0 40px;
}

/* cards */
.service-card{
  display:block;
  text-decoration:none;
  color:#fff;
}

.service-card__media{
  border-radius: 4px;
  overflow:hidden;
  background:#0f0f0f;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.service-card__media img{
  width:100%;
  /* height: 150px; */
  object-fit: cover;
  display:block;
  transform: scale(1.01);
  transition: transform .25s ease, filter .25s ease;
}

.service-card:hover .service-card__media img{
  transform: scale(1.05);
  filter: brightness(1.05);
}

.service-card__cap{
  margin-top: 24px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #FFFFFF;
}

/* spacing like mock */
.whatwedo__row{
  row-gap: 28px;
}

/* responsive */
@media (max-width: 991.98px){
  .whatwedo{ padding: 64px 0 56px; }
  .service-card__media img{ height: 190px; }
}

@media (max-width: 575.98px){
  .service-card__media img{ height: 170px; }
}

/* ========== WHO WE ARE ========== */
.whoweare{
  padding: 72px 0 76px;
  background:#fff;
  color:#111;
}

.whoweare__title{
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  font-weight: 300;
  color:#7f8a97;
  margin: 0;
}

.whoweare__rule{
  height: 1px;
  background:#cfd6df;
  margin: 18px 0 34px;
}

.whoweare__lead{
  font-size: 24px;
  line-height: 1.33;
  font-weight: 500;
  margin: 0 0 22px;
  color: #000000;
  max-width: 520px;
}

.whoweare__p{
  margin: 0 0 18px;
  color: #000000;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  max-width: 560px;
}

.btn-about{
  background:#808a97;
  color:#fff;
  border:0;
  border-radius: 4px;
  padding: 12px 18px;
  font-size: 13px;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-weight: 600;
}
.btn-about:hover{ filter: brightness(1.06); color:#fff; }

/* Right image + badge */
.whoweare__media{
  position: relative;
  border-radius: 4px;
  min-height: 430px;
  margin-right: -48px;
  padding-left: 80px;
}

.whoweare__media img{
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  display:block;
}

/* Experience badge overlay */
.exp-badge{
  position: absolute;
  left: -10px;
  bottom: 18px;
  background: #EAEEF2;
  border-radius: 4px;
  padding: 18px 22px 16px;
  width: 189px;
  min-height: 189px;
  text-align: center;
  /* box-shadow: 0 18px 50px rgba(0,0,0,.18); */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.exp-badge__num{
  font-size: 64px;
  line-height: 1;
  font-weight: 300;
  background: linear-gradient(90deg, #D0B162 -31.11%, #9B7C39 33.26%, #72551D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* fallback */
  margin: 0;
  position: relative;
  display: inline-block;
}

.exp-badge__label{
  margin-top: 8px;
  letter-spacing: .8px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: #000000;
}

/* gold corners on badge (2 góc như ảnh) */
.exp-badge::before,
.exp-badge::after{
  content:"";
  position:absolute;
  width: 27px;
  height: 52px;
  background-repeat: no-repeat;
  /* border: 6px solid var(--gold); */
  pointer-events:none;
}
.exp-badge::before{
  left: -4px;
  top: -4px;
  background-image: url("data:image/svg+xml,%3Csvg width='27' height='52' viewBox='0 0 27 52' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 52V11.616C4 7.40901 7.35232 4 11.4894 4H27' stroke='url(%23paint0_linear_4337_1322)' stroke-width='8'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_4337_1322' x1='-3.15556' y1='28' x2='27' y2='28' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D0B162'/%3E%3Cstop offset='0.490987' stop-color='%239B7C39'/%3E%3Cstop offset='1' stop-color='%2372551D'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
  /* border-right: 0; */
  /* border-bottom: 0; */
  /* border-radius: 14px 0 0 0; */
}
.exp-badge::after{
  right: -4px;
  bottom: -4px;
  background-image: url("data:image/svg+xml,%3Csvg width='27' height='52' viewBox='0 0 27 52' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23 0L23 40.384C23 44.591 19.6477 48 15.5106 48L-1.7159e-07 48' stroke='url(%23paint0_linear_4337_1324)' stroke-width='8'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_4337_1324' x1='30.1556' y1='24' x2='2.1659e-06' y2='24' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23D0B162'/%3E%3Cstop offset='0.490987' stop-color='%239B7C39'/%3E%3Cstop offset='1' stop-color='%2372551D'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
  /* border-left: 0; */
  /* border-top: 0; */
  /* border-radius: 0 0 14px 0; */
}

/* responsive */
@media (max-width: 991.98px){
  .whoweare{ padding: 54px 0 56px; }
  .whoweare__media{ min-height: 320px; margin-right: 0px !important; }
  .whoweare__media img{ min-height: 320px; }
  .exp-badge{ left: 12px; bottom: 12px; width: 200px; }
  .exp-badge__num{ font-size: 56px; }
  .whoweare__lead{ font-size: 20px; }
}

/* ====== About hero ====== */
.about-hero{
  background:#000000;
  color:#fff;
  padding: 80px 0 65px;
}
.about-hero h1{
  font-size: clamp(2.4rem, 3.8vw, 4rem);
  font-weight:600;
  margin:0 0 12px;
}
.about-hero .hero-copy{
  color:#FFFFFF;
  max-width: 520px;
  line-height: 1.33;
  font-size: 24px;
  font-weight: 300;
  margin-left:auto;
}

.hero-photo{
  padding: 0 0 80px;
  position: relative;
}
.hero-photo img{
  width:100%;
  height:auto;
  display:block;
  border-radius: 2px;
  object-fit: cover;
  object-position: center;
  max-height: 440px;
}
.hero-photo::before{
  content: "";
  background: #000000;
  width: 100%;
  height: 50%;
  display: block;
  position: absolute;
  z-index: -1;
}
.lang-pill.dropdown-toggle::after{
  display: none;
}
/* ====== Why work with us ====== */
.whywork{ background:#fff; padding: 10px 0 72px; }
.whywork .subhead{
  font-size: 22px;
  font-weight:600;
  color:var(--muted);
  margin: 0 0 12px;
}
.why-card{
  background: linear-gradient(180deg, #FFFFFF 19.83%, rgba(204, 208, 220, 0.5) 99.78%);
  border-radius: 4px;
  padding: 32px;
  min-height: 546px;
  height: -webkit-fill-available;
}
.why-card.gold{ 
  background: linear-gradient(180deg, #FFFFFF 19.83%, rgba(221, 196, 127, 0.5) 99.78%);
}
.why-icon{
  width: 56px; height: 56px;
  margin-bottom: 24px;
  opacity:.9;
}
.why-h{
  font-weight:700;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: .8px;
  line-height: 1.4;
  margin: 0 0 24px;
  color:#000000;
}
.why-p{
  margin:0;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: #000000;
}
.why-list{
  margin: 10px 0 0;
  padding-left: 16px;
  color: #000000;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  list-style-type: square;
}
.why-list li::marker{
  color: #9B7C39; /* màu bullet */
}
/* ====== How we work (dark list) ====== */
.howwework{
  background: #000000;
  color:#fff;
  padding: 70px 0 68px;
}
.howwework .section-title{ color: var(--muted); }
.how-row{
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding: 40px 0;
  display:grid;
  grid-template-columns: 80px 400px 1fr;
  gap: 22px;
  align-items: start;
}
.how-row:first-child{ padding-top: 0; }
.how-row:last-child{ border-bottom: none; }
.how-num{ 
  color: #7A8696; 
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
}
.how-title{ 
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
  color: #FFFFFF;
}
.how-desc{ 
  font-weight: 300;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 1.4;
  height: -webkit-fill-available;
  display: flex;
  align-items: center;
}

/* ====== Vision / Mission ====== */
.vm{
  background:#FFFFFF;
  padding: 64px 0 80px;
}
.vm h3{
  color: var(--muted);
  font-weight:600;
  margin:0 0 10px;
}
.vm p{
  color: #000000;
  line-height: 1.45;
  margin:0 0 12px;
  max-width: 520px;
  font-weight: 300;
  font-size: 20px;
}

/* ====== Top Contact Hero ====== */
.contact-hero{
  background: #000000;
  color:#ffffff;
  padding: 120px 0 65px;
}
.contact-hero h1{
  font-size: clamp(2.4rem, 3.8vw, 4rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 500;
  margin: 0;
}
.contact-hero .hero-copy{
  color:#FFFFFF;
  max-width: 520px;
  line-height: 1.33;
  font-weight: 300;
  font-size: 24px;
  margin-left:auto;
}

/* ====== Contact Body (image + form) ====== */
.contact-body{
  background:#fff;
  padding: 0 0 150px;
}
.contact-body::before{
  content: "";
  width: 100%;
  height: 21%;
  position: absolute;
  background: #000000;
  z-index: 1;
}
.contact-image{
  border-radius: 4px 0px 0px 4px;
  overflow:hidden;
  min-height: 420px;
  height: -webkit-fill-available;
}
.contact-image img{
  width:100%;
  height:100%;
  min-height: 420px;
  object-fit:cover;
  display:block;
}

.form-panel{
  background: #EAEEF2;
  min-height: 420px;
  padding: 80px 64px 80px 56px;
  height: -webkit-fill-available;
}

/* .form-underline{
  border:0;
  border-bottom: 1px solid rgba(70,80,90,.45);
  border-radius:0;
  background: transparent;
  padding: 24px 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  color:#7A8696;
}
.form-underline::placeholder{ color: rgba(70,80,90,.65); }
.form-underline:focus{
  box-shadow:none;
  border-bottom-color: #7A8696;
  background: transparent;
} */

.form-underline input, .form-underline textarea{
  border:0 !important;
  border-bottom: 1px solid rgba(70,80,90,.45) !important;
  border-radius:0 !important;
  background: transparent !important;
  padding: 24px 0 !important;
  font-weight: 300 !important;
  font-size: 16px !important;
  line-height: 1.4 !important;
  color:#7A8696 !important;
}
.form-underline input::placeholder, .form-underline textarea::placeholder{ color: rgba(70,80,90,.65) !important; }
.form-underline input:focus{
  box-shadow:none !important;
  border-bottom-color: #7A8696 !important;
  background: transparent !important;
}

.btn-submit, .wpforms-submit{
  background: linear-gradient(90deg, #9FA9B5 -13.33%, #7A8696 42.31%, #515964 100%) !important;
  border:0 !important;
  color:#fff !important;
  border-radius:4px !important;
  padding: 8px 16px !important;
  font-weight:500 !important;
  letter-spacing:.6px !important;
  text-transform:uppercase !important;
  font-size: 16px !important;
  min-width: 96px !important;
}
.wpforms-submit-container{display: flex;}
.btn-submit:hover, .wpforms-submit:hover{ filter:brightness(1.06); color:#fff; }

.privacy-note{
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}
.privacy-note input[type="checkbox"]{
  display: none !important;
}
.privacy-note label{
  padding:0px !important;
  font-size: 14px !important;
}
.privacy-note label a{
  background: linear-gradient(90deg, #D0B162 -31.11%, #9B7C39 33.26%, #72551D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ====== Page hero ====== */
.page-hero{
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(255,255,255,.06) 0%, rgba(0,0,0,0) 58%),
    #070707;
  color:#fff;
  padding: 56px 0 20px;
}
.page-hero h1{
  font-size: clamp(2.4rem, 3.8vw, 4rem);
  font-weight:600;
  margin:0;
}
.page-hero .hero-copy{
  color:rgba(255,255,255,.75);
  max-width: 560px;
  line-height:1.7;
  font-size:14px;
  margin-left:auto;
}
.hero-photo img{ width:100%; height:auto; display:block; border-radius:2px; }

/* ====== Section header (light) ====== */
.section-wrap{ background:#fff; }
.section-title{
  font-size: 22px;
  font-weight:600;
  color: var(--muted);
  margin: 0;
}
.section-rule{
  height:1px;
  background: var(--line);
  margin: 14px 0 22px;
}

/* ====== Service blocks ====== */
.service-block{ padding: 0px 0 10px; }
.service-row{ align-items:end; }
.service-row .col-lg-5{
  margin-left: -8.4%;
}
.service-media{
  position:relative;
  border-radius:4px;
}
.service-media img{
  width:100%;
  height:auto;
  display:block;
  min-height: 576px;
  object-fit:cover;
}
.service-media::before{
  content: "";
  position: absolute;
  left: -7px;
  top: -7px;
  width: 37.45px;
  height: 79.38px;
  background: url(../img/highlight-before.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: scaleX(-1);
}
/* small arrow badge like mock */
.service-media .arrow-badge-right{
  position:absolute;
  right: 113px;
  bottom: 0px;
  width: 48px;
  height: 48px;
  background: linear-gradient(90deg, #515964 -13.33%, #292D32 42.31%, #000000 100%);
  border-radius: 0px 4px 4px 0px;
  display:grid;
  place-items:center;
  color: #FFFFFF;
  z-index: 2;
}
.service-media .arrow-badge-right:hover, .service-media .arrow-badge-left:hover{
  background: #ffffff;
  color:#000000;
  border: 2px solid #000000;
}
.service-media .arrow-badge-right:hover svg, .service-media .arrow-badge-left:hover svg{
  color:#000000;
}
.service-media .arrow-badge-left{
  position:absolute;
  right: 161px;
  bottom: 0px;
  width: 48px;
  height: 48px;
  background: linear-gradient(90deg, #515964 -13.33%, #292D32 42.31%, #000000 100%);
  border-radius: 4px 0px 0px 4px;
  display:grid;
  place-items:center;
  color: #FFFFFF;
  z-index: 2;
}
.arrow-badge-right svg{ 
  width:24px; 
  height:24px; 
  color:#fff; 
}
.arrow-badge-left svg{ 
  width:24px; 
  height:24px; 
  color:#fff; 
}

.bullets{
  margin: 0;
  padding-left: 1.2rem;
  list-style-type: square;
  color: #000000;
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 0.5rem;
}
.bullets li::marker{
  color: var(--gold);
  font-size: 12px;
}
.-mt-1{
  margin-top: -1rem !important;
}
.service-block .service-card{
  position:relative;
  background: #EAEEF2;
  border-radius: 4px;
  min-height: 460px;
  padding: 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-block .service-card .kicker{
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #7A8696;
}
.service-block .service-card .kicker .text-gold{
  color: #A3801C;
}
.service-block .service-card h3{
  margin: 8px 0 12px;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.5;
  color:#000000;
}
.service-block .service-card p{
  margin: 0 0 12px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
}
.service-block .bullets{
  margin: 0;
  padding-left: 1.2rem;
  list-style-type: square;
  color: #000000;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
}
.service-block .bullets li{
  margin-bottom: 15px;
}
.service-block .bullets li::marker{
  color: #7A8696;
  font-size: 16px;
}

/* gold corner on right like mock */
.service-block .service-card::after{
  content:"";
  position:absolute;
  right: -7px;
  bottom: -13px;
  width: 37.45px;
  height: 79.38px;
  background: url("../img/highlight-after.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transform: scaleX(-1);
}


/* ====== FAQ ====== */
.faq{
  background: #EAEEF2;
  padding: 70px 0 120px;
}
.faq .section-title{
  color: #7A8696;
  font-weight: 500;
  margin-bottom: 20px;
}
.faq .top-rule{
  height: 0.5px;
  background: rgba(0,0,0,.12);
  margin: 0 0 40px;
}

.faq .accordion-item{
  border: 0;
  border-bottom: 1px solid rgba(0,0,0,.15);
  background: transparent;
  border-radius: 0;
}
.faq .accordion-button{
  background: transparent;
  padding: 24px 0 24px 0;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  box-shadow: none;
  line-height: 1.5;
}
.faq .accordion-button:not(.collapsed){
  background: transparent;
  color: #000000;
  font-weight: 400;
}
.faq .accordion-button:focus{
  box-shadow: none;
  border-color: transparent;
}
.faq .accordion-button::after{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2' d='M2 8h12M8 2v12'/%3E%3C/svg%3E");
  background-size: 16px 16px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.faq .accordion-button:not(.collapsed)::after{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2' d='M2 8h12'/%3E%3C/svg%3E");
  transform: rotate(0deg);
}
.faq .accordion-header{
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
}
.faq .accordion-body{
  padding: 0 0 32px 0;
  font-weight: 300;
  font-size: 16px;
  color: #000000;
  line-height: 1.5;
}
.faq-grid{
  /* column-gap: 60px; */
  /* row-gap: 0; */
}

/* Responsive */
@media (max-width: 991.98px){
  .faq{ padding: 50px 0 60px; }
  .faq-grid{ column-gap: 0; row-gap: 30px; }
  .hero-photo img{
    max-height: unset;
  }
  .service-media .arrow-badge-right{
    right: 0px !important;
  }
  .service-media .arrow-badge-left{
    right: 48px !important;
  }
  .service-media .swiper-slide{
    max-height: 230px !important;
  }
  .service-media .swiper-slide img {
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 8px;
      object-position: center;
      min-height: auto;
  }
  .service-block .service-card{
    padding: 32px 24px !important;
  }
}

/* ====== Featured ====== */
.featured{
  padding: 0 0 80px;
}
.feat-img img{
  width:100%;
  height:100%;
  min-height: 260px;
  object-fit:cover;
  display:block;
  border-radius: 4px 0px 0px 4px;
}
.feat-card{
  background: #EAEEF2;
  min-height: 260px;
  padding: 48px 56px;
  height: -webkit-fill-available;
}
.feat-title{
  color:#000000;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.5;
  margin: 0 0 24px;
}
.feat-desc{
  color: #000000;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 24px;
  max-width: 520px;
}

/* ====== Grid cards ====== */
.grid{
  background:#fff;
  padding: 26px 0 120px;
}
.post-card{
  border: 0.5px solid #7A8696;
  border-radius: 4px;
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  height:100%;
  position: relative;
}
.post-card img{
  width:100%;
  height: 277px;
  object-fit:cover;
  display:block;
  border-radius: 4px 4px 0px 0px;
}
.post-body{
  padding: 40px 32px;
}
.post-card .post-title{
  margin:0;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color:#000000;
}
.post-title span{ font-weight:500; color:#000000; }

.post-card::after{
  content:"";
  position: absolute;
  right: -4px;
  transform: scaleX(-1);
  bottom: -9px;
  width: 37.45px;
  height: 79.38px;
  background: url(../img/highlight-after.svg);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  transition: opacity 0.4s ease-out;
}

.post-card:hover::after{
  opacity: 1;
}

.post-card .insight-thumb{
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.post-card img{
  width: 100%;
  height: 280px;        /* giữ tỷ lệ như mock */
  object-fit: cover;
  display:block;
  transition: transform 0.4s ease-out;
}

.post-card:hover img{
  transform: scale(1.08);
}

/* ====== Content ====== */
.content{ background:#fff; padding: 6px 0 120px; }
.post-title{
  font-weight: 500;
  font-size: 32px;
  line-height: 1.5;
  margin: 0 0 10px;
  color:#000000;
}
.post-p{
  margin: 0 0 14px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
}
.post-h3{
  margin: 20px 0 10px;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.5;
  color:#000000;
}

/* ====== Read next ====== */
.aside-title{
  font-weight: 500;
  font-size: 32px;
  line-height: 1.5;
  margin: 0;
  color:#000000;
}
.aside-rule{
  height:1px;
  background: rgba(0,0,0,.12);
  margin: 20px 0 0px;
}
.next-item{
  display:flex;
  gap: 16px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(0,0,0,.12);
  text-decoration:none;
  color: inherit;
  flex-direction: column;
}
.next-item:last-child{ border-bottom: 0; }
.next-thumb{
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  flex: 0 0 auto;
  overflow:hidden;
  background:#eee;
}
.next-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.next-title{
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color:#000000;
  margin: 0;
}
.trp-language-switcher{
  display: none !important;
}
.btn-hover-gold{
  position: relative;
}
.btn-hover-gold:hover{
  background: #FFFFFF;
}
.btn-hover-gold:hover::before{
  content:"";
  position:absolute;
  inset:0;
  padding:2px;
  border-radius:inherit;
  background: linear-gradient(90deg,#D0B162 -31.11%, #9B7C39 33.26%, #72551D 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events:none;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  top: -2px;
  left: -2px;
}
.btn-hover-gold:hover span{
  background: linear-gradient(90deg, #D0B162 -31.11%, #9B7C39 33.26%, #72551D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* fallback */
}
.btn-hover-gray:hover{
  position: relative;
}
.btn-hover-gray:hover{
  background: #FFFFFF;
}
.btn-hover-gray:hover::before{
  content:"";
  position:absolute;
  inset:0;
  padding:2px;
  border-radius:inherit;
  background: linear-gradient(90deg, #9FA9B5 -13.33%, #7A8696 42.31%, #515964 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events:none;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  top: -2px;
  left: -2px;
}
.btn-hover-gray:hover span{
  background: linear-gradient(90deg, #9FA9B5 -13.33%, #7A8696 42.31%, #515964 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* fallback */
}
.btn-hover-dark:hover{
  position: relative;
}
.btn-hover-dark:hover{
  background: #FFFFFF;
}
.btn-hover-dark:hover::before{
  content:"";
  position:absolute;
  inset:0;
  padding:2px;
  border-radius:inherit;
  background: linear-gradient(90deg, #515964 -13.33%, #292D32 42.31%, #000000 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events:none;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  top: -2px;
  left: -2px;
}
.btn-hover-dark:hover span{
  background: linear-gradient(90deg, #515964 -13.33%, #292D32 42.31%, #000000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* fallback */
}
b{
  font-weight: 500;
}
.text-gold{
  background: linear-gradient(90deg, #D0B162 -31.11%, #9B7C39 33.26%, #72551D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* fallback */
}