/* =========================================================
   ld-vizitka.css — Bureau standalone mini-site styles
   Premium SaaS design — Linear / Vercel / Clerk aesthetics.
   ========================================================= */

/* --- CSS Custom Properties -------------------------------- */
:root {
  --viz-accent:    #4f6ef7;
  --viz-accent-h:  #3b5ce0;
  --viz-purple:    #7c3aed;
  --viz-gradient:  linear-gradient(135deg, #4f6ef7, #7c3aed);
  --viz-dark:      #060d1f;
  --viz-mid:       #0d1b3e;
  --viz-text:      #0f172a;
  --viz-muted:     #64748b;
  --viz-border:    #e8eaf0;
  --viz-bg-alt:    #f8fafc;
  --viz-radius:    14px;
  --viz-shadow:    0 4px 24px rgba(0,0,0,.08);
  --viz-shadow-lg: 0 12px 48px rgba(0,0,0,.14);
  --viz-font:      'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --- Scroll animations ------------------------------------ */
@keyframes viz-fade-up {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
.ld-viz-animate {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s cubic-bezier(.22,.61,.36,1),
              transform .55s cubic-bezier(.22,.61,.36,1);
}
.ld-viz-animate--d1 { transition-delay:.08s; }
.ld-viz-animate--d2 { transition-delay:.16s; }
.ld-viz-animate--d3 { transition-delay:.24s; }
.ld-viz-animate--d4 { transition-delay:.32s; }
.ld-viz-animate--d5 { transition-delay:.40s; }
.ld-viz-animate--d6 { transition-delay:.48s; }
.ld-viz-animate.is-visible { opacity:1; transform:translateY(0); }

/* --- Base ------------------------------------------------- */
.ld-viz-body {
  margin:0;
  font-family: var(--viz-font);
  color: var(--viz-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
.ld-viz-body * { box-sizing: border-box; }

/* --- Container -------------------------------------------- */
.ld-viz-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* --- Nav logo -------------------------------------------- */
.ld-viz-nav__logo-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 5px 10px;
  backdrop-filter: blur(4px);
}
.ld-viz-nav__logo {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

/* --- Nav -------------------------------------------------- */
.ld-viz-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 72px;
  gap: 20px;
  transition: background .3s, backdrop-filter .3s, border-color .3s, box-shadow .3s;
  border-bottom: 1px solid transparent;
}
.ld-viz-nav.is-scrolled {
  background: rgba(6,13,31,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(255,255,255,.07);
  box-shadow: 0 4px 32px rgba(0,0,0,.3);
}
.ld-viz-nav__brand {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  text-decoration: none;
  letter-spacing: -.01em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.ld-viz-nav__brand:hover { color: #fff; }
/* Nav menu links */
.ld-viz-nav__menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.ld-viz-nav__link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 8px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.ld-viz-nav__link:hover { color: #fff; background: rgba(255,255,255,.08); }
/* Nav right side */
.ld-viz-nav__right { display:flex; align-items:center; gap:8px; flex-shrink: 0; }
.ld-viz-nav__phone {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  white-space: nowrap;
}
.ld-viz-nav__phone:hover { color: #fff; }
/* Nav icon buttons (Phone / WhatsApp / Telegram) */
.ld-viz-nav__icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
  transition: background .15s, transform .12s;
}
.ld-viz-nav__icon-btn--phone { background: rgba(255,255,255,.12); }
.ld-viz-nav__icon-btn--phone:hover { background: rgba(255,255,255,.22); transform: translateY(-1px); }
.ld-viz-nav__icon-btn--wa { background: rgba(37,211,102,.2); }
.ld-viz-nav__icon-btn--wa:hover { background: rgba(37,211,102,.35); transform: translateY(-1px); }
.ld-viz-nav__icon-btn--tg { background: rgba(0,136,204,.2); }
.ld-viz-nav__icon-btn--tg:hover { background: rgba(0,136,204,.35); transform: translateY(-1px); }
.ld-viz-nav__cta {
  display: inline-flex;
  align-items: center;
  background: var(--viz-gradient);
  color: #fff;
  padding: 11px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(79,110,247,.4);
  transition: opacity .15s, transform .15s, box-shadow .15s;
}
.ld-viz-nav__cta:hover {
  opacity: .9;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(79,110,247,.5);
}

/* --- Hero glow orbs --------------------------------------- */
.ld-viz-hero__glow-1 {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,110,247,.22) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  pointer-events: none;
  z-index: 0;
}
.ld-viz-hero__glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.18) 0%, transparent 70%);
  bottom: -50px;
  left: 50px;
  pointer-events: none;
  z-index: 0;
}

/* --- Hero badge ------------------------------------------- */
.ld-viz-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(79,110,247,.15);
  border: 1px solid rgba(79,110,247,.3);
  color: #a5b4fc;
  margin-bottom: 18px;
}

/* --- Primary / ghost buttons ------------------------------ */
.ld-viz-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--viz-gradient);
  color: #fff;
  padding: 14px 36px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(79,110,247,.45);
  transition: opacity .18s, transform .18s, box-shadow .18s;
}
.ld-viz-btn-primary:hover {
  opacity: .9;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(79,110,247,.55);
}
.ld-viz-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.14);
  cursor: pointer;
  transition: background .18s, color .18s, transform .18s;
}
.ld-viz-btn-ghost:hover {
  background: rgba(255,255,255,.14);
  color: #fff;
  transform: translateY(-2px);
}

