/* BARS Tax Blueprint — Styles */
/* Extracted from original HTML design */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap");
.page-header {
  display: none;
}
#bars-blueprint-wrap {
  --ink: #08080f;
  --gold: #c09b45;
  --gold-lt: #d4b468;
  --gold-pale: #f6f0e4;
  --gold-deep: #8b6e28;
  --cream: #faf8f4;
  --white: #fff;
  --slate: #3d3d3d;
  --muted: #787878;
  --bgrey: #e8e4dc;
  --green: #1a7a4a;
  --green-lt: #e8f4ee;
  --red: #c0392b;
  --red-lt: #fdecea;
  --blue: #1a3a7a;
  --blue-lt: #e8eef8;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  line-height: 1.65;
  max-width: 100%;
  position: relative;
}

#bars-blueprint-wrap *,
#bars-blueprint-wrap *::before,
#bars-blueprint-wrap *::after {
  box-sizing: border-box;
}

#bars-blueprint-wrap a {
  text-decoration: none;
  color: inherit;
}
#bars-blueprint-wrap img {
  max-width: 100%;
  height: auto;
}
#bars-blueprint-wrap p {
  margin-bottom: 0.7rem;
}
#bars-blueprint-wrap p:last-child {
  margin-bottom: 0;
}

/* ── LAYOUT ── */
#bars-blueprint-wrap .container {
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}
#bars-blueprint-wrap .section {
  padding: 72px 0;
  background: #faf8f4;
}

/* ── TYPE ── */
#bars-blueprint-wrap .eyebrow {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
#bars-blueprint-wrap .display {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 1.02;
}
#bars-blueprint-wrap h2,
#bars-blueprint-wrap h3,
#bars-blueprint-wrap h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

/* ── HERO ── */
#bars-blueprint-wrap .hero {
  background: var(--ink);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
#bars-blueprint-wrap .hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(192, 155, 69, 0.07),
    transparent 65%
  );
  pointer-events: none;
}
#bars-blueprint-wrap .hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
  pointer-events: none;
}
#bars-blueprint-wrap .hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
#bars-blueprint-wrap .hero-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
#bars-blueprint-wrap .hero-logo img {
  height: 34px;
  filter: brightness(1.1);
}
#bars-blueprint-wrap .hero-badge {
  font-family: "DM Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(192, 155, 69, 0.2);
  padding: 0.3rem 0.8rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}
#bars-blueprint-wrap .hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin: 0.5rem 0 1rem;
}
#bars-blueprint-wrap .hero h1 em {
  font-style: italic;
  color: var(--gold-lt);
  font-family: var(--font-premium);
}
#bars-blueprint-wrap .hero-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 420px;
}
#bars-blueprint-wrap .hero-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
#bars-blueprint-wrap .hc {
  font-family: "DM Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.7rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
}
#bars-blueprint-wrap .hc:hover,
#bars-blueprint-wrap .hc.active {
  background: rgba(192, 155, 69, 0.15);
  border-color: var(--gold);
  color: var(--gold-lt);
}
#bars-blueprint-wrap .hero-disclaimer {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.65;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 420px;
}
#bars-blueprint-wrap .hero-visual {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(192, 155, 69, 0.15);
  padding: 2rem;
}
#bars-blueprint-wrap .hero-map {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(192, 155, 69, 0.1);
}
#bars-blueprint-wrap .hmap-cell {
  background: rgba(10, 10, 16, 0.9);
  padding: 1.2rem 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
#bars-blueprint-wrap .hmap-cell:hover {
  background: rgba(192, 155, 69, 0.08);
}
#bars-blueprint-wrap .hmap-cell.active {
  background: rgba(192, 155, 69, 0.12);
  border-left: 2px solid var(--gold);
}
#bars-blueprint-wrap .hmap-flag {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
  color: var(--gold-lt);
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
#bars-blueprint-wrap .hmap-country {
  font-size: 0.84rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.15rem;
}
#bars-blueprint-wrap .hmap-status {
  font-family: "DM Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
