@import url('https://fonts.googleapis.com/css2?family=Sora:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');
/* ===== TOKENS ===== */
:root{
  --bg-main:#080C1C;
  --bg-card:#111834;
  --accent:#F63C97;
  --accent-2:#B01764;
  --text-main:#F2F4FA;
  --text-muted:#9A93AD;
  --border:#23304F;
  --font-head:'Sora',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  --font-body:'Inter',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  --radius:6px;
  --radius-lg:10px;
  --container:1100px;
  /* LOGO_TONE=light (transparent logo, white+magenta) → header/footer are DARK surfaces */
  --surface:#111845;
  --surface-2:#131A3D;
  --surface-ink:#F2F4FA;
  --surface-muted:#9A93AD;
  --surface-border:#26324F;
  --grad-gold:linear-gradient(135deg,#F63C97 0%,#B01764 100%);
  --glow-gold:0 0 22px rgba(246,60,151,.45);
  --shadow-luxe:0 18px 44px -22px rgba(0,0,0,.65);
}

/* ===== RESET ===== */
*{box-sizing:border-box;}
*{margin:0;}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;}
body{
  overflow-x:hidden;
  background:var(--bg-main);
  color:var(--text-main);
  font-family:var(--font-body);
  font-size:17px;
  line-height:1.7;
  font-weight:400;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
button{font-family:inherit;cursor:pointer;}
h1,h2,h3,h4{font-family:var(--font-head);font-weight:600;line-height:1.2;letter-spacing:.01em;color:var(--text-main);overflow-wrap:anywhere;}
p{overflow-wrap:anywhere;}
::selection{background:var(--accent);color:var(--bg-main);}

/* ===== LAYOUT: column archetype (narrow centered column) ===== */
.nvo-container{
  width:100%;
  max-width:var(--container);
  margin-inline:auto;
  padding-inline:clamp(1.1rem,5vw,2rem);
}
section{padding-block:clamp(3rem,7vw,5.25rem);}
.nvo-section--alt{background:var(--bg-card);}
.nvo-eyebrow{
  font-family:var(--font-body);
  text-transform:uppercase;
  letter-spacing:.24em;
  font-size:.72rem;
  font-weight:600;
  color:var(--accent);
  display:inline-block;
  margin-bottom:1rem;
}
.nvo-section__title{
  font-size:clamp(1.65rem,4.4vw,2.5rem);
  margin-bottom:.6rem;
}
.nvo-section__title::after{
  content:'';display:block;width:52px;height:3px;margin-top:.85rem;
  background:var(--grad-gold);border-radius:2px;
}
.nvo-lede{color:var(--text-muted);font-size:1.05rem;margin-bottom:1.8rem;max-width:none;}

/* ===== BUTTONS ===== */
.nvo-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  font-family:var(--font-body);font-weight:700;font-size:.95rem;
  letter-spacing:.01em;
  padding:.85rem 1.6rem;border-radius:var(--radius);
  border:1px solid transparent;
  transition:transform .18s ease,box-shadow .2s ease,background .2s ease;
  min-width:0;
}
.nvo-btn--cta,.nvo-btn--primary{
  background:var(--grad-gold);
  color:#fff;
  box-shadow:0 6px 18px -8px rgba(176,23,100,.7);
}
.nvo-btn--cta:hover,.nvo-btn--primary:hover{transform:translateY(-2px);box-shadow:var(--glow-gold);}
.nvo-btn--ghost{
  background:transparent;color:var(--accent);border-color:var(--accent);
}
.nvo-btn--ghost:hover{background:rgba(246,60,151,.12);}
.nvo-btn--lg{padding:1rem 2rem;font-size:1.02rem;}

/* ===== ICONS ===== */
.nvo-icon{
  width:1.5em;height:1.5em;display:inline-block;vertical-align:middle;
  flex-shrink:0;color:var(--accent);
}

