:root {
  --bg: #06080d;
  --bg-soft: #0c1018;
  --panel: rgba(15, 20, 31, 0.92);
  --panel-2: rgba(10, 14, 21, 0.96);
  --text: #f7f4ee;
  --muted: #b8b2a6;
  --gold: #d8a545;
  --gold-bright: #f0cb73;
  --gold-soft: rgba(216, 165, 69, 0.18);
  --line: rgba(216, 165, 69, 0.18);
  --line-strong: rgba(216, 165, 69, 0.32);
  --success: #9ddeab;
  --danger: #ffb6a0;
  --radius: 26px;
  --radius-sm: 18px;
  --max: 1220px;
  --shadow: 0 28px 70px rgba(0,0,0,0.45);
  --shadow-soft: 0 18px 42px rgba(0,0,0,0.28);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(216, 165, 69, 0.08), transparent 22%),
    radial-gradient(circle at top right, rgba(22, 38, 68, 0.16), transparent 28%),
    linear-gradient(180deg, #07090d 0%, #0a0d13 40%, #06080d 100%);
  color: var(--text);
  font: 16px/1.6 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.12;
  mask-image: linear-gradient(180deg, rgba(255,255,255,0.55), transparent 82%);
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.skip-link {
  position: absolute; left: -999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  left: 12px; top: 12px; width: auto; height: auto; padding: 10px 14px; z-index: 999;
  border-radius: 12px; background: #111827; border: 1px solid var(--line-strong);
}
.site-header {
  position: sticky; top: 0; z-index: 70;
  background: rgba(4, 7, 12, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 40px rgba(0,0,0,0.24);
}
.site-header::after {
  content: ""; position: absolute; inset: auto 0 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 203, 115, 0.46), transparent);
}
.header-inner {
  min-height: 80px; display: flex; align-items: center; gap: 16px; justify-content: space-between;
}
.brand {
  display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: max-content;
}
.brand img { width: 44px; height: 44px; }
.brand strong { font-size: 1.7rem; letter-spacing: -0.05em; }
.brand span { display: block; color: var(--muted); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; }
.nav-toggle {
  display: none; min-width: 48px; min-height: 48px; border-radius: 14px; border: 1px solid var(--line);
  background: rgba(255,255,255,0.03); color: #fff; font-size: 1.2rem;
}
.nav {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: center; flex: 1;
}
.nav a {
  text-decoration: none; color: #ebe4d5; font-weight: 700; font-size: 0.95rem;
  padding: 11px 14px; border-radius: 999px; transition: 0.18s ease;
}
.nav a:hover, .nav a[aria-current="page"] {
  background: rgba(216,165,69,0.11); color: #fff;
}
.nav a[aria-current="page"] { box-shadow: inset 0 -2px 0 var(--gold); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 20px; border-radius: 16px; border: 1px solid var(--line);
  text-decoration: none; font-weight: 800; line-height: 1; transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #161106; border-color: rgba(255,226,153,0.45);
  background: linear-gradient(180deg, #f0cb73 0%, #d29a34 100%);
  box-shadow: 0 16px 28px rgba(176, 121, 18, 0.28), inset 0 1px 0 rgba(255, 248, 219, 0.4);
}
.btn-secondary {
  color: #fff; background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border-color: rgba(216,165,69,0.24);
}
.btn-ghost {
  color: #efe7d7; background: transparent; border-color: rgba(255,255,255,0.08);
}
.btn.full { width: 100%; }
.billing-actions { display: grid; gap: 10px; margin-top: 18px; }
.billing-actions .btn { min-height: 46px; font-size: 0.95rem; }
.billing-actions .btn-secondary { color: #f7edd7; }

.hero-wrap { padding: 52px 0 28px; position: relative; overflow: hidden; }
.hero-shell {
  position: relative; overflow: hidden; border-radius: 34px; border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 0% 0%, rgba(216,165,69,0.18), transparent 22%),
    radial-gradient(circle at 100% 0%, rgba(26, 51, 86, 0.25), transparent 30%),
    linear-gradient(180deg, rgba(14,19,30,0.96), rgba(8,11,18,0.98));
  box-shadow: var(--shadow);
  padding: 30px;
}
.hero-shell::before {
  content: ""; position: absolute; inset: 16px; border-radius: 24px; border: 1px solid rgba(255,255,255,0.04); pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr); gap: 28px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; color: var(--gold-bright);
  text-transform: uppercase; letter-spacing: 0.2em; font-weight: 800; font-size: 0.74rem; margin-bottom: 16px;
}
.eyebrow::before {
  content: ""; width: 9px; height: 9px; border-radius: 999px; background: var(--gold-bright); box-shadow: 0 0 18px rgba(240, 203, 115, 0.7);
}
h1, h2, h3, h4 { margin: 0 0 12px; line-height: 1.04; }
h1 { font-size: clamp(2.9rem, 5vw, 5.2rem); letter-spacing: -0.07em; max-width: 12ch; }
h2 { font-size: clamp(2rem, 3vw, 3.2rem); letter-spacing: -0.055em; }
h3 { font-size: 1.25rem; letter-spacing: -0.03em; }
.lead { color: var(--muted); font-size: 1.08rem; max-width: 56ch; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.info-strip {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; margin-top: 26px;
}
.info-item, .metric, .card, .price-card, .location-card, .faq-item, .guide-card, .legal-card, .notice, .contact-card, .step-card, .cta-panel, .mini-stat {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(15, 20, 31, 0.94), rgba(8, 11, 18, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}
.info-item::before, .metric::before, .card::before, .price-card::before, .location-card::before, .faq-item::before, .guide-card::before, .legal-card::before, .contact-card::before, .step-card::before, .cta-panel::before, .mini-stat::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,234,190,0.2), transparent);
}
.info-item { padding: 18px; display: flex; gap: 14px; align-items: flex-start; }
.info-item img { width: 22px; height: 22px; margin-top: 3px; }
.info-item strong, .metric strong, .mini-stat strong { display: block; font-size: 1rem; }
.info-item span, .metric span, .muted, .small, .table-wrap td, .table-wrap th { color: var(--muted); }
.hero-visual {
  position: relative; min-height: 100%;
}
.hero-stage {
  position: relative; min-height: 520px; border-radius: 28px; overflow: hidden; border: 1px solid rgba(216,165,69,0.22);
  background:
    linear-gradient(180deg, rgba(7,10,17,0.3), rgba(7,10,17,0.72)),
    radial-gradient(circle at center, rgba(242,194,77,.12), transparent 22rem), linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04), 0 24px 60px rgba(0,0,0,0.38);
}
.hero-stage::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(240,203,115,0.18), transparent 26%),
    radial-gradient(circle at 20% 0%, rgba(77,113,176,0.18), transparent 36%);
}
.hero-stage > img.hero-visual-art {
  position: absolute; right: 0; bottom: 0; width: min(100%, 590px); z-index: 2;
}
.hero-stage > img.hero-visual-ornament {
  position: absolute; left: 12%; top: 10%; width: min(48%, 250px); opacity: 0.8; z-index: 1;
}
.stage-copy {
  position: absolute; inset: auto 18px 18px 18px; z-index: 3; display: grid; gap: 12px;
}
.metric-row { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.mini-stat { padding: 14px; backdrop-filter: blur(8px); background: rgba(6,9,16,0.74); }
.mini-stat small { color: var(--muted); display: block; }
.section { padding: 30px 0; }
.section-head { margin-bottom: 20px; }
.section-head.center { text-align: center; max-width: 860px; margin-left: auto; margin-right: auto; }
.eyebrow.center { justify-content: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.card, .guide-card, .faq-item, .legal-card, .contact-card, .step-card, .price-card, .location-card, .metric { padding: 24px; }
.card-icon { width: 26px; height: 26px; margin-bottom: 14px; }
.tag-row, .pill-row { display: flex; gap: 10px; flex-wrap: wrap; }
.pill, .tag {
  display: inline-flex; align-items: center; gap: 8px; border-radius: 999px;
  border: 1px solid rgba(216,165,69,0.18); background: rgba(255,255,255,0.03);
  color: #e5dccb; padding: 9px 13px; font-size: 0.92rem;
}
.tag.success { color: var(--success); border-color: rgba(157,222,171,0.24); background: rgba(157,222,171,0.08); }
.tag.warning { color: #f4d58d; }
.price-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px;
}
.price-card.highlight {
  border-color: rgba(240,203,115,0.34); transform: translateY(-2px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.36), 0 0 0 1px rgba(240,203,115,0.08) inset;
}
.price-top { display: flex; align-items: start; justify-content: space-between; gap: 12px; }
.price { font-size: 2.7rem; letter-spacing: -0.07em; font-weight: 900; }
.price small { font-size: 0.9rem; color: var(--muted); font-weight: 700; }
.plan-name { font-size: 1.35rem; }
.feature-list { margin: 16px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.feature-list li { position: relative; padding-left: 18px; color: var(--muted); }
.feature-list li::before { content: "•"; position: absolute; left: 0; color: var(--gold-bright); }
.location-card h3 { margin-bottom: 8px; }
.location-meta { display: flex; gap: 10px; flex-wrap: wrap; margin: 14px 0; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 14px 12px; border-bottom: 1px solid rgba(216,165,69,0.1); }
th { color: #f1e8d8; font-size: 0.92rem; }
.cta-panel { padding: 26px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.cta-panel > div { max-width: 680px; }
.steps { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.step-number {
  width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 16px;
  background: linear-gradient(180deg, rgba(240,203,115,0.18), rgba(240,203,115,0.05)); border: 1px solid rgba(240,203,115,0.28); color: var(--gold-bright); font-weight: 900;
}
.faq-item summary {
  cursor: pointer; list-style: none; font-weight: 800; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 14px 0 0; color: var(--muted); }
.contact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 18px; }
.notice { padding: 18px; color: #efe7d7; }
.notice strong { display: block; margin-bottom: 8px; }
.legal-layout { display: grid; grid-template-columns: 280px minmax(0,1fr); gap: 18px; align-items: start; }
.legal-nav { position: sticky; top: 100px; padding: 20px; }
.legal-nav a { display: block; padding: 10px 12px; text-decoration: none; color: var(--muted); border-radius: 12px; }
.legal-nav a:hover { background: rgba(255,255,255,0.03); color: #fff; }
.legal-card section + section { margin-top: 26px; }
.site-footer {
  padding: 24px 0 50px; margin-top: 20px;
}
.footer-shell {
  border-radius: 26px; border: 1px solid var(--line); background: linear-gradient(180deg, rgba(11,16,24,0.94), rgba(7,10,16,0.98)); padding: 24px; box-shadow: var(--shadow-soft);
}
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, minmax(0,1fr)); gap: 18px; }
.footer-grid h3 { font-size: 1rem; margin-bottom: 8px; }
.footer-grid a { text-decoration: none; color: var(--muted); }
.footer-grid a:hover { color: #fff; }
.footer-meta { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(216,165,69,0.12); color: var(--muted); font-size: 0.95rem; }
.hero-note { margin-top: 16px; color: var(--muted); font-size: 0.95rem; }
.small { font-size: 0.95rem; }
.align-center { text-align: center; }
.stack { display: grid; gap: 14px; }
.banner {
  border-radius: 18px; border: 1px solid rgba(216,165,69,0.2); background: linear-gradient(180deg, rgba(216,165,69,0.08), rgba(216,165,69,0.04));
  padding: 16px 18px; color: #f0e7d4; margin-bottom: 16px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
@media (max-width: 1100px) {
  .info-strip, .price-grid, .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero-grid, .contact-grid, .legal-layout, .footer-grid, .grid-3 { grid-template-columns: 1fr; }
  .metric-row { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .steps { grid-template-columns: 1fr; }
  .legal-nav { position: static; }
}
@media (max-width: 860px) {
  .header-inner { flex-wrap: wrap; padding: 14px 0; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav {
    display: none; width: 100%; justify-content: flex-start; padding-top: 8px;
    flex-direction: column; align-items: stretch;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 14px; border-radius: 14px; }
  .header-actions { margin-left: auto; }
  .hero-shell { padding: 22px; }
  .hero-stage { min-height: 420px; }
  .info-strip, .price-grid, .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .metric-row { grid-template-columns: 1fr; }
  h1 { max-width: 14ch; }
  .cta-panel { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .container { width: min(var(--max), calc(100% - 20px)); }
  .brand strong { font-size: 1.44rem; }
  .hero-wrap { padding-top: 24px; }
  .hero-shell { border-radius: 24px; padding: 16px; }
  .hero-stage { min-height: 350px; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
  .footer-shell { padding: 18px; }
}

/* Step 28BX — pricing billing hover/focus visual-state patch */
.billing-actions .btn-secondary:hover,
.billing-actions .btn-secondary:focus-visible {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #20170a;
  border-color: rgba(255, 226, 125, 0.95);
  box-shadow: 0 18px 38px rgba(214, 164, 58, 0.26);
  transform: translateY(-1px);
}

.price-card:hover,
.price-card:focus-within {
  border-color: rgba(214, 164, 58, 0.72);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(214, 164, 58, 0.12);
}

.price-card:hover .tag.warning,
.price-card:focus-within .tag.warning {
  border-color: rgba(214, 164, 58, 0.72);
  background: rgba(214, 164, 58, 0.14);
  color: #ffe8a3;
}

/* Step 28BY — dim default 28-day button when another billing option is hovered/focused */
.billing-actions:has(.btn-secondary:hover) .btn-primary,
.billing-actions:has(.btn-secondary:focus-visible) .btn-primary {
  background: rgba(255, 255, 255, 0.035);
  color: #f7edd7;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  transform: none;
}

/* Step 28CA — stronger pricing plan and billing hover states */
.price-card:hover,
.price-card:focus-within {
  border-color: rgba(255, 210, 83, 0.98);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 204, 82, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 204, 82, 0.10), rgba(255, 255, 255, 0.035));
  box-shadow:
    0 0 0 2px rgba(255, 210, 83, 0.34),
    0 0 34px rgba(255, 190, 54, 0.34),
    0 26px 70px rgba(0, 0, 0, 0.42);
  transform: translateY(-2px);
}

.price-card:hover .plan-name,
.price-card:focus-within .plan-name,
.price-card:hover .price,
.price-card:focus-within .price {
  color: #ffe8a3;
  text-shadow: 0 0 18px rgba(255, 204, 82, 0.34);
}

.price-card:hover .tag,
.price-card:focus-within .tag {
  border-color: rgba(255, 210, 83, 0.95);
  background: rgba(255, 204, 82, 0.16);
  color: #ffe8a3;
}

.billing-actions .btn-secondary:hover,
.billing-actions .btn-secondary:focus-visible {
  background: linear-gradient(135deg, #f7c84a, #d6a43a);
  color: #20170a;
  border-color: rgba(255, 226, 125, 1);
  box-shadow:
    0 0 0 2px rgba(255, 210, 83, 0.28),
    0 16px 34px rgba(214, 164, 58, 0.38);
  transform: translateY(-1px);
}

/* Keep only the hovered billing option visually gold */
.billing-actions:has(.btn-secondary:hover) .btn-primary,
.billing-actions:has(.btn-secondary:focus-visible) .btn-primary {
  background: rgba(255, 255, 255, 0.035);
  color: #f7edd7;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  transform: none;
}

/* Step 28CC — global secondary button hover/focus gold fill */
.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: linear-gradient(135deg, #f7c84a, #d6a43a);
  color: #20170a;
  border-color: rgba(255, 226, 125, 1);
  box-shadow:
    0 0 0 2px rgba(255, 210, 83, 0.24),
    0 16px 34px rgba(214, 164, 58, 0.34);
  transform: translateY(-1px);
}

/* Keep pricing-specific dim rule after global hover rule */
.billing-actions:has(.btn-secondary:hover) .btn-primary,
.billing-actions:has(.btn-secondary:focus-visible) .btn-primary {
  background: rgba(255, 255, 255, 0.035);
  color: #f7edd7;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  transform: none;
}

/* Step 28CE — dim primary button when paired secondary CTA is hovered/focused */
.hero-actions:has(.btn-secondary:hover) .btn-primary,
.hero-actions:has(.btn-secondary:focus-visible) .btn-primary,
.cta-panel:has(.btn-secondary:hover) .btn-primary,
.cta-panel:has(.btn-secondary:focus-visible) .btn-primary {
  background: rgba(255, 255, 255, 0.035);
  color: #f7edd7;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  transform: none;
}


/* Locations page layout cleanup — scoped to /locations/ */
.locations-page .site-header {
  background: rgba(4, 7, 12, 0.94);
}

.locations-page .header-inner {
  min-height: 68px;
}

.locations-page .brand img {
  width: 38px;
  height: 38px;
}

.locations-page .brand strong {
  font-size: 1.45rem;
}

.locations-page main {
  padding-top: 18px;
}

.locations-hero {
  padding: 44px 0 18px;
}

.locations-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: stretch;
}

.locations-hero-copy {
  border-radius: 30px;
  border: 1px solid rgba(216,165,69,0.18);
  background:
    radial-gradient(circle at 0 0, rgba(216,165,69,0.13), transparent 32%),
    linear-gradient(180deg, rgba(14,19,30,0.92), rgba(8,11,18,0.96));
  box-shadow: var(--shadow-soft);
  padding: clamp(28px, 5vw, 54px);
}

.locations-hero-copy h1 {
  max-width: 760px;
}

.locations-hero-copy .lead {
  max-width: 68ch;
}

.locations-summary-card {
  display: grid;
  gap: 14px;
  align-content: center;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(8, 11, 18, 0.72);
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.locations-summary-card div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.06);
}

.locations-summary-card strong {
  display: block;
  color: var(--gold);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.05;
  margin-bottom: 4px;
}

.locations-summary-card span {
  display: block;
  color: var(--muted);
  font-weight: 650;
}

.locations-network-section {
  padding-top: 42px;
}

.locations-page .section-head {
  margin-bottom: 24px;
}

.location-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.location-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(12, 17, 27, 0.78);
  border: 1px solid rgba(255,255,255,0.075);
}

.location-row h3 {
  margin: 0 0 4px;
  font-size: 1.1rem;
}

.location-row p {
  margin: 0;
  color: var(--muted);
}

.location-row > span {
  white-space: nowrap;
  border-radius: 999px;
  padding: 8px 12px;
  color: #f8e8c1;
  background: rgba(216,165,69,0.11);
  border: 1px solid rgba(216,165,69,0.22);
  font-size: 0.86rem;
  font-weight: 800;
}

.locations-note-section {
  padding-top: 24px;
}

.locations-note {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border-radius: 24px;
  border: 1px solid rgba(216,165,69,0.14);
  background: rgba(12, 17, 27, 0.72);
  padding: 24px;
}

.locations-note h2 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.locations-note .lead {
  margin-bottom: 0;
}

.locations-page .site-footer {
  padding-top: 12px;
  padding-bottom: 34px;
}

.locations-page .footer-shell {
  padding: 20px;
}

@media (max-width: 900px) {
  .locations-hero-shell {
    grid-template-columns: 1fr;
  }

  .locations-summary-card {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }

  .locations-page .header-inner {
    min-height: 72px;
  }
}

@media (max-width: 680px) {
  .locations-page main {
    padding-top: 8px;
  }

  .locations-hero {
    padding-top: 24px;
  }

  .locations-summary-card,
  .location-row,
  .locations-note {
    grid-template-columns: 1fr;
  }

  .locations-summary-card {
    display: grid;
  }

  .location-row > span {
    width: fit-content;
  }

  .locations-note {
    display: grid;
  }
}


/* Home cleanup pass: reduce repeated panels and make the launch page easier to scan. */
.home-hero-clean .hero-shell {
  padding-bottom: 36px;
}

.home-hero-clean .hero-grid {
  align-items: center;
}

.home-hero-clean h1 {
  max-width: 720px;
}

.hero-visual-simple .hero-stage {
  min-height: 410px;
  padding: 0;
  overflow: hidden;
}

.hero-visual-simple .hero-visual-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-compact-section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.home-trust-grid {
  margin-top: 0;
}

.compact-card {
  min-height: auto;
  padding: 30px;
}

.compact-card p {
  margin-bottom: 0;
}

.plan-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.plan-summary-card {
  border: 1px solid rgba(216, 165, 69, 0.18);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(15, 20, 31, 0.92), rgba(9, 12, 18, 0.96));
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.plan-summary-card span {
  display: block;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 8px;
}

.plan-summary-card strong {
  display: block;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.plan-summary-card small {
  display: block;
  color: var(--muted);
  margin-top: 10px;
  font-weight: 700;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.cta-panel-clean {
  padding: 40px;
}

@media (max-width: 900px) {
  .home-hero-clean .hero-visual {
    display: none;
  }

  .plan-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .plan-summary-grid {
    grid-template-columns: 1fr;
  }

  .compact-card,
  .plan-summary-card,
  .cta-panel-clean {
    padding: 24px;
  }
}


/* v4 declutter pass: simple public Features page */
.page-intro {
  padding-top: 86px;
  padding-bottom: 34px;
}
.narrow {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.page-intro h1 {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}
.center-actions {
  justify-content: center;
}
.section-tight {
  padding-top: 28px;
  padding-bottom: 28px;
}
.simple-feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.simple-feature-list .card {
  min-height: 0;
}
.simple-feature-list h2 {
  font-size: 1.25rem;
  margin: 12px 0 8px;
}
@media (max-width: 820px) {
  .simple-feature-list {
    grid-template-columns: 1fr;
  }
}


/* Pricing declutter pass */
.pricing-clean .section {
  padding: 24px 0;
}
.pricing-hero {
  padding-top: 44px;
}
.pricing-hero-panel {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(15,20,31,0.78), rgba(8,11,18,0.92));
  box-shadow: var(--shadow-soft);
}
.pricing-clean h1 {
  max-width: 13ch;
  font-size: clamp(2.6rem, 4.2vw, 4.4rem);
}
.pricing-clean .lead {
  max-width: 64ch;
}
.pricing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: 0 0 auto;
}
.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(15, 20, 31, 0.9), rgba(8, 11, 18, 0.98));
  box-shadow: var(--shadow-soft);
}
.pricing-table {
  min-width: 760px;
}
.pricing-table th,
.pricing-table td {
  padding: 18px 20px;
  vertical-align: middle;
}
.pricing-table th {
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
}
.pricing-table td:first-child strong {
  display: block;
  font-size: 1.08rem;
  color: var(--text);
}
.pricing-table td:first-child span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: .95rem;
}
.btn.compact {
  min-height: 40px;
  padding: 10px 16px;
  width: 100%;
  justify-content: center;
  white-space: nowrap;
}
.pricing-note-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}
.pricing-note {
  padding: 16px 18px;
  border: 1px solid rgba(216,165,69,0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.025);
}
.pricing-note strong,
.pricing-note span {
  display: block;
}
.pricing-note span {
  color: var(--muted);
  margin-top: 4px;
}
.pricing-cta {
  align-items: center;
}
@media (max-width: 760px) {
  .pricing-hero-panel,
  .pricing-cta {
    display: grid;
    padding: 24px;
  }
  .pricing-note-row {
    grid-template-columns: 1fr;
  }
  .pricing-hero-actions {
    width: 100%;
  }
  .pricing-hero-actions .btn {
    flex: 1 1 160px;
  }
}


/* v7 polish: remove confusing gold hover on secondary buttons and make pricing table fit smaller desktops. */
.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025)) !important;
  color: #fff !important;
  border-color: rgba(240,203,115,0.42) !important;
  box-shadow: 0 0 0 1px rgba(240,203,115,0.12), 0 10px 22px rgba(0,0,0,0.20) !important;
  transform: translateY(-1px);
}

/* Do not dim the primary CTA just because the secondary CTA is hovered. */
.hero-actions:has(.btn-secondary:hover) .btn-primary,
.hero-actions:has(.btn-secondary:focus-visible) .btn-primary,
.cta-panel:has(.btn-secondary:hover) .btn-primary,
.cta-panel:has(.btn-secondary:focus-visible) .btn-primary,
.pricing-hero-actions:has(.btn-secondary:hover) .btn-primary,
.pricing-hero-actions:has(.btn-secondary:focus-visible) .btn-primary {
  background: linear-gradient(180deg, #f0cb73 0%, #d29a34 100%) !important;
  color: #161106 !important;
  border-color: rgba(255,226,153,0.45) !important;
  box-shadow: 0 16px 28px rgba(176, 121, 18, 0.28), inset 0 1px 0 rgba(255, 248, 219, 0.4) !important;
}

/* Pricing choices: keep all choices visible and avoid horizontal drift on smaller screens. */
.pricing-table-wrap {
  overflow-x: visible;
}
.pricing-table {
  width: 100%;
  min-width: 0 !important;
  table-layout: fixed;
}
.pricing-table th,
.pricing-table td {
  padding: 16px 14px;
}
.pricing-table th:not(:first-child),
.pricing-table td:not(:first-child) {
  text-align: center;
}
.pricing-table td:first-child {
  width: 30%;
}
.pricing-table .btn.compact {
  width: min(100%, 140px);
  min-width: 96px;
  margin: 0 auto;
  box-shadow: none;
}
.pricing-table .btn-primary.compact {
  box-shadow: 0 8px 18px rgba(176,121,18,0.22), inset 0 1px 0 rgba(255,248,219,0.35);
}
.pricing-table .btn-secondary.compact {
  background: rgba(255,255,255,0.025);
}

@media (max-width: 860px) {
  .pricing-table th,
  .pricing-table td {
    padding: 14px 10px;
  }
  .pricing-table td:first-child span {
    display: none;
  }
  .pricing-table .btn.compact {
    min-width: 84px;
    padding: 10px 12px;
  }
}

@media (max-width: 680px) {
  .pricing-table-wrap {
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .pricing-table,
  .pricing-table thead,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table td {
    display: block;
    width: 100%;
  }
  .pricing-table thead {
    display: none;
  }
  .pricing-table tbody tr {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(15,20,31,0.9), rgba(8,11,18,0.98));
    padding: 16px;
    margin-bottom: 14px;
  }
  .pricing-table td {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 12px;
    align-items: center;
    border: 0;
    padding: 8px 0;
    text-align: left !important;
  }
  .pricing-table td::before {
    color: var(--gold-bright);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  .pricing-table td:nth-child(1)::before { content: "Plan"; }
  .pricing-table td:nth-child(2)::before { content: "Devices"; }
  .pricing-table td:nth-child(3)::before { content: "28 days"; }
  .pricing-table td:nth-child(4)::before { content: "84 days"; }
  .pricing-table td:nth-child(5)::before { content: "Yearly"; }
  .pricing-table td:first-child span {
    display: block;
  }
  .pricing-table .btn.compact {
    width: 100%;
    max-width: 220px;
    margin: 0;
  }
}

/* v7 account page */
.account-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.account-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(15,20,31,0.84), rgba(8,11,18,0.96));
}
.account-card h2 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.account-card p {
  color: var(--muted);
  margin-bottom: 0;
}
.account-help {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
@media (max-width: 820px) {
  .account-grid {
    grid-template-columns: 1fr;
  }
  .account-help {
    display: grid;
  }
}


/* v8 account auth and pricing hover lock */
.pricing-table .btn-secondary.compact:hover,
.pricing-table .btn-secondary.compact:focus-visible {
  background: rgba(255,255,255,0.025) !important;
  color: #fff !important;
  border-color: rgba(240,203,115,0.42) !important;
  box-shadow: 0 0 0 1px rgba(240,203,115,0.12) !important;
  transform: none !important;
}
.pricing-table tr:has(.btn-secondary.compact:hover) .btn-primary.compact,
.pricing-table tr:has(.btn-secondary.compact:focus-visible) .btn-primary.compact {
  background: linear-gradient(180deg, #f0cb73 0%, #d29a34 100%) !important;
  color: #161106 !important;
  border-color: rgba(255,226,153,0.45) !important;
  box-shadow: 0 8px 18px rgba(176,121,18,0.22), inset 0 1px 0 rgba(255,248,219,0.35) !important;
  transform: none !important;
}

.auth-section,
.account-section {
  padding-top: 86px;
}
.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 28px;
  align-items: start;
}
.auth-copy,
.account-top,
.auth-card,
.account-summary,
.account-dashboard .cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(15,20,31,0.86), rgba(8,11,18,0.97));
}
.auth-copy,
.auth-card,
.account-top {
  padding: clamp(24px, 4vw, 42px);
}
.auth-card {
  display: grid;
  gap: 14px;
}
.auth-card h2 {
  margin: 0;
}
.auth-card label {
  font-weight: 800;
  color: #fff;
}
.auth-card input {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  background: rgba(255,255,255,0.045);
  color: #fff;
  padding: 14px 16px;
  font: inherit;
}
.auth-card input:focus {
  outline: 2px solid rgba(240,203,115,0.36);
  border-color: rgba(240,203,115,0.62);
}
.auth-message {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}
.auth-message[data-tone="success"] { color: #b6f2c2; }
.auth-message[data-tone="warning"] { color: #ffe1a3; }
.auth-message[data-tone="error"] { color: #ffb6b6; }
.small-link {
  font-size: .95rem;
  color: var(--gold-bright);
}
.account-shell {
  display: grid;
  gap: 24px;
}
.account-top {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
}
.account-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.account-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
}
.account-summary > div {
  padding: 20px;
  border-right: 1px solid var(--line);
}
.account-summary > div:last-child {
  border-right: 0;
}
.summary-label {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.account-dashboard {
  display: grid;
  gap: 20px;
}
.account-dashboard[hidden],
.account-signed-out[hidden],
[data-account-signout][hidden],
[data-account-signin-link][hidden] {
  display: none !important;
}

@media (max-width: 820px) {
  .auth-shell {
    grid-template-columns: 1fr;
  }
  .account-top,
  .account-help {
    display: grid;
  }
  .account-summary {
    grid-template-columns: 1fr;
  }
  .account-summary > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .account-summary > div:last-child {
    border-bottom: 0;
  }
}


/* ASHVPN HERO V2 SOURCE PATCH — NO DEPLOY */
.site-header .brand .ash-header-logo {
  width: 170px;
  max-width: 46vw;
  height: auto;
  display: block;
}

.site-footer .brand .ash-footer-logo {
  width: 210px;
  max-width: 60vw;
  height: auto;
  display: block;
}

.ash-hero-refresh {
  position: relative;
  overflow: hidden;
  padding: 72px 0 76px;
  background:
    radial-gradient(circle at 73% 18%, rgba(242, 194, 77, 0.16), transparent 28rem),
    radial-gradient(circle at 18% 78%, rgba(213, 216, 220, 0.07), transparent 23rem),
    linear-gradient(135deg, #030304 0%, #0c0b08 44%, #050505 100%);
}

.ash-hero-refresh::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.032) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.024) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.7;
}

.ash-hero-shell {
  position: relative;
  z-index: 1;
}

.ash-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 52px;
}

