/* ============================================================
   DASTIVO — style.css
   Ledger Editorial art direction. Hand-built for dastivo.pro.
   Class scheme: dtv.module.element--state (dot-segmented, file-path style)
   ============================================================ */

:root{
  /* palette --------------------------------------------------- */
  --site-bg:#0f1b2d;
  --site-surface:#16283f;
  --site-text:#eef1ea;
  --site-muted:#9aa7b5;
  --site-accent:#c9a15a;
  --site-accent2:#7fae94;

  --dtv-bg:var(--site-bg);
  --dtv-surface:var(--site-surface);
  --dtv-surface-2:#1c3049;
  --dtv-text:var(--site-text);
  --dtv-muted:var(--site-muted);
  --dtv-accent:var(--site-accent);
  --dtv-accent-2:var(--site-accent2);
  --dtv-line:rgba(238,241,234,.12);
  --dtv-line-soft:rgba(238,241,234,.07);

  --dtv-radius:20px;
  --dtv-radius-sm:12px;
  --dtv-shadow:0 4px 24px rgba(0,0,0,.08);
  --dtv-shadow-lg:0 18px 48px rgba(0,0,0,.32);

  --dtv-container:1240px;
  --dtv-pad:clamp(20px,5vw,40px);
  --dtv-section-pad:56px;

  --font-head:'Spectral',Georgia,'Times New Roman',serif;
  --font-body:'Work Sans',-apple-system,BlinkMacSystemFont,sans-serif;
  --font-mono:'Courier New',ui-monospace,SFMono-Regular,Menlo,monospace;
}

@media (min-width:1024px){
  :root{ --dtv-section-pad:88px; }
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
html,body{ overflow-x:hidden; max-width:100%; }
body{
  margin:0;
  background:var(--dtv-bg);
  color:var(--dtv-text);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; height:auto; display:block; }
svg{ display:block; }
a{ color:inherit; }
ul,ol{ margin:0; padding:0; list-style:none; }
p{ margin:0 0 1em; }
h1,h2,h3,h4{ font-family:var(--font-head); font-weight:600; line-height:1.15; margin:0 0 .5em; color:var(--dtv-text); }
button{ font-family:inherit; cursor:pointer; }
input,textarea,select{ font-family:inherit; font-size:1rem; }
:focus-visible{ outline:2px solid var(--dtv-accent-2); outline-offset:3px; }

.dtv\.container{
  width:100%;
  max-width:var(--dtv-container);
  margin-inline:auto;
  padding-inline:var(--dtv-pad);
}

.dtv\.section{ padding-block:var(--dtv-section-pad); position:relative; }
.dtv\.section--tinted{
  background:
    linear-gradient(180deg, rgba(127,174,148,.09), rgba(127,174,148,.02) 60%),
    var(--dtv-bg);
  border-top:1px solid var(--dtv-line-soft);
  border-bottom:1px solid var(--dtv-line-soft);
}
.dtv\.section--surface{ background:var(--dtv-surface); }
.dtv\.section--ledger{
  background-image:repeating-linear-gradient(to bottom, rgba(238,241,234,.035) 0 1px, transparent 1px 44px);
}

/* eyebrow / labels ------------------------------------------- */
.dtv\.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.5em;
  font-family:var(--font-mono);
  font-size:.72rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--dtv-accent);
  margin-bottom:1em;
}
.dtv\.eyebrow::before{ content:"—"; color:var(--dtv-accent-2); }

/* ============================================================
   SIGNATURE ELEMENT — ledger numerals beside section heads
   ============================================================ */
.dtv\.section\.head{
  display:flex;
  align-items:flex-end;
  gap:clamp(16px,4vw,40px);
  margin-bottom:clamp(32px,5vw,56px);
  border-bottom:1px solid var(--dtv-line);
  padding-bottom:24px;
}
.dtv\.section\.num{
  font-family:var(--font-head);
  font-weight:700;
  font-size:clamp(2.4rem,7vw,4.4rem);
  line-height:1;
  color:var(--dtv-accent);
  opacity:.9;
  white-space:nowrap;
}
.dtv\.section\.num::after{ content:" —"; color:var(--dtv-accent-2); }
.dtv\.section\.head-text{ flex:1; min-width:200px; }
.dtv\.section\.title{ font-size:clamp(1.6rem,3.4vw,2.4rem); margin:0 0 .3em; }
.dtv\.section\.lead{ color:var(--dtv-muted); max-width:60ch; margin:0; font-size:1.05rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.dtv\.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.6em;
  padding:.9em 1.9em;
  border-radius:999px;
  font-weight:600;
  font-size:.95rem;
  text-decoration:none;
  border:1px solid transparent;
  transition:transform .18s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space:nowrap;
}
.dtv\.btn:hover{ transform:translateY(-2px); }
.dtv\.btn--primary{ background:var(--dtv-accent); color:#1a1305; }
.dtv\.btn--primary:hover{ background:#dab674; }
.dtv\.btn--outline{ background:transparent; border-color:var(--dtv-line); color:var(--dtv-text); }
.dtv\.btn--outline:hover{ border-color:var(--dtv-accent); color:var(--dtv-accent); }
.dtv\.btn--ghost{ background:transparent; color:var(--dtv-accent-2); padding:.6em 0; }
.dtv\.btn--ghost:hover{ color:var(--dtv-accent); }
.dtv\.btn--block{ width:100%; }
.dtv\.btn--sm{ padding:.6em 1.3em; font-size:.85rem; }

/* ============================================================
   HEADER — thin utility bar + primary nav row (brass underline)
   ============================================================ */
#masthead-rno{
  position:sticky;
  top:0;
  z-index:60;
  background:var(--dtv-bg);
  transition:box-shadow .25s ease;
}
#masthead-rno.is-scrolled{ box-shadow:0 6px 24px rgba(0,0,0,.35); }

.dtv\.header\.utility{
  background:#0b1420;
  border-bottom:1px solid var(--dtv-line-soft);
  font-family:var(--font-mono);
  font-size:.78rem;
}
.dtv\.header\.utility-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-block:9px;
  flex-wrap:wrap;
}
.dtv\.header\.utility-left{ display:flex; gap:22px; flex-wrap:wrap; }
.dtv\.header\.utility-link{ color:var(--dtv-muted); text-decoration:none; display:inline-flex; align-items:center; gap:.5em; }
.dtv\.header\.utility-link:hover{ color:var(--dtv-accent-2); }
.dtv\.header\.utility-reg{ color:var(--dtv-muted); letter-spacing:.02em; }

