/* ============================================================
   Virtual Voice — application stylesheet (plain CSS).
   Consumes the design-system tokens in tokens/*.css.
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-primary);
  background: var(--vv-off-white);
  color: var(--vv-text-primary);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-primary); }
::selection { background: rgba(0,105,240,0.18); }
img { display: block; }
h1, h2, h3, h4, p { margin: 0; }
.ic { display: inline-flex; vertical-align: middle; }

@keyframes vvpulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes vvrise  { from { transform: translateY(16px); } to { transform: none; } }
@keyframes vvfade  { from { opacity: 0; } to { opacity: 1; } }
@keyframes vvscalein { from { transform: scale(.96); } to { transform: none; } }
.vv-rise, .vv-fade { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .vv-rise { animation: vvrise .55s cubic-bezier(.4,0,.2,1); }
  .vv-fade { animation: vvfade .4s ease; }
  .vv-scalein { animation: vvscalein .22s cubic-bezier(.4,0,.2,1); }
}

/* ---- layout helpers ---- */
.section { max-width: 820px; margin: 0 auto; padding: 60px 32px; }
.section--wide { max-width: 860px; }
.section--narrow { max-width: 720px; }
.center { text-align: center; }
.grid { display: grid; gap: 18px; }
.g3 { grid-template-columns: repeat(3,1fr); }
.g4 { grid-template-columns: repeat(4,1fr); }
.g2 { grid-template-columns: repeat(2,1fr); }
.stack { display: flex; flex-direction: column; }
.muted { color: var(--vv-text-muted); }
.body { color: var(--vv-text-body); }

/* ---- eyebrow / section head ---- */
.eyebrow { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--vv-electric-blue); }
.eyebrow--dark { color: var(--vv-sky); }
.sec-head { margin-bottom: 32px; }
.sec-head--center { text-align: center; }
.sec-head__title { font-size: 26px; font-weight: 700; letter-spacing: -.01em; margin-top: 8px; color: var(--vv-text-primary); }
.sec-head--dark .sec-head__title { color: #fff; }
.sec-head__sub { font-size: 14px; line-height: 1.7; color: var(--vv-text-body); max-width: 540px; margin-top: 12px; }
.sec-head--center .sec-head__sub { margin-left: auto; margin-right: auto; }
.sec-head--dark .sec-head__sub { color: rgba(255,255,255,.6); }

/* ---- dark hero glow + dot grid ---- */
.hero-glow { background: var(--vv-deep-navy); position: relative; overflow: hidden; }
.hero-glow::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(0,105,240,.22) 0%, transparent 60%);
}
.dotgrid::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg,#000,transparent 85%);
}
.hero-inner { position: relative; z-index: 1; }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-primary); font-weight: 600; border-radius: 10px;
  cursor: pointer; border: 1.5px solid transparent; transition: all .2s ease;
  white-space: nowrap; text-decoration: none; line-height: 1;
}
.btn--sm { font-size: 12.5px; padding: 9px 16px; }
.btn--md { font-size: 13px; padding: 12px 22px; }
.btn--lg { font-size: 14.5px; padding: 14px 28px; }
.btn--block { width: 100%; }
.btn__ic { display: inline-flex; align-items: center; }
.btn--primary { background: var(--vv-electric-blue); color: #fff; }
.btn--primary:hover { background: var(--vv-royal-blue); transform: translateY(-1px); }
.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.18); }
.btn--ghost:hover { background: rgba(255,255,255,.14); }
.btn--outline { background: #fff; color: var(--vv-electric-blue); border-color: var(--vv-border); }
.btn--outline:hover { border-color: var(--vv-electric-blue); transform: translateY(-1px); }
.btn--white { background: #fff; color: var(--vv-electric-blue); }
.btn--white:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(0,0,0,.14); }
.btn--sky { background: transparent; color: var(--vv-sky); border-color: var(--vv-sky); }
.btn--sky:hover { background: rgba(77,163,255,.12); }
.btn--success { background: var(--vv-green); color: #fff; }
.btn--success:hover { filter: brightness(1.06); transform: translateY(-1px); }
.btn--danger { background: var(--vv-red); color: #fff; }
.btn--danger:hover { filter: brightness(1.06); }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

/* ---- badges ---- */
.badge { display: inline-flex; align-items: center; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; letter-spacing: .01em; white-space: nowrap; }
.badge--info { background: rgba(0,105,240,.10); color: var(--vv-electric-blue); }
.badge--success { background: var(--vv-green-tint); color: var(--vv-green); }
.badge--pending { background: var(--vv-amber-tint); color: var(--vv-amber); }
.badge--danger { background: var(--vv-red-tint); color: var(--vv-red); }
.badge--sky { background: rgba(77,163,255,.16); color: #1f6fc2; }
.badge--neutral { background: var(--vv-light-grey); color: var(--vv-text-body); }

/* ---- generic card ---- */
.card { background: #fff; border: 1.5px solid var(--vv-border); border-radius: 14px; transition: all .2s ease; }
.card--hover:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,105,240,.10); }
.card--pad { padding: 22px; }

/* ---- plan card ---- */
.plan { position: relative; background: #fff; border: 1.5px solid var(--vv-border); border-radius: 16px; padding: 26px 22px; transition: all .2s ease; display: flex; flex-direction: column; }
.plan:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,105,240,.10); }
.plan--featured { border-color: var(--vv-electric-blue); border-width: 1.5px; }
.plan__badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--vv-electric-blue); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .08em; padding: 4px 12px; border-radius: 20px; }
.plan__name { font-size: 16px; font-weight: 700; color: var(--vv-text-primary); }
.plan__blurb { font-size: 12.5px; line-height: 1.55; color: var(--vv-text-body); margin-top: 6px; }
.plan__price { display: flex; align-items: baseline; gap: 1px; margin-top: 16px; flex-wrap: wrap; }
.plan__was { font-size: 13px; color: var(--vv-text-muted); text-decoration: line-through; margin-right: 8px; align-self: center; }
.plan__cur { font-size: 18px; font-weight: 700; color: var(--vv-text-primary); align-self: flex-start; margin-top: 6px; }
.plan__fig { font-size: 40px; font-weight: 800; letter-spacing: -.02em; color: var(--vv-text-primary); line-height: 1; }
.plan__pence { font-size: 20px; font-weight: 700; color: var(--vv-text-primary); }
.plan__per { font-size: 13px; color: var(--vv-text-muted); margin-left: 3px; }
.plan__vat { font-size: 11.5px; color: var(--vv-text-muted); margin-top: 6px; }
.plan__save { display: inline-block; font-size: 11px; font-weight: 700; color: var(--vv-green); background: var(--vv-green-tint); padding: 3px 10px; border-radius: 20px; margin-top: 10px; width: fit-content; }
.plan__features { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 9px; }
.plan__features li { font-size: 13px; line-height: 1.45; color: var(--vv-text-body); display: flex; gap: 9px; align-items: flex-start; }
.plan__tick { color: var(--vv-electric-blue); font-weight: 800; flex-shrink: 0; }
.plan__contract { display: flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 600; color: var(--vv-text-muted); margin: 18px 0 0; }
.plan__cta { margin-top: 14px; }

