.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus
{
background-color: #0E80A4;
}
#buttonbtt {
  display: inline-block;
  background-color: #0E80A4;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 130px;
  right: 10px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#buttonbtt::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#buttonbtt:hover {
  cursor: pointer;
  background-color: #F8EC1D;
}
#buttonbtt:active {
  background-color: #fff;
}
#buttonbtt.show {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 500px) {
  #buttonbtt {
    margin: 30px;
  }
}

/* ==================================================
   KIM VÀNG - TABLE STYLE KHÔNG CẦN THEAD
================================================== */

.kv-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 24px 0;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e3d5;
  background: #fff;
}

.kv-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  background: #fff;
}

.kv-table tr.kv-table-head {
  background: linear-gradient(135deg, #00695c 0%, #004d40 100%);
}

.kv-table tr.kv-table-head td {
  padding: 16px 18px;
  text-align: left;
  font-weight: 700;
  border: none;
  color: #f6c85f;
  white-space: nowrap;
}

.kv-table td {
  padding: 15px 18px;
  border-bottom: 1px solid #eee7d8;
  color: #2b2b2b;
  vertical-align: top;
}

.kv-table tr:not(.kv-table-head):nth-child(odd) {
  background: #fbf8f0;
}

.kv-table tr:not(.kv-table-head):hover {
  background: #fff4d8;
  transition: 0.25s ease;
}

.kv-table tr:last-child td {
  border-bottom: none;
}

.kv-table strong {
  color: #00695c;
  font-weight: 700;
}

.kv-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 15px;
  background: #00695c;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 768px) {
  .kv-table-wrap {
    border-radius: 10px;
    margin: 18px 0;
  }

  .kv-table {
    font-size: 14px;
    min-width: 620px;
  }

  .kv-table td,
  .kv-table tr.kv-table-head td {
    padding: 13px 14px;
  }
}

/* ==================================================
   KIM VÀNG - CTA BOX
================================================== */

.kv-cta-box {
  margin: 32px 0;
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, #004d40 0%, #00796b 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 77, 64, 0.22);
  position: relative;
  overflow: hidden;
}

.kv-cta-box::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 180px;
  height: 180px;
  background: rgba(246, 200, 95, 0.14);
  border-radius: 50%;
}

.kv-cta-box h3 {
  color: #f6c85f !important;
  font-size: 24px !important;
  font-weight: 700;
  margin: 0 0 10px !important;
  line-height: 1.35;
}

.kv-cta-box p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
}

.kv-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.kv-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
}

.kv-cta-btn.call {
  background: #f6c85f;
  color: #004d40;
}

.kv-cta-btn.zalo {
  background: #fff;
  color: #00695c;
}

.kv-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

@media (max-width: 768px) {
  .kv-cta-box {
    padding: 22px;
  }

  .kv-cta-box h3 {
    font-size: 21px;
  }

  .kv-cta-actions {
    flex-direction: column;
  }

  .kv-cta-btn {
    width: 100%;
  }
}

/* ==================================================
   KIM VÀNG - FAQ ACCORDION FOR NUKEVIET
================================================== */

.kv-faq-box {
  margin: 32px 0;
}

.kv-faq-title {
  font-size: 26px;
  font-weight: 800;
  color: #004d40;
  margin-bottom: 20px;
  line-height: 1.35;
}

.kv-faq-item {
  background: #ffffff;
  border: 1px solid #e8e3d5;
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.kv-faq-item:hover {
  border-color: #d8b14f;
  box-shadow: 0 8px 24px rgba(0, 105, 92, 0.12);
}

.kv-faq-question {
  cursor: pointer;
  padding: 18px 56px 18px 20px;
  background: #fffdf8;
  color: #004d40;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  position: relative;
  transition: all 0.25s ease;
  user-select: none;
}

.kv-faq-question:after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #00695c;
  color: #f6c85f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  transition: all 0.25s ease;
}

