/* ===== RESET & BASE ===== */
table,table * {
  border:unset;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark-blue:   #1f3a5f;
  --blue-deep:   #16294a;
  --orange:      #ff7a00;
  --orange-h:    #e06a00;
  --gold:        #c9a84c;
  --bg:          #f5f7fa;
  --white:       #ffffff;
  --text:        #1a1a2e;
  --muted:       #6b7280;
  --border:      #e2e8f0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}

h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; line-height: 1.25; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--dark-blue);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-badge {
  background: var(--gold); color: var(--dark-blue);
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 14px;
  width: 36px; height: 36px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.logo-text { color: #fff; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 16px; }
.nav-btns { display: flex; gap: 10px; }
.btn-wa {
  background: #25d366; color: #fff; border: none;
  padding: 8px 18px; border-radius: 6px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13px;
  cursor: pointer; display: flex; align-items: center; gap: 6px;
  transition: background .2s;
}
.btn-wa:hover { background: #1ebe5d; }
.btn-price {
  background: var(--gold); color: var(--dark-blue); border: none;
  padding: 8px 18px; border-radius: 6px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 13px;
  cursor: pointer; transition: background .2s;
}
.btn-price:hover { background: #b8933f; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--dark-blue);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 10px 0;
}
.bc-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  font-size: 13px; color: rgba(255,255,255,.55);
}
.bc-inner a { color: rgba(255,255,255,.75); }
.bc-inner a:hover { color: var(--orange); }
.bc-inner span { color: rgba(255,255,255,.35); margin: 0 6px; }

/* ===== HERO FEATURED IMAGE ===== */
.hero-img-wrap {
  max-width: 1200px; margin: 32px auto 0; padding: 0 24px;
}
.hero-img-wrap img {
  width: 100%; border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,.22);
  display: block;
  height: 450px; object-fit: cover; object-position: center;
}

/* ===== ARTICLE TITLE BLOCK ===== */
.article-title-block {
  max-width: 820px; margin: 36px auto 0; padding: 0 24px;
}
.article-tag {
  display: inline-block;
  background: var(--orange); color: #fff;
  font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 1.4px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 4px; margin-bottom: 18px;
}
.article-title-block h1 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: var(--dark-blue);
  line-height: 1.18;
  margin-bottom: 16px;
}
.article-subtitle {
  font-size: clamp(17px, 2vw, 22px);
  color: var(--muted);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* ===== AUTHOR / META ROW ===== */
.article-meta {
  max-width: 820px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--border);
}
.meta-author { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  background: var(--dark-blue); color: var(--gold);
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 13px;
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.author-info strong { display: block; font-size: 14px; color: var(--dark-blue); }
.author-info span { font-size: 12px; color: var(--muted); }
.meta-divider { width: 1px; height: 28px; background: var(--border); }
.meta-item { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 5px; }

/* ===== ARTICLE LAYOUT ===== */
.article-body {
  max-width: 820px; margin: 0 auto; padding: 0 24px;
}

/* ===== SUMMARY BOX ===== */
.summary-box {
  background: #eff6ff;
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  padding: 24px 28px;
  margin: 32px 0;
}
.summary-box h2 {
  font-size: 15px; color: var(--dark-blue);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 14px;
}
.summary-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 8px;
}
.s-item { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; }
.s-item .ck { color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ===== TABLE OF CONTENTS ===== */
.toc-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px 26px;
  margin: 0 0 36px;
}
.toc-box h2 {
  font-size: 13px; color: var(--dark-blue);
  text-transform: uppercase; letter-spacing: 1.2px;
  margin-bottom: 14px;
}
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.toc-list li a {
  font-size: 14px; color: var(--dark-blue);
  display: flex; align-items: center; gap: 10px;
  padding: 5px 0; border-bottom: 1px dashed var(--border);
  transition: color .2s;
}
.toc-list li:last-child a { border-bottom: none; }
.toc-list li a:hover { color: var(--orange); }
.toc-n {
  background: var(--dark-blue); color: #fff;
  font-size: 11px; font-weight: 700;
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ===== SECTION HEADINGS ===== */
.section-h {
  display: flex; align-items: center; gap: 14px;
  margin: 48px 0 20px;
}
.section-n {
  background: var(--orange); color: #fff;
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 16px;
  width: 40px; height: 40px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.section-h h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--dark-blue);
}
.section-h h2 .bar {
  display: block; width: 44px; height: 3px;
  background: var(--orange); margin-top: 6px; border-radius: 2px;
}

/* ===== BODY TEXT ===== */
.article-body p {
  font-size: 15.5px; color: #374151; margin-bottom: 16px; line-height: 1.8;
}

