/* bhutan-travel-guide.css — extracted from bhutan-travel-guide.php */

/* ============================================================
   INTRO SECTION
   ============================================================ */

.fb-tg-intro {
    padding: 80px 0 0;
    background: #f5f0e8;
}

.fb-tg-intro__inner {
    max-width: 760px;
    width: calc(100% - 2 * var(--section-gutter));
    margin: 0 auto;
    text-align: center;
}

.fb-tg-intro__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}

.fb-tg-intro__eyebrow::before,
.fb-tg-intro__eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gold-text-safe);
    flex-shrink: 0;
}

.fb-tg-intro__eyebrow span {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold-text-safe);
    font-family: Roboto, sans-serif;
}

.fb-tg-intro__heading {
    font-size: clamp(1.9rem, 3.2vw, 2.75rem);
    font-weight: 800;
    color: #0e2d45;
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -0.025em;
}

.fb-tg-intro__heading em {
    font-style: normal;
    color: var(--gold-text-safe);
}

.fb-tg-intro__text {
    font-size: 0.97rem;
    color: var(--text-body);
    line-height: 1.85;
    margin: 0;
    font-family: Roboto, sans-serif;
}

/* ============================================================
   GUIDE CARDS SECTION — scoped with .fb-tg prefix
   ============================================================ */

.fb-tg {
    padding: 72px 0 104px;
    background: #f5f0e8;
    position: relative;
    overflow: hidden;
}

/* Subtle diagonal pattern */
.fb-tg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            rgba(14, 45, 69, 0.03) 0px,
            rgba(14, 45, 69, 0.03) 1px,
            transparent 1px,
            transparent 60px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(14, 45, 69, 0.03) 0px,
            rgba(14, 45, 69, 0.03) 1px,
            transparent 1px,
            transparent 60px
        );
    pointer-events: none;
}

.fb-tg__inner {
    max-width: 1320px;
    width: calc(100% - 2 * var(--section-gutter));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ---- Section header ---- */
.fb-tg__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 72px;
    align-items: end;
    margin-bottom: 56px;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.fb-tg__header.fb-tg-visible {
    opacity: 1;
    transform: translateY(0);
}

.fb-tg__eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.fb-tg__eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--gold-text-safe);
    flex-shrink: 0;
}

.fb-tg__eyebrow span {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold-text-safe);
    font-family: Roboto, sans-serif;
}

.fb-tg__heading {
    font-size: clamp(1.9rem, 3.2vw, 2.75rem);
    font-weight: 800;
    color: #0e2d45;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.025em;
}

.fb-tg__heading em {
    font-style: normal;
    color: var(--gold-text-safe);
}

.fb-tg__header-desc {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.8;
    margin: 0;
    font-family: Roboto, sans-serif;
}

/* ---- Card grid: 4 columns ---- */
.fb-tg__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ---- Individual card ---- */
.fb-tg__card {
    position: relative;
    display: block;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none !important;
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease,
        box-shadow 0.28s ease;
    background: #d4c9b5;
    aspect-ratio: 3 / 4;
}

.fb-tg__card.fb-tg-visible {
    opacity: 1;
    transform: translateY(0);
}

.fb-tg__card:hover {
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.22);
    transform: translateY(-6px) scale(1.015);
}

/* Full-bleed photo */
.fb-tg__card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.55s ease;
}

.fb-tg__card:hover .fb-tg__card-img {
    transform: scale(1.06);
}

/* Gradient overlay */
.fb-tg__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 24, 35, 0.93) 0%,
        rgba(10, 24, 35, 0.45) 45%,
        rgba(10, 24, 35, 0.08) 100%
    );
    transition: background 0.28s ease;
    pointer-events: none;
}

.fb-tg__card:hover .fb-tg__card-overlay {
    background: linear-gradient(
        to top,
        rgba(10, 24, 35, 0.97) 0%,
        rgba(10, 24, 35, 0.62) 50%,
        rgba(10, 24, 35, 0.15) 100%
    );
}

/* Gold sweep bar on hover */
.fb-tg__card-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #ffc21a;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.32s ease;
    z-index: 3;
}

.fb-tg__card:hover .fb-tg__card-bar {
    transform: scaleX(1);
}

/* Card text content */
.fb-tg__card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 22px 22px;
    z-index: 2;
}

/* Icon badge */
.fb-tg__card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 194, 26, 0.18);
    border: 1px solid rgba(255, 194, 26, 0.35);
    border-radius: 8px;
    font-size: 1.05rem;
    line-height: 1;
    margin-bottom: 10px;
    backdrop-filter: blur(4px);
    transition: background 0.22s ease, border-color 0.22s ease;
}