.kv-faq-item.active .kv-faq-question {
  background: linear-gradient(135deg, #00695c 0%, #004d40 100%);
  color: #f6c85f;
}

.kv-faq-item.active .kv-faq-question:after {
  content: "−";
  background: #f6c85f;
  color: #004d40;
}

.kv-faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  transition: max-height 0.35s ease;
}

.kv-faq-answer-inner {
  padding: 18px 20px 22px;
  color: #333333;
  font-size: 15.5px;
  line-height: 1.75;
  border-top: 1px solid #eee7d8;
}

.kv-faq-answer-inner p {
  margin: 0 0 12px;
}

.kv-faq-answer-inner p:last-child {
  margin-bottom: 0;
}

.kv-faq-answer-inner strong {
  color: #00695c;
}

/* Mobile */
@media (max-width: 768px) {
  .kv-faq-title {
    font-size: 22px;
  }

  .kv-faq-question {
    font-size: 15px;
    padding: 16px 50px 16px 16px;
  }

  .kv-faq-answer-inner {
    font-size: 14.5px;
    padding: 16px;
  }
}

/* ==================================================
   KIM VÀNG - REAL IMAGE GRID GALLERY
================================================== */

.kv-real-gallery-section {
  margin: 36px 0;
}

.kv-real-gallery-title {
  font-size: 28px;
  font-weight: 700;
  color: #004d40;
  margin-bottom: 10px;
  line-height: 1.35;
}

.kv-real-gallery-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 24px;
}

.kv-real-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.kv-gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: #f8f4ea;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee3c8;
  text-decoration: none;
}

.kv-gallery-item img {
  width: 100%;
  height: 260px;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.kv-gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.85);
}

.kv-gallery-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0, 77, 64, 0.88);
  color: #f6c85f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  backdrop-filter: blur(4px);
}

.kv-gallery-item.featured {
  grid-column: span 2;
}

.kv-gallery-item.featured img {
  height: 538px;
}

/* Tablet */
@media (max-width: 991px) {
  .kv-real-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .kv-gallery-item.featured {
    grid-column: span 2;
  }

  .kv-gallery-item img {
    height: 240px;
  }

  .kv-gallery-item.featured img {
    height: 380px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .kv-real-gallery-title {
    font-size: 24px;
  }

  .kv-real-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .kv-gallery-item,
  .kv-gallery-item.featured {
    grid-column: span 1;
  }

  .kv-gallery-item img,
  .kv-gallery-item.featured img {
    height: 230px;
  }

  .kv-gallery-caption {
    font-size: 13.5px;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}

.bread-crumb .display {
    margin: 10px 0px -5px 0px;
}

.kv-section.kv-bg-light h2 {
    font-size: 28px;
    color: #004d40;
    font-weight: 900;
    margin: 0 0 14px;
    background: #ffffff00;
    padding: 0;
}

.kv-cta h2, .kv-final-cta h2 {
    color: #f6c85f;
    background: #ffffff00;
}

/* ===================================================
   KIM VÀNG - HOẠT ĐỘNG XÃ HỘI / QUỸ "LẶNG"
=================================================== */

.kv-social-article {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 16px 60px;
  color: #233;
  font-size: 17px;
  line-height: 1.8;
}

.kv-social-article * {
  box-sizing: border-box;
}

.kv-social-header {
  position: relative;
  overflow: hidden;
  margin: 20px 0 36px;
  padding: 56px 28px;
  text-align: center;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(212, 173, 82, 0.26), transparent 32%),
    linear-gradient(135deg, #fffaf0 0%, #ffffff 42%, #eaf8f7 100%);
  border: 1px solid rgba(198, 159, 67, 0.24);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

.kv-social-header::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(0, 92, 92, 0.08);
}

.kv-social-header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -70px;
  width: 260px;
  height: 120px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(212, 173, 82, 0.12);
}

.kv-social-label {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 18px;
  border-radius: 10px;
  background: rgba(0, 92, 92, 0.08);
  color: #006060;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.kv-social-header h1 {
  position: relative;
  z-index: 2;
  margin: 0 0 16px;
  color: #064f4f;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.kv-social-subtitle {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  color: #8f6a16;
  font-size: clamp(20px, 2.6vw, 32px);
  line-height: 1.35;
  font-weight: 700;
}

.kv-social-section {
  margin: 36px 0;
}

.kv-social-section h2 {
  margin: 0 0 18px;
  color: #064f4f;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: -0.3px;
}

.kv-social-section p {
  margin: 0 0 16px;
}

.kv-social-section strong {
  color: #064f4f;
}

.kv-social-article blockquote {
  position: relative;
  margin: 28px 0;
  padding: 22px 24px 22px 28px;
  border-left: 5px solid #c69f43;
  border-radius: 18px;
  background: linear-gradient(135deg, #fffaf0 0%, #ffffff 100%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.kv-social-article blockquote p {
  margin: 0;
  color: #064f4f;
  font-size: 19px;
  line-height: 1.65;
}

.kv-social-hero-img,
.kv-social-image {
  margin: 38px 0;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(198, 159, 67, 0.2);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.09);
}

.kv-social-hero-img img,
.kv-social-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  background: #f5f5f5;
}

