/* ═══════════════════════════════════════════════════════════════════════
   TESSERA — static multipage extras: cookie banner, forms, page heroes
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Page hero (interior pages) ───────────────────────────────────── */
.vt-page-hero { padding: 72px 0 40px; border-bottom: 1px solid var(--rule); }
.vt-page-hero .vt-section-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.vt-page-hero .vt-h1 { font-size: clamp(34px, 5vw, 58px); margin: 18px 0 16px; }
.vt-page-hero .vt-lede { max-width: 64rem; }
.vt-breadcrumb { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text2); display: flex; gap: 8px; align-items: center; }
.vt-breadcrumb a:hover { color: var(--teal); }

/* ── Generic content grid helpers ─────────────────────────────────── */
.vt-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.vt-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vt-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .vt-grid-2, .vt-grid-3, .vt-grid-4 { grid-template-columns: 1fr; } }

.vt-card {
  border: 1px solid var(--rule); border-radius: 12px; padding: 26px;
  background: var(--paper); transition: border-color .15s, transform .15s, box-shadow .15s;
  border-color: rgba(14,165,160,0.45); box-shadow: 0 10px 30px -16px rgba(14,165,160,0.30);
}
.vt-card:hover { border-color: var(--teal); transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(14,165,160,0.38); }
.vt-card h3 { margin: 0 0 8px; font-size: 21px; font-weight: 600; letter-spacing: -0.01em; }
.vt-card h4 { margin: 0 0 8px; font-size: 18px; font-weight: 600; }
.vt-card p { margin: 0; color: var(--text2); font-size: 15.5px; line-height: 1.6; }
.vt-card .vt-mono { font-size: 12px; color: var(--text2); }

.vt-prose { max-width: 760px; }
.vt-prose h2 { font-size: 26px; margin: 40px 0 12px; font-weight: 600; letter-spacing: -0.015em; }
.vt-prose h3 { font-size: 19px; margin: 26px 0 8px; font-weight: 600; }
.vt-prose p, .vt-prose li { color: var(--text2); font-size: 16px; line-height: 1.7; }
.vt-prose ul { padding-left: 20px; }
.vt-prose li { margin-bottom: 6px; }
.vt-prose a { color: var(--teal); border-bottom: 1px solid currentColor; }
.vt-legal-meta { font-family: var(--mono); font-size: 12px; color: var(--text2); letter-spacing: 0.04em; }
.vt-legal-toc { border: 1px solid var(--rule); border-radius: 10px; padding: 18px 20px; background: var(--off); margin: 24px 0 8px; }
.vt-legal-toc a { display: block; padding: 4px 0; color: var(--ink2); font-size: 14px; }
.vt-legal-toc a:hover { color: var(--teal); }

/* ── Forms ────────────────────────────────────────────────────────── */
.vt-form { display: grid; gap: 16px; }
.vt-field { display: grid; gap: 6px; }
.vt-field label { font-size: 13px; font-weight: 600; color: var(--ink2); }
.vt-field .req { color: var(--lime); font-weight: 800; }
.req { color: var(--lime); font-weight: 800; }
/* Keep the required asterisk inline next to the label text */
.vt-field > label { display: flex; flex-direction: row; align-items: baseline; gap: 4px; flex-wrap: wrap; }

/* SMS / RCS / WhatsApp consent */
.vt-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--text2); font-weight: 400; line-height: 1.5; }
.vt-consent input { margin-top: 3px; width: auto; flex-shrink: 0; }
.vt-consent .req { color: var(--lime); font-weight: 700; }
.vt-consent-fine { display: block; margin-top: 4px; font-size: 11.5px; color: var(--text2); opacity: 0.85; }

/* Custom checkbox — fills green (lime) when checked, inline beside its label */
.vt-form label.vt-consent, .vt-consent { display: flex; flex-direction: row; gap: 10px; align-items: flex-start; }
.vt-form input[type="checkbox"], .vt-consent input[type="checkbox"], .vt-field input[type="checkbox"] {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  width: 18px; height: 18px; min-width: 18px; flex: 0 0 18px;
  border: 1.5px solid var(--rule); border-radius: 5px; background: var(--paper);
  cursor: pointer; position: relative; margin: 1px 0 0; padding: 0; box-shadow: none;
}
.vt-form input[type="checkbox"]:checked, .vt-consent input[type="checkbox"]:checked, .vt-field input[type="checkbox"]:checked {
  background: var(--lime); border-color: var(--lime);
}
.vt-form input[type="checkbox"]:checked::after, .vt-consent input[type="checkbox"]:checked::after, .vt-field input[type="checkbox"]:checked::after {
  content: ""; position: absolute; left: 5px; top: 1px; width: 4px; height: 9px;
  border: solid var(--ink); border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.vt-form input[type="checkbox"]:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }

/* Footer "Protected by Cloudflare" caption */
.vt-news-cf { display: flex; align-items: center; gap: 6px; margin: 10px 0 0; font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: rgba(245,241,232,0.45); }
.vt-news-cf svg { opacity: 0.7; }

/* Industries cards — green hover shadow + tighter vertical padding */
.vt-ind-cards { padding-top: 24px; padding-bottom: 36px; }
.vt-ind-cards .vt-card:hover { border-color: var(--teal); box-shadow: 0 14px 34px -10px rgba(14,165,160,0.38); }
.vt-ind-cards .vt-industry-reg { background: rgba(14,165,160,0.12); color: #0c7f7b; }
.cf-turnstile { margin: 2px 0; min-height: 65px; }

/* ── Auth split (sign in) ─────────────────────────────────────────── */
.vt-auth { display: grid; grid-template-columns: 1fr minmax(440px, 560px); min-height: calc(100vh - var(--nav-h)); }
@media (max-width: 860px) { .vt-auth { grid-template-columns: 1fr; } .vt-auth-aside { display: none; } }
.vt-auth-aside { position: relative; background: var(--ink); color: var(--paper); padding: 48px 52px; display: flex; flex-direction: column; justify-content: center; gap: 30px; overflow: hidden; }
.vt-auth-aside .vt-auth-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(245,241,232,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(245,241,232,0.05) 1px, transparent 1px); background-size: 48px 48px; }
.vt-auth-aside .vt-auth-glow { position: absolute; top: -120px; right: -100px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(34,211,206,0.14) 0%, transparent 62%); filter: blur(70px); pointer-events: none; }
.vt-auth-aside > * { position: relative; z-index: 2; }
.vt-auth-head h2 { font-family: var(--sans); font-weight: 600; font-size: clamp(28px, 3vw, 40px); letter-spacing: -0.02em; line-height: 1.08; margin: 0 0 14px; max-width: 14ch; }
.vt-auth-head p { color: rgba(245,241,232,0.7); font-size: 16px; line-height: 1.6; max-width: 38ch; }
.vt-auth-seal { background: rgba(245,241,232,0.05); border: 1px solid rgba(245,241,232,0.12); border-radius: 14px; padding: 18px 20px; max-width: 340px; }
.vt-auth-seal-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(245,241,232,0.08); font-family: var(--mono); font-size: 12px; }
.vt-auth-seal-row:last-child { border-bottom: none; }
.vt-auth-seal-row .k { color: rgba(245,241,232,0.5); letter-spacing: 0.08em; text-transform: uppercase; font-size: 10px; }
.vt-auth-seal-row .v { color: var(--paper); font-weight: 600; }
.vt-auth-seal-row .v.ok { color: var(--lime); }
.vt-auth-foot { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: rgba(245,241,232,0.45); text-transform: uppercase; }

.vt-auth-main { display: flex; align-items: center; justify-content: center; padding: 40px 24px; }
.vt-auth-card { width: 100%; max-width: 416px; }
.vt-auth-card h1 { font-family: var(--sans); font-weight: 600; font-size: 28px; letter-spacing: -0.02em; margin: 0 0 8px; }
.vt-auth-card .vt-auth-sub { color: var(--text2); font-size: 15px; line-height: 1.55; margin: 0 0 24px; }

.vt-step { display: none; }
.vt-step.is-on { display: block; }

.vt-otp { display: flex; gap: 10px; justify-content: space-between; margin: 4px 0 2px; }
.vt-otp input { width: 100%; aspect-ratio: 1; text-align: center; font-family: var(--mono); font-size: 24px; font-weight: 600; color: var(--ink); border: 1px solid var(--rule); border-radius: 10px; background: var(--paper); }
.vt-otp input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(14,165,160,0.12); }
.vt-auth-resend { font-size: 13px; color: var(--text2); text-align: center; margin-top: 16px; }
.vt-auth-resend a { color: var(--teal); border-bottom: 1px solid currentColor; cursor: pointer; }
.vt-auth-email-chip { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--ink); }