.fb-tg__card:hover .fb-tg__card-icon {
    background: rgba(255, 194, 26, 0.30);
    border-color: rgba(255, 194, 26, 0.65);
}

.fb-tg__card-title {
    font-size: 0.97rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 6px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

/* Subtitle */
.fb-tg__card-sub {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.45;
    font-family: Roboto, sans-serif;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.32s ease, opacity 0.28s ease, margin 0.28s ease;
}

.fb-tg__card:hover .fb-tg__card-sub {
    max-height: 60px;
    opacity: 1;
    margin-bottom: 14px;
}

/* CTA label */
.fb-tg__card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: Roboto, sans-serif;
    transition: gap 0.2s ease;
}

.fb-tg__card:hover .fb-tg__card-cta { gap: 10px; }
.fb-tg__card-cta svg { transition: transform 0.2s ease; }
.fb-tg__card:hover .fb-tg__card-cta svg { transform: translateX(3px); }

/* ---- Footer ---- */
.fb-tg__footer {
    margin-top: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.55s ease 0.3s, transform 0.55s ease 0.3s;
}

.fb-tg__footer.fb-tg-visible {
    opacity: 1;
    transform: translateY(0);
}

.fb-tg__footer-line {
    width: 60px;
    height: 1px;
    background: rgba(14, 45, 69, 0.2);
}

.fb-tg__footer-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 26px;
    border: 1.5px solid #0e2d45;
    border-radius: 4px;
    color: #0e2d45 !important;
    text-decoration: none !important;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-family: Roboto, sans-serif;
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.18s ease;
}

.fb-tg__footer-link:hover {
    background: #0e2d45;
    border-color: #0e2d45;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.fb-tg__footer-link svg { transition: transform 0.2s ease; }
.fb-tg__footer-link:hover svg { transform: translateX(4px); }

/* ============================================================
   TOUCH / MOBILE — always show subtitle
   ============================================================ */
@media (hover: none) {
    .fb-tg__card-sub {
        max-height: 60px;
        opacity: 1;
        margin-bottom: 14px;
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet: 2 columns */
@media (max-width: 1024px) {
    .fb-tg__header {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .fb-tg__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .fb-tg {
        padding: 60px 0 80px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .fb-tg {
        padding: 52px 0 68px;
    }
    .fb-tg__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .fb-tg__card-content {
        padding: 18px 16px 16px;
    }
    .fb-tg__card-title {
        font-size: 0.88rem;
    }
    .fb-tg-intro {
        padding: 60px 0 0;
    }
}

/* Very small screens: single column */
@media (max-width: 360px) {
    .fb-tg__grid {
        grid-template-columns: 1fr;
    }
}

/* ── NEW HERO (replaces old generic .hero) ────────────────── */
.fb-tg-hero {
  position: relative;
  height: 86vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--navy);
}

.fb-tg-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.52);
  transform: scale(1.04);
  animation: fb-tg-kb 14s ease-out forwards;
}

@keyframes fb-tg-kb {
  to { transform: scale(1.00); }
}

.fb-tg-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,45,69,0.96) 0%,
    rgba(14,45,69,0.52) 44%,
    rgba(14,45,69,0.10) 100%
  );
}

.fb-tg-hero__content {
  position: relative;
  z-index: 2;
  width: calc(100% - 2 * var(--section-gutter));
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 72px;
  animation: fb-tg-rise 0.8s ease both 0.15s;
}

@keyframes fb-tg-rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fb-tg-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.fb-tg-hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.fb-tg-hero__eyebrow span {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.fb-tg-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}

.fb-tg-hero__title em {
  color: var(--gold);
  font-style: italic;
}

.fb-tg-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fb-tg-hero__pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255,194,26,0.12);
  border: 1px solid rgba(255,194,26,0.28);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
}

@media (max-width: 600px) {
  .fb-tg-hero { height: 76vh; }
  .fb-tg-hero__content { padding-bottom: 48px; }
}


/* ════════════════════════════════════════════════════════
   HUB PAGE ADDITIONS — bhutan-travel-guide.php
   Quick-facts table + two signpost sections
   ════════════════════════════════════════════════════════ */