.ash-hero-copy h1 {
  font-size: clamp(3.1rem, 6.6vw, 6.25rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  max-width: 760px;
  margin: 0;
}

.ash-hero-copy .lead {
  max-width: 660px;
}

.ash-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.ash-proof-strip span {
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 999px;
  color: rgba(247,244,234,0.78);
  background: rgba(255,255,255,0.035);
  font-size: 0.9rem;
}

.ash-hero-brand {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242,194,77,0.23);
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.015)),
    radial-gradient(circle at center, rgba(242,194,77,0.18), transparent 22rem);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 30px 110px rgba(0,0,0,0.42);
}

.ash-hero-brand::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(242,194,77,0.13);
  border-radius: 24px;
}

.ash-hero-brand::after {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242,194,77,0.22), transparent 64%);
  filter: blur(18px);
}

.ash-hero-brand img {
  position: relative;
  z-index: 2;
  width: min(84%, 520px);
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.55));
}

.ash-benefit-section {
  padding-top: 40px;
}

.ash-benefit-section .card-icon {
  display: none;
}

@media (max-width: 860px) {
  .ash-hero-refresh {
    padding: 44px 0 56px;
  }

  .ash-hero-grid {
    grid-template-columns: 1fr;
  }

  .ash-hero-brand {
    min-height: 390px;
  }

  .ash-hero-brand img {
    width: min(86%, 430px);
  }
}


