/*
 Theme Name:   Flatsome Child - Golden Visa
 Description:  Child theme: homepage + chrome gần UI Next.js Golden Visa
 Author:       Golden Visa
 Template:     flatsome
 Version:      3.7.0
*/

/* ========== Tokens (match Next globals.css) ========== */
:root {
  --gv-gold-50: #fff9eb;
  --gv-gold-100: #ffefc2;
  --gv-gold-300: #ffcc4d;
  --gv-gold-400: #ffb607;
  --gv-gold-500: #f59e0b;
  --gv-ink: #1c1917;
  --gv-muted: #57534e;
  --gv-stone-100: #f5f5f4;
  --gv-stone-200: #e7e5e4;
  --gv-stone-600: #57534e;
  --gv-stone-800: #292524;
  --gv-stone-900: #1c1917;
  --gv-stone-950: #0c0a09;
  --gv-container: 80rem; /* ~max-w-7xl */
}

body {
  font-family: "Be Vietnam Pro", "Lato", system-ui, sans-serif;
  color: var(--gv-ink);
}

/* ========== Header (Next parity) ========== */
#header.header,
.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95) !important;
  border-bottom: 1px solid rgba(231, 229, 228, 0.7);
  box-shadow: 0 1px 0 rgba(28, 25, 23, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Hide Flatsome default rows if any residual markup appears */
.header-top,
.header-bottom,
.header-bg-container,
.header-main .flex-row,
#logo,
.header-nav-main,
.nav-dropdown {
  /* child wrapper replaces chrome; keep bg only */
}

.gv-header {
  width: 100%;
}

.gv-header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: var(--gv-container);
  margin: 0 auto;
  min-height: 68px;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .gv-header-inner {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .gv-header-inner {
    min-height: 76px;
    padding: 0 2rem;
  }
}

/* Brand: logo + text left */
.gv-brand {
  display: flex;
  min-width: 0;
  flex-shrink: 0;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none !important;
  color: inherit !important;
}
.gv-brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(231, 229, 228, 0.9);
}
.gv-brand-text {
  display: none;
  min-width: 0;
  line-height: 1.2;
}
@media (min-width: 640px) {
  .gv-brand-text {
    display: block;
  }
}
.gv-brand-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gv-stone-900);
  white-space: nowrap;
}
.gv-brand-tag {
  display: block;
  font-size: 11px;
  color: #78716c;
  white-space: nowrap;
}

/* Desktop nav center */
.gv-nav {
  display: none;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
}
@media (min-width: 1024px) {
  .gv-nav {
    display: flex;
  }
}
@media (min-width: 1280px) {
  .gv-nav {
    gap: 0.25rem;
  }
}

.gv-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.625rem;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #44403c !important;
  text-decoration: none !important;
  text-transform: none !important;
  transition: color 0.15s ease;
}
@media (min-width: 1280px) {
  .gv-nav-link {
    padding: 0.5rem 0.75rem;
  }
}
.gv-nav-link::after {
  content: "";
  position: absolute;
  left: 0.625rem;
  right: 0.625rem;
  bottom: 2px;
  height: 2px;
  border-radius: 9999px;
  background: var(--gv-gold-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.15s ease;
}
.gv-nav-link:hover,
.gv-nav-link.is-active {
  color: var(--gv-stone-900) !important;
}
.gv-nav-link:hover::after,
.gv-nav-link.is-active::after {
  transform: scaleX(1);
}

.gv-caret {
  opacity: 0.5;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.gv-nav-item.has-children:hover .gv-caret {
  opacity: 0.85;
  transform: rotate(180deg);
}

.gv-nav-item {
  position: relative;
}
.gv-dropdown {
  pointer-events: none;
  visibility: hidden;
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 50;
  width: 14rem;
  padding-top: 0.5rem;
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 0.15s ease, visibility 0.15s ease;
}
.gv-nav-item.has-children:hover .gv-dropdown,
.gv-nav-item.has-children:focus-within .gv-dropdown {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}
.gv-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0.375rem 0;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid rgba(231, 229, 228, 0.95);
  background: #fff;
  box-shadow: 0 12px 40px -12px rgba(28, 25, 23, 0.35);
}
.gv-dropdown a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 13px;
  color: #44403c !important;
  text-decoration: none !important;
  transition: background 0.12s ease, color 0.12s ease;
}
.gv-dropdown a:hover {
  background: var(--gv-gold-50);
  color: var(--gv-stone-900) !important;
}
.gv-dropdown-all {
  border-bottom: 1px solid var(--gv-stone-100);
}
.gv-dropdown-all a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #92400e !important;
}

/* Actions right */
.gv-header-actions {
  display: flex;
  margin-left: auto;
  flex-shrink: 0;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 1024px) {
  .gv-header-actions {
    margin-left: 0;
  }
}

.gv-hotline {
  display: none;
  align-items: center;
  gap: 0.5rem;
  height: 2.5rem;
  white-space: nowrap;
  border-radius: 9999px;
  background: var(--gv-gold-400);
  color: var(--gv-ink) !important;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0 1rem;
  text-decoration: none !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: background 0.15s ease;
}
@media (min-width: 640px) {
  .gv-hotline {
    display: inline-flex;
  }
}
.gv-hotline:hover {
  background: var(--gv-gold-500);
  color: var(--gv-ink) !important;
}
.gv-hotline-num {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}
.gv-hotline--block {
  display: flex !important;
  justify-content: center;
  margin: 0.75rem 0 0.5rem;
  width: 100%;
}

.gv-menu-toggle {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid var(--gv-stone-200);
  background: #fff;
  color: #44403c;
  font-size: 1.1rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.gv-menu-toggle:hover {
  border-color: var(--gv-gold-400);
  background: var(--gv-gold-50);
}
@media (min-width: 1024px) {
  .gv-menu-toggle {
    display: none;
  }
}
.gv-menu-icon.is-hidden {
  display: none;
}

/* Mobile drawer */
.gv-mobile {
  border-top: 1px solid var(--gv-stone-200);
  background: #fff;
  max-height: min(70vh, 520px);
  overflow-y: auto;
}
@media (min-width: 1024px) {
  .gv-mobile {
    display: none !important;
  }
}
.gv-mobile-nav {
  max-width: var(--gv-container);
  margin: 0 auto;
  padding: 0.5rem 1rem 1rem;
  display: flex;
  flex-direction: column;
}
.gv-mobile-link {
  display: block;
  padding: 0.75rem 0.25rem;
  font-size: 15px;
  font-weight: 500;
  color: #292524 !important;
  text-decoration: none !important;
  border-bottom: 1px solid var(--gv-stone-100);
}
.gv-mobile-link.is-active {
  color: #92400e !important;
}
.gv-mobile-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--gv-stone-100);
}
.gv-mobile-row .gv-mobile-link {
  flex: 1;
  border-bottom: 0;
}
.gv-mobile-expand {
  width: 2.75rem;
  border: 0;
  background: transparent;
  color: #78716c;
  cursor: pointer;
  font-size: 0.9rem;
}
.gv-mobile-sub {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0 0.5rem;
  background: rgba(250, 250, 249, 0.9);
}
.gv-mobile-sub a {
  display: block;
  padding: 0.5rem 0.5rem 0.5rem 1.75rem;
  font-size: 14px;
  color: #57534e !important;
  text-decoration: none !important;
}
.gv-mobile-sub a:hover {
  color: var(--gv-stone-900) !important;
}