.kv-social-hero-img img {
  aspect-ratio: 16 / 9;
}

.kv-social-image img {
  aspect-ratio: 16 / 9;
}

.kv-social-hero-img figcaption,
.kv-social-image figcaption {
  padding: 14px 18px;
  color: #4d5d5d;
  font-size: 15px;
  line-height: 1.6;
  background: linear-gradient(135deg, #fffaf0 0%, #ffffff 100%);
  border-top: 1px solid rgba(198, 159, 67, 0.16);
}

/* ===================================================
   GALLERY GRID
=================================================== */

.kv-social-gallery-section {
  margin: 58px 0;
  padding: 44px 24px;
  background: linear-gradient(135deg, #fffaf0 0%, #ffffff 46%, #eef8f7 100%);
  border-radius: 28px;
  border: 1px solid rgba(198, 159, 67, 0.24);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.06);
}

.kv-social-gallery-heading {
  margin: 0 auto 36px;
  text-align: center;
}

.kv-social-gallery-heading span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 16px;
  border-radius: 10px;
  background: rgba(0, 92, 92, 0.08);
  color: #006060;
  font-size: 14px;
  font-weight: 700;
}

.kv-social-gallery-heading h2 {
  margin: 0 0 14px;
  color: #064f4f;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.24;
  font-weight: 900;
  letter-spacing: -0.4px;
}

.kv-social-gallery-heading p {
  margin: 0 auto;
  color: #4d5d5d;
  font-size: 16px;
  line-height: 1.75;
}

.kv-social-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 16px;
}

.kv-gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 20px;
  background: #f5f5f5;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.kv-gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.kv-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 45, 45, 0.78) 0%,
    rgba(0, 45, 45, 0.28) 45%,
    rgba(0, 45, 45, 0.02) 100%
  );
  opacity: 0.86;
  transition: opacity 0.35s ease;
}

.kv-gallery-item figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: #ffffff;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.35;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.kv-gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.04);
}

.kv-gallery-item:hover::after {
  opacity: 0.96;
}

.kv-gallery-large {
  grid-column: span 3;
  grid-row: span 2;
}

.kv-gallery-wide {
  grid-column: span 2;
}

/* ===================================================
   CTA BLOCK
=================================================== */

.kv-social-cta {
  margin: 56px 0 34px;
  padding: 2px;
  border-radius: 28px;
  background: linear-gradient(135deg, #c69f43, #006060);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
}

.kv-social-cta-inner {
  padding: 40px 28px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(198, 159, 67, 0.18), transparent 36%),
    linear-gradient(135deg, #064f4f 0%, #006060 100%);
  color: #ffffff;
  text-align: center;
}

.kv-social-cta-inner span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffe6a3;
  font-size: 14px;
  font-weight: 700;
}

.kv-social-cta-inner h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.25;
  font-weight: 900;
}

.kv-social-cta-inner p {
  max-width: 850px;
  margin: 0 auto 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
}