/* --- Hero (centered) ------------------------------------- */
.ld-viz-hero {
  min-height: 100vh;
  padding: 120px 0 80px;
  text-align: center;
  color: #fff;
  background: var(--viz-dark);
  position: relative;
  overflow: hidden;
}
/* Mesh grid overlay */
.ld-viz-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,   rgba(255,255,255,.03) 0px, rgba(255,255,255,.03) 1px, transparent 1px, transparent 72px),
    repeating-linear-gradient(90deg,  rgba(255,255,255,.03) 0px, rgba(255,255,255,.03) 1px, transparent 1px, transparent 72px);
  pointer-events: none;
  z-index: 0;
}
.ld-viz-hero .ld-viz-container { position: relative; z-index: 1; }
.ld-viz-hero__title {
  font-size: clamp(28px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -.04em;
  position: relative;
}
.ld-viz-hero__sub {
  font-size: clamp(15px, 2vw, 19px);
  opacity: .75;
  margin: 0 auto 40px;
  max-width: 560px;
  line-height: 1.7;
  position: relative;
}
.ld-viz-hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.ld-viz-hero__cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: var(--viz-gradient);
  color: #fff;
  padding: 16px 44px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 40px rgba(79,110,247,.5);
  transition: transform .18s, box-shadow .18s, opacity .18s;
}
.ld-viz-hero__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 56px rgba(79,110,247,.6);
  opacity: .92;
}
.ld-viz-hero__cta-label { font-size: 17px; }
.ld-viz-hero__cta-phone { font-size: 12px; font-weight: 500; opacity: .65; }

/* --- Hero SPLIT layout (with calculator) ------------------ */
.ld-viz-hero--split {
  text-align: left;
  padding: 100px 0 72px;
}
.ld-viz-hero--split::before {
  /* inherit mesh grid from parent — keep it */
}
.ld-viz-hero--split .ld-viz-container {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ld-viz-hero__left {}
.ld-viz-hero--split .ld-viz-hero__title {
  font-size: clamp(26px, 4vw, 52px);
}
.ld-viz-hero--split .ld-viz-hero__sub {
  margin-left: 0;
  margin-right: 0;
}
.ld-viz-hero--split .ld-viz-hero__actions { justify-content: flex-start; }

/* --- Calculator card (glass) ----------------------------- */
.ld-viz-calc-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 64px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 28px;
  color: #fff;
}
.ld-viz-calc-card__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #fff;
  letter-spacing: -.01em;
}
.ld-viz-calc-card__sub {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin: 0 0 18px;
  line-height: 1.5;
}