.dtv\.header\.primary{ border-bottom:1px solid var(--dtv-line); }
.dtv\.header\.primary-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding-block:18px;
}

.dtv\.brand{
  display:inline-flex;
  align-items:center;
  gap:.65em;
  text-decoration:none;
  color:var(--dtv-text);
}
.dtv\.brand\.icon{ color:var(--dtv-accent); flex-shrink:0; }
.dtv\.brand\.name{
  font-family:var(--font-head);
  font-weight:600;
  font-size:1.5rem;
  letter-spacing:.01em;
}

.dtv\.nav{ display:flex; align-items:center; gap:clamp(16px,2.4vw,34px); }
.dtv\.nav\.link{
  position:relative;
  padding:8px 2px;
  color:var(--dtv-text);
  text-decoration:none;
  font-weight:500;
  font-size:.95rem;
}
.dtv\.nav\.link::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-2px;
  height:2px;
  background:transparent;
  transition:background .2s ease;
}
.dtv\.nav\.link:hover::after,
.dtv\.nav\.link--active::after{ background:var(--dtv-accent); }
.dtv\.nav\.link--active{ color:var(--dtv-accent); }

.dtv\.nav\.toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:1px solid var(--dtv-line);
  border-radius:10px;
  padding:11px 12px;
}
.dtv\.nav\.toggle-bar{ width:20px; height:2px; background:var(--dtv-text); display:block; }

@media (max-width:900px){
  .dtv\.header\.utility-left a:nth-child(1){ }
  .dtv\.nav{ display:none; }
  .dtv\.nav\.toggle{ display:flex; }
}
@media (max-width:560px){
  .dtv\.header\.utility-reg{ display:none; }
}

/* mobile drawer ------------------------------------------------ */
.dtv\.drawer\.overlay{
  position:fixed; inset:0;
  background:rgba(6,11,18,.6);
  opacity:0; visibility:hidden;
  transition:opacity .25s ease;
  z-index:70;
}
.dtv\.drawer\.overlay.is-open{ opacity:1; visibility:visible; }

.dtv\.drawer{
  position:fixed;
  top:0; right:0;
  width:min(84vw,340px);
  height:100vh;
  background:var(--dtv-surface);
  border-left:1px solid var(--dtv-line);
  z-index:80;
  transform:translateX(100%);
  transition:transform .3s ease;
  padding:22px;
  overflow-y:auto;
}
.dtv\.drawer.is-open{ transform:translateX(0); }
.dtv\.drawer\.head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:28px; }
.dtv\.drawer\.title{ font-family:var(--font-head); font-size:1.2rem; font-weight:600; }
.dtv\.drawer\.close{ background:none; border:1px solid var(--dtv-line); border-radius:10px; width:38px; height:38px; color:var(--dtv-text); font-size:1rem; }
.dtv\.drawer\.nav{ display:flex; flex-direction:column; gap:4px; }
.dtv\.drawer\.nav .dtv\.nav\.link{ display:block; padding:14px 6px; border-bottom:1px solid var(--dtv-line-soft); }
.dtv\.drawer\.nav .dtv\.nav\.link::after{ display:none; }

/* ============================================================
   HERO — shared base + variants
   ============================================================ */