/* ===== HEADER (light surface, dark logo) ===== */
.nvo-header{
  position:sticky;top:0;z-index:60;
  background:var(--surface);
  border-bottom:1px solid var(--surface-border);
  box-shadow:0 8px 24px -14px rgba(0,0,0,.7);
}
.nvo-header__inner{
  display:flex;align-items:center;gap:1rem;
  min-height:68px;
}
.nvo-logo{display:inline-flex;align-items:center;flex-shrink:0;}
.nvo-logo__img{
  height:40px;width:auto;display:block;
  max-width:min(50vw,240px);
}
.nvo-nav{
  display:flex;align-items:center;gap:.35rem;
  margin-inline-start:auto;
}
.nvo-nav a:not(.nvo-btn){
  font-family:var(--font-body);font-weight:600;font-size:.92rem;
  color:var(--surface-ink);
  padding:.5rem .7rem;border-radius:var(--radius);
  letter-spacing:.01em;
  transition:color .18s ease,background .18s ease;
  white-space:nowrap;
}
.nvo-nav a:not(.nvo-btn):hover{color:var(--accent);background:var(--surface-2);}
.nvo-header__cta{flex-shrink:0;padding:.6rem 1.1rem;font-size:.88rem;}
.nvo-burger{
  display:none;flex-direction:column;justify-content:center;gap:5px;
  width:44px;height:44px;flex-shrink:0;
  background:transparent;border:1px solid var(--surface-border);
  border-radius:var(--radius);padding:0 11px;
}
.nvo-burger span{
  display:block;width:22px;height:2px;border-radius:2px;
  background:var(--surface-ink);transition:transform .22s ease,opacity .22s ease;
}
.nvo-header.is-open .nvo-burger span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nvo-header.is-open .nvo-burger span:nth-child(2){opacity:0;}
.nvo-header.is-open .nvo-burger span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

@media (max-width:880px){
  .nvo-burger{display:flex;}
  .nvo-nav{
    display:none;position:absolute;left:0;right:0;top:100%;
    flex-direction:column;align-items:stretch;gap:0;
    margin-inline-start:0;
    background:var(--surface);
    border-bottom:1px solid var(--surface-border);
    box-shadow:0 18px 30px -18px rgba(0,0,0,.4);
    padding:.6rem clamp(1.1rem,5vw,2rem) 1rem;
  }
  .nvo-header.is-open .nvo-nav{display:flex;}
  .nvo-nav a:not(.nvo-btn){padding:.85rem .4rem;min-height:44px;display:flex;align-items:center;border-bottom:1px solid var(--surface-2);}
  .nvo-nav a:not(.nvo-btn):last-child{border-bottom:0;}
  .nvo-header__cta{margin-inline-start:auto;}
}
@media (max-width:430px){
  .nvo-logo__img{height:34px;}
  .nvo-header__cta{padding:.55rem .85rem;font-size:.82rem;}
}