#bars-blueprint-wrap .hmap-status.zero {
  color: #4caf50;
}
#bars-blueprint-wrap .hmap-status.taxable {
  color: var(--gold-lt);
}
#bars-blueprint-wrap .hmap-status.special {
  color: #7eb8e4;
}

/* ── QUICK COMPARE ── */
#bars-blueprint-wrap .compare-section {
  background: #fff;
  padding: 56px 0;
}
#bars-blueprint-wrap .compare-section .container {
  max-width: 1060px;
}
#bars-blueprint-wrap .compare-grid {
  display: grid;
  gap: 1px;
  background: var(--bgrey);
  border: 1px solid var(--bgrey);
  margin-top: 2rem;
  min-width: 700px;
}
#bars-blueprint-wrap .comp-col {
  background: #fff;
  min-width: 0;
}
#bars-blueprint-wrap .comp-head {
  padding: 1.2rem 0.8rem;
  background: var(--ink);
  text-align: center;
  border-bottom: 2px solid var(--gold);
}
#bars-blueprint-wrap .comp-head .flag {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.3rem;
  color: var(--gold-lt);
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
#bars-blueprint-wrap .comp-head .name {
  font-family: "DM Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
#bars-blueprint-wrap .comp-row {
  padding: 0.7rem 0.8rem;
  border-bottom: 1px solid var(--bgrey);
  text-align: center;
}
#bars-blueprint-wrap .comp-row-label {
  background: var(--gold-pale);
  padding: 0.7rem 0.8rem;
  border-bottom: 1px solid var(--bgrey);
}
#bars-blueprint-wrap .comp-row-label span {
  font-family: "DM Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
#bars-blueprint-wrap .comp-val {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate);
}
#bars-blueprint-wrap .comp-val.zero {
  color: #1a7a4a;
  font-weight: 600;
}
#bars-blueprint-wrap .comp-val.high {
  color: var(--red);
}
#bars-blueprint-wrap .comp-val.med {
  color: var(--gold-deep);
}
#bars-blueprint-wrap .comp-pill {
  display: inline-block;
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
  padding: 2px 7px;
  border-radius: 2px;
}
#bars-blueprint-wrap .pill-green {
  background: #e8f4ee;
  color: #1a7a4a;
}
#bars-blueprint-wrap .pill-yellow {
  background: var(--gold-pale);
  color: var(--gold-deep);
}
#bars-blueprint-wrap .pill-red {
  background: #fdecea;
  color: #c0392b;
}
#bars-blueprint-wrap .pill-blue {
  background: #e8eef8;
  color: #1a3a7a;
}

/* ── COUNTRY PAGES ── */
#bars-blueprint-wrap .country-page {
  display: none;
}
#bars-blueprint-wrap .country-page.active {
  display: block;
}
#bars-blueprint-wrap .country-hero {
  padding: 56px 0 40px;
  position: relative;
  overflow: hidden;
}
#bars-blueprint-wrap .country-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.35;
}
#bars-blueprint-wrap .ch-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
#bars-blueprint-wrap .ch-flag {
  font-size: 3rem;
  margin-bottom: 0.8rem;
  color: var(--gold-lt);
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
#bars-blueprint-wrap .ch-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 0.5rem;
  color: #fff;
}
#bars-blueprint-wrap .ch-title em {
  font-style: italic;
  color: var(--gold-lt);
}
#bars-blueprint-wrap .ch-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
#bars-blueprint-wrap .ch-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
#bars-blueprint-wrap .ch-tag {
  font-family: "DM Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  border: 1px solid transparent;
}
#bars-blueprint-wrap .ch-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(192, 155, 69, 0.2);
  border-radius: 4px;
  overflow: hidden;
}
#bars-blueprint-wrap .kpi {
  background: rgba(255, 255, 255, 0.06);
  padding: 1.4rem 1rem;
  text-align: center;
}
#bars-blueprint-wrap .kpi .val {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-lt);
}
#bars-blueprint-wrap .kpi .lbl {
  font-family: "DM Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.3rem;
}