.dtv\.hero{
  padding-block:clamp(48px,8vw,var(--dtv-section-pad));
  position:relative;
}
.dtv\.hero\.eyebrow{ }
.dtv\.hero\.title{
  font-size:clamp(2.1rem,5.2vw,3.6rem);
  margin-bottom:.4em;
  max-width:16ch;
}
.dtv\.hero\.intro{
  color:var(--dtv-muted);
  font-size:clamp(1rem,1.4vw,1.18rem);
  max-width:52ch;
  margin-bottom:1.6em;
}
.dtv\.hero\.actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* variant: widget beside headline (index) */
.dtv\.hero--widget{ background-image:repeating-linear-gradient(to bottom, rgba(238,241,234,.03) 0 1px, transparent 1px 46px); }
.dtv\.hero--widget .dtv\.hero\.row{
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
  align-items:center;
}
@media (min-width:900px){
  .dtv\.hero--widget .dtv\.hero\.row{ grid-template-columns:1.15fr .85fr; gap:56px; }
}
.dtv\.hero\.widget{
  background:var(--dtv-surface);
  border:1px solid var(--dtv-line);
  border-radius:var(--dtv-radius);
  box-shadow:var(--dtv-shadow);
  padding:28px;
}
.dtv\.hero\.widget-head{
  display:flex; align-items:center; gap:12px;
  margin-bottom:20px;
  padding-bottom:16px;
  border-bottom:1px solid var(--dtv-line);
}
.dtv\.hero\.widget-head i{ color:var(--dtv-accent); font-size:1.2rem; }
.dtv\.hero\.widget-title{ font-family:var(--font-head); font-size:1.1rem; font-weight:600; }
.dtv\.hero\.widget-sub{ color:var(--dtv-muted); font-size:.8rem; margin:2px 0 0; }
.dtv\.hero\.widget-row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:14px; }
.dtv\.hero\.widget-field{ display:flex; flex-direction:column; gap:6px; }
.dtv\.hero\.widget-field label{ font-size:.76rem; color:var(--dtv-muted); text-transform:uppercase; letter-spacing:.06em; }
.dtv\.hero\.widget-field input,
.dtv\.hero\.widget-field select{
  background:var(--dtv-surface-2);
  border:1px solid var(--dtv-line);
  border-radius:10px;
  padding:.7em .8em;
  color:var(--dtv-text);
}
.dtv\.hero\.widget-result{
  display:flex; align-items:baseline; justify-content:space-between;
  background:var(--dtv-surface-2);
  border:1px dashed var(--dtv-line);
  border-radius:12px;
  padding:14px 16px;
  margin-bottom:16px;
}
.dtv\.hero\.widget-result-label{ font-size:.8rem; color:var(--dtv-muted); }
.dtv\.hero\.widget-result-value{ font-family:var(--font-head); font-size:1.6rem; color:var(--dtv-accent); font-weight:700; font-variant-numeric:tabular-nums; }

/* variant: type-only hero (sme-tax-planning) */
.dtv\.hero--type{ text-align:left; border-bottom:1px solid var(--dtv-line); }
.dtv\.hero--type .dtv\.hero\.title{ max-width:20ch; }
.dtv\.hero--type .dtv\.hero\.intro{ max-width:64ch; }

/* variant: side image hero (business-advisory) */
.dtv\.hero--side .dtv\.hero\.row{
  display:grid;
  grid-template-columns:1fr;
  gap:36px;
  align-items:center;
}
@media (min-width:900px){
  .dtv\.hero--side .dtv\.hero\.row{ grid-template-columns:1.1fr .9fr; gap:56px; }
}
.dtv\.hero\.media{
  aspect-ratio:4/5;
  border-radius:var(--dtv-radius);
  overflow:hidden;
  border:1px solid var(--dtv-line);
  box-shadow:var(--dtv-shadow);
  background:var(--dtv-surface-2);
}
.dtv\.hero\.media img{
  width:100%; height:100%; object-fit:cover; display:block;
  filter:grayscale(1) contrast(1.15) sepia(.12) hue-rotate(180deg) brightness(.85);
}

/* variant: tinted band hero (retirement-wealth-planning) */
.dtv\.hero--tinted{ text-align:center; }
.dtv\.hero--tinted .dtv\.hero\.title,
.dtv\.hero--tinted .dtv\.hero\.intro{ margin-inline:auto; }
.dtv\.hero--tinted .dtv\.hero\.actions{ justify-content:center; }

/* variant: compact hero (contact) */
.dtv\.hero--compact{ padding-block:clamp(40px,6vw,64px); border-bottom:1px solid var(--dtv-line); }
.dtv\.hero--compact .dtv\.hero\.title{ max-width:22ch; margin-bottom:.3em; }
.dtv\.hero--compact .dtv\.hero\.intro{ margin-bottom:0; }

/* ============================================================
   STATS
   ============================================================ */
.dtv\.stats\.row{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:20px;
}
.dtv\.card\.stat{
  background:var(--dtv-surface);
  border:1px solid var(--dtv-line);
  border-radius:var(--dtv-radius);
  box-shadow:var(--dtv-shadow);
  padding:28px 24px;
  text-align:left;
}
.dtv\.stats\.value{
  font-family:var(--font-head);
  font-weight:700;
  font-size:clamp(2.2rem,4.4vw,3.1rem);
  color:var(--dtv-accent);
  font-variant-numeric:tabular-nums;
  line-height:1;
  margin-bottom:.35em;
}
.dtv\.stats\.label{ color:var(--dtv-muted); font-size:.92rem; }

/* inline stats within a sentence */
.dtv\.stats\.inline{
  font-family:var(--font-head);
  font-size:clamp(1.2rem,2.6vw,1.7rem);
  line-height:1.6;
  max-width:70ch;
}
.dtv\.stats\.inline-value{
  color:var(--dtv-accent);
  font-weight:700;
  font-variant-numeric:tabular-nums;
  padding:0 .06em;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.dtv\.testimonials\.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px;
}
.dtv\.card\.quote{
  background:var(--dtv-surface);
  border:1px solid var(--dtv-line);
  border-radius:var(--dtv-radius);
  box-shadow:var(--dtv-shadow);
  padding:32px 28px;
  position:relative;
}
.dtv\.card\.quote::before{
  content:"“";
  font-family:var(--font-head);
  font-size:4rem;
  color:var(--dtv-accent);
  opacity:.5;
  line-height:1;
  display:block;
  margin-bottom:.1em;
}
.dtv\.card\.quote-text{ font-size:1.02rem; color:var(--dtv-text); margin-bottom:20px; }
.dtv\.card\.quote-person{ display:flex; align-items:center; gap:12px; }
.dtv\.card\.quote-avatar{
  width:44px; height:44px; border-radius:50%;
  background:var(--dtv-surface-2);
  border:1px solid var(--dtv-line);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-head); font-weight:700; color:var(--dtv-accent);
  flex-shrink:0; overflow:hidden;
}
.dtv\.card\.quote-avatar img{ width:100%; height:100%; object-fit:cover; }
.dtv\.card\.quote-name{ font-weight:600; font-size:.92rem; }
.dtv\.card\.quote-role{ color:var(--dtv-muted); font-size:.8rem; }