.kv-social-contact {
  max-width: 760px;
  margin: 24px auto 0;
  padding: 22px;
  border-radius: 20px;
  text-align: left;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.kv-social-contact p {
  margin: 0 0 8px;
}

.kv-social-contact a {
  color: #ffe6a3;
  font-weight: 700;
  text-decoration: none;
}

.kv-social-contact a:hover {
  text-decoration: underline;
}

.kv-social-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.kv-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.kv-social-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.kv-social-btn-primary {
  color: #064f4f;
  background: #ffe6a3;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.kv-social-btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.kv-social-btn-primary:hover {
  color: #064f4f;
  background: #fff0bd;
}

.kv-social-btn-secondary:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

/* ===================================================
   HASHTAG
=================================================== */

.kv-social-hashtag {
  margin: 32px 0 0;
  padding: 18px 20px;
  border-radius: 18px;
  background: #fffaf0;
  border: 1px solid rgba(198, 159, 67, 0.22);
}

.kv-social-hashtag p {
  margin: 0;
  color: #4d5d5d;
  font-size: 15px;
  line-height: 1.7;
}

/* ===================================================
   RESPONSIVE
=================================================== */

@media (max-width: 991px) {
  .kv-social-article {
    padding-left: 14px;
    padding-right: 14px;
  }

  .kv-social-header {
    padding: 44px 22px;
  }

  .kv-social-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .kv-gallery-large,
  .kv-gallery-wide {
    grid-column: span 2;
  }

  .kv-social-contact {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .kv-social-article {
    font-size: 16px;
    line-height: 1.75;
    padding-left: 10px;
    padding-right: 10px;
  }

  .kv-social-header {
    margin-top: 10px;
    padding: 34px 16px;
    border-radius: 22px;
  }

  .kv-social-section {
    margin: 30px 0;
  }

  .kv-social-section h2 {
    margin-bottom: 14px;
  }

  .kv-social-article blockquote {
    padding: 18px 18px 18px 20px;
    border-radius: 16px;
  }

  .kv-social-article blockquote p {
    font-size: 17px;
  }

  .kv-social-hero-img,
  .kv-social-image {
    border-radius: 16px;
    margin: 28px 0;
  }

  .kv-social-hero-img figcaption,
  .kv-social-image figcaption {
    padding: 12px 14px;
    font-size: 14px;
  }

  .kv-social-gallery-section {
    margin: 42px 0;
    padding: 30px 14px;
    border-radius: 20px;
  }

  .kv-social-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
    gap: 14px;
  }

  .kv-gallery-large,
  .kv-gallery-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .kv-gallery-item {
    border-radius: 16px;
  }

  .kv-gallery-item figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    font-size: 14px;
  }

  .kv-social-cta {
    border-radius: 22px;
  }

  .kv-social-cta-inner {
    padding: 32px 16px;
    border-radius: 20px;
  }

  .kv-social-buttons {
    flex-direction: column;
  }

  .kv-social-btn {
    width: 100%;
  }
}

.kv-en-export-page {
  font-family: Arial, sans-serif;
  color: #1f2933;
  line-height: 1.7;
  background: #ffffff;
}

.kv-en-export-page * {
  box-sizing: border-box;
}

.kv-en-export-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 18px;
}

.kv-en-export-hero {
  padding: 72px 0;
  background: linear-gradient(135deg, #fff7e6 0%, #ffffff 48%, #f6f7f9 100%);
}

.kv-en-export-hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1.25fr;
  gap: 20px;
  align-items: center;
}

.kv-en-export-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 10px;
  background: #fff0c2;
  color: #8a5a00;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.kv-en-export-hero h1 {
  margin: 0 0 20px;
  font-size: 44px;
  line-height: 1.15;
  color: #111827;
}

.kv-en-export-hero p {
  margin: 0 0 24px;
  font-size: 18px;
  color: #374151;
}

.kv-en-export-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.kv-en-export-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}

.kv-en-export-btn-primary {
  background: #d89b00;
  color: #ffffff;
}

.kv-en-export-btn-primary:hover {
  background: #b98200;
  color: #ffffff;
}

