/*
Theme Name:   Astra Child — Victoria Tax Resolution
Description:  Child theme for Victoria Tax Resolution
Template:     astra
Version:      1.0.8
*/

/* ── BRAND TOKENS ── */
:root {
  --vtx-navy:       #0a1628;
  --vtx-navy-deep:  #111e35;
  --vtx-gold:       #c9a84c;
  --vtx-gold-light: #e8c97a;
  --vtx-rust:       #8b2e2e;
  --vtx-cream:      #f5f0e8;
  --vtx-muted:      #8a9bb5;
  --vtx-white:      #ffffff;
  --vtx-text:       #1a1a2e;

  --vtx-font-heading: 'Playfair Display', Georgia, serif;
  --vtx-font-body:    'DM Sans', system-ui, sans-serif;

  --vtx-radius:  12px;
  --vtx-shadow:  0 4px 28px rgba(0,0,0,0.10);
}

/* ── GLOBAL RESET ── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; }
html { overflow-x: hidden; }
body { overflow-x: clip; }
img, video, iframe, svg { max-width: 100%; height: auto; }

body {
  font-family: var(--vtx-font-body);
  color: var(--vtx-text);
  font-size: 16px;
  line-height: 1.7;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--vtx-font-heading);
  color: var(--vtx-navy);
  line-height: 1.2;
}

a {
  color: var(--vtx-gold);
  text-decoration: none;
}

a:hover { color: var(--vtx-gold-light); }

/* ── HEADER ── */
.site-header,
.ast-primary-header-bar {
  background-color: var(--vtx-navy) !important;
}

.site-title a,
.site-description {
  color: var(--vtx-white) !important;
}

/* Navigation */
.main-navigation a,
.ast-primary-nav .menu-item a {
  color: var(--vtx-white) !important;
  font-family: var(--vtx-font-body);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}

.main-navigation a:hover,
.ast-primary-nav .menu-item a:hover {
  color: var(--vtx-gold) !important;
}

/* ── BUTTONS ── */
.ast-btn,
.button,
button[type="submit"],
input[type="submit"],
.wp-block-button__link,
.elementor-button {
  background-color: var(--vtx-gold) !important;
  color: var(--vtx-navy) !important;
  font-family: var(--vtx-font-body);
  font-weight: 600;
  border: none;
  border-radius: var(--vtx-radius);
  padding: 14px 28px;
  transition: background-color 0.2s, transform 0.1s;
  cursor: pointer;
}

.ast-btn:hover,
.button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover,
.elementor-button:hover {
  background-color: var(--vtx-gold-light) !important;
  color: var(--vtx-navy) !important;
  transform: translateY(-1px);
}

/* CTA / Primary button variant */
.btn-primary {
  background-color: var(--vtx-gold);
  color: var(--vtx-navy);
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--vtx-radius);
  display: inline-block;
  transition: all 0.2s;
}

.btn-primary:hover {
  background-color: var(--vtx-gold-light);
  color: var(--vtx-navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

/* ── FOOTER ── */
.site-footer,
.ast-small-footer {
  background-color: var(--vtx-navy) !important;
  color: var(--vtx-muted) !important;
}

.site-footer a { color: var(--vtx-gold) !important; }
.site-footer a:hover { color: var(--vtx-gold-light) !important; }

/* ── FORMS ── */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
  border: 1.5px solid #d1d5db;
  border-radius: var(--vtx-radius);
  padding: 12px 16px;
  font-family: var(--vtx-font-body);
  font-size: 15px;
  width: 100%;
  transition: border-color 0.2s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--vtx-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

/* ── LANGUAGE SWITCHER ── */
.polylang-switcher,
.pll-switcher-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.polylang-switcher a {
  color: var(--vtx-white) !important;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.polylang-switcher a:hover,
.polylang-switcher .current-lang a {
  opacity: 1;
  color: var(--vtx-gold) !important;
}

/* ── UTILITY CLASSES ── */
.vtx-section {
  padding: 80px 20px;
}

.vtx-section--dark {
  background-color: var(--vtx-navy);
  color: var(--vtx-cream);
}

.vtx-section--dark h1,
.vtx-section--dark h2,
.vtx-section--dark h3 {
  color: var(--vtx-white);
}

.vtx-section--cream {
  background-color: var(--vtx-cream);
}

.vtx-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.vtx-gold-text { color: var(--vtx-gold); }
.vtx-navy-text { color: var(--vtx-navy); }

/* ── CARD ── */
.vtx-card {
  background: #fff;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--vtx-radius);
  padding: 28px 32px;
  box-shadow: var(--vtx-shadow);
  transition: border-color 0.25s, transform 0.2s;
}

.vtx-card:hover {
  border-color: var(--vtx-gold);
  transform: translateY(-3px);
}

/* ── HEADER ── */
.vtx-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--vtx-navy);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.vtx-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.vtx-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.vtx-header__logo img {
  height: 52px;
  width: auto;
}

.vtx-header__logo-text {
  font-family: var(--vtx-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--vtx-white);
}

/* Desktop Nav */
.vtx-nav { flex: 1; }

.vtx-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.vtx-nav__list li a {
  display: block;
  padding: 8px 14px;
  color: var(--vtx-white) !important;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.vtx-nav__list li a:hover {
  color: var(--vtx-gold) !important;
  background: rgba(201,168,76,0.08);
}

/* Header Actions */
.vtx-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* ── iOS LANGUAGE TOGGLE ── */
.vtx-lang-switcher { display: flex; align-items: center; }

.vtx-ios-toggle {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 3px;
  gap: 0;
  width: 76px;
  height: 30px;
}

/* Sliding thumb */
.vtx-ios-toggle__thumb {
  position: absolute;
  top: 3px;
  width: 33px;
  height: 22px;
  background: var(--vtx-gold);
  border-radius: 14px;
  transition: left 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

/* Thumb position — EN active (left) */
.vtx-ios-toggle--en .vtx-ios-toggle__thumb { left: 3px; }

/* Thumb position — ES active (right) */
.vtx-ios-toggle--es .vtx-ios-toggle__thumb { left: 38px; }

/* Labels */
.vtx-ios-toggle__opt {
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5) !important;
  text-decoration: none;
  line-height: 22px;
  transition: color 0.2s;
  user-select: none;
}

.vtx-ios-toggle__opt.is-active {
  color: var(--vtx-navy) !important;
  font-weight: 800;
}

.vtx-ios-toggle__opt:hover:not(.is-active) {
  color: rgba(255,255,255,0.8) !important;
}

/* Phone CTA */
.vtx-header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--vtx-gold);
  color: var(--vtx-navy) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
}

.vtx-header__phone:hover {
  background: var(--vtx-gold-light);
  color: var(--vtx-navy) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.vtx-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.2s;
}

.vtx-hamburger:hover { background: rgba(255,255,255,0.1); }

.vtx-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--vtx-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.vtx-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vtx-hamburger.is-open span:nth-child(2) { opacity: 0; }
.vtx-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.vtx-mobile-menu {
  display: none;
  background: var(--vtx-navy-deep);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 20px 24px 28px;
}

.vtx-mobile-menu.is-open { display: block; }

.vtx-mobile-menu__list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.vtx-mobile-menu__list li a {
  display: block;
  padding: 12px 0;
  color: var(--vtx-white) !important;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}

.vtx-mobile-menu__list li a:hover { color: var(--vtx-gold) !important; }

.vtx-mobile-menu__phone {
  display: block;
  background: var(--vtx-gold);
  color: var(--vtx-navy) !important;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 20px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 16px;
}

.vtx-mobile-menu__lang {
  text-align: center;
  margin-top: 12px;
}

.vtx-mobile-menu__lang ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.vtx-mobile-menu__lang {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

.vtx-mobile-menu__lang .vtx-ios-toggle {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}

/* ── FOOTER ── */
.vtx-footer {
  background-color: var(--vtx-navy);
  color: var(--vtx-muted);
  padding: 64px 0 0;
}

.vtx-footer__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.vtx-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.vtx-footer__logo-text {
  font-family: var(--vtx-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--vtx-white);
  display: block;
  margin-bottom: 12px;
}

.vtx-footer__logo { display: inline-block; margin-bottom: 16px; }
.vtx-footer__logo img { height: 52px; width: auto; display: block; }
.vtx-footer__bbb img { height: auto; width: 100px; }

.vtx-footer__tagline {
  font-size: 13px;
  font-style: italic;
  color: var(--vtx-gold);
  margin-bottom: 10px;
}

.vtx-footer__credential {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.vtx-footer__phone-link {
  font-size: 18px;
  font-weight: 600;
  color: var(--vtx-white) !important;
  display: block;
}

.vtx-footer__phone-link:hover { color: var(--vtx-gold) !important; }

.vtx-footer__call-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--vtx-gold);
  color: var(--vtx-navy) !important;
  font-family: var(--vtx-font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: var(--vtx-radius);
  text-decoration: none !important;
  letter-spacing: 0.02em;
  margin: 12px 0 4px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.vtx-footer__call-btn:hover {
  background: var(--vtx-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(201,168,76,0.4);
}

.vtx-footer__heading {
  font-family: var(--vtx-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--vtx-gold);
  margin-bottom: 16px;
}

.vtx-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vtx-footer__links a {
  font-size: 13px;
  color: var(--vtx-muted) !important;
  transition: color 0.2s;
}

.vtx-footer__links a:hover { color: var(--vtx-white) !important; }

.vtx-footer__bbb { margin-top: 20px; }
.vtx-footer__bbb img { height: 70px; width: auto; display: block; }
.vtx-footer__flags {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  align-items: center;
}
.vtx-footer__flag {
  font-size: 2rem;
  line-height: 1;
  cursor: default;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.25));
  transition: transform 0.15s;
}
.vtx-footer__flag:hover { transform: scale(1.15); }

.vtx-footer__lang { margin-top: 16px; }

.vtx-footer__lang ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 12px;
}

.vtx-footer__lang a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--vtx-muted) !important;
}