/* single large testimonial with photo */
.dtv\.testimonials\.single{
  display:grid;
  grid-template-columns:1fr;
  gap:32px;
  align-items:center;
  background:var(--dtv-surface);
  border:1px solid var(--dtv-line);
  border-radius:var(--dtv-radius);
  box-shadow:var(--dtv-shadow);
  padding:clamp(28px,4vw,48px);
}
@media (min-width:800px){
  .dtv\.testimonials\.single{ grid-template-columns:.8fr 1.2fr; }
}
.dtv\.card\.quote-photo{
  aspect-ratio:1/1;
  border-radius:14px;
  overflow:hidden;
  border:1px solid var(--dtv-line);
}
.dtv\.card\.quote-photo img{
  width:100%; height:100%; object-fit:cover;
  filter:grayscale(1) contrast(1.1) sepia(.1) hue-rotate(180deg) brightness(.9);
}
.dtv\.testimonials\.single .dtv\.card\.quote-text{
  font-family:var(--font-head);
  font-size:clamp(1.15rem,2.2vw,1.5rem);
  line-height:1.5;
}

/* ============================================================
   BENEFITS — numbered
   ============================================================ */
.dtv\.benefits\.list{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:0;
  border-top:1px solid var(--dtv-line);
}
.dtv\.benefits\.item{
  display:flex;
  gap:16px;
  padding:26px 20px 26px 0;
  border-bottom:1px solid var(--dtv-line);
}
.dtv\.benefits\.num{
  font-family:var(--font-head);
  font-weight:700;
  font-size:1.6rem;
  color:var(--dtv-accent);
  flex-shrink:0;
}
.dtv\.benefits\.title{ font-size:1.05rem; margin-bottom:.3em; }
.dtv\.benefits\.body{ color:var(--dtv-muted); font-size:.94rem; margin:0; }

/* ============================================================
   PRICING
   ============================================================ */
.dtv\.pricing\.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:24px;
  align-items:stretch;
}
.dtv\.card\.price{
  background:var(--dtv-surface);
  border:1px solid var(--dtv-line);
  border-radius:var(--dtv-radius);
  box-shadow:var(--dtv-shadow);
  padding:32px 28px;
  display:flex; flex-direction:column;
  position:relative;
}
.dtv\.card\.price--featured{
  border-color:var(--dtv-accent);
  box-shadow:var(--dtv-shadow-lg);
  transform:translateY(-6px);
}
.dtv\.card\.price-badge{
  position:absolute; top:-13px; left:28px;
  background:var(--dtv-accent); color:#1a1305;
  font-size:.72rem; font-weight:700; letter-spacing:.05em;
  text-transform:uppercase;
  padding:5px 14px; border-radius:999px;
}
.dtv\.card\.price-head{ margin-bottom:18px; }
.dtv\.card\.price-name{ font-family:var(--font-head); font-size:1.2rem; margin-bottom:.2em; }
.dtv\.card\.price-desc{ color:var(--dtv-muted); font-size:.86rem; }
.dtv\.card\.price-value{
  font-family:var(--font-head); font-weight:700;
  font-size:2.6rem; color:var(--dtv-accent);
  margin-bottom:6px; font-variant-numeric:tabular-nums;
}
.dtv\.card\.price-value span{ font-size:.9rem; color:var(--dtv-muted); font-weight:400; font-family:var(--font-body); }
.dtv\.card\.price-list{ margin:20px 0 26px; display:flex; flex-direction:column; gap:10px; flex:1; }
.dtv\.card\.price-list li{ display:flex; gap:10px; font-size:.9rem; color:var(--dtv-text); }
.dtv\.card\.price-list li i{ color:var(--dtv-accent-2); margin-top:.2em; }

/* ============================================================
   FORMS — shared + two-column layouts
   ============================================================ */