/* ── INFO BLOCKS ── */
#bars-blueprint-wrap .info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
#bars-blueprint-wrap .info-block {
  background: #fff;
  border: 1px solid var(--bgrey);
  border-radius: 4px;
  overflow: hidden;
}
#bars-blueprint-wrap .info-block.full {
  grid-column: 1/-1;
}
#bars-blueprint-wrap .ib-head {
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--bgrey);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
#bars-blueprint-wrap .ib-head h4 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
  margin: 0;
}
#bars-blueprint-wrap .ib-icon {
  font-size: 1rem;
}
#bars-blueprint-wrap .ib-body {
  padding: 1.2rem 1.4rem;
}
#bars-blueprint-wrap .ib-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--bgrey);
  gap: 1rem;
}
#bars-blueprint-wrap .ib-row:last-child {
  border-bottom: none;
}
#bars-blueprint-wrap .ib-key {
  font-size: 0.82rem;
  color: var(--muted);
  flex-shrink: 0;
  max-width: 45%;
}
#bars-blueprint-wrap .ib-val {
  font-size: 0.84rem;
  color: var(--slate);
  font-weight: 500;
  text-align: right;
}
#bars-blueprint-wrap .ib-val.highlight {
  color: var(--gold-deep);
}
#bars-blueprint-wrap .ib-val.green {
  color: #1a7a4a;
}
#bars-blueprint-wrap .ib-val.red {
  color: #c0392b;
}

/* ── TAX TABLES ── */
#bars-blueprint-wrap .tax-table {
  width: 100%;
  border-collapse: collapse;
}
#bars-blueprint-wrap .tax-table th {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.65);
  font-family: "DM Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem 1rem;
  text-align: left;
}
#bars-blueprint-wrap .tax-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--bgrey);
  font-size: 0.84rem;
  color: var(--slate);
}
#bars-blueprint-wrap .tax-table tr:last-child td {
  border-bottom: none;
}
#bars-blueprint-wrap .tax-table tr:nth-child(even) td {
  background: var(--cream);
}
#bars-blueprint-wrap .tax-table td.rate {
  font-weight: 600;
  color: var(--ink);
  font-family: "DM Mono", monospace;
}
#bars-blueprint-wrap .tax-table td.green {
  color: #1a7a4a;
  font-weight: 600;
}

/* ── STEP PROCESS ── */
#bars-blueprint-wrap .step-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
#bars-blueprint-wrap .step-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.8rem;
  background: var(--cream);
  border-radius: 3px;
}
#bars-blueprint-wrap .step-num {
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  flex-shrink: 0;
}
#bars-blueprint-wrap .step-body h5 {
  font-family: "Outfit", sans-serif;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  color: var(--ink) !important;
  margin-bottom: 0.2rem !important;
}
#bars-blueprint-wrap .step-body p {
  font-size: 0.82rem;
  color: var(--slate);
  line-height: 1.6;
}

/* ── CALLOUT BOXES ── */
#bars-blueprint-wrap .callout {
  padding: 1rem 1.4rem;
  border-radius: 3px;
  margin: 0.8rem 0;
}
#bars-blueprint-wrap .callout-green {
  background: var(--green-lt);
  border-left: 3px solid #1a7a4a;
}
#bars-blueprint-wrap .callout-gold {
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
}
#bars-blueprint-wrap .callout-blue {
  background: var(--blue-lt);
  border-left: 3px solid #1a3a7a;
}
#bars-blueprint-wrap .callout-red {
  background: var(--red-lt);
  border-left: 3px solid #c0392b;
}
#bars-blueprint-wrap .callout p {
  font-size: 0.84rem;
  line-height: 1.7;
  margin: 0;
}
#bars-blueprint-wrap .callout strong {
  font-weight: 600;
}

/* ── EXAMPLE BOX ── */
#bars-blueprint-wrap .example-box {
  background: var(--ink);
  color: #fff;
  padding: 1.5rem;
  border-radius: 4px;
  margin-top: 1rem;
}
#bars-blueprint-wrap .ex-title {
  font-family: "DM Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
