/* ============================================
   VayTiềnGóp – main.css
   Design: Mint/Blue Financial Web-App Theme
   ============================================ */

/* --- Google Fonts via @import ------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700;800;900&family=Sora:wght@400;600;700;800&display=swap');

/* --- CSS Variables ------------------------------------------------------ */
:root {
  --bg: #f4f7fb;
  --white: #ffffff;
  --text: #0f1f33;
  --muted: #64748b;
  --line: #e2eaf4;
  --primary: #0ea895;
  --primary-dark: #0b8b7a;
  --primary-light: #edfaf7;
  --blue: #2563eb;
  --blue-light: #eff6ff;
  --orange: #f97316;
  --red: #dc2626;
  --green: #16a34a;
  --dark: #08121f;
  --dark-2: #101f34;
  --dark-3: #192d45;
  --shadow-sm: 0 2px 8px rgba(14,34,56,.07);
  --shadow: 0 8px 32px rgba(14,34,56,.10);
  --shadow-lg: 0 24px 64px rgba(14,34,56,.14);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --font: 'Be Vietnam Pro', system-ui, sans-serif;
  --font-display: 'Be Vietnam Pro', system-ui, sans-serif;
  --transition: .22s cubic-bezier(.4,0,.2,1);
  --clr-bg: var(--bg);
  --clr-surface: var(--white);
  --clr-text: var(--text);
  --clr-text-muted: var(--muted);
  --clr-border: var(--line);
  --clr-primary: var(--primary);
  --clr-mint-light: var(--primary-light);
}

/* --- Reset & Base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
input, select, textarea { font-family: inherit; }
::selection { background: var(--primary); color: white; }

/* --- Container ---------------------------------------------------------- */
.container { width: min(1480px, calc(100% - 48px)); margin-inline: auto; }

/* --- Topbar ------------------------------------------------------------- */
.vtg-topbar {
  background: var(--dark);
  color: #c5d5e8;
  font-size: 13px;
  font-weight: 500;
}
.vtg-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 9px 0;
  flex-wrap: wrap;
}
.vtg-topbar a { color: #7bc8e0; }
.vtg-topbar a:hover { color: white; }

.vtg-topbar { display: none !important; }

/* --- Header ------------------------------------------------------------- */
.vtg-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--transition);
}
.vtg-header.scrolled { box-shadow: var(--shadow); }
.vtg-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.vtg-affiliate-disclosure {
  position: relative;
  z-index: 90;
  border-bottom: 1px solid rgba(14,168,149,.16);
  background: #f2fbf8;
  color: #0f3d39;
  font-size: 13px;
  font-weight: 700;
}

.vtg-affiliate-disclosure .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 42px;
  padding: 8px 0;
  text-align: center;
  flex-wrap: wrap;
}

.vtg-affiliate-disclosure a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  background: #fff;
  color: #0b8b7a;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 6px 16px rgba(14,34,56,.06);
}

.vtg-affiliate-disclosure a:hover {
  color: #07111f;
}

/* Logo */
.vtg-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.04em;
  color: var(--text);
  transform: translateX(clamp(120px, 13.5vw, 255px));
}
.vtg-logo img {
  display: block;
  height: 46px;
  max-width: 210px;
  object-fit: contain;
  width: auto;
}
.vtg-logo-icon {
  width: 40px; height: 40px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--primary), var(--blue));
  display: grid;
  place-items: center;
  color: white;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(14,168,149,.3);
  flex-shrink: 0;
}

/* Desktop menu */
.vtg-menu {
  display: flex;
  gap: 4px;
  align-items: center;
}
.vtg-menu a {
  font-weight: 700;
  font-size: 14px;
  color: #3a4f68;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background var(--transition), color var(--transition);
}
.vtg-menu a:hover, .vtg-menu a.current { background: var(--primary-light); color: var(--primary-dark); }