/* Ghost button with green (lime) hover */
.vt-btn-ghost.is-lime:hover { background: rgba(197,255,59,0.18); border-color: var(--lime); color: var(--ink); }

/* ── PoC scheduler (book.html) ────────────────────────────────────── */
.vt-sched { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: start; }
@media (max-width: 920px) { .vt-sched { grid-template-columns: 1fr; } }
.vt-sched-cal { border: 1px solid rgba(14,165,160,0.28); border-radius: 14px; padding: 22px; background: var(--paper); box-shadow: 0 12px 40px -22px rgba(14,165,160,0.45); }
.vt-sched-weekhead { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-bottom: 8px; }
.vt-sched-weekhead span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--text2); text-align: center; text-transform: uppercase; }
.vt-sched-week { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-bottom: 8px; }
.vt-sched-day { border: 1px solid var(--rule); border-radius: 10px; padding: 10px 6px; text-align: center; cursor: pointer; background: var(--paper); transition: border-color .12s, background .12s, transform .12s; }
.vt-sched-day:hover:not(.is-off) { border-color: var(--teal); transform: translateY(-2px); box-shadow: 0 10px 22px -12px rgba(14,165,160,0.5); }
.vt-sched-day.is-off { opacity: 0.35; cursor: not-allowed; }
.vt-sched-day.is-sel { background: linear-gradient(160deg, #16352e, var(--ink)); border-color: var(--lime); color: var(--paper); box-shadow: 0 12px 26px -12px rgba(197,255,59,0.55); }
.vt-sched-day.is-sel .dnum { color: var(--lime); }
.vt-sched-day .dow { font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; color: var(--text2); text-transform: uppercase; }
.vt-sched-day.is-sel .dow { color: rgba(245,241,232,0.7); }
.vt-sched-day .dnum { font-size: 19px; font-weight: 600; margin-top: 2px; }
.vt-sched-day .mon { font-family: var(--mono); font-size: 9px; color: var(--text2); }
.vt-sched-day.is-sel .mon { color: rgba(245,241,232,0.6); }
.vt-sched-weeklabel { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; color: var(--tealDk); text-transform: uppercase; margin: 14px 0 8px; font-weight: 600; }
.vt-sched-side { border: 1px solid rgba(14,165,160,0.28); border-radius: 14px; padding: 22px; background: linear-gradient(180deg, rgba(14,165,160,0.05), var(--off)); }
.vt-sched-side h3 { margin: 0 0 4px; font-size: 18px; }
.vt-sched-side .vt-mono { font-size: 12px; color: var(--text2); }
.vt-slots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin: 16px 0; max-height: 320px; overflow: auto; }
.vt-slot { border: 1px solid var(--rule); border-radius: 8px; padding: 10px; text-align: center; cursor: pointer; font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--ink); background: var(--paper); transition: border-color .12s, background .12s; }
.vt-slot:hover { border-color: var(--teal); background: rgba(14,165,160,0.08); transform: translateY(-1px); }
.vt-slot.is-sel { background: var(--lime); border-color: var(--lime); color: var(--ink); box-shadow: 0 8px 18px -8px rgba(197,255,59,0.7); }
.vt-slot.is-taken { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; background: var(--off); }
.vt-slot.is-taken:hover { border-color: var(--rule); }

/* Phone field with country code selector */
.vt-phone-row { display: grid; grid-template-columns: minmax(92px, 118px) 1fr; gap: 8px; }
.vt-phone-row select { font-family: var(--mono); font-size: 13px; padding-left: 10px; padding-right: 6px; }
.vt-phone-row input { width: 100%; }
@media (max-width: 420px) { .vt-phone-row { grid-template-columns: 1fr; } }

/* Contact map */
.vt-map { border: 1px solid var(--rule); border-radius: 14px; overflow: hidden; min-height: 340px; box-shadow: 0 10px 30px -18px rgba(10,21,33,0.3); }
.vt-map iframe { width: 100%; height: 100%; min-height: 340px; }
@media (max-width: 760px) { .vt-section-inner > div[style*="grid-template-columns:0.8fr 1.2fr"] { grid-template-columns: 1fr !important; } }