#bars-blueprint-wrap .ex-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.84rem;
}
#bars-blueprint-wrap .ex-row:last-child {
  border-bottom: none;
}
#bars-blueprint-wrap .ex-row .k {
  color: rgba(255, 255, 255, 0.5);
}
#bars-blueprint-wrap .ex-row .v {
  color: #fff;
  font-weight: 500;
  font-family: "DM Mono", monospace;
}
#bars-blueprint-wrap .ex-row .v.green {
  color: #4caf50;
}
#bars-blueprint-wrap .ex-row .v.highlight {
  color: var(--gold-lt);
}

/* ── DOCUMENT CHECKLIST ── */
#bars-blueprint-wrap .doc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#bars-blueprint-wrap .doc-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--bgrey);
  font-size: 0.85rem;
  color: var(--slate);
}
#bars-blueprint-wrap .doc-list li:last-child {
  border-bottom: none;
}
#bars-blueprint-wrap .doc-list li::before {
  content: "📄";
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ── CTA SECTION ── */
#bars-blueprint-wrap .cta-section {
  background: var(--ink);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#bars-blueprint-wrap .cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 70% at 50% 50%,
    rgba(192, 155, 69, 0.06),
    transparent 65%
  );
}
#bars-blueprint-wrap .cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
#bars-blueprint-wrap .cta-inner h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0.6rem 0 1rem;
}
#bars-blueprint-wrap .cta-inner h2 em {
  font-style: italic;
  color: var(--gold-lt);
  font-family: var(--font-premium);
}
#bars-blueprint-wrap .cta-inner p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}
#bars-blueprint-wrap .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--ink);
  padding: 14px 32px;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 2px;
  transition: all 0.2s;
  text-decoration: none;
}
#bars-blueprint-wrap .cta-btn:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

/* ── DISCLAIMER ── */
#bars-blueprint-wrap .disclaimer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.7;
}

/* ── GUIDE SWITCHER ── */
#bars-blueprint-wrap .guide-switcher {
  background: #060609;
  border-bottom: 1px solid rgba(192, 155, 69, 0.15);
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 200;
}
#bars-blueprint-wrap .gs-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}
#bars-blueprint-wrap .gs-tabs {
  display: flex;
  gap: 2px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(192, 155, 69, 0.15);
  border-radius: 3px;
  padding: 3px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  flex-shrink: 1;
}
#bars-blueprint-wrap .gs-tabs::-webkit-scrollbar {
  display: none;
}
#bars-blueprint-wrap .gs-tab {
  font-family: "DM Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 2px;
  border: none;
  background: none;
  white-space: nowrap;
}
#bars-blueprint-wrap .gs-tab.active {
  background: var(--gold);
  color: var(--ink);
  font-weight: 500;
}
#bars-blueprint-wrap .gs-logo img {
  height: 28px;
  opacity: 0.7;
}
#bars-blueprint-wrap .gs-logo {
  flex-shrink: 0;
}
#bars-blueprint-wrap .gs-hint {
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}
#bars-blueprint-wrap .guide {
  display: none;
}
#bars-blueprint-wrap .guide.active {
  display: block;
}

/* ── STICKY NAV ── */
#bars-blueprint-wrap .sticky-nav {
  position: sticky;
  top: 42px;
  z-index: 100;
  background: rgba(8, 8, 15, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192, 155, 69, 0.15);
  padding: 0.7rem 0;
}
#bars-blueprint-wrap .snav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}
#bars-blueprint-wrap .snav-logo img {
  height: 28px;
}
#bars-blueprint-wrap .snav-logo {
  flex-shrink: 0;
}
#bars-blueprint-wrap .snav-countries {
  display: flex;
  gap: 0.3rem;
  overflow-x: auto;
  scrollbar-width: none;
  min-width: 0;
  flex: 1 1 auto;
}
#bars-blueprint-wrap .snav-countries::-webkit-scrollbar {
  display: none;
}
#bars-blueprint-wrap .snc {
  font-family: "DM Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  border-radius: 2px;
  background: none;
}
#bars-blueprint-wrap .snc:hover {
  color: var(--gold-lt);
  border-color: rgba(192, 155, 69, 0.2);
}
#bars-blueprint-wrap .snc.active {
  color: var(--gold-lt);
  border-color: var(--gold);
  background: rgba(192, 155, 69, 0.08);
}
#bars-blueprint-wrap .snav-cta {
  font-family: "Outfit", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--gold);
  color: var(--ink);
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}