/* ===== BULLET LIST ===== */
.b-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; margin: 0;}
.b-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: #374151;
}
.b-list li::before {
  content: '›'; color: var(--orange); font-size: 20px;
  font-weight: 700; line-height: 1.3; flex-shrink: 0;
}

/* ===== CARDS ===== */
.cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px,1fr));
  gap: 14px; margin: 8px 0 20px;
}
.card {
  background: var(--white); border-radius: 8px; padding: 18px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  border-top: 3px solid var(--dark-blue);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.1); }
.card-icon { font-size: 26px; margin-bottom: 8px; }
.card h3 { font-size: 14px; color: var(--dark-blue); margin-bottom: 5px; }
.card p { font-size: 13px; color: var(--muted); }

/* ===== TABLES ===== */
.tbl-wrap {
  overflow-x: auto; margin: 16px 0 20px;
  border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
table { width: 100%; border-collapse: collapse; background: var(--white); font-size: 14px; }
thead tr { background: var(--dark-blue); color: #fff; }
thead th {
  padding: 12px 16px; text-align: left;
  font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
}
tbody tr:nth-child(even) { background: #f8fafc; }
tbody td { padding: 11px 16px; border-bottom: 1px solid var(--border); color: var(--text); }
tbody tr:last-child td { border-bottom: none; }
.badge {
  display: inline-block; background: var(--orange); color: #fff;
  font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 4px;
}

/* ===== IMAGE BLOCKS ===== */
.img-block { margin: 32px 0; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.12); }
.img-block img { width: 100%; height: 340px; object-fit: cover; }
.img-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 32px 0; }
.img-2col .img-item { border-radius: 10px; overflow: hidden; box-shadow: 0 3px 14px rgba(0,0,0,.1); }
.img-2col .img-item img { width: 100%; height: 220px; object-fit: cover; }
.img-cap {
  background: var(--dark-blue); color: rgba(255,255,255,.8);
  font-size: 12px; padding: 7px 14px; text-align: center;
}

/* ===== STEP LIST ===== */
.steps { display: flex; flex-direction: column; gap: 14px; margin: 8px 0 20px; }
.step {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border-radius: 8px; padding: 16px 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05); border-left: 4px solid var(--orange);
}
.step-n {
  background: var(--orange); color: #fff;
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 15px;
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-c h3 { font-size: 15px; color: var(--dark-blue); margin-bottom: 4px; }
.step-c p { font-size: 13.5px; color: var(--muted); }

/* ===== INFO BOX ===== */
.info-box {
  background: #eff6ff; border-left: 4px solid var(--dark-blue);
  border-radius: 6px; padding: 14px 18px;
  font-size: 14px; color: var(--dark-blue); margin: 16px 0;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: var(--dark-blue); color: rgba(255,255,255,.9);
  border-radius: 8px; padding: 20px 24px; margin: 24px 0;
  font-size: 15px; line-height: 1.7;
}
.highlight-box strong { color: var(--gold); }

/* ===== VIDEO SECTION ===== */
.video-wrap { margin: 48px 0 0; }
.video-head {
  background: var(--dark-blue); border-radius: 10px 10px 0 0; padding: 18px 22px;
}
.video-head h2 { color: #fff; font-size: 19px; }
.video-head p { color: rgba(255,255,255,.7); font-size: 14px; margin-top: 5px; }
.video-embed {
  background: #000; border-radius: 0 0 10px 10px; overflow: hidden;
  position: relative; padding-bottom: 56.25%; height: 0;
}
.video-embed iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
}

/* ===== MARKET SECTION ===== */
.market-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr));
  gap: 14px; margin: 20px 0;
}
.mcard {
  background: var(--white); border-radius: 10px; padding: 22px;
  box-shadow: 0 3px 14px rgba(0,0,0,.07); border-top: 4px solid var(--dark-blue);
}
.mcard .ri { font-size: 30px; margin-bottom: 8px; }
.mcard h3 { font-size: 16px; color: var(--dark-blue); margin-bottom: 10px; }
.ctags { display: flex; flex-wrap: wrap; gap: 5px; }
.ctag {
  background: var(--bg); border: 1px solid var(--border);
  font-size: 12px; padding: 3px 9px; border-radius: 20px;
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.faq-item {
  background: var(--white); border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05); overflow: hidden;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; cursor: pointer; user-select: none;
}
.faq-q h3 { font-size: 15px; color: var(--dark-blue); font-weight: 600; }
.faq-tog {
  background: var(--dark-blue); color: #fff;
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 300; flex-shrink: 0;
  transition: background .2s, transform .3s;
}
.faq-item.open .faq-tog { background: var(--orange); transform: rotate(45deg); }
.faq-a {
  display: none; padding: 0 20px 16px;
  font-size: 14px; color: var(--muted); line-height: 1.7;
  border-top: 1px solid var(--border); padding-top: 12px;
}
.faq-item.open .faq-a { display: block; }