/* Dropzone */
.ld-viz-dropzone {
  border: 2px dashed rgba(255,255,255,.2);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: border-color .2s, background .2s;
  margin-bottom: 14px;
  background: rgba(255,255,255,.04);
}
.ld-viz-dropzone:hover, .ld-viz-dropzone.is-over {
  border-color: var(--viz-accent);
  background: rgba(79,110,247,.08);
}
.ld-viz-dropzone input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.ld-viz-dropzone__default {}
.ld-viz-dropzone__icon { font-size: 28px; margin-bottom: 6px; line-height: 1; }
.ld-viz-dropzone__text { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.8); margin: 0 0 3px; }
.ld-viz-dropzone__hint { font-size: 11px; color: rgba(255,255,255,.35); margin: 0; line-height: 1.4; }
.ld-viz-dropzone__file {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  flex-wrap: wrap;
}
.ld-viz-dropzone__file.is-shown { display: flex; }
.ld-viz-dropzone__file-name { font-weight: 600; word-break: break-all; }
.ld-viz-dropzone__file-size { color: rgba(255,255,255,.45); }
.ld-viz-dropzone__file-clear {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: rgba(255,255,255,.35);
  padding: 0 2px;
  line-height: 1;
  margin-left: auto;
}
.ld-viz-dropzone__file-clear:hover { color: #f87171; }
.ld-viz-dropzone__file-types { font-size: 10px; color: rgba(255,255,255,.3); margin: 4px 0 0; }

/* Price estimate */
.ld-viz-calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.ld-viz-calc-field { display: flex; flex-direction: column; gap: 4px; }
.ld-viz-calc-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.ld-viz-calc-input {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--viz-font);
  color: #fff;
  background: rgba(255,255,255,.08);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.ld-viz-calc-input::placeholder { color: rgba(255,255,255,.35); }
.ld-viz-calc-input:focus {
  border-color: var(--viz-accent);
  box-shadow: 0 0 0 3px rgba(79,110,247,.25);
}
.ld-viz-calc-input option { background: #1a2340; color: #fff; }
.ld-viz-calc-price-box {
  display: none;
  background: linear-gradient(135deg, rgba(79,110,247,.15), rgba(124,58,237,.08));
  border: 1px solid rgba(79,110,247,.3);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 12px;
  align-items: center;
  justify-content: space-between;
}
.ld-viz-calc-price-box.is-shown { display: flex; }
.ld-viz-calc-price-label { font-size: 12px; color: rgba(255,255,255,.5); font-weight: 600; }
.ld-viz-calc-price-value {
  font-size: 16px;
  font-weight: 700;
  background: var(--viz-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero form inputs (dark themed) */
.ld-viz-hero-form { display: flex; flex-direction: column; gap: 0; }
.ld-viz-hero-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.ld-viz-hero-form__group { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
.ld-viz-hero-form__group--full { grid-column: 1/-1; }
.ld-viz-hero-form__label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.ld-viz-hero-form__input,
.ld-viz-hero-form__select {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.14) !important;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--viz-font);
  color: #fff !important;
  background: rgba(14,26,53,.75) !important;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.ld-viz-hero-form__input::placeholder { color: rgba(255,255,255,.35); }
.ld-viz-hero-form__select::placeholder { color: rgba(255,255,255,.35); }
.ld-viz-hero-form__input:focus,
.ld-viz-hero-form__select:focus {
  border-color: var(--viz-accent);
  box-shadow: 0 0 0 3px rgba(79,110,247,.25);
}
/* Fix browser autofill overriding dark background */
.ld-viz-hero-form__input:-webkit-autofill,
.ld-viz-hero-form__input:-webkit-autofill:hover,
.ld-viz-hero-form__input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px rgba(14,26,53,.98) inset !important;
  -webkit-text-fill-color: #fff !important;
  border-color: rgba(255,255,255,.2) !important;
}
.ld-viz-calc-input:-webkit-autofill,
.ld-viz-calc-input:-webkit-autofill:hover,
.ld-viz-calc-input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px rgba(14,26,53,.98) inset !important;
  -webkit-text-fill-color: #fff !important;
}
/* Hero social action buttons (WhatsApp / Telegram in hero) */
.ld-viz-btn-hero-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  transition: background .18s, transform .18s, box-shadow .18s;
}
.ld-viz-btn-hero-social--wa {
  background: rgba(37,211,102,.18);
  border-color: rgba(37,211,102,.3);
}
.ld-viz-btn-hero-social--wa:hover {
  background: rgba(37,211,102,.28);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.25);
}
.ld-viz-btn-hero-social--tg {
  background: rgba(0,136,204,.18);
  border-color: rgba(0,136,204,.3);
}
.ld-viz-btn-hero-social--tg:hover {
  background: rgba(0,136,204,.28);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,136,204,.25);
}
.ld-viz-btn-order {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  transition: background .18s, color .18s, transform .18s;
}
.ld-viz-btn-order:hover {
  background: rgba(255,255,255,.14);
  color: #fff;
  transform: translateY(-2px);
}
.ld-viz-hero-form__submit {
  width: 100%;
  padding: 13px;
  background: var(--viz-gradient);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--viz-font);
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(79,110,247,.45);
  transition: opacity .15s, transform .15s, box-shadow .15s;
  margin-top: 2px;
}
.ld-viz-hero-form__submit:hover {
  opacity: .9;
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(79,110,247,.55);
}
.ld-viz-hero-form__submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.ld-viz-hero-form__notice {
  display: none;
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
}
.ld-viz-hero-form__notice--ok  { background: rgba(22,163,74,.2); color: #4ade80; border: 1px solid rgba(74,222,128,.2); }
.ld-viz-hero-form__notice--err { background: rgba(239,68,68,.15); color: #fca5a5; border: 1px solid rgba(252,165,165,.2); }

/* --- Section base ---------------------------------------- */
.ld-viz-section { padding: 88px 0; }
.ld-viz-section--alt { background: var(--viz-bg-alt); }
.ld-viz-section__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--viz-accent);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ld-viz-section__eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--viz-gradient);
  border-radius: 2px;
}
.ld-viz-section__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin: 0 0 44px;
  color: var(--viz-dark);
  letter-spacing: -1px;
  line-height: 1.15;
}