.vtx-footer__lang .current-lang a { color: var(--vtx-gold) !important; }

.vtx-footer__bottom {
  padding: 24px 0;
  text-align: center;
}

.vtx-footer__bottom p {
  font-size: 12px;
  margin: 4px 0;
  color: var(--vtx-muted);
}

.vtx-footer__disclaimer { opacity: 0.6; font-style: italic; }

/* ── MOBILE RESPONSIVE ── */
/* ── SHARED COMPONENTS ── */
.vtx-eyebrow,
.vtx-section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--vtx-gold);
  margin-bottom: 14px;
}

.vtx-section-label--light { color: var(--vtx-gold-light); }

.vtx-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--vtx-radius);
  font-family: var(--vtx-font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.vtx-btn--primary {
  background: var(--vtx-gold);
  color: var(--vtx-navy) !important;
}

.vtx-btn--primary:hover {
  background: var(--vtx-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.vtx-btn--gold {
  background: var(--vtx-gold);
  color: var(--vtx-navy) !important;
  border: none;
}

.vtx-btn--gold:hover {
  background: var(--vtx-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
  color: var(--vtx-navy) !important;
}

.vtx-btn--outline {
  background: transparent;
  color: var(--vtx-white) !important;
  border: 1.5px solid rgba(255,255,255,0.4);
}

.vtx-btn--outline:hover {
  border-color: var(--vtx-gold);
  color: var(--vtx-gold) !important;
}

/* ── FULL-WIDTH LAYOUT OVERRIDE ── */
/* Astra constrains .site-content differently for non-home templates.
   The body_class filter adds .home to ES, but this CSS covers any edge cases. */
.home .site-content,
.ast-page-builder-template .site-content {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ── HERO ── */
.vtx-hero {
  position: relative;
  background-color: var(--vtx-navy);
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.vtx-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 65%),
              linear-gradient(135deg, #0a1628 0%, #111e35 100%);
}

.vtx-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: center;
  gap: 48px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.vtx-hero__content {
  max-width: 560px;
}

/* ── HERO CREDIBILITY CARD ── */
.vtx-hero__card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  text-align: center;
  flex-shrink: 0;
}

.vtx-hero__card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #15803d;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.vtx-hero__card-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: vtx-pulse 2s ease-in-out infinite;
}

@keyframes vtx-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

.vtx-hero__card-photo {
  margin: 0 auto 14px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--vtx-gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.15);
}

.vtx-hero__card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.vtx-hero__card-name {
  font-family: var(--vtx-font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--vtx-navy);
  margin: 0 0 4px;
}

.vtx-hero__card-cred {
  font-size: 11px;
  color: #6b7280;
  margin: 0 0 20px;
  line-height: 1.4;
}

.vtx-hero__card-how {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--vtx-navy);
  margin: 0 0 12px;
  text-align: left;
}

.vtx-hero__card-steps {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  counter-reset: card-step;
}

.vtx-hero__card-steps li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: #374151;
  line-height: 1.45;
  counter-increment: card-step;
}

.vtx-hero__card-steps li::before {
  content: counter(card-step);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--vtx-navy);
  color: var(--vtx-white);
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}

.vtx-hero__card-stars {
  color: #f59e0b;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.vtx-hero__card-review {
  font-size: 12px;
  color: #374151;
  line-height: 1.55;
  font-style: italic;
  margin: 0 0 8px;
  text-align: left;
}

.vtx-hero__card-author {
  font-size: 11px;
  font-weight: 700;
  color: var(--vtx-navy);
  margin: 0;
  text-align: left;
}

.vtx-hero__content h1 {
  font-family: var(--vtx-font-heading);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: var(--vtx-white);
  line-height: 1.1;
  margin: 0 0 20px;
}