/* ── INDIA TAX SECTION ── */
#bars-blueprint-wrap .india-banner {
  background: linear-gradient(135deg, #0a1628, #152535);
  padding: 1.5rem;
  border: 1px solid rgba(192, 155, 69, 0.2);
  border-radius: 4px;
  margin-bottom: 2rem;
}
#bars-blueprint-wrap .india-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(192, 155, 69, 0.15);
}
#bars-blueprint-wrap .india-cell {
  background: rgba(10, 22, 40, 0.9);
  padding: 1rem;
  text-align: center;
}
#bars-blueprint-wrap .india-cell .rate {
  font-family: "DM Mono", monospace;
  font-size: 1.1rem;
  color: var(--gold-lt);
  font-weight: 500;
}
#bars-blueprint-wrap .india-cell .type {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.2rem;
  font-family: "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── HNI STICKY NAV ── */
#bars-blueprint-wrap .hni-sticky {
  position: sticky;
  top: 42px;
  z-index: 100;
  background: rgba(8, 8, 15, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192, 155, 69, 0.15);
  padding: 0.7rem 0;
}
#bars-blueprint-wrap .hni-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}
#bars-blueprint-wrap .hni-nav-logo img {
  height: 26px;
}
#bars-blueprint-wrap .hni-nav-logo {
  flex-shrink: 0;
}
#bars-blueprint-wrap .hni-secs {
  display: flex;
  gap: 0.3rem;
  overflow-x: auto;
  scrollbar-width: none;
  min-width: 0;
  flex: 1 1 auto;
}
#bars-blueprint-wrap .hni-secs::-webkit-scrollbar {
  display: none;
}
#bars-blueprint-wrap .hnsc {
  font-family: "DM Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  border-radius: 2px;
  background: none;
}
#bars-blueprint-wrap .hnsc:hover {
  color: var(--gold-lt);
  border-color: rgba(192, 155, 69, 0.2);
}
#bars-blueprint-wrap .hnsc.active {
  color: var(--gold-lt);
  border-color: var(--gold);
  background: rgba(192, 155, 69, 0.08);
}
#bars-blueprint-wrap .hni-nav-cta {
  font-family: "Outfit", sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  background: var(--gold);
  color: var(--ink);
  padding: 0.45rem 1.1rem;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}

/* ── HNI HERO ── */
#bars-blueprint-wrap .hni-hero {
  background: linear-gradient(135deg, #06060e 0%, #0f0f20 60%, #06060e 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
#bars-blueprint-wrap .hni-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(192, 155, 69, 0.06),
    transparent 65%
  );
}
#bars-blueprint-wrap .hni-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}
#bars-blueprint-wrap .hni-h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin: 0.5rem 0 1rem;
}
#bars-blueprint-wrap .hni-h1 em {
  font-style: italic;
  color: var(--gold-lt);
}
#bars-blueprint-wrap .hni-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 440px;
}
#bars-blueprint-wrap .hni-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
#bars-blueprint-wrap .hni-kpi {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(192, 155, 69, 0.15);
  padding: 1.2rem;
  text-align: center;
}
#bars-blueprint-wrap .hni-kpi .val {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--gold-lt);
  font-weight: 700;
  line-height: 1;
}
#bars-blueprint-wrap .hni-kpi .lbl {
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 0.4rem;
}

/* ── HNI PAGES ── */
#bars-blueprint-wrap .hni-page {
  display: none;
}
#bars-blueprint-wrap .hni-page.active {
  display: block;
}

/* ── STRATEGY OVERVIEW ── */
#bars-blueprint-wrap .strat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
#bars-blueprint-wrap .strat-card {
  background: #fff;
  border: 1px solid var(--bgrey);
  padding: 1.8rem;
  border-radius: 4px;
  transition: all 0.25s;
  cursor: pointer;
}
#bars-blueprint-wrap .strat-card:hover {
  border-color: rgba(192, 155, 69, 0.4);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