/* --- Services grid --------------------------------------- */
.ld-viz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ld-viz-card {
  background: #fff;
  border: 1px solid #e8eaf0;
  border-radius: var(--viz-radius);
  padding: 36px 32px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.ld-viz-card:hover {
  box-shadow: 0 8px 40px rgba(79,110,247,.15);
  transform: translateY(-4px);
  border-color: transparent;
}
.ld-viz-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(79,110,247,.1), rgba(124,58,237,.1));
  color: var(--viz-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.ld-viz-card__icon svg { width: 32px; height: 32px; }
.ld-viz-card__title { font-size: 17px; font-weight: 700; margin: 0 0 8px; color: var(--viz-dark); line-height: 1.4; }
.ld-viz-card__text  { font-size: 13px; color: var(--viz-muted); margin: 0; line-height: 1.65; }

/* --- Features (USP) -------------------------------------- */
.ld-viz-features__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
}
.ld-viz-features__content { min-width: 0; }
.ld-viz-features__illus {
  flex-shrink: 0;
  filter: drop-shadow(0 24px 48px rgba(79,110,247,.15));
}
.ld-viz-features__illus svg { max-width: 100%; height: auto; display: block; }
.ld-viz-features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.ld-viz-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: #fff;
  border: 1px solid #e8eaf0;
  border-radius: var(--viz-radius);
  transition: box-shadow .25s, transform .25s;
}
.ld-viz-feature:hover { box-shadow: 0 8px 40px rgba(79,110,247,.12); transform: translateY(-3px); }
.ld-viz-feature__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(79,110,247,.1), rgba(124,58,237,.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
}
.ld-viz-feature__title { font-size: 15px; font-weight: 700; margin: 0 0 5px; color: var(--viz-dark); }
.ld-viz-feature__text  { font-size: 13px; color: var(--viz-muted); margin: 0; line-height: 1.65; }

/* --- Stats ----------------------------------------------- */
.ld-viz-stats {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: #070e1f;
}
.ld-viz-stats__glow-l,
.ld-viz-stats__glow-r {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: .18;
}
.ld-viz-stats__glow-l {
  top: -120px; left: -100px;
  background: radial-gradient(circle, #4f6ef7, transparent 70%);
}
.ld-viz-stats__glow-r {
  bottom: -120px; right: -100px;
  background: radial-gradient(circle, #a855f7, transparent 70%);
}
.ld-viz-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,   rgba(255,255,255,.02) 0px, rgba(255,255,255,.02) 1px, transparent 1px, transparent 64px),
    repeating-linear-gradient(90deg,  rgba(255,255,255,.02) 0px, rgba(255,255,255,.02) 1px, transparent 1px, transparent 64px);
  pointer-events: none;
}
.ld-viz-stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  position: relative;
  z-index: 1;
  gap: 0;
}
.ld-viz-stat {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background .25s;
  position: relative;
}
.ld-viz-stat:last-child { border-right: none; }
.ld-viz-stat:hover {
  background: rgba(79,110,247,.06);
}
.ld-viz-stat__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(79,110,247,.15);
  color: #6b8aff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background .25s, transform .25s;
}
.ld-viz-stat:hover .ld-viz-stat__icon {
  background: rgba(79,110,247,.28);
  transform: translateY(-2px);
}
.ld-viz-stat__number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 10px;
  line-height: 1;
}
.ld-viz-stat__pre {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  background: var(--viz-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.02em;
}
.ld-viz-stat__val {
  font-size: clamp(38px, 5.5vw, 58px);
  font-weight: 800;
  letter-spacing: -.04em;
  background: var(--viz-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-variant-numeric: tabular-nums;
}
.ld-viz-stat__suf {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  background: var(--viz-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 1px;
}
.ld-viz-stat__label {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* --- Reviews --------------------------------------------- */
.ld-viz-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
}
.ld-viz-review {
  background: #fff;
  border: 1px solid #e8eaf0;
  border-radius: var(--viz-radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.ld-viz-review:hover { box-shadow: 0 8px 40px rgba(79,110,247,.12); transform: translateY(-3px); }
/* Large decorative quote mark */
.ld-viz-review::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 80px;
  line-height: 1;
  color: rgba(79,110,247,.1);
  font-family: Georgia, serif;
  font-weight: 700;
  pointer-events: none;
}
.ld-viz-review__stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; }
.ld-viz-review__text {
  font-size: 14px;
  color: #334155;
  line-height: 1.75;
  margin: 0;
  flex: 1;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.ld-viz-review__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #e8eaf0;
  padding-top: 14px;
}
.ld-viz-review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--viz-gradient);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(79,110,247,.35);
}
.ld-viz-review__name { font-size: 14px; font-weight: 600; color: var(--viz-dark); }
.ld-viz-review__date { font-size: 12px; color: var(--viz-muted); }

/* --- Reviews — empty state -------------------------------- */
.ld-viz-reviews__empty {
  text-align: center;
  padding: 56px 24px;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  border-radius: 18px;
  margin-bottom: 40px;
  border: 1px solid #e0e7ff;
}
.ld-viz-reviews__empty-icon { font-size: 48px; margin-bottom: 16px; }
.ld-viz-reviews__empty-title { font-size: 20px; font-weight: 700; color: var(--viz-dark); margin: 0 0 8px; }
.ld-viz-reviews__empty-sub { font-size: 15px; color: var(--viz-muted); margin: 0; }

/* --- Reviews — submission form ---------------------------- */
.ld-viz-review-form {
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  border: 1px solid #e0e7ff;
  border-radius: 18px;
  padding: 36px 32px;
  margin-top: 48px;
  max-width: 560px;
}
.ld-viz-review-form__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--viz-dark);
  margin: 0 0 20px;
  letter-spacing: -.02em;
}
.ld-viz-star-picker {
  display: flex;
  flex-direction: row-reverse;
  gap: 4px;
  width: fit-content;
  margin-bottom: 20px;
}
.ld-viz-star-picker__radio { display: none; }
.ld-viz-star-picker__label {
  font-size: 36px;
  cursor: pointer;
  color: #d1d5db;
  transition: color .15s, transform .15s;
  line-height: 1;
}
.ld-viz-star-picker__label:hover { transform: scale(1.15); }
.ld-viz-star-picker__radio:checked ~ .ld-viz-star-picker__label,
.ld-viz-star-picker__label:hover,
.ld-viz-star-picker__label:hover ~ .ld-viz-star-picker__label { color: #f59e0b; }
.ld-viz-review-form__fields { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.ld-viz-review-form__input,
.ld-viz-review-form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: var(--viz-dark);
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
  resize: vertical;
}
.ld-viz-review-form__input:focus,
.ld-viz-review-form__textarea:focus {
  outline: none;
  border-color: var(--viz-accent);
  box-shadow: 0 0 0 3px rgba(79,110,247,.12);
}
.ld-viz-review-form__submit {
  background: var(--viz-gradient);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(79,110,247,.35);
  transition: opacity .2s, transform .2s, box-shadow .2s;
}
.ld-viz-review-form__submit:hover {
  opacity: .9;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(79,110,247,.45);
}
.ld-viz-review-form__submit:disabled { opacity: .6; cursor: default; transform: none; }

/* --- About ----------------------------------------------- */
.ld-viz-about__body { font-size: 16px; line-height: 1.8; color: #334155; }
.ld-viz-about__body p { margin: 0 0 18px; }
.ld-viz-about__body--photo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}
.ld-viz-about__gallery-col { display: flex; flex-direction: column; gap: 12px; }
.ld-viz-about__photo {
  width: 100%;
  border-radius: 18px;
  object-fit: contain;
  background: #f8faff;
  max-height: 400px;
  box-shadow: var(--viz-shadow-lg);
}
.ld-viz-about__photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ld-viz-about__photo-grid img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: #f8faff;
  border-radius: 12px;
  box-shadow: var(--viz-shadow);
  transition: transform .25s;
}
.ld-viz-about__photo-grid img:hover { transform: scale(1.02); }
.ld-viz-about__photo-grid img:first-child:nth-last-child(3),
.ld-viz-about__photo-grid img:first-child:nth-last-child(3) ~ img:nth-child(2) {
  grid-column: span 1;
}
.ld-viz-about__photo-grid img:first-child:nth-last-child(3) ~ img:last-child {
  grid-column: span 2;
  aspect-ratio: 16/6;
}
/* Text with collapsible read-more */
.ld-viz-about__text { font-size: 16px; line-height: 1.8; color: #334155; }
.ld-viz-about__text p { margin: 0 0 18px; }
.ld-viz-about__text--collapsible { position: relative; }
.ld-viz-about__collapse-wrap {
  max-height: 290px;
  overflow: hidden;
  position: relative;
  transition: max-height .5s cubic-bezier(.4,0,.2,1);
}
.ld-viz-about__collapse-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, #fff);
  pointer-events: none;
  transition: opacity .4s;
}
.ld-viz-about__collapse-wrap.is-expanded { max-height: 9999px; }
.ld-viz-about__collapse-wrap.is-expanded::after { opacity: 0; }
.ld-viz-about__read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  background: none;
  border: none;
  padding: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--viz-accent);
  cursor: pointer;
  font-family: var(--viz-font);
  transition: opacity .15s;
}
.ld-viz-about__read-more:hover { opacity: .75; }
.ld-viz-about__read-more::after { content: ' ↓'; font-size: 13px; }
.ld-viz-about__read-more.is-expanded::after { content: ' ↑'; }