/* Nav actions */
.vtg-nav-actions { display: flex; align-items: center; gap: 8px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; font-weight: 800; font-size: 14px;
  padding: 10px 18px; transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  white-space: nowrap; cursor: pointer; border: 0;
  font-family: var(--font);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #19c8a8);
  color: white;
  box-shadow: 0 8px 24px rgba(14,168,149,.28);
}
.btn-primary:hover { box-shadow: 0 14px 32px rgba(14,168,149,.38); filter: brightness(1.05); }
.btn-dark { background: var(--dark); color: white; }
.btn-dark:hover { background: var(--dark-2); }
.btn-soft { background: var(--primary-light); color: var(--primary-dark); }
.btn-soft:hover { background: #d4f5ef; }
.btn-outline { background: transparent; border: 2px solid var(--line); color: var(--text); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-block { width: 100%; }

/* Mobile menu toggle */
.vtg-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.vtg-mobile-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.vtg-mobile-nav {
  display: none;
  background: white;
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
.vtg-mobile-nav.open { display: block; }
.vtg-mobile-nav a {
  display: block; padding: 12px 16px;
  font-weight: 700; font-size: 15px; color: var(--text);
  border-bottom: 1px solid var(--line);
}
.vtg-mobile-nav a:last-child { border-bottom: 0; }
.vtg-mobile-nav .btn { margin: 12px 16px 0; display: flex; }

/* --- Hero --------------------------------------------------------------- */
.vtg-hero {
  padding: 60px 0 50px;
  background:
    radial-gradient(circle at 5% 20%, #c9f7ef 0, transparent 30%),
    radial-gradient(circle at 85% 5%, #dae8ff 0, transparent 28%),
    radial-gradient(circle at 50% 100%, #f0f7ff 0, transparent 40%);
  position: relative; overflow: hidden;
}
.vtg-hero::before {
  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='%230ea895' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.vtg-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: white; border: 1px solid var(--line);
  font-size: 13px; font-weight: 800; color: var(--primary-dark);
  box-shadow: var(--shadow-sm); margin-bottom: 20px;
}
.vtg-hero h1 {
  font-family: var(--font-display);
  font-size: 54px; line-height: 1.06;
  letter-spacing: -.055em; font-weight: 800;
  margin-bottom: 20px;
}
.vtg-hero h1 span { color: var(--primary); }
.vtg-hero .lead {
  font-size: 17px; line-height: 1.8;
  color: var(--muted); max-width: 540px; margin-bottom: 28px;
}
.vtg-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

/* Trust cards */
.vtg-trust { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.vtg-trust-card {
  background: rgba(255,255,255,.85);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}
.vtg-trust-card strong { display: block; font-size: 22px; font-weight: 900; font-family: var(--font-display); }
.vtg-trust-card span { font-size: 12px; color: var(--muted); font-weight: 700; margin-top: 2px; display: block; }

/* Loan calculator card */
.vtg-calc-card {
  background: rgba(255,255,255,.95);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 6px;
  box-shadow: var(--shadow-lg);
}
.vtg-loan-box {
  background: linear-gradient(145deg, var(--dark) 0%, var(--dark-3) 100%);
  border-radius: 28px;
  padding: 26px;
  position: relative; overflow: hidden;
  color: white;
}
.vtg-loan-box::before {
  content: '';
  position: absolute; right: -70px; top: -80px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(14,168,149,.18);
}
.vtg-loan-box::after {
  content: '';
  position: absolute; left: -40px; bottom: -60px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(37,99,235,.12);
}
.vtg-loan-box h2 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  letter-spacing: -.04em; margin-bottom: 6px;
}
.vtg-loan-box > p { color: #b0c0d8; font-size: 14px; line-height: 1.6; }

.vtg-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; position: relative; z-index: 1; }
.vtg-field {
  background: white; border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm); padding: 12px 14px;
  color: var(--dark); font-weight: 700; font-size: 14px;
  width: 100%; font-family: var(--font);
  -webkit-appearance: none;
}
.vtg-field:focus { outline: 2px solid var(--primary); outline-offset: 1px; }
.vtg-field::placeholder { color: #8096b0; font-weight: 600; }

/* Range slider */
.vtg-range-wrap {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 14px; margin-top: 12px;
  position: relative; z-index: 1;
}
.vtg-range-row {
  display: flex; justify-content: space-between;
  color: #c5d5e8; font-weight: 800; font-size: 14px; margin-bottom: 10px;
}
input[type=range] {
  -webkit-appearance: none; width: 100%; height: 4px;
  border-radius: 2px; background: rgba(14,168,149,.3); outline: none;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 18px; height: 18px;
  border-radius: 50%; background: var(--primary);
  cursor: pointer; border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

/* Summary */
.vtg-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; position: relative; z-index: 1; }
.vtg-sum-item {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm); padding: 14px;
}
.vtg-sum-item small { display: block; color: #8fa8c4; font-size: 12px; font-weight: 700; margin-bottom: 4px; }
.vtg-sum-item b { font-size: 20px; font-family: var(--font-display); }

.vtg-calc-note { font-size: 11px; color: #7a90aa; line-height: 1.6; margin-top: 12px; position: relative; z-index: 1; }
.vtg-partners { display: flex; align-items: center; gap: 10px; padding: 14px 10px 8px; flex-wrap: wrap; }
.vtg-partner-tag {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 10px; padding: 8px 12px;
  font-weight: 800; font-size: 13px; color: #3a4f68;
}

/* --- Section layout ----------------------------------------------------- */
section { padding: 72px 0; }
.section-bg { background: #eef4fa; }
.section-dark { background: var(--dark); color: white; }

.section-head { margin-bottom: 32px; }
.section-head.flex { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 800;
  letter-spacing: -.05em; line-height: 1.15;
}
.section-head p { color: var(--muted); line-height: 1.75; max-width: 520px; font-size: 15px; margin-top: 10px; }

/* --- Category cards ----------------------------------------------------- */
.vtg-categories { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.vtg-cat {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none; color: inherit;
}
.vtg-cat:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.vtg-cat-icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: grid; place-items: center; font-size: 26px;
  background: linear-gradient(135deg, var(--primary-light), #e0f2fe);
  margin-bottom: 16px;
}
.vtg-cat h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; line-height: 1.3; }
.vtg-cat p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.vtg-tag-row { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }
.vtg-tag {
  background: var(--bg); border-radius: 999px;
  padding: 5px 10px; font-size: 12px; font-weight: 800; color: #52657d;
}

/* --- Offer cards -------------------------------------------------------- */
.vtg-market-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 20px; align-items: start; }
.vtg-offer-list { display: grid; gap: 14px; }
.vtg-offer {
  display: grid; grid-template-columns: 72px 1fr auto;
  gap: 18px; align-items: center;
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 18px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
  text-decoration: none; color: inherit;
}
.vtg-offer:hover { box-shadow: var(--shadow); }
.vtg-brand {
  width: 64px; height: 64px; border-radius: 18px;
  background: linear-gradient(135deg, var(--blue-light), var(--primary-light));
  display: grid; place-items: center;
  font-weight: 900; font-size: 12px; color: var(--blue);
  text-align: center; padding: 4px; line-height: 1.2;
  flex-shrink: 0;
}
.vtg-brand img { width: 100%; height: 100%; object-fit: contain; border-radius: 14px; }
.vtg-offer-info h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.vtg-offer-meta { display: flex; gap: 10px; flex-wrap: wrap; font-size: 13px; font-weight: 700; color: var(--muted); }
.vtg-verified { color: var(--green); font-weight: 900; }
.vtg-offer-rate { text-align: right; white-space: nowrap; }
.vtg-offer-rate strong { display: block; font-size: 20px; font-weight: 900; font-family: var(--font-display); color: var(--dark); }
.vtg-offer-rate small { font-size: 12px; color: var(--muted); font-weight: 600; }

/* Side panel / Trust filter */
.vtg-side-panel {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow);
  position: sticky; top: 80px;
}
.vtg-side-panel h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  letter-spacing: -.04em; margin-bottom: 16px;
}
.vtg-check {
  display: flex; gap: 12px; margin-bottom: 14px;
  color: #3a4f68; font-weight: 600; font-size: 14px; line-height: 1.55;
}
.vtg-check::before {
  content: '✓';
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--primary); color: white;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 900; margin-top: 1px;
}

/* --- Steps -------------------------------------------------------------- */
.vtg-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.vtg-step {
  background: linear-gradient(145deg, var(--dark-2), var(--dark-3));
  border-radius: var(--radius-lg); padding: 26px;
  color: white; position: relative; overflow: hidden;
}
.vtg-step::before {
  content: '';
  position: absolute; right: -30px; top: -30px;
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(14,168,149,.12);
}
.vtg-step-num { font-size: 48px; font-weight: 900; color: rgba(255,255,255,.15); font-family: var(--font-display); line-height: 1; }
.vtg-step h3 { font-size: 17px; font-weight: 800; margin: 10px 0 8px; }
.vtg-step p { color: #aabdd4; line-height: 1.65; font-size: 14px; }

/* --- Audience ----------------------------------------------------------- */
.vtg-audience { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.vtg-aud-card {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius-xl); padding: 30px;
  box-shadow: var(--shadow);
}
.vtg-aud-card h3 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 800;
  letter-spacing: -.04em; margin: 12px 0 14px;
}
.vtg-aud-card .lead { font-size: 15px; color: var(--muted); margin-bottom: 0; }
.vtg-benefits { display: grid; gap: 10px; margin-top: 20px; }
.vtg-benefit {
  padding: 12px 14px; border-radius: var(--radius-sm);
  background: var(--bg); color: #3a4f68; font-weight: 700; font-size: 14px;
}

/* --- Transparency table ------------------------------------------------- */
.vtg-table-wrap {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow);
}
.vtg-table-wrap table { width: 100%; border-collapse: collapse; min-width: 700px; }
.vtg-table-wrap th, .vtg-table-wrap td {
  padding: 16px 18px; text-align: left;
  border-bottom: 1px solid var(--line);
}
.vtg-table-wrap th {
  background: var(--bg); font-size: 12px;
  text-transform: uppercase; letter-spacing: .06em;
  color: #52657d; font-weight: 800;
}
.vtg-table-wrap td { font-weight: 700; color: #2d4060; }
.vtg-table-wrap td small { display: block; color: var(--muted); font-weight: 600; font-size: 12px; margin-top: 3px; }
.vtg-table-wrap tr:last-child td { border-bottom: 0; }
.vtg-table-wrap tr:hover td { background: #fafcff; }
.vtg-table-overflow { overflow-x: auto; }
.vtg-table-note { color: #6b7c91; line-height: 1.75; font-size: 14px; margin-top: 16px; padding: 16px; background: #fffbf0; border: 1px solid #fde68a; border-radius: var(--radius-sm); }

/* --- Blog/Articles ------------------------------------------------------ */
.vtg-blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.vtg-post {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none; color: inherit;
}
.vtg-post:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.vtg-post-thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--primary-light), var(--blue-light));
  display: grid; place-items: center; font-size: 48px;
  position: relative; overflow: hidden;
}
.vtg-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vtg-post-body { padding: 22px; }
.vtg-post-kicker { color: var(--primary-dark); font-weight: 900; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.vtg-post-body h3 { font-size: 17px; font-weight: 800; line-height: 1.35; margin-bottom: 10px; }
.vtg-post-body p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.vtg-post-meta { display: flex; gap: 14px; font-size: 12px; color: var(--muted); font-weight: 600; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }

/* --- CTA section -------------------------------------------------------- */
.vtg-cta {
  background: linear-gradient(135deg, var(--dark) 0%, #0d2d52 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid; grid-template-columns: 1.2fr .8fr;
  gap: 32px; align-items: center;
  position: relative; overflow: hidden;
}
.vtg-cta::before {
  content: '';
  position: absolute; right: -100px; top: -100px;
  width: 350px; height: 350px; border-radius: 50%;
  background: rgba(14,168,149,.1);
}
.vtg-cta h2 {
  font-family: var(--font-display);
  color: white; font-size: 36px; font-weight: 800;
  letter-spacing: -.05em; line-height: 1.15; margin-bottom: 14px;
}
.vtg-cta p { color: #aec0d8; line-height: 1.75; font-size: 15px; }
.vtg-cta-form {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 24px; position: relative; z-index: 1;
}
.vtg-cta-form input, .vtg-cta-form select {
  width: 100%;
  border: 0; border-radius: var(--radius-sm);
  padding: 13px 16px; margin-bottom: 10px;
  font-weight: 700; font-size: 14px; font-family: var(--font);
  color: var(--dark); background: white;
}
.vtg-cta-form input:focus, .vtg-cta-form select:focus { outline: 2px solid var(--primary); }
.vtg-cta-note { font-size: 12px; color: #7a90aa; line-height: 1.6; margin-top: 10px; }
.vtg-form-success {
  display: none; text-align: center; color: white;
  padding: 20px 0;
}
.vtg-form-success .icon { font-size: 40px; margin-bottom: 10px; }
.vtg-form-success h4 { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.vtg-form-success p { color: #aec0d8; font-size: 14px; }

/* --- Footer ------------------------------------------------------------- */
.vtg-footer { background: var(--dark); color: #9fb0c6; padding: 60px 0 24px; }
.vtg-footer-grid { display: grid; grid-template-columns: 1.3fr repeat(4,1fr); gap: 32px; }
.vtg-footer h3, .vtg-footer h4 { color: white; font-weight: 800; margin-bottom: 16px; font-size: 15px; }
.vtg-footer p { color: #7a90aa; line-height: 1.85; font-size: 14px; }
.vtg-footer a { color: #7a90aa; font-size: 14px; line-height: 2; display: block; font-weight: 500; }
.vtg-footer a:hover { color: white; }
.vtg-footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.vtg-footer-logo img { display: block; height: 44px; width: auto; }
.vtg-footer-logo span { font-size: 18px; font-weight: 900; color: white; font-family: var(--font-display); }
.vtg-footer-copyright {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 36px; padding-top: 20px;
  color: #5a6f85; font-size: 13px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}

/* --- Archive / single pages --------------------------------------------- */
.vtg-archive-header { padding: 40px 0 30px; }
.vtg-archive-header h1 {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 800;
  letter-spacing: -.05em;
}
.vtg-filter-bar {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px;
  box-shadow: var(--shadow-sm); margin-bottom: 28px;
  display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-end;
}
.vtg-filter-field { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 160px; }
.vtg-filter-field label { font-size: 12px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.vtg-filter-field select, .vtg-filter-field input {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 10px 12px;
  font-weight: 700; font-size: 14px; font-family: var(--font);
  color: var(--dark); -webkit-appearance: none;
}

/* Single dich-vu page */
.vtg-service-hero {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius-xl); padding: 32px;
  box-shadow: var(--shadow); margin-bottom: 24px;
}
.vtg-service-hero-header { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 24px; flex-wrap: wrap; }
.vtg-service-logo { width: 80px; height: 80px; border-radius: 20px; object-fit: contain; border: 1px solid var(--line); }
.vtg-service-logo-placeholder {
  width: 80px; height: 80px; border-radius: 20px;
  background: linear-gradient(135deg, var(--blue-light), var(--primary-light));
  display: grid; place-items: center; font-weight: 900; font-size: 13px; color: var(--blue);
}
.vtg-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 800;
}
.vtg-badge-verified { background: #dcfce7; color: var(--green); }
.vtg-badge-pending { background: #fff7ed; color: var(--orange); }
.vtg-badge-inactive { background: #fee2e2; color: var(--red); }
.vtg-service-stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 20px;
}
.vtg-stat {
  background: var(--bg); border-radius: var(--radius-sm); padding: 14px;
  text-align: center;
}
.vtg-stat strong { display: block; font-size: 20px; font-family: var(--font-display); font-weight: 900; color: var(--dark); }
.vtg-stat span { font-size: 12px; color: var(--muted); font-weight: 700; }

/* Content area */
.vtg-content-grid { display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start; }
.vtg-content-body { background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.vtg-content-body h2 { font-size: 20px; font-weight: 800; margin-bottom: 14px; font-family: var(--font-display); }
.vtg-content-body h3 { font-size: 17px; font-weight: 800; margin: 20px 0 10px; }
.vtg-content-body p { color: var(--muted); line-height: 1.8; margin-bottom: 12px; }
.vtg-content-body ul { list-style: disc; padding-left: 20px; color: var(--muted); line-height: 2; }
.vtg-content-body strong { color: var(--dark); }

/* Alert boxes */
.vtg-alert {
  border-radius: var(--radius-sm); padding: 14px 16px;
  font-size: 14px; font-weight: 600; line-height: 1.6; margin-top: 16px;
  border-left: 4px solid;
}
.vtg-alert-warning { background: #fffbeb; border-color: #f59e0b; color: #78350f; }
.vtg-alert-info { background: #eff6ff; border-color: var(--blue); color: #1e3a8a; }

/* --- Lead form sidebar -------------------------------------------------- */
.vtg-lead-form {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow);
  position: sticky; top: 80px;
}
.vtg-lead-form h3 { font-size: 20px; font-weight: 800; margin-bottom: 4px; font-family: var(--font-display); }
.vtg-lead-form p { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.vtg-form-row { margin-bottom: 12px; }
.vtg-form-row label { display: block; font-size: 12px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.vtg-form-control {
  width: 100%; background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 11px 14px;
  font-weight: 700; font-size: 14px; font-family: var(--font);
  color: var(--dark); transition: border-color var(--transition);
  -webkit-appearance: none;
}
.vtg-form-control:focus { outline: none; border-color: var(--primary); background: white; }

/* --- FAQ ---------------------------------------------------------------- */
.vtg-faq-item { border-bottom: 1px solid var(--line); }
.vtg-faq-q {
  width: 100%; text-align: left; padding: 18px 0;
  font-weight: 800; font-size: 16px; color: var(--dark);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; background: none; border: 0; cursor: pointer;
  font-family: var(--font);
}
.vtg-faq-q::after { content: '+'; font-size: 22px; color: var(--primary); flex-shrink: 0; transition: transform var(--transition); }
.vtg-faq-q.open::after { transform: rotate(45deg); }
.vtg-faq-a { display: none; padding-bottom: 16px; color: var(--muted); line-height: 1.8; font-size: 15px; }
.vtg-faq-a.open { display: block; }

/* --- Breadcrumb --------------------------------------------------------- */
.vtg-breadcrumb { padding: 16px 0; font-size: 13px; font-weight: 700; }
.vtg-breadcrumb a { color: var(--muted); }
.vtg-breadcrumb a:hover { color: var(--primary); }
.vtg-breadcrumb span { color: var(--muted); margin: 0 8px; }
.vtg-breadcrumb .current { color: var(--primary-dark); }

/* --- Page header -------------------------------------------------------- */
.vtg-page-hero {
  padding: 48px 0 36px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--blue-light) 100%);
  border-bottom: 1px solid var(--line);
}
.vtg-page-hero h1 {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 800;
  letter-spacing: -.05em; margin-bottom: 10px;
}
.vtg-page-hero p { color: var(--muted); font-size: 16px; max-width: 560px; }

/* --- Search ------------------------------------------------------------- */
.vtg-search-form { display: flex; gap: 10px; max-width: 540px; }
.vtg-search-form input {
  flex: 1; padding: 13px 18px; border: 1px solid var(--line);
  border-radius: 999px; font-size: 15px; font-family: var(--font);
  background: white; outline: none;
}
.vtg-search-form input:focus { border-color: var(--primary); }

/* --- 404 ---------------------------------------------------------------- */
.vtg-404 { text-align: center; padding: 100px 0; }
.vtg-404 h1 { font-size: 120px; font-weight: 900; font-family: var(--font-display); color: var(--primary-light); line-height: 1; }
.vtg-404 h2 { font-size: 28px; font-weight: 800; margin-bottom: 14px; }
.vtg-404 p { color: var(--muted); margin-bottom: 28px; }

/* --- Pagination --------------------------------------------------------- */
.vtg-pagination { display: flex; gap: 8px; justify-content: center; padding-top: 24px; flex-wrap: wrap; }
.vtg-pagination a, .vtg-pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; border-radius: 12px;
  padding: 0 13px;
  font-weight: 800; font-size: 14px;
  border: 1px solid var(--line); background: white; color: var(--text);
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.vtg-pagination a:hover, .vtg-pagination .current {
  background: var(--primary); color: white; border-color: var(--primary);
}

/* --- Utilities ---------------------------------------------------------- */
.mt-0 { margin-top: 0 !important; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.font-mono { font-family: var(--font-display); }

/* --- Affiliate comparison homepage ------------------------- */
.aff-home { background: var(--bg); }
.aff-hero { padding: 34px 0 28px; }
.aff-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 430px); gap: 22px; align-items: stretch; }
.aff-hero-main { position: relative; overflow: hidden; min-height: clamp(500px, 62vh, 720px); display: flex; flex-direction: column; justify-content: center; border: 1px solid var(--line); border-radius: 32px; background: linear-gradient(135deg, #fff 0%, #f2fbf8 48%, #eef5ff 100%); box-shadow: var(--shadow); padding: clamp(30px, 4vw, 58px); }
.aff-hero-main::after { content: ""; position: absolute; right: -70px; bottom: -90px; width: 260px; height: 260px; border-radius: 50%; border: 44px solid rgba(14,168,149,.08); }
.aff-kicker { position: relative; z-index: 1; width: fit-content; display: inline-flex; gap: 8px; align-items: center; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.86); padding: 8px 12px; color: var(--primary-dark); font-size: 12px; font-weight: 700; box-shadow: var(--shadow-sm); }
.aff-hero h1 { position: relative; z-index: 1; max-width: 980px; margin: 18px 0 14px; color: var(--dark); font: 700 clamp(2.35rem, 5.4vw, 5rem)/1.12 var(--font-display); letter-spacing: 0; text-wrap: balance; }
.aff-lead { position: relative; z-index: 1; max-width: 760px; margin: 0; color: #51627a; font-size: 17px; line-height: 1.82; font-weight: 500; }
.aff-hero-cta { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.aff-trust-strip { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 24px; }
.aff-trust-strip div { border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.82); padding: 13px; }
.aff-trust-strip b { display: block; color: var(--dark); font: 700 22px var(--font-display); }
.aff-trust-strip span { display: block; color: var(--muted); font-size: 11px; font-weight: 600; line-height: 1.5; }
.aff-visual { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: 660px; margin-top: 24px; }
.aff-visual div { min-height: 92px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.82); padding: 13px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: var(--shadow-sm); }
.aff-visual span { width: 34px; height: 34px; border-radius: 12px; display: grid; place-items: center; background: #eaf8f1; color: var(--primary-dark); }
.aff-visual svg { width: 18px; height: 18px; }
.aff-visual b { color: var(--dark); font-size: 14px; font-weight: 700; line-height: 1.35; }
.aff-visual small { color: var(--muted); font-size: 11px; font-weight: 600; line-height: 1.45; }
.aff-quick-box { border: 1px solid #162b47; border-radius: 32px; background: #081527; color: #fff; padding: 24px; box-shadow: var(--shadow); align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
.aff-quick-box h2 { margin: 0 0 7px; font: 700 24px var(--font-display); letter-spacing: 0; color: #fff; line-height: 1.3; }
.aff-quick-box p { margin: 0; color: #b9c7d8; font-size: 13px; line-height: 1.7; font-weight: 500; }
.aff-quick-form { display: grid; gap: 11px; margin-top: 17px; }
.aff-quick-form label { display: block; color: #cbd9ea; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; }
.aff-quick-form input, .aff-quick-form select { width: 100%; min-height: 46px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: #0e2138; color: #fff; padding: 10px 12px; outline: none; font-weight: 600; }
.aff-estimate { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 2px 0; }
.aff-estimate div { border: 1px solid rgba(255,255,255,.12); border-radius: 15px; background: #0e2138; padding: 12px; }
.aff-estimate small { display: block; color: #9fb1c7; font-size: 11px; font-weight: 600; }
.aff-estimate b { display: block; margin-top: 3px; font: 700 20px var(--font-display); color: #fff; line-height: 1.3; }
.aff-note { color: #93a6bf; font-size: 12px; line-height: 1.6; margin: 12px 0 0; }
.aff-section { padding: 46px 0; }
.aff-muted { background: #edf3f7; }
.aff-section-head { display: flex; justify-content: space-between; align-items: end; gap: 22px; margin-bottom: 18px; }
.aff-section-head h2 { max-width: 690px; margin: 0; color: var(--dark); font: 700 clamp(1.65rem, 3.5vw, 2.5rem)/1.24 var(--font-display); letter-spacing: 0; }
.aff-section-head p { max-width: 560px; margin: 0; color: #51627a; font-size: 14px; line-height: 1.75; font-weight: 500; }
.aff-filters { display: flex; gap: 9px; overflow-x: auto; padding: 2px 0 16px; }
.aff-filters a { flex: 0 0 auto; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: #31425a; padding: 9px 13px; font-size: 13px; font-weight: 700; }
.aff-filters a.active { background: var(--dark); border-color: var(--dark); color: #fff; }
.aff-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 360px); gap: 18px; align-items: start; }
.aff-offers { display: grid; gap: 12px; }
.aff-offer { display: grid; grid-template-columns: 68px minmax(0, 1fr) minmax(150px, 210px) minmax(150px, 180px); gap: 14px; align-items: center; border: 1px solid var(--line); border-radius: 24px; background: #fff; padding: 15px; box-shadow: var(--shadow-sm); }
.aff-offer:hover { box-shadow: var(--shadow); transform: translateY(-2px); transition: .18s ease; }
.aff-logo { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; background: linear-gradient(135deg, #ecfdf7, #edf4ff); color: var(--blue); font-weight: 900; }
.aff-logo img,
.aff-logo .vtg-mapped-logo {
  display: block;
  height: 100%;
  object-fit: contain;
  padding: 7px;
  width: 100%;
}
.aff-offer h3 { margin: 0 0 7px; color: var(--dark); font-size: 18px; font-weight: 700; line-height: 1.38; }
.aff-meta { display: flex; flex-wrap: wrap; gap: 7px; color: var(--muted); font-size: 12px; font-weight: 600; }
.aff-meta span { border-radius: 999px; background: #f1f5f9; padding: 5px 8px; }
.aff-meta .verified { color: var(--green); background: #eaf8f1; }
.aff-limit strong { display: block; color: var(--dark); font: 700 19px var(--font-display); line-height: 1.35; }
.aff-limit span { color: var(--muted); font-size: 12px; font-weight: 600; }
.aff-actions { display: grid; gap: 8px; }
.aff-actions .btn { min-height: 40px; width: 100%; padding-inline: 12px; }
.small-link { text-align: center; color: var(--muted); font-size: 12px; font-weight: 600; }
.aff-side-card { border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: var(--shadow); padding: 20px; position: sticky; top: 92px; }
.aff-side-card h3 { margin: 0 0 12px; color: var(--dark); font: 700 22px var(--font-display); letter-spacing: 0; line-height: 1.3; }
.aff-check { display: grid; grid-template-columns: 26px 1fr; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--line); color: #3e4f66; font-size: 13px; line-height: 1.65; font-weight: 500; }
.aff-check:last-of-type { border-bottom: 0; }
.aff-check::before { content: "✓"; width: 26px; height: 26px; border-radius: 10px; display: grid; place-items: center; background: #eaf8f1; color: var(--primary-dark); font-weight: 900; }
.aff-tip { margin-top: 14px; border-radius: 20px; background: linear-gradient(135deg, #fff7e8, #eef7ff); padding: 16px; color: #513300; font-size: 13px; line-height: 1.7; font-weight: 600; }
.aff-category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.aff-cat { border: 1px solid var(--line); border-radius: 22px; background: #fff; padding: 18px; box-shadow: var(--shadow-sm); }
.aff-cat b { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; background: #edf4ff; color: var(--blue); margin-bottom: 13px; }
.aff-cat svg { width: 21px; height: 21px; }
.aff-cat h3 { margin: 0 0 7px; color: var(--dark); font-size: 17px; font-weight: 700; line-height: 1.35; }
.aff-cat p { margin: 0; color: #51627a; font-size: 13px; line-height: 1.7; font-weight: 500; }
.aff-compare { overflow: auto; border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: var(--shadow); }
.aff-compare table { width: 100%; min-width: 880px; border-collapse: collapse; }
.aff-compare th, .aff-compare td { text-align: left; padding: 16px 18px; border-bottom: 1px solid var(--line); vertical-align: top; }
.aff-compare th { background: #f3f7fb; color: #5d6f86; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.aff-compare td { color: #2f4057; font-size: 14px; line-height: 1.65; font-weight: 500; }
.aff-content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.aff-post { border: 1px solid var(--line); border-radius: 22px; background: #fff; overflow: hidden; box-shadow: var(--shadow-sm); }
.aff-post-cover { height: 128px; background: linear-gradient(135deg, #e9fbf7, #edf4ff); display: grid; place-items: center; color: var(--blue); }
.aff-post-cover svg { width: 42px; height: 42px; }
.aff-post-body { padding: 17px; }
.aff-post-body span { color: var(--primary-dark); font-size: 12px; font-weight: 700; }
.aff-post-body h3 { margin: 8px 0; color: var(--dark); font-size: 17px; font-weight: 700; line-height: 1.4; }
.aff-post-body p { margin: 0; color: #51627a; font-size: 13px; line-height: 1.7; font-weight: 500; }
.aff-bottom-cta { border-radius: 30px; background: linear-gradient(135deg, #081527, #123a5f); color: #fff; padding: 30px; display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; box-shadow: var(--shadow); }
.aff-bottom-cta h2 { margin: 0 0 8px; color: #fff; font: 700 32px/1.28 var(--font-display); letter-spacing: 0; }
.aff-bottom-cta p { margin: 0; color: #c5d4e6; line-height: 1.7; }
.aff-empty { color: var(--muted); padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 20px; }
.aff-sticky-mobile { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; background: rgba(255,255,255,.94); backdrop-filter: blur(16px); border-top: 1px solid var(--line); padding: 10px 14px; }
.aff-sticky-mobile .btn { width: 100%; }

/* --- Responsive --------------------------------------------------------- */
@media (max-width: 1080px) {
  .vtg-categories { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 960px) {
  body { padding-top: 69px; }
  .vtg-topbar { display: none; }
  .vtg-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }
  .vtg-menu, .vtg-nav-actions { display: none; }
  .vtg-mobile-toggle { display: flex; }
  .vtg-logo { transform: none; }
  .vtg-hero-grid, .vtg-market-grid, .vtg-audience, .vtg-cta, .vtg-footer-grid { grid-template-columns: 1fr; }
  .vtg-hero h1 { font-size: 40px; }
  .vtg-content-grid { grid-template-columns: 1fr; }
  .vtg-lead-form { position: static; }
  .vtg-service-stats { grid-template-columns: repeat(2,1fr); }
  .vtg-categories { grid-template-columns: repeat(2,1fr); }
  .vtg-steps { grid-template-columns: repeat(2,1fr); }
  .vtg-blog-grid { grid-template-columns: repeat(2,1fr); }
  .vtg-cta { padding: 32px; }
  .vtg-footer-grid { grid-template-columns: 1fr 1fr; }
  .section-head.flex { flex-direction: column; align-items: flex-start; }
  .container { width: min(100% - 32px, 1480px); }
  .aff-hero-main { min-height: auto; justify-content: flex-start; }
  .aff-hero h1 { font-size: clamp(2.55rem, 8vw, 4.7rem); max-width: 820px; }
  .aff-lead { max-width: 700px; }
  .aff-hero-grid, .aff-layout { grid-template-columns: 1fr; }
  .aff-offer { grid-template-columns: 58px minmax(0, 1fr) 150px; }
  .aff-actions { grid-column: 2 / -1; grid-template-columns: 1fr 1fr; }
  .aff-side-card { position: static; }
  .aff-category-grid, .aff-content-grid { grid-template-columns: repeat(2, 1fr); }
  .aff-bottom-cta { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .vtg-hero h1 { font-size: 32px; }
  .vtg-hero .lead { font-size: 15px; }
  .vtg-trust { grid-template-columns: 1fr 1fr; }
  .vtg-form-grid { grid-template-columns: 1fr; }
  .vtg-summary { grid-template-columns: 1fr 1fr; }
  .vtg-categories, .vtg-steps, .vtg-blog-grid { grid-template-columns: 1fr; }
  .section-head h2 { font-size: 28px; }
  .vtg-footer-grid { grid-template-columns: 1fr; }
  .vtg-cta { padding: 24px; }
  .vtg-cta h2 { font-size: 26px; }
  .vtg-offer { grid-template-columns: 1fr; }
  .vtg-offer-rate { text-align: left; }
  section { padding: 48px 0; }
  .vtg-service-stats { grid-template-columns: 1fr 1fr; }
  .vtg-filter-bar { flex-direction: column; }
  .vtg-filter-field { min-width: 100%; }
  .container { width: min(100% - 22px, 1480px); }
  .aff-hero { padding-top: 14px; }
  .aff-hero-main, .aff-quick-box, .aff-side-card, .aff-bottom-cta { border-radius: 23px; padding: 20px; }
  .aff-hero h1 { font-size: clamp(2.05rem, 10vw, 2.85rem); line-height: 1.07; }
  .aff-lead { font-size: 15px; }
  .aff-trust-strip, .aff-estimate, .aff-category-grid, .aff-content-grid, .aff-bottom-cta, .aff-visual { grid-template-columns: 1fr; }
  .aff-offer { grid-template-columns: 1fr; }
  .aff-logo { width: 52px; height: 52px; }
  .aff-actions { grid-column: auto; grid-template-columns: 1fr; }
  .aff-section-head { display: block; }
  .aff-section-head p { margin-top: 9px; }
  .aff-section { padding: 36px 0; }
  .aff-sticky-mobile { display: block; }
  body { padding-bottom: 72px; }
}

@media (min-width: 1480px) {
  .aff-section { padding: 56px 0; }
  .aff-layout { gap: 22px; }
  .aff-offers { gap: 14px; }
}

@media (max-width: 1180px) {
  .service-filter-panel .filter-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-filter-panel .filter-actions { grid-column: 1 / -1; }
  .premium-service-layout { grid-template-columns: minmax(0, 1fr) minmax(300px, 340px); }
  .service-archive-grid,
  .partner-archive-grid,
  .knowledge-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
}

/* ============================================================
   SUPPLEMENTAL STYLES — Single / Archive / Page Templates
   ============================================================ */

/* --- Single article layout --------------------------------- */
.single-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}
.single-article {}
.article-header { margin-bottom: 32px; }
.article-cat-badge {
    display: inline-block;
    background: var(--clr-mint-light);
    color: var(--clr-primary);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-decoration: none;
    margin-bottom: 12px;
}
.article-title { font-size: clamp(1.6rem,4vw,2.2rem); line-height: 1.3; margin-bottom: 16px; }
.article-meta { display: flex; gap: 20px; color: var(--clr-text-muted); font-size: 13px; }
.article-meta svg { vertical-align: middle; margin-right: 4px; }
.article-thumbnail { border-radius: 16px; overflow: hidden; margin-bottom: 32px; }
.article-thumbnail img { width: 100%; height: auto; display: block; }
.article-body { line-height: 1.8; }
.article-body h2, .article-body h3 { margin-top: 32px; margin-bottom: 12px; }
.article-body p { margin-bottom: 16px; }
.article-body ul, .article-body ol { margin: 16px 0 16px 24px; }
.article-kicker { font-size: 1.05rem; color: var(--clr-text-muted); margin-bottom: 20px; }
.article-disclaimer {
    display: flex; gap: 10px; align-items: flex-start;
    background: #fff8e1; border: 1px solid #ffe082;
    border-radius: 12px; padding: 16px; margin: 32px 0;
    font-size: 13px; color: #7a5c00; line-height: 1.6;
}
.article-disclaimer svg { flex-shrink: 0; margin-top: 2px; }
.article-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.tag-chip { font-size: 12px; color: var(--clr-primary); background: var(--clr-mint-light); padding: 4px 10px; border-radius: 20px; text-decoration: none; }

/* --- Sidebar widgets ---------------------------------------- */
.single-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget { background: var(--clr-surface); border-radius: 16px; padding: 24px; }
.widget-title { font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.related-list { list-style: none; }
.related-list li { padding: 10px 0; border-bottom: 1px solid var(--clr-border); }
.related-list li:last-child { border-bottom: none; }
.related-list a { font-size: 14px; font-weight: 500; color: var(--clr-text); text-decoration: none; display: block; }
.related-list a:hover { color: var(--clr-primary); }
.related-date { font-size: 11px; color: var(--clr-text-muted); }
.sidebar-cta-box { background: var(--clr-primary); color: #fff; text-align: center; }
.sidebar-cta-box .widget-title, .sidebar-cta-box h4 { color: #fff; }
.sidebar-cta-box p { font-size: 13px; opacity: .85; margin-bottom: 16px; }
.sidebar-cta-icon { font-size: 28px; margin-bottom: 8px; }
.cat-list { list-style: none; }
.cat-list li a { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--clr-border); font-size: 14px; color: var(--clr-text); text-decoration: none; }
.cat-list li:last-child a { border-bottom: none; }
.cat-count { background: var(--clr-mint-light); color: var(--clr-primary); font-size: 11px; padding: 2px 6px; border-radius: 10px; }

/* --- Single service layout --------------------------------- */
.single-service-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 380px); gap: 34px; align-items: start; }
.single-service-main {}
.service-detail-header { display: flex; gap: 20px; align-items: flex-start; background: var(--clr-surface); border-radius: 20px; padding: 28px; margin-bottom: 28px; }
.service-detail-logo { width: 72px; height: 72px; flex-shrink: 0; border-radius: 14px; overflow: hidden; background: var(--clr-mint-light); display: flex; align-items: center; justify-content: center; }
.service-detail-logo img { width: 100%; height: 100%; object-fit: contain; }
.service-detail-name { font-size: 1.5rem; font-weight: 700; margin-bottom: 6px; }
.service-detail-meta { display: flex; gap: 16px; margin-top: 8px; font-size: 13px; color: var(--clr-text-muted); }
.service-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 28px; }
.stat-card { background: var(--clr-surface); border-radius: 14px; padding: 20px; }
.stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--clr-text-muted); margin-bottom: 6px; }
.stat-value { font-size: 1.1rem; font-weight: 700; color: var(--clr-primary); }
.service-section { margin-bottom: 36px; }
.service-section-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--clr-mint-light); }
.service-section-body { line-height: 1.75; }
.service-section-body ul { margin: 12px 0 12px 20px; }
.service-disclaimer-box { display: flex; gap: 14px; background: #fff8e1; border: 1px solid #ffe082; border-radius: 16px; padding: 20px; margin: 32px 0; }
.disclaimer-icon { font-size: 22px; flex-shrink: 0; }
.disclaimer-content strong { display: block; margin-bottom: 6px; color: #7a5c00; }
.disclaimer-content p { font-size: 13px; color: #7a5c00; line-height: 1.6; margin: 0; }
.related-services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }

.premium-service-layout { grid-template-columns: minmax(0, 1fr) minmax(340px, 400px); gap: 34px; }
.premium-service-hero {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        radial-gradient(circle at 10% 10%, rgba(14,168,149,.12) 0, transparent 32%),
        linear-gradient(180deg, #fff 0%, #f7fbfa 100%);
    box-shadow: var(--shadow-sm);
}
.premium-service-hero::after {
    content: "";
    position: absolute;
    inset: auto 24px 0 auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 34px solid rgba(14,168,149,.08);
    transform: translate(35%, 35%);
}
.premium-service-hero .service-detail-info { position: relative; z-index: 1; min-width: 0; }
.premium-service-hero .archive-eyebrow { margin-bottom: 12px; }
.premium-service-hero .service-detail-logo {
    position: relative;
    z-index: 1;
    width: 84px;
    height: 84px;
    border: 1px solid rgba(14,168,149,.18);
    border-radius: 20px;
    background: #eefaf7;
    box-shadow: var(--shadow-sm);
}
.premium-service-hero .service-detail-logo img { padding: 10px; }
.premium-service-hero .service-detail-name {
    max-width: 760px;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.12;
    letter-spacing: 0;
    margin-bottom: 12px;
}
.premium-service-hero .service-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.premium-service-hero .meta-item {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 10px;
    background: #fff;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}
.service-hero-tax {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.service-hero-tax a,
.service-hero-tax span {
    display: inline-flex;
    border-radius: 999px;
    padding: 7px 11px;
    background: #eefaf7;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
}
.service-hero-tax span { background: #f4f7fb; color: var(--text); }
.service-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.premium-service-stats .stat-card {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #fff 0%, #f9fcfb 100%);
    box-shadow: var(--shadow-sm);
}
.premium-service-stats .stat-value {
    line-height: 1.35;
    color: var(--primary-dark);
}
.service-transparency-table,
.service-process-panel,
.single-service-seo-panel {
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 24px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}
.single-service-table-wrap { overflow-x: auto; }
.single-service-table { min-width: 620px; }
.single-service-table th { width: 210px; }
.premium-calc-mini {
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.service-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.service-process-grid div {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
    background: #f8fbfa;
}
.service-process-grid strong {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-display);
    margin-bottom: 12px;
}
.service-process-grid span {
    display: block;
    color: var(--dark);
    font-weight: 900;
    margin-bottom: 6px;
}
.service-process-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}
.service-summary-widget {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--shadow-sm);
}
.service-summary-widget dl {
    display: grid;
    gap: 12px;
    margin: 0;
}
.service-summary-widget dl div {
    display: grid;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 12px;
}
.service-summary-widget dl div:last-child { border-bottom: 0; padding-bottom: 0; }
.service-summary-widget dt {
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.service-summary-widget dd {
    margin: 0;
    color: var(--dark);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
}
.summary-partner-link {
    display: inline-flex;
    margin-top: 16px;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 900;
}
.single-service-sidebar {
    position: sticky;
    top: 92px;
}
.single-service-sidebar .sidebar-widget,
.single-service-sidebar .service-lead-form-box {
    margin-bottom: 18px;
}
.service-affiliate-widget {
    border: 1px solid rgba(14,168,149,.24);
    background: linear-gradient(135deg, #ffffff, #eefbf7);
    box-shadow: var(--shadow);
}
.service-affiliate-widget p {
    margin: 0 0 16px;
    color: #51627a;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.7;
}
.service-affiliate-widget .btn {
    width: 100%;
}
.service-affiliate-widget .small-link {
    display: block;
    margin-top: 11px;
}

/* --- Single service premium polish -------------------------- */
.premium-service-layout .single-service-main > section,
.premium-service-layout .single-service-main > .service-section {
    padding: 0;
    margin-bottom: 22px;
}
.premium-service-layout .single-service-main > .service-disclaimer-box {
    margin: 22px 0;
}
.premium-service-layout .vtg-breadcrumb {
    padding-bottom: 18px;
}
.premium-service-hero {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    min-height: 0;
    padding: 30px;
}
.premium-service-hero::after {
    opacity: .55;
}
.premium-service-hero .service-detail-logo {
    align-self: start;
    width: 92px;
    height: 92px;
    border-radius: 24px;
}
.premium-service-hero .logo-placeholder {
    font-size: 24px;
    color: var(--primary-dark);
    background: linear-gradient(135deg, #ecfaf6, #fff);
}
.premium-service-hero .service-detail-name {
    max-width: 720px;
    font-size: clamp(2rem, 4.2vw, 3.35rem);
}
.premium-service-stats {
    gap: 14px;
    margin: 0 0 22px;
}
.premium-service-stats .stat-card {
    min-height: 112px;
    border-radius: 20px;
    padding: 22px 24px;
}
.premium-service-stats .stat-label {
    color: #64748b;
    font-size: 12px;
    font-weight: 900;
}
.premium-service-stats .stat-value {
    margin-top: 8px;
    font-size: 20px;
    font-weight: 900;
}
.premium-service-layout .service-section-title {
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px;
    margin-bottom: 18px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0;
}
.premium-service-layout .service-section-body {
    color: var(--text);
    font-size: 16px;
    line-height: 1.85;
}
.service-transparency-table,
.service-process-panel,
.single-service-seo-panel,
.premium-calc-mini {
    border-radius: 24px;
}
.single-service-table th,
.single-service-table td {
    padding: 16px 20px;
    vertical-align: top;
    font-size: 15px;
}
.single-service-table td {
    color: var(--dark);
    font-weight: 750;
}
.service-lead-form-box {
    border: 1px solid rgba(14,168,149,.18);
    border-radius: 24px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(15,23,42,.08);
}
.service-lead-form-box .lead-form-title {
    margin: 0 0 8px;
    color: var(--dark);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0;
}
.service-lead-form-box .lead-form-desc {
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}
.lead-form {
    display: grid;
    gap: 13px;
}
.lead-form .form-group {
    display: grid;
    gap: 7px;
    margin: 0;
}
.lead-form label {
    color: var(--dark);
    font-size: 13px;
    font-weight: 900;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
    display: block;
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 11px 13px;
    background: #f8fbff;
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.lead-form textarea {
    min-height: 96px;
    resize: vertical;
    line-height: 1.55;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(14,168,149,.12);
}
.lead-form .btn-full {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    margin-top: 2px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(14,168,149,.22);
}
.service-lead-form-box .form-disclaimer {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}
.service-summary-widget,
.single-service-sidebar .sidebar-trust {
    border-radius: 24px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 14px 36px rgba(15,23,42,.07);
}
.single-service-seo-panel {
    align-items: start;
    padding: 30px 32px;
}
.single-service-seo-panel p {
    max-width: 690px;
    font-size: 16px;
    line-height: 1.85;
}
.single-service-seo-panel .archive-seo-links {
    border-radius: 20px;
    background: #f8fbff;
}

/* --- Service lead form sidebar ----------------------------- */
.service-lead-form-box { background: var(--clr-surface); border-radius: 20px; padding: 28px; border: 2px solid var(--clr-mint-light); }
.lead-form-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.lead-form-desc { font-size: 13px; color: var(--clr-text-muted); margin-bottom: 20px; }
.lead-message { border-radius: 10px; padding: 14px; font-size: 14px; margin-bottom: 16px; }
.lead-message.success { background: #e8f5e9; color: #2e7d32; }
.lead-message.error   { background: #ffebee; color: #c62828; }
.vtg-hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.sidebar-hotline { text-align: center; margin-top: 16px; font-size: 13px; color: var(--clr-text-muted); }
.sidebar-hotline svg { vertical-align: middle; margin-right: 4px; }
.sidebar-hotline a { color: var(--clr-primary); font-weight: 600; }
.sidebar-trust { border: 1px solid var(--clr-border); }
.trust-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.trust-item { display: flex; gap: 8px; align-items: center; font-size: 13px; }
.trust-pass svg { color: #2e7d32; }
.trust-pending svg { color: #f59e0b; }
.trust-note svg { color: var(--clr-text-muted); }
.form-disclaimer { font-size: 11px; color: var(--clr-text-muted); margin-top: 12px; line-height: 1.5; }

.single-service-sidebar .service-lead-form-box {
    border: 1px solid rgba(14,168,149,.18);
    border-radius: 24px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(15,23,42,.08);
}
.single-service-sidebar .lead-form-title {
    margin: 0 0 8px;
    color: var(--dark);
    font-size: 22px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: 0;
}
.single-service-sidebar .lead-form-desc {
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}
.single-service-sidebar .form-disclaimer {
    margin: 2px 0 0;
    font-size: 12px;
    line-height: 1.6;
}

/* --- Mini calc on service page ----------------------------- */
.calc-mini { background: var(--clr-surface); border-radius: 16px; padding: 24px; }
.calc-row { margin-bottom: 18px; }
.calc-row label { display: block; font-size: 13px; color: var(--clr-text-muted); margin-bottom: 6px; }
.calc-result-row { display: flex; justify-content: space-between; align-items: center; background: var(--clr-primary); color: #fff; border-radius: 12px; padding: 16px 20px; margin-top: 8px; }
.calc-result-label { font-size: 13px; opacity: .85; }
.calc-result-val { font-size: 1.2rem; font-weight: 700; }
.calc-note { font-size: 11px; color: var(--clr-text-muted); margin-top: 12px; line-height: 1.5; }

/* --- Info table -------------------------------------------- */
.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--clr-border); font-size: 14px; }
.info-table th { width: 40%; color: var(--clr-text-muted); font-weight: 500; }
.info-table td { font-weight: 500; }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: none; }

/* --- Partner archive --------------------------------------- */
.partner-archive-hero {
    background:
        linear-gradient(135deg, rgba(14,168,149,.16) 0%, rgba(255,255,255,.82) 36%, rgba(37,99,235,.12) 100%),
        linear-gradient(180deg, #f9fcff 0%, #eef7f6 100%);
    border-bottom: 1px solid rgba(204,219,235,.72);
}
.partner-archive-hero .service-archive-hero-grid {
    padding: 22px 0 18px;
    min-height: 0;
    align-items: stretch;
    gap: 34px;
}
.partner-archive-hero .archive-eyebrow {
    padding: 7px 13px;
    box-shadow: 0 10px 24px rgba(15,23,42,.08);
}
.partner-archive-hero .page-title {
    max-width: 980px;
    margin: 16px 0 14px;
    font-size: clamp(2.35rem, 5.2vw, 4.85rem);
    line-height: 1.06;
}
.partner-archive-hero .page-desc {
    max-width: 980px;
    font-size: 16px;
    line-height: 1.75;
}
.partner-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}
.partner-hero-actions .btn {
    min-height: 44px;
}
.partner-archive-hero .archive-trust-strip {
    margin-top: 18px;
    max-width: 930px;
}
.partner-archive-hero .archive-trust-strip div {
    padding: 13px 15px;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(15,23,42,.06);
}
.partner-archive-hero .archive-hero-note {
    position: relative;
    overflow: hidden;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 24px;
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.97), rgba(246,251,250,.97));
    box-shadow: 0 26px 70px rgba(15,23,42,.12);
}
.partner-archive-hero .archive-hero-note::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--blue), #f59e0b);
}
.partner-archive-hero .archive-hero-note h2 {
    font-size: 24px;
    line-height: 1.28;
    margin-top: 12px;
}
.partner-panel-kicker {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    background: #e9fbf7;
    color: var(--primary-dark);
    padding: 7px 11px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.partner-hero-score {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 14px 0 12px;
}
.partner-hero-checks {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 930px;
    margin-top: 14px;
}
.partner-hero-checks div {
    border: 1px solid rgba(226,234,244,.9);
    border-radius: 18px;
    background: rgba(255,255,255,.82);
    box-shadow: 0 12px 28px rgba(15,23,42,.06);
    padding: 14px;
}
.partner-hero-checks span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 13px;
    background: #edf4ff;
    color: var(--blue);
    font-weight: 800;
    margin-bottom: 10px;
}
.partner-hero-checks strong {
    display: block;
    color: var(--dark);
    font-size: 15px;
    line-height: 1.35;
}
.partner-hero-checks p {
    margin: 6px 0 0;
    color: #51627a;
    font-size: 12px;
    line-height: 1.55;
    font-weight: 500;
}
.partner-hero-score div {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
    padding: 13px;
}
.partner-hero-score strong {
    display: block;
    color: var(--dark);
    font-size: 24px;
    line-height: 1.15;
}
.partner-hero-score span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.45;
}
.partner-assurance-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 0;
    margin-bottom: 18px;
}
.partner-assurance-band div {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    padding: 18px;
}
.partner-assurance-band span {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: #edf4ff;
    color: var(--blue);
    font-weight: 800;
    margin-bottom: 14px;
}
.partner-assurance-band strong {
    display: block;
    color: var(--dark);
    font-size: 17px;
    line-height: 1.35;
}
.partner-assurance-band p {
    margin: 7px 0 0;
    color: #51627a;
    font-size: 13px;
    line-height: 1.7;
    font-weight: 500;
}
.partner-value-rail {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: -34px 0 18px;
}
.partner-value-rail article {
    display: flex;
    gap: 12px;
    min-width: 0;
    padding: 16px;
    border: 1px solid rgba(214,226,240,.9);
    border-radius: 20px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 16px 38px rgba(15,23,42,.06);
}
.partner-value-icon {
    display: inline-grid;
    place-items: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: linear-gradient(135deg, #0ea895, #2563eb);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .02em;
}
.partner-value-rail strong {
    display: block;
    color: var(--dark);
    font-size: 14px;
    line-height: 1.35;
}
.partner-value-rail p {
    margin: 5px 0 0;
    color: #5c6d84;
    font-size: 12px;
    line-height: 1.55;
    font-weight: 500;
}
.partner-archive-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 20px; }
.partner-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
    min-height: 100%;
    padding: 22px;
    border: 1px solid rgba(214,226,240,.95);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(247,250,252,.98) 100%);
    box-shadow: 0 16px 40px rgba(15,23,42,.07);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.partner-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, rgba(14,168,149,.95), rgba(37,99,235,.9));
    opacity: .72;
}
.partner-card::after {
    content: "";
    position: absolute;
    right: 0;
    top: 5px;
    width: 120px;
    height: 100%;
    background:
        linear-gradient(135deg, transparent 0 42%, rgba(14,168,149,.055) 42% 50%, transparent 50% 100%),
        linear-gradient(135deg, transparent 0 58%, rgba(37,99,235,.045) 58% 64%, transparent 64% 100%);
    pointer-events: none;
}
.partner-card.is-featured {
    border-color: rgba(14,168,149,.32);
    box-shadow: 0 20px 54px rgba(14,168,149,.10), 0 10px 28px rgba(15,23,42,.06);
}
.partner-card:hover {
    transform: translateY(-3px);
    border-color: rgba(14,168,149,.35);
    box-shadow: 0 18px 44px rgba(15,23,42,.09);
}
.partner-card-ribbon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: -2px;
}
.partner-card-ribbon span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #e9fbf7;
    color: #087466;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.partner-card-ribbon small {
    min-width: 0;
    color: #66758a;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.partner-card-header { position: relative; z-index: 1; display: flex; gap: 14px; align-items: flex-start; min-width: 0; }
.partner-logo {
    width: 70px;
    height: 70px;
    border: 1px solid rgba(14,168,149,.22);
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, #ecfbf7 0%, #f5f9ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 12px 26px rgba(15,23,42,.08);
}
.partner-logo img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.partner-info { min-width: 0; }
.partner-kicker {
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 5px;
}
.partner-name { font-size: 1.15rem; font-weight: 800; line-height: 1.35; margin-bottom: 6px; letter-spacing: 0; }
.partner-name a { color: var(--clr-text); text-decoration: none; }
.partner-name a:hover { color: var(--clr-primary); }
.partner-rating { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--clr-text-muted); margin-top: 6px; }
.partner-desc { position: relative; z-index: 1; font-size: 13px; color: #51627a; line-height: 1.7; margin: 0; font-weight: 500; }
.partner-matchline {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.partner-matchline span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 9px;
    border: 1px solid rgba(214,226,240,.92);
    border-radius: 999px;
    background: rgba(255,255,255,.86);
    color: #40516a;
    font-size: 11px;
    font-weight: 800;
}
.partner-matchline span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    margin-right: 6px;
}
.partner-score-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.partner-score-row div {
    border: 1px solid rgba(214,226,240,.9);
    border-radius: 16px;
    background: linear-gradient(180deg, #fff 0%, #f7fafc 100%);
    padding: 11px 12px;
}
.partner-score-row span {
    display: block;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 3px;
}
.partner-score-row strong {
    display: block;
    color: var(--dark);
    font-size: 14px;
    line-height: 1.35;
}
.partner-tax-row { position: relative; z-index: 1; margin-top: -2px; }
.partner-meta-row {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    min-width: 0;
    font-size: 12px;
    line-height: 1.5;
    color: var(--clr-text-muted);
}
.partner-meta-row svg { flex-shrink: 0; margin-top: 2px; color: var(--primary); }
.partner-verification-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 2px;
}
.partner-verification-grid div {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 10px;
    background: #fff;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.35;
}
.partner-verification-grid span {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.partner-verification-grid .is-pass { border-color: rgba(14,168,149,.22); background: #f0faf7; color: #087466; }
.partner-verification-grid .is-pending { border-color: rgba(245,158,11,.22); background: #fff8eb; color: #9a5f00; }
.partner-card-footer { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: auto; padding-top: 2px; }
.partner-card-footer {
    position: relative;
    z-index: 1;
}
.partner-card-footer .btn { width: 100%; box-shadow: none; }
.partner-empty-state {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    margin: 0 0 24px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}
.partner-empty-state h2 {
    margin: 12px 0 8px;
    font-size: 22px;
    letter-spacing: 0;
}
.partner-empty-state p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}
.partner-empty-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* --- Knowledge archive ------------------------------------- */
.knowledge-archive-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(14,168,149,.16), rgba(255,255,255,.88) 42%, rgba(245,158,11,.14)),
        linear-gradient(180deg, #f9fcff 0%, #eef7f4 100%);
    border-bottom: 1px solid rgba(205,219,235,.82);
}
.knowledge-archive-hero::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--blue), #f59e0b);
    opacity: .75;
}
.knowledge-archive-hero::after {
    content: "";
    position: absolute;
    left: 2%;
    bottom: -80px;
    width: 420px;
    height: 420px;
    border: 54px solid rgba(14,168,149,.055);
    border-radius: 50%;
    pointer-events: none;
}
.knowledge-archive-hero .container {
    position: relative;
    z-index: 1;
}
.knowledge-archive-hero .vtg-breadcrumb {
    padding: 12px 0 6px;
}
.knowledge-archive-hero .service-archive-hero-grid {
    padding: 10px 0 24px;
    gap: 28px;
}
.knowledge-archive-hero .page-title {
    max-width: 960px;
    margin: 16px 0 14px;
    font-size: clamp(2.45rem, 5vw, 4.85rem);
}
.knowledge-archive-hero .page-desc {
    max-width: 930px;
    line-height: 1.7;
}
.knowledge-archive-hero .archive-eyebrow {
    border-color: rgba(14,168,149,.18);
    box-shadow: 0 14px 30px rgba(15,23,42,.08);
}
.knowledge-archive-hero .archive-trust-strip {
    margin-top: 18px;
}
.knowledge-archive-hero .archive-trust-strip div {
    position: relative;
    overflow: hidden;
    border-color: rgba(214,226,240,.88);
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,252,255,.96));
    box-shadow: 0 14px 32px rgba(15,23,42,.065);
}
.knowledge-archive-hero .archive-trust-strip div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--primary), var(--blue));
    opacity: .86;
}
.knowledge-archive-hero .archive-trust-strip div:hover {
    border-color: rgba(14,168,149,.34);
    transform: translateY(-2px);
}
.knowledge-archive-hero .archive-hero-note {
    position: relative;
    overflow: hidden;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 26px;
    border-color: rgba(214,226,240,.9);
    box-shadow: 0 24px 62px rgba(15,23,42,.10);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.knowledge-archive-hero .archive-hero-note::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--blue), #f59e0b);
}
.knowledge-archive-hero .archive-hero-note:hover {
    transform: translateY(-3px);
    border-color: rgba(14,168,149,.34);
    box-shadow: 0 28px 74px rgba(15,23,42,.13);
}
.knowledge-archive-hero .archive-hero-note h2 {
    font-size: 24px;
    line-height: 1.28;
}
.knowledge-archive-hero .archive-hero-note li {
    padding-left: 26px;
}
.knowledge-archive-hero .archive-hero-note li::before {
    width: 10px;
    height: 10px;
    box-shadow: 0 0 0 5px rgba(14,168,149,.10);
}
.knowledge-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}
.knowledge-hero-actions .btn {
    min-height: 44px;
}
.knowledge-value-rail {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 12px 0 0;
    max-width: none;
}
.knowledge-value-rail article {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-width: 0;
    padding: 13px 14px;
    border: 1px solid rgba(214,226,240,.92);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,252,255,.96));
    box-shadow: 0 16px 38px rgba(15,23,42,.06);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.knowledge-value-rail article::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--blue));
    opacity: .82;
}
.knowledge-value-rail article::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -54px;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: rgba(14,168,149,.07);
    pointer-events: none;
}
.knowledge-value-rail article:hover {
    transform: translateY(-3px);
    border-color: rgba(14,168,149,.34);
    box-shadow: 0 22px 48px rgba(15,23,42,.09);
}
.knowledge-value-rail span {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--blue));
    color: #fff;
    font-weight: 900;
    font-size: 11px;
    box-shadow: 0 14px 28px rgba(37,99,235,.18);
}
.knowledge-value-rail strong {
    position: relative;
    z-index: 1;
    display: block;
    min-width: 0;
    color: var(--dark);
    font-size: 14px;
    line-height: 1.35;
    white-space: normal;
}
.knowledge-value-rail p {
    position: relative;
    z-index: 1;
    min-width: 0;
    margin: 5px 0 0;
    color: #5c6d84;
    font-size: 11px;
    line-height: 1.5;
    font-weight: 500;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}
.knowledge-featured-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, .82fr) minmax(0, 1fr);
    gap: 0;
    margin: 4px 0 18px;
    border: 1px solid rgba(214,226,240,.95);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,252,255,.96));
    box-shadow: 0 22px 58px rgba(15,23,42,.08);
    overflow: hidden;
}
.knowledge-featured-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--blue), #f59e0b);
    z-index: 2;
}
.knowledge-featured-media {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 250px;
    background:
        linear-gradient(135deg, rgba(14,168,149,.22), rgba(37,99,235,.15)),
        #eff8f7;
    overflow: hidden;
}
.knowledge-featured-media::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 22px;
    pointer-events: none;
}
.knowledge-featured-media::after {
    content: "";
    position: absolute;
    right: -56px;
    bottom: -70px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(255,255,255,.28);
}
.knowledge-featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.knowledge-featured-media span {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    border-radius: 28px;
    background: #fff;
    color: var(--primary-dark);
    font-size: 28px;
    font-weight: 900;
    box-shadow: 0 18px 44px rgba(15,23,42,.10);
}
.knowledge-featured-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px;
}
.knowledge-featured-copy h2 {
    margin: 12px 0 12px;
    color: var(--dark);
    font-size: clamp(1.8rem, 3.3vw, 3rem);
    line-height: 1.12;
    letter-spacing: 0;
}
.knowledge-featured-copy h2 a:hover {
    color: var(--primary-dark);
}
.knowledge-featured-copy p {
    max-width: 720px;
    color: #51627a;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 500;
    margin: 0;
}
.knowledge-featured-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}
.knowledge-results-head {
    margin-top: 18px;
}
.knowledge-archive-shell {
    padding-top: 18px;
    padding-bottom: 46px;
}
.knowledge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 18px;
}
.knowledge-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100%;
    border: 1px solid rgba(214,226,240,.95);
    border-radius: 24px;
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
    box-shadow: 0 16px 40px rgba(15,23,42,.065);
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.knowledge-card:hover {
    transform: translateY(-3px);
    border-color: rgba(14,168,149,.34);
    box-shadow: 0 18px 44px rgba(15,23,42,.09);
}
.knowledge-card-media {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 16 / 9;
    background:
        linear-gradient(135deg, rgba(14,168,149,.16), rgba(37,99,235,.12)),
        #eff8f7;
    overflow: hidden;
}
.knowledge-media-badge {
    position: absolute;
    left: 14px;
    top: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(15,23,42,.08);
}
.knowledge-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .22s ease;
}
.knowledge-card:hover .knowledge-card-media img {
    transform: scale(1.035);
}
.knowledge-card-icon {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    border-radius: 22px;
    background: rgba(255,255,255,.96);
    color: var(--primary-dark);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    box-shadow: var(--shadow-sm);
}
.knowledge-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    padding: 21px;
}
.knowledge-card-cats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.knowledge-card-cats a {
    display: inline-flex;
    border-radius: 999px;
    padding: 6px 10px;
    background: #eefaf7;
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 900;
}
.knowledge-card-title {
    margin: 0;
    font-size: 19px;
    line-height: 1.38;
    letter-spacing: 0;
}
.knowledge-card-title a {
    color: var(--dark);
}
.knowledge-card-title a:hover {
    color: var(--primary-dark);
}
.knowledge-card-excerpt {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}
.knowledge-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(214,226,240,.78);
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}
.knowledge-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.knowledge-card-meta span + span::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--primary);
}
.knowledge-card-meta a {
    margin-left: auto;
    color: var(--primary-dark);
    font-weight: 900;
}

/* --- Partner detail ---------------------------------------- */
.partner-profile-page {
    background: #f3f7fb;
    margin-top: 0;
    padding-top: 0;
}
.partner-profile-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(14,168,149,.18) 0%, rgba(255,255,255,.92) 38%, rgba(37,99,235,.16) 100%),
        linear-gradient(180deg, #f9fcff 0%, #edf6f5 100%);
    border-bottom: 1px solid rgba(205,219,235,.85);
}
.partner-profile-hero .vtg-breadcrumb {
    padding: 6px 0 6px;
}
.partner-profile-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
    gap: 34px;
    align-items: stretch;
    padding: 0 0 24px;
}
.partner-profile-copy,
.partner-profile-card,
.partner-profile-section,
.partner-cta-widget,
.partner-sidebar-trust,
.partner-sidebar-note {
    border: 1px solid rgba(214,226,240,.95);
    background: rgba(255,255,255,.94);
    box-shadow: 0 20px 54px rgba(15,23,42,.07);
}
.partner-profile-copy {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 28px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,252,255,.96));
}
.partner-profile-copy::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 240px;
    height: 190px;
    background:
        linear-gradient(135deg, transparent 0 50%, rgba(14,168,149,.075) 50% 58%, transparent 58% 100%),
        linear-gradient(135deg, transparent 0 65%, rgba(37,99,235,.06) 65% 72%, transparent 72% 100%);
    pointer-events: none;
}
.partner-profile-title-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}
.partner-detail-logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--clr-mint-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.partner-profile-logo {
    width: 96px;
    height: 96px;
    border-radius: 24px;
    border: 1px solid rgba(14,168,149,.22);
    background: linear-gradient(145deg, #ecfbf7 0%, #f5f9ff 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 18px 34px rgba(15,23,42,.10);
}
.partner-detail-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}
.partner-detail-name {
    max-width: 940px;
    margin: 12px 0 12px;
    color: var(--dark);
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: 0;
}
.partner-profile-badges,
.partner-profile-actions,
.partner-profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.partner-profile-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 7px 11px;
    border: 1px solid rgba(214,226,240,.95);
    border-radius: 999px;
    background: #fff;
    color: #40516a;
    font-size: 12px;
    font-weight: 900;
}
.partner-profile-desc {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 22px 0 0;
    color: #51627a;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
}
.partner-profile-actions {
    position: relative;
    z-index: 1;
    margin-top: 20px;
}
.partner-profile-actions .btn {
    min-height: 46px;
}
.partner-profile-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}
.partner-profile-stats div,
.partner-profile-mini-list li,
.partner-info-grid div {
    border: 1px solid rgba(214,226,240,.95);
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}
.partner-profile-stats div {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    padding: 16px 16px 15px;
    box-shadow: 0 12px 30px rgba(15,23,42,.055);
}
.partner-profile-stats div::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--blue));
    opacity: .86;
}
.partner-profile-stats span,
.partner-profile-mini-list span,
.partner-info-grid span {
    display: block;
    color: #66758a;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.partner-profile-stats strong,
.partner-profile-mini-list strong,
.partner-info-grid strong {
    display: block;
    margin-top: 5px;
    color: var(--dark);
    font-size: 17px;
    line-height: 1.35;
}
.partner-profile-stats strong {
    font-size: 20px;
}
.partner-profile-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 28px;
    padding: 26px;
}
.partner-profile-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--blue), #f59e0b);
}
.partner-profile-score strong {
    display: block;
    color: var(--dark);
    font-size: 46px;
    line-height: 1;
}
.partner-profile-score span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}
.partner-profile-mini-list {
    display: grid;
    gap: 10px;
    margin: 20px 0;
    padding: 0;
    list-style: none;
}
.partner-profile-mini-list li {
    border-radius: 16px;
    padding: 13px;
}
.partner-profile-card p {
    margin: 0;
    color: #51627a;
    font-size: 13px;
    line-height: 1.7;
    font-weight: 600;
}
.partner-profile-shell {
    padding-top: 26px;
    padding-bottom: 60px;
}
.partner-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}
.partner-profile-layout .partner-detail-main {
    display: grid;
    gap: 20px;
}
.partner-profile-section {
    border-radius: 26px;
    padding: 24px;
}
.section-heading-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}
.section-heading-row h2 {
    margin: 6px 0 0;
    color: var(--dark);
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.25;
    letter-spacing: 0;
}
.section-heading-row a {
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}
.section-kicker,
.partner-widget-kicker {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    background: #e9fbf7;
    color: var(--primary-dark);
    padding: 7px 11px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.partner-verification-cards,
.partner-safety-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.partner-verification-cards div,
.partner-safety-grid div {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(214,226,240,.92);
    border-radius: 20px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 14px 34px rgba(15,23,42,.055);
}
.partner-verification-cards div::after {
    content: "";
    position: absolute;
    right: -36px;
    bottom: -44px;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: rgba(14,168,149,.08);
    pointer-events: none;
}
.partner-verification-cards span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--blue));
    color: #fff;
    font-weight: 900;
    margin-bottom: 14px;
    box-shadow: 0 14px 28px rgba(37,99,235,.18);
}
.partner-verification-cards strong,
.partner-safety-grid strong {
    display: block;
    color: var(--dark);
    font-size: 16px;
    line-height: 1.35;
}
.partner-verification-cards p,
.partner-safety-grid p,
.partner-rich-text p {
    margin: 7px 0 0;
    color: #51627a;
    font-size: 14px;
    line-height: 1.75;
    font-weight: 500;
}
.partner-verification-cards .is-pass {
    border-color: rgba(14,168,149,.34);
    background:
        linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(240,250,247,.98) 100%);
}
.partner-verification-cards .is-pending {
    border-color: rgba(245,158,11,.26);
    background: linear-gradient(180deg, #fff 0%, #fff8eb 100%);
}
.partner-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.partner-info-grid div {
    position: relative;
    overflow: hidden;
    min-width: 0;
    border-radius: 20px;
    padding: 18px 20px;
    box-shadow: 0 12px 30px rgba(15,23,42,.045);
}
.partner-info-grid div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--primary), var(--blue));
    opacity: .88;
}
.partner-info-grid a {
    color: var(--primary-dark);
    overflow-wrap: anywhere;
}
.partner-profile-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    border: 1px solid rgba(214,226,240,.95);
    border-radius: 999px;
    background: #fff;
    color: #26364d;
    font-size: 13px;
    font-weight: 900;
}
.partner-safety-panel {
    background:
        linear-gradient(135deg, rgba(255,248,235,.96), rgba(255,255,255,.96));
    border-color: rgba(245,158,11,.28);
}
.partner-profile-sidebar {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 16px;
}
.partner-profile-sidebar .sidebar-widget {
    border-radius: 24px;
    padding: 22px;
}
.partner-sidebar-trust {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,252,255,.96));
}
.partner-sidebar-trust::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--blue), #f59e0b);
}
.partner-sidebar-trust .widget-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 4px 0 16px;
    color: var(--dark);
    font-size: 20px;
    line-height: 1.25;
}
.partner-sidebar-trust .widget-title::before {
    content: "";
    width: 34px;
    height: 34px;
    border-radius: 13px;
    background:
        linear-gradient(135deg, rgba(14,168,149,.14), rgba(37,99,235,.14)),
        #fff;
    box-shadow: inset 0 0 0 1px rgba(14,168,149,.22);
}
.partner-sidebar-trust .trust-list {
    gap: 10px;
}
.partner-sidebar-trust .trust-item {
    position: relative;
    min-height: 48px;
    padding: 12px 12px 12px 44px;
    border: 1px solid rgba(214,226,240,.92);
    border-radius: 16px;
    background: #fff;
    color: #26364d;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.35;
    box-shadow: 0 10px 24px rgba(15,23,42,.045);
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.partner-sidebar-trust .trust-item::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    transform: translateY(-50%);
}
.partner-sidebar-trust .trust-item::after {
    content: "";
    position: absolute;
    left: 19px;
    top: 50%;
    width: 8px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-62%) rotate(-45deg);
}
.partner-sidebar-trust .trust-pass {
    border-color: rgba(14,168,149,.28);
    background: linear-gradient(180deg, #fff 0%, #f0faf7 100%);
}
.partner-sidebar-trust .trust-pass::before {
    background: linear-gradient(135deg, var(--primary), #16c7ad);
    box-shadow: 0 8px 18px rgba(14,168,149,.22);
}
.partner-sidebar-trust .trust-pending {
    border-color: rgba(245,158,11,.30);
    background: linear-gradient(180deg, #fff 0%, #fff8eb 100%);
}
.partner-sidebar-trust .trust-pending::before {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    box-shadow: 0 8px 18px rgba(245,158,11,.20);
}
.partner-sidebar-trust .trust-pending::after {
    left: 22px;
    width: 2px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    transform: translateY(-50%);
}
.partner-sidebar-trust .trust-item:hover {
    transform: translateY(-2px);
    border-color: rgba(14,168,149,.38);
    box-shadow: 0 14px 30px rgba(15,23,42,.075);
}
.partner-cta-widget {
    overflow: hidden;
    position: relative;
}
.partner-cta-widget::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--blue));
}
.partner-cta-widget h2 {
    margin: 12px 0 8px;
    color: var(--dark);
    font-size: 23px;
    line-height: 1.25;
}
.partner-cta-widget p,
.partner-sidebar-note p {
    color: #51627a;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
}
.partner-cta-widget .btn {
    width: 100%;
    margin-top: 10px;
}
.partner-sidebar-note a {
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 900;
}
.logo-placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; font-weight: 700; font-size: 1.1rem; color: var(--clr-primary); background: var(--clr-mint-light); border-radius: inherit; }
.logo-placeholder.lg { font-size: 1.4rem; }