/* ASHVPN BRAND V2 SITEWIDE SOURCE PATCH — NO DEPLOY */
.brand img.ash-header-logo,
.site-header .brand img.ash-header-logo,
.header-inner .brand img.ash-header-logo {
  width: 170px;
  max-width: 46vw;
  height: auto;
  display: block;
}

.brand img.ash-footer-logo,
.site-footer .brand img.ash-footer-logo,
.footer-shell .brand img.ash-footer-logo {
  width: 210px;
  max-width: 60vw;
  height: auto;
  display: block;
}

.brand img[src="/assets/ashvpn_icon_square_transparent.png"] {
  object-fit: contain;
}


/* ASHVPN BRAND V2 CONTENT/HOVER BATCH PATCH — NO DEPLOY */
.site-header .nav a,
.nav a,
.btn,
.card,
.location-row {
  transition: color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.site-header .nav a:hover,
.site-header .nav a:focus-visible,
.nav a:hover,
.nav a:focus-visible {
  color: #f2c24d;
  border-color: rgba(242, 194, 77, .75);
  background: rgba(242, 194, 77, .10);
  box-shadow: 0 0 0 1px rgba(242, 194, 77, .22), 0 12px 30px rgba(242, 194, 77, .10);
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.btn:hover,
.btn:focus-visible {
  border-color: rgba(242, 194, 77, .9);
  box-shadow: 0 16px 36px rgba(242, 194, 77, .22);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: #100c04;
  background: linear-gradient(135deg, #ffe18b, #e2aa2e 48%, #8f641b);
}

.card:hover,
.location-row:hover {
  border-color: rgba(242, 194, 77, .42);
  box-shadow: 0 18px 48px rgba(242, 194, 77, .08);
}

.ash-secondary-hero-logo {
  object-fit: contain;
  padding: clamp(2rem, 5vw, 4rem);
  filter: drop-shadow(0 24px 40px rgba(0,0,0,.55));
}

.locations-vote-panel {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(242,194,77,.22);
  border-radius: 28px;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    radial-gradient(circle at 12% 18%, rgba(242,194,77,.12), transparent 22rem);
}

.locations-vote-panel h2 {
  margin: 0;
}

.locations-vote-panel .lead {
  margin-bottom: .75rem;
}

.vote-preview {
  display: grid;
  gap: 10px;
}

.vote-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  padding: 13px 15px;
  background: rgba(255,255,255,.035);
}

.vote-row strong {
  color: #f2c24d;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .locations-vote-panel {
    grid-template-columns: 1fr;
  }
}


/* ASHVPN FINAL VISUAL CLEANUP PATCH — NO DEPLOY */
.ash-clean-hero-visual {
  background:
    radial-gradient(circle at center, rgba(242,194,77,.16), transparent 22rem),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018)) !important;
}