/* --- About — logo panel ---------------------------------- */
.ld-viz-about__logo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  border-radius: 18px;
  border: 1px solid #e0e7ff;
}
.ld-viz-about__bureau-logo {
  max-width: 100%;
  max-height: 240px;
  object-fit: contain;
  display: block;
}

/* --- About — default SVG illustration --------------------- */
.ld-viz-about__illus {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  border-radius: 18px;
  border: 1px solid #e0e7ff;
}
.ld-viz-about__illus svg { max-width: 100%; height: auto; }

/* --- Footer logo ----------------------------------------- */
.ld-viz-footer__brand { display: flex; align-items: center; gap: 14px; }
.ld-viz-footer__logo {
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: .7;
  filter: brightness(0) invert(1);
}

/* --- Languages ------------------------------------------- */
.ld-viz-langs__grid { display: flex; flex-wrap: wrap; gap: 10px; }
.ld-viz-langs__groups { display: flex; flex-direction: column; gap: 28px; }
.ld-viz-lang-group__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--viz-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ld-viz-lang-group__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--viz-accent);
  color: #fff;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  padding: 1px 8px;
}
.ld-viz-lang-group__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.ld-viz-lang-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: #fff;
  border: 1.5px solid #e8eaf0;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: #334155;
  transition: border-color .2s, color .2s, background .2s, box-shadow .2s;
}
.ld-viz-lang-tag__flag { font-size: 16px; line-height: 1; }
.ld-viz-lang-tag:hover {
  border-color: var(--viz-accent);
  color: var(--viz-accent);
  background: rgba(79,110,247,.04);
  box-shadow: 0 4px 14px rgba(79,110,247,.15);
}