/* --- Archive: kiến thức category tabs --------------------- */
.cat-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.cat-tab { padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: 500; color: var(--clr-text); background: var(--clr-surface); text-decoration: none; transition: all .2s; border: 1px solid var(--clr-border); }
.cat-tab:hover, .cat-tab.active { background: var(--clr-primary); color: #fff; border-color: var(--clr-primary); }

/* --- FAQ --------------------------------------------------- */
.faq-archive {
  background:
    radial-gradient(circle at 8% 0%, rgba(14,168,149,.12), transparent 30%),
    radial-gradient(circle at 90% 6%, rgba(37,99,235,.1), transparent 28%),
    #f4f7fb;
}

.faq-hero {
  overflow: hidden;
  padding: 24px 0 78px;
  background:
    linear-gradient(135deg, #07111f 0%, #10233d 58%, #0b8b7a 100%);
  color: #07111f;
}

.faq-hero .vtg-breadcrumb {
  padding-top: 8px;
  color: rgba(255,255,255,.66);
}

.faq-hero .vtg-breadcrumb a {
  color: #bdf4ec;
}

.faq-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 34px;
  align-items: end;
  padding-top: 44px;
}

.faq-hero .archive-eyebrow {
  border-color: rgba(189,244,236,.2);
  background: rgba(189,244,236,.1);
  color: #bdf4ec;
}

.faq-hero .page-title {
  max-width: 780px;
  margin: 14px 0 16px;
  color: #fff;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: .98;
  letter-spacing: 0;
}

.faq-hero .page-desc {
  max-width: 790px;
  color: #d5e3f2;
  font-size: 18px;
  line-height: 1.75;
}

.faq-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 840px;
  margin-top: 28px;
}