/* ---- feature card ---- */
.feature { background: #fff; border: 1.5px solid var(--vv-border); border-radius: 12px; padding: 20px; transition: all .2s ease; }
.feature:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,105,240,.10); }
.feature__ic { width: 40px; height: 40px; border-radius: 10px; background: var(--vv-ice); color: var(--vv-electric-blue); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.feature__title { font-size: 15px; font-weight: 700; color: var(--vv-text-primary); }
.feature__body { font-size: 13px; line-height: 1.6; color: var(--vv-text-body); margin-top: 6px; }

/* ---- callout ---- */
.callout { display: flex; gap: 12px; border-radius: 12px; padding: 14px 16px; font-size: 13px; line-height: 1.6; border: 1.5px solid; }
.callout__ic { flex-shrink: 0; margin-top: 1px; }
.callout__title { font-weight: 700; margin-bottom: 3px; }
.callout--info { background: var(--vv-ice); border-color: #bcd8ff; color: var(--vv-text-body); }
.callout--info .callout__ic { color: var(--vv-electric-blue); }
.callout--success { background: var(--vv-green-tint); border-color: #b6e3d1; color: #155c41; }
.callout--success .callout__ic { color: var(--vv-green); }
.callout--warning { background: var(--vv-amber-tint); border-color: #ecd4a6; color: #6b3f08; }
.callout--warning .callout__ic { color: var(--vv-amber); }
.callout--danger { background: var(--vv-red-tint); border-color: #f0c2c2; color: #7d2222; }
.callout--danger .callout__ic { color: var(--vv-red); }

/* ---- trust strip ---- */
.trust { background: var(--vv-electric-blue); }
.trust__inner { max-width: 980px; margin: 0 auto; padding: 13px 32px; display: flex; flex-wrap: wrap; justify-content: center; gap: 0; }
.trust__item { color: #fff; font-size: 12.5px; font-weight: 500; padding: 0 18px; display: inline-flex; align-items: center; border-right: 1px solid rgba(255,255,255,.2); }
.trust__item:last-child { border-right: none; }
.trust__item .ic { margin-right: 6px; }

/* ---- announcement bar ---- */
.annbar { background: var(--vv-deep-navy); border-bottom: 1px solid rgba(255,255,255,.08); }
.annbar--biz { background: #080D14; }
.annbar__inner { max-width: 1100px; margin: 0 auto; min-height: 38px; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.annbar__text { font-size: 12px; color: rgba(255,255,255,.62); }
.annbar__link { font-size: 11.5px; font-weight: 600; color: #fff; display: inline-flex; align-items: center; gap: 7px; border: 1px solid rgba(255,255,255,.18); border-radius: 20px; padding: 3px 12px; }
.annbar__link:hover { background: rgba(255,255,255,.06); }
.annbar__badge { background: var(--vv-gradient-office); font-size: 8.5px; font-weight: 700; letter-spacing: .08em; padding: 1px 7px; border-radius: 20px; }
.annbar__dot { color: var(--vv-sky); }

/* ---- public nav ---- */
.nav { background: var(--vv-navy); padding: 0 32px; display: flex; align-items: center; justify-content: space-between; height: 60px; border-bottom: 1px solid rgba(255,255,255,.06); position: sticky; top: 0; z-index: 50; }
.nav--res { position: relative; }
.nav--res::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--vv-electric-blue); z-index: 1; }
.nav--biz { background: #141820; height: 68px; position: relative; }
.nav--biz::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--vv-gradient-office); z-index: 1; }
.nav__brand { display: flex; align-items: center; gap: 9px; cursor: pointer; }
.nav__brand img { height: 24px; }
.wordmark { font-size: 15px; font-weight: 700; color: #fff; letter-spacing: -.01em; }
.wordmark em { color: var(--vv-sky); font-style: normal; }
.nav__links { display: flex; gap: 22px; align-items: center; }
.navlink { font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,.62); transition: color .2s; white-space: nowrap; }
.navlink:hover, .navlink.is-active { color: #fff; }
.nav__div { width: 1px; height: 18px; background: rgba(255,255,255,.12); }
.nav__cross { font-size: 12px; font-weight: 600; color: var(--vv-sky); border: 1px solid rgba(77,163,255,.25); border-radius: 7px; padding: 6px 12px; white-space: nowrap; }
.nav__cross:hover { background: rgba(77,163,255,.10); }
/* office stacked logo */
.officebrand { line-height: 1.05; }
.officebrand .wordmark { font-size: 15px; }
.officepill { background: var(--vv-gradient-office); color: #fff; font-size: 9px; font-weight: 700; padding: 2px 9px; border-radius: 20px; letter-spacing: .1em; width: fit-content; margin-top: 2px; }
/* help dropdown (CSS hover) */
.help { position: relative; display: flex; align-items: center; }
.help::after { content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 10px; }
.help__trigger { font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,.62); cursor: pointer; display: flex; align-items: center; gap: 4px; }
.help:hover .help__trigger { color: #fff; }
.help__menu { position: absolute; top: calc(100% + 10px); right: 0; background: #fff; border: 1.5px solid var(--vv-border); border-radius: 12px; box-shadow: 0 12px 36px rgba(13,31,60,.16); padding: 6px; min-width: 190px; z-index: 60; display: none; }
.help:hover .help__menu { display: block; }
.help__menu a { display: block; padding: 9px 12px; font-size: 13px; font-weight: 500; color: var(--vv-text-body); border-radius: 8px; }
.help__menu a:hover { background: var(--vv-ice); color: var(--vv-electric-blue); }

/* ---- footer ---- */
.foot { background: var(--vv-navy); color: #fff; padding: 52px 32px 28px; }
.foot--biz { background: #141820; }
.foot__grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.foot__tag { font-size: 12.5px; line-height: 1.7; color: rgba(255,255,255,.55); max-width: 250px; margin-top: 14px; }
.foot__apps { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.foot__app { font-size: 10.5px; font-weight: 600; color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.16); border-radius: 6px; padding: 4px 9px; }
.foot__col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.42); margin-bottom: 14px; }
.foot__col .stack { gap: 10px; }
.foot__col a { font-size: 13px; color: rgba(255,255,255,.7); transition: color .2s; }
.foot__col a:hover { color: #fff; }
.foot__bottom { max-width: 1000px; margin: 36px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.foot__legal { font-size: 11px; color: rgba(255,255,255,.42); max-width: 600px; line-height: 1.6; }
.foot__links { display: flex; gap: 18px; }
.foot__links a { font-size: 11px; color: rgba(255,255,255,.55); }

/* ---- forms ---- */
.field { display: block; margin-bottom: 14px; }
.field__label { font-size: 11.5px; font-weight: 600; color: var(--vv-text-body); display: block; margin-bottom: 6px; }
.field__hint { color: var(--vv-text-muted); font-weight: 500; }
.input, .select, .textarea {
  width: 100%; background: #fff; border: 1.5px solid var(--vv-border); border-radius: 10px;
  padding: 10px 12px; font-size: 13.5px; font-family: var(--font-primary); color: var(--vv-text-primary); outline: none; transition: all .2s ease;
}
.textarea { resize: vertical; min-height: 110px; }
.input:focus, .select:focus, .textarea:focus { border-color: var(--vv-electric-blue); box-shadow: 0 0 0 3px rgba(0,105,240,.18); }
.input::placeholder { color: var(--vv-text-muted); }
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* segmented toggle (billing / bundle) */
.seg { display: inline-flex; background: var(--vv-off-white); border: 1.5px solid var(--vv-border); border-radius: 12px; padding: 4px; gap: 4px; }
.seg__opt { border: none; background: transparent; font-family: var(--font-primary); font-size: 13px; font-weight: 600; color: var(--vv-text-muted); padding: 8px 16px; border-radius: 9px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: all .2s ease; }
.seg__opt.is-active { background: #fff; color: var(--vv-text-primary); box-shadow: 0 1px 4px rgba(0,0,0,.08); }
.seg__save { font-size: 10px; font-weight: 700; color: var(--vv-green); background: var(--vv-green-tint); padding: 2px 7px; border-radius: 20px; }

/* chips (number picker) */
.chip { display: inline-flex; align-items: center; gap: 7px; padding: 8px 13px; border-radius: 20px; cursor: pointer; border: 1.5px solid var(--vv-border); background: #fff; font-family: var(--font-primary); font-size: 12.5px; font-weight: 600; color: var(--vv-text-body); transition: all .15s; }
.chip:hover { border-color: var(--vv-electric-blue); }
.chip.is-active { border-color: var(--vv-electric-blue); background: var(--vv-ice); color: var(--vv-electric-blue); }
.chip b { font-weight: 700; }
.chip span { font-weight: 400; color: var(--vv-text-muted); }
.chip.is-active span { color: var(--vv-electric-blue); }

/* ---- accordion / faq ---- */
.acc { border: 1.5px solid var(--vv-border); border-radius: 12px; background: #fff; overflow: hidden; }
.acc + .acc { margin-top: 10px; }
.acc summary { list-style: none; cursor: pointer; padding: 16px 18px; font-size: 14px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 12px; color: var(--vv-text-primary); }
.acc summary::-webkit-details-marker { display: none; }
.acc__ico { color: var(--vv-electric-blue); font-size: 18px; transition: transform .2s; flex-shrink: 0; }
.acc[open] .acc__ico { transform: rotate(45deg); }
.acc__body { padding: 0 18px 16px; font-size: 13.5px; line-height: 1.7; color: var(--vv-text-body); }

/* ---- progress stepper (checkout) ---- */
.stepper { display: flex; align-items: center; gap: 0; flex-wrap: wrap; row-gap: 10px; }
.step { display: flex; align-items: center; gap: 7px; }
.step__dot { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; transition: all .2s ease; }
.step__label { font-size: 11.5px; font-weight: 600; white-space: nowrap; }
.step__line { height: 2px; margin: 0 8px; width: 20px; flex-shrink: 0; border-radius: 2px; }
.step--done .step__dot { background: var(--vv-green); color: #fff; }
.step--active .step__dot { background: var(--vv-electric-blue); color: #fff; }
.step--pending .step__dot { background: #fff; border: 1.5px solid var(--vv-border); color: var(--vv-text-muted); }
.step--done .step__label, .step--active .step__label { color: var(--vv-text-primary); }
.step--pending .step__label { color: var(--vv-text-muted); }
.step__line--done { background: var(--vv-green); }
.step__line--pending { background: var(--vv-border); }
@media (max-width: 520px) { .step__label { font-size: 10px; } .step { gap: 5px; } .step__line { width: 12px; margin: 0 4px; } }

/* ---- data table ---- */
.dt-wrap { border: 1.5px solid var(--vv-border); border-radius: 12px; overflow: hidden; background: #fff; }
.dt { width: 100%; border-collapse: collapse; }
.dt--ui { font-family: var(--font-ui); }
.dt thead th { background: var(--vv-navy); color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; text-align: left; padding: 10px 12px; }
.dt tbody td { font-size: 13px; padding: 9px 12px; border-bottom: 1px solid var(--vv-border); color: var(--vv-text-body); }
.dt tbody tr:nth-child(even) { background: var(--vv-off-white); }
.dt tbody tr:last-child td { border-bottom: none; }
.dt tbody tr.is-clickable { cursor: pointer; }
.dt tbody tr.is-clickable:hover { background: var(--vv-ice); }
.dt a.dt-link { color: var(--vv-electric-blue); font-weight: 600; }

/* ---- stat card ---- */
.stat { background: #fff; border: 1.5px solid var(--vv-border); border-radius: 14px; padding: 18px 20px; }
.stat__top { display: flex; justify-content: space-between; align-items: flex-start; }
.stat__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--vv-text-muted); }
.stat__ic { color: var(--vv-text-muted); }
.stat__value { font-size: 26px; font-weight: 800; letter-spacing: -.01em; margin: 8px 0 2px; color: var(--vv-text-primary); }
.stat__value--blue { color: var(--vv-electric-blue); }
.stat__value--green { color: var(--vv-green); }
.stat__value--amber { color: var(--vv-amber); }
.stat__value--red { color: var(--vv-red); }
.stat__sub { font-size: 11.5px; color: var(--vv-text-muted); line-height: 1.4; }

/* ---- page head (portal/admin) ---- */
/* ---- breadcrumb ---- */
.bc { margin-bottom: 12px; }
.bc__list { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; list-style: none; padding: 0; margin: 0; }
.bc__item { display: flex; align-items: center; gap: 4px; font-size: 12.5px; color: var(--vv-text-muted); }
.bc__link { color: var(--vv-text-muted); font-weight: 500; transition: color .15s; }
.bc__link:hover { color: var(--vv-electric-blue); }
.bc__sep { opacity: .45; }
.bc__item--current { font-weight: 600; color: var(--vv-text-primary); }

.phead { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.phead__title { font-size: 24px; font-weight: 700; letter-spacing: -.01em; }
.phead__sub { font-size: 13.5px; color: var(--vv-text-muted); margin-top: 4px; }
.phead__actions { display: flex; gap: 10px; }

/* ---- countdown ---- */
.countdown { display: flex; align-items: baseline; justify-content: center; gap: 14px; line-height: 1; font-weight: 800; letter-spacing: -.03em; }
.countdown__num { color: var(--vv-electric-blue); }
.countdown__days { color: #fff; }

/* ---- panels & misc shared ---- */
.panel { background: #fff; border: 1.5px solid var(--vv-border); border-radius: 14px; padding: 24px; }
.divider { height: 1px; background: var(--vv-border); border: none; margin: 0; }
.kicker-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--vv-sky); display: inline-block; }
@media (prefers-reduced-motion: no-preference) { .kicker-dot { animation: vvpulse 2s infinite; } }
.live-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,105,240,.16); border: 1px solid rgba(0,105,240,.35); border-radius: 20px; padding: 7px 16px; }
.live-pill span { font-size: 11.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--vv-sky); }

/* hero text */
.hero-h1 { font-size: 46px; font-weight: 800; letter-spacing: -.02em; line-height: 1.08; color: #fff; }
.hero-h1 em { color: var(--vv-sky); font-style: normal; }
.hero-sub { font-size: 16px; line-height: 1.65; color: rgba(255,255,255,.62); }
.btn-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* how-it-works steps */
.step-ic { width: 52px; height: 52px; border-radius: 14px; background: var(--vv-ice); color: var(--vv-electric-blue); display: flex; align-items: center; justify-content: center; position: relative; margin: 0 auto 16px; }
.step-ic__n { position: absolute; top: -8px; right: -8px; width: 24px; height: 24px; border-radius: 50%; background: var(--vv-electric-blue); color: #fff; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.howstep { text-align: center; padding: 8px; }
.howstep h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.howstep p { font-size: 13px; color: var(--vv-text-body); line-height: 1.6; }

/* app tiles */
.apptile { padding: 20px 16px; text-align: center; }
.apptile__ic { width: 42px; height: 42px; margin: 0 auto 12px; border-radius: 11px; background: var(--vv-ice); color: var(--vv-electric-blue); display: flex; align-items: center; justify-content: center; }
.apptile__name { font-size: 14px; font-weight: 600; color: var(--vv-text-primary); }
.apptile__sub { font-size: 11.5px; color: var(--vv-text-muted); margin-top: 3px; }

/* bands */
.band { padding: 44px 32px; }
.band__inner { max-width: 820px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.band--blue { background: var(--vv-electric-blue); }
.band--blue h3 { font-size: 22px; font-weight: 700; color: #fff; }
.band--blue p { font-size: 13.5px; color: rgba(255,255,255,.85); margin-top: 6px; max-width: 460px; line-height: 1.6; }
.band h3.on-dark { color: #fff; }

/* number picker result */
.numresult { margin-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; background: var(--vv-deep-navy); border-radius: 12px; padding: 16px 20px; }
.numresult__lbl { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--vv-sky); }
.numresult__num { font-size: 24px; font-weight: 700; color: #fff; margin-top: 4px; }

/* search input with icon */
.search { position: relative; }
.search .ic { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--vv-text-muted); }
.search .input { padding-left: 36px; }

/* watermark big number */
.watermark { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; pointer-events: none; }
.watermark span { font-size: 260px; font-weight: 800; color: rgba(255,255,255,.03); letter-spacing: -.04em; line-height: 1; }

/* ============================================================
   PORTAL & ADMIN shells
   ============================================================ */
.app-shell { display: flex; min-height: 100vh; }
.sidebar { width: 220px; flex-shrink: 0; background: var(--vv-deep-navy); color: #fff; display: flex; flex-direction: column; position: sticky; top: 0; height: 100vh; overflow-y: auto; }
.sidebar--admin { width: 240px; }
.sidebar__brand { display: flex; align-items: center; gap: 9px; padding: 20px 20px 18px; border-bottom: 1px solid rgba(255,255,255,.08); }
.sidebar__brand img { height: 24px; }
.sidebar__nav { padding: 16px 12px; flex: 1; }
.sidebar__group { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.35); padding: 14px 12px 6px; }
.navitem { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,.66); cursor: pointer; border-left: 3px solid transparent; transition: all .15s; }
.navitem:hover { color: #fff; background: rgba(255,255,255,.05); }
.navitem.is-active { color: #fff; background: rgba(0,105,240,.16); border-left-color: var(--vv-electric-blue); }
.navitem .ic { color: inherit; }
.sidebar__user { border-top: 1px solid rgba(255,255,255,.08); padding: 14px 16px; display: flex; align-items: center; gap: 10px; }
.avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--vv-electric-blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12.5px; font-weight: 700; flex-shrink: 0; }
.sidebar__user-name { font-size: 13px; font-weight: 600; color: #fff; }
.sidebar__user-sub { font-size: 11px; color: rgba(255,255,255,.5); }
.sidebar__logout { margin-left: auto; color: rgba(255,255,255,.5); }
.sidebar__logout:hover { color: #fff; }

.app-main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.topbar { height: 60px; background: #fff; border-bottom: 1px solid var(--vv-border); display: flex; align-items: center; gap: 16px; padding: 0 28px; position: sticky; top: 0; z-index: 40; }
.topbar .search { flex: 1; max-width: 420px; }
.topbar__icon { position: relative; color: var(--vv-text-muted); cursor: pointer; }
.topbar__count { position: absolute; top: -6px; right: -6px; background: var(--vv-red); color: #fff; font-size: 9px; font-weight: 700; min-width: 16px; height: 16px; border-radius: 20px; display: flex; align-items: center; justify-content: center; padding: 0 4px; }
.app-content { padding: 32px 36px; max-width: 1080px; width: 100%; }
.app-content--wide { max-width: 1200px; }

/* portal section card wrapper */
.pcard { background: #fff; border: 1.5px solid var(--vv-border); border-radius: 14px; overflow: hidden; }
.pcard__head { padding: 16px 20px; border-bottom: 1px solid var(--vv-border); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.pcard__head h3 { font-size: 15px; font-weight: 700; }
.pcard__body { padding: 20px; }
.pcard__link { font-size: 12.5px; font-weight: 600; color: var(--vv-electric-blue); }

/* quick actions */
.qa { display: flex; gap: 12px; flex-wrap: wrap; }
.qa__btn { flex: 1; min-width: 160px; background: #fff; border: 1.5px solid var(--vv-border); border-radius: 12px; padding: 16px; display: flex; align-items: center; gap: 12px; cursor: pointer; transition: all .2s; }
.qa__btn:hover { border-color: var(--vv-electric-blue); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,105,240,.10); }
.qa__ic { width: 38px; height: 38px; border-radius: 10px; background: var(--vv-ice); color: var(--vv-electric-blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.qa__t { font-size: 13.5px; font-weight: 600; }
.qa__s { font-size: 11.5px; color: var(--vv-text-muted); }

/* tabs */
.tabs { display: flex; gap: 6px; border-bottom: 1.5px solid var(--vv-border); margin-bottom: 22px; }
.tab { padding: 10px 16px; font-size: 13px; font-weight: 600; color: var(--vv-text-muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1.5px; }
.tab:hover { color: var(--vv-text-body); }
.tab.is-active { color: var(--vv-electric-blue); border-bottom-color: var(--vv-electric-blue); }

/* ---- modal ---- */
.modal-overlay { position: fixed; inset: 0; background: rgba(6,17,34,.55); backdrop-filter: blur(2px); z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal-overlay.is-open { display: flex; }
.modal { background: #fff; border-radius: 16px; width: 460px; max-width: 100%; box-shadow: 0 24px 60px rgba(6,17,34,.4); overflow: hidden; }
.modal__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--vv-border); }
.modal__head h3 { font-size: 16px; font-weight: 700; }
.modal__close { border: none; background: transparent; cursor: pointer; color: var(--vv-text-muted); display: flex; }
.modal__body { padding: 22px; }

/* ---- checkout ---- */
.checkout-wrap { display: grid; grid-template-columns: 1fr 280px; gap: 32px; max-width: 920px; margin: 0 auto; padding: 36px 32px 80px; align-items: start; }
.summary { position: sticky; top: 92px; background: #fff; border: 1.5px solid var(--vv-border); border-radius: 14px; padding: 20px; }
.summary h3 { font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.summary__row { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; color: var(--vv-text-body); padding: 7px 0; }
.summary__row span:last-child { font-weight: 600; color: var(--vv-text-primary); }
.summary__total { display: flex; justify-content: space-between; padding-top: 12px; margin-top: 6px; border-top: 1.5px solid var(--vv-border); font-size: 15px; font-weight: 800; }
.summary__total span:last-child { color: var(--vv-electric-blue); }
.summary__note { font-size: 11px; color: var(--vv-text-muted); margin-top: 12px; line-height: 1.5; }
.co-card { background: #fff; border: 1.5px solid var(--vv-border); border-radius: 14px; padding: 26px; }
.co-card + .co-card { margin-top: 18px; }
.co-h { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.co-hint { font-size: 13px; color: var(--vv-text-muted); margin-bottom: 18px; }
.pwmeter { height: 6px; border-radius: 20px; background: var(--vv-light-grey); overflow: hidden; margin-top: 8px; }
.pwmeter__bar { height: 100%; width: 0; transition: width .3s, background .3s; border-radius: 20px; }

/* success */
.success-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--vv-green-tint); color: var(--vv-green); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; }

/* toast */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 300; background: var(--vv-navy); color: #fff; border-radius: 12px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; max-width: 460px; box-shadow: 0 12px 36px rgba(6,17,34,.35); font-size: 13px; line-height: 1.5; }
.toast button { border: none; background: transparent; color: rgba(255,255,255,.6); cursor: pointer; display: flex; }

/* status dots */
.statusdot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.statusdot--green { background: var(--vv-green); }
.statusdot--amber { background: var(--vv-amber); }
.statusdot--red { background: var(--vv-red); }

/* timeline */
.timeline { position: relative; padding-left: 26px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 4px; bottom: 4px; width: 2px; background: var(--vv-border); }
.tl-item { position: relative; padding-bottom: 18px; }
.tl-item::before { content: ""; position: absolute; left: -23px; top: 3px; width: 12px; height: 12px; border-radius: 50%; background: #fff; border: 2.5px solid var(--vv-electric-blue); }
.tl-item__when { font-size: 11px; color: var(--vv-text-muted); }
.tl-item__what { font-size: 13.5px; color: var(--vv-text-body); margin-top: 2px; }

/* misc utilities */
.row { display: flex; gap: 12px; }
.row--between { justify-content: space-between; align-items: center; }
.mt8 { margin-top: 8px; } .mt12 { margin-top: 12px; } .mt16 { margin-top: 16px; } .mt24 { margin-top: 24px; } .mt32 { margin-top: 32px; }
.mb16 { margin-bottom: 16px; }
.vv-switch { width: 18px; height: 18px; accent-color: var(--vv-electric-blue); cursor: pointer; }
.wfull { width: 100%; }
.pill-note { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 600; color: var(--vv-amber); background: var(--vv-amber-tint); padding: 3px 10px; border-radius: 20px; }
.tag { display: inline-flex; align-items: center; gap: 5px; font-size: 10.5px; font-weight: 700; padding: 3px 9px; border-radius: 6px; background: var(--vv-ice); color: var(--vv-electric-blue); }
.brandtag { font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 6px; background: var(--vv-ice); color: var(--vv-electric-blue); font-family: var(--font-ui); }
.adminsel { padding: 7px 10px; border: 1.5px solid var(--vv-border); border-radius: 8px; font-size: 12.5px; font-family: var(--font-ui); background: #fff; cursor: pointer; color: var(--vv-text-body); }

/* ---- package builder ---- */
.bld-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--vv-text-muted); display: block; margin-bottom: 8px; }
.builder:not(.builder--light) .bld-label { color: rgba(255,255,255,.4); }
.bld-stepper { display: flex; align-items: center; gap: 8px; background: #fff; border: 1.5px solid var(--vv-border); border-radius: 10px; padding: 4px; }
.builder:not(.builder--light) .bld-stepper { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }
.bld-stepper button { width: 34px; height: 34px; border-radius: 8px; border: none; cursor: pointer; background: var(--vv-ice); color: var(--vv-electric-blue); font-size: 18px; font-weight: 600; }
.builder:not(.builder--light) .bld-stepper button { background: rgba(255,255,255,.08); color: #fff; }
.bld-stepper input { flex: 1; text-align: center; border: none; background: transparent; color: var(--vv-text-primary); font-size: 17px; font-weight: 700; font-family: var(--font-primary); outline: none; width: 40px; }
.builder:not(.builder--light) .bld-stepper input { color: #fff; }
.bld-seg .seg__opt.is-active { background: var(--vv-electric-blue); color: #fff; }
.builder:not(.builder--light) .bld-seg { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); }
.builder:not(.builder--light) .bld-seg .seg__opt { color: rgba(255,255,255,.5); }
.bld-result { background: var(--vv-off-white); border: 1px solid var(--vv-border); border-radius: 12px; padding: 16px; }
.builder:not(.builder--light) .bld-result { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.08); }
.bld-result--hl { background: var(--vv-ice); border: 1.5px solid var(--vv-electric-blue); }
.builder:not(.builder--light) .bld-result--hl { background: rgba(0,105,240,.2); border-color: rgba(0,105,240,.4); }
.bld-result__v { font-size: 27px; font-weight: 800; line-height: 1; color: var(--vv-text-primary); }
.builder:not(.builder--light) .bld-result__v { color: #fff; }
.bld-result--hl .bld-result__v { color: var(--vv-electric-blue); }
.builder:not(.builder--light) .bld-result--hl .bld-result__v { color: #fff; }
.bld-result__l { font-size: 11px; color: var(--vv-text-muted); margin-top: 4px; }
.builder:not(.builder--light) .bld-result__l { color: rgba(255,255,255,.4); }
.bld-saving { margin-top: 12px; font-size: 12.5px; font-weight: 600; color: var(--vv-green); text-align: center; }
.bld-breakdown { margin-top: 20px; border: 1px solid var(--vv-border); border-radius: 12px; overflow: hidden; }
.builder:not(.builder--light) .bld-breakdown { border-color: rgba(255,255,255,.1); }
.bld-brow { display: flex; justify-content: space-between; padding: 11px 16px; border-bottom: 1px solid var(--vv-border); font-size: 13px; color: var(--vv-text-body); }
.builder:not(.builder--light) .bld-brow { border-color: rgba(255,255,255,.06); color: rgba(255,255,255,.6); }
.bld-brow:last-child { border-bottom: none; }
.bld-brow span:last-child { font-weight: 600; color: var(--vv-text-primary); }
.builder:not(.builder--light) .bld-brow span:last-child { color: #fff; }

/* comparison table (marketing) */
.cmp { width: 100%; border-collapse: collapse; }
.cmp thead tr { background: var(--vv-navy); color: #fff; }
.cmp th { padding: 13px 12px; font-size: 12px; font-weight: 700; }
.cmp th:first-child { text-align: left; padding-left: 16px; }
.cmp th.is-pop { background: rgba(0,105,240,.25); }
.cmp td { padding: 11px 12px; font-size: 13px; border-bottom: 1px solid var(--vv-border); text-align: center; font-weight: 600; color: var(--vv-text-primary); }
.cmp td:first-child { text-align: left; padding-left: 16px; font-weight: 500; color: var(--vv-text-body); }
.cmp td.is-pop { background: rgba(0,105,240,.04); }
.cmp tbody tr:nth-child(even) { background: var(--vv-off-white); }
.cmp .tk { color: var(--vv-electric-blue); font-weight: 700; }
.cmp .cr { color: var(--vv-text-muted); }

/* category pills */
.catpill { padding: 8px 16px; border-radius: 20px; cursor: pointer; border: 1.5px solid var(--vv-border); background: #fff; color: var(--vv-text-body); font-family: var(--font-primary); font-size: 12.5px; font-weight: 600; text-decoration: none; display: inline-block; }
.catpill.is-active { border-color: var(--vv-electric-blue); background: var(--vv-electric-blue); color: #fff; }

/* dark hero search */
.hero-search input { background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.16); color: #fff; }
.hero-search input::placeholder { color: rgba(255,255,255,.5); }
.hero-search .ic { color: rgba(255,255,255,.5); }

/* responsive */
/* ---- contact page layout ---- */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }

/* ---- blog featured card ---- */
.blog-feat { overflow: hidden; margin-bottom: 32px; display: grid; grid-template-columns: 1.1fr 1fr; }

@media (max-width: 820px) {
  .g3, .g4, .g2 { grid-template-columns: 1fr; }
  .nav__links { gap: 14px; }
  .navlink, .help, .nav__cross, .nav__div, .nav__links .btn { display: none; }
  .nav__burger { display: flex !important; }
  .checkout-wrap { grid-template-columns: 1fr; }
  .summary { position: static; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .sidebar { display: none; }
  .hero-h1 { font-size: 34px; }
  .admin-main { padding: 16px; }
  .pcard { overflow-x: auto; }
  .hw-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-feat { grid-template-columns: 1fr; }
  .blog-feat .hero-glow { min-height: 120px; }
  .annbar__text { display: none; }
  .annbar__inner { justify-content: center; padding: 0 16px; }
}

/* ---- mobile nav burger & drawer ---- */
.nav__burger { display: none; background: none; border: none; padding: 6px; cursor: pointer; flex-direction: column; justify-content: center; gap: 4px; margin-left: 4px; }
.nav__burger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,.85); border-radius: 2px; transition: background .2s; }
.nav__burger:hover span { background: #fff; }
.nav-drawer { position: fixed; inset: 0; z-index: 500; visibility: hidden; pointer-events: none; }
.nav-drawer.is-open { visibility: visible; pointer-events: auto; }
.nav-drawer__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.55); opacity: 0; transition: opacity .28s ease; }
.nav-drawer.is-open .nav-drawer__overlay { opacity: 1; }
.nav-drawer__panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(300px, 88vw); background: var(--vv-navy); transform: translateX(105%); transition: transform .3s cubic-bezier(.22,1,.36,1); display: flex; flex-direction: column; overflow-y: auto; box-shadow: -8px 0 32px rgba(0,0,0,.3); }
.nav-drawer--biz .nav-drawer__panel { background: #141820; }
.nav-drawer.is-open .nav-drawer__panel { transform: translateX(0); }
.nav-drawer__head { padding: 16px 18px; border-bottom: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; }
.nav-drawer__close { background: none; border: none; color: rgba(255,255,255,.55); cursor: pointer; font-size: 22px; line-height: 1; padding: 2px 4px; }
.nav-drawer__close:hover { color: #fff; }
.nav-drawer__links { flex: 1; padding: 6px 0; }
.nav-drawer__link { display: block; font-size: 15px; font-weight: 500; color: rgba(255,255,255,.75); padding: 13px 18px; border-bottom: 1px solid rgba(255,255,255,.06); text-decoration: none; }
.nav-drawer__link:hover { color: #fff; background: rgba(255,255,255,.04); }
.nav-drawer__link.is-active { color: var(--vv-sky); }
.nav-drawer__section { padding: 8px 18px 4px; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.3); margin-top: 4px; }
.nav-drawer__foot { padding: 16px 18px; border-top: 1px solid rgba(255,255,255,.08); display: flex; flex-direction: column; gap: 8px; }
.nav-drawer__cross { font-size: 13px; font-weight: 600; color: var(--vv-sky); text-decoration: none; }

/* ---- cookie consent banner ---- */
.ck-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 800; background: var(--vv-navy); border-top: 1px solid rgba(255,255,255,.1); padding: 14px 24px; box-shadow: 0 -4px 24px rgba(0,0,0,.18); }
.ck-banner__inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: space-between; }
.ck-banner__text { font-size: 13px; color: rgba(255,255,255,.8); line-height: 1.55; max-width: 600px; }
.ck-banner__link { color: var(--vv-sky); text-decoration: underline; }
.ck-banner__btns { display: flex; gap: 8px; flex-shrink: 0; }
@media (max-width: 600px) { .ck-banner__inner { flex-direction: column; align-items: stretch; } .ck-banner__btns { flex-direction: column; } }
@media (max-width: 600px) {
  .foot__grid { grid-template-columns: 1fr; }
  .foot { padding: 40px 20px 24px; }
  .hero-h1 { font-size: 28px; }
  section, .section { padding-left: 16px; padding-right: 16px; }
  .co-card { padding: 20px 16px; }
  .hw-grid { grid-template-columns: 1fr 1fr; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { text-align: center; justify-content: center; }
  .checkout-header { padding: 16px; }
}
/* admin mobile */
@media (max-width: 768px) {
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-topbar { padding: 0 16px; }
  .data-table th, .data-table td { padding: 8px 10px; font-size: 12px; }
}

/* ---- trust signals ---- */
.trust-bar { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 6px 20px; padding: 10px 0; font-size: 12px; color: var(--vv-text-muted); }
.trust-bar__item { display: flex; align-items: center; gap: 5px; font-weight: 500; }

/* ---- sticky mobile CTA (plans page) ---- */
.plans-sticky { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900; background: var(--vv-navy); padding: 14px 20px; box-shadow: 0 -4px 20px rgba(0,0,0,.18); }
.plans-sticky__inner { max-width: 500px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.plans-sticky__text { color: #fff; font-size: 13px; font-weight: 600; line-height: 1.35; }
.plans-sticky__sub { font-size: 11px; font-weight: 400; opacity: .7; }
@media (max-width: 640px) { .plans-sticky { display: block; } }

/* ---- checkout mobile summary bar ---- */
.co-mobile-summary { display: none; background: var(--vv-navy); color: #fff; padding: 10px 16px; font-size: 12.5px; border-bottom: 1px solid rgba(255,255,255,.1); }
.co-mobile-summary__inner { max-width: 920px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.co-mobile-summary__plan { font-weight: 600; }
.co-mobile-summary__total { font-weight: 700; font-size: 14px; color: var(--vv-sky); }
@media (max-width: 640px) { .co-mobile-summary { display: block; } }