.vtx-hero__sub {
  font-size: 17px;
  color: var(--vtx-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.vtx-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.vtx-hero__trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.vtx-hero__trust span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* ── QUIZ ── */
.vtx-quiz {
  padding: 80px 20px;
  background: #fff;
}

.vtx-quiz h2 {
  font-family: var(--vtx-font-heading);
  font-size: clamp(26px, 4vw, 40px);
  color: var(--vtx-navy);
  margin-bottom: 10px;
}

.vtx-quiz__sub {
  color: #666;
  font-size: 15px;
  margin-bottom: 44px;
}

.vtx-quiz__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}

.vtx-quiz__card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: var(--vtx-radius);
  padding: 18px 20px;
  min-height: 76px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.vtx-quiz__card:hover {
  border-color: var(--vtx-gold);
  background: #fffdf5;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.15);
}

.vtx-quiz__card--cta {
  border-color: var(--vtx-navy);
  background: #f8f9ff;
}

.vtx-quiz__card--cta:hover {
  background: var(--vtx-navy);
}

.vtx-quiz__card--cta:hover .vtx-quiz__label {
  color: var(--vtx-white);
}

.vtx-quiz__icon {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.vtx-quiz__label {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: var(--vtx-navy);
  line-height: 1.45;
}

.vtx-quiz__arrow {
  color: var(--vtx-gold);
  font-size: 16px;
  flex-shrink: 0;
  opacity: 0;
  margin-top: 2px;
  transform: translateX(-4px);
  transition: all 0.2s;
}

.vtx-quiz__card:hover .vtx-quiz__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── ABOUT / CREDIBILITY ── */
.vtx-about { padding: 88px 20px; }

.vtx-about__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}

.vtx-about__photo img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.vtx-about__content h2 {
  font-family: var(--vtx-font-heading);
  font-size: clamp(26px, 3vw, 38px);
  color: var(--vtx-white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.vtx-about__content p {
  color: var(--vtx-muted);
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.75;
}

.vtx-about__stats {
  display: flex;
  gap: 32px;
  margin: 28px 0;
  flex-wrap: wrap;
}

.vtx-stat__num {
  font-family: var(--vtx-font-heading);
  font-size: 36px;
  font-weight: 900;
  color: var(--vtx-gold);
  line-height: 1;
}

.vtx-stat__label {
  font-size: 12px;
  color: var(--vtx-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vtx-about__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.vtx-badge {
  padding: 6px 14px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 20px;
  font-size: 12px;
  color: var(--vtx-gold);
  font-weight: 500;
}

/* ── HOW IT WORKS ── */
.vtx-steps { background: #fff; }

.vtx-steps h2 {
  font-family: var(--vtx-font-heading);
  font-size: clamp(26px, 4vw, 38px);
  color: var(--vtx-navy);
  margin-bottom: 44px;
}

.vtx-steps__grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: start;
  gap: 0;
}

.vtx-step {
  padding: 32px 28px;
  background: #f9fafb;
  border-radius: var(--vtx-radius);
  border: 1px solid #e5e7eb;
  height: 100%;
}

.vtx-step__num {
  font-family: var(--vtx-font-heading);
  font-size: 48px;
  font-weight: 900;
  color: var(--vtx-gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 14px;
}

.vtx-step h3 {
  font-size: 17px;
  color: var(--vtx-navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.vtx-step p {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
}

.vtx-step__connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--vtx-gold), rgba(201,168,76,0.2));
  flex-shrink: 0;
  align-self: start;
  margin-top: 60px;
}

.vtx-steps__cta {
  text-align: center;
  margin-top: 44px;
}

/* ── SERVICES GRID ── */
.vtx-services h2 {
  font-family: var(--vtx-font-heading);
  font-size: clamp(26px, 4vw, 38px);
  color: var(--vtx-navy);
  margin-bottom: 10px;
}

.vtx-services__sub {
  color: #666;
  margin-bottom: 36px;
  font-size: 15px;
}

.vtx-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.vtx-service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--vtx-radius);
  padding: 26px 28px;
  text-decoration: none;
  transition: all 0.2s;
}

.vtx-service-card:hover {
  border-color: var(--vtx-gold);
  transform: translateY(-3px);
  box-shadow: var(--vtx-shadow);
}

.vtx-service-card h4 {
  font-size: 15px;
  color: var(--vtx-navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.vtx-service-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.vtx-service-card__link {
  font-size: 12px;
  color: var(--vtx-gold);
  font-weight: 600;
  line-height: 1.4;
  display: block;
}

/* ── CTA BANNER ── */
.vtx-cta-banner {
  padding: 72px 20px;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.vtx-cta-banner__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.vtx-cta-banner h2 {
  font-family: var(--vtx-font-heading);
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--vtx-white);
  margin-bottom: 14px;
  line-height: 1.15;
}

.vtx-cta-banner p {
  color: var(--vtx-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.vtx-cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── VSL / WEBINAR LANDING PAGES ── */
.vtx-vsl-page { background: var(--vtx-navy); }

.vtx-vsl-hero {
  background: linear-gradient(160deg, #050d1a 0%, var(--vtx-navy-deep) 100%);
  padding: 72px 20px 56px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  text-align: center;
}
.vtx-vsl-hero__inner { max-width: 800px; margin: 0 auto; }
.vtx-vsl-hero .vtx-eyebrow { margin-bottom: 16px; }
.vtx-vsl-hero__h1 {
  font-family: var(--vtx-font-heading);
  font-size: clamp(28px, 4vw, 52px);
  color: var(--vtx-white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.vtx-vsl-hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--vtx-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Video */
.vtx-vsl-video-section {
  background: #070f1e;
  padding: 56px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.vtx-vsl-video-section__inner { max-width: 840px; margin: 0 auto; }
.vtx-vsl-video__label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--vtx-gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.vtx-vsl-video__frame {
  width: 100%;
  aspect-ratio: 16/9;
  background: #0a1628;
  border-radius: var(--vtx-radius);
  border: 1px solid rgba(201,168,76,0.2);
  overflow: hidden;
  position: relative;
}
.vtx-vsl-video__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--vtx-muted);
  font-size: 14px;
}
.vtx-vsl-video__play-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 2px solid var(--vtx-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vtx-gold);
}

/* Dual CTA */
.vtx-vsl-cta-split {
  background: var(--vtx-navy-deep);
  padding: 80px 20px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.vtx-vsl-cta-split__inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
}
.vtx-vsl-cta-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--vtx-radius);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vtx-vsl-cta-card--webinar {
  border-color: rgba(255,255,255,0.12);
}
.vtx-vsl-cta-card--book {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.04);
}
.vtx-vsl-cta-card__badge {
  display: inline-block;
  width: fit-content;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.08);
  color: var(--vtx-muted);
}
.vtx-vsl-cta-card__badge--gold {
  background: rgba(201,168,76,0.15);
  color: var(--vtx-gold);
}
.vtx-vsl-cta-card__h2 {
  font-family: var(--vtx-font-heading);
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--vtx-white);
  line-height: 1.2;
  margin: 0;
}
.vtx-vsl-cta-card__sub {
  font-size: 15px;
  color: var(--vtx-muted);
  line-height: 1.65;
  margin: 0;
}
.vtx-vsl-cta-card__btn { align-self: flex-start; }
.vtx-vsl-cta-card__note {
  font-size: 12px;
  color: rgba(138,155,181,0.7);
  margin: 0;
}
.vtx-vsl-cta-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  flex-shrink: 0;
}
.vtx-vsl-cta-divider span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--vtx-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Learn */
.vtx-vsl-learn {
  background: var(--vtx-navy);
  padding: 80px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.vtx-vsl-learn__inner { max-width: 760px; }
.vtx-vsl-learn__title {
  font-family: var(--vtx-font-heading);
  font-size: clamp(22px, 3vw, 34px);
  color: var(--vtx-white);
  margin-bottom: 36px;
}
.vtx-vsl-learn__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.vtx-vsl-learn__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--vtx-muted);
  line-height: 1.65;
}
.vtx-vsl-learn__list li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: rgba(201,168,76,0.1);
  border: 1.5px solid var(--vtx-gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

/* Who This Is For */
.vtx-vsl-who {
  background: var(--vtx-navy-deep);
  padding: 80px 20px;
}
.vtx-vsl-who__inner { max-width: 760px; }
.vtx-vsl-who h2 {
  font-family: var(--vtx-font-heading);
  font-size: clamp(22px, 3vw, 34px);
  color: var(--vtx-white);
  margin-bottom: 32px;
}
.vtx-vsl-who__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vtx-vsl-who__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--vtx-muted);
  line-height: 1.6;
}
.vtx-vsl-who__list li::before {
  content: '→';
  color: var(--vtx-gold);
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 2px;
}

/* About Luisa on VSL */
.vtx-vsl-about {
  background: var(--vtx-navy);
  padding: 80px 20px;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.vtx-vsl-about__inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: center;
}
.vtx-vsl-about__photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--vtx-gold);
  flex-shrink: 0;
}
.vtx-vsl-about__photo img { width: 100%; height: 100%; object-fit: cover; }
.vtx-vsl-about__title {
  font-family: var(--vtx-font-heading);
  font-size: 22px;
  color: var(--vtx-white);
  margin-bottom: 14px;
}
.vtx-vsl-about__text { display: flex; flex-direction: column; gap: 0; }
.vtx-vsl-about__body {
  font-size: 16px;
  color: var(--vtx-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.vtx-vsl-about__creds {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.vtx-vsl-about__creds span {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--vtx-gold);
}

@media (max-width: 900px) {
  .vtx-vsl-cta-split__inner { grid-template-columns: 1fr; gap: 0; }
  .vtx-vsl-cta-card { border-radius: 0; border-bottom: none; }
  .vtx-vsl-cta-card:first-child { border-radius: var(--vtx-radius) var(--vtx-radius) 0 0; }
  .vtx-vsl-cta-card:last-child { border-radius: 0 0 var(--vtx-radius) var(--vtx-radius); border-bottom: 1px solid rgba(201,168,76,0.3); border-top: none; }
  .vtx-vsl-cta-divider { width: 100%; padding: 16px 0; }
  .vtx-vsl-about__inner { grid-template-columns: 1fr; text-align: center; }
  .vtx-vsl-about__photo { margin: 0 auto; }
  .vtx-vsl-about__creds { justify-content: center; }
}

@media (max-width: 768px) {
  .vtx-vsl-hero { padding: 56px 16px 40px; }
  .vtx-vsl-video-section { padding: 40px 16px; }
  .vtx-vsl-learn, .vtx-vsl-who, .vtx-vsl-about { padding: 56px 16px; }
  .vtx-vsl-cta-split { padding: 56px 16px; }
  .vtx-vsl-cta-card { padding: 28px 20px; }
}

/* ── SERVICE PAGES ── */
.vtx-service-page { background: var(--vtx-navy); }

.vtx-svc-hero {
  background: linear-gradient(160deg, var(--vtx-navy-deep) 0%, #0d1f3c 100%);
  padding: 80px 20px 72px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.vtx-svc-hero__inner { max-width: 760px; }
.vtx-svc-hero .vtx-eyebrow { margin-bottom: 16px; }
.vtx-svc-hero__h1 {
  font-family: var(--vtx-font-heading);
  font-size: clamp(30px, 4vw, 52px);
  color: var(--vtx-white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.vtx-svc-hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--vtx-muted);
  max-width: 620px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.vtx-svc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.vtx-svc-what {
  background: var(--vtx-navy);
  padding: 72px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.vtx-svc-what__inner { max-width: 760px; }
.vtx-svc-what h2 {
  font-family: var(--vtx-font-heading);
  font-size: clamp(22px, 3vw, 36px);
  color: var(--vtx-white);
  margin-bottom: 20px;
}
.vtx-svc-what p {
  font-size: 17px;
  color: var(--vtx-muted);
  line-height: 1.75;
}

.vtx-svc-steps {
  background: var(--vtx-navy-deep);
  padding: 80px 20px;
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.vtx-svc-steps__title {
  font-family: var(--vtx-font-heading);
  font-size: clamp(22px, 3vw, 36px);
  color: var(--vtx-white);
  margin-bottom: 48px;
  text-align: center;
}
.vtx-svc-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.vtx-svc-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--vtx-radius);
  padding: 32px 28px;
}
.vtx-svc-step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--vtx-gold);
  color: var(--vtx-navy);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.vtx-svc-step__title {
  font-family: var(--vtx-font-heading);
  font-size: 18px;
  color: var(--vtx-white);
  margin-bottom: 10px;
}
.vtx-svc-step__desc {
  font-size: 15px;
  color: var(--vtx-muted);
  line-height: 1.7;
}

.vtx-svc-qualify {
  background: var(--vtx-navy);
  padding: 80px 20px;
}
.vtx-svc-qualify__inner { max-width: 760px; }
.vtx-svc-qualify h2 {
  font-family: var(--vtx-font-heading);
  font-size: clamp(22px, 3vw, 36px);
  color: var(--vtx-white);
  margin-bottom: 32px;
}
.vtx-svc-qualify__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vtx-svc-qualify__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--vtx-muted);
  line-height: 1.6;
}
.vtx-svc-qualify__list li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1.5px solid var(--vtx-gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .vtx-svc-steps__grid { grid-template-columns: 1fr; gap: 20px; }
  .vtx-svc-hero { padding: 56px 16px 48px; }
  .vtx-svc-what,
  .vtx-svc-qualify { padding: 56px 16px; }
  .vtx-svc-steps { padding: 56px 16px; }
}

/* ── SERVICE PAGE — PAIN SECTION ── */
.vtx-svc-pain {
  background: #fff;
  padding: 72px 20px;
}
.vtx-svc-pain__inner { max-width: 760px; margin: 0 auto; }
.vtx-svc-pain h2 {
  font-family: var(--vtx-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--vtx-navy);
  margin-bottom: 28px;
}
.vtx-svc-pain__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.vtx-svc-pain__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
  padding: 14px 18px;
  background: #f9fafb;
  border-left: 3px solid var(--vtx-gold);
  border-radius: 0 6px 6px 0;
}
.vtx-svc-pain__list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23c9a84c'%3E%3Cpath d='M10 2a8 8 0 100 16A8 8 0 0010 2zm0 1.5a6.5 6.5 0 110 13 6.5 6.5 0 010-13zM10 6a.75.75 0 01.75.75v3.5a.75.75 0 01-1.5 0v-3.5A.75.75 0 0110 6zm0 6.5a1 1 0 110 2 1 1 0 010-2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.vtx-svc-pain__callout {
  background: var(--vtx-navy);
  border-left: 4px solid var(--vtx-gold);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
}
.vtx-svc-pain__callout p {
  color: #e5e7eb;
  font-size: 1rem;
  margin: 0;
  font-style: italic;
}

/* ── SERVICE PAGE — STAKES SECTION ── */
.vtx-svc-stakes {
  background: #0f1a2e;
  padding: 72px 20px;
}
.vtx-svc-stakes__inner { max-width: 860px; margin: 0 auto; }
.vtx-svc-stakes h2 {
  font-family: var(--vtx-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 36px;
  text-align: center;
}
.vtx-svc-stakes__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vtx-svc-stakes__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px;
  padding: 20px 24px;
}
.vtx-svc-stakes__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1.5px solid var(--vtx-gold);
  color: var(--vtx-gold);
  font-family: var(--vtx-serif);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vtx-svc-stakes__item p {
  color: #d1d5db;
  font-size: 0.975rem;
  line-height: 1.65;
  margin: 0;
  padding-top: 6px;
}

/* ── SERVICE PAGE — STRATEGY SESSION SECTION ── */
.vtx-svc-session {
  background: #f0f4f9;
  padding: 80px 20px;
}
.vtx-svc-session__inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}
.vtx-svc-session__text h2 {
  font-family: var(--vtx-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--vtx-navy);
  margin-bottom: 24px;
}
.vtx-svc-session__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vtx-svc-session__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.975rem;
  color: #374151;
  line-height: 1.6;
}
.vtx-svc-session__list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1.5px solid var(--vtx-gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.vtx-svc-session__card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.vtx-svc-session__card-top {
  background: var(--vtx-navy);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.vtx-svc-session__card-dot-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.vtx-svc-session__card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
  animation: vtx-pulse 2s infinite;
}
@keyframes vtx-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.25); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0.1); }
}
.vtx-svc-session__card-status {
  color: #d1fae5;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.vtx-svc-session__card-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--vtx-gold);
}
.vtx-svc-session__card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vtx-svc-session__card-name {
  font-family: var(--vtx-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--vtx-navy);
  text-align: center;
  margin: 16px 24px 4px;
}
.vtx-svc-session__card-cred {
  font-size: 0.8rem;
  color: #6b7280;
  text-align: center;
  margin: 0 24px 4px;
}
.vtx-svc-session__card-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 16px 24px;
}
.vtx-svc-session__card-offer {
  font-family: var(--vtx-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--vtx-navy);
  text-align: center;
  margin: 0 24px 8px;
}
.vtx-svc-session__card-note {
  font-size: 0.8rem;
  color: #6b7280;
  text-align: center;
  margin: 0 24px 24px;
  line-height: 1.5;
}