/* ===== HERO (split pattern) ===== */
.nvo-hero{
  position:relative;overflow:hidden;
  background:
    radial-gradient(circle at 78% 22%,rgba(246,60,151,.28) 0%,rgba(246,60,151,0) 46%),
    radial-gradient(circle at 12% 88%,rgba(176,23,100,.18) 0%,rgba(176,23,100,0) 40%),
    var(--bg-main);
}
.nvo-hero::before{
  content:'';position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(180deg,rgba(8,12,28,0) 60%,rgba(8,12,28,.7) 100%);
}
.nvo-hero__inner{
  position:relative;z-index:1;
  display:grid;grid-template-columns:1.1fr .9fr;gap:clamp(1.5rem,4vw,3rem);
  align-items:center;
  padding-block:clamp(3rem,8vw,5.5rem);
}
.nvo-hero__text{text-align:left;min-width:0;}
.nvo-hero h1{
  font-size:clamp(2.1rem,6vw,3.6rem);
  font-weight:700;letter-spacing:.02em;
  background:linear-gradient(180deg,#FFE3F0 0%,#F63C97 120%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
  margin-bottom:1.1rem;
}
@supports not ((-webkit-background-clip:text) or (background-clip:text)){
  .nvo-hero h1{color:var(--text-main);}
}
.nvo-hero__sub{color:var(--text-muted);font-size:1.12rem;margin-bottom:1.9rem;}
.nvo-hero__actions{display:flex;flex-wrap:wrap;gap:.9rem;align-items:center;}
.nvo-chip{
  display:inline-flex;align-items:center;gap:.45rem;
  font-size:.82rem;font-weight:600;letter-spacing:.02em;
  color:var(--accent);
  background:rgba(176,23,100,.14);
  border:1px solid rgba(246,60,151,.4);
  padding:.4rem .85rem;border-radius:999px;
}
.nvo-hero__visual{position:relative;min-width:0;}
.nvo-hero__img{
  display:block;width:100%;height:auto;max-height:70vh;
  aspect-ratio:3/2;object-fit:cover;border-radius:var(--radius-lg);
  border:1px solid rgba(246,60,151,.35);
  box-shadow:var(--shadow-luxe);
}
.nvo-hero__visual:not(:has(.nvo-hero__img))::after,
.nvo-hero__placeholder{
  content:'';display:block;aspect-ratio:3/2;border-radius:var(--radius-lg);
  background:linear-gradient(140deg,#111834 0%,#1c2547 55%,#B01764 160%);
  border:1px solid rgba(246,60,151,.35);
}
@media (max-width:760px){
  .nvo-hero__inner{grid-template-columns:1fr;gap:1.8rem;}
  .nvo-hero__actions{justify-content:flex-start;}
}

/* ===== OVERVIEW ===== */
.nvo-overview p{margin-bottom:1.05rem;color:var(--text-main);}
.nvo-overview p:last-child{margin-bottom:0;}

/* ===== FEATURE-CARDS (icon-rows pattern) ===== */
.nvo-features{display:flex;flex-direction:column;}
.nvo-feature-row{
  display:flex;align-items:flex-start;gap:1.1rem;
  padding:1.4rem 0;border-bottom:1px solid var(--border);min-width:0;
}
.nvo-feature-row:last-child{border-bottom:0;}
.nvo-feature-row__ico{
  flex-shrink:0;width:52px;height:52px;border-radius:var(--radius);
  display:flex;align-items:center;justify-content:center;
  background:radial-gradient(circle at 30% 25%,#1c2547,#0d1330);
  border:1px solid rgba(246,60,151,.4);
}
.nvo-feature-row__ico .nvo-icon{width:1.6em;height:1.6em;color:var(--accent);}
.nvo-feature-row__body{min-width:0;}
.nvo-feature-row__body h3{
  font-size:1.14rem;margin-bottom:.3rem;color:var(--text-main);
}
.nvo-feature-row__body h3 span{
  display:block;width:34px;height:2px;background:var(--accent-2);
  margin-top:.4rem;border-radius:2px;
}
.nvo-feature-row__body p{color:var(--text-muted);font-size:.98rem;}

/* ===== CARDS-GRID ===== */
.nvo-cards{
  display:grid;gap:1.1rem;
  grid-template-columns:repeat(auto-fit,minmax(min(240px,100%),1fr));
}
.nvo-card{
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius-lg);padding:1.5rem;min-width:0;
  transition:border-color .2s ease,transform .2s ease,box-shadow .2s ease;
}
.nvo-card:hover{border-color:rgba(246,60,151,.55);transform:translateY(-3px);box-shadow:var(--shadow-luxe);}
.nvo-card__ico{
  width:46px;height:46px;border-radius:var(--radius);
  display:flex;align-items:center;justify-content:center;
  background:#0d1330;border:1px solid rgba(246,60,151,.35);margin-bottom:1rem;
}
.nvo-card h3{font-size:1.16rem;margin-bottom:.5rem;}
.nvo-card h3::after{content:'';display:block;width:30px;height:2px;background:var(--accent-2);margin-top:.4rem;border-radius:2px;}
.nvo-card p{color:var(--text-muted);font-size:.96rem;}

/* ===== DATA-TABLE ===== */
.nvo-table-wrap{overflow-x:auto;max-width:100%;margin-block:1.5rem;border-radius:var(--radius-lg);border:1px solid var(--border);}
.nvo-table{width:100%;border-collapse:collapse;font-size:.95rem;min-width:480px;}
.nvo-table thead th{
  background:var(--grad-gold);color:#fff;font-family:var(--font-head);
  font-weight:600;text-align:left;padding:.95rem 1.1rem;white-space:nowrap;
  letter-spacing:.02em;
}
.nvo-table td,.nvo-table th{padding:.85rem 1.1rem;border-bottom:1px solid var(--border);vertical-align:top;}
.nvo-table tbody tr:nth-child(odd){background:var(--bg-main);}
.nvo-table tbody tr:nth-child(even){background:var(--bg-card);}
.nvo-table tbody tr:last-child td{border-bottom:0;}
.nvo-table td strong,.nvo-table .nvo-hl{color:var(--accent);font-weight:700;}

/* ===== TWO-COLS + CONTENT PANEL ===== */
.nvo-two-cols{display:grid;grid-template-columns:1.15fr .85fr;gap:clamp(1.4rem,4vw,2.4rem);align-items:start;}
.nvo-two-cols > *{min-width:0;}
@media (max-width:760px){.nvo-two-cols{grid-template-columns:1fr;}}
.nvo-panel{
  background:var(--bg-card);border:1px solid var(--border);
  border-radius:var(--radius-lg);padding:1.6rem;box-shadow:var(--shadow-luxe);
}
.nvo-panel__title{font-size:1.1rem;margin-bottom:1rem;color:var(--text-main);}
.nvo-panel__title::after{content:'';display:block;width:30px;height:2px;background:var(--accent-2);margin-top:.4rem;border-radius:2px;}
.nvo-facts{display:flex;flex-direction:column;}
.nvo-facts__row{display:flex;justify-content:space-between;gap:1rem;padding:.65rem 0;border-bottom:1px solid var(--border);}
.nvo-facts__row:last-child{border-bottom:0;}
.nvo-facts__row dt{color:var(--text-muted);font-size:.92rem;}
.nvo-facts__row dd{color:var(--accent);font-weight:600;text-align:right;font-size:.95rem;}
.nvo-checklist{list-style:none;display:flex;flex-direction:column;gap:.7rem;}
.nvo-checklist li{display:flex;align-items:flex-start;gap:.6rem;font-size:.96rem;color:var(--text-main);}
.nvo-checklist li .nvo-icon{color:var(--accent);margin-top:.15rem;}
.nvo-stat-tiles{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(200px,100%),1fr));gap:.7rem;}
.nvo-stat-tile{background:var(--bg-main);border:1px solid var(--border);border-radius:var(--radius);padding:.9rem;text-align:center;min-width:0;}
.nvo-stat-tile b{display:block;font-family:var(--font-head);font-size:1.4rem;color:var(--accent);}
.nvo-stat-tile span{font-size:.78rem;color:var(--text-muted);}
.nvo-score{text-align:center;}
.nvo-score__num{font-family:var(--font-head);font-size:2.6rem;color:var(--accent);line-height:1;}
.nvo-score__stars{display:flex;justify-content:center;gap:.15rem;margin:.5rem 0;color:var(--accent);}
.nvo-score__stars .nvo-icon{width:1.15em;height:1.15em;}
.nvo-score__label{color:var(--text-muted);font-size:.85rem;}