.ash-clean-hero-stage {
  min-height: 100%;
  display: grid;
  place-items: center;
  background: transparent !important;
}

.ash-clean-hero-stage::before,
.ash-clean-hero-stage::after {
  display: none !important;
}

.ash-clean-hero-stage .ash-secondary-hero-logo {
  width: min(72%, 420px);
  max-height: 360px;
  opacity: 1;
  padding: clamp(1.4rem, 4vw, 3rem);
}

.vote-preview-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-height: 430px;
  overflow: auto;
  padding-right: 4px;
}

.vote-preview-grid .vote-row {
  min-width: 0;
}

@media (max-width: 760px) {
  .vote-preview-grid {
    grid-template-columns: 1fr;
    max-height: none;
  }
}


/* ASHVPN FINAL POLISH PATCH — NO DEPLOY */
.contact-page .hero-grid,
.faq-page .hero-grid,
.setup-guides-page .hero-grid,
.contact-page .rich-hero-grid,
.faq-page .rich-hero-grid,
.setup-guides-page .rich-hero-grid {
  grid-template-columns: 1fr !important;
}

.contact-page .hero-grid > *,
.faq-page .hero-grid > *,
.setup-guides-page .hero-grid > *,
.contact-page .rich-hero-grid > *,
.faq-page .rich-hero-grid > *,
.setup-guides-page .rich-hero-grid > * {
  grid-column: 1 / -1;
}