.dtv\.form\.field{ margin-bottom:18px; display:flex; flex-direction:column; gap:6px; }
.dtv\.form\.label{ font-size:.82rem; color:var(--dtv-muted); text-transform:uppercase; letter-spacing:.05em; }
.dtv\.form\.input,
.dtv\.form\.textarea{
  background:var(--dtv-surface-2);
  border:1px solid var(--dtv-line);
  border-radius:12px;
  padding:.85em 1em;
  color:var(--dtv-text);
  width:100%;
}
.dtv\.form\.textarea{ min-height:140px; resize:vertical; }
.dtv\.form\.input:focus,.dtv\.form\.textarea:focus{ border-color:var(--dtv-accent-2); }
.dtv\.form\.field--error .dtv\.form\.input,
.dtv\.form\.field--error .dtv\.form\.textarea{ border-color:#c96a5a; }
.dtv\.form\.error-msg{ display:none; color:#e39784; font-size:.8rem; }
.dtv\.form\.field--error .dtv\.form\.error-msg{ display:block; }
.dtv\.form\.note{ color:var(--dtv-muted); font-size:.82rem; margin-top:10px; }

.dtv\.inline-form{
  display:grid;
  grid-template-columns:1fr;
  gap:36px;
}
@media (min-width:860px){
  .dtv\.inline-form{ grid-template-columns:.9fr 1.1fr; gap:56px; align-items:start; }
}
.dtv\.inline-form\.copy .dtv\.section\.title{ max-width:16ch; }
.dtv\.inline-form\.trust{ display:flex; flex-direction:column; gap:14px; margin-top:26px; }
.dtv\.inline-form\.trust-item{ display:flex; gap:12px; align-items:flex-start; color:var(--dtv-muted); font-size:.92rem; }
.dtv\.inline-form\.trust-item i{ color:var(--dtv-accent-2); margin-top:.2em; }
.dtv\.inline-form\.panel{
  background:var(--dtv-surface);
  border:1px solid var(--dtv-line);
  border-radius:var(--dtv-radius);
  box-shadow:var(--dtv-shadow);
  padding:clamp(24px,4vw,36px);
}

/* ============================================================
   PROCESS — vertical timeline
   ============================================================ */
.dtv\.process\.list{ position:relative; padding-left:0; }
.dtv\.process\.item{
  display:grid;
  grid-template-columns:56px 1fr;
  gap:20px;
  position:relative;
  padding-bottom:40px;
}
.dtv\.process\.item::before{
  content:"";
  position:absolute;
  left:27px; top:52px; bottom:0;
  width:1px;
  background:var(--dtv-line);
}
.dtv\.process\.item:last-child::before{ display:none; }
.dtv\.process\.num{
  width:54px; height:54px;
  border-radius:50%;
  border:1px solid var(--dtv-accent);
  color:var(--dtv-accent);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-head); font-weight:700; font-size:1.1rem;
  background:var(--dtv-bg);
  flex-shrink:0;
  z-index:1;
}
.dtv\.process\.title{ font-size:1.15rem; margin-bottom:.3em; }
.dtv\.process\.body{ color:var(--dtv-muted); margin:0; max-width:60ch; }

/* ============================================================
   CHECKLIST — two-column
   ============================================================ */
.dtv\.checklist\.grid{
  display:grid;
  grid-template-columns:1fr;
  gap:0 40px;
  border-top:1px solid var(--dtv-line);
}
@media (min-width:700px){
  .dtv\.checklist\.grid{ grid-template-columns:1fr 1fr; }
}
.dtv\.checklist\.item{
  display:flex; gap:12px;
  padding:18px 0;
  border-bottom:1px solid var(--dtv-line);
}
.dtv\.checklist\.icon{ color:var(--dtv-accent-2); flex-shrink:0; margin-top:.15em; }
.dtv\.checklist\.item p{ margin:0; }

/* ============================================================
   FAQ — accordion
   ============================================================ */
.dtv\.faq\.list{ border-top:1px solid var(--dtv-line); }
.dtv\.faq\.item{ border-bottom:1px solid var(--dtv-line); }
.dtv\.faq\.head{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  background:none;
  border:none;
  color:var(--dtv-text);
  text-align:left;
  padding:22px 4px;
  font-family:var(--font-head);
  font-size:1.05rem;
  font-weight:600;
}
.dtv\.faq\.icon{ color:var(--dtv-accent); flex-shrink:0; transition:transform .25s ease; }
.dtv\.faq\.item.is-open .dtv\.faq\.icon{ transform:rotate(45deg); }
.dtv\.faq\.body{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
}
.dtv\.faq\.item.is-open .dtv\.faq\.body{ max-height:600px; }
.dtv\.faq\.body-inner{ padding:0 4px 24px; color:var(--dtv-muted); max-width:70ch; }

/* ============================================================
   CTA STRIP — split / centered card / full band
   ============================================================ */
.dtv\.cta--split{
  display:grid;
  grid-template-columns:1fr;
  gap:32px;
  background:var(--dtv-surface);
  border:1px solid var(--dtv-line);
  border-radius:var(--dtv-radius);
  box-shadow:var(--dtv-shadow);
  padding:clamp(28px,4vw,44px);
}
@media (min-width:800px){
  .dtv\.cta--split{ grid-template-columns:1fr 1fr; align-items:center; }
}
.dtv\.cta\.copy .dtv\.section\.title{ margin-bottom:.3em; }
.dtv\.cta\.form{ display:flex; flex-direction:column; gap:14px; }
.dtv\.cta\.form-row{ display:flex; gap:10px; flex-wrap:wrap; }
.dtv\.cta\.form-row .dtv\.form\.input{ flex:1; min-width:160px; }

.dtv\.cta--card{ text-align:center; }
.dtv\.cta\.panel{
  max-width:680px;
  margin-inline:auto;
  background:var(--dtv-surface);
  border:1px solid var(--dtv-accent);
  border-radius:var(--dtv-radius);
  box-shadow:var(--dtv-shadow-lg);
  padding:clamp(32px,5vw,56px);
}
.dtv\.cta\.panel .dtv\.hero\.actions{ justify-content:center; margin-top:22px; }

.dtv\.cta--band{
  background:linear-gradient(120deg, rgba(201,161,90,.14), rgba(127,174,148,.1));
  border-top:1px solid var(--dtv-line);
  border-bottom:1px solid var(--dtv-line);
  text-align:center;
}
.dtv\.cta--band .dtv\.hero\.actions{ justify-content:center; margin-top:20px; }
.dtv\.cta--band .dtv\.section\.title{ max-width:24ch; margin-inline:auto; }

/* ============================================================
   WHY US — three arguments
   ============================================================ */
.dtv\.why\.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:32px;
}
.dtv\.why\.item{ border-top:2px solid var(--dtv-accent); padding-top:20px; }
.dtv\.why\.num{ font-family:var(--font-head); color:var(--dtv-accent-2); font-size:.9rem; letter-spacing:.1em; }
.dtv\.why\.title{ font-size:1.2rem; margin:.3em 0 .5em; }
.dtv\.why\.body{ color:var(--dtv-muted); margin:0; }