/* ========== Layout helpers ========== */
.gv-wrap {
  width: 100%;
  max-width: var(--gv-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .gv-wrap {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .gv-wrap {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.gv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  text-decoration: none !important;
  transition: 0.15s ease;
  border: 0;
  cursor: pointer;
}
.gv-btn-primary {
  background: var(--gv-gold-400);
  color: var(--gv-ink) !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
.gv-btn-primary:hover {
  background: var(--gv-gold-500);
}
.gv-btn-dark {
  background: var(--gv-stone-900);
  color: #fff !important;
}
.gv-btn-dark:hover {
  background: var(--gv-stone-800);
}
.gv-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  backdrop-filter: blur(4px);
}
.gv-btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
}
.gv-btn-secondary {
  border: 1px solid #d6d3d1;
  background: #fff;
  color: #292524 !important;
}
.gv-btn-secondary:hover {
  border-color: var(--gv-gold-400);
}

.gv-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gv-stone-900);
  margin: 0;
}
@media (min-width: 640px) {
  .gv-section-title {
    font-size: 1.875rem;
  }
}
.gv-section-title.is-light {
  color: #fff;
}
.gv-section-sub {
  margin: 0.5rem 0 0;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gv-stone-600);
}
.gv-section-sub.is-light {
  color: rgba(255, 255, 255, 0.88);
}
.gv-section-head {
  margin-bottom: 2rem;
  text-align: center;
}
.gv-section-head .gv-section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ========== Hero ========== */
.gv-hero {
  position: relative;
  min-height: 70dvh;
  overflow: hidden;
  background: var(--gv-stone-900);
  color: #fff;
}
@media (min-width: 768px) {
  .gv-hero {
    min-height: 78dvh;
  }
}
.gv-hero-slides {
  position: absolute;
  inset: 0;
}
.gv-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  background-size: cover;
  background-position: center;
}
.gv-hero-slide.is-active {
  opacity: 1;
}
.gv-hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.2) 100%
  );
}
.gv-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 70dvh;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .gv-hero-content {
    min-height: 78dvh;
  }
}
.gv-hero-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gv-gold-300);
}
.gv-hero h1 {
  margin: 0;
  max-width: 36rem;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}
@media (min-width: 640px) {
  .gv-hero h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .gv-hero h1 {
    font-size: 3.75rem;
  }
}
.gv-hero-lead {
  margin: 1rem 0 0;
  max-width: 28rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}
@media (min-width: 640px) {
  .gv-hero-lead {
    font-size: 1.125rem;
  }
}
.gv-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.gv-hero-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.gv-hero-nav button {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  cursor: pointer;
}
.gv-hero-nav button:hover {
  background: rgba(0, 0, 0, 0.5);
}
.gv-hero-dots {
  display: flex;
  gap: 0.35rem;
  margin-left: 0.5rem;
}
.gv-hero-dots button {
  height: 0.375rem;
  width: 0.5rem;
  border: 0;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.4);
  padding: 0;
  cursor: pointer;
  transition: all 0.2s;
}
.gv-hero-dots button.is-active {
  width: 1.5rem;
  background: var(--gv-gold-400);
}

/* ========== About ========== */
.gv-about {
  padding: 4rem 0;
}
.gv-about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .gv-about-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.gv-about-video {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--gv-stone-200);
  background: var(--gv-stone-100);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  aspect-ratio: 16 / 9;
  position: relative;
}
.gv-about-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.gv-about-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.gv-about-brand img {
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  object-fit: cover;
}
.gv-about-brand h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}
.gv-about-brand p {
  margin: 0.15rem 0 0;
  font-size: 0.875rem;
  color: #78716c;
}
.gv-about-copy p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gv-stone-600);
}

/* ========== Post cards ========== */
.gv-section {
  padding: 4rem 0;
}
.gv-section--gold {
  background: var(--gv-gold-400);
}
.gv-section--muted {
  background: var(--gv-stone-100);
}
.gv-section--dark {
  background: var(--gv-stone-900);
  color: #fff;
}
.gv-section--dark .gv-section-title {
  color: #fff;
}
.gv-section--dark .gv-section-sub {
  color: rgba(255, 255, 255, 0.85);
}

.gv-grid {
  display: grid;
  gap: 1.25rem;
}
.gv-grid-4 {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .gv-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .gv-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gv-grid-3 {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .gv-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .gv-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.gv-grid-2 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .gv-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gv-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(231, 229, 228, 0.9);
  background: #fff;
  box-shadow: 0 10px 30px -18px rgba(28, 25, 23, 0.35);
  text-decoration: none !important;
  color: inherit !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gv-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -16px rgba(28, 25, 23, 0.4);
}
.gv-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gv-stone-100);
}
.gv-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gv-card:hover .gv-card-media img {
  transform: scale(1.05);
}
.gv-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem;
}
.gv-card-date {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #b45309;
}
.gv-card-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--gv-stone-900);
}
.gv-card-excerpt {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--gv-stone-600);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gv-card-tag {
  margin-top: auto;
  padding-top: 1rem;
}
.gv-card-tag span {
  display: inline-flex;
  border-radius: 9999px;
  background: var(--gv-gold-50);
  color: #92400e;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.625rem;
}

/* Overlay cards (promo) */
.gv-card--overlay {
  position: relative;
  min-height: 220px;
  border: 0;
}
.gv-card--overlay .gv-card-media {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
}
.gv-card--overlay .gv-card-body {
  position: relative;
  z-index: 2;
  justify-content: flex-end;
  min-height: 220px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 60%);
  color: #fff;
}
.gv-card--overlay .gv-card-title {
  color: #fff;
}
.gv-card--overlay .gv-card-date {
  color: var(--gv-gold-300);
}

.gv-more {
  margin-top: 2rem;
  text-align: center;
}
.gv-empty {
  text-align: center;
  color: var(--gv-muted);
  padding: 2rem 1rem;
}

/* ========== Consult CTA (Next: full-width horizontal row) ========== */
.gv-cta {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 3.5rem;
  background: #111 url("https://goldenvisa.vn/wp-content/uploads/2018/09/du-hoc-anh-quoc.jpeg")
    center / cover no-repeat;
}
.gv-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.gv-cta-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--gv-container);
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .gv-cta-inner {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .gv-cta-inner {
    padding: 0 2rem;
  }
}
.gv-cta h2 {
  margin: 0;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
@media (min-width: 640px) {
  .gv-cta h2 {
    font-size: 1.875rem;
  }
}

/* Full width of container (no narrow card) */
.gv-cta .wpcf7,
.gv-cta-form {
  width: 100% !important;
  max-width: 64rem !important; /* ~max-w-5xl like Next */
  margin: 2rem auto 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
}
.gv-cta .wpcf7-form {
  margin: 0 !important;
  width: 100% !important;
  max-width: none !important;
}
.gv-cta .wpcf7-form > p {
  margin: 0 !important;
}
.gv-cta .wpcf7-form label {
  display: none !important;
}
.gv-cta .screen-reader-response {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/*
 * CF7 often wraps fields in a single <p> with <br>, or (with autop off)
 * places .wpcf7-form-control-wrap + submit as direct children of .gv-cta-row.
 */
.gv-cta .gv-cta-row,
.gv-cta .wpcf7-form .gv-cta-row,
.gv-cta .gv-cta-row > p {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  gap: 0.5rem !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

@media (min-width: 768px) {
  .gv-cta .gv-cta-row,
  .gv-cta .wpcf7-form .gv-cta-row,
  .gv-cta .gv-cta-row > p {
    flex-direction: row !important;
    align-items: stretch !important;
  }
}

.gv-cta .gv-cta-row br {
  display: none !important;
}

.gv-cta .gv-cta-row .wpcf7-form-control-wrap {
  display: block !important;
  flex: 1 1 0% !important;
  min-width: 0 !important;
  max-width: none !important;
  width: auto !important;
  margin: 0 !important;
}

.gv-cta .gv-cta-row input[type="text"],
.gv-cta .gv-cta-row input[type="email"],
.gv-cta .gv-cta-row input[type="tel"],
.gv-cta .gv-cta-row input.wpcf7-text,
.gv-cta .gv-cta-row input.wpcf7-email,
.gv-cta .gv-cta-row input.wpcf7-tel,
.gv-cta .gv-cta-row input.wpcf7-form-control:not([type="submit"]):not([type="hidden"]) {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  height: 2.75rem !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.875rem !important;
  line-height: 1.25 !important;
  color: var(--gv-ink) !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}
.gv-cta .gv-cta-row input::placeholder {
  color: #78716c !important;
  opacity: 1 !important;
}

.gv-cta .gv-cta-row input[type="submit"],
.gv-cta .gv-cta-row .wpcf7-submit {
  flex: 0 0 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 2.75rem !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: var(--gv-gold-400) !important;
  color: var(--gv-ink) !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  padding: 0 2rem !important;
  cursor: pointer !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
}
@media (min-width: 768px) {
  .gv-cta .gv-cta-row input[type="submit"],
  .gv-cta .gv-cta-row .wpcf7-submit {
    width: auto !important;
    min-width: 5.5rem !important;
  }
}
.gv-cta .gv-cta-row input[type="submit"]:hover,
.gv-cta .gv-cta-row .wpcf7-submit:hover {
  background: var(--gv-gold-500) !important;
}

/* Spinner wrapper CF7 adds around submit */
.gv-cta .gv-cta-row .wpcf7-spinner {
  display: none !important;
}

.gv-cta .wpcf7-response-output {
  margin: 1rem 0 0 !important;
  text-align: center;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4) !important;
}
.gv-cta .wpcf7-mail-sent-ok,
.gv-cta form.sent .wpcf7-response-output {
  color: #6ee7b7 !important;
  border-color: #6ee7b7 !important;
}
.gv-cta .wpcf7-validation-errors,
.gv-cta .wpcf7-mail-sent-ng,
.gv-cta form.invalid .wpcf7-response-output,
.gv-cta form.failed .wpcf7-response-output {
  color: #fca5a5 !important;
  border-color: #fca5a5 !important;
}

/* ========== Floating contact (Next FloatingContact) ========== */
.gv-float {
  position: fixed;
  right: 0.75rem;
  top: 50%;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transform: translateY(-50%);
}
@media (min-width: 640px) {
  .gv-float {
    right: 1rem;
  }
}
.gv-float-item {
  position: relative;
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: transform 0.15s ease;
}
.gv-float-item:hover {
  transform: scale(1.05);
}
.gv-float-item svg {
  width: 44px;
  height: 44px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}
.gv-float-tip {
  pointer-events: none;
  position: absolute;
  right: calc(100% + 0.6rem);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  border-radius: 0.25rem;
  background: rgba(28, 25, 23, 0.92);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 0.25rem 0.625rem;
  opacity: 0;
  transition: opacity 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.gv-float-item:hover .gv-float-tip,
.gv-float-item:focus-visible .gv-float-tip {
  opacity: 1;
}
@media (max-width: 480px) {
  .gv-float {
    right: 0.5rem;
    gap: 0.5rem;
  }
  .gv-float-item,
  .gv-float-item svg {
    width: 40px;
    height: 40px;
  }
}

/* ========== Partners ========== */
.gv-partners {
  background: var(--gv-gold-400);
  padding: 3rem 0;
}
.gv-partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  list-style: none !important; /* hide default UL bullets (black dots) */
  margin: 0 !important;
  padding: 0 !important;
}
.gv-partners-grid > li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.gv-partners-grid > li::marker,
.gv-partners-grid > li::before {
  content: none !important;
  display: none !important;
}
@media (min-width: 768px) {
  .gv-partners-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
  }
}
.gv-partner {
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.gv-partner:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.25);
}
.gv-partner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}