.faq-hero-stats div,
.faq-hero-card {
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 28px 70px rgba(0,0,0,.2);
  backdrop-filter: blur(14px);
}

.faq-hero-stats div {
  min-height: 92px;
  border-radius: 20px;
  padding: 17px;
}

.faq-hero-stats strong,
.faq-hero-stats span {
  display: block;
}

.faq-hero-stats strong {
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}

.faq-hero-stats span {
  margin-top: 7px;
  color: #aebfd3;
  font-size: 12px;
  font-weight: 800;
}

.faq-hero-card {
  border-radius: 26px;
  padding: 24px;
}

.faq-hero-card > span {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(189,244,236,.13);
  color: #bdf4ec;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.faq-hero-card h2 {
  margin: 16px 0 10px;
  color: #fff;
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: 0;
}

.faq-hero-card p {
  color: #d5e3f2;
  line-height: 1.75;
}

.faq-hero-card a {
  display: inline-flex;
  margin-top: 18px;
  color: #bdf4ec;
  font-size: 13px;
  font-weight: 900;
}

.faq-shell {
  position: relative;
  z-index: 2;
  margin-top: -42px;
  padding-bottom: 72px;
}

.faq-topic-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-bottom: 24px;
  border: 1px solid rgba(226,234,244,.95);
  border-radius: 22px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 18px 50px rgba(14,34,56,.08);
}