/* ── SERVICE PAGE — WEBINAR NUDGE ── */
.vtx-svc-vsl-nudge {
  background: #fdf8ee;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 28px 20px;
}
.vtx-svc-vsl-nudge__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.vtx-svc-vsl-nudge__play {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--vtx-gold);
  color: var(--vtx-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vtx-svc-vsl-nudge__copy { flex: 1; }
.vtx-svc-vsl-nudge__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vtx-gold);
  margin: 0 0 4px;
}
.vtx-svc-vsl-nudge__text {
  font-size: 0.9rem;
  color: #374151;
  margin: 0;
  line-height: 1.5;
}
.vtx-svc-vsl-nudge__btn {
  flex-shrink: 0;
  background: transparent;
  border: 1.5px solid var(--vtx-gold);
  color: #8a6d1e;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.vtx-svc-vsl-nudge__btn:hover {
  background: var(--vtx-gold);
  color: var(--vtx-navy);
}
@media (max-width: 640px) {
  .vtx-svc-vsl-nudge__inner { flex-direction: column; text-align: center; }
  .vtx-svc-vsl-nudge__btn { width: 100%; justify-content: center; }
}

/* ── SERVICE PAGE — FAQ SECTION ── */
.vtx-svc-faq {
  background: #fff;
  padding: 80px 20px;
}
.vtx-svc-faq__inner { max-width: 760px; margin: 0 auto; }
.vtx-svc-faq__title {
  font-family: var(--vtx-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--vtx-navy);
  margin-bottom: 36px;
  text-align: center;
}
.vtx-svc-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vtx-svc-faq__item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}
.vtx-svc-faq__item[open] {
  border-color: rgba(201,168,76,0.4);
}
.vtx-svc-faq__q {
  list-style: none;
  padding: 18px 20px;
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--vtx-navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
  background: #f9fafb;
}
.vtx-svc-faq__item[open] .vtx-svc-faq__q {
  background: #f0f4f9;
  color: var(--vtx-navy);
  border-bottom: 1px solid #e5e7eb;
}
.vtx-svc-faq__q::after {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23c9a84c'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.2s;
}
.vtx-svc-faq__item[open] .vtx-svc-faq__q::after {
  transform: rotate(180deg);
}
.vtx-svc-faq__a {
  padding: 18px 20px;
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.7;
  margin: 0;
  background: #fff;
}

/* ── GHOST BUTTON ── */
.vtx-btn--ghost {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, background 0.2s;
}
.vtx-btn--ghost:hover {
  border-color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
  color: #fff;
}

/* Grid items must be allowed to shrink below intrinsic content width */
.vtx-svc-session__inner > * { min-width: 0; }
.vtx-svc-session__text, .vtx-svc-session__card { max-width: 100%; }