/* ========== Single post / static page ========== */
.gv-article {
  padding: 2.5rem 0 3.5rem;
  background: #fff;
}
.gv-article-inner {
  max-width: 56rem; /* ~max-w-4xl */
}
.gv-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gv-stone-600) !important;
  text-decoration: none !important;
}
.gv-back:hover {
  color: #b45309 !important;
}
.gv-article-header {
  margin-bottom: 2rem;
}
.gv-badge {
  display: inline-flex;
  margin-bottom: 0.75rem;
  border-radius: 9999px;
  background: var(--gv-gold-50);
  color: #92400e !important;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  text-decoration: none !important;
}
.gv-badge:hover {
  background: var(--gv-gold-100);
}
.gv-article-title {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--gv-stone-900);
}
@media (min-width: 640px) {
  .gv-article-title {
    font-size: 2.25rem;
  }
}
.gv-article-date {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #78716c;
}
.gv-article-hero {
  margin: 0 0 2.5rem;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--gv-stone-200);
  background: var(--gv-stone-100);
  aspect-ratio: 16 / 9;
}
.gv-article-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Prose (post body) — match Next prose-wp */
.gv-prose {
  max-width: none;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #44403c;
}
.gv-prose > *:first-child {
  margin-top: 0;
}
.gv-prose h2,
.gv-prose h3,
.gv-prose h4 {
  margin: 2rem 0 0.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gv-stone-900);
  line-height: 1.3;
}
.gv-prose h2 {
  font-size: 1.5rem;
}
.gv-prose h3 {
  font-size: 1.25rem;
}
.gv-prose h4 {
  font-size: 1.125rem;
}
.gv-prose p {
  margin: 0 0 1rem;
}
.gv-prose ul,
.gv-prose ol {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}
.gv-prose li {
  margin: 0.25rem 0;
}
.gv-prose a {
  color: #b45309 !important;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.gv-prose a:hover {
  color: #92400e !important;
}
.gv-prose img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border-radius: 0.75rem;
}
.gv-prose blockquote {
  margin: 1.5rem 0;
  padding: 0.75rem 1rem 0.75rem 1.25rem;
  border-left: 4px solid var(--gv-gold-400);
  background: var(--gv-gold-50);
  color: var(--gv-stone-800);
}
.gv-prose table {
  width: 100%;
  margin: 0 0 1.5rem;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.gv-prose th,
.gv-prose td {
  border: 1px solid var(--gv-stone-200);
  padding: 0.5rem 0.75rem;
  vertical-align: top;
}
.gv-prose iframe {
  max-width: 100%;
}
.gv-prose #ez-toc-container,
.gv-prose .ez-toc-container {
  margin: 0 0 2rem;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--gv-stone-200);
  background: var(--gv-stone-100);
}

.gv-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gv-stone-200);
}
.gv-article-tags a {
  border-radius: 9999px;
  border: 1px solid var(--gv-stone-200);
  background: #fff;
  color: var(--gv-stone-600) !important;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  text-decoration: none !important;
}
.gv-article-tags a:hover {
  border-color: var(--gv-gold-400);
  color: var(--gv-stone-900) !important;
}

.gv-post-nav {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gv-stone-200);
}
@media (min-width: 640px) {
  .gv-post-nav {
    grid-template-columns: 1fr 1fr;
  }
}
.gv-post-nav-link {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--gv-stone-200);
  background: #fff;
  text-decoration: none !important;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.gv-post-nav-link:hover {
  border-color: var(--gv-gold-400);
  box-shadow: 0 8px 24px -16px rgba(28, 25, 23, 0.35);
}
.gv-post-nav-link--next {
  text-align: right;
}
.gv-post-nav-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #b45309;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.gv-post-nav-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gv-stone-900);
  line-height: 1.35;
}

/* Hide Flatsome default titles on custom templates */
body.single-post .page-title,
body.single-post .page-header,
body.category .page-title,
body.archive .page-title,
body.page .page-title-wrapper,
body.search .page-title {
  display: none !important;
}
body.single-post #content.blog-wrapper,
body.category #content.blog-wrapper,
body.archive #content.blog-wrapper {
  padding: 0 !important;
}

/* ========== Archive / category ========== */
.gv-archive {
  padding: 2.5rem 0 3.5rem;
  background: #fff;
}
.gv-archive-header {
  margin-bottom: 2rem;
  text-align: center;
}
.gv-archive-title {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--gv-stone-900);
}
@media (min-width: 640px) {
  .gv-archive-title {
    font-size: 2.25rem;
  }
}
.gv-archive-sub {
  margin: 0.75rem auto 0;
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gv-stone-600);
}
.gv-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.gv-chip {
  display: inline-flex;
  border-radius: 9999px;
  border: 1px solid #fbbf24;
  background: #fff;
  color: #b45309 !important;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  text-decoration: none !important;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.gv-chip:hover,
.gv-chip.is-active {
  background: var(--gv-gold-400);
  border-color: var(--gv-gold-400);
  color: var(--gv-stone-900) !important;
}

.gv-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 2.5rem;
}
.gv-pagination .page-numbers {
  display: inline-flex;
  min-width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: 1px solid var(--gv-stone-200);
  background: #fff;
  color: var(--gv-stone-800) !important;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none !important;
  padding: 0 0.5rem;
}
.gv-pagination .page-numbers.current,
.gv-pagination .page-numbers:hover {
  border-color: var(--gv-gold-400);
  background: var(--gv-gold-50);
  color: var(--gv-stone-900) !important;
}
.gv-pagination .page-numbers.dots {
  border: 0;
  background: transparent;
}