/* ===== NUMBERED-LIST ===== */
.nvo-steps{list-style:none;counter-reset:nvo-step;display:flex;flex-direction:column;gap:1.1rem;}
.nvo-steps li{
  counter-increment:nvo-step;position:relative;
  padding:1.2rem 1.3rem 1.2rem 4.2rem;
  background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius-lg);min-width:0;
}
.nvo-steps li::before{
  content:counter(nvo-step,decimal-leading-zero);
  position:absolute;left:1.2rem;top:1.1rem;
  font-family:var(--font-head);font-size:1.25rem;font-weight:700;
  color:#fff;background:var(--grad-gold);
  width:2.1rem;height:2.1rem;border-radius:var(--radius);
  display:flex;align-items:center;justify-content:center;
}
.nvo-steps li h3{font-size:1.08rem;margin-bottom:.3rem;}
.nvo-steps li p{color:var(--text-muted);font-size:.96rem;}

/* ===== STATS-BAR (strip pattern) ===== */
.nvo-stats{
  display:flex;flex-wrap:wrap;justify-content:space-between;gap:1rem;
  padding-block:1.4rem;
}
.nvo-stat{
  flex:1 1 140px;min-width:0;text-align:center;padding-inline:.5rem;
  border-inline-start:1px solid var(--border);
}
.nvo-stat:first-child{border-inline-start:0;}
.nvo-stat b{display:block;font-family:var(--font-head);font-size:clamp(1.8rem,4.5vw,2.6rem);color:var(--accent);line-height:1.05;}
.nvo-stat span{display:block;margin-top:.3rem;font-size:.8rem;color:var(--text-muted);text-transform:uppercase;letter-spacing:.14em;}
@media (max-width:560px){.nvo-stat{flex-basis:calc(50% - .5rem);border-inline-start:0;}}