/* ── Quick-facts table ──────────────────────────────────── */
.fb-tg-facts {
  background: #0e2d45;
  padding: 36px 0 40px;
  margin-top: 48px;
}
.fb-tg-facts__inner {
  max-width: 1320px;
  width: calc(100% - 2 * var(--section-gutter));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.fb-tg-fact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 20px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.fb-tg-fact:last-child { border-right: none; }
.fb-tg-fact__label {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.fb-tg-fact__value {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .fb-tg-facts__inner { grid-template-columns: repeat(2, 1fr); }
  .fb-tg-fact:nth-child(even) { border-right: none; }
  .fb-tg-fact { border-bottom: 1px solid rgba(255,255,255,.08); }
  .fb-tg-fact:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 480px) {
  .fb-tg-facts__inner { grid-template-columns: 1fr; }
  .fb-tg-fact { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .fb-tg-fact:last-child { border-bottom: none; }
}


/* ── Signpost sections ──────────────────────────────────── */
.fb-tg-signpost {
  padding: 72px 0;
  background: #f5f0e8;
}
.fb-tg-signpost--dark {
  background: #fff;
}
.fb-tg-signpost__inner {
  max-width: 1320px;
  width: calc(100% - 2 * var(--section-gutter));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.fb-tg-signpost__heading {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: #0e2d45;
  line-height: 1.12;
  letter-spacing: -.022em;
  margin: 0 0 16px;
}
.fb-tg-signpost__heading em {
  font-style: normal;
  color: var(--gold-text-safe);
}
.fb-tg-signpost__text p {
  font-size: .95rem;
  line-height: 1.85;
  color: var(--text-body);
  margin: 0 0 28px;
  font-family: Roboto, sans-serif;
}
.fb-tg-signpost__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 26px;
  background: #0e2d45;
  color: #fff !important;
  border-radius: 5px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: background .22s, transform .18s;
}
.fb-tg-signpost__btn:hover {
  background: var(--gold-text-safe);
  transform: translateY(-2px);
}
.fb-tg-signpost__btn--outline {
  background: transparent;
  color: #0e2d45 !important;
  border: 1.5px solid #0e2d45;
}
.fb-tg-signpost__btn--outline:hover {
  background: #0e2d45;
  color: #fff !important;
  transform: translateY(-2px);
}
.fb-tg-signpost__bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fb-tg-signpost__bullet {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(14,45,69,.04);
  border-radius: 6px;
  border-left: 3px solid #ffc21a;
}
.fb-tg-signpost--dark .fb-tg-signpost__bullet {
  background: #f5f0e8;
}
.fb-tg-signpost__bullet-icon {
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.fb-tg-signpost__bullet strong {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: #0e2d45;
  margin-bottom: 2px;
}
.fb-tg-signpost__bullet span {
  font-size: .76rem;
  color: var(--text-body);
  line-height: 1.45;
  font-family: Roboto, sans-serif;
}

@media (max-width: 900px) {
  .fb-tg-signpost__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}


/* ════════════════════════════════════════════════════════
   PLANNING PILLAR ADDITIONS — bhutan-travel-guide.php
   Jump nav, How-to-Plan steps, Visa & SDF cards, Cost table,
   Getting There, Practical Tips accordion.
   Matches the existing hub-additions palette above: #0e2d45
   navy, #f5f0e8 cream, var(--gold-text-safe) / var(--gold)
   accents, var(--text-body) for prose, Roboto for body text.
   ════════════════════════════════════════════════════════ */

/* ── Quick jump nav ─────────────────────────────────────── */
.fb-tg-toc {
  background: #fff;
  border-bottom: 1px solid rgba(14, 45, 69, .08);
  padding: 16px 0;
}
.fb-tg-toc__inner {
  max-width: 1320px;
  width: calc(100% - 2 * var(--section-gutter));
  margin: 0 auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  overflow-x: auto;
}
.fb-tg-toc__inner a {
  font-family: Roboto, sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: #0e2d45;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 30px;
  background: #f5f0e8;
  border: 1px solid rgba(14, 45, 69, .08);
  white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s;
}
.fb-tg-toc__inner a:hover {
  background: rgba(255, 194, 26, .16);
  color: var(--gold-text-safe);
  border-color: rgba(255, 194, 26, .4);
}

/* ── Shared section wrapper for the new planning content ─── */
.fb-tg-plan {
  background: #fff;
  padding: 72px 0;
}
.fb-tg-plan--alt {
  background: #f5f0e8;
}
.fb-tg-plan__inner {
  max-width: 900px;
  width: calc(100% - 2 * var(--section-gutter));
  margin: 0 auto;
}
.fb-tg-plan__heading {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #0e2d45;
  line-height: 1.15;
  letter-spacing: -0.022em;
  margin: 4px 0 18px;
}
.fb-tg-plan__heading em {
  font-style: normal;
  color: var(--gold-text-safe);
}
.fb-tg-plan__lead {
  font-family: Roboto, sans-serif;
  font-size: .97rem;
  line-height: 1.85;
  color: var(--text-body);
  margin: 0 0 20px;
}
.fb-tg-plan__more {
  font-family: Roboto, sans-serif;
  font-size: .9rem;
  margin-top: 24px;
}
.fb-tg-plan__more a {
  color: var(--gold-text-safe);
  font-weight: 700;
  text-decoration: none;
}
.fb-tg-plan__more a:hover { text-decoration: underline; }

/* ── How to Plan — step list ───────────────────────────────*/
.fb-tg-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.fb-tg-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  gap: 6px 16px;
  padding: 20px 22px;
  background: #f5f0e8;
  border-radius: 6px;
  border-left: 3px solid #ffc21a;
}
.fb-tg-plan--alt .fb-tg-step {
  background: #fff;
}
.fb-tg-step__num {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: start;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0e2d45;
  color: var(--gold);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fb-tg-step__title {
  grid-column: 2;
  grid-row: 1;
  font-size: 1.02rem;
  font-weight: 700;
  color: #0e2d45;
  margin: 0;
}
.fb-tg-step__text {
  grid-column: 2;
  grid-row: 2;
  font-family: Roboto, sans-serif;
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text-body);
  margin: 0;
}
.fb-tg-step__text a {
  color: var(--gold-text-safe);
  font-weight: 600;
  text-decoration: none;
}
.fb-tg-step__text a:hover { text-decoration: underline; }

/* ── Visa & SDF cards ───────────────────────────────────── */
.fb-tg-visa-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.fb-tg-visa-card {
  background: #fff;
  border: 1px solid rgba(14, 45, 69, .1);
  border-radius: 6px;
  padding: 20px 22px;
}
.fb-tg-plan--alt .fb-tg-visa-card {
  background: #fff;
}
.fb-tg-visa-card--highlight {
  background: rgba(255, 194, 26, .12);
  border-color: rgba(255, 194, 26, .35);
  grid-column: 1 / -1;
}
.fb-tg-visa-card__label {
  font-family: Roboto, sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(14, 45, 69, .55);
}
.fb-tg-visa-card__value {
  font-size: 1.28rem;
  font-weight: 800;
  color: #0e2d45;
  margin: 6px 0 8px;
}
.fb-tg-visa-card__note {
  font-family: Roboto, sans-serif;
  font-size: .85rem;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
}

/* ── Cost breakdown table ──────────────────────────────────*/
.fb-tg-cost-table {
  display: flex;
  flex-direction: column;
  margin-top: 28px;
  border: 1px solid rgba(14, 45, 69, .1);
  border-radius: 6px;
  overflow: hidden;
}
.fb-tg-cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(14, 45, 69, .07);
  background: #fff;
}
.fb-tg-cost-row:nth-child(even) { background: #f5f0e8; }
.fb-tg-cost-row:last-child { border-bottom: none; }
.fb-tg-cost-row__label {
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: #0e2d45;
}
.fb-tg-cost-row__value {
  font-family: Roboto, sans-serif;
  font-size: .86rem;
  color: var(--text-body);
  text-align: right;
}

/* ── Practical tips accordion ──────────────────────────────*/
.fb-tg-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.fb-tg-accordion details {
  background: #fff;
  border: 1px solid rgba(14, 45, 69, .1);
  border-radius: 6px;
  overflow: hidden;
}
.fb-tg-accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 20px;
  font-weight: 700;
  font-size: .94rem;
  color: #0e2d45;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fb-tg-accordion summary::-webkit-details-marker { display: none; }
.fb-tg-accordion summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold-text-safe);
  flex-shrink: 0;
  transition: transform .2s;
}
.fb-tg-accordion details[open] summary::after {
  transform: rotate(45deg);
}
.fb-tg-accordion__body {
  padding: 0 20px 18px;
  font-family: Roboto, sans-serif;
  font-size: .88rem;
  line-height: 1.7;
  color: var(--text-body);
}
.fb-tg-accordion__body a {
  color: var(--gold-text-safe);
  font-weight: 600;
  text-decoration: none;
}
.fb-tg-accordion__body a:hover { text-decoration: underline; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 700px) {
  .fb-tg-visa-grid { grid-template-columns: 1fr; }
  .fb-tg-visa-card--highlight { grid-column: 1; }
  .fb-tg-cost-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .fb-tg-cost-row__value { text-align: left; }
  .fb-tg-step { grid-template-columns: 36px 1fr; padding: 16px; }
  .fb-tg-step__num { width: 36px; height: 36px; font-size: .95rem; }
  .fb-tg-plan { padding: 52px 0; }
}