/* ========== Support landing (Hỗ trợ khách hàng) ========== */
.gv-support-hero {
  position: relative;
  padding: 3.5rem 0 4rem;
  background:
    linear-gradient(120deg, rgba(28, 25, 23, 0.92) 0%, rgba(28, 25, 23, 0.75) 55%, rgba(180, 83, 9, 0.55) 100%),
    url("https://goldenvisa.vn/wp-content/uploads/2018/09/du-hoc-anh-quoc.jpeg") center / cover no-repeat;
  color: #fff;
}
.gv-support-hero-inner {
  max-width: 44rem;
}
.gv-support-kicker,
.gv-support-label {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gv-gold-300);
}
.gv-support-label {
  color: #b45309;
  text-align: center;
}
.gv-support-hero h1 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}
@media (min-width: 640px) {
  .gv-support-hero h1 {
    font-size: 2.75rem;
  }
}
.gv-support-lead {
  margin: 1rem 0 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}
.gv-support-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.gv-btn-outline--dark {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff !important;
}

.gv-support-section {
  padding: 3.5rem 0;
  background: #fff;
}
.gv-support-section--muted {
  background: var(--gv-stone-100);
}
.gv-support-section .gv-section-head {
  margin-bottom: 2.5rem;
}

/* Process section — compact vertical gold timeline (full copy kept) */
.gv-process {
  position: relative;
  padding: 2.5rem 0 2.75rem;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 182, 7, 0.1), transparent 60%),
    linear-gradient(180deg, #fafaf9 0%, #fff 45%, #f5f5f4 100%);
  overflow: hidden;
}
.gv-process-head {
  max-width: 32rem;
  margin: 0 auto 1.75rem;
  text-align: center;
}
.gv-process-head-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}
.gv-process-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  background: var(--gv-stone-900);
  color: var(--gv-gold-400);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
}
.gv-process-line-deco {
  display: none;
  width: 2.25rem;
  height: 2px;
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--gv-gold-400), transparent);
}
@media (min-width: 640px) {
  .gv-process-line-deco {
    display: block;
  }
}
.gv-process-title {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--gv-stone-900);
}
@media (min-width: 640px) {
  .gv-process-title {
    font-size: 1.65rem;
  }
}
.gv-process-sub {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--gv-stone-600);
}
.gv-process-sub strong {
  color: var(--gv-stone-900);
  font-weight: 600;
}

/* Timeline track */
.gv-timeline {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 36rem;
  position: relative;
}
.gv-timeline::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--gv-gold-400) 0%,
    #f59e0b 50%,
    rgba(245, 158, 11, 0.25) 100%
  );
  border-radius: 9999px;
}
@media (min-width: 768px) {
  .gv-timeline {
    max-width: 44rem;
  }
  .gv-timeline::before {
    left: 50%;
    margin-left: -1px;
  }
}

.gv-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0 0.75rem;
  padding-bottom: 0.75rem;
  align-items: start;
}
.gv-timeline-item:last-child {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .gv-timeline-item {
    grid-template-columns: 1fr 2rem 1fr;
    gap: 0 0.9rem;
    padding-bottom: 0.9rem;
  }
  .gv-timeline-item:nth-child(odd) .gv-timeline-marker {
    grid-column: 2;
    grid-row: 1;
  }
  .gv-timeline-item:nth-child(odd) .gv-timeline-card {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
  }
  .gv-timeline-item:nth-child(even) .gv-timeline-marker {
    grid-column: 2;
    grid-row: 1;
  }
  .gv-timeline-item:nth-child(even) .gv-timeline-card {
    grid-column: 3;
    grid-row: 1;
    text-align: left;
  }
}

.gv-timeline-marker {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding-top: 0.2rem;
}
.gv-timeline-dot {
  display: flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--gv-gold-400);
  color: var(--gv-stone-900);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow:
    0 0 0 3px #fff,
    0 0 0 4px rgba(255, 182, 7, 0.35),
    0 4px 12px -4px rgba(180, 83, 9, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.gv-timeline-item:hover .gv-timeline-dot {
  transform: scale(1.05);
  box-shadow:
    0 0 0 3px #fff,
    0 0 0 5px rgba(255, 182, 7, 0.45),
    0 6px 14px -4px rgba(180, 83, 9, 0.45);
}

.gv-timeline-card {
  padding: 0.65rem 0.85rem 0.75rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(231, 229, 228, 0.95);
  background: #fff;
  box-shadow: 0 6px 18px -12px rgba(28, 25, 23, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.gv-timeline-item:hover .gv-timeline-card {
  border-color: rgba(255, 182, 7, 0.5);
  box-shadow: 0 8px 22px -12px rgba(28, 25, 23, 0.4);
  transform: translateY(-1px);
}
.gv-timeline-card-meta {
  margin-bottom: 0.2rem;
}
.gv-timeline-step {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b45309;
}
.gv-timeline-card-title {
  margin: 0 0 0.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--gv-stone-900);
}
.gv-timeline-card-text {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--gv-stone-600);
}
@media (min-width: 768px) {
  .gv-timeline-item:nth-child(odd) .gv-timeline-card-meta {
    display: flex;
    justify-content: flex-end;
  }
}

/* Payment */
.gv-pay-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .gv-pay-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}
.gv-pay-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: 100%;
  padding: 1.35rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--gv-stone-200);
  background: #fff;
  box-shadow: 0 10px 28px -20px rgba(28, 25, 23, 0.4);
}
.gv-pay-icon {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  background: var(--gv-gold-400);
  color: var(--gv-stone-900);
  font-size: 0.875rem;
  font-weight: 800;
}
.gv-pay-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gv-stone-800);
  font-weight: 500;
}
.gv-pay-note {
  margin-top: 1.5rem;
  padding: 1.15rem 1.25rem;
  border-radius: 0.85rem;
  border-left: 4px solid var(--gv-gold-400);
  background: #fff;
}
.gv-support-section--muted .gv-pay-note {
  background: rgba(255, 255, 255, 0.85);
}
.gv-pay-note p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--gv-stone-600);
}

/* Why cards */
.gv-why-grid {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 768px) {
  .gv-why-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.gv-why-card {
  position: relative;
  padding: 1.4rem 1.35rem 1.4rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--gv-stone-200);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 28px -20px rgba(28, 25, 23, 0.35);
}
.gv-why-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gv-gold-400), #f59e0b);
}
.gv-why-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--gv-stone-900);
}
.gv-why-card p {
  margin: 0;
  font-size: 0.925rem;
  line-height: 1.7;
  color: var(--gv-stone-600);
}

.gv-support-quote {
  margin: 2.5rem 0 0;
  padding: 1.5rem 1.75rem;
  border-radius: 1rem;
  background: var(--gv-stone-900);
  color: #fff;
  border: 0;
}
.gv-support-quote p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.gv-support-band {
  background: var(--gv-gold-400);
  padding: 2.25rem 0;
}
.gv-support-band-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .gv-support-band-inner {
    flex-direction: row;
    align-items: center;
  }
}
.gv-support-band h2 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gv-stone-900);
}
.gv-support-band p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(28, 25, 23, 0.8);
}
.gv-support-band .gv-btn-primary {
  background: var(--gv-stone-900);
  color: #fff !important;
}
.gv-support-band .gv-btn-primary:hover {
  background: #292524;
}

body.page-template-page-ho-tro-khach-hang .page-title,
body.page-template-page-ho-tro-khach-hang .page-header,
body.page-template-page-doi-ngu-chuyen-gia .page-title,
body.page-template-page-doi-ngu-chuyen-gia .page-header,
body.page-template-page-gioi-thieu .page-title,
body.page-template-page-gioi-thieu .page-header {
  display: none !important;
}

/* ========== Team / intro landing (Đội ngũ chuyên gia) ========== */
.gv-team-hero {
  position: relative;
  padding: 3.25rem 0 3.75rem;
  background:
    linear-gradient(115deg, rgba(28, 25, 23, 0.93) 0%, rgba(41, 37, 36, 0.82) 50%, rgba(180, 83, 9, 0.5) 100%),
    url("https://goldenvisa.vn/wp-content/uploads/2022/07/visa-du-hoc-scaled.jpg") center / cover no-repeat;
  color: #fff;
}
.gv-team-hero-inner {
  max-width: 40rem;
}
.gv-team-kicker,
.gv-team-pill {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gv-gold-300);
}
.gv-team-pill {
  display: inline-flex;
  margin: 0 0 0.85rem;
  border-radius: 9999px;
  background: var(--gv-stone-900);
  color: var(--gv-gold-400);
  padding: 0.35rem 0.8rem;
  letter-spacing: 0.12em;
}
.gv-team-pill--light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gv-gold-300);
}
.gv-team-hero h1 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}
@media (min-width: 640px) {
  .gv-team-hero h1 {
    font-size: 2.6rem;
  }
}
.gv-team-lead {
  margin: 0.9rem 0 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}