#bars-blueprint-wrap .strat-card.featured {
  border-color: rgba(192, 155, 69, 0.3);
  background: var(--gold-pale);
}
#bars-blueprint-wrap .strat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.8rem;
}
#bars-blueprint-wrap .strat-card h4 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
#bars-blueprint-wrap .strat-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}
#bars-blueprint-wrap .strat-save {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.8rem;
  font-family: "DM Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a7a4a;
  background: var(--green-lt);
  padding: 3px 9px;
  border-radius: 2px;
}

/* ── MISTAKE CARDS ── */
#bars-blueprint-wrap .mistake-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
#bars-blueprint-wrap .mistake-card {
  background: #fff;
  border: 1px solid var(--bgrey);
  padding: 1.5rem;
  border-left: 4px solid #c0392b;
}
#bars-blueprint-wrap .mk-num {
  font-family: "DM Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c0392b;
  margin-bottom: 0.5rem;
}
#bars-blueprint-wrap .mk-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
#bars-blueprint-wrap .mk-body {
  font-size: 0.83rem;
  color: var(--slate);
  line-height: 1.7;
}
#bars-blueprint-wrap .mk-fix {
  margin-top: 0.8rem;
  padding: 0.7rem 1rem;
  background: var(--green-lt);
  border-left: 3px solid var(--green);
  font-size: 0.79rem;
  color: #1a5a38;
  line-height: 1.6;
}

/* ── DECISION TREE ── */
#bars-blueprint-wrap .decision-tree {
  background: var(--ink);
  padding: 2.5rem;
  border-radius: 6px;
  margin-top: 2.5rem;
}
#bars-blueprint-wrap .dt-title {
  font-family: "DM Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
#bars-blueprint-wrap .dt-q-row {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1rem 1rem 1rem 0;
  border-left: 2px solid rgba(192, 155, 69, 0.2);
  margin-left: 1rem;
  margin-bottom: 0.5rem;
  transition: border-color 0.2s;
}
#bars-blueprint-wrap .dt-q-row:hover {
  border-left-color: var(--gold);
}
#bars-blueprint-wrap .dt-q {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.7);
  flex: 1;
  font-weight: 600;
  padding-left: 0.8rem;
}
#bars-blueprint-wrap .dt-ans {
  font-family: "DM Mono", monospace;
  font-size: 0.68rem;
  color: var(--gold-lt);
  white-space: nowrap;
  background: rgba(192, 155, 69, 0.1);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

/* ── VEHICLE CARDS ── */
#bars-blueprint-wrap .vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
#bars-blueprint-wrap .vehicle-card {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
#bars-blueprint-wrap .vc-head {
  padding: 1.8rem 1.5rem;
}
#bars-blueprint-wrap .vc-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
#bars-blueprint-wrap .vc-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}
#bars-blueprint-wrap .vc-tagline {
  font-family: "DM Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
#bars-blueprint-wrap .vc-body {
  background: #fff;
  padding: 1.5rem;
}
#bars-blueprint-wrap .vc-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--bgrey);
  font-size: 0.82rem;
  gap: 0.8rem;
}
#bars-blueprint-wrap .vc-row:last-child {
  border-bottom: none;
}
#bars-blueprint-wrap .vc-key {
  color: var(--muted);
}
#bars-blueprint-wrap .vc-val {
  font-weight: 500;
  color: var(--slate);
  text-align: right;
  font-size: 0.8rem;
}