.contact-page .hero-copy,
.faq-page .hero-copy,
.setup-guides-page .hero-copy {
  max-width: 760px;
}

.locations-vote-panel {
  grid-template-columns: 1fr !important;
}

.vote-preview-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  max-height: none !important;
  overflow: visible !important;
  padding-right: 0 !important;
}

@media (max-width: 980px) {
  .vote-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 620px) {
  .vote-preview-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ASHVPN LOCATIONS AND SETUP GUIDES TEXT TIDY PATCH — NO DEPLOY */

/* Locations current section */
.locations-page .section .eyebrow.center,
.locations-page .section h2,
.locations-page .section .lead {
  text-align: center;
}

.locations-page .section .lead {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.locations-page .location-row {
  display: block !important;
  padding: 0.95rem 1.1rem !important;
  min-height: 0 !important;
}

.locations-page .location-row span {
  display: none !important;
}

.locations-page .location-row h3 {
  margin-bottom: .2rem;
}

.locations-page .location-row p {
  margin-bottom: 0;
}

/* Setup Guides section intro centralisation */
.setup-guides-page .section .eyebrow.center,
.setup-guides-page .section h2,
.setup-guides-page .section .lead,
.setup-guides-page .section > .container > p,
.setup-guides-page .section > .container > div > p {
  text-align: center;
}

.setup-guides-page .section .lead,
.setup-guides-page .section > .container > p,
.setup-guides-page .section > .container > div > p {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}


/* ASHVPN SECTION INTRO CENTRE FIX — NO DEPLOY */
.section .section-head,
.section-head,
.section .section-intro,
.section-intro,
.section > .container > .eyebrow.center,
.section > .container > h2,
.section > .container > p.lead {
  text-align: center;
}

.section .section-head,
.section-head,
.section .section-intro,
.section-intro {
  margin-left: auto;
  margin-right: auto;
}

.section .section-head p,
.section-head p,
.section .section-intro p,
.section-intro p,
.section > .container > p.lead {
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section > .container > .eyebrow.center + h2,
.section > .container > .eyebrow + h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section > .container > .eyebrow.center + h2 + p,
.section > .container > .eyebrow + h2 + p {
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}


/* ASHVPN BUTTON HOVER GOLD FIX — NO DEPLOY */
.btn:hover,
.btn:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible,
.btn-secondary:hover,
.btn-secondary:focus-visible,
.pricing-table .btn:hover,
.pricing-table .btn:focus-visible,
.pricing-table .btn-primary.compact:hover,
.pricing-table .btn-primary.compact:focus-visible,
.pricing-table .btn-secondary.compact:hover,
.pricing-table .btn-secondary.compact:focus-visible,
.billing-actions .btn:hover,
.billing-actions .btn:focus-visible,
.hero-actions .btn:hover,
.hero-actions .btn:focus-visible,
.cta-panel .btn:hover,
.cta-panel .btn:focus-visible {
  background: linear-gradient(180deg, #f0cb73 0%, #d29a34 100%) !important;
  color: #080a0f !important;
  border-color: rgba(240, 203, 115, 0.95) !important;
  box-shadow: 0 14px 34px rgba(216, 165, 69, 0.24) !important;
  transform: translateY(-1px);
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.pricing-table .btn-secondary.compact:hover,
.pricing-table .btn-secondary.compact:focus-visible {
  text-decoration: none !important;
}

.price-card:hover .btn-primary,
.price-card:focus-within .btn-primary {
  background: linear-gradient(180deg, #f0cb73 0%, #d29a34 100%) !important;
  color: #080a0f !important;
  border-color: rgba(240, 203, 115, 0.95) !important;
}


/* ASHVPN BUTTON HOVER SINGLE GOLD FIX — NO DEPLOY */

/* When hovering a secondary/outline button inside a button pair,
   temporarily de-emphasise the default gold primary button so only
   the hovered button is gold. */
.hero-actions:has(.btn-secondary:hover) .btn-primary:not(:hover),
.hero-actions:has(.btn-secondary:focus-visible) .btn-primary:not(:focus-visible),
.cta-panel:has(.btn-secondary:hover) .btn-primary:not(:hover),
.cta-panel:has(.btn-secondary:focus-visible) .btn-primary:not(:focus-visible),
.pricing-hero-actions:has(.btn-secondary:hover) .btn-primary:not(:hover),
.pricing-hero-actions:has(.btn-secondary:focus-visible) .btn-primary:not(:focus-visible),
.billing-actions:has(.btn-secondary:hover) .btn-primary:not(:hover),
.billing-actions:has(.btn-secondary:focus-visible) .btn-primary:not(:focus-visible) {
  background: rgba(255,255,255,0.045) !important;
  color: #f7f3e8 !important;
  border-color: rgba(236, 190, 82, 0.32) !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Keep the actual hovered/focused button as the only gold button. */
.hero-actions .btn:hover,
.hero-actions .btn:focus-visible,
.cta-panel .btn:hover,
.cta-panel .btn:focus-visible,
.pricing-hero-actions .btn:hover,
.pricing-hero-actions .btn:focus-visible,
.billing-actions .btn:hover,
.billing-actions .btn:focus-visible,
.pricing-table .btn:hover,
.pricing-table .btn:focus-visible {
  background: linear-gradient(180deg, #f0cb73 0%, #d29a34 100%) !important;
  color: #080a0f !important;
  border-color: rgba(240, 203, 115, 0.95) !important;
  box-shadow: 0 14px 34px rgba(216, 165, 69, 0.24) !important;
}


/* ASHVPN PRICING BUTTON HOVER GOLD FIX — NO DEPLOY */

/* Pricing table price buttons/links */
.pricing-page table a:hover,
.pricing-page table a:focus-visible,
.pricing-page .pricing-table a:hover,
.pricing-page .pricing-table a:focus-visible,
.pricing-page .pricing-table button:hover,
.pricing-page .pricing-table button:focus-visible,
.pricing-page .price-button:hover,
.pricing-page .price-button:focus-visible,
.pricing-page .price-pill:hover,
.pricing-page .price-pill:focus-visible,
.pricing-page .plan-price:hover,
.pricing-page .plan-price:focus-visible,
.pricing-page [class*="price"] a:hover,
.pricing-page [class*="price"] a:focus-visible,
.pricing-page [class*="price"] button:hover,
.pricing-page [class*="price"] button:focus-visible,
.pricing-page [href*="checkout"]:hover,
.pricing-page [href*="checkout"]:focus-visible {
  background: linear-gradient(180deg, #f0cb73 0%, #d29a34 100%) !important;
  color: #080a0f !important;
  border-color: rgba(240, 203, 115, 0.95) !important;
  box-shadow: 0 14px 34px rgba(216, 165, 69, 0.24) !important;
  transform: translateY(-1px);
  text-decoration: none !important;
}

/* Keep non-hovered pricing buttons dark unless already marked primary/selected */
.pricing-page table a:not(:hover):not(:focus-visible):not(.btn-primary),
.pricing-page .pricing-table a:not(:hover):not(:focus-visible):not(.btn-primary),
.pricing-page .pricing-table button:not(:hover):not(:focus-visible):not(.btn-primary) {
  transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

/* Make selected/default 28-day buttons still visibly gold at rest */
.pricing-page .pricing-table .btn-primary,
.pricing-page .pricing-table a.btn-primary,
.pricing-page .pricing-table button.btn-primary {
  background: linear-gradient(180deg, #f0cb73 0%, #d29a34 100%) !important;
  color: #080a0f !important;
  border-color: rgba(240, 203, 115, 0.95) !important;
}


/* ASHVPN PRICING 28DAY CONSTANT GOLD FIX — NO DEPLOY */

/* Pricing table: no price button should stay permanently gold at rest. */
.pricing-page .pricing-table .btn.compact,
.pricing-page .pricing-table .btn-primary.compact,
.pricing-page .pricing-table a.btn.compact,
.pricing-page .pricing-table a.btn-primary.compact,
.pricing-page .pricing-table a[data-checkout-plan],
.pricing-page .pricing-table a[data-checkout-billing] {
  background: rgba(255,255,255,0.045) !important;
  color: #f7f3e8 !important;
  border-color: rgba(236, 190, 82, 0.32) !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Pricing table: only the actual hovered/focused price button turns gold. */
.pricing-page .pricing-table .btn.compact:hover,
.pricing-page .pricing-table .btn.compact:focus-visible,
.pricing-page .pricing-table .btn-primary.compact:hover,
.pricing-page .pricing-table .btn-primary.compact:focus-visible,
.pricing-page .pricing-table .btn-secondary.compact:hover,
.pricing-page .pricing-table .btn-secondary.compact:focus-visible,
.pricing-page .pricing-table a[data-checkout-plan]:hover,
.pricing-page .pricing-table a[data-checkout-plan]:focus-visible,
.pricing-page .pricing-table a[data-checkout-billing]:hover,
.pricing-page .pricing-table a[data-checkout-billing]:focus-visible {
  background: linear-gradient(180deg, #f0cb73 0%, #d29a34 100%) !important;
  color: #080a0f !important;
  border-color: rgba(240, 203, 115, 0.95) !important;
  box-shadow: 0 14px 34px rgba(216, 165, 69, 0.24) !important;
  transform: translateY(-1px) !important;
  text-decoration: none !important;
}