/* ===== CATEGORIES-BAR ===== */
.nvo-cats{display:flex;flex-wrap:wrap;gap:.6rem;}
.nvo-cats a,.nvo-cats span{
  font-size:.85rem;font-weight:600;
  padding:.45rem .95rem;border-radius:999px;
  background:rgba(246,60,151,.1);border:1px solid rgba(246,60,151,.32);
  color:var(--accent);
}

/* ===== PAGE-HEADER ===== */
.nvo-page-header{
  position:relative;overflow:hidden;
  background:
    radial-gradient(circle at 82% 10%,rgba(246,60,151,.2),transparent 50%),
    var(--bg-card);
  border-bottom:1px solid var(--border);
  padding-block:clamp(2.2rem,5vw,3.2rem);
}
.nvo-page-header .nvo-hero__img{position:absolute;inset:0;width:100%;height:100%;aspect-ratio:auto;max-height:none;border:0;border-radius:0;object-fit:cover;z-index:0;}
.nvo-page-header h1{font-size:clamp(1.8rem,5vw,2.8rem);}
.nvo-breadcrumb{display:flex;flex-wrap:wrap;gap:.4rem;align-items:center;margin-bottom:.9rem;font-size:.78rem;text-transform:uppercase;letter-spacing:.12em;color:var(--text-muted);}
.nvo-breadcrumb a{color:var(--text-muted);}
.nvo-breadcrumb a:hover{color:var(--accent);}
.nvo-breadcrumb__sep{color:var(--accent);}

/* ===== LEGAL-BODY ===== */
.nvo-legal{counter-reset:nvo-sec;}
/* readable measure for long-form legal text, left-aligned with the page-header H1 */
.nvo-legal>.nvo-container>*{max-width:780px;}
.nvo-legal h2{
  counter-increment:nvo-sec;font-size:1.3rem;margin:2.2rem 0 .8rem;
  padding-top:1.4rem;border-top:1px solid var(--border);
}
.nvo-legal h2:first-of-type{border-top:0;padding-top:0;margin-top:0;}
.nvo-legal h2::before{content:counter(nvo-sec) '. ';color:var(--accent);font-weight:700;}
.nvo-legal h3{font-size:1.08rem;margin:1.4rem 0 .5rem;color:var(--accent);}
.nvo-legal p,.nvo-legal li{color:var(--text-muted);margin-bottom:.85rem;}
.nvo-legal ul,.nvo-legal ol{padding-inline-start:1.4rem;margin-bottom:1rem;}
.nvo-legal a{color:var(--accent);text-decoration:underline;text-underline-offset:3px;}

/* ===== CTA-BLOCK ===== */
.nvo-cta-block{
  position:relative;overflow:hidden;text-align:center;
  background:
    radial-gradient(circle at 50% -10%,rgba(246,60,151,.3),transparent 55%),
    var(--bg-card);
  border-block:1px solid var(--border);
}
.nvo-cta-block h2{font-size:clamp(1.7rem,4.5vw,2.6rem);margin-bottom:.7rem;}
.nvo-cta-block p{color:var(--text-muted);margin-bottom:1.7rem;}
.nvo-cta-block .nvo-btn{margin-inline:auto;}

/* ===== TOC ===== */
.nvo-toc{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius-lg);padding:1.3rem 1.5rem;}
.nvo-toc h3{font-size:.85rem;text-transform:uppercase;letter-spacing:.14em;color:var(--accent);margin-bottom:.8rem;}
.nvo-toc ul{list-style:none;display:flex;flex-direction:column;gap:.5rem;}
.nvo-toc a{color:var(--text-muted);font-size:.95rem;display:inline-flex;gap:.5rem;}
.nvo-toc a::before{content:'›';color:var(--accent);}
.nvo-toc a:hover{color:var(--accent);}

/* ===== FAQ (single pattern) ===== */
.nvo-faq details{border-bottom:1px solid var(--border);}
.nvo-faq summary{
  cursor:pointer;padding:1rem 0;font-weight:600;list-style:none;
  font-family:var(--font-head);font-size:1.05rem;color:var(--text-main);
  display:flex;align-items:flex-start;gap:.2rem;
}
.nvo-faq summary::-webkit-details-marker{display:none;}
.nvo-faq summary::before{content:'+';color:var(--accent);margin-right:.6rem;font-weight:700;transition:transform .2s;font-family:var(--font-body);}
.nvo-faq details[open] summary::before{content:'−';}
.nvo-faq details > :not(summary){padding:.25rem 0 1.1rem;color:var(--text-muted);}