.gv-team-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.gv-team-section {
  padding: 3rem 0;
  background: #fff;
}
.gv-team-section--dark {
  background: var(--gv-stone-900);
  color: #fff;
}
.gv-team-head {
  max-width: 36rem;
  margin: 0 auto 2rem;
  text-align: center;
}
.gv-team-head h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--gv-stone-900);
}
.gv-team-head--light h2 {
  color: #fff;
}
.gv-team-head p {
  margin: 0.55rem 0 0;
  font-size: 0.925rem;
  line-height: 1.6;
  color: var(--gv-stone-600);
}
.gv-team-head--light p {
  color: rgba(255, 255, 255, 0.75);
}

/* Vision split */
.gv-team-split {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .gv-team-split {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    gap: 2.5rem;
  }
}
.gv-team-split-label h2 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--gv-stone-900);
}
.gv-team-split-body p {
  margin: 0 0 0.9rem;
  font-size: 0.975rem;
  line-height: 1.75;
  color: var(--gv-stone-600);
}
.gv-team-split-body p:last-child {
  margin-bottom: 0;
}

/* Mission */
.gv-mission-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 768px) {
  .gv-mission-list {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
.gv-mission-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}
.gv-mission-num {
  display: flex;
  width: 2.1rem;
  height: 2.1rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.55rem;
  background: var(--gv-gold-400);
  color: var(--gv-stone-900);
  font-size: 0.7rem;
  font-weight: 800;
}
.gv-mission-item p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

/* Values */
.gv-values-grid {
  display: grid;
  gap: 0.9rem;
}
@media (min-width: 640px) {
  .gv-values-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .gv-values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gv-values-grid .gv-value-card:nth-child(4),
  .gv-values-grid .gv-value-card:nth-child(5) {
    /* last two span nicer on 3-col — optional stretch */
  }
}
.gv-value-card {
  height: 100%;
  padding: 1.2rem 1.15rem 1.25rem;
  border-radius: 0.9rem;
  border: 1px solid var(--gv-stone-200);
  background: #fff;
  box-shadow: 0 10px 28px -20px rgba(28, 25, 23, 0.4);
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.gv-value-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 182, 7, 0.55);
  box-shadow: 0 14px 32px -16px rgba(28, 25, 23, 0.4);
}
.gv-value-icon {
  display: inline-flex;
  width: 1.85rem;
  height: 1.85rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.65rem;
  border-radius: 0.5rem;
  background: var(--gv-gold-400);
  color: var(--gv-stone-900);
  font-size: 0.75rem;
  font-weight: 800;
}
.gv-value-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gv-stone-900);
}
.gv-value-card p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--gv-stone-600);
}

/* Band */
.gv-team-band {
  background: var(--gv-gold-400);
  padding: 2rem 0;
}
.gv-team-band-inner {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
@media (min-width: 768px) {
  .gv-team-band-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.gv-team-band h2 {
  margin: 0 0 0.3rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gv-stone-900);
}
.gv-team-band p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(28, 25, 23, 0.8);
}
.gv-team-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.gv-btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--gv-stone-900);
  color: #fff !important;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  text-decoration: none !important;
  transition: background 0.15s ease;
}
.gv-btn-dark:hover {
  background: #292524;
}

/* ========== Footer (Flatsome) dark like Next ========== */
.footer-wrapper,
#footer {
  background: var(--gv-stone-950) !important;
  color: #e7e5e4 !important;
  border-top: 1px solid #292524;
}
.absolute-footer,
.absolute-footer.gv-copyright {
  background: var(--gv-stone-950) !important;
  color: #78716c !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 0 !important;
  padding: 0 !important;
}
.gv-copyright .gv-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.5rem 1rem !important; /* compact copyright bar */
  min-height: 0;
}
@media (min-width: 640px) {
  .gv-copyright .gv-wrap {
    padding: 0.5rem 1.5rem !important;
  }
}
@media (min-width: 1024px) {
  .gv-copyright .gv-wrap {
    padding: 0.5rem 2rem !important;
  }
}
.gv-copyright p {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 11px !important;
  line-height: 1.3 !important;
  color: #78716c !important;
}
#footer a {
  color: #d6d3d1 !important;
}
#footer a:hover {
  color: var(--gv-gold-300) !important;
}
.gv-footer-grid {
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 0;
}
@media (min-width: 768px) {
  .gv-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .gv-footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gv-footer-title {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gv-gold-400);
}
.gv-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gv-footer-list li {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
}
.gv-footer-brand {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}
.gv-footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  object-fit: cover;
}
.gv-footer-brand strong {
  display: block;
  color: #fff;
}
.gv-footer-brand span {
  font-size: 0.875rem;
  color: #a8a29e;
}
.gv-footer-about {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #a8a29e;
}

/* Page default width */
.page-wrapper .row,
.is-sticky-column {
  max-width: none;
}

/* Blank page template content full width for front-page */
.page-template-default .page-title,
.home .page-title,
.page-title-wrapper {
  display: none !important;
}

@media only screen and (max-width: 48em) {
  .header-main {
    min-height: 60px;
  }
  .gv-hero h1 {
    font-size: 1.875rem;
  }
}

/* ========== Expert / Đội ngũ chuyên môn ========== */
.gv-expert-hero {
  position: relative;
  padding: 3.25rem 0 3.75rem;
  background:
    linear-gradient(115deg, rgba(28, 25, 23, 0.94) 0%, rgba(41, 37, 36, 0.85) 50%, rgba(180, 83, 9, 0.45) 100%),
    url("https://goldenvisa.vn/wp-content/uploads/2022/08/z3654822971020_8d6c00348d3eba26aa2ed4bd06d0ac0c-scaled.jpg") center / cover no-repeat;
  color: #fff;
}
.gv-expert-hero-inner {
  max-width: 40rem;
}
.gv-expert-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gv-gold-300);
}
.gv-expert-hero h1 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}
@media (min-width: 640px) {
  .gv-expert-hero h1 {
    font-size: 2.6rem;
  }
}
.gv-expert-lead {
  margin: 0.9rem 0 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}
.gv-expert-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

/* Stats bar */
.gv-expert-stats {
  background: var(--gv-stone-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.gv-expert-stats-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 768px) {
  .gv-expert-stats-inner {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gv-expert-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1.5rem 0.75rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}
.gv-expert-stat:last-child {
  border-right: none;
}
.gv-expert-stat strong {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gv-gold-400);
  line-height: 1;
}
.gv-expert-stat span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* Section */
.gv-expert-section {
  padding: 3rem 0;
  background: #fff;
}
.gv-expert-section--dark {
  background: var(--gv-stone-900);
  color: #fff;
}

/* Head */
.gv-expert-head {
  max-width: 36rem;
  margin: 0 auto 2rem;
  text-align: center;
}
.gv-expert-pill {
  display: inline-flex;
  margin: 0 0 0.85rem;
  border-radius: 9999px;
  background: var(--gv-stone-900);
  color: var(--gv-gold-400);
  padding: 0.35rem 0.8rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.gv-expert-pill--light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gv-gold-300);
}
.gv-expert-head h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--gv-stone-900);
}
.gv-expert-head--light h2 {
  color: #fff;
}
.gv-expert-head p {
  margin: 0.55rem 0 0;
  font-size: 0.925rem;
  line-height: 1.6;
  color: var(--gv-stone-600);
}
.gv-expert-head--light p {
  color: rgba(255, 255, 255, 0.75);
}