/* --- Contacts -------------------------------------------- */
.ld-viz-contacts__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 28px;
  margin-bottom: 36px;
}
.ld-viz-contact { display: flex; flex-direction: column; gap: 5px; }
.ld-viz-contact__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--viz-muted);
  font-weight: 700;
}
.ld-viz-contact__value { font-size: 15px; font-weight: 500; color: var(--viz-dark); text-decoration: none; line-height: 1.5; }
a.ld-viz-contact__value:hover { color: var(--viz-accent); text-decoration: underline; }
/* Social contact links in contacts section */
.ld-viz-contact__social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ld-viz-contact__social--wa { color: #16a34a; }
.ld-viz-contact__social--tg { color: #0088cc; }
.ld-viz-contact__social--wa:hover { color: #15803d; }
.ld-viz-contact__social--tg:hover { color: #006fa8; }

/* --- Hours schedule block ---------------------------------- */
.ld-viz-contact--hours { grid-column: 1 / -1; }
.ld-viz-hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
  width: fit-content;
}
.ld-viz-hours-badge--open { background: #dcfce7; color: #15803d; }
.ld-viz-hours-badge--closed, .ld-viz-hours-badge--off { background: #fee2e2; color: #dc2626; }
.ld-viz-hours-badge__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: ld-pulse 2s infinite;
}
.ld-viz-hours-badge--open .ld-viz-hours-badge__dot { background: #16a34a; }
.ld-viz-hours-badge--closed .ld-viz-hours-badge__dot,
.ld-viz-hours-badge--off .ld-viz-hours-badge__dot { background: #ef4444; animation: none; }
@keyframes ld-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}
.ld-viz-hours-table {
  border-collapse: collapse;
  font-size: 14px;
  width: auto;
  min-width: 200px;
}
.ld-viz-hours-row td { padding: 4px 0; }
.ld-viz-hours-row__day {
  width: 36px;
  font-weight: 700;
  color: var(--viz-muted);
  padding-right: 16px;
}
.ld-viz-hours-row__time { color: var(--viz-dark); }
.ld-viz-hours-row.is-today .ld-viz-hours-row__day,
.ld-viz-hours-row.is-today .ld-viz-hours-row__time { color: var(--viz-accent); font-weight: 700; }
.ld-viz-hours-row.is-off .ld-viz-hours-row__time { color: var(--viz-muted); }
.ld-viz-hours-row__closed { color: var(--viz-muted); font-style: italic; }

/* --- Contacts bottom (map + quick form) -------------------- */
.ld-viz-contacts__bottom {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
  margin-top: 40px;
}

/* --- Map ------------------------------------------------- */
.ld-viz-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e8eaf0;
  box-shadow: var(--viz-shadow);
  min-height: 340px;
  height: 100%;
}
.ld-viz-map iframe { display: block; width: 100%; height: 100%; min-height: 340px; }

/* --- Quick contact form ---------------------------------- */
.ld-viz-quick-form {
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  border: 1px solid rgba(79,110,247,.1);
  border-radius: 20px;
  padding: 32px 28px;
}
.ld-viz-quick-form__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--viz-dark);
  margin: 0 0 6px;
  letter-spacing: -.02em;
}
.ld-viz-quick-form__sub {
  font-size: 13px;
  color: var(--viz-muted);
  margin: 0 0 20px;
  line-height: 1.5;
}
.ld-viz-qf__group { margin-bottom: 12px; }
.ld-viz-qf__input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--viz-font);
  background: #fff;
  color: var(--viz-dark);
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}
.ld-viz-qf__input:focus {
  outline: none;
  border-color: var(--viz-accent);
  box-shadow: 0 0 0 3px rgba(79,110,247,.1);
}
.ld-viz-qf__input::placeholder { color: #94a3b8; }
.ld-viz-qf__textarea { resize: vertical; min-height: 80px; }
.ld-viz-qf__submit {
  width: 100%;
  padding: 13px;
  background: var(--viz-gradient);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--viz-font);
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(79,110,247,.3);
  transition: opacity .15s, transform .15s, box-shadow .15s;
}
.ld-viz-qf__submit:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(79,110,247,.4); }
.ld-viz-qf__submit:disabled { opacity: .55; cursor: default; transform: none; }
.ld-viz-qf__notice {
  display: none;
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
}
.ld-viz-qf__notice--ok  { display: block; background: rgba(22,163,74,.12); color: #16a34a; border: 1px solid rgba(22,163,74,.2); }
.ld-viz-qf__notice--err { display: block; background: rgba(239,68,68,.1); color: #dc2626; border: 1px solid rgba(239,68,68,.18); }

/* --- Footer ---------------------------------------------- */
.ld-viz-footer {
  background: var(--viz-dark);
  color: rgba(255,255,255,.45);
  padding: 72px 0 36px;
}
.ld-viz-footer__top {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 64px;
  margin-bottom: 52px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.ld-viz-footer__name { font-size: 22px; font-weight: 800; color: rgba(255,255,255,.9); margin: 0 0 6px; letter-spacing: -.02em; }
.ld-viz-footer__city { font-size: 14px; color: rgba(255,255,255,.4); margin: 0 0 18px; }
.ld-viz-footer__phone { display: block; font-size: 18px; font-weight: 700; color: rgba(255,255,255,.8); text-decoration: none; margin-bottom: 6px; }
.ld-viz-footer__phone:hover { color: #fff; }
.ld-viz-footer__email { display: block; font-size: 15px; color: rgba(255,255,255,.55); text-decoration: none; margin-bottom: 20px; }
.ld-viz-footer__email:hover { color: rgba(255,255,255,.85); }
.ld-viz-footer__socials { display: flex; gap: 10px; }
.ld-viz-footer__social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 10px;
  color: #fff; text-decoration: none; transition: background .15s, transform .12s;
}
.ld-viz-footer__social-btn--wa { background: rgba(37,211,102,.2); }
.ld-viz-footer__social-btn--wa:hover { background: rgba(37,211,102,.35); transform: translateY(-1px); }
.ld-viz-footer__social-btn--tg { background: rgba(0,136,204,.2); }
.ld-viz-footer__social-btn--tg:hover { background: rgba(0,136,204,.35); transform: translateY(-1px); }
/* Footer nav */
.ld-viz-footer__nav { display: flex; flex-direction: column; gap: 12px; }
.ld-viz-footer__nav-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); margin: 0 0 10px; }
.ld-viz-footer__nav-link { font-size: 16px; color: rgba(255,255,255,.6); text-decoration: none; transition: color .15s; }
.ld-viz-footer__nav-link:hover { color: rgba(255,255,255,.95); }
/* Requisites section (light page area) */
.ld-viz-requisites { padding: 60px 0; }
.ld-viz-req__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px 40px;
  margin: 0;
}
.ld-viz-req__row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ld-viz-req__list dt {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--viz-muted);
}
.ld-viz-req__list dd {
  font-size: 15px;
  color: var(--viz-text);
  margin: 0;
}
/* Footer bottom bar */
.ld-viz-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ld-viz-footer__copy { font-size: 14px; margin: 0; color: rgba(255,255,255,.35); }
.ld-viz-footer__powered { font-size: 13px; margin: 0; color: rgba(255,255,255,.28); }
.ld-viz-footer__powered a { color: rgba(255,255,255,.4); text-decoration: none; }
.ld-viz-footer__powered a:hover { color: rgba(255,255,255,.65); }