/* ===== PAYMENTS-TABLE ===== */
.nvo-pay-name{display:flex;align-items:center;gap:.6rem;}
.nvo-pay-name .nvo-icon{color:var(--accent);}

/* ===== RTP-GRID ===== */
.nvo-rtp{display:grid;gap:clamp(.6rem,1.5vw,1rem);grid-template-columns:repeat(2,minmax(0,1fr));}
@media (min-width:640px){.nvo-rtp{grid-template-columns:repeat(3,minmax(0,1fr));}}
@media (min-width:960px){.nvo-rtp{grid-template-columns:repeat(4,minmax(0,1fr));}}
.nvo-rtp-item{
  position:relative;overflow:hidden;min-width:0;
  border-radius:var(--radius-lg);border:1px solid rgba(246,60,151,.35);
  background:var(--bg-card);transition:box-shadow .2s ease,border-color .2s ease,transform .2s ease;
}
.nvo-rtp-item:hover{border-color:var(--accent);box-shadow:var(--glow-gold);transform:translateY(-3px);}
.nvo-rtp-item__thumb{aspect-ratio:3/2;position:relative;background:linear-gradient(140deg,#111834,#1c2547 60%,#B01764 170%);}
.nvo-rtp-item__thumb img{width:100%;height:100%;object-fit:cover;display:block;}
.nvo-rtp-item__name{padding:.6rem .75rem;font-size:.88rem;font-weight:600;color:var(--text-main);}
.nvo-rtp-badge{position:absolute;top:.5rem;left:.5rem;z-index:2;font-size:.72rem;font-weight:700;background:var(--accent-2);padding:.2rem .5rem;border-radius:4px;color:#fff;}
.nvo-rtp-tooltip{
  position:absolute;left:0;right:0;bottom:0;opacity:0;transition:opacity .2s;
  background:linear-gradient(0deg,rgba(8,12,28,.94),rgba(8,12,28,.5));
  padding:.6rem .75rem;font-size:.8rem;color:var(--text-main);
}
.nvo-rtp-tooltip b{color:var(--accent);}
.nvo-rtp-item:hover .nvo-rtp-tooltip,.nvo-rtp-item:focus-within .nvo-rtp-tooltip{opacity:1;}
@media (hover:none){.nvo-rtp-tooltip{opacity:1;position:static;background:var(--bg-main);}}

/* ===== STICKY-NAV (mobile bottom) ===== */
.nvo-sticky-nav{display:none;}
@media (max-width:768px){
  .nvo-sticky-nav{
    display:flex;position:fixed;left:0;right:0;bottom:0;z-index:70;
    justify-content:space-around;align-items:center;
    background:var(--bg-card);border-top:1px solid var(--border);
    padding:.5rem .6rem;
  }
  .nvo-sticky-nav a{display:flex;flex-direction:column;align-items:center;gap:.15rem;font-size:.68rem;color:var(--text-muted);}
  .nvo-sticky-nav a .nvo-icon{color:var(--accent);}
}

/* ===== CHAT-WIDGET ===== */
.nvo-chat-btn{position:fixed;right:1.1rem;bottom:1.1rem;z-index:75;width:54px;height:54px;border-radius:50%;background:var(--grad-gold);border:0;display:flex;align-items:center;justify-content:center;box-shadow:var(--glow-gold);}
.nvo-chat-btn .nvo-icon{color:#fff;}
.nvo-chat-dialog{position:fixed;right:1.1rem;bottom:5rem;z-index:75;width:min(320px,90vw);background:var(--bg-card);border:1px solid var(--border);border-radius:var(--radius-lg);padding:1.2rem;box-shadow:var(--shadow-luxe);display:none;}
.nvo-chat-dialog.is-open{display:block;}

/* ===== FOOTER (light surface, dark logo) ===== */
.nvo-footer{
  background:var(--surface-2);
  color:var(--surface-ink);
  border-top:3px solid var(--accent);
  padding-block:clamp(2.5rem,6vw,3.5rem) 1.5rem;
  font-size:.92rem;
}
.nvo-footer__grid{
  display:grid;gap:2rem clamp(1.5rem,4vw,3rem);
  grid-template-columns:1.4fr repeat(2,1fr);
}
@media (max-width:760px){.nvo-footer__grid{grid-template-columns:1fr 1fr;}}
@media (max-width:460px){.nvo-footer__grid{grid-template-columns:1fr;}}
.nvo-footer__brand .nvo-logo__img{height:38px;width:auto;margin-bottom:.9rem;}
.nvo-footer__brand p{color:var(--surface-muted);font-size:.9rem;}
.nvo-footer__col h3{font-family:var(--font-head);font-size:.82rem;text-transform:uppercase;letter-spacing:.14em;color:var(--accent);margin-bottom:.9rem;}
.nvo-footer__col ul{list-style:none;display:flex;flex-direction:column;gap:.55rem;}
.nvo-footer__col a{color:var(--surface-ink);font-weight:500;}
.nvo-footer__col a:hover{color:var(--accent);text-decoration:underline;text-underline-offset:3px;}
.nvo-footer__disclaimer{
  margin-top:2rem;padding-top:1.4rem;border-top:1px solid var(--surface-border);
  color:var(--surface-muted);font-size:.8rem;line-height:1.6;
}
.nvo-footer__badges{display:flex;flex-wrap:wrap;gap:.6rem;margin-bottom:1rem;}
.nvo-footer__badge{display:inline-flex;align-items:center;gap:.35rem;font-size:.72rem;font-weight:700;letter-spacing:.04em;padding:.3rem .7rem;border-radius:4px;background:var(--surface-ink);color:var(--surface);}
.nvo-footer__copy{margin-top:1rem;color:var(--surface-muted);font-size:.8rem;}

/* ===== ACCESSIBILITY ===== */
:focus-visible{outline:2px solid var(--accent);outline-offset:2px;border-radius:3px;}
@media (prefers-reduced-motion:reduce){
  *{animation-duration:.001ms!important;transition-duration:.001ms!important;scroll-behavior:auto!important;}
}
/* sa-responsive-net */
table th{white-space:nowrap}
figure,blockquote,dl,dd,fieldset{margin:0}
/* sa-ph-media */
.nvo-page-header:has(.nvo-hero__img){position:relative;overflow:hidden;isolation:isolate;min-height:clamp(200px,30vh,300px);display:flex;flex-direction:column;justify-content:center}
.nvo-page-header:has(.nvo-hero__img) .nvo-hero__img{position:absolute;inset:0;width:100%;height:100%;max-height:none;aspect-ratio:auto;object-fit:cover;margin:0;z-index:0}
.nvo-page-header:has(.nvo-hero__img)::after{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(10,12,18,.72),rgba(10,12,18,.5))}
.nvo-page-header:has(.nvo-hero__img)>:not(.nvo-hero__img){position:relative;z-index:2}
.nvo-page-header:has(.nvo-hero__img),.nvo-page-header:has(.nvo-hero__img) h1,.nvo-page-header:has(.nvo-hero__img) a,.nvo-page-header:has(.nvo-hero__img) p,.nvo-page-header:has(.nvo-hero__img) li,.nvo-page-header:has(.nvo-hero__img) span{color:#fff}
/* sa-hero-media */
.nvo-hero:has(>.nvo-hero__img){position:relative;isolation:isolate}
.nvo-hero:has(>.nvo-hero__img)>.nvo-hero__img{z-index:0}
.nvo-hero:has(>.nvo-hero__img)::after{z-index:1}
.nvo-hero:has(>.nvo-hero__img)>:not(.nvo-hero__img){position:relative;z-index:2}
/* sa-rhythm */
:where(.nvo-table-wrap){margin-block:1.5rem}
:where(main) :where(ul,ol,table,.nvo-table-wrap)+p{margin-block-start:1rem}
/* sa-slot-link */
.nvo-rtp-item,.nvo-rtp-item:hover,.nvo-rtp-item:focus{color:inherit;text-decoration:none;cursor:pointer}
/* sa-logo-chip */
.nvo-footer .nvo-logo__img{filter:none;background:transparent;padding:0}
.nvo-footer .nvo-footer__logo-chip{background:transparent;padding:0}