/* Intro grid */
.gv-expert-intro-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .gv-expert-intro-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.gv-expert-intro-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--gv-stone-200);
  background: #fff;
  box-shadow: 0 10px 28px -20px rgba(28, 25, 23, 0.35);
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.gv-expert-intro-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 182, 7, 0.45);
}
.gv-expert-intro-card--accent {
  background: linear-gradient(135deg, #fff9eb 0%, #ffefc2 100%);
  border-color: rgba(255, 182, 7, 0.35);
}
.gv-expert-intro-icon {
  display: inline-flex;
  width: 2.2rem;
  height: 2.2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  border-radius: 0.6rem;
  background: var(--gv-gold-50);
  font-size: 1.15rem;
}
.gv-expert-intro-card--accent .gv-expert-intro-icon {
  background: rgba(255, 255, 255, 0.7);
}
.gv-expert-intro-card h2 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gv-stone-900);
}
.gv-expert-intro-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gv-stone-600);
}

/* Role cards */
.gv-expert-roles-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .gv-expert-roles-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .gv-expert-roles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gv-expert-roles-grid .gv-expert-role-card:nth-child(4),
  .gv-expert-roles-grid .gv-expert-role-card:nth-child(5) {
    /* last two on second row */
  }
}
.gv-expert-role-card {
  padding: 1.25rem 1.2rem 1.35rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.gv-expert-role-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 182, 7, 0.45);
  background: rgba(255, 255, 255, 0.08);
}
.gv-expert-role-top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}
.gv-expert-role-icon {
  display: inline-flex;
  width: 2.2rem;
  height: 2.2rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.55rem;
  background: var(--gv-gold-400);
  font-size: 1.05rem;
}
.gv-expert-role-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gv-gold-300);
  background: rgba(255, 182, 7, 0.12);
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
}
.gv-expert-role-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}
.gv-expert-role-card p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* Quote */
.gv-expert-quote {
  max-width: 38rem;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  border-left: 4px solid var(--gv-gold-400);
  background: var(--gv-gold-50);
  text-align: center;
}
.gv-expert-quote p {
  margin: 0;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--gv-stone-600);
  font-weight: 500;
}

/* Band */
.gv-expert-band {
  background: var(--gv-gold-400);
  padding: 2rem 0;
}
.gv-expert-band-inner {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
@media (min-width: 768px) {
  .gv-expert-band-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.gv-expert-band h2 {
  margin: 0 0 0.3rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gv-stone-900);
}
.gv-expert-band p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(28, 25, 23, 0.8);
}
.gv-expert-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

/* ========== Policy Page ========== */
.gv-policy-hero {
  position: relative;
  padding: 3.25rem 0 3.75rem;
  background:
    linear-gradient(115deg, rgba(28, 25, 23, 0.96) 0%, rgba(41, 37, 36, 0.88) 50%, rgba(180, 83, 9, 0.6) 100%),
    url("https://goldenvisa.vn/wp-content/uploads/2022/07/visa-du-hoc-scaled.jpg") center / cover no-repeat;
  color: #fff;
  text-align: center;
}
.gv-policy-hero-inner {
  max-width: 42rem;
  margin: 0 auto;
}
.gv-policy-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gv-gold-300);
}
.gv-policy-hero h1 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}
.gv-policy-lead {
  margin: 0.9rem 0 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.gv-policy-section {
  padding: 4rem 0;
  background: var(--gv-stone-50, #fafaf9);
}
.gv-policy-container {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 900px) {
  .gv-policy-container {
    grid-template-columns: 1fr 300px;
  }
}
.gv-policy-content {
  background: #fff;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gv-stone-200);
}
.gv-policy-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gv-stone-900);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gv-stone-100);
}
.gv-policy-content h2:first-child {
  margin-top: 0;
}
.gv-policy-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gv-stone-800);
  margin: 1.5rem 0 0.75rem;
}
.gv-policy-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gv-stone-600);
  margin-bottom: 1.25rem;
}
.gv-policy-content ul {
  margin: 0 0 1.25rem 1.5rem;
  padding: 0;
  color: var(--gv-stone-600);
}
.gv-policy-content li {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.gv-policy-content strong {
  color: var(--gv-stone-900);
}

.gv-policy-sidebar {
  position: sticky;
  top: 6rem;
}
.gv-policy-widget {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gv-stone-200);
}
.gv-policy-widget h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gv-stone-900);
}
.gv-policy-widget p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gv-stone-600);
  margin-bottom: 1.25rem;
}
.gv-policy-widget ul {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}
.gv-policy-widget li {
  font-size: 0.95rem;
  color: var(--gv-stone-700);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.gv-policy-widget .gv-btn {
  width: 100%;
  text-align: center;
}

/* ========== Contact Page ========== */
.gv-contact-hero {
  position: relative;
  padding: 4rem 0 5rem;
  background:
    linear-gradient(135deg, rgba(28, 25, 23, 0.95) 0%, rgba(41, 37, 36, 0.85) 50%, rgba(180, 83, 9, 0.7) 100%),
    url("https://goldenvisa.vn/wp-content/uploads/2022/07/contact-bg-scaled.jpg") center / cover no-repeat;
  color: #fff;
  text-align: center;
}
.gv-contact-hero-inner {
  max-width: 48rem;
  margin: 0 auto;
}
.gv-contact-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gv-gold-300);
}
.gv-contact-hero h1 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}
.gv-contact-lead {
  margin: 1rem 0 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.gv-contact-section {
  padding: 4rem 0 5rem;
  background: #f9f9f9;
  position: relative;
}
.gv-contact-grid {
  display: grid;
  gap: 2rem;
  margin-top: -3rem; /* pull up over hero */
}
@media (min-width: 900px) {
  .gv-contact-grid {
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
  }
}

.gv-contact-form-box,
.gv-contact-info-box {
  background: #fff;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gv-stone-200);
}

.gv-contact-form-box h2,
.gv-contact-info-box h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gv-stone-900);
  margin: 0 0 0.5rem;
}
.gv-contact-form-box p {
  color: var(--gv-stone-600);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* Info List */
.gv-contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.gv-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.gv-ci-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gv-gold-50);
  border-radius: 0.75rem;
  font-size: 1.25rem;
}
.gv-ci-text {
  display: flex;
  flex-direction: column;
}
.gv-ci-text strong {
  font-size: 1rem;
  color: var(--gv-stone-900);
  margin-bottom: 0.25rem;
}
.gv-ci-text span,
.gv-ci-text a {
  font-size: 0.95rem;
  color: var(--gv-stone-600);
  line-height: 1.5;
}
.gv-ci-text a {
  text-decoration: none;
  transition: color 0.2s;
}
.gv-ci-text a:hover {
  color: var(--gv-gold-500);
}

/* CF7 custom styling overrides to match theme */
.gv-cf7-wrapper .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 1.25rem;
}
.gv-cf7-wrapper input[type="text"],
.gv-cf7-wrapper input[type="email"],
.gv-cf7-wrapper input[type="tel"],
.gv-cf7-wrapper textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--gv-stone-200);
  border-radius: 0.5rem;
  background: #fdfdfc;
  font-size: 0.95rem;
  color: var(--gv-stone-900);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.02);
  transition: all 0.2s;
}
.gv-cf7-wrapper input:focus,
.gv-cf7-wrapper textarea:focus {
  border-color: var(--gv-gold-400);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 182, 7, 0.15);
  background: #fff;
}
.gv-cf7-wrapper input.wpcf7-submit {
  background: var(--gv-gold-400);
  color: var(--gv-stone-900);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 4px 12px rgba(255, 182, 7, 0.3);
}
.gv-cf7-wrapper input.wpcf7-submit:hover {
  background: var(--gv-gold-300);
  transform: translateY(-2px);
}

/* ========== Premium Policy Page - Editorial Luxury ========== */
.gv-policy-premium {
  background: #fcfcfa;
  --pp-radius: 1rem;
  --pp-border: rgba(231, 229, 228, 0.9);
  --pp-shadow: 0 10px 40px -20px rgba(28, 25, 23, 0.18);
  --pp-shadow-lg: 0 20px 60px -24px rgba(28, 25, 23, 0.28);
}