/* --- Gallery -------------------------------------------- */
.ld-viz-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.ld-viz-gallery__item {
  border-radius: 12px;
  background: #f8faff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  min-height: 160px;
}
.ld-viz-gallery__item img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  display: block;
  transition: transform .4s;
}
.ld-viz-gallery__item:hover img { transform: scale(1.03); }
.ld-viz-gallery__empty,
.ld-viz-promos__empty,
.ld-viz-articles__empty {
  text-align: center;
  padding: 56px 24px;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  border-radius: 18px;
  border: 1px solid #e0e7ff;
}
.ld-viz-gallery__empty-icon,
.ld-viz-promos__empty-icon,
.ld-viz-articles__empty-icon { font-size: 48px; margin-bottom: 16px; }
.ld-viz-gallery__empty-title,
.ld-viz-promos__empty-title,
.ld-viz-articles__empty-title { font-size: 20px; font-weight: 700; color: var(--viz-dark); margin: 0 0 8px; }
.ld-viz-gallery__empty-sub,
.ld-viz-promos__empty-sub,
.ld-viz-articles__empty-sub { font-size: 15px; color: var(--viz-muted); margin: 0 0 20px; }
.ld-viz-gallery__owner-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 10px 22px;
  background: var(--viz-gradient);
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(79,110,247,.3);
  transition: opacity .15s, transform .15s;
}
.ld-viz-gallery__owner-link:hover { opacity: .9; transform: translateY(-1px); }

/* --- Promotions ----------------------------------------- */
.ld-viz-promos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.ld-viz-promo {
  background: #fff;
  border: 1px solid var(--viz-border);
  border-radius: var(--viz-radius);
  padding: 28px 24px;
  position: relative;
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ld-viz-promo:hover {
  box-shadow: 0 8px 40px rgba(79,110,247,.14);
  transform: translateY(-3px);
}
.ld-viz-promo__badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--viz-gradient);
  color: #fff;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  width: fit-content;
  letter-spacing: .02em;
}
.ld-viz-promo__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--viz-dark);
  margin: 0;
  line-height: 1.35;
}
.ld-viz-promo__desc {
  font-size: 14px;
  color: var(--viz-muted);
  margin: 0;
  line-height: 1.65;
  flex: 1;
}
.ld-viz-promo__until {
  font-size: 12px;
  color: var(--viz-muted);
  margin: 0;
  font-weight: 600;
}
.ld-viz-promo__cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(79,110,247,.1), rgba(124,58,237,.08));
  color: var(--viz-accent);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(79,110,247,.15);
  margin-top: auto;
  transition: background .18s, color .18s;
  width: fit-content;
}
.ld-viz-promo__cta:hover {
  background: var(--viz-gradient);
  color: #fff;
  border-color: transparent;
}