/* ===== GEO STATEMENT ===== */
.geo-bar {
  background: var(--dark-blue); color: rgba(255,255,255,.85);
  font-size: 13px; text-align: center; padding: 12px 24px; margin: 40px 0 0;
}
.geo-bar strong { color: var(--gold); }

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue-deep) 100%);
  padding: 60px 24px; margin-top: 56px; text-align: center;
}
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta-section h2 { color: #fff; font-size: clamp(22px,3vw,32px); margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,.75); font-size: 16px; margin-bottom: 30px; }
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.btn-cp {
  background: var(--orange); color: #fff; padding: 13px 28px; border-radius: 8px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px;
  border: none; cursor: pointer; transition: background .2s, transform .15s;
}
.btn-cp:hover { background: var(--orange-h); transform: translateY(-2px); }
.btn-cw {
  background: #25d366; color: #fff; padding: 13px 28px; border-radius: 8px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px;
  border: none; cursor: pointer; display: flex; align-items: center; gap: 7px;
  transition: background .2s, transform .15s;
}
.btn-cw:hover { background: #1ebe5d; transform: translateY(-2px); }
.btn-co {
  background: transparent; color: #fff; padding: 13px 28px; border-radius: 8px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px;
  border: 2px solid rgba(255,255,255,.45); cursor: pointer;
  transition: border-color .2s, transform .15s;
}
.btn-co:hover { border-color: #fff; transform: translateY(-2px); }
.cta-contacts {
  display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
  margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15);
}
.cta-ci { color: rgba(255,255,255,.75); font-size: 13px; }
.cta-ci strong { color: #fff; display: block; margin-bottom: 2px; }

/* ===== FOOTER ===== */
footer {
  background: #0f1e33; color: rgba(255,255,255,.5);
  text-align: center; padding: 22px; font-size: 13px;
}
footer strong { color: rgba(255,255,255,.8); }
.fkw { margin-top: 5px; font-size: 12px; }

/* ===== SIDEBAR LAYOUT (desktop) ===== */
.page-layout {
  max-width: 1200px; margin: 0 auto; padding: 0 24px 60px;
  display: grid; grid-template-columns: 1fr 280px; gap: 40px; align-items: start;
}
.sidebar { position: sticky; top: 80px; }
.sidebar-box {
  background: var(--white); border-radius: 10px; padding: 22px;
  box-shadow: 0 3px 16px rgba(0,0,0,.07); margin-bottom: 20px;
}
.sidebar-box h3 {
  font-size: 13px; color: var(--dark-blue);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px;
  padding-bottom: 8px; border-bottom: 2px solid var(--orange);
}
.sb-toc-list { list-style: none; display: flex; flex-direction: column; gap: 3px; }
.sb-toc-list li a {
  font-size: 13px; color: var(--muted); display: block;
  padding: 5px 8px; border-radius: 5px; transition: background .15s, color .15s;
}
.sb-toc-list li a:hover { background: var(--bg); color: var(--dark-blue); }
.sb-cta-btn {
  display: block; background: var(--orange); color: #fff; text-align: center;
  padding: 11px; border-radius: 7px; font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 13px; margin-bottom: 8px;
  transition: background .2s;
}
.sb-cta-btn:hover { background: var(--orange-h); }
.sb-wa-btn {
  display: block; background: #25d366; color: #fff; text-align: center;
  padding: 11px; border-radius: 7px; font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 13px; transition: background .2s;
}
.sb-wa-btn:hover { background: #1ebe5d; }

@media (max-width: 900px) {
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .img-2col { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
}



.ast-separate-container #primary {
  margin-top:0;
  padding:0;
}



.steps .step{
  margin:0
}

table{
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  overflow: hidden;
}

.ast-separate-container .ast-article-single:not(.ast-related-post){
  background-color: #F5F7FA;
}

.single-post h2.elementor-heading-title{
    position: relative;
    margin: 0;
}
.single-post h2.elementor-heading-title:before {
    content: "";
    width: 40px;
    height: 3px;
    min-width: 45px;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: -8px;
    left: 0;
    background-color: #FF7A00;
    border-radius: 2px;
}


.sidebar-box a:hover{
  color:#fff;
}