.kv-en-export-btn-secondary {
  background: #111827;
  color: #ffffff;
}

.kv-en-export-btn-secondary:hover {
  background: #000000;
  color: #ffffff;
}

.kv-en-export-btn-outline {
  border: 1px solid #d89b00;
  color: #8a5a00 !important;
  background: #ffffff;
}

.kv-en-export-btn-outline:hover {
  background: #fff7e6;
  color: #8a5a00;
}

.kv-en-export-hero-card {
  padding: 28px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.kv-en-export-hero-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
  color: #111827;
}

.kv-en-export-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.kv-en-export-check-list p {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.kv-en-export-check-list p:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #d89b00;
  font-weight: 800;
}

.kv-en-export-section {
  padding: 64px 0;
}

.kv-en-export-section-light {
  background: #f8fafc;
}

.kv-en-export-section h2 {
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.25;
  color: #111827;
}

.kv-en-export-section h3 {
  margin: 28px 0 12px;
  font-size: 23px;
  color: #111827;
}

.kv-en-export-section p {
  margin: 0 0 16px;
  font-size: 16px;
}

.kv-en-export-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.kv-en-export-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.kv-en-export-card {
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
}

.kv-en-export-card h3 {
  margin-top: 0;
}

.kv-en-export-card a {
  color: #111827;
  text-decoration: none;
}

.kv-en-export-card a:hover {
  color: #d89b00;
}

.kv-en-export-table-wrap {
  overflow-x: auto;
  margin-top: 24px;
}

.kv-en-export-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

.kv-en-export-table th,
.kv-en-export-table td {
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  text-align: left;
  vertical-align: top;
}

.kv-en-export-table th {
  background: #111827;
  color: #ffffff;
}

.kv-en-export-process {
  counter-reset: process;
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.kv-en-export-process-item {
  position: relative;
  padding: 22px 22px 22px 74px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #ffffff;
}

.kv-en-export-process-item:before {
  counter-increment: process;
  content: counter(process);
  position: absolute;
  left: 22px;
  top: 22px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #d89b00;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.kv-en-export-process-item h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.kv-en-export-process-item p {
  margin: 0;
}

.kv-en-export-cta-box {
  margin-top: 32px;
  padding: 34px;
  border-radius: 18px;
  background: #111827;
  color: #ffffff;
}

.kv-en-export-cta-box h2,
.kv-en-export-cta-box h3 {
  color: #ffffff;
  margin-top: 0;
}

.kv-en-export-cta-box p {
  color: #f3f4f6;
}

.kv-en-export-cta-box a {
  color: #ffffff;
}

.kv-en-export-note {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 4px solid #d89b00;
  background: #fffaf0;
  border-radius: 10px;
}

.kv-en-export-image-grid {
  margin-top: 26px;
}

.kv-en-export-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 20px;
  border-radius: 18px;
  background: #e5e7eb;
  color: #4b5563;
  text-align: center;
  font-weight: 700;
}

.kv-en-export-faq {
  display: grid;
  gap: 14px;
}

.kv-en-export-faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
}

.kv-en-export-faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
  color: #111827;
}

.kv-en-export-faq-item div {
  padding: 0 20px 18px;
  color: #374151;
}

.kv-en-export-contact-text {
  margin-top: 24px;
}

.kv-en-export-form-box {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
}

@media (max-width: 900px) {
  .kv-en-export-hero-grid,
  .kv-en-export-grid-2,
  .kv-en-export-grid-3 {
    grid-template-columns: 1fr;
  }

  .kv-en-export-hero {
    padding: 48px 0;
  }

  .kv-en-export-hero h1 {
    font-size: 34px;
  }

  .kv-en-export-section {
    padding: 44px 0;
  }

  .kv-en-export-section h2 {
    font-size: 28px;
  }

  .kv-en-export-cta-box {
    padding: 26px;
  }

  .kv-en-export-process-item {
    padding: 20px 20px 20px 66px;
  }
}

a.kv-en-export-btn.kv-en-export-btn-secondary {
    border: 1px solid #fff;
}