/* Hero */
.gv-pp-hero {
  position: relative;
  padding: 4rem 0 4.5rem;
  background: var(--gv-stone-950);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.gv-pp-hero-bg {
  position: absolute;
  inset: -20%;
  z-index: -1;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(255, 182, 7, 0.22) 0%, transparent 60%),
    radial-gradient(80% 60% at 90% 0%, rgba(180, 83, 9, 0.28) 0%, transparent 70%),
    radial-gradient(100% 100% at 0% 100%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
}
.gv-pp-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  opacity: 0.5;
}
.gv-pp-hero-center {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}
.gv-pp-shield {
  position: relative;
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  display: grid;
  place-items: center;
}
.gv-pp-shield-icon {
  position: relative;
  z-index: 2;
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gv-gold-400), #f59e0b);
  border-radius: 1rem;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px -8px rgba(255, 182, 7, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  animation: gvShieldFloat 3.2s ease-in-out infinite;
}
.gv-pp-shield-ring {
  position: absolute;
  inset: 0;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 182, 7, 0.28);
  animation: gvRingPulse 2.8s ease-out infinite;
}
.gv-pp-shield-ring.is-2 {
  animation-delay: 0.9s;
  inset: -6px;
  border-color: rgba(255, 182, 7, 0.15);
}
@keyframes gvShieldFloat {
  0%, 100% { transform: translateY(0) }
  50% { transform: translateY(-4px) }
}
@keyframes gvRingPulse {
  0% { transform: scale(0.92); opacity: 0.8 }
  100% { transform: scale(1.25); opacity: 0 }
}
.gv-pp-kicker {
  margin: 0 0 0.8rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gv-gold-300);
}
.gv-pp-hero h1 {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #fff;
}
@media (min-width: 768px) {
  .gv-pp-hero h1 { font-size: 3rem; }
}
.gv-pp-lead {
  margin: 1rem auto 0;
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
}
.gv-pp-meta {
  margin: 1.75rem auto 0;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 1.1rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
}
.gv-pp-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-align: center;
  min-width: 4.5rem;
}
.gv-pp-meta-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.gv-pp-meta-item strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}
.gv-pp-meta-divider {
  width: 1px;
  height: 1.6rem;
  background: rgba(255,255,255,0.12);
}

/* Trust bar */
.gv-pp-trust {
  background: #fff;
  border-bottom: 1px solid var(--pp-border);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.gv-pp-trust-grid {
  display: grid;
  gap: 0;
}
@media (min-width: 800px) {
  .gv-pp-trust-grid { grid-template-columns: repeat(3, 1fr); }
}
.gv-pp-trust-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1.15rem 0.5rem;
}
@media (min-width: 800px) {
  .gv-pp-trust-item {
    padding: 1.1rem 1.25rem;
    border-right: 1px solid var(--pp-border);
  }
  .gv-pp-trust-item:last-child { border-right: 0; }
}
.gv-pp-trust-icon {
  flex-shrink: 0;
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: 0.6rem;
  background: var(--gv-gold-50);
  font-size: 1.1rem;
}
.gv-pp-trust-item div { min-width: 0; }
.gv-pp-trust-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gv-stone-900);
  letter-spacing: -0.01em;
}
.gv-pp-trust-item span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--gv-stone-600);
}

/* Layout */
.gv-pp-layout {
  display: grid;
  gap: 2rem;
  padding: 2.5rem 0 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .gv-pp-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 2.5rem;
    padding: 3rem 0 4rem;
  }
}
.gv-pp-main {
  min-width: 0;
}
.gv-pp-intro {
  margin-bottom: 2rem;
}
.gv-pp-intro-quote {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 1.4rem;
  border-radius: 0.9rem;
  background: var(--gv-stone-900);
  color: #fff;
  overflow: hidden;
}
.gv-pp-intro-quote::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gv-gold-400), #f59e0b);
}
.gv-pp-intro-quote p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
}
.gv-pp-intro-text {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--gv-stone-600);
}
.gv-pp-intro-text a {
  color: #b45309;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(180, 83, 9, 0.2);
}
.gv-pp-intro-text a:hover { border-bottom-color: #b45309; }

/* Sections */
.gv-pp-sections {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.gv-pp-sec {
  background: #fff;
  border: 1px solid var(--pp-border);
  border-radius: var(--pp-radius);
  box-shadow: var(--pp-shadow);
  overflow: hidden;
  scroll-margin-top: 6rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.gv-pp-sec:hover {
  box-shadow: var(--pp-shadow-lg);
  border-color: rgba(255, 182, 7, 0.32);
}
.gv-pp-sec.is-highlight {
  background: linear-gradient(180deg, #fff 0%, #fff9eb 100%);
  border-color: rgba(255, 182, 7, 0.28);
}
.gv-pp-sec-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem 1.25rem 0.9rem;
  border-bottom: 1px solid var(--gv-stone-100);
  align-items: start;
}
@media (min-width: 640px) {
  .gv-pp-sec-head { padding: 1.4rem 1.5rem 1rem; }
}
.gv-pp-sec-num {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.6rem;
  background: var(--gv-stone-900);
  color: var(--gv-gold-400);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.gv-pp-sec.is-highlight .gv-pp-sec-num {
  background: var(--gv-gold-400);
  color: var(--gv-stone-900);
}
.gv-pp-sec-title-wrap h2 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--gv-stone-900);
  line-height: 1.3;
}
.gv-pp-sec-icon { font-size: 1.1rem; }
.gv-pp-sec-title-wrap p {
  margin: 0.3rem 0 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--gv-stone-600);
}
.gv-pp-sec-body {
  padding: 1.15rem 1.25rem 1.35rem;
}
@media (min-width: 640px) {
  .gv-pp-sec-body { padding: 1.25rem 1.5rem 1.5rem; }
}

/* Cards grid */
.gv-pp-grid-2 {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 640px) {
  .gv-pp-grid-2 { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
.gv-pp-card {
  padding: 1rem 1.1rem;
  border-radius: 0.75rem;
  background: #fcfaf8;
  border: 1px solid var(--gv-stone-100);
}
.gv-pp-card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gv-stone-900);
}
.gv-pp-card ul {
  margin: 0;
  padding-left: 1.15rem;
}
.gv-pp-card li {
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--gv-stone-600);
  margin: 0.22rem 0;
}
.gv-pp-note {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.6rem;
  background: #f5f5f4;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--gv-stone-600);
  border-left: 3px solid var(--gv-gold-400);
}

/* Checklist */
.gv-pp-checklist {
  display: grid;
  gap: 0.7rem;
}
.gv-pp-check {
  display: grid;
  grid-template-columns: 1.6rem 1fr;
  gap: 0.6rem;
  align-items: start;
}
.gv-pp-check span {
  display: grid;
  place-items: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 9999px;
  background: var(--gv-gold-400);
  color: var(--gv-stone-900);
  font-size: 0.7rem;
  font-weight: 800;
  margin-top: 0.1rem;
}
.gv-pp-check p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gv-stone-600);
}
.gv-pp-check strong { color: var(--gv-stone-900); }

/* Table */
.gv-pp-table-wrap {
  overflow-x: auto;
  border-radius: 0.75rem;
  border: 1px solid var(--gv-stone-200);
}
.gv-pp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}
.gv-pp-table th {
  text-align: left;
  background: var(--gv-stone-900);
  color: #fff;
  font-weight: 600;
  padding: 0.7rem 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.gv-pp-table td {
  padding: 0.7rem 0.9rem;
  border-top: 1px solid var(--gv-stone-100);
  color: var(--gv-stone-600);
}
.gv-pp-table tr:nth-child(even) td { background: #fafaf9; }
.gv-pp-muted {
  margin-top: 0.9rem;
  font-size: 0.83rem;
  line-height: 1.6;
  color: #78716c;
}

/* Share grid */
.gv-pp-share-grid {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 640px) {
  .gv-pp-share-grid { grid-template-columns: 1fr 1fr; }
}
.gv-pp-share-card {
  padding: 1rem 1.1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--gv-stone-200);
  background: #fff;
}
.gv-pp-share-card.is-danger {
  background: #fef2f2;
  border-color: #fecaca;
}
.gv-pp-share-card h4 {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gv-stone-900);
}
.gv-pp-share-card p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--gv-stone-600);
}