/* ── SERVICE PAGE RESPONSIVE (new sections) ── */
@media (max-width: 900px) {
  .vtx-svc-session__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
  .vtx-svc-session__card {
    position: static;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .vtx-svc-pain,
  .vtx-svc-stakes,
  .vtx-svc-faq { padding: 56px 16px; }
  .vtx-svc-session { padding: 56px 16px; }
  .vtx-svc-stakes__item { flex-direction: column; gap: 12px; }
}

/* ════════════════════════════════════════
   BLOG — SHARED
════════════════════════════════════════ */
.vtx-blog-cat-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vtx-gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* ── BLOG HOME — HERO ── */
.vtx-blog-hero {
  background: linear-gradient(160deg, var(--vtx-navy-deep) 0%, #0d1f3c 100%);
  padding: 64px 20px 56px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.vtx-blog-hero__inner { max-width: 720px; }
.vtx-blog-hero .vtx-eyebrow { margin-bottom: 14px; }
.vtx-blog-hero__h1 {
  font-family: var(--vtx-font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.vtx-blog-hero__sub {
  font-size: 1rem;
  color: var(--vtx-muted);
  line-height: 1.7;
  max-width: 600px;
}

/* ── BLOG CATEGORY NAV ── */
.vtx-blog-cats {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 10;
}
.vtx-blog-cats__inner {
  max-width: var(--vtx-max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 12px 16px;
}
@media (max-width: 768px) {
  .vtx-blog-cats__inner { flex-wrap: nowrap; justify-content: flex-start; }
}
.vtx-blog-cats__inner::-webkit-scrollbar { display: none; }
.vtx-blog-cats__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  margin-right: 8px;
}
.vtx-blog-cats__link {
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 500;
  color: #6b7280;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.vtx-blog-cats__link:hover,
.vtx-blog-cats__link.is-active {
  background: var(--vtx-navy);
  color: #fff;
}

/* ── BLOG MAIN LAYOUT ── */
.vtx-blog-main { padding: 60px 20px; background: #f9fafb; }
.vtx-blog-main__inner { max-width: var(--vtx-max-w); margin: 0 auto; }

/* ── FEATURED POST ── */
.vtx-blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  margin-bottom: 40px;
  border: 1px solid #e5e7eb;
}
.vtx-blog-featured__img-wrap { display: block; overflow: hidden; }
.vtx-blog-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.vtx-blog-featured__img-wrap:hover .vtx-blog-featured__img { transform: scale(1.03); }
.vtx-blog-featured__body {
  padding: 36px 36px 36px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vtx-blog-featured__title {
  font-family: var(--vtx-font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.25;
  margin-bottom: 14px;
}
.vtx-blog-featured__title a {
  color: var(--vtx-navy);
  text-decoration: none;
}
.vtx-blog-featured__title a:hover { color: var(--vtx-gold); }
.vtx-blog-featured__excerpt {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.vtx-blog-featured__meta {
  font-size: 0.8rem;
  color: #9ca3af;
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.vtx-blog-featured__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--vtx-gold);
  text-decoration: none;
}
.vtx-blog-featured__link:hover { color: #8a6d1e; }

/* ── POST GRID ── */
.vtx-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.vtx-blog-grid--3 { grid-template-columns: repeat(3, 1fr); }
.vtx-blog-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.vtx-blog-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.vtx-blog-card__img-wrap { display: block; overflow: hidden; height: 180px; }
.vtx-blog-card__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.vtx-blog-card__img-wrap:hover .vtx-blog-card__img { transform: scale(1.04); }
.vtx-blog-card__img-placeholder {
  height: 180px;
  background: linear-gradient(135deg, #0d1f3c 0%, #1a3560 100%);
}
.vtx-blog-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.vtx-blog-card__title {
  font-family: var(--vtx-font-heading);
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 10px;
  flex: 1;
}
.vtx-blog-card__title a { color: var(--vtx-navy); text-decoration: none; }
.vtx-blog-card__title a:hover { color: var(--vtx-gold); }
.vtx-blog-card__excerpt {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 12px;
}
.vtx-blog-card__meta {
  font-size: 0.75rem;
  color: #9ca3af;
  display: flex;
  gap: 10px;
  margin-top: auto;
}

/* ── BLOG INLINE CTA STRIP ── */
.vtx-blog-cta-strip {
  background: var(--vtx-navy);
  border-radius: 10px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
.vtx-blog-cta-strip p {
  color: #e5e7eb;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

/* ── BLOG FEATURED — no-image placeholder ── */
.vtx-blog-featured__img-wrap--empty {
  background: linear-gradient(135deg, #0d1f3c 0%, #1a3560 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vtx-blog-featured__placeholder-icon {
  font-family: var(--vtx-font-heading);
  font-size: 5rem;
  color: rgba(201,168,76,0.25);
  font-weight: 900;
  letter-spacing: -2px;
}
.vtx-blog-featured__meta-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.vtx-blog-featured__badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  background: #f3f4f6;
  padding: 3px 10px;
  border-radius: 20px;
}
.vtx-blog-featured__cta {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--vtx-gold);
  text-decoration: none;
}
.vtx-blog-featured__cta:hover { color: #8a6d1e; }
.vtx-blog-card__img-placeholder {
  height: 180px;
  background: linear-gradient(135deg, #0d1f3c 0%, #1a3560 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vtx-blog-card__img-placeholder span {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(201,168,76,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.vtx-blog-cta-strip--solo { margin-top: 0; }

/* ── BLOG EMPTY STATE ── */
.vtx-blog-coming {
  background: #f9fafb;
  padding: 72px 20px 80px;
}
.vtx-blog-coming__h2 {
  font-family: var(--vtx-font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--vtx-navy);
  text-align: center;
  margin-bottom: 12px;
}
.vtx-blog-coming__sub {
  text-align: center;
  color: #6b7280;
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.6;
}
.vtx-blog-topics {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}
.vtx-blog-topic-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.vtx-blog-topic-card:hover {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.vtx-blog-topic-card__icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 12px;
}
.vtx-blog-topic-card__name {
  font-family: var(--vtx-font-heading);
  font-size: 1rem;
  color: var(--vtx-navy);
  margin-bottom: 8px;
}
.vtx-blog-topic-card__desc {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}
.vtx-blog-notify {
  background: var(--vtx-navy);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  max-width: 540px;
  margin: 0 auto 40px;
}
.vtx-blog-notify__h {
  font-family: var(--vtx-font-heading);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 8px;
}
.vtx-blog-notify__sub {
  font-size: 0.875rem;
  color: var(--vtx-muted);
  margin-bottom: 20px;
}
.vtx-blog-notify__form {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.vtx-blog-notify__input {
  flex: 1;
  max-width: 280px;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
}
.vtx-blog-notify__input::placeholder { color: rgba(255,255,255,0.4); }
.vtx-blog-notify__input:focus { border-color: var(--vtx-gold); }
@media (max-width: 480px) {
  .vtx-blog-notify__form { flex-direction: column; align-items: center; }
  .vtx-blog-notify__input { max-width: 100%; width: 100%; }
  .vtx-blog-topics { grid-template-columns: 1fr; }
}

/* ── BLOG PAGINATION ── */
.vtx-blog-pagination {
  display: flex;
  justify-content: center;
  padding: 32px 0 8px;
  border-top: 1px solid #e5e7eb;
  margin-top: 8px;
}
.vtx-blog-pagination .page-numbers {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.vtx-blog-pagination .page-numbers li { margin: 0; padding: 0; }
.vtx-blog-pagination .page-numbers a,
.vtx-blog-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vtx-navy);
  background: #fff;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.vtx-blog-pagination .page-numbers a:hover {
  background: var(--vtx-navy);
  color: #fff;
  border-color: var(--vtx-navy);
}
.vtx-blog-pagination .page-numbers .current {
  background: var(--vtx-navy);
  color: #fff;
  border-color: var(--vtx-navy);
  cursor: default;
}
.vtx-blog-pagination .page-numbers .dots {
  border: none;
  background: transparent;
  color: #9ca3af;
}
.vtx-blog-pagination .page-numbers .prev,
.vtx-blog-pagination .page-numbers .next {
  padding: 0 16px;
  font-weight: 600;
}
@media (max-width: 600px) {
  .vtx-blog-pagination .page-numbers a,
  .vtx-blog-pagination .page-numbers span {
    min-width: 36px; height: 36px; padding: 0 10px; font-size: 0.85rem;
  }
}
.vtx-blog-empty { color: #6b7280; font-size: 1rem; padding: 40px 0; }

/* ════════════════════════════════════════
   SINGLE POST
════════════════════════════════════════ */
.vtx-post-header {
  background: linear-gradient(160deg, var(--vtx-navy-deep) 0%, #0d1f3c 100%);
  padding: 56px 20px 52px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.vtx-post-header__inner { max-width: 760px; margin: 0 auto; }
.vtx-post-header__back {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--vtx-muted);
  text-decoration: none;
  margin-bottom: 20px;
  transition: color 0.15s;
}
.vtx-post-header__back:hover { color: var(--vtx-gold); }
.vtx-post-header__title {
  font-family: var(--vtx-font-heading);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: #fff;
  line-height: 1.2;
  margin: 12px 0 20px;
}
.vtx-post-header__meta {
  font-size: 0.82rem;
  color: var(--vtx-muted);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.vtx-post-header__sep { opacity: 0.4; }

/* ── POST THUMBNAIL ── */
.vtx-post-thumb { padding: 0 20px; margin-top: -1px; background: #f9fafb; }
.vtx-post-thumb .vtx-container { max-width: 860px; }
.vtx-post-thumb__img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 0 0 10px 10px;
  display: block;
}

/* ── POST BODY ── */
.vtx-post-body__wrap {
  max-width: 760px;
  padding-top: 52px;
  padding-bottom: 60px;
}
.vtx-post-body {
  font-size: 1rem;
  line-height: 1.8;
  color: #1f2937;
}
.vtx-post-body h2 {
  font-family: var(--vtx-font-heading);
  font-size: 1.5rem;
  color: var(--vtx-navy);
  margin: 40px 0 16px;
}
.vtx-post-body h3 {
  font-family: var(--vtx-font-heading);
  font-size: 1.2rem;
  color: var(--vtx-navy);
  margin: 32px 0 12px;
}
.vtx-post-body p { margin-bottom: 20px; }
.vtx-post-body ul,
.vtx-post-body ol {
  margin: 0 0 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vtx-post-body a { color: var(--vtx-gold); text-decoration: underline; }
.vtx-post-body blockquote {
  border-left: 4px solid var(--vtx-gold);
  background: #fdf8ee;
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #374151;
}
.vtx-post-body strong { color: var(--vtx-navy); font-weight: 600; }

/* List markers */
.vtx-post-body ul li::marker { color: var(--vtx-gold); font-size: 1.1em; }
.vtx-post-body ol li::marker { color: var(--vtx-gold); font-weight: 700; }

/* Horizontal rule */
.vtx-post-body hr {
  border: none;
  border-top: 1px solid rgba(10, 22, 40, 0.10);
  margin: 40px 0;
}

/* In-post CTA button */
.vtx-post-body .vtx-btn--gold {
  display: inline-block;
  background: var(--vtx-gold);
  color: var(--vtx-navy) !important;
  font-family: var(--vtx-font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: var(--vtx-radius);
  text-decoration: none !important;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.vtx-post-body .vtx-btn--gold:hover {
  background: var(--vtx-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

/* ── TABLE WRAPPER (added by JS) ── */
.vtx-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 32px 0 36px;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(10, 22, 40, 0.09);
  border: 1px solid rgba(10, 22, 40, 0.08);
}

/* ── TABLE BASE ── */
.vtx-post-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  line-height: 1.55;
  background: #fff;
  /* Rounded corners handled by wrapper; table itself needs this to not bleed */
  border-radius: 10px;
  overflow: hidden;
}

/* Header row */
.vtx-post-body table thead tr {
  background: var(--vtx-navy);
}
.vtx-post-body table th {
  padding: 14px 18px;
  text-align: left;
  font-family: var(--vtx-font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 3px solid var(--vtx-gold);
  white-space: nowrap;
}

/* Body cells */
.vtx-post-body table td {
  padding: 13px 18px;
  color: #374151;
  border-bottom: 1px solid rgba(10, 22, 40, 0.07);
  vertical-align: top;
}

/* Alternating rows */
.vtx-post-body table tbody tr:nth-child(even) td {
  background: #f8f9fb;
}
.vtx-post-body table tbody tr:last-child td {
  border-bottom: none;
}

/* Row hover */
.vtx-post-body table tbody tr:hover td {
  background: rgba(201, 168, 76, 0.06);
}

/* First column — usually a label; give it weight */
.vtx-post-body table tbody td:first-child {
  font-weight: 600;
  color: var(--vtx-navy);
  white-space: nowrap;
}

/* Strong inside td resets to normal so the first-child rule doesn't double-stack */
.vtx-post-body table td strong {
  font-weight: 600;
  color: var(--vtx-navy);
}

/* ── TABLE RESPONSIVE ── */
@media (max-width: 600px) {
  .vtx-post-body table th,
  .vtx-post-body table td {
    padding: 11px 14px;
    font-size: 0.85rem;
    white-space: normal;
  }
  .vtx-post-body table tbody td:first-child {
    white-space: normal;
  }
}

/* ── AUTHOR BIO ── */
.vtx-post-author {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #e5e7eb;
}
.vtx-post-author__photo {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--vtx-gold);
}
.vtx-post-author__photo img { width: 100%; height: 100%; object-fit: cover; }
.vtx-post-author__name {
  font-family: var(--vtx-font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--vtx-navy);
  margin: 0 0 6px;
}
.vtx-post-author__bio {
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* ── POST CTA BANNER ── */
.vtx-post-cta {
  background: var(--vtx-navy);
  padding: 60px 20px;
  margin-top: 0;
}
.vtx-post-cta__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.vtx-post-cta__text h2 {
  font-family: var(--vtx-font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #fff;
  margin-bottom: 10px;
}
.vtx-post-cta__text p {
  color: var(--vtx-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 520px;
  margin: 0;
}

/* ── RELATED POSTS ── */
.vtx-post-related { background: #f9fafb; padding: 64px 20px; }
.vtx-post-related__title {
  font-family: var(--vtx-font-heading);
  font-size: 1.4rem;
  color: var(--vtx-navy);
  margin-bottom: 28px;
  text-align: center;
}

/* ── BLOG RESPONSIVE ── */
@media (max-width: 900px) {
  .vtx-blog-featured { grid-template-columns: 1fr; }
  .vtx-blog-featured__body { padding: 24px; }
  .vtx-blog-grid,
  .vtx-blog-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .vtx-post-cta__inner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .vtx-blog-grid,
  .vtx-blog-grid--3 { grid-template-columns: 1fr; }
  .vtx-blog-cta-strip { flex-direction: column; text-align: center; }
  .vtx-blog-hero { padding: 48px 16px 40px; }
  .vtx-blog-main { padding: 40px 16px; }
  .vtx-post-author { flex-direction: column; }
}

/* ── BOOKING PAGE ── */
.vtx-book-hero {
  background: var(--vtx-navy);
  padding: 64px 20px 56px;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.vtx-book-hero .vtx-eyebrow { margin-bottom: 12px; }

.vtx-book-hero h1 {
  font-family: var(--vtx-font-heading);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--vtx-white);
  margin: 0 0 16px;
  line-height: 1.15;
}

.vtx-book-hero__sub {
  font-size: 16px;
  color: var(--vtx-muted);
  max-width: 620px;
  line-height: 1.7;
  margin: 0;
}

.vtx-book-body__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}

/* Aside */
.vtx-book-aside {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.vtx-book-luisa {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--vtx-navy);
  border-radius: var(--vtx-radius);
  border: 1px solid rgba(201,168,76,0.15);
}

.vtx-book-luisa__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--vtx-gold);
  flex-shrink: 0;
}

.vtx-book-luisa__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.vtx-book-luisa__name {
  font-family: var(--vtx-font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--vtx-white);
  margin: 0 0 4px;
}

.vtx-book-luisa__cred {
  font-size: 11px;
  color: var(--vtx-muted);
  margin: 0;
  line-height: 1.4;
}

.vtx-book-expect {
  background: var(--vtx-cream);
  border-radius: var(--vtx-radius);
  padding: 24px;
}

.vtx-book-expect__heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--vtx-navy);
  margin: 0 0 16px;
}

.vtx-book-expect__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vtx-book-expect__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
}

.vtx-book-expect__list li::before {
  content: '✓';
  color: var(--vtx-gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.vtx-book-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vtx-book-phone {
  padding-top: 4px;
}

.vtx-book-phone p {
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 4px;
}

.vtx-book-phone a {
  font-size: 18px;
  font-weight: 700;
  color: var(--vtx-navy);
}

.vtx-book-phone a:hover { color: var(--vtx-gold); }

/* Form column */
.vtx-book-form {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--vtx-radius);
  padding: 32px;
  box-shadow: var(--vtx-shadow);
}

.vtx-book-form__heading {
  font-family: var(--vtx-font-heading);
  font-size: 22px;
  color: var(--vtx-navy);
  margin: 0 0 6px;
}

.vtx-book-form__note {
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 24px;
}

.vtx-book-form__embed iframe {
  width: 100%;
  min-height: 500px;
  display: block;
}

/* Booking page responsive */
@media (max-width: 900px) {
  .vtx-book-body__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .vtx-book-aside { flex-direction: row; flex-wrap: wrap; }
  .vtx-book-luisa,
  .vtx-book-expect { flex: 1 1 280px; }
}

@media (max-width: 600px) {
  .vtx-book-hero { padding: 48px 20px 40px; }
  .vtx-book-form { padding: 20px; }
  .vtx-book-aside { flex-direction: column; }
}

/* ── GENERIC PAGE ── */
.vtx-page { padding: 60px 20px; }
.vtx-page__title {
  font-family: var(--vtx-font-heading);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--vtx-navy);
  margin-bottom: 28px;
}
.vtx-page__content { font-size: 16px; line-height: 1.75; color: #444; }

/* ── RESPONSIVE ── */

/* Tablet — collapse nav */
@media (max-width: 1024px) {
  .vtx-section { padding: 64px 20px; }
  .vtx-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .vtx-about__inner { grid-template-columns: 1fr; gap: 40px; }
  .vtx-about__photo { max-width: 400px; }
  .vtx-steps__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0;
  }
  .vtx-step { height: auto; }
  .vtx-step__connector {
    width: 2px;
    height: 32px;
    margin: 0 0 0 26px;
    align-self: auto;
    background: linear-gradient(to bottom, var(--vtx-gold), rgba(201,168,76,0.2));
  }
  .vtx-cta-banner__actions { gap: 10px; }
}

@media (max-width: 960px) {
  .vtx-hero__inner {
    grid-template-columns: 1fr;
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .vtx-hero__card { display: none; }
}

/* Mobile — hamburger menu */
@media (max-width: 768px) {
  .vtx-nav { display: none; }
  .vtx-lang-switcher { display: none; }
  .vtx-header__phone span { display: none; }
  .vtx-header__phone { padding: 10px 12px; }
  .vtx-hamburger { display: flex; }

  /* Pin phone + hamburger to top-right corner instead of floating mid-header */
  .vtx-header__inner { align-items: flex-start; padding-top: 14px; padding-right: 14px; }
  .vtx-header__actions { gap: 10px; }
  .vtx-header__logo { align-self: center; }

  .vtx-section { padding: 48px 16px; }

  h1 { font-size: clamp(28px, 7vw, 48px); }
  h2 { font-size: clamp(22px, 5vw, 36px); }

  .vtx-container { padding: 0 16px; }

  .ast-btn,
  .button,
  button[type="submit"],
  input[type="submit"] {
    width: 100%;
    text-align: center;
    padding: 16px 20px;
  }

  .vtx-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .vtx-footer { padding-top: 48px; }
}

/* Small mobile */
@media (max-width: 480px) {
  .vtx-section { padding: 36px 12px; }
  .vtx-header__inner { padding: 14px 14px 0 16px; }
  .vtx-hero__inner { padding-top: 56px; padding-bottom: 56px; }
}

/* ─── About Page (legacy classes — kept for safety) ───────── */
.vtx-about-hero {
  background: linear-gradient(135deg, var(--vtx-navy) 0%, #112240 100%);
  padding: 72px 0 64px;
}
.vtx-about-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.vtx-about-hero__text { flex: 1; }
.vtx-about-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vtx-gold);
  margin-bottom: 14px;
}
.vtx-about-hero__h1 {
  font-family: var(--vtx-font-heading);
  font-size: clamp(36px, 5vw, 56px);
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.1;
}
.vtx-about-hero__credential {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.vtx-about-hero__badge { flex-shrink: 0; }
.vtx-about-hero__ea-seal {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid var(--vtx-gold);
  background: rgba(201,168,76,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.vtx-about-hero__ea-initials {
  font-family: var(--vtx-font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--vtx-gold);
  line-height: 1;
}
.vtx-about-hero__ea-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.vtx-about-body {
  padding: 64px 20px;
  max-width: 820px;
}
.vtx-about-body h2 {
  font-family: var(--vtx-font-heading);
  font-size: 26px;
  color: var(--vtx-navy);
  margin: 48px 0 14px;
  padding-top: 48px;
  border-top: 1px solid rgba(10,22,40,0.08);
}
.vtx-about-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.vtx-about-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--vtx-navy);
  margin: 28px 0 10px;
}
.vtx-about-body p { color: #374151; line-height: 1.75; margin-bottom: 18px; }
.vtx-about-body ul, .vtx-about-body ol {
  margin: 0 0 20px 24px;
  color: #374151;
  line-height: 1.75;
}
.vtx-about-body ul li::marker { color: var(--vtx-gold); }
.vtx-about-body strong { color: var(--vtx-navy); font-weight: 700; }

.vtx-about-cta {
  background: var(--vtx-navy);
  padding: 72px 20px;
  text-align: center;
}
.vtx-about-cta__h2 {
  font-family: var(--vtx-font-heading);
  font-size: clamp(26px, 4vw, 38px);
  color: #fff;
  margin-bottom: 16px;
}
.vtx-about-cta__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .vtx-about-hero__inner { flex-direction: column; text-align: center; }
  .vtx-about-hero__credential { margin-left: auto; margin-right: auto; }
  .vtx-about-body { padding: 40px 16px; }
}

/* ─── Privacy Policy Page ─────────────────────────────────── */
.vtx-policy {
  max-width: 780px;
  padding: 64px 20px 80px;
  margin: 0 auto;
  color: #374151;
  line-height: 1.75;
}
.vtx-policy__effective {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(10,22,40,0.08);
}
.vtx-policy h2 {
  font-family: var(--vtx-font-heading);
  font-size: 22px;
  color: var(--vtx-navy);
  margin: 44px 0 12px;
}
.vtx-policy h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--vtx-navy);
  margin: 24px 0 8px;
}
.vtx-policy p { margin-bottom: 16px; }
.vtx-policy ul {
  margin: 0 0 18px 24px;
}
.vtx-policy ul li::marker { color: var(--vtx-gold); }
.vtx-policy strong { color: var(--vtx-navy); }
.vtx-policy a { color: var(--vtx-gold); text-decoration: underline; }
.vtx-policy__contact {
  background: rgba(10,22,40,0.04);
  border-left: 3px solid var(--vtx-gold);
  padding: 20px 24px;
  border-radius: 0 6px 6px 0;
  margin-top: 8px;
}

/* ══════════════════════════════════════════════════════════
   About Page — vtx-ap-* (full redesign)
   ══════════════════════════════════════════════════════════ */

/* shared page wrapper — breaks Astra's inner content padding */
.vtx-about-page { width: 100%; }
.entry-content .vtx-about-page,
.site-content .vtx-about-page { max-width: none; padding: 0; margin: 0; }

/* ── Hero ── */
.vtx-ap-hero {
  background: linear-gradient(135deg, var(--vtx-navy) 0%, #112240 100%);
  padding: 80px 32px 72px;
}
.vtx-ap-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.vtx-ap-hero__text { flex: 1; }
.vtx-ap-hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vtx-gold);
  margin-bottom: 14px;
}
.vtx-ap-hero__h1 {
  font-family: var(--vtx-font-heading);
  font-size: clamp(36px, 5vw, 54px);
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.1;
}
.vtx-ap-hero__ea { color: var(--vtx-gold); }
.vtx-ap-hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 32px;
}
.vtx-ap-hero__badge { flex-shrink: 0; }
.vtx-ap-hero__seal {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid var(--vtx-gold);
  background: rgba(201,168,76,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.vtx-ap-hero__seal-initials {
  font-family: var(--vtx-font-heading);
  font-size: 50px;
  font-weight: 700;
  color: var(--vtx-gold);
  line-height: 1;
}
.vtx-ap-hero__seal-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ── Bio ── */
.vtx-ap-bio {
  background: #fff;
  padding: 88px 32px;
}
.vtx-ap-bio__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: start;
}
.vtx-ap-bio__photo-col { position: sticky; top: 100px; }
.vtx-ap-bio__photo-wrap {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(10,22,40,0.15);
}
.vtx-ap-bio__photo { width: 100%; display: block; }
.vtx-ap-bio__creds {
  margin-top: 24px;
  background: #f4f6f9;
  border-left: 4px solid var(--vtx-gold);
  padding: 20px 24px;
  border-radius: 0 4px 4px 0;
}
.vtx-ap-bio__creds-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vtx-gold);
  margin-bottom: 12px;
}
.vtx-ap-bio__creds-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vtx-ap-bio__creds-list li {
  font-size: 14px;
  color: var(--vtx-navy);
  line-height: 1.5;
  padding: 5px 0;
  border-bottom: 1px solid rgba(10,22,40,0.07);
  padding-left: 20px;
  position: relative;
}
.vtx-ap-bio__creds-list li:last-child { border-bottom: none; }
.vtx-ap-bio__creds-list li::before {
  content: "✓";
  color: var(--vtx-gold);
  position: absolute;
  left: 0;
  font-weight: 700;
}
.vtx-ap-bio__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vtx-gold);
  margin-bottom: 12px;
}
.vtx-ap-bio__h2 {
  font-family: var(--vtx-font-heading);
  font-size: clamp(26px, 3vw, 36px);
  color: var(--vtx-navy);
  line-height: 1.2;
  margin-bottom: 28px;
}
.vtx-ap-bio__body p {
  font-size: 17px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 20px;
}
.vtx-ap-bio__body p:last-child { margin-bottom: 0; }

/* ── Stats Bar ── */
.vtx-ap-stats {
  background: var(--vtx-navy);
  padding: 0 32px;
}
.vtx-ap-stats__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}
.vtx-ap-stats__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
  gap: 6px;
}
.vtx-ap-stats__divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  margin: 20px 0;
  flex-shrink: 0;
}
.vtx-ap-stats__num {
  font-family: var(--vtx-font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--vtx-gold);
  line-height: 1;
}
.vtx-ap-stats__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ── EA Credential ── */
.vtx-ap-ea {
  background: #f4f6f9;
  padding: 88px 32px;
}
.vtx-ap-ea__inner {
  max-width: 760px;
  margin: 0 auto;
}
.vtx-ap-ea__h2 {
  font-family: var(--vtx-font-heading);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--vtx-navy);
  margin-bottom: 28px;
  line-height: 1.25;
}
.vtx-ap-ea__body p {
  font-size: 17px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 18px;
}
.vtx-ap-ea__body p:last-child { margin-bottom: 0; }

/* ── Focus Areas ── */
.vtx-ap-focus {
  background: #fff;
  padding: 88px 32px;
}
.vtx-ap-focus__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.vtx-ap-focus__header {
  max-width: 640px;
  margin-bottom: 48px;
}
.vtx-ap-focus__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vtx-gold);
  margin-bottom: 8px;
}
.vtx-ap-focus__h2 {
  font-family: var(--vtx-font-heading);
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--vtx-navy);
  margin-bottom: 16px;
  line-height: 1.15;
}
.vtx-ap-focus__sub {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
}
.vtx-ap-focus__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vtx-ap-focus__card {
  background: #f4f6f9;
  border-top: 3px solid var(--vtx-gold);
  padding: 28px 26px;
  border-radius: 0 0 4px 4px;
}
.vtx-ap-focus__card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--vtx-navy);
  margin-bottom: 10px;
}
.vtx-ap-focus__card-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

/* ── Approach ── */
.vtx-ap-approach {
  background: var(--vtx-navy);
  padding: 88px 32px;
}
.vtx-ap-approach__inner {
  max-width: 760px;
  margin: 0 auto;
}
.vtx-ap-approach__h2 {
  font-family: var(--vtx-font-heading);
  font-size: clamp(24px, 3vw, 34px);
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.2;
}
.vtx-ap-approach__inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 20px;
}
.vtx-ap-approach__inner p:last-child { margin-bottom: 0; }

/* ── Comparison Table ── */
.vtx-ap-compare {
  background: #fff;
  padding: 88px 32px;
}
.vtx-ap-compare__inner {
  max-width: 960px;
  margin: 0 auto;
}
.vtx-ap-compare__h2 {
  font-family: var(--vtx-font-heading);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--vtx-navy);
  margin-bottom: 12px;
}
.vtx-ap-compare__sub {
  font-size: 16px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 680px;
}
.vtx-ap-compare__scroll { overflow-x: auto; }
.vtx-ap-compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.vtx-ap-compare__th {
  background: var(--vtx-navy);
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  padding: 14px 20px;
  text-align: center;
}
.vtx-ap-compare__th--label { text-align: left; }
.vtx-ap-compare__th--ea { color: var(--vtx-gold); }
.vtx-ap-compare__td {
  padding: 14px 20px;
  color: #666;
  text-align: center;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}
.vtx-ap-compare__td--label {
  text-align: left;
  font-weight: 600;
  color: var(--vtx-navy);
}
.vtx-ap-compare__td--ea {
  color: var(--vtx-navy);
  font-weight: 500;
}
.vtx-ap-compare__tr--alt td { background: #f9f9f9; }

/* ── Simple Books Now ── */
.vtx-ap-sbn {
  background: #f4f6f9;
  padding: 72px 32px;
}
.vtx-ap-sbn__inner {
  max-width: 960px;
  margin: 0 auto;
}
.vtx-ap-sbn__card {
  background: #fff;
  border: 1px solid #e4e8ef;
  border-left: 5px solid var(--vtx-gold);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  border-radius: 0 4px 4px 0;
}
.vtx-ap-sbn__text { flex: 1; }
.vtx-ap-sbn__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vtx-gold);
  margin-bottom: 8px;
}
.vtx-ap-sbn__h3 {
  font-family: var(--vtx-font-heading);
  font-size: 24px;
  color: var(--vtx-navy);
  margin-bottom: 12px;
}
.vtx-ap-sbn__desc {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin: 0;
}
.vtx-ap-sbn__action { flex-shrink: 0; }
.vtx-btn--navy {
  display: inline-block;
  background: var(--vtx-navy);
  color: #fff !important;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  text-decoration: none;
  letter-spacing: 0.04em;
  border-radius: var(--vtx-radius);
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.vtx-btn--navy:hover { background: #1a3460; transform: translateY(-2px); }

/* ── Bottom CTA ── */
.vtx-ap-cta {
  background: var(--vtx-gold);
  padding: 88px 32px;
  text-align: center;
}
.vtx-ap-cta__inner { max-width: 680px; margin: 0 auto; }
.vtx-ap-cta__h2 {
  font-family: var(--vtx-font-heading);
  font-size: clamp(26px, 4vw, 38px);
  color: var(--vtx-navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.vtx-ap-cta__inner .vtx-btn--gold {
  background: var(--vtx-navy);
  color: #fff !important;
}
.vtx-ap-cta__inner .vtx-btn--gold:hover { background: #1a3460; }
.vtx-ap-cta__sub {
  font-size: 17px;
  color: rgba(10,22,40,0.75);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.vtx-ap-cta__note {
  font-size: 13px;
  color: rgba(10,22,40,0.55);
  margin-top: 20px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .vtx-ap-bio__inner { grid-template-columns: 1fr; gap: 48px; }
  .vtx-ap-bio__photo-col { position: static; max-width: 360px; }
  .vtx-ap-focus__grid { grid-template-columns: repeat(2, 1fr); }
  .vtx-ap-sbn__card { flex-direction: column; gap: 28px; }
  .vtx-ap-stats__inner { flex-wrap: wrap; }
  .vtx-ap-stats__divider { display: none; }
  .vtx-ap-stats__item { min-width: 140px; }
}
@media (max-width: 640px) {
  .vtx-ap-hero__inner { flex-direction: column; text-align: center; }
  .vtx-ap-hero__badge { display: none; }
  .vtx-ap-focus__grid { grid-template-columns: 1fr; }
  .vtx-ap-bio { padding: 56px 20px; }
  .vtx-ap-ea, .vtx-ap-focus, .vtx-ap-approach,
  .vtx-ap-compare, .vtx-ap-sbn, .vtx-ap-cta { padding: 64px 20px; }
}

/* ══════════════════════════════════════════════════════════
   Services Hub Page — vtx-sh-*
   ══════════════════════════════════════════════════════════ */

/* ── Hero ── */
.vtx-sh-hero {
  background: linear-gradient(135deg, var(--vtx-navy) 0%, #112240 100%);
  padding: 88px 32px 80px;
  text-align: center;
}
.vtx-sh-hero__inner { max-width: 760px; margin: 0 auto; }
.vtx-sh-hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vtx-gold);
  margin-bottom: 16px;
}
.vtx-sh-hero__h1 {
  font-family: var(--vtx-font-heading);
  font-size: clamp(36px, 5vw, 56px);
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}
.vtx-sh-hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ── Grid Section ── */
.vtx-sh-grid-section {
  background: #f4f6f9;
  padding: 80px 32px;
}
.vtx-sh-grid-inner { max-width: 1140px; margin: 0 auto; }
.vtx-sh-intro {
  max-width: 680px;
  margin: 0 auto 52px;
  text-align: center;
}
.vtx-sh-intro p {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
}

/* ── Card Grid ── */
.vtx-sh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vtx-sh-card {
  background: #fff;
  border: 1px solid #e8ecf0;
  border-top: 3px solid var(--vtx-gold);
  border-radius: 0 0 6px 6px;
  padding: 32px 28px 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.18s, box-shadow 0.18s, border-top-color 0.18s;
}
.vtx-sh-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10,22,40,0.10);
  border-top-color: var(--vtx-gold-light);
}
.vtx-sh-card__icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.vtx-sh-card__title {
  font-family: var(--vtx-font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--vtx-navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.vtx-sh-card__desc {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}
.vtx-sh-card__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--vtx-gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: auto;
}
.vtx-sh-card:hover .vtx-sh-card__link { color: var(--vtx-navy); }

/* ── Mid Strip ── */
.vtx-sh-strip {
  background: var(--vtx-navy);
  padding: 52px 32px;
}
.vtx-sh-strip__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.vtx-sh-strip__text {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  flex: 1;
  min-width: 260px;
  margin: 0;
}

/* ── Why EA ── */
.vtx-sh-why {
  background: #fff;
  padding: 80px 32px;
}
.vtx-sh-why__inner { max-width: 1100px; margin: 0 auto; }
.vtx-sh-why__h2 {
  font-family: var(--vtx-font-heading);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--vtx-navy);
  margin-bottom: 48px;
  text-align: center;
}
.vtx-sh-why__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.vtx-sh-why__col h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--vtx-navy);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--vtx-gold);
  display: inline-block;
}
.vtx-sh-why__col p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin: 12px 0 0;
}