/* ============================================================
   CASE STUDY — three-act layout
   ============================================================ */
.dtv\.case\.acts{
  display:grid;
  grid-template-columns:1fr;
  gap:0;
}
@media (min-width:860px){
  .dtv\.case\.acts{ grid-template-columns:repeat(3,1fr); }
}
.dtv\.case\.act{
  padding:28px 26px;
  border-top:1px solid var(--dtv-line);
  border-left:1px solid transparent;
}
@media (min-width:860px){
  .dtv\.case\.act + .dtv\.case\.act{ border-left:1px solid var(--dtv-line); }
}
.dtv\.case\.act-label{
  font-family:var(--font-mono);
  font-size:.72rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--dtv-accent);
  display:block;
  margin-bottom:.9em;
}
.dtv\.case\.act-title{ font-size:1.1rem; margin-bottom:.5em; }
.dtv\.case\.act-body{ color:var(--dtv-muted); margin:0; }

/* ============================================================
   AUDIENCE — this-is-for-you / not-for-you
   ============================================================ */
.dtv\.audience\.grid{
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
}
@media (min-width:760px){
  .dtv\.audience\.grid{ grid-template-columns:1fr 1fr; }
}
.dtv\.audience\.col{
  border-radius:var(--dtv-radius);
  border:1px solid var(--dtv-line);
  padding:30px 28px;
}
.dtv\.audience\.col--yes{ background:rgba(127,174,148,.08); border-color:rgba(127,174,148,.35); }
.dtv\.audience\.col--no{ background:rgba(255,255,255,.02); }
.dtv\.audience\.heading{ font-size:1.1rem; margin-bottom:1em; }
.dtv\.audience\.list{ display:flex; flex-direction:column; gap:12px; }
.dtv\.audience\.list li{ display:flex; gap:10px; font-size:.94rem; }
.dtv\.audience\.col--yes .dtv\.audience\.list li i{ color:var(--dtv-accent-2); }
.dtv\.audience\.col--no .dtv\.audience\.list li i{ color:var(--dtv-muted); }

/* ============================================================
   SELF CHECK — checkbox statements + verdict
   ============================================================ */
.dtv\.check\.list{ display:flex; flex-direction:column; gap:0; border-top:1px solid var(--dtv-line); margin-bottom:28px; }
.dtv\.check\.item{
  display:flex; align-items:center; gap:14px;
  padding:16px 4px;
  border-bottom:1px solid var(--dtv-line);
}
.dtv\.check\.box{
  width:22px; height:22px; flex-shrink:0;
  border:1px solid var(--dtv-accent);
  border-radius:6px;
  display:inline-flex; align-items:center; justify-content:center;
  color:var(--dtv-accent);
}
.dtv\.check\.item label{ font-size:.98rem; cursor:pointer; }
.dtv\.check\.verdict{
  background:var(--dtv-surface);
  border:1px solid var(--dtv-accent);
  border-radius:var(--dtv-radius-sm);
  padding:22px 24px;
  display:flex; align-items:center; gap:16px;
}
.dtv\.check\.verdict i{ color:var(--dtv-accent); font-size:1.6rem; }
.dtv\.check\.verdict-text{ margin:0; color:var(--dtv-muted); font-size:.92rem; }
.dtv\.check\.verdict-text strong{ color:var(--dtv-text); }

/* ============================================================
   METHODOLOGY — numbered phases with rule between
   ============================================================ */
.dtv\.methodology\.list{ }
.dtv\.methodology\.phase{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  padding-block:32px;
  border-bottom:1px solid var(--dtv-line);
}
.dtv\.methodology\.phase:first-child{ padding-top:0; }
.dtv\.methodology\.phase:last-child{ border-bottom:none; }
@media (min-width:760px){
  .dtv\.methodology\.phase{ grid-template-columns:120px 1fr; align-items:start; }
}
.dtv\.methodology\.num{
  font-family:var(--font-head);
  font-weight:700;
  font-size:clamp(2.4rem,5vw,3.4rem);
  color:var(--dtv-accent);
  line-height:1;
}
.dtv\.methodology\.title{ font-size:1.2rem; margin-bottom:.4em; }
.dtv\.methodology\.body{ color:var(--dtv-muted); margin:0; max-width:64ch; }

/* ============================================================
   GRID HELPERS
   ============================================================ */
.dtv\.grid--3{ display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:24px; }
.dtv\.grid--2{ display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:32px; }

/* ============================================================
   FOOTER — big multi-column, tabular legal block
   ============================================================ */
.dtv\.footer{
  background:#0a1220;
  border-top:1px solid var(--dtv-line);
  padding-top:clamp(48px,7vw,80px);
}
.dtv\.footer\.grid{
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
  padding-bottom:48px;
}
@media (min-width:700px){
  .dtv\.footer\.grid{ grid-template-columns:1fr 1fr; }
}
@media (min-width:1024px){
  .dtv\.footer\.grid{ grid-template-columns:1.3fr .8fr 1fr 1.1fr; }
}
.dtv\.footer\.brand{ margin-bottom:16px; }
.dtv\.footer\.blurb{ color:var(--dtv-muted); font-size:.92rem; max-width:34ch; margin-bottom:20px; }
.dtv\.footer\.socials{ display:flex; gap:10px; }
.dtv\.footer\.social{
  width:38px; height:38px; border-radius:50%;
  border:1px solid var(--dtv-line);
  display:flex; align-items:center; justify-content:center;
  color:var(--dtv-muted); text-decoration:none;
}
.dtv\.footer\.social:hover{ color:var(--dtv-accent); border-color:var(--dtv-accent); }