/* Timeline */
.gv-pp-timeline {
  display: grid;
  gap: 0;
  position: relative;
  padding-left: 1.2rem;
}
.gv-pp-timeline::before {
  content: "";
  position: absolute;
  left: 0.28rem;
  top: 0.3rem;
  bottom: 0.3rem;
  width: 2px;
  background: linear-gradient(180deg, var(--gv-gold-400), rgba(255,182,7,0.15));
  border-radius: 9999px;
}
.gv-pp-tl-item {
  position: relative;
  padding: 0.65rem 0 0.65rem 0.75rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--gv-stone-600);
}
.gv-pp-tl-dot {
  position: absolute;
  left: -1.12rem;
  top: 1rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--gv-gold-400);
  box-shadow: 0 0 0 3px #fff, 0 0 0 4px rgba(255,182,7,0.25);
}
.gv-pp-tl-item strong { color: var(--gv-stone-900); }

/* Rights */
.gv-pp-rights {
  display: grid;
  gap: 0.65rem;
}
.gv-pp-right {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.7rem;
  align-items: start;
  padding: 0.75rem 0.9rem;
  border-radius: 0.6rem;
  background: #fafaf9;
  border: 1px solid var(--gv-stone-100);
}
.gv-pp-right span {
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 0.45rem;
  background: var(--gv-stone-900);
  color: var(--gv-gold-400);
  font-size: 0.68rem;
  font-weight: 800;
}
.gv-pp-right p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--gv-stone-600);
}
.gv-pp-right strong { color: var(--gv-stone-900); }
.gv-pp-action-box {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 0.75rem;
  background: var(--gv-gold-50);
  border: 1px solid rgba(255,182,7,0.25);
}
@media (min-width: 600px) {
  .gv-pp-action-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.gv-pp-action-box h4 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gv-stone-900);
}
.gv-pp-action-box p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--gv-stone-600);
}
.gv-pp-action-box a { font-weight: 600; }

/* Security grid */
.gv-pp-security-grid {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 640px) {
  .gv-pp-security-grid { grid-template-columns: 1fr 1fr; }
}
.gv-pp-sec-item {
  padding: 0.9rem 1rem;
  border-radius: 0.7rem;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 4px 16px -12px rgba(0,0,0,0.15);
}
.gv-pp-sec-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gv-stone-900);
  margin-bottom: 0.25rem;
}
.gv-pp-sec-item span {
  font-size: 0.83rem;
  line-height: 1.5;
  color: var(--gv-stone-600);
}

/* Contact box */
.gv-pp-contact-box {
  display: grid;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: 0.8rem;
  background: var(--gv-stone-900);
  color: #fff;
}
.gv-pp-contact-info p {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
}
.gv-pp-contact-info p:first-child { color: #fff; font-weight: 700; font-size: 0.95rem; }
.gv-pp-contact-info a { color: var(--gv-gold-300) !important; text-decoration: none; }
.gv-pp-contact-info a:hover { color: var(--gv-gold-400) !important; }
.gv-pp-contact-hours {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}

/* Final */
.gv-pp-final {
  margin-top: 0.5rem;
  padding: 1.5rem 1.25rem;
  border-radius: var(--pp-radius);
  background: var(--gv-stone-900);
  color: #fff;
  text-align: center;
}
@media (min-width: 640px) {
  .gv-pp-final { padding: 1.8rem 2rem; }
}
.gv-pp-final h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
  font-weight: 750;
  color: var(--gv-gold-300);
}
.gv-pp-final p {
  margin: 0 auto;
  max-width: 38rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
}
.gv-pp-final strong { color: #fff; }
.gv-pp-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.2rem;
}
.gv-pp-wp-content {
  margin-top: 1.5rem;
  padding: 1.2rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px dashed var(--gv-stone-200);
}
.gv-pp-wp-content h3 {
  margin: 0 0 0.8rem;
  font-size: 0.95rem;
  font-weight: 700;
}

/* Sidebar */
.gv-pp-side {
  position: relative;
}
@media (min-width: 1024px) {
  .gv-pp-side-inner {
    position: sticky;
    top: 5.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}
@media (max-width: 1023px) {
  .gv-pp-side-inner { display: grid; gap: 1rem; }
}
.gv-pp-toc, .gv-pp-badge, .gv-pp-widget, .gv-pp-related {
  background: #fff;
  border: 1px solid var(--pp-border);
  border-radius: var(--pp-radius);
  box-shadow: var(--pp-shadow);
  overflow: hidden;
}
.gv-pp-toc h4, .gv-pp-badge strong, .gv-pp-widget h4, .gv-pp-related h4 {
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: -0.01em;
}
.gv-pp-toc {
  padding: 1.1rem 1.1rem 0.9rem;
}
.gv-pp-toc h4 {
  margin: 0 0 0.8rem;
  color: var(--gv-stone-900);
}
.gv-pp-toc nav {
  display: grid;
  gap: 0.15rem;
}
.gv-pp-toc-link {
  display: grid;
  grid-template-columns: 1.9rem 1fr;
  gap: 0.4rem;
  align-items: center;
  padding: 0.45rem 0.5rem;
  border-radius: 0.5rem;
  text-decoration: none !important;
  color: var(--gv-stone-600) !important;
  transition: background 0.15s, color 0.15s;
  font-size: 0.84rem;
  line-height: 1.35;
}
.gv-pp-toc-link:hover {
  background: var(--gv-gold-50);
  color: var(--gv-stone-900) !important;
}
.gv-pp-toc-link.is-active {
  background: var(--gv-stone-900);
  color: #fff !important;
}
.gv-pp-toc-link.is-active .gv-pp-toc-num {
  background: var(--gv-gold-400);
  color: var(--gv-stone-900);
}
.gv-pp-toc-num {
  display: grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 0.35rem;
  background: var(--gv-stone-100);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.gv-pp-toc-progress {
  margin-top: 0.9rem;
  height: 3px;
  background: var(--gv-stone-100);
  border-radius: 9999px;
  overflow: hidden;
}
.gv-pp-toc-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gv-gold-400), #f59e0b);
  transition: width 0.1s linear;
}

/* Badge */
.gv-pp-badge {
  padding: 1.1rem;
}
.gv-pp-badge-head {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin-bottom: 0.9rem;
}
.gv-pp-badge-head span:first-child {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 0.5rem;
  background: var(--gv-gold-400);
  font-size: 1rem;
}
.gv-pp-badge-head div { line-height: 1.2; }
.gv-pp-badge-head strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gv-stone-900);
}
.gv-pp-badge-head div span {
  font-size: 0.72rem;
  color: var(--gv-stone-600);
}
.gv-pp-badge ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.gv-pp-badge li {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--gv-stone-600);
}
.gv-pp-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.15);
  flex-shrink: 0;
}
.gv-pp-badge-foot {
  margin-top: 0.9rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--gv-stone-100);
  display: flex;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gv-stone-500);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Widget */
.gv-pp-widget {
  padding: 1.1rem;
}
.gv-pp-widget h4 { margin: 0 0 0.5rem; color: var(--gv-stone-900); }
.gv-pp-widget p {
  margin: 0 0 0.8rem;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--gv-stone-600);
}
.gv-pp-widget ul {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}
.gv-pp-widget li {
  font-size: 0.84rem;
  color: var(--gv-stone-700);
  margin: 0.3rem 0;
}

/* Related */
.gv-pp-related {
  padding: 1.1rem;
}
.gv-pp-related h4 { margin: 0 0 0.7rem; color: var(--gv-stone-900); }
.gv-pp-related a {
  display: block;
  padding: 0.45rem 0;
  font-size: 0.84rem;
  color: var(--gv-stone-600) !important;
  text-decoration: none !important;
  border-bottom: 1px solid var(--gv-stone-100);
  transition: color 0.15s, padding-left 0.15s;
}
.gv-pp-related a:last-child { border-bottom: 0; }
.gv-pp-related a:hover {
  color: var(--gv-stone-900) !important;
  padding-left: 0.25rem;
}

/* Band */
.gv-pp-band {
  background: var(--gv-gold-400);
  padding: 2.2rem 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.gv-pp-band-inner {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
@media (min-width: 768px) {
  .gv-pp-band-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.gv-pp-band h2 {
  margin: 0 0 0.3rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gv-stone-900);
}
.gv-pp-band p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(28,25,23,0.75);
  max-width: 32rem;
}
.gv-pp-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* Responsive tweaks */
@media (max-width: 640px) {
  .gv-pp-hero { padding: 3rem 0 3.2rem; }
  .gv-pp-hero h1 { font-size: 1.9rem; }
  .gv-pp-meta { gap: 0.6rem; padding: 0.5rem 0.8rem; }
}