/* --- Articles ------------------------------------------- */
.ld-viz-articles__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.ld-viz-article {
  background: #fff;
  border: 1px solid var(--viz-border);
  border-radius: var(--viz-radius);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  transition: box-shadow .25s, transform .25s;
}
.ld-viz-article:hover {
  box-shadow: 0 8px 40px rgba(79,110,247,.14);
  transform: translateY(-4px);
}
.ld-viz-article__img-wrap {
  width: 200px;
  flex-shrink: 0;
  background: #f8faff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.ld-viz-article__img {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
  display: block;
}
.ld-viz-article__body {
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ld-viz-article__date {
  font-size: 12px;
  color: var(--viz-muted);
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.ld-viz-article__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--viz-dark);
  margin: 0;
  line-height: 1.35;
}
.ld-viz-article__excerpt {
  font-size: 14px;
  color: var(--viz-muted);
  margin: 0;
  line-height: 1.65;
  flex: 1;
}
.ld-viz-article__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--viz-accent);
  text-decoration: none;
  margin-top: auto;
  transition: color .15s;
}
.ld-viz-article__link:hover { color: var(--viz-accent-h); }
/* Article without image: body fills full width */
.ld-viz-article--no-img { flex-direction: row; }
.ld-viz-article--no-img .ld-viz-article__body { padding: 28px 32px; }

/* datetime-local: normalize across browsers/iOS */
input[type="datetime-local"].ld-viz-input {
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
  font-size: 14px;
}

/* --- Responsive ------------------------------------------ */
@media (max-width: 960px) {
  .ld-viz-hero--split .ld-viz-container { grid-template-columns: 1fr; gap: 36px; }
  .ld-viz-calc-card { max-width: 480px; }
  .ld-viz-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .ld-viz-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .ld-viz-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.07); }
  .ld-viz-stat:last-child { border-bottom: none; }
  .ld-viz-stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}
@media (max-width: 768px) {
  .ld-viz-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .ld-viz-articles__grid { grid-template-columns: 1fr; }
  .ld-viz-hero { padding: 100px 0 64px; }
  .ld-viz-hero--split { padding: 100px 0 56px; }
  .ld-viz-section { padding: 60px 0; }
  .ld-viz-about__body--photo { grid-template-columns: 1fr; gap: 28px; }
  .ld-viz-about__photo { max-height: 260px; }
  .ld-viz-footer__inner { flex-direction: column; gap: 4px; }
  .ld-viz-footer__top { grid-template-columns: 1fr; gap: 28px; }
  .ld-viz-contacts__bottom { grid-template-columns: 1fr; }
  .ld-viz-map { min-height: 260px; height: 260px; }
  .ld-viz-map iframe { min-height: 260px; }
  .ld-viz-nav__cta { display: none; }
  .ld-viz-nav__menu { display: none; }
  .ld-viz-nav__phone { display: none; }
  .ld-viz-calc-row { grid-template-columns: 1fr; }
  .ld-viz-hero-form__row { grid-template-columns: 1fr; }
  .ld-viz-hero__glow-1 { width: 400px; height: 400px; right: -100px; top: -80px; }
  .ld-viz-hero__glow-2 { width: 300px; height: 300px; left: 20px; }
  .ld-viz-stats__grid { overflow-x: auto; }
  .ld-viz-contact--hours { grid-column: auto; }
}
@media (max-width: 640px) {
  .ld-viz-article { flex-direction: column; }
  .ld-viz-article__img-wrap { width: 100%; height: 180px; }
}
@media (max-width: 480px) {
  .ld-viz-gallery__grid { grid-template-columns: 1fr 1fr; }
  .ld-viz-promos__grid { grid-template-columns: 1fr; }
  .ld-viz-container { padding: 0 18px; }
  .ld-viz-nav { padding: 0 18px; }
  .ld-viz-hero__cta { padding: 14px 30px; }
  .ld-viz-grid { grid-template-columns: 1fr; }
  .ld-viz-contacts__grid { grid-template-columns: 1fr; }
  .ld-viz-features__layout { grid-template-columns: 1fr; }
  .ld-viz-features__illus { display: none; }
  .ld-viz-features__grid { grid-template-columns: 1fr; }
  .ld-viz-reviews__grid { grid-template-columns: 1fr; }
  .ld-viz-stats__grid { grid-template-columns: 1fr; }
  .ld-viz-calc-card { padding: 22px 18px; }
  .ld-viz-review-form { padding: 28px 20px; }
}