/* ── Bottom CTA ── */
.vtx-sh-cta {
  background: var(--vtx-gold);
  padding: 88px 32px;
  text-align: center;
}
.vtx-sh-cta__inner { max-width: 640px; margin: 0 auto; }
.vtx-sh-cta__h2 {
  font-family: var(--vtx-font-heading);
  font-size: clamp(26px, 4vw, 38px);
  color: var(--vtx-navy);
  margin-bottom: 16px;
}
.vtx-sh-cta__sub {
  font-size: 17px;
  color: rgba(10,22,40,0.75);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.vtx-sh-cta__inner .vtx-btn--gold {
  background: var(--vtx-navy);
  color: #fff !important;
}
.vtx-sh-cta__inner .vtx-btn--gold:hover { background: #1a3460; }
.vtx-sh-cta__note {
  font-size: 13px;
  color: rgba(10,22,40,0.5);
  margin-top: 20px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .vtx-sh-grid { grid-template-columns: repeat(2, 1fr); }
  .vtx-sh-why__cols { grid-template-columns: 1fr; gap: 32px; }
  .vtx-sh-strip__inner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .vtx-sh-grid { grid-template-columns: 1fr; }
  .vtx-sh-hero, .vtx-sh-grid-section, .vtx-sh-why, .vtx-sh-cta { padding: 64px 20px; }
  .vtx-sh-strip { padding: 48px 20px; }
}

/* ════════════════════════════════════════
   MOBILE SAFETY — overflow + wrapping
════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Buttons: never overflow their container, wrap long labels gracefully */
  .vtx-btn,
  .vtx-btn--gold,
  .vtx-btn--navy,
  .vtx-btn--ghost,
  .vtx-cta-btn {
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    text-align: center;
    line-height: 1.3;
  }
  /* Strategy session: tighten card padding on phone */
  .vtx-svc-session__card-name,
  .vtx-svc-session__card-cred { margin-left: 16px; margin-right: 16px; }
  .vtx-svc-session__card-top { padding: 20px 16px; }

  /* Long word breaks inside text-heavy panels */
  .vtx-svc-session__text,
  .vtx-svc-pain,
  .vtx-svc-stakes,
  .vtx-svc-faq,
  .vtx-blog-card__body,
  .vtx-post-body {
    overflow-wrap: anywhere;
  }

  /* Any direct child of main content keeps within viewport */
  .vtx-service-page > section,
  .vtx-about-page > section,
  .vtx-vsl-page > section,
  .vtx-blog-archive > section,
  .vtx-sh-page > section { max-width: 100vw; }
}

/* Tables — make all data tables horizontally scrollable on phones */
.vtx-ap-compare__scroll,
.vtx-table-scroll { -webkit-overflow-scrolling: touch; }
@media (max-width: 600px) {
  .vtx-ap-compare__table { min-width: 480px; font-size: 13px; }
  .vtx-ap-compare__th,
  .vtx-ap-compare__td { padding: 10px 12px; }
}

/* ════════════════════════════════════════
   MOBILE HERO — CENTERED LAYOUT
   (matches simplebooksnow.com pattern: centered headline,
    stacked centered buttons, centered trust signals)
════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Homepage + Spanish hero */
  .vtx-hero__content { text-align: center; }
  .vtx-hero__content h1,
  .vtx-hero__sub { margin-left: auto; margin-right: auto; }

  .vtx-hero__actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .vtx-hero__actions > a,
  .vtx-hero__actions > .vtx-btn {
    width: 100%;
    max-width: 360px;
    text-align: center;
    justify-content: center;
  }

  .vtx-hero__trust {
    justify-content: center;
    row-gap: 8px;
    column-gap: 18px;
  }
  .vtx-hero__trust span { white-space: nowrap; }

  /* Service page hero — same treatment */
  .vtx-svc-hero__inner { text-align: center; margin: 0 auto; }
  .vtx-svc-hero__h1,
  .vtx-svc-hero__sub { margin-left: auto; margin-right: auto; }

  .vtx-svc-hero__actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .vtx-svc-hero__actions > a,
  .vtx-svc-hero__actions > .vtx-btn {
    width: 100%;
    max-width: 360px;
    text-align: center;
    justify-content: center;
  }

  /* VSL/webinar hero CTAs — same pattern */
  .vtx-vsl-hero__actions,
  .vtx-vsl-cta-card__actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .vtx-vsl-hero__actions > a,
  .vtx-vsl-cta-card__actions > a {
    width: 100%;
    max-width: 360px;
    text-align: center;
    justify-content: center;
  }

  /* Services hub / About / Booking — center any flex CTA cluster */
  .vtx-sh-hero__actions,
  .vtx-about-hero__actions,
  .vtx-book-hero__actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .vtx-sh-hero__actions > a,
  .vtx-about-hero__actions > a,
  .vtx-book-hero__actions > a {
    width: 100%;
    max-width: 360px;
    text-align: center;
    justify-content: center;
  }
}