.faq-topic-tabs a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 42px;
  border-radius: 14px;
  color: #334155;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 900;
}

.faq-topic-tabs a span {
  display: inline-flex;
  min-width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eef2f7;
  color: #64748b;
  font-size: 11px;
}

.faq-topic-tabs a.active,
.faq-topic-tabs a:hover {
  background: #eefbf7;
  color: #0b8b7a;
}

.faq-topic-tabs a.active span,
.faq-topic-tabs a:hover span {
  background: #fff;
  color: #0b8b7a;
}

.faq-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.faq-main-list {
  display: grid;
  gap: 22px;
}

.faq-group {
  border: 1px solid rgba(226,234,244,.95);
  border-radius: 24px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 18px 50px rgba(14,34,56,.08);
}

.faq-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.faq-group-head > span {
  order: 2;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #eefbf7;
  color: #0b8b7a;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
}

.faq-group-title {
  color: #07111f;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.2;
  letter-spacing: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid #e2eaf4;
  border-radius: 18px;
  background: #f8fbff;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  border: 0;
  background: transparent;
  color: #10233d;
  padding: 18px 20px;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 900;
}

.faq-question span {
  min-width: 0;
}

.faq-question[aria-expanded="true"] {
  background: #fff;
  color: #0b8b7a;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: #0b8b7a;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform .25s;
}

.faq-answer {
  border-top: 1px solid #e2eaf4;
  background: #fff;
  padding: 0 20px 18px;
  color: #4d6075;
  font-size: 14px;
  line-height: 1.8;
}

.faq-answer p {
  margin: 14px 0 0;
}

.faq-side-rail {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 16px;
}

.faq-side-card,
.faq-side-note,
.faq-cta-row {
  border: 1px solid rgba(226,234,244,.95);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(14,34,56,.08);
}

.faq-side-card {
  padding: 20px;
}

.faq-side-card h2 {
  margin-bottom: 12px;
  color: #07111f;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0;
}

.faq-side-card a {
  display: block;
  border-top: 1px solid #edf2f7;
  padding: 13px 0;
  color: #334155;
  font-size: 14px;
  font-weight: 900;
}

.faq-side-card a:hover {
  color: #0b8b7a;
}

.faq-side-note {
  padding: 20px;
  background: linear-gradient(135deg, #fff8e8, #fffdf7);
  border-color: #f3c56f;
}

.faq-side-note strong {
  display: block;
  margin-bottom: 8px;
  color: #7a4b00;
  font-weight: 900;
}

.faq-side-note p {
  color: #63420a;
  font-size: 13px;
  line-height: 1.7;
}

.faq-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 24px;
}

.faq-cta-row span {
  display: block;
  color: #07111f;
  font-size: 20px;
  font-weight: 900;
}

.faq-cta-row p {
  max-width: 680px;
  margin: 6px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
}

/* --- Filter bar -------------------------------------------- */
.filter-bar { background: var(--clr-surface); border-radius: 16px; padding: 20px; }
.filter-form {}
.filter-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-end; }
.filter-group { display: flex; flex-direction: column; gap: 6px; min-width: 160px; flex: 1; }
.filter-label { font-size: 12px; font-weight: 600; color: var(--clr-text-muted); }
.filter-select { border: 1px solid var(--clr-border); border-radius: 10px; padding: 10px 12px; font-size: 14px; background: var(--clr-bg); color: var(--clr-text); appearance: none; -webkit-appearance: none; cursor: pointer; }
.filter-actions { display: flex; gap: 8px; flex-shrink: 0; }
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.filter-chips-label { font-size: 12px; color: var(--clr-text-muted); }
.filter-chip { background: var(--clr-mint-light); color: var(--clr-primary); font-size: 12px; padding: 4px 10px; border-radius: 20px; }

/* --- Archive meta row -------------------------------------- */
.archive-results-meta { font-size: 13px; color: var(--clr-text-muted); }
.results-count strong { color: var(--clr-text); }
.service-archive-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 20px; }

/* --- Premium service archive ------------------------------- */
.service-archive-hero {
    background:
        radial-gradient(circle at 12% 18%, rgba(14,168,149,.18) 0, transparent 30%),
        radial-gradient(circle at 84% 10%, rgba(37,99,235,.15) 0, transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #eef5f8 100%);
    border-bottom: 1px solid var(--line);
}
.service-archive-hero .vtg-breadcrumb { padding-top: 18px; }
.service-archive-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
    gap: 28px;
    align-items: stretch;
    padding: 26px 0 46px;
}
.service-archive-hero-copy {
    min-width: 0;
}
.archive-eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.86);
    border-radius: 999px;
    padding: 8px 12px;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 900;
    box-shadow: var(--shadow-sm);
}
.service-archive-hero .page-title {
    font-size: clamp(2.2rem, 5vw, 4.6rem);
    line-height: 1.1;
    letter-spacing: 0;
    max-width: 820px;
    margin: 18px 0 16px;
}
.service-archive-hero .page-desc {
    max-width: 900px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--muted);
}
.archive-trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 940px;
    margin-top: 24px;
}
.archive-trust-strip div,
.archive-hero-note,
.service-filter-panel,
.archive-seo-panel {
    background: rgba(255,255,255,.92);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.archive-trust-strip div {
    border-radius: 18px;
    padding: 15px;
}
.archive-trust-strip strong {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--dark);
}
.archive-trust-strip span {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
}
.archive-hero-note {
    border-radius: 26px;
    padding: 24px;
    align-self: end;
}
.archive-hero-note h2 {
    font-size: 18px;
    margin-bottom: 12px;
}
.archive-hero-note ul {
    display: grid;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}
.archive-hero-note li {
    position: relative;
    padding-left: 22px;
}
.archive-hero-note li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--primary);
}
.archive-hero-note a {
    display: inline-flex;
    margin-top: 16px;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 900;
}
.service-archive-shell {
    padding-top: 26px;
    padding-bottom: 56px;
}
.partner-archive-shell {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding-top: 0;
}
.partner-archive-shell .loan-type-quicklinks {
    padding-top: 0;
    padding-bottom: 14px;
}
.partner-archive-shell .service-filter-panel {
    margin-top: 0;
}
.loan-type-quicklinks {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 0 18px;
    scrollbar-width: thin;
}
.loan-type-quicklinks a {
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 14px;
    background: var(--white);
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
}
.loan-type-quicklinks a:hover,
.loan-type-quicklinks a.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}
.service-filter-panel {
    border-radius: 26px;
    padding: 22px;
    margin-bottom: 18px;
}
.filter-panel-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 18px;
}
.filter-panel-head h2,
.service-results-head h2,
.archive-seo-panel h2 {
    font-size: 22px;
    letter-spacing: 0;
    margin-bottom: 6px;
}
.filter-panel-head p {
    max-width: 680px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}
.filter-clear-link {
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}
.service-filter-panel .filter-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(140px, 1fr)) auto;
    gap: 12px;
}
.service-filter-panel .filter-group {
    min-width: 0;
}
.service-filter-panel .filter-select {
    min-height: 46px;
    border-radius: 14px;
    background: #f7fafc;
    font-weight: 700;
}
.service-filter-panel .filter-actions {
    align-items: end;
}
.filter-chips {
    margin: 0 0 20px;
}
.filter-chips-label {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 900;
}
.filter-chip {
    font-weight: 800;
    padding: 6px 11px;
}
.service-results-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: end;
    margin: 26px 0 18px;
}
.service-sort-note {
    max-width: 320px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
    text-align: right;
}
.service-archive-grid {
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    align-items: stretch;
}
.offer-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 14px 34px rgba(19,34,56,.06);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.offer-card:hover {
    transform: translateY(-4px);
    border-color: rgba(14,168,149,.38);
    box-shadow: var(--shadow-lg);
}
.offer-card--featured {
    border-color: rgba(14,168,149,.45);
}
.offer-featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    border-radius: 999px;
    background: #fff7ed;
    color: #c2410c;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 900;
}
.offer-card-header {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding-right: 76px;
}
.offer-logo {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-light), var(--blue-light));
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
}
.offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.offer-name {
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 8px;
}
.offer-name a:hover {
    color: var(--primary-dark);
}
.offer-stars {
    margin-top: 8px;
}
.offer-card-summary {
    min-height: 44px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}
.offer-tax-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.offer-tax-row a,
.offer-tax-row span {
    border-radius: 999px;
    background: #f2f6fa;
    color: #42566f;
    padding: 6px 9px;
    font-size: 11px;
    font-weight: 800;
}
.offer-tax-row a:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
}
.offer-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.offer-stat {
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px;
}
.offer-stat-label {
    display: block;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 4px;
}
.offer-stat-val {
    display: block;
    color: var(--dark);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.35;
}
.offer-compliance {
    display: grid;
    gap: 8px;
    padding-top: 4px;
}
.offer-compliance div {
    border-left: 3px solid var(--primary);
    background: #f8fafc;
    border-radius: 12px;
    padding: 10px 12px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}
.offer-compliance span {
    display: block;
    color: var(--dark);
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 2px;
}
.offer-warning {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 14px;
    color: #7a5c00;
    padding: 11px 12px;
    font-size: 12px;
    line-height: 1.55;
}
.offer-card-footer {
    display: flex;
    gap: 10px;
    margin-top: auto;
}
.offer-card-footer .btn {
    flex: 1;
}
.archive-seo-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 24px;
    border-radius: 26px;
    padding: 26px;
    margin-top: 34px;
}
.knowledge-seo-panel {
    position: relative;
    overflow: hidden;
    grid-template-columns: minmax(0, 1fr) 350px;
    align-items: start;
    margin-top: 24px;
    padding: 28px;
    border-color: rgba(214,226,240,.94);
    background:
        linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,252,255,.96)),
        #fff;
    box-shadow: 0 22px 58px rgba(15,23,42,.08);
}
.knowledge-seo-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--blue), #f59e0b);
}
.knowledge-seo-panel::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -110px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(14,168,149,.07);
    pointer-events: none;
}
.knowledge-seo-panel > * {
    position: relative;
    z-index: 1;
}
.knowledge-seo-panel h2 {
    max-width: 820px;
    font-size: clamp(1.55rem, 2.2vw, 2.35rem);
    line-height: 1.22;
}
.knowledge-seo-panel p {
    max-width: 980px;
}
.knowledge-seo-points {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}
.knowledge-seo-points span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    border: 1px solid rgba(14,168,149,.22);
    border-radius: 999px;
    background: #effaf7;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 900;
}
.knowledge-seo-points span::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    margin-right: 7px;
}
.archive-seo-panel p {
    color: var(--muted);
    line-height: 1.8;
    margin-top: 10px;
}
.archive-seo-links {
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
}
.knowledge-seo-panel .archive-seo-links {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 16px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,249,252,.98));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 14px 34px rgba(15,23,42,.055);
}
.knowledge-seo-panel .archive-seo-links::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--blue));
}
.archive-seo-links h3 {
    font-size: 15px;
    margin-bottom: 12px;
}
.knowledge-seo-panel .archive-seo-links h3 {
    margin: 8px 0 12px;
    color: var(--dark);
    font-size: 16px;
}
.archive-seo-links a {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding: 9px 0;
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
}
.knowledge-seo-panel .archive-seo-links a {
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(214,226,240,.9);
    border-radius: 14px;
    background: #fff;
    margin-top: 8px;
    padding: 12px 13px;
    box-shadow: 0 8px 20px rgba(15,23,42,.035);
    line-height: 1.35;
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, color .16s ease;
}
.knowledge-seo-panel .archive-seo-links a::after {
    content: "→";
    color: var(--primary-dark);
    font-weight: 900;
}
.archive-seo-links a:last-child {
    border-bottom: 0;
}
.archive-seo-links a:hover {
    color: var(--primary-dark);
}
.knowledge-seo-panel .archive-seo-links a:hover {
    border-color: rgba(14,168,149,.34);
    box-shadow: 0 12px 26px rgba(15,23,42,.065);
    transform: translateX(2px);
}
.knowledge-seo-panel .archive-seo-links a::after {
    content: "→";
    display: inline-grid;
    place-items: center;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #e9fbf7;
    color: var(--primary-dark);
    font-weight: 900;
}

.knowledge-seo-panel .archive-seo-links a::after {
    content: "\2192";
}

/* --- Legal pages ------------------------------------------- */
.legal-article { max-width: 800px; margin: 0 auto; }
.legal-title { font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 8px; }
.legal-updated { font-size: 13px; color: var(--clr-text-muted); margin-bottom: 32px; }
.legal-body { line-height: 1.85; }
.legal-body h2 { font-size: 1.15rem; font-weight: 700; margin: 36px 0 12px; color: var(--clr-primary); }
.legal-body p { margin-bottom: 14px; }
.legal-body ul, .legal-body ol { margin: 12px 0 14px 22px; }
.legal-body li { margin-bottom: 6px; }
.legal-disclaimer-banner { background: #fff8e1; border: 1px solid #ffe082; border-radius: 12px; padding: 18px 20px; font-weight: 600; color: #7a5c00; margin-bottom: 28px; }
.cookies-table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
.cookies-table th, .cookies-table td { text-align: left; padding: 12px 14px; border: 1px solid var(--clr-border); }
.cookies-table thead { background: var(--clr-surface); }

/* --- Contact page ------------------------------------------ */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 28px;
  align-items: start;
}

.contact-form-col {
  border: 1px solid rgba(226,234,244,.95);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0% 0%, rgba(14,168,149,.1), transparent 34%),
    #fff;
  padding: clamp(24px, 3.5vw, 42px);
  box-shadow: 0 24px 70px rgba(14,34,56,.1);
}

.contact-form-col .page-title {
  margin: 0 0 10px;
  color: #07111f;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.contact-form-col .page-desc {
  max-width: 760px;
  margin: 0 0 26px;
  color: #4d6075;
  font-size: 16px;
  line-height: 1.75;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form .form-group {
  display: grid;
  gap: 8px;
}

.contact-form label {
  color: #26384f;
  font-size: 13px;
  font-weight: 900;
}

.contact-form .required {
  color: #dc2626;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #d7e1ee;
  border-radius: 14px;
  background: #f8fbff;
  color: #07111f;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 700;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.65;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #0ea895;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(14,168,149,.12);
}

.contact-form .btn {
  width: fit-content;
  min-width: 150px;
  min-height: 50px;
  padding-inline: 24px;
}

.alert {
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
  margin-bottom: 18px;
}

.alert-success {
  border: 1px solid #b7ecd8;
  background: #eefbf7;
  color: #0b6f63;
}

.alert-error {
  border: 1px solid #fecaca;
  background: #fff1f2;
  color: #991b1b;
}

.contact-info-col {
  position: sticky;
  top: 118px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.contact-info-card,
.contact-faq-cta,
.contact-partner-cta {
  border: 1px solid rgba(226,234,244,.95);
  border-radius: 22px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 18px 50px rgba(14,34,56,.08);
}

.contact-info-card h3 {
  margin: 0 0 18px;
  color: #07111f;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: 0;
}

.contact-info-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  align-items: flex-start;
  padding: 15px 0;
  border-top: 1px solid #edf2f7;
}

.contact-info-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.contact-info-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #eefbf7;
  color: #0b8b7a;
  font-size: 18px;
}

.contact-info-label {
  margin-bottom: 4px;
  color: #64748b;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.contact-info-val {
  color: #07111f;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-info-val:hover {
  color: #0b8b7a;
}

.contact-info-note {
  margin-top: 4px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.55;
}

.contact-faq-cta h4,
.contact-partner-cta h4 {
  margin: 0 0 8px;
  color: #07111f;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: 0;
}