/* ── COMPARE MASTER ── */
#bars-blueprint-wrap .cmp-wrap {
  overflow-x: auto;
  margin-top: 2.5rem;
}
#bars-blueprint-wrap .compare-master {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  min-width: 700px;
}
#bars-blueprint-wrap .compare-master th {
  padding: 1rem 0.8rem;
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  vertical-align: bottom;
}
#bars-blueprint-wrap .compare-master th.aspect-col {
  text-align: left;
  background: var(--gold-pale);
  color: var(--gold-deep);
}
#bars-blueprint-wrap .compare-master th.nom-col {
  background: #1a3a2a;
  color: #5be891;
}
#bars-blueprint-wrap .compare-master th.will-col {
  background: #1a2a3a;
  color: #7eb8e4;
}
#bars-blueprint-wrap .compare-master th.trust-col {
  background: #2a1a1a;
  color: var(--gold-lt);
}
#bars-blueprint-wrap .compare-master th.huf-col {
  background: #1a1a2a;
  color: #c8a2e0;
}
#bars-blueprint-wrap .compare-master td {
  padding: 0.8rem 0.8rem;
  border-bottom: 1px solid var(--bgrey);
  text-align: center;
  vertical-align: top;
}
#bars-blueprint-wrap .compare-master td.aspect {
  text-align: left;
  font-weight: 600;
  color: var(--ink);
  background: var(--cream);
  font-size: 0.85rem;
}
#bars-blueprint-wrap .compare-master tr:nth-child(even) td:not(.aspect) {
  background: #fafaf8;
}
#bars-blueprint-wrap .compare-master tr:last-child td {
  border-bottom: none;
}
#bars-blueprint-wrap .good {
  color: #1a7a4a;
  font-weight: 600;
}
#bars-blueprint-wrap .bad {
  color: #c0392b;
}
#bars-blueprint-wrap .ok {
  color: var(--gold-deep);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #bars-blueprint-wrap .hero-inner,
  #bars-blueprint-wrap .ch-inner {
    grid-template-columns: 1fr;
  }
  #bars-blueprint-wrap .hero-visual {
    display: none;
  }
  #bars-blueprint-wrap .info-grid,
  #bars-blueprint-wrap .vehicle-grid {
    grid-template-columns: 1fr;
  }
  #bars-blueprint-wrap .india-grid,
  #bars-blueprint-wrap .hni-kpi-row {
    grid-template-columns: repeat(2, 1fr);
  }
  #bars-blueprint-wrap .ch-kpis {
    grid-template-columns: 1fr 1fr;
  }
  #bars-blueprint-wrap .strat-grid {
    grid-template-columns: 1fr 1fr;
  }
  #bars-blueprint-wrap .mistake-grid {
    grid-template-columns: 1fr;
  }
  #bars-blueprint-wrap .gs-hint {
    display: none;
  }
}
@media (max-width: 600px) {
  #bars-blueprint-wrap .strat-grid {
    grid-template-columns: 1fr;
  }
  #bars-blueprint-wrap .vehicle-grid {
    grid-template-columns: 1fr;
  }
}

/* ── GUIDE-SPECIFIC CTA ── */
.cta-nri,
.cta-hni {
  transition: opacity 0.2s;
}

/* ── STICKY NAV SCROLL ACTIVE ── */
#bars-blueprint-wrap .snc.active,
#bars-blueprint-wrap .hnsc.active {
  color: var(--gold-lt);
  border-color: var(--gold);
  background: rgba(192, 155, 69, 0.08);
}