.dtv\.footer\.heading{
  font-family:var(--font-mono);
  font-size:.76rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--dtv-accent-2);
  margin-bottom:18px;
}
.dtv\.footer\.nav{ display:flex; flex-direction:column; gap:10px; }
.dtv\.footer\.nav a{ color:var(--dtv-muted); text-decoration:none; font-size:.92rem; }
.dtv\.footer\.nav a:hover{ color:var(--dtv-accent); }

.dtv\.footer\.address{ font-style:normal; color:var(--dtv-muted); font-size:.92rem; margin-bottom:10px; line-height:1.7; }
.dtv\.footer\.line{ margin:0 0 6px; font-size:.92rem; }
.dtv\.footer\.line a{ color:var(--dtv-muted); text-decoration:none; }
.dtv\.footer\.line a:hover{ color:var(--dtv-accent); }

.dtv\.footer\.legal{ display:flex; flex-direction:column; gap:0; font-family:var(--font-mono); font-size:.82rem; }
.dtv\.footer\.legal-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:9px 0;
  border-bottom:1px solid var(--dtv-line-soft);
  font-variant-numeric:tabular-nums;
}
.dtv\.footer\.legal-row dt{ color:var(--dtv-muted); }
.dtv\.footer\.legal-row dd{ margin:0; color:var(--dtv-text); text-align:right; }

.dtv\.footer\.bottom{ border-top:1px solid var(--dtv-line); }
.dtv\.footer\.bottom-row{
  display:flex; flex-wrap:wrap; gap:12px;
  align-items:center; justify-content:space-between;
  padding-block:22px;
  font-size:.82rem;
  color:var(--dtv-muted);
}
.dtv\.footer\.legal-links{ display:flex; gap:18px; }
.dtv\.footer\.legal-links a{ color:var(--dtv-muted); text-decoration:none; }
.dtv\.footer\.legal-links a:hover{ color:var(--dtv-accent); }

/* ============================================================
   FLOATING QUICK ACTIONS — scroll-top only, bottom-right
   ============================================================ */