.contact-faq-cta p,
.contact-partner-cta p {
  margin: 0 0 14px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.65;
}
.alert { border-radius: 12px; padding: 14px 18px; font-size: 14px; margin-bottom: 20px; }
.alert-success { background: #e8f5e9; color: #2e7d32; }
.alert-error   { background: #ffebee; color: #c62828; }

/* --- About page -------------------------------------------- */
.page-hero-section { background: linear-gradient(135deg, #f0fdf9 0%, #e0f2fe 100%); padding: 64px 0; text-align: center; }
.page-hero-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 12px; }
.page-hero-desc { font-size: 1.1rem; color: var(--clr-text-muted); max-width: 600px; margin: 0 auto; }
.about-section { margin-bottom: 56px; }
.about-section-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 24px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.about-text p { margin-bottom: 16px; line-height: 1.8; }
.about-highlights { display: flex; flex-direction: column; gap: 16px; }
.highlight-card { background: var(--clr-surface); border-radius: 16px; padding: 20px; display: flex; gap: 14px; }
.highlight-icon { font-size: 22px; flex-shrink: 0; }
.highlight-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.highlight-card p { font-size: 13px; color: var(--clr-text-muted); line-height: 1.6; margin: 0; }
.about-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.about-step { background: var(--clr-surface); border-radius: 16px; padding: 24px; text-align: center; }
.step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--clr-primary); color: #fff; font-weight: 700; font-size: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.about-step h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.about-step p { font-size: 13px; color: var(--clr-text-muted); line-height: 1.6; margin: 0; }
.about-transparency-box { background: var(--clr-surface); border-radius: 20px; padding: 32px; }
.transparency-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.transparency-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.6; }
.transparency-list svg { flex-shrink: 0; color: var(--clr-primary); margin-top: 2px; }
.about-cta-row { display: flex; justify-content: space-between; align-items: center; gap: 24px; background: var(--clr-primary); color: #fff; border-radius: 20px; padding: 32px 40px; }
.about-cta-row h3 { font-size: 1.2rem; margin-bottom: 4px; }
.about-cta-row p { opacity: .85; font-size: 14px; margin: 0; }
.about-cta-btns { display: flex; gap: 12px; flex-shrink: 0; }
.about-cta-btns .btn-outline { border-color: rgba(255,255,255,.6); color: #fff; }
.about-cta-btns .btn-outline:hover { background: rgba(255,255,255,.15); }

/* --- 404 --------------------------------------------------- */
.error-404-wrap { text-align: center; max-width: 520px; margin: 80px auto; }
.error-404-icon { font-size: 56px; margin-bottom: 20px; }
.error-404-title { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.error-404-desc { color: var(--clr-text-muted); margin-bottom: 28px; line-height: 1.7; }
.error-404-search { margin-bottom: 24px; }
.error-404-links { display: flex; gap: 12px; justify-content: center; margin-bottom: 32px; }
.error-404-suggest h3 { font-size: 15px; font-weight: 600; margin-bottom: 10px; }
.error-404-suggest ul { list-style: none; }
.error-404-suggest li { margin-bottom: 8px; }
.error-404-suggest a { color: var(--clr-primary); text-decoration: none; font-size: 14px; }

/* --- Utility spacing --------------------------------------- */
.mt-xs { margin-top: 8px; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 40px; }
.py-lg { padding-top: 56px; padding-bottom: 56px; }

/* === RESPONSIVE — supplemental ========================== */
@media (max-width: 960px) {
    .single-layout,
    .single-service-layout,
    .partner-detail-layout,
    .contact-layout { grid-template-columns: 1fr; }
    .partner-profile-hero-grid { grid-template-columns: 1fr; }
    .partner-profile-stats,
    .partner-verification-cards,
    .partner-safety-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .partner-profile-sidebar { position: static; }
    .service-archive-hero-grid,
    .faq-hero-grid,
    .faq-content-layout,
    .archive-seo-panel,
    .partner-empty-state,
    .partner-assurance-band,
    .partner-hero-checks { grid-template-columns: 1fr; }
    .faq-hero-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .faq-side-rail { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .partner-value-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .knowledge-value-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .knowledge-featured-panel { grid-template-columns: 1fr; }
    .knowledge-featured-media { min-height: 260px; }
    .service-filter-panel .filter-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .service-filter-panel .filter-actions { grid-column: 1 / -1; }
    .service-results-head { align-items: flex-start; flex-direction: column; }
    .service-sort-note { max-width: none; text-align: left; }
    .partner-empty-actions { justify-content: flex-start; }
    .single-sidebar, .single-service-sidebar { order: -1; position: static; }
    .partner-profile-sidebar.single-service-sidebar { order: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .partner-profile-sidebar .partner-cta-widget { grid-column: 1 / -1; }
    .about-grid, .about-steps { grid-template-columns: 1fr 1fr; }
    .about-cta-row { flex-direction: column; text-align: center; }
    .service-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .service-process-grid { grid-template-columns: 1fr; }
    .premium-service-layout { gap: 24px; }
    .premium-service-hero { grid-template-columns: 76px minmax(0, 1fr); padding: 24px; }
    .premium-service-hero .service-detail-logo { width: 76px; height: 76px; }
    .single-service-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .single-service-sidebar .service-lead-form-box { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
    .service-archive-hero-grid { padding-bottom: 30px; }
    .partner-archive-hero .service-archive-hero-grid { padding: 16px 0 22px; }
    .partner-archive-shell { margin-top: 0; }
    .partner-archive-hero .page-title { font-size: clamp(2.05rem, 11vw, 3rem); line-height: 1.1; }
    .archive-trust-strip,
    .faq-hero-stats,
    .faq-side-rail,
    .partner-hero-score,
    .partner-score-row,
    .partner-value-rail,
    .knowledge-value-rail,
    .service-filter-panel .filter-row,
    .offer-stats { grid-template-columns: 1fr; }
    .partner-hero-actions,
    .partner-hero-actions .btn { width: 100%; }
    .partner-value-rail article { padding: 14px; border-radius: 18px; }
    .knowledge-hero-actions,
    .knowledge-hero-actions .btn,
    .knowledge-featured-actions,
    .knowledge-featured-actions .btn { width: 100%; }
    .knowledge-value-rail { margin-top: 12px; grid-template-columns: 1fr !important; }
    .knowledge-value-rail article { border-radius: 18px; padding: 14px; }
    .knowledge-featured-copy { padding: 20px; }
    .knowledge-featured-media { min-height: 220px; }
    .service-filter-panel,
    .archive-hero-note,
    .archive-seo-panel,
    .offer-card { border-radius: 20px; }
    .offer-card-header { padding-right: 0; }
    .offer-featured-badge { position: static; width: fit-content; order: -1; }
    .offer-card-footer { flex-direction: column; }
    .about-grid, .about-steps { grid-template-columns: 1fr; }
    .filter-row { flex-direction: column; }
    .filter-group { min-width: unset; width: 100%; }
    .form-row { grid-template-columns: 1fr; }
    .cat-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
    .faq-cta-row { flex-direction: column; align-items: flex-start; text-align: left; }
    .error-404-links { flex-direction: column; align-items: center; }
    .about-cta-btns { flex-direction: column; width: 100%; }
    .partner-archive-grid,
    .service-archive-grid,
    .knowledge-grid { grid-template-columns: 1fr; }
    .partner-profile-hero .vtg-breadcrumb {
        padding: 8px 0 5px;
        font-size: 12px;
        line-height: 1.4;
        white-space: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .partner-profile-hero .vtg-breadcrumb::-webkit-scrollbar { display: none; }
    .partner-profile-hero-grid { padding: 4px 0 18px; }
    .partner-profile-copy,
    .partner-profile-card,
    .partner-profile-section,
    .partner-profile-sidebar .sidebar-widget { border-radius: 20px; padding: 18px; }
    .partner-profile-title-row { grid-template-columns: 1fr; gap: 14px; }
    .partner-profile-logo { width: 76px; height: 76px; border-radius: 20px; }
    .partner-detail-name { font-size: clamp(2rem, 12vw, 3.2rem); }
    .partner-profile-actions,
    .partner-profile-actions .btn { width: 100%; }
    .partner-profile-stats,
    .partner-verification-cards,
    .partner-info-grid,
    .partner-safety-grid { grid-template-columns: 1fr; }
    .section-heading-row { flex-direction: column; }
    .partner-profile-sidebar.single-service-sidebar { display: block; }
    .partner-profile-sidebar .sidebar-widget + .sidebar-widget { margin-top: 14px; }
    .partner-card { padding: 18px; border-radius: 20px; }
    .partner-verification-grid { grid-template-columns: 1fr; }
    .partner-card-footer { grid-template-columns: 1fr; }
    .knowledge-card { border-radius: 20px; }
    .knowledge-card-body { padding: 18px; }
    .knowledge-card-meta a { width: 100%; margin-left: 0; }
    .premium-service-hero { flex-direction: column; border-radius: 22px; padding: 20px; }
    .premium-service-hero { display: grid; grid-template-columns: 1fr; gap: 16px; }
    .premium-service-hero .service-detail-logo { width: 72px; height: 72px; }
    .premium-service-hero .service-detail-name { font-size: 32px; }
    .premium-service-hero .service-detail-meta,
    .service-hero-tax { gap: 6px; }
    .service-hero-actions,
    .service-hero-actions .btn { width: 100%; }
    .premium-service-stats { grid-template-columns: 1fr; }
    .service-transparency-table,
    .service-process-panel,
    .single-service-seo-panel { border-radius: 20px; padding: 18px; }
    .single-service-table { min-width: 560px; }
    .single-service-sidebar { display: block; }
    .service-lead-form-box { padding: 20px; }
    .single-service-seo-panel { gap: 18px; }
}

/* Knowledge archive density overrides */
.knowledge-archive-hero .vtg-breadcrumb {
    padding: 0 0 8px !important;
    margin: 0;
}
.knowledge-archive-hero .service-archive-hero-grid {
    padding: 0 0 8px !important;
    min-height: 0 !important;
    align-items: start;
}
.knowledge-archive-hero .service-archive-hero-copy {
    align-self: start;
}
.knowledge-archive-hero .archive-eyebrow {
    margin-top: 0;
}
.knowledge-archive-hero .page-title {
    margin: 14px 0 10px !important;
    line-height: 1.04;
}
.knowledge-archive-hero .page-desc {
    margin-bottom: 0;
}
.knowledge-archive-hero .archive-trust-strip {
    margin-top: 14px !important;
}
.knowledge-archive-hero .archive-trust-strip div {
    padding: 13px 15px;
}
.knowledge-hero-actions {
    margin-top: 12px !important;
}
.knowledge-archive-hero .archive-hero-note {
    align-self: start;
    padding: 22px !important;
}
.knowledge-archive-hero .archive-hero-note ul {
    gap: 9px;
}
.knowledge-value-rail {
    margin-top: 12px !important;
    margin-bottom: 0 !important;
}
.knowledge-archive-hero {
    margin-bottom: 0 !important;
}
.knowledge-archive-shell {
    padding-top: 14px !important;
}
.knowledge-featured-panel {
    margin-top: 0 !important;
}
.knowledge-archive-hero {
    padding-bottom: 0 !important;
}
.knowledge-archive-hero::after {
    display: none;
}

@media (max-width: 960px) {
    .knowledge-value-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        max-width: none;
        margin-top: 14px !important;
    }
}

/* Final lock: compact knowledge guide cards in the archive hero. */
.knowledge-archive-hero .knowledge-value-rail {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important;
    margin: 10px 0 0 !important;
    max-width: none !important;
}

.knowledge-archive-hero .knowledge-value-rail article {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    min-width: 0 !important;
    min-height: 68px !important;
    height: auto !important;
    padding: 13px 14px !important;
    border-radius: 18px !important;
}

.knowledge-archive-hero .knowledge-value-rail span {
    flex: 0 0 42px !important;
    width: 42px !important;
    height: 42px !important;
}

.knowledge-archive-hero .knowledge-value-rail strong {
    min-width: 0 !important;
    max-width: 100% !important;
    color: #071327 !important;
    font-size: 15px !important;
    line-height: 1.22 !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
}

.knowledge-archive-hero .knowledge-value-rail p {
    display: none !important;
}

@media (max-width: 1180px) {
    .knowledge-archive-hero .knowledge-value-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 640px) {
    .knowledge-archive-hero .knowledge-value-rail {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
}

/* --- Premium homepage refresh ----------------------------------------- */
.premium-home {
  --premium-ink: #07111f;
  --premium-muted: #526174;
  --premium-line: #dde7f2;
  background: #f6f8fb;
}

.premium-home .container { width: min(1480px, calc(100% - 48px)); }

.premium-hero {
  padding: 30px 0 34px;
  background: linear-gradient(180deg, #fbfdff 0%, #f6f8fb 100%);
}

.premium-hero .aff-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 400px);
  gap: 18px;
}

.premium-hero .aff-hero-main {
  min-height: 460px;
  border: 1px solid rgba(15, 31, 51, .08);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(239,247,255,.9)),
    radial-gradient(circle at 82% 22%, rgba(14,168,149,.14), transparent 30%);
  box-shadow: 0 24px 70px rgba(16, 31, 52, .10);
  padding: clamp(30px, 4vw, 56px);
}

.premium-hero .aff-hero-main::after {
  right: 30px;
  bottom: 30px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(14,168,149,.16);
  background: radial-gradient(circle, rgba(14,168,149,.12), rgba(37,99,235,.05) 55%, transparent 70%);
}

.premium-hero .aff-kicker {
  border-color: rgba(14,168,149,.18);
  background: rgba(255,255,255,.74);
  color: #0b7e70;
  box-shadow: none;
  letter-spacing: 0;
}

.premium-hero h1 {
  max-width: 720px;
  margin-top: 20px;
  margin-bottom: 14px;
  color: var(--premium-ink);
  font-size: clamp(2.45rem, 4.2vw, 4rem);
  line-height: 1.04;
  font-weight: 900;
}

.premium-hero .aff-lead {
  max-width: 620px;
  color: var(--premium-muted);
  font-size: 17px;
  line-height: 1.62;
}

.premium-hero .aff-hero-cta { gap: 12px; margin-top: 28px; }
.premium-hero .aff-trust-strip { max-width: 590px; margin-top: 30px; }

.premium-hero .aff-trust-strip div {
  border-radius: 16px;
  border-color: rgba(15,31,51,.08);
  background: rgba(255,255,255,.76);
  box-shadow: 0 14px 34px rgba(16, 31, 52, .07);
}

.premium-hero .aff-trust-strip b { font-size: 23px; font-weight: 900; }
.premium-hero .aff-trust-strip span { color: #65758a; font-size: 12px; }

.premium-hero-preview {
  display: none;
}

.preview-bar {
  display: flex;
  gap: 7px;
  padding: 14px 16px;
  background: rgba(7,17,31,.04);
}

.preview-bar span {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: #9fb0c6;
}

.preview-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 18px;
  border-top: 1px solid rgba(15,31,51,.07);
  color: #526174;
  font-size: 14px;
  font-weight: 700;
}

.preview-row b { color: #07111f; }
.preview-row.strong b { color: var(--primary-dark); }

.premium-quick-box {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background: linear-gradient(180deg, #07111f, #0d2138);
  box-shadow: 0 24px 70px rgba(7,17,31,.22);
}

.premium-quick-box h2 { font-size: 26px; font-weight: 900; }
.premium-quick-box .aff-quick-form { gap: 13px; margin-top: 18px; }
.premium-quick-box .aff-note { margin-top: 14px; }

.premium-home .btn {
  border-radius: 14px;
  min-height: 44px;
}

.premium-home .btn-primary {
  background: linear-gradient(135deg, #0ea895, #12b4a7);
  box-shadow: 0 12px 28px rgba(14,168,149,.24);
}

.premium-home .btn-outline {
  border-width: 1px;
  background: rgba(255,255,255,.72);
}

.premium-home .aff-section { padding: 54px 0; }
.premium-home .aff-muted { background: #eef3f7; }
.premium-home .aff-section-head { margin-bottom: 22px; }

.premium-home .aff-section-head h2 {
  max-width: 560px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 900;
}

.premium-home .aff-section-head p {
  max-width: 340px;
  color: #66768a;
  font-size: 14px;
}

.premium-home .aff-filters a {
  border-color: rgba(15,31,51,.08);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(16,31,52,.04);
}

.premium-home .aff-layout { grid-template-columns: minmax(0, 1fr) 300px; }

.premium-home .aff-offer,
.premium-home .aff-cat,
.premium-home .aff-post,
.premium-home .aff-compare,
.premium-side-card {
  border-color: rgba(15,31,51,.08);
  box-shadow: 0 14px 36px rgba(16,31,52,.07);
}

.premium-home .aff-offer {
  border-radius: 18px;
  grid-template-columns: 62px minmax(0, 1fr) minmax(130px, 180px) minmax(130px, 160px);
}

.premium-home .aff-logo {
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(15, 31, 51, 0.08);
  color: #fff;
  overflow: hidden;
}

.premium-home .aff-meta span,
.premium-home .aff-filters a {
  background: #fff;
}

.premium-home .aff-filters a.active {
  background: #07111f;
  border-color: #07111f;
  color: #fff;
  box-shadow: 0 14px 28px rgba(7,17,31,.16);
}

.premium-home .aff-meta .verified { background: #eaf8f1; }

.premium-side-card {
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(16,31,52,.08);
}

.premium-side-card .aff-check { font-size: 13px; }
.premium-home .aff-category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.premium-home .aff-cat {
  border: 0;
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(16, 31, 52, 0.09);
  min-height: 178px;
  overflow: hidden;
  padding: 24px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.premium-home .aff-cat::before {
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: 7px;
}

.premium-home .aff-cat::after {
  border-radius: 999px;
  content: "";
  height: 108px;
  opacity: 0.16;
  position: absolute;
  right: -38px;
  top: -44px;
  width: 108px;
}

.premium-home .aff-cat:hover {
  box-shadow: 0 26px 60px rgba(16, 31, 52, 0.15);
  transform: translateY(-5px);
}

.premium-home .aff-cat b {
  border-radius: 18px;
  box-shadow: 0 14px 26px rgba(7, 17, 31, 0.18);
  color: #fff;
  height: 58px;
  margin-bottom: 18px;
  position: relative;
  width: 58px;
  z-index: 1;
}

.premium-home .aff-cat svg {
  height: 28px;
  width: 28px;
}

.premium-home .aff-cat h3,
.premium-home .aff-cat p {
  position: relative;
  z-index: 1;
}

.premium-home .aff-cat h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 9px;
}

.premium-home .aff-cat p {
  color: #31425a;
  font-size: 14px;
}

.premium-home .aff-cat:nth-child(1) {
  background: linear-gradient(135deg, #ffffff 0%, #e8fff8 100%);
}

.premium-home .aff-cat:nth-child(1)::before,
.premium-home .aff-cat:nth-child(1) b,
.premium-home .aff-cat:nth-child(1)::after {
  background: #0ea895;
}

.premium-home .aff-cat:nth-child(2) {
  background: linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
}

.premium-home .aff-cat:nth-child(2)::before,
.premium-home .aff-cat:nth-child(2) b,
.premium-home .aff-cat:nth-child(2)::after {
  background: #2563eb;
}

.premium-home .aff-cat:nth-child(3) {
  background: linear-gradient(135deg, #ffffff 0%, #fff6df 100%);
}

.premium-home .aff-cat:nth-child(3)::before,
.premium-home .aff-cat:nth-child(3) b,
.premium-home .aff-cat:nth-child(3)::after {
  background: #f59e0b;
}

.premium-home .aff-cat:nth-child(4) {
  background: linear-gradient(135deg, #ffffff 0%, #fff0f6 100%);
}

.premium-home .aff-cat:nth-child(4)::before,
.premium-home .aff-cat:nth-child(4) b,
.premium-home .aff-cat:nth-child(4)::after {
  background: #db2777;
}

.premium-home .aff-compare { border-radius: 20px; }
.premium-home .aff-compare table { min-width: 760px; }
.premium-home .aff-compare th { background: #f7fafc; letter-spacing: 0; }
.premium-home .aff-content-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.premium-home .aff-post {
  display: flex;
  flex-direction: column;
}

.premium-home .aff-post-cover {
  flex: 0 0 168px;
  height: 168px;
  background: linear-gradient(135deg, #07111f, #123a5f);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.premium-home .aff-post-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.premium-home .aff-post-body {
  background: #fff;
  border-top: 1px solid rgba(15,31,51,.08);
  margin: 0;
  padding: 20px 22px 24px;
  position: relative;
  z-index: 2;
}

.premium-home .aff-post-body span {
  color: #0e9f8f;
  display: inline-block;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  margin: 0 0 12px;
}

.premium-home .aff-post-body h3 {
  color: #07111f;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.28;
  margin: 0;
}

.premium-home .aff-post-body p { display: none; }

.vtg-citation-summary {
  background: #f5fbfa;
  border-bottom: 1px solid rgba(14,168,149,.14);
  border-top: 1px solid rgba(14,168,149,.10);
}

.vtg-citation-summary .container {
  align-items: center;
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  padding-bottom: 30px;
  padding-top: 30px;
}

.vtg-citation-copy span,
.vtg-answer-first span {
  color: #0b8b7a;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 10px;
}

.vtg-citation-copy h2 {
  color: #07111f;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 10px;
}

.vtg-citation-copy p {
  color: #43536a;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.vtg-citation-facts {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vtg-citation-facts div {
  background: #fff;
  border: 1px solid rgba(15,31,51,.08);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(16,31,52,.06);
  padding: 18px 14px;
  text-align: center;
}

.vtg-citation-facts strong {
  color: #07111f;
  display: block;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.vtg-citation-facts span {
  color: #607189;
  display: block;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  margin-top: 8px;
}

.premium-home .aff-bottom-cta {
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(7,17,31,.98), rgba(15,48,82,.96));
  box-shadow: 0 24px 70px rgba(7,17,31,.18);
}

.premium-home .aff-bottom-cta h2 { font-weight: 900; }

.premium-footer-grid {
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(120px, 1fr));
}

.premium-footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 16px;
}

.premium-footer-contact a {
  display: inline-flex;
  line-height: 1.2;
  color: #c8d5e6;
}

@media (max-width: 1100px) {
  .premium-hero .aff-hero-grid,
  .premium-home .aff-layout {
    grid-template-columns: 1fr;
  }

  .vtg-citation-summary .container {
    grid-template-columns: 1fr;
  }

  .premium-hero .aff-hero-main { min-height: auto; }

  .premium-home .aff-offer {
    grid-template-columns: 58px minmax(0, 1fr) 150px;
  }
}

@media (max-width: 760px) {
  .premium-home .container { width: min(100% - 24px, 1480px); }
  .premium-hero { padding-top: 16px; }
  .premium-hero .aff-hero-main,
  .premium-quick-box {
    border-radius: 22px;
    padding: 22px;
  }

  .premium-hero h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
    line-height: 1.07;
  }

  .premium-hero .aff-lead { font-size: 15px; }

  .premium-home .aff-trust-strip,
  .premium-home .aff-category-grid,
  .premium-home .aff-content-grid,
  .vtg-citation-facts,
  .premium-article .vtg-answer-first {
    grid-template-columns: 1fr;
  }

  .premium-home .aff-offer { grid-template-columns: 1fr; }
  .premium-home .aff-section { padding: 38px 0; }
  .premium-footer-grid { grid-template-columns: 1fr; }
}

/* --- Premium service detail v2 ---------------------------------------- */
.single-dich-vu-tai-chinh {
  background: #f5f7fb;
}

.single-dich-vu-tai-chinh .site-main > .container {
  width: min(1220px, calc(100% - 48px));
}

.single-dich-vu-tai-chinh .py-lg {
  padding-top: 28px;
  padding-bottom: 64px;
}

.single-dich-vu-tai-chinh .vtg-breadcrumb {
  margin-bottom: 16px;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.single-dich-vu-tai-chinh .premium-service-layout {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 380px);
  gap: 24px;
}

.single-dich-vu-tai-chinh .single-service-main,
.single-dich-vu-tai-chinh .single-service-sidebar {
  min-width: 0;
}

.single-dich-vu-tai-chinh .premium-service-hero {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  min-height: 0;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 18%, rgba(18,180,167,.22), transparent 32%),
    linear-gradient(135deg, #07111f 0%, #0d2138 58%, #113456 100%);
  color: #fff;
  box-shadow: 0 24px 70px rgba(7,17,31,.24);
}

.single-dich-vu-tai-chinh .premium-service-hero::after {
  opacity: .28;
  border-color: rgba(255,255,255,.22);
}

.single-dich-vu-tai-chinh .premium-service-hero .service-detail-logo {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.1);
  box-shadow: 0 18px 46px rgba(0,0,0,.18);
}

.single-dich-vu-tai-chinh .premium-service-hero .logo-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #0ea895, #2563eb);
  font-size: 26px;
  font-weight: 900;
}

.single-dich-vu-tai-chinh .premium-service-hero .archive-eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  padding: 8px 11px;
  color: #c7f8ef;
  font-size: 12px;
  font-weight: 900;
}

.single-dich-vu-tai-chinh .premium-service-hero .service-detail-name {
  max-width: 700px;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  line-height: 1.05;
  font-weight: 900;
}

.single-dich-vu-tai-chinh .premium-service-hero .status-badge,
.single-dich-vu-tai-chinh .premium-service-hero .vtg-status,
.single-dich-vu-tai-chinh .premium-service-hero [class*="badge"] {
  box-shadow: none;
}

.single-dich-vu-tai-chinh .premium-service-hero .meta-item {
  border-color: rgba(255,255,255,.13);
  background: rgba(255,255,255,.08);
  color: #d6e6f7;
}

.single-dich-vu-tai-chinh .service-hero-tax a,
.single-dich-vu-tai-chinh .service-hero-tax span {
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.09);
  color: #fff;
}

.single-dich-vu-tai-chinh .service-hero-actions .btn {
  min-height: 48px;
  border-radius: 14px;
  padding-inline: 20px;
}

.single-dich-vu-tai-chinh .service-hero-actions .btn-ghost,
.single-dich-vu-tai-chinh .service-hero-actions .btn-outline {
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: #fff;
}

.single-dich-vu-tai-chinh .premium-service-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.single-dich-vu-tai-chinh .premium-service-stats .stat-card {
  min-height: 118px;
  border: 1px solid rgba(15,31,51,.08);
  border-radius: 20px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 14px 36px rgba(16,31,52,.07);
}

.single-dich-vu-tai-chinh .premium-service-stats .stat-label {
  color: #64748b;
  font-size: 11px;
  letter-spacing: 0;
}

.single-dich-vu-tai-chinh .premium-service-stats .stat-value {
  color: #07111f;
  font-size: 18px;
  line-height: 1.28;
}

.single-dich-vu-tai-chinh .premium-service-layout .single-service-main > .service-section,
.single-dich-vu-tai-chinh .premium-service-layout .single-service-main > .service-disclaimer-box,
.single-dich-vu-tai-chinh .single-service-seo-panel {
  border: 1px solid rgba(15,31,51,.08);
  border-radius: 22px;
  background: #fff;
  padding: 26px;
  box-shadow: 0 14px 36px rgba(16,31,52,.06);
}

.single-dich-vu-tai-chinh .premium-service-layout .single-service-main > .service-section {
  margin-bottom: 18px;
}

.single-dich-vu-tai-chinh .service-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(15,31,51,.08);
  padding-bottom: 14px;
  color: #07111f;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}

.single-dich-vu-tai-chinh .service-section-title::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #0ea895;
  box-shadow: 0 0 0 6px rgba(14,168,149,.1);
}

.single-dich-vu-tai-chinh .service-section-body {
  color: #34445a;
  line-height: 1.78;
}

.single-dich-vu-tai-chinh .service-section-body p {
  margin-bottom: 10px;
}

.single-dich-vu-tai-chinh .service-section-body ul,
.single-dich-vu-tai-chinh .service-section-body ol {
  display: grid;
  gap: 8px;
  margin-left: 0;
  list-style: none;
}

.single-dich-vu-tai-chinh .service-section-body li {
  position: relative;
  border-radius: 14px;
  background: #f7fafc;
  padding: 11px 13px 11px 34px;
}

.single-dich-vu-tai-chinh .service-section-body li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 19px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #0ea895;
}

.single-dich-vu-tai-chinh .service-transparency-table {
  overflow: hidden;
}

.single-dich-vu-tai-chinh .single-service-table {
  min-width: 0;
}

.single-dich-vu-tai-chinh .single-service-table th,
.single-dich-vu-tai-chinh .single-service-table td {
  border-bottom: 1px solid rgba(15,31,51,.07);
  padding: 15px 16px;
}

.single-dich-vu-tai-chinh .single-service-table th {
  color: #64748b;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.single-dich-vu-tai-chinh .single-service-table td {
  color: #12233a;
  font-weight: 700;
}

.single-dich-vu-tai-chinh .premium-calc-mini,
.single-dich-vu-tai-chinh .service-process-grid div {
  border-color: rgba(15,31,51,.08);
  background: #f8fbff;
  box-shadow: none;
}

.single-dich-vu-tai-chinh .service-process-grid {
  gap: 10px;
}

.single-dich-vu-tai-chinh .service-process-grid div {
  border-radius: 18px;
  padding: 18px;
}

.single-dich-vu-tai-chinh .service-process-grid p {
  display: none;
}

.single-dich-vu-tai-chinh .service-disclaimer-box {
  background: #fff8e8;
  border-color: #f6d28b;
}

.single-dich-vu-tai-chinh .single-service-sidebar {
  top: 92px;
}

.single-dich-vu-tai-chinh .single-service-sidebar .sidebar-widget,
.single-dich-vu-tai-chinh .single-service-sidebar .service-lead-form-box {
  border: 1px solid rgba(15,31,51,.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(16,31,52,.08);
}

.single-dich-vu-tai-chinh .service-affiliate-widget {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 0%, rgba(18,180,167,.18), transparent 36%),
    linear-gradient(135deg, #07111f, #0d2138);
  color: #fff;
}

.single-dich-vu-tai-chinh .service-affiliate-widget .widget-title,
.single-dich-vu-tai-chinh .service-affiliate-widget p {
  color: #fff;
}

.single-dich-vu-tai-chinh .service-affiliate-widget p {
  color: #c8d7e8;
}

.single-dich-vu-tai-chinh .service-affiliate-widget .small-link {
  color: #bdf4ec;
}

.single-dich-vu-tai-chinh .service-summary-widget dl div {
  grid-template-columns: 110px 1fr;
  align-items: start;
  gap: 12px;
}

.single-dich-vu-tai-chinh .service-lead-form-box .lead-form-title,
.single-dich-vu-tai-chinh .sidebar-widget .widget-title {
  color: #07111f;
  font-size: 21px;
  font-weight: 900;
}

.single-dich-vu-tai-chinh .lead-form input,
.single-dich-vu-tai-chinh .lead-form select,
.single-dich-vu-tai-chinh .lead-form textarea {
  border-radius: 13px;
  background: #f8fbff;
}

.single-dich-vu-tai-chinh .lead-form .btn-full {
  border-radius: 14px;
}

.single-dich-vu-tai-chinh .single-service-seo-panel {
  grid-template-columns: minmax(0, 1fr) 260px;
  background: #f8fbff;
}

.single-dich-vu-tai-chinh .single-service-seo-panel p {
  color: #526174;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 1180px) {
  .single-dich-vu-tai-chinh .premium-service-layout,
  .single-dich-vu-tai-chinh .premium-service-stats {
    grid-template-columns: 1fr 1fr;
  }

  .single-dich-vu-tai-chinh .single-service-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .single-dich-vu-tai-chinh .single-service-sidebar .service-lead-form-box {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .single-dich-vu-tai-chinh .site-main > .container {
    width: min(100% - 24px, 1220px);
  }

  .single-dich-vu-tai-chinh .py-lg {
    padding-top: 18px;
  }

  .single-dich-vu-tai-chinh .premium-service-layout,
  .single-dich-vu-tai-chinh .premium-service-hero,
  .single-dich-vu-tai-chinh .premium-service-stats,
  .single-dich-vu-tai-chinh .service-process-grid,
  .single-dich-vu-tai-chinh .single-service-sidebar,
  .single-dich-vu-tai-chinh .single-service-seo-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .single-dich-vu-tai-chinh .single-service-main,
  .single-dich-vu-tai-chinh .single-service-sidebar,
  .single-dich-vu-tai-chinh .premium-service-hero {
    width: 100%;
    max-width: 100%;
  }

  .single-dich-vu-tai-chinh .premium-service-hero {
    border-radius: 22px;
    padding: 22px;
  }

  .single-dich-vu-tai-chinh .premium-service-hero .service-detail-logo {
    width: 78px;
    height: 78px;
    border-radius: 20px;
  }

  .single-dich-vu-tai-chinh .premium-service-hero .service-detail-name {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .single-dich-vu-tai-chinh .service-hero-actions .btn {
    width: 100%;
  }

  .single-dich-vu-tai-chinh .premium-service-layout .single-service-main > .service-section,
  .single-dich-vu-tai-chinh .premium-service-layout .single-service-main > .service-disclaimer-box,
  .single-dich-vu-tai-chinh .single-service-seo-panel {
    padding: 20px;
    border-radius: 20px;
  }

  .single-dich-vu-tai-chinh .single-service-table {
    min-width: 560px;
  }

  .single-dich-vu-tai-chinh .service-summary-widget dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* --- Service detail product-style upgrade ----------------------------- */
.single-dich-vu-tai-chinh .premium-service-hero {
  grid-template-columns: 92px minmax(0, 1fr) minmax(260px, 310px);
  align-items: stretch;
  gap: 26px;
  padding: 30px;
}

.single-dich-vu-tai-chinh .premium-service-hero .service-detail-info {
  align-self: center;
}

.service-hero-decision {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: rgba(255,255,255,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 24px 50px rgba(0,0,0,.18);
  padding: 20px;
  backdrop-filter: blur(14px);
}

.service-hero-decision .decision-label {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: rgba(189,244,236,.14);
  color: #bdf4ec;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.service-hero-decision > strong {
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 900;
}

.decision-metrics {
  display: grid;
  gap: 9px;
}

.decision-metrics div {
  display: grid;
  gap: 4px;
  border-radius: 16px;
  background: rgba(255,255,255,.1);
  padding: 12px;
}

.decision-metrics span {
  color: #aebfd3;
  font-size: 11px;
  font-weight: 800;
}

.decision-metrics b {
  color: #fff;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 900;
}

.decision-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 14px;
  background: #fff;
  color: #07111f;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0,0,0,.16);
}

.single-dich-vu-tai-chinh .premium-service-stats {
  margin-top: 16px;
}

.single-dich-vu-tai-chinh .premium-service-stats .stat-card {
  position: relative;
  overflow: hidden;
}

.single-dich-vu-tai-chinh .premium-service-stats .stat-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -34px;
  width: 94px;
  height: 94px;
  border-radius: 999px;
  background: rgba(14,168,149,.08);
}

.single-dich-vu-tai-chinh .premium-service-stats .stat-card:first-child {
  background: linear-gradient(135deg, #fff, #eefbf7);
}

.single-dich-vu-tai-chinh .premium-service-stats .stat-card:nth-child(2) {
  background: linear-gradient(135deg, #fff, #eef4ff);
}

.single-dich-vu-tai-chinh .premium-service-layout .single-service-main > .service-section.service-transparency-table {
  border-radius: 26px;
  background:
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.single-dich-vu-tai-chinh .service-summary-widget {
  order: -1;
}

.single-dich-vu-tai-chinh .service-summary-widget::before {
  content: "Overview";
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #eefbf7;
  color: #0b8b7a;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.single-dich-vu-tai-chinh .service-lead-form-box {
  background:
    radial-gradient(circle at 100% 0%, rgba(14,168,149,.12), transparent 34%),
    #fff;
}

.single-dich-vu-tai-chinh .service-lead-form-box .lead-form-title {
  font-size: 24px;
}

.single-dich-vu-tai-chinh .lead-form .btn-full {
  background: linear-gradient(135deg, #0ea895, #12b4a7);
}

.financial-warning-box {
  margin: 26px 0;
  border: 1px solid #f3c56f;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff8e8, #fffdf7);
  padding: 18px 20px;
  color: #513300;
  box-shadow: 0 12px 30px rgba(120, 74, 0, .08);
}

.financial-warning-box strong {
  display: block;
  margin-bottom: 8px;
  color: #7a4b00;
  font-size: 15px;
  font-weight: 900;
}

.financial-warning-box p {
  margin: 0;
  color: #63420a;
  line-height: 1.7;
}

/* --- Premium single article -------------------------------------------- */
.single-knowledge-page {
  background:
    radial-gradient(circle at 10% 0%, rgba(14,168,149,.11), transparent 30%),
    radial-gradient(circle at 90% 4%, rgba(37,99,235,.09), transparent 28%),
    #f4f7fb;
}

.article-hero {
  overflow: hidden;
  padding: 24px 0 78px;
  background:
    linear-gradient(135deg, #07111f 0%, #10233d 58%, #0b8b7a 100%);
  color: #fff;
}

.admin-bar .vtg-header {
  top: 32px;
}

.article-hero .vtg-breadcrumb {
  padding-top: 8px;
  color: rgba(255,255,255,.66);
}

.article-hero .vtg-breadcrumb a {
  color: #bdf4ec;
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 34px;
  align-items: end;
  padding-top: 42px;
}

.article-hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.article-hero-meta a,
.article-hero-meta span,
.article-hero-meta time {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(189,244,236,.2);
  border-radius: 999px;
  background: rgba(189,244,236,.1);
  color: #d5e3f2;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
}

.article-hero-meta a {
  color: #bdf4ec;
}

.article-hero .article-title {
  max-width: 940px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.5rem, 5.4vw, 5.15rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.article-hero-desc {
  max-width: 790px;
  margin-top: 18px;
  color: #d5e3f2;
  font-size: 18px;
  line-height: 1.75;
}

.article-hero-note {
  display: flex;
  gap: 10px;
  max-width: 820px;
  margin-top: 24px;
  border: 1px solid rgba(189,244,236,.18);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  padding: 14px 16px;
  color: #d5e3f2;
  font-size: 13px;
  line-height: 1.6;
}

.article-hero-note strong {
  flex: 0 0 auto;
  color: #bdf4ec;
  font-weight: 900;
}

.article-hero-card {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 26px;
  background: rgba(255,255,255,.1);
  padding: 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 28px 70px rgba(0,0,0,.2);
  backdrop-filter: blur(14px);
}

.article-hero-card > span {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(189,244,236,.13);
  color: #bdf4ec;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.article-hero-card h2 {
  margin: 16px 0 10px;
  color: #fff;
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: 0;
}

.article-hero-card p {
  color: #d5e3f2;
  line-height: 1.75;
}

.article-hero-card a {
  display: inline-flex;
  margin-top: 18px;
  color: #bdf4ec;
  font-size: 13px;
  font-weight: 900;
}

.article-shell {
  position: relative;
  z-index: 2;
  margin-top: -42px;
  padding-bottom: 72px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.premium-article {
  overflow: hidden;
  border: 1px solid rgba(226,234,244,.95);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(14,34,56,.1);
}

.article-featured {
  margin: 0;
  background: #10233d;
}

.article-featured img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
}

.premium-article .article-body {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 54px);
  color: #10233d;
  font-size: 18px;
  line-height: 1.9;
}

.premium-article .article-body > *:first-child {
  margin-top: 0;
}

.premium-article .vtg-answer-first {
  background: linear-gradient(135deg, #f6fffc, #f6f9ff);
  border: 1px solid rgba(14,168,149,.18);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(16,31,52,.07);
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) 260px;
  margin: clamp(24px, 4vw, 46px) auto 0;
  max-width: 860px;
  padding: 24px;
}

.premium-article .vtg-answer-first h2 {
  color: #07111f;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 10px;
}

.premium-article .vtg-answer-first p {
  color: #26364d;
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
}

.premium-article .vtg-answer-first ul {
  align-self: start;
  background: #fff;
  border: 1px solid rgba(15,31,51,.08);
  border-radius: 18px;
  list-style: none;
  margin: 0;
  padding: 16px;
}

.premium-article .vtg-answer-first li {
  color: #506179;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 10px;
  padding: 0;
}

.premium-article .vtg-answer-first li:last-child {
  margin-bottom: 0;
}

.premium-article .vtg-answer-first li::before {
  content: none;
}

.premium-article .article-body h2 {
  margin: 44px 0 14px;
  color: #07111f;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.2;
  letter-spacing: 0;
}

.premium-article .article-body h3 {
  margin: 32px 0 12px;
  color: #10233d;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.3;
  letter-spacing: 0;
}

.premium-article .article-body p {
  margin: 0 0 20px;
}

.premium-article .article-body .vtg-inline-suggestion {
  background: #effaf8;
  border: 1px solid rgba(20, 184, 166, 0.22);
  border-radius: 14px;
  color: #244156;
  font-size: 17px;
  line-height: 1.75;
  margin: 24px 0 34px;
  padding: 16px 18px;
}

.premium-article .article-body .vtg-inline-suggestion strong {
  color: #0f766e;
}

.premium-article .article-body .vtg-internal-links {
  background: #f8fbff;
  border: 1px solid rgba(32, 78, 118, 0.12);
  border-radius: 16px;
  padding: 18px 20px;
}

.premium-article .article-body .vtg-internal-links li {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding-bottom: 4px;
  padding-top: 4px;
}

.premium-article .article-body ul,
.premium-article .article-body ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 0;
}

.premium-article .article-body li {
  position: relative;
  border: 1px solid #e2eaf4;
  border-radius: 16px;
  background: #f8fbff;
  padding: 13px 16px 13px 42px;
  list-style: none;
}

.premium-article .article-body li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 23px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #0ea895;
}

.premium-article .article-body a {
  color: #0b8b7a;
  font-weight: 900;
}

.premium-article .vtg-editorial-image {
  margin: 30px 0 34px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e2eaf4;
  background: #f8fbff;
  box-shadow: 0 18px 46px rgba(14,34,56,.1);
}

.premium-article .vtg-editorial-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.premium-article .vtg-editorial-image figcaption {
  margin: 0;
  border-top: 1px solid #e2eaf4;
  background: #fff;
  color: #64748b;
  padding: 10px 14px;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
}

.premium-article .financial-warning-box {
  margin: 32px 0;
}

.premium-article .article-disclaimer {
  display: block;
  max-width: 860px;
  margin: 0 auto clamp(26px, 4vw, 52px);
  border: 1px solid #f3c56f;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff8e8, #fffdf7);
  padding: 18px 20px;
  color: #63420a;
  box-shadow: 0 14px 34px rgba(120,74,0,.08);
}

.premium-article .article-disclaimer strong {
  display: block;
  margin-bottom: 8px;
  color: #7a4b00;
  font-weight: 900;
}

.premium-article .article-disclaimer p {
  margin: 0;
  color: #63420a;
  line-height: 1.75;
}

.article-sidebar {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 16px;
}

.article-sidebar .sidebar-widget {
  border: 1px solid rgba(226,234,244,.95);
  border-radius: 22px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 18px 50px rgba(14,34,56,.08);
}

.article-sidebar .widget-title {
  margin: 0 0 12px;
  color: #07111f;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0;
}

.article-toc-card p,
.sidebar-cta-box p {
  color: #64748b;
  font-size: 13px;
  line-height: 1.7;
}

.article-toc-card a {
  display: inline-flex;
  margin-top: 12px;
  color: #0b8b7a;
  font-size: 13px;
  font-weight: 900;
}

.related-list,
.cat-list {
  display: grid;
  gap: 0;
}

.related-list li,
.cat-list li {
  border-top: 1px solid #edf2f7;
  padding: 13px 0;
}

.related-list li:first-child,
.cat-list li:first-child {
  border-top: 0;
}

.related-list a,
.cat-list a {
  display: block;
  color: #334155;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 900;
}

.related-list a:hover,
.cat-list a:hover {
  color: #0b8b7a;
}

.related-date,
.cat-count {
  display: inline-flex;
  margin-top: 5px;
  color: #8090a5;
  font-size: 12px;
  font-weight: 700;
}

.cat-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sidebar-cta-box {
  background:
    radial-gradient(circle at 100% 0%, rgba(14,168,149,.11), transparent 34%),
    #fff !important;
}

.page-article {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid rgba(226,234,244,.95);
  border-radius: 28px;
  background: #fff;
  padding: clamp(26px, 4vw, 52px);
  box-shadow: 0 24px 70px rgba(14,34,56,.1);
}

.page-article-header {
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid #edf2f7;
}

.page-article-title {
  color: #07111f;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.page-article-body {
  color: #10233d;
  font-size: 17px;
  line-height: 1.85;
}

.page-article-body h2 {
  margin: 34px 0 12px;
  color: #07111f;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.25;
  letter-spacing: 0;
}

.page-article-body p {
  margin: 0 0 16px;
}

.page-article-body ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
  padding: 0;
}

.page-article-body li {
  position: relative;
  border: 1px solid #e2eaf4;
  border-radius: 16px;
  background: #f8fbff;
  padding: 14px 16px 14px 42px;
  list-style: none;
}

.page-article-body li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #0ea895;
}

.page-article-body a {
  color: #0b8b7a;
  font-weight: 900;
}

.affiliate-method-strip {
  padding-top: 56px;
  padding-bottom: 56px;
  background: linear-gradient(180deg, #fff 0%, #f6f9fc 100%);
}

.affiliate-method-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  border: 1px solid rgba(20, 184, 166, .18);
  border-radius: 32px;
  background:
    radial-gradient(circle at 8% 10%, rgba(20,184,166,.18), transparent 28%),
    radial-gradient(circle at 96% 90%, rgba(37,99,235,.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
  overflow: hidden;
  padding: clamp(26px, 4vw, 48px);
  position: relative;
  box-shadow: 0 28px 80px rgba(14,34,56,.12);
}

.affiliate-method-grid::before {
  background: linear-gradient(180deg, #14b8a6, #2563eb);
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: 8px;
}

.affiliate-method-copy {
  position: relative;
  z-index: 1;
}

.affiliate-method-copy h2 {
  max-width: 620px;
  margin: 18px 0 18px;
  color: #07111f;
  font-size: clamp(2.15rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.affiliate-method-copy p {
  max-width: 680px;
  color: #40516a;
  font-size: 17px;
  line-height: 1.78;
}

.affiliate-method-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.affiliate-method-cards {
  display: grid;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.affiliate-method-cards article {
  align-items: center;
  border: 1px solid rgba(226,234,244,.95);
  border-radius: 22px;
  display: grid;
  gap: 8px 18px;
  grid-template-columns: 72px minmax(0, 1fr);
  min-height: 128px;
  overflow: hidden;
  padding: 20px 22px;
  position: relative;
  box-shadow: 0 16px 38px rgba(14,34,56,.08);
}

.affiliate-method-cards article::before {
  border-radius: 999px;
  content: "";
  height: 120px;
  opacity: .16;
  position: absolute;
  right: -42px;
  top: -52px;
  width: 120px;
}

.affiliate-method-cards article:nth-child(1) {
  background: linear-gradient(135deg, #ffffff 0%, #e9fff8 100%);
}

.affiliate-method-cards article:nth-child(2) {
  background: linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
}

.affiliate-method-cards article:nth-child(3) {
  background: linear-gradient(135deg, #ffffff 0%, #fff4e1 100%);
}

.affiliate-method-cards article:nth-child(1)::before,
.affiliate-method-cards article:nth-child(1) span {
  background: #14b8a6;
}

.affiliate-method-cards article:nth-child(2)::before,
.affiliate-method-cards article:nth-child(2) span {
  background: #2563eb;
}

.affiliate-method-cards article:nth-child(3)::before,
.affiliate-method-cards article:nth-child(3) span {
  background: #f59e0b;
}

.affiliate-method-cards span {
  align-items: center;
  border-radius: 20px;
  color: #fff;
  display: inline-flex;
  font-size: 19px;
  font-weight: 900;
  grid-row: 1 / 3;
  height: 64px;
  justify-content: center;
  line-height: 1;
  margin: 0;
  position: relative;
  width: 64px;
  z-index: 1;
}

.affiliate-method-cards strong {
  display: block;
  color: #07111f;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 900;
  position: relative;
  z-index: 1;
}

.affiliate-method-cards p {
  color: #526174;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
  margin: 0;
  position: relative;
  z-index: 1;
}

.archive-geo-notice {
  display: flex;
  gap: 10px;
  max-width: 820px;
  margin-top: 16px;
  border: 1px solid rgba(14,168,149,.22);
  border-radius: 18px;
  background: #ffffff;
  padding: 14px 16px;
  color: #31445b;
  font-size: 13px;
  line-height: 1.6;
  box-shadow: 0 12px 34px rgba(14,34,56,.08);
}

.archive-geo-notice strong {
  flex: 0 0 auto;
  color: #0b8b7a;
  font-weight: 900;
}

.affiliate-disclosure-panel {
  border-color: rgba(14,168,149,.22);
  background:
    radial-gradient(circle at 100% 0%, rgba(14,168,149,.1), transparent 34%),
    #fbfffd;
}

.affiliate-disclosure-panel p {
  color: #4d6075;
  line-height: 1.75;
}

.affiliate-disclosure-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.affiliate-disclosure-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-radius: 999px;
  background: #eefbf7;
  color: #0b8b7a;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 900;
}

/* --- Category: Tin tuc -------------------------------------------------- */
.news-archive {
  background:
    radial-gradient(circle at 12% 0%, rgba(14,168,149,.13), transparent 28%),
    radial-gradient(circle at 88% 4%, rgba(37,99,235,.12), transparent 30%),
    #f4f7fb;
}

.news-hero {
  position: relative;
  overflow: hidden;
  padding: 22px 0 74px;
  background:
    linear-gradient(135deg, #07111f 0%, #10233d 52%, #0b8b7a 100%);
  color: #fff;
}

.news-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -42% 38%;
  height: 280px;
  background: rgba(255,255,255,.08);
  transform: rotate(-6deg);
}

.news-hero .container {
  position: relative;
  z-index: 1;
}

.news-hero .vtg-breadcrumb {
  color: rgba(255,255,255,.68);
  padding-top: 8px;
}

.news-hero .vtg-breadcrumb a {
  color: #bdf4ec;
}

.news-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 34px;
  align-items: end;
  padding-top: 46px;
}

.news-hero-copy {
  max-width: 860px;
}

.news-hero .archive-eyebrow {
  border-color: rgba(189,244,236,.22);
  background: rgba(189,244,236,.1);
  color: #bdf4ec;
}

.news-hero .page-title {
  max-width: 820px;
  margin: 14px 0 16px;
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: .98;
  letter-spacing: 0;
}

.news-hero .page-desc {
  max-width: 760px;
  color: #d5e3f2;
  font-size: 18px;
  line-height: 1.75;
}

.news-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 820px;
  margin-top: 28px;
}

.news-hero-stats div {
  min-height: 92px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  padding: 17px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}

.news-hero-stats strong,
.news-hero-stats span {
  display: block;
}

.news-hero-stats strong {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
}

.news-hero-stats span {
  margin-top: 7px;
  color: #aebfd3;
  font-size: 12px;
  font-weight: 800;
}

.news-editor-note {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 26px;
  background: rgba(255,255,255,.1);
  padding: 24px;
  box-shadow: 0 28px 70px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
}

.news-editor-note span {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(189,244,236,.13);
  color: #bdf4ec;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.news-editor-note h2 {
  margin: 16px 0 10px;
  color: #fff;
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: 0;
}

.news-editor-note p {
  color: #d5e3f2;
  line-height: 1.75;
}

.news-editor-note a {
  display: inline-flex;
  margin-top: 18px;
  color: #bdf4ec;
  font-size: 13px;
  font-weight: 900;
}

.news-shell {
  margin-top: -42px;
  padding-bottom: 70px;
  position: relative;
  z-index: 2;
}

.news-featured {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(226,234,244,.9);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(14,34,56,.14);
}

.news-featured-media {
  min-height: 390px;
  background:
    linear-gradient(135deg, rgba(14,168,149,.18), rgba(37,99,235,.14)),
    #10233d;
}

.news-featured-media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.news-featured-media span,
.news-card-media span {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: inherit;
  place-items: center;
  color: #fff;
  font-size: 42px;
  font-weight: 900;
}

.news-featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 54px);
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: #6b7c92;
  font-size: 12px;
  font-weight: 800;
}

.news-card-meta span {
  border-radius: 999px;
  background: #eefbf7;
  color: #0b8b7a;
  padding: 6px 10px;
}

.news-featured-copy .section-kicker {
  margin-top: 18px;
  color: #2563eb;
}

.news-featured-copy h2 {
  max-width: 780px;
  margin: 10px 0 14px;
  color: #07111f;
  font-size: clamp(2rem, 3.6vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.news-featured-copy h2 a:hover,
.news-card h3 a:hover {
  color: #0b8b7a;
}

.news-featured-copy p {
  max-width: 680px;
  color: #5b6b80;
  font-size: 16px;
  line-height: 1.75;
}

.news-featured-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.news-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin: 46px 0 18px;
}

.news-section-head h2 {
  color: #07111f;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.news-section-head p {
  max-width: 560px;
  color: #64748b;
  line-height: 1.7;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.news-card {
  overflow: hidden;
  border: 1px solid rgba(226,234,244,.95);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(14,34,56,.08);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.news-card:hover {
  transform: translateY(-3px);
  border-color: rgba(14,168,149,.28);
  box-shadow: 0 24px 60px rgba(14,34,56,.12);
}

.news-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(14,168,149,.2), rgba(37,99,235,.18)),
    #10233d;
}

.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.news-card:hover .news-card-media img {
  transform: scale(1.035);
}

.news-card-body {
  padding: 20px;
}

.news-card h3 {
  margin: 14px 0 10px;
  color: #07111f;
  font-size: 21px;
  line-height: 1.32;
  letter-spacing: 0;
}

.news-card p {
  min-height: 78px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
}

.news-read-link {
  display: inline-flex;
  margin-top: 16px;
  color: #0b8b7a;
  font-size: 13px;
  font-weight: 900;
}

.news-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.news-side-panel {
  border: 1px solid rgba(226,234,244,.95);
  border-radius: 22px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 16px 42px rgba(14,34,56,.08);
}

.news-side-panel h2 {
  margin-bottom: 14px;
  color: #07111f;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0;
}

.news-side-panel > a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid #edf2f7;
  padding: 13px 0;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

.news-side-panel > a:first-of-type {
  border-top: 0;
}

.news-side-panel > a:hover {
  color: #0b8b7a;
}

.news-side-latest a {
  display: grid;
  gap: 4px;
}

.news-side-latest small {
  color: #8090a5;
  font-size: 12px;
  font-weight: 700;
}

.news-pagination {
  margin-top: 34px;
}

.news-empty-state {
  border: 1px solid rgba(226,234,244,.95);
  border-radius: 28px;
  background: #fff;
  padding: 42px;
  box-shadow: 0 24px 60px rgba(14,34,56,.1);
}

.news-empty-state h2 {
  margin: 10px 0;
  color: #07111f;
  font-size: 32px;
  letter-spacing: 0;
}

.news-empty-state p {
  max-width: 720px;
  margin-bottom: 20px;
  color: #64748b;
  line-height: 1.75;
}

@media (max-width: 1180px) {
  .single-dich-vu-tai-chinh .premium-service-hero {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .service-hero-decision {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(160px, 1fr) minmax(0, 1.6fr) auto;
    align-items: center;
  }

  .decision-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .news-hero-grid,
  .news-featured,
  .news-layout {
    grid-template-columns: 1fr;
  }

  .news-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .affiliate-method-grid,
  .affiliate-method-cards {
    grid-template-columns: 1fr;
  }

  .article-hero-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-sidebar .sidebar-cta-box {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .single-dich-vu-tai-chinh .premium-service-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .service-hero-decision {
    display: flex;
  }

  .decision-metrics {
    grid-template-columns: 1fr;
  }

  .news-hero {
    padding-bottom: 52px;
  }

  .news-hero-grid {
    gap: 20px;
    padding-top: 28px;
  }

  .news-hero .page-title {
    font-size: clamp(2.25rem, 13vw, 3.55rem);
  }

  .news-hero-stats,
  .news-grid,
  .news-sidebar {
    grid-template-columns: 1fr;
  }

  .news-featured-media,
  .news-featured-media img {
    min-height: 240px;
  }

  .news-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-card p {
    min-height: 0;
  }

  .vtg-affiliate-disclosure .container {
    justify-content: flex-start;
    text-align: left;
  }

  .affiliate-method-grid {
    border-radius: 22px;
  }

  .archive-geo-notice {
    flex-direction: column;
  }

  .admin-bar .vtg-header {
    top: 46px;
  }

  .article-hero {
    padding-bottom: 54px;
  }

  .article-hero-grid,
  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .article-hero .article-title {
    font-size: clamp(2.15rem, 12vw, 3.4rem);
  }

  .article-hero-note {
    flex-direction: column;
  }

  .premium-article {
    border-radius: 22px;
  }

  .premium-article .article-body {
    padding: 24px 20px;
    font-size: 16px;
  }

  .premium-article .article-disclaimer {
    margin: 0 20px 24px;
  }
}

@media (max-width: 1024px) {
  html body {
    padding-top: 69px !important;
  }

  .vtg-topbar {
    display: none !important;
  }

  #vtg-header.vtg-header {
    position: fixed !important;
    inset: 0 0 auto 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    transform: translateZ(0);
    will-change: transform;
  }

  .admin-bar #vtg-header.vtg-header {
    top: 46px !important;
  }

  .vtg-mobile-nav {
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    z-index: 9998;
    max-height: calc(100vh - 69px);
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 42px rgba(14,34,56,.12);
  }

  .admin-bar .vtg-mobile-nav {
    top: 115px;
  }
}

.premium-home #danh-muc .aff-category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.premium-home #danh-muc .aff-cat {
  border: 0 !important;
  border-radius: 22px !important;
  box-shadow: 0 18px 44px rgba(16, 31, 52, 0.09) !important;
  min-height: 178px;
  overflow: hidden;
  padding: 24px !important;
  position: relative;
}

.premium-home #danh-muc .aff-cat::before {
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: 7px;
}

.premium-home #danh-muc .aff-cat::after {
  border-radius: 999px;
  content: "";
  height: 108px;
  opacity: 0.16;
  position: absolute;
  right: -38px;
  top: -44px;
  width: 108px;
}

.premium-home #danh-muc .aff-cat b {
  border-radius: 18px !important;
  box-shadow: 0 14px 26px rgba(7, 17, 31, 0.18);
  color: #fff;
  height: 58px !important;
  margin-bottom: 18px !important;
  position: relative;
  width: 58px !important;
  z-index: 1;
}

.premium-home #danh-muc .aff-cat svg {
  height: 28px !important;
  width: 28px !important;
}

.premium-home #danh-muc .aff-cat h3,
.premium-home #danh-muc .aff-cat p {
  position: relative;
  z-index: 1;
}

.premium-home #danh-muc .aff-cat h3 {
  font-size: 20px !important;
  font-weight: 900 !important;
  margin-bottom: 9px !important;
}

.premium-home #danh-muc .aff-cat p {
  color: #31425a !important;
  font-size: 14px !important;
}

.premium-home #danh-muc .aff-cat:nth-child(1) {
  background: linear-gradient(135deg, #ffffff 0%, #e8fff8 100%) !important;
}

.premium-home #danh-muc .aff-cat:nth-child(1)::before,
.premium-home #danh-muc .aff-cat:nth-child(1) b,
.premium-home #danh-muc .aff-cat:nth-child(1)::after {
  background: #0ea895 !important;
}

.premium-home #danh-muc .aff-cat:nth-child(2) {
  background: linear-gradient(135deg, #ffffff 0%, #eef5ff 100%) !important;
}

.premium-home #danh-muc .aff-cat:nth-child(2)::before,
.premium-home #danh-muc .aff-cat:nth-child(2) b,
.premium-home #danh-muc .aff-cat:nth-child(2)::after {
  background: #2563eb !important;
}

.premium-home #danh-muc .aff-cat:nth-child(3) {
  background: linear-gradient(135deg, #ffffff 0%, #fff6df 100%) !important;
}

.premium-home #danh-muc .aff-cat:nth-child(3)::before,
.premium-home #danh-muc .aff-cat:nth-child(3) b,
.premium-home #danh-muc .aff-cat:nth-child(3)::after {
  background: #f59e0b !important;
}

.premium-home #danh-muc .aff-cat:nth-child(4) {
  background: linear-gradient(135deg, #ffffff 0%, #fff0f6 100%) !important;
}

.premium-home #danh-muc .aff-cat:nth-child(4)::before,
.premium-home #danh-muc .aff-cat:nth-child(4) b,
.premium-home #danh-muc .aff-cat:nth-child(4)::after {
  background: #db2777 !important;
}