/* ── RESPONSIVE — MOBILE ── */
@media (max-width: 768px) {
  #bars-blueprint-wrap .guide-switcher .gs-inner {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  #bars-blueprint-wrap .gs-tabs {
    width: 100%;
    justify-content: center;
  }
  #bars-blueprint-wrap .gs-tab {
    font-size: 0.58rem;
    padding: 0.4rem 0.8rem;
  }

  #bars-blueprint-wrap .guide-switcher {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9001;
  }

  #bars-blueprint-wrap .sticky-nav,
  #bars-blueprint-wrap .hni-sticky {
    position: fixed !important;
    top: 42px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9000;
  }

  #bars-blueprint-wrap .country-hero,
  #bars-blueprint-wrap .hni-hero,
  #bars-blueprint-wrap .hero {
    margin-top: var(--bars-mobile-nav-h, 130px);
  }

  #bars-blueprint-wrap .snav-countries,
  #bars-blueprint-wrap .hni-secs {
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  #bars-blueprint-wrap .snav-inner {
    flex-wrap: wrap;
    row-gap: 0.5rem;
  }
  #bars-blueprint-wrap .snav-countries {
    order: 3;
    width: 100%;
    flex-basis: 100%;
  }
  #bars-blueprint-wrap .snav-logo {
    order: 1;
  }

  #bars-blueprint-wrap .snav-cta,
  #bars-blueprint-wrap .hni-nav-cta {
    display: none;
  }

  #bars-blueprint-wrap .hero {
    padding: 48px 0 36px;
  }
  #bars-blueprint-wrap .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  #bars-blueprint-wrap .hero-visual {
    display: none;
  }
  #bars-blueprint-wrap .hero h1 {
    font-size: 2.2rem;
  }

  #bars-blueprint-wrap .info-grid {
    grid-template-columns: 1fr !important;
  }
  #bars-blueprint-wrap .ch-kpis {
    grid-template-columns: repeat(3, 1fr);
  }
  #bars-blueprint-wrap .kpi .val {
    font-size: 1.4rem;
  }

  #bars-blueprint-wrap .india-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #bars-blueprint-wrap .hni-kpi-row {
    grid-template-columns: repeat(2, 1fr);
  }
  #bars-blueprint-wrap .strat-grid {
    grid-template-columns: 1fr;
  }
  #bars-blueprint-wrap .mistake-grid {
    grid-template-columns: 1fr;
  }
  #bars-blueprint-wrap .vehicle-grid {
    grid-template-columns: 1fr;
  }

  #bars-blueprint-wrap .cta-inner h2 {
    font-size: 1.8rem;
  }
  #bars-blueprint-wrap .cta-btn {
    width: 100%;
    justify-content: center;
  }

  #bars-blueprint-wrap .container {
    padding: 0 1rem;
  }
  #bars-blueprint-wrap .section {
    padding: 48px 0;
  }

  #bars-blueprint-wrap .ch-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  #bars-blueprint-wrap .ch-kpis {
    grid-template-columns: 1fr 1fr 1fr;
  }
  #bars-blueprint-wrap .country-hero {
    padding: 36px 0 28px;
  }

  #bars-blueprint-wrap .hni-hero {
    padding: 48px 0 36px;
  }
  #bars-blueprint-wrap .hni-h1 {
    font-size: 2.2rem;
  }

  #bars-blueprint-wrap .decision-tree {
    padding: 1.5rem 1rem;
  }
  #bars-blueprint-wrap .dt-q-row {
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  #bars-blueprint-wrap .example-box {
    padding: 1rem;
  }
  #bars-blueprint-wrap .ex-row {
    flex-wrap: wrap;
    gap: 0.3rem;
  }
  #bars-blueprint-wrap .ex-row .v {
    text-align: left;
  }

  #bars-blueprint-wrap .cmp-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  #bars-blueprint-wrap .compare-master {
    min-width: 600px;
  }
}

@media (max-width: 480px) {
  #bars-blueprint-wrap .ch-kpis {
    grid-template-columns: 1fr;
  }
  #bars-blueprint-wrap .hero h1 {
    font-size: 1.9rem;
  }
  #bars-blueprint-wrap .hni-h1 {
    font-size: 1.9rem;
  }
  #bars-blueprint-wrap .india-grid {
    grid-template-columns: 1fr 1fr;
  }
  #bars-blueprint-wrap .gs-tab {
    padding: 0.35rem 0.6rem;
    font-size: 0.55rem;
  }
  #bars-blueprint-wrap .snc,
  #bars-blueprint-wrap .hnsc {
    font-size: 0.55rem;
    padding: 0.35rem 0.6rem;
  }
  #bars-blueprint-wrap .container {
    padding: 0 0.85rem;
  }
  #bars-blueprint-wrap .gs-inner {
    flex-wrap: wrap;
    row-gap: 0.4rem;
  }
  #bars-blueprint-wrap .gs-logo img {
    height: 20px;
  }
  #bars-blueprint-wrap .gs-tabs {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }
  #bars-blueprint-wrap .snav-logo img,
  #bars-blueprint-wrap .hni-nav-logo img {
    height: 22px;
  }
  #bars-blueprint-wrap .snav-inner,
  #bars-blueprint-wrap .hni-nav-inner {
    gap: 0.5rem;
  }
}