.dtv\.fab{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:50;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.dtv\.fab\.top{
  width:48px; height:48px;
  border-radius:50%;
  background:var(--dtv-accent);
  color:#1a1305;
  border:none;
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--dtv-shadow-lg);
  opacity:0; visibility:hidden; transform:translateY(10px);
  transition:opacity .25s ease, transform .25s ease, background .2s ease;
}
.dtv\.fab\.top.is-visible{ opacity:1; visibility:visible; transform:translateY(0); }
.dtv\.fab\.top:hover{ background:#dab674; }

/* ============================================================
   SWIPER — generic slider component
   ============================================================ */
.swipe-deck-ezf{ padding-bottom:44px; }
.swipe-deck-ezf .swiper-slide{ height:auto; }
.swiper-pagination-bullet{ background:var(--dtv-line); opacity:1; width:8px; height:8px; }
.swiper-pagination-bullet-active{ background:var(--dtv-accent); }
.swiper-button-prev,.swiper-button-next{
  color:var(--dtv-accent);
  width:42px; height:42px;
  background:var(--dtv-surface);
  border:1px solid var(--dtv-line);
  border-radius:50%;
  box-shadow:var(--dtv-shadow);
}
.swiper-button-prev::after,.swiper-button-next::after{ font-size:.9rem; }

/* ============================================================
   MODAL — .site-modal fixed overlay + dialog, scroll-safe
   ============================================================ */
.site-modal{
  position:fixed; inset:0;
  z-index:999;
  display:flex; align-items:center; justify-content:center;
  padding:24px;
  opacity:0; visibility:hidden;
  transition:opacity .25s ease, visibility .25s ease;
}
.site-modal.is-open{ opacity:1; visibility:visible; }
.dtv\.modal\.backdrop{ position:absolute; inset:0; background:rgba(6,11,18,.72); backdrop-filter:blur(2px); }
.dtv\.modal\.dialog{
  position:relative; z-index:1;
  width:100%; max-width:540px;
  background:var(--dtv-surface);
  border:1px solid var(--dtv-line);
  border-radius:var(--dtv-radius);
  box-shadow:var(--dtv-shadow-lg);
  padding:clamp(24px,4vw,40px);
  transform:translateY(14px);
  transition:transform .25s ease;
  max-height:88vh;
  overflow-y:auto;
}
.site-modal.is-open .dtv\.modal\.dialog{ transform:translateY(0); }
.dtv\.modal\.close{
  position:absolute; top:16px; right:16px;
  width:36px; height:36px;
  border-radius:50%;
  border:1px solid var(--dtv-line);
  background:none; color:var(--dtv-text);
}

/* ============================================================
   MISC / LEGAL PAGE TYPOGRAPHY
   ============================================================ */
.dtv\.legal-copy h2{ margin-top:1.6em; font-size:1.4rem; }
.dtv\.legal-copy p{ color:var(--dtv-muted); }
.dtv\.legal-copy a{ color:var(--dtv-accent); }

/* ============================================================
   ANIMATION (subtle, low)
   ============================================================ */
@media (prefers-reduced-motion:reduce){
  *{ animation-duration:.001ms !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

/* ============================================================
   RESPONSIVE FIXUPS
   ============================================================ */
@media (max-width:480px){
  .dtv\.hero\.widget-row{ grid-template-columns:1fr; }
  .dtv\.section\.head{ flex-direction:column; align-items:flex-start; gap:8px; }
}


/* --- cookie consent (per-site) --- */
.privacy-note-4nl-overlay{position:fixed;inset:0;opacity:0;visibility:hidden;transition:.25s;z-index:9998;}
.privacy-note-4nl-overlay.is-open{opacity:1;visibility:visible;}
.privacy-note-4nl-panel{position:fixed;background:var(--site-surface,#fff);color:var(--site-text,#1a1a1a);
  box-shadow:0 20px 60px rgba(0,0,0,.28);padding:24px;opacity:0;visibility:hidden;transition:.25s;z-index:9999;}
.privacy-note-4nl-panel.is-open{opacity:1;visibility:visible;}
.privacy-note-4nl-panel h3{margin:0 0 8px;font-size:1.2rem;}
.privacy-note-4nl-panel>p{margin:0 0 16px;color:var(--site-muted,#666);font-size:.95rem;}
.privacy-note-4nl-cat{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:12px 0;border-top:1px solid rgba(128,128,128,.2);}
.privacy-note-4nl-cat h4{margin:0 0 2px;font-size:.98rem;}
.privacy-note-4nl-cat p{margin:0;color:var(--site-muted,#777);font-size:.85rem;}
.privacy-note-4nl-switch{position:relative;flex:0 0 auto;width:44px;height:24px;}
.privacy-note-4nl-switch input{opacity:0;width:0;height:0;position:absolute;}
.privacy-note-4nl-switch span{position:absolute;inset:0;background:#c9c9c9;border-radius:999px;transition:.2s;cursor:pointer;}
.privacy-note-4nl-switch span::before{content:"";position:absolute;width:18px;height:18px;left:3px;top:3px;background:#fff;border-radius:50%;transition:.2s;}
.privacy-note-4nl-switch input:checked+span{background:var(--site-accent,#2b7);}
.privacy-note-4nl-switch input:checked+span::before{transform:translateX(20px);}
.privacy-note-4nl-switch input:disabled+span{opacity:.6;cursor:not-allowed;}
.privacy-note-4nl-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px;}
.privacy-note-4nl-actions button{flex:1;min-width:140px;padding:11px 16px;border:none;border-radius:10px;font:inherit;font-weight:600;cursor:pointer;}
.privacy-note-4nl-actions #privacy-note-4nl-all{background:var(--site-accent,#2b7);color:#fff;}
.privacy-note-4nl-actions #privacy-note-4nl-save{background:transparent;color:var(--site-text,#222);border:1px solid rgba(128,128,128,.4);}
.privacy-note-4nl-links{display:flex;gap:16px;margin-top:14px;font-size:.85rem;}
.privacy-note-4nl-links a{color:var(--site-accent,#2b7);text-decoration:underline;}
.privacy-note-4nl-trigger{position:fixed;left:18px;bottom:18px;width:44px;height:44px;border-radius:50%;border:none;cursor:pointer;
  background:var(--site-surface,#fff);color:var(--site-accent,#2b7);box-shadow:0 6px 18px rgba(0,0,0,.2);z-index:9997;font-size:1.1rem;}

.privacy-note-4nl-overlay{background:rgba(0,0,0,.5);}
.privacy-note-4nl-panel{left:50%;bottom:24px;transform:translate(-50%,20px);width:min(560px,calc(100% - 32px));border-radius:16px;}
.privacy-note-4nl-panel.is-open{transform:translate(-50%,0);}
@media(max-width:520px){.privacy-note-4nl-actions button{min-width:100%;}}
#fab-stack-gr3{left:auto !important;right:18px !important;}
@media(max-width:520px){#fab-stack-gr3{right:12px !important;}}


/* --- safety net (deterministic) --- */
*,*::before,*::after{box-sizing:border-box;}
html,body{overflow-x:hidden;overflow-x:clip;max-width:100%;}
img,svg,video,iframe,canvas{max-width:100%;}
table{max-width:100%;}
/* simpleParallax оборачивает <img> в свой .simpleParallax — заставляем обёртку
   тянуться на всю высоту родителя, а фото внутри — cover. Проценты безопасны:
   при родителе без заданной высоты height:100% откатывается к auto (без коллапса). */
.simpleParallax{display:block;width:100%;height:100%;}
.simpleParallax img{width:100%;height:100%;object-fit:cover;}
/* Браузерный дефолт для <blockquote> и <figure> — margin: 1em 40px. Модель берёт
   эти семантические теги для отзывов и карточек с подписью, но сбросить поля
   забывает: внутри карточки в 267px текст сжимался до 131px (по 40px с каждой
   стороны) и переносился по одному слову, а между карточками зияли пустоты.
   Сбрасываем только горизонтальные поля — вертикальные обычно задуманы. */
blockquote, figure { margin-left: 0; margin-right: 0; }
/* Вложенные фигуры внутри сеток тоже не должны добавлять отступ сбоку. */
figure > blockquote, figure > figcaption { margin-left: 0; margin-right: 0; }
/* Если AOS не поднялся (CDN недоступен, блокировщик) — main.js вешает .no-aos.
   Без этого элементы с data-aos остались бы с opacity:0 из aos.css, то есть
   половина страницы была бы невидимой. */
html.no-aos [data-aos]{opacity:1 !important;transform:none !important;}
/* Пользователи с prefers-reduced-motion получают контент сразу, без анимаций. */
@media(prefers-reduced-motion:reduce){
  [data-aos]{opacity:1 !important;transform:none !important;transition:none !important;}
}