/* Book-a-PoC hero with platform mockup */
.vt-book-hero { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 40px; align-items: center; }
@media (max-width: 860px) { .vt-book-hero { grid-template-columns: 1fr; } .vt-book-hero-media { display: none; } }
.vt-book-points { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 10px; }
.vt-book-points li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--ink2); }
.vt-book-hero-media { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.vt-sched-month { color: var(--ink2); font-weight: 600; }

/* Book hero — cluster of small industry phones */
.vt-book-phones { display: flex; justify-content: center; align-items: flex-start; gap: 2px; }
.vt-mini-phone { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.vt-mini-phone .vt-phone2 { zoom: 0.4; height: 480px; box-shadow: 0 30px 60px -28px rgba(10,21,33,0.5), 0 0 0 1px #2a3344, 0 0 0 6px #11151d; }
.vt-mini-phone-lift { transform: translateY(-22px); z-index: 2; }
@media (min-width: 1100px) { .vt-mini-phone .vt-phone2 { zoom: 0.46; } }
.vt-nav-link { white-space: nowrap; }

/* Unify green look across all card-like blocks (resting + hover, matches CAJA DESEADA) */
.vt-industry { border-color: rgba(14,165,160,0.45) !important; box-shadow: 0 10px 30px -16px rgba(14,165,160,0.30); }
.vt-industry:hover { border-color: var(--teal) !important; box-shadow: 0 14px 34px -10px rgba(14,165,160,0.38) !important; }
.vt-pillar { transition: border-color .15s, transform .15s, box-shadow .15s; border-color: rgba(14,165,160,0.45); box-shadow: 0 10px 30px -16px rgba(14,165,160,0.30); }
.vt-pillar:hover { border-color: var(--teal); transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(14,165,160,0.38); }
.vt-price-card { transition: border-color .15s, transform .15s, box-shadow .15s; border-color: rgba(14,165,160,0.45); box-shadow: 0 10px 30px -16px rgba(14,165,160,0.30); }
.vt-price-card:hover { border-color: var(--teal); transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(14,165,160,0.38); }
.vt-price-card.is-feat { border-color: var(--ink); }
.vt-price-card.is-feat:hover { border-color: var(--ink); }

/* Green hover effect (matches Industries cards) */
.vt-card-hl:hover { border-color: var(--teal); box-shadow: 0 14px 34px -10px rgba(14,165,160,0.38); }
.vt-slots-empty { grid-column: 1 / -1; color: var(--text2); font-size: 14px; padding: 20px 0; text-align: center; }
/* Status page rows */
.vt-status-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }
@media (max-width: 760px) { .vt-status-grid { grid-template-columns: 1fr; } }
.vt-status-card { border: 1px solid var(--rule); border-radius: 14px; padding: 22px; background: var(--paper); }
.vt-status-card.is-ok { border-color: rgba(14,165,160,0.35); }
.vt-status-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.vt-status-head h3 { margin: 0; font-size: 17px; }
.vt-status-badge { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; padding: 5px 11px; border-radius: 999px; }
.vt-status-badge.ok { background: rgba(14,165,160,0.12); color: #0c7f7b; }
.vt-status-badge.warn { background: rgba(245,166,35,0.16); color: #a36500; }
.vt-status-badge.down { background: rgba(244,63,94,0.12); color: #b11530; }
.vt-status-row { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--rule); font-size: 14px; }
.vt-status-row:last-child { border-bottom: none; }
.vt-status-row .lab { display: flex; align-items: center; gap: 9px; color: var(--ink2); }
.vt-status-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.vt-status-dot.ok { background: #16a34a; box-shadow: 0 0 0 3px rgba(22,163,74,0.18); }
.vt-status-dot.warn { background: var(--amber); box-shadow: 0 0 0 3px rgba(245,166,35,0.2); }
.vt-status-dot.down { background: var(--rose); box-shadow: 0 0 0 3px rgba(244,63,94,0.2); }
.vt-status-row .val { font-family: var(--mono); font-size: 12px; color: var(--text2); }
.vt-status-up { font-family: var(--mono); font-size: 12px; color: var(--text2); }
.vt-sched-confirm { border-top: 1px solid var(--rule); padding-top: 16px; margin-top: 4px; }
.vt-sched-pick { font-size: 14px; color: var(--ink2); margin-bottom: 12px; }
.vt-sched-pick strong { color: var(--ink); }

/* ── Plan comparison table ────────────────────────────────────────── */
.vt-compare-wrap { overflow-x: auto; border: 1px solid rgba(14,165,160,0.28); border-radius: 14px; box-shadow: 0 10px 34px -22px rgba(14,165,160,0.45); }
.vt-compare { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 640px; }
.vt-compare th, .vt-compare td { padding: 13px 18px; border-bottom: 1px solid var(--rule); text-align: center; }
.vt-compare thead th { font-family: var(--sans); font-weight: 600; font-size: 15px; vertical-align: bottom; border-bottom: 2px solid var(--teal); }
.vt-compare thead th small { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; color: var(--text2); font-weight: 500; margin-top: 3px; text-transform: uppercase; }
.vt-compare thead th.is-feat { background: var(--ink); color: var(--paper); border-radius: 10px 10px 0 0; border-bottom: 2px solid var(--lime); }
.vt-compare thead th.is-feat small { color: var(--lime); }
.vt-compare th.is-feat, .vt-compare td.is-feat { border-left: 1px solid rgba(14,165,160,0.3); border-right: 1px solid rgba(14,165,160,0.3); background: rgba(14,165,160,0.05); }
.vt-compare tbody tr:last-child td.is-feat { border-bottom: 1px solid rgba(14,165,160,0.3); }
.vt-compare tbody td:first-child, .vt-compare tbody th:first-child { text-align: left; color: var(--ink2); font-weight: 500; }
.vt-compare tr.grp td { background: var(--off); font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text2); text-align: left; font-weight: 600; border-bottom-color: rgba(14,165,160,0.2); }
.vt-compare tbody tr:not(.grp):hover td { background: rgba(197,255,59,0.10); }
.vt-compare tbody tr:not(.grp):hover td.is-feat { background: rgba(14,165,160,0.12); }
.vt-compare .yes { color: var(--teal); font-weight: 700; font-size: 16px; }
.vt-compare .no { color: var(--ruleDk); opacity: 0.4; font-weight: 700; }
.vt-compare .val { font-family: var(--mono); font-size: 12.5px; color: var(--ink2); }
.vt-compare tbody tr:last-child td { border-bottom: none; }
.vt-field input, .vt-field select, .vt-field textarea {
  font-family: var(--sans); font-size: 15px; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--rule); border-radius: 8px;
  background: var(--paper); transition: border-color .15s, box-shadow .15s;
}
.vt-field input:focus, .vt-field select:focus, .vt-field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(14,165,160,0.12);
}
.vt-field textarea { min-height: 130px; resize: vertical; }
.vt-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .vt-form-row { grid-template-columns: 1fr; } }
.vt-form-note { font-size: 12.5px; color: var(--text2); }
.vt-form-status { font-size: 14px; padding: 12px 14px; border-radius: 8px; display: none; }
.vt-form-status.is-ok { display: block; background: rgba(14,165,160,0.1); color: #0c7f7b; }
.vt-form-status.is-err { display: block; background: rgba(244,63,94,0.1); color: #b11530; }
.vt-form-status.is-load { display: block; background: var(--off); color: var(--ink2); }

/* ── Cookie banner (granular) ─────────────────────────────────────── */
.vt-cookie { position: fixed; left: 0; right: 0; bottom: 0; z-index: 200; display: none; padding: 16px; }
.vt-cookie.is-show { display: block; }
.vt-cookie-card {
  max-width: 1040px; margin: 0 auto; background: var(--ink); color: var(--paper);
  border-radius: 14px; padding: 22px 24px; box-shadow: 0 24px 60px rgba(10,21,33,0.4);
  display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
}
.vt-cookie-card .vt-cookie-body { flex: 1; min-width: 280px; }
.vt-cookie-card h4 { margin: 0 0 6px; font-size: 17px; font-weight: 600; }
.vt-cookie-card p { margin: 0; font-size: 13.5px; color: rgba(245,241,232,0.72); line-height: 1.55; }
.vt-cookie-card p a { color: var(--lime); border-bottom: 1px solid currentColor; }
.vt-cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.vt-cookie .vt-btn-ghost-light { color: var(--paper); }

/* preferences modal */
.vt-modal { position: fixed; inset: 0; z-index: 240; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(10,21,33,0.55); backdrop-filter: blur(3px); }
.vt-modal.is-show { display: flex; }
.vt-modal-card { background: var(--paper); border-radius: 16px; max-width: 560px; width: 100%; padding: 28px; max-height: 86vh; overflow: auto; }
.vt-modal-card h3 { margin: 0 0 6px; }
.vt-modal-card > p { color: var(--text2); font-size: 14.5px; margin: 0 0 18px; }
.vt-cookie-cat { border: 1px solid var(--rule); border-radius: 10px; padding: 16px 18px; margin-bottom: 12px; }
.vt-cookie-cat-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.vt-cookie-cat-head h4 { margin: 0; font-size: 15px; font-weight: 600; }
.vt-cookie-cat p { margin: 8px 0 0; font-size: 13px; color: var(--text2); line-height: 1.5; }
.vt-cookie-cat .vt-locked { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; color: var(--teal); text-transform: uppercase; }

/* toggle switch */
.vt-switch { position: relative; width: 42px; height: 24px; flex-shrink: 0; }
.vt-switch input { opacity: 0; width: 0; height: 0; }
.vt-switch .vt-slider { position: absolute; inset: 0; background: var(--rule); border-radius: 999px; transition: .2s; }
.vt-switch .vt-slider::before { content: ""; position: absolute; height: 18px; width: 18px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: .2s; box-shadow: 0 1px 3px rgba(0,0,0,.2); }
.vt-switch input:checked + .vt-slider { background: var(--teal); }
.vt-switch input:checked + .vt-slider::before { transform: translateX(18px); }
.vt-modal-foot { display: flex; gap: 10px; justify-content: flex-end; margin-top: 18px; flex-wrap: wrap; }

/* ── FAQ accordion ────────────────────────────────────────────────── */
.vt-faq { border-top: 1px solid var(--rule); }
.vt-faq details { border-bottom: 1px solid var(--rule); padding: 4px 0; }
.vt-faq summary { list-style: none; cursor: pointer; padding: 18px 4px; font-weight: 600; font-size: 17px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.vt-faq summary::-webkit-details-marker { display: none; }
.vt-faq summary::after { content: "+"; font-family: var(--mono); font-size: 22px; color: var(--teal); transition: transform .2s; }
.vt-faq details[open] summary::after { transform: rotate(45deg); }
.vt-faq details p { margin: 0 4px 18px; color: var(--text2); font-size: 15.5px; line-height: 1.65; max-width: 70ch; }

/* ── Misc ─────────────────────────────────────────────────────────── */
.vt-imgslot { border-radius: 14px; overflow: hidden; border: 1px solid var(--rule); aspect-ratio: 4/3; display: block; width: 100%; }
.vt-section-sep { border: 0; border-top: 1px solid var(--rule); margin: 0; }
.vt-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
@media (max-width: 900px) { .vt-pricing-grid { grid-template-columns: 1fr; } }
.vt-price-card { border: 1px solid var(--rule); border-radius: 14px; padding: 28px; display: flex; flex-direction: column; background: var(--paper); }
.vt-price-card.is-feat { border-color: var(--ink); box-shadow: 0 14px 40px rgba(10,21,33,0.1); position: relative; }
.vt-price-card.is-feat::before { content: "MOST CHOSEN"; position: absolute; top: -11px; left: 28px; background: var(--lime); color: var(--ink); font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .1em; padding: 4px 10px; border-radius: 4px; }
.vt-price-amt { font-size: 40px; font-weight: 600; letter-spacing: -0.02em; margin: 8px 0 2px; }
.vt-price-amt small { font-size: 15px; color: var(--text2); font-weight: 500; }
.vt-price-card ul { list-style: none; padding: 0; margin: 18px 0 24px; display: grid; gap: 10px; }
.vt-price-card li { font-size: 14.5px; color: var(--ink2); padding-left: 26px; position: relative; line-height: 1.45; }
.vt-price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.vt-price-card .vt-btn { margin-top: auto; }
