/*
 * AIBlocks — arenda page styles.
 * Combines original 7 section <style> blocks (hero/cities/how/facts/faq/articles/cta).
 * Each section is scoped to its own #vtg-*-block id.
 */

/* 100px top + 100px bottom padding on every section root.
   Bot's original CSS had selectors like `#vtg-hero-block .vtg-hero` but id and class are on the same element, so those rules never applied. Use just the id here. */
#vtg-a-hero,
#vtg-cities-block,
#vtg-how-block,
#vtg-facts-block,
#vtg-faq-block,
#vtg-art-block,
#vtg-p-cta {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}
@media (max-width: 900px) {
    #vtg-hero-block,
    #vtg-cities-block,
    #vtg-how-block,
    #vtg-facts-block,
    #vtg-faq-block,
    #vtg-art-block,
    #vtg-cta-block {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}

/* ─── BLOCK 0 — HERO (centered, service-page style) ─── */
#vtg-hero-block {
    background: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-align: center;
}

#vtg-hero-block .vtg-hero-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

#vtg-hero-block .vtg-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #1f2c37;
    margin-bottom: 20px;
    opacity: 0.5;
    justify-content: center;
}
#vtg-hero-block .vtg-hero-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: #1f2c37;
    display: block;
}

#vtg-hero-block .vtg-hero-h1 {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -1.5px;
    line-height: 1.08;
    margin: 0 auto 20px;
    max-width: 920px;
}

#vtg-hero-block .vtg-hero-desc {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin: 0 auto 36px;
    max-width: 760px;
}

#vtg-hero-block .vtg-hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

#vtg-hero-block .vtg-hero-btn-dark,
#vtg-hero-block .vtg-hero-btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 100px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

#vtg-hero-block .vtg-hero-btn-dark {
    background: #1f2c37;
    color: #ffffff !important;
    box-shadow: 0 6px 16px rgba(31,44,55,0.18);
}
#vtg-hero-block .vtg-hero-btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(31,44,55,0.30);
}

#vtg-hero-block .vtg-hero-btn-light {
    background: rgba(31,44,55,0.08);
    color: #1f2c37 !important;
    font-weight: 600;
}
#vtg-hero-block .vtg-hero-btn-light:hover {
    background: rgba(31,44,55,0.14);
    transform: translateY(-2px);
}

/* ─── HERO VIDEO (separate section below hero) ─── */
/* Hero — pokupka style */
.vtg-a-section { padding: 100px 0 !important; font-family: var(--vtg-font); color: var(--vtg-color-text); -webkit-font-smoothing: antialiased; text-align: center; }
.vtg-a-wrap { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.vtg-a-hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--vtg-color-brand); opacity: 0.4; margin-bottom: 16px; justify-content: center; }
.vtg-a-hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--vtg-color-brand); display: block; }
.vtg-a-hero-h1 { font-size: clamp(32px,4.5vw,56px); font-weight: 700; color: var(--vtg-color-text); letter-spacing: -1.5px; line-height: 1.08; margin: 0 0 20px; max-width: 880px; margin-left: auto; margin-right: auto; }
.vtg-a-hero-sub { font-size: 18px; color: var(--vtg-color-text-muted); line-height: 1.7; max-width: 720px; margin: 0 auto 40px; }
.vtg-a-hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.vtg-a-btn-dark { display: inline-flex; align-items: center; background: var(--vtg-color-brand); color: #fff !important; text-decoration: none !important; font-size: 15px; font-weight: 700; padding: 16px 32px; border-radius: 100px; transition: transform 0.2s, box-shadow 0.2s; }
.vtg-a-btn-dark:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(30,37,53,0.3); color: #fff !important; }
.vtg-a-btn-light { display: inline-flex; align-items: center; background: var(--vtg-color-bg-pill); color: var(--vtg-color-brand) !important; text-decoration: none !important; font-size: 15px; font-weight: 600; padding: 16px 32px; border-radius: 100px; transition: background 0.2s, transform 0.2s; }
.vtg-a-btn-light:hover { background: var(--vtg-color-divider); transform: translateY(-2px); color: var(--vtg-color-brand) !important; }
@media (max-width: 560px) { .vtg-a-btn-dark, .vtg-a-btn-light { width: 100%; justify-content: center; } }
#vtg-hero-video-block .vtg-hero-video-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
}
#vtg-hero-video-block .vtg-hero-video-wrap::before {
    content: '';
    display: block;
    padding-top: 56.25%;
}
#vtg-hero-video-block iframe {
    position: absolute;
    top: 0;
    left: 48px;
    right: 48px;
    width: calc(100% - 96px);
    height: 100%;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.15);
    background: #000;
}

@media (max-width: 900px) {
    #vtg-hero-block .vtg-hero-wrap { padding: 0 24px; }
    #vtg-hero-block .vtg-hero-h1 { font-size: 38px; }
    #vtg-hero-video-block .vtg-hero-video-wrap { padding: 0 24px; }
    #vtg-hero-video-block iframe { left: 24px; right: 24px; width: calc(100% - 48px); border-radius: 14px; }
}
@media (max-width: 560px) {
    #vtg-hero-block .vtg-hero-h1 { font-size: 30px; letter-spacing: -1px; }
    #vtg-hero-block .vtg-hero-desc { font-size: 16px; }
    #vtg-hero-block .vtg-hero-btn-dark,
    #vtg-hero-block .vtg-hero-btn-light { width: 100%; }
    #vtg-hero-video-block { padding-bottom: 56px !important; }
}

/* ─── BLOCK 1 ─── */
/* ВАЖНО: все стили только внутри .vtg-cities — не влияют на футер! */

  #vtg-cities-block .vtg-cities {
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    background: #f5f5f7;
    padding: 80px 0;
    position: relative;
  }

  #vtg-cities-block .vtg-cities-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    box-sizing: border-box;
  }

  #vtg-cities-block .vtg-cities-top {
    text-align: center;
    margin-bottom: 56px;
    box-sizing: border-box;
  }

  #vtg-cities-block .vtg-cities-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #1f2c37;
    opacity: 0.4;
    margin-bottom: 16px;
    box-sizing: border-box;
  }

  #vtg-cities-block .vtg-cities-eyebrow::before,
  #vtg-cities-block .vtg-cities-eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: #1f2c37;
    display: block;
  }

  #vtg-cities-block .vtg-cities-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -1px;
    line-height: 1.1;
    margin: 0 0 14px;
    box-sizing: border-box;
  }

  #vtg-cities-block .vtg-cities-subtitle {
    font-size: 17px;
    font-weight: 400;
    color: #666;
    margin: 0;
    box-sizing: border-box;
  }

  #vtg-cities-block .vtg-cities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    box-sizing: border-box;
  }

  #vtg-cities-block .vtg-city-card {
    flex: 0 1 calc((100% - 48px) / 4);
    max-width: calc((100% - 48px) / 4);
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(0,0,0,0.05);
    box-sizing: border-box;
  }

  #vtg-cities-block .vtg-city-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.10);
  }

  #vtg-cities-block .vtg-city-name {
    font-size: 20px;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.3px;
    display: block;
    margin: 0;
    box-sizing: border-box;
  }

  #vtg-cities-block .vtg-city-desc {
    font-size: 13px;
    font-weight: 400;
    color: #888;
    line-height: 1.55;
    margin: 0;
    flex: 1;
    box-sizing: border-box;
  }

  #vtg-cities-block .vtg-city-divider {
    height: 1px;
    background: #f0f0f0;
    box-sizing: border-box;
  }

  /* Two-button footer per card (Eugene 2026-07-24): city page + Telegram */
  #vtg-cities-block .vtg-city-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-sizing: border-box;
  }

  #vtg-cities-block .vtg-city-page {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #f4f5f7;
    color: #1d1d1f !important;
    border: 1px solid rgba(0,0,0,0.08);
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 600;
    padding: 11px 14px;
    border-radius: 10px;
    transition: background 0.15s, transform 0.15s;
    box-sizing: border-box;
  }

  #vtg-cities-block .vtg-city-page:hover {
    background: #e9ebef;
    transform: translateY(-1px);
    color: #1d1d1f !important;
  }

  #vtg-cities-block .vtg-city-tg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #3aa6e1;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 600;
    padding: 11px 14px;
    border-radius: 10px;
    transition: background 0.15s, transform 0.15s;
    box-sizing: border-box;
  }

  #vtg-cities-block .vtg-city-tg:hover {
    background: #2990c8;
    transform: translateY(-1px);
    color: #ffffff !important;
  }

  #vtg-cities-block .vtg-city-tg-svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
    flex-shrink: 0;
  }

  #vtg-cities-block .vtg-cities-last-row {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 16px;
    box-sizing: border-box;
  }

  #vtg-cities-block .vtg-cities-last-row .vtg-city-card {
    width: calc(25% - 12px);
  }

  @media (max-width: 1024px) {
    #vtg-cities-block .vtg-city-card { flex-basis: calc((100% - 32px) / 3); max-width: calc((100% - 32px) / 3); }
  }

  @media (max-width: 768px) {
    #vtg-cities-block .vtg-cities { padding: 56px 0; }
    #vtg-cities-block .vtg-cities-wrap { padding: 0 16px; }
    #vtg-cities-block .vtg-cities-grid { gap: 12px; }
    #vtg-cities-block .vtg-city-card { flex-basis: 100%; max-width: 100%; }
    #vtg-cities-block .vtg-cities-top { margin-bottom: 36px; }
  }

  @media (max-width: 375px) {
    #vtg-cities-block .vtg-cities-wrap { padding: 0 12px; }
    #vtg-cities-block .vtg-city-card { padding: 20px 16px; }
  }

/* ─── BLOCK 2 ─── */
#vtg-how-block .vtg-how {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    background: #ffffff;
    padding: 80px 0;
    box-sizing: border-box;
  }

  

  #vtg-how-block .vtg-how-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
  }

  #vtg-how-block .vtg-how-top {
    text-align: center;
    margin-bottom: 64px;
  }

  #vtg-how-block .vtg-how-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #1f2c37;
    opacity: 0.5;
    margin-bottom: 16px;
  }

  #vtg-how-block .vtg-how-eyebrow::before,
  #vtg-how-block .vtg-how-eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: #1f2c37;
    display: block;
  }

  #vtg-how-block .vtg-how-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -1px;
    line-height: 1.1;
    margin: 0 0 14px;
  }

  #vtg-how-block .vtg-how-subtitle {
    font-size: 17px;
    color: #666;
    margin: 0;
  }

  #vtg-how-block .vtg-how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  #vtg-how-block .vtg-how-step {
    padding: 36px 32px;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
  }

  #vtg-how-block .vtg-how-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    border-color: #d0d0d0;
  }

  #vtg-how-block .vtg-how-num {
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    background: #1f2c37;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
  }

  #vtg-how-block .vtg-how-ico {
    width: 44px;
    height: 44px;
    background: #f5f5f7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
  }

  #vtg-how-block .vtg-how-ico svg {
    width: 22px;
    height: 22px;
    fill: #1f2c37;
  }

  #vtg-how-block .vtg-how-step h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0 0 10px;
    line-height: 1.3;
  }

  #vtg-how-block .vtg-how-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0 0 16px;
    flex: 1;
  }

  #vtg-how-block .vtg-how-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #1f2c37;
    background: #f0f2f5;
    padding: 5px 12px;
    border-radius: 100px;
    align-self: flex-start;
  }

  #vtg-how-block .vtg-how-tag svg {
    width: 11px;
    height: 11px;
    fill: #1f2c37;
    flex-shrink: 0;
  }

  #vtg-how-block .vtg-how-full {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0 28px;
    align-items: center;
    background: #1f2c37;
    border-color: #1f2c37;
    padding: 40px;
  }

  #vtg-how-block .vtg-how-full:hover {
    background: #253045;
    border-color: #253045;
    transform: none;
    box-shadow: none;
  }

  #vtg-how-block .vtg-how-full .vtg-how-num {
    background: rgba(255,255,255,0.15);
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
    align-self: start;
    margin-top: 4px;
  }

  #vtg-how-block .vtg-how-full .vtg-how-ico { display: none; }

  #vtg-how-block .vtg-how-full .vtg-how-body {
    grid-column: 2;
    grid-row: 1;
  }

  #vtg-how-block .vtg-how-full h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 10px;
  }

  #vtg-how-block .vtg-how-full p {
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    margin-bottom: 16px;
  }

  #vtg-how-block .vtg-how-full .vtg-how-tag {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
  }

  #vtg-how-block .vtg-how-full .vtg-how-tag svg { fill: rgba(255,255,255,0.8); }

  #vtg-how-block .vtg-how-last-row {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  #vtg-how-block .vtg-how-last-row .vtg-how-step {
    width: calc(33.333% - 10px);
  }

  @media (max-width: 900px) {
    #vtg-how-block .vtg-how { padding: 56px 0; }
    #vtg-how-block .vtg-how-wrap { padding: 0 16px; }
    #vtg-how-block .vtg-how-steps { grid-template-columns: 1fr; }
    #vtg-how-block .vtg-how-last-row { flex-direction: column; gap: 16px; }
    #vtg-how-block .vtg-how-last-row .vtg-how-step { width: 100%; }
    #vtg-how-block .vtg-how-full { grid-template-columns: 1fr; padding: 28px 24px; }
    #vtg-how-block .vtg-how-full .vtg-how-num { display: none; }
    #vtg-how-block .vtg-how-full .vtg-how-body { grid-column: 1; }
    #vtg-how-block .vtg-how-top { margin-bottom: 40px; }
  }

  @media (max-width: 560px) {
    #vtg-how-block .vtg-how-step { padding: 24px 20px; }
  }

  @media (max-width: 375px) {
    #vtg-how-block .vtg-how-wrap { padding: 0 12px; }
    #vtg-how-block .vtg-how-step { padding: 20px 16px; }
  }

/* ─── BLOCK 3 ─── */
#vtg-facts-block .vtg-facts {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    background: #f5f5f7;
    padding: 80px 0;
    box-sizing: border-box;
  }

  

  #vtg-facts-block .vtg-facts-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
  }

  #vtg-facts-block .vtg-facts-top {
    text-align: center;
    margin-bottom: 64px;
  }

  #vtg-facts-block .vtg-facts-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #1f2c37;
    opacity: 0.4;
    margin-bottom: 16px;
  }

  #vtg-facts-block .vtg-facts-eyebrow::before,
  #vtg-facts-block .vtg-facts-eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: #1f2c37;
    display: block;
  }

  #vtg-facts-block .vtg-facts-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -1px;
    line-height: 1.1;
    margin: 0 0 14px;
  }

  #vtg-facts-block .vtg-facts-subtitle {
    font-size: 17px;
    color: #888;
    margin: 0;
  }

  #vtg-facts-block .vtg-facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #e0e0e5;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
  }

  #vtg-facts-block .vtg-facts-item {
    background: #f5f5f7;
    padding: 48px 36px;
    text-align: center;
    transition: background 0.2s;
  }

  #vtg-facts-block .vtg-facts-item:hover { background: #eeeef2; }

  #vtg-facts-block .vtg-facts-num {
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 10px;
    display: block;
  }

  #vtg-facts-block .vtg-facts-num sup {
    font-size: 0.4em;
    vertical-align: super;
    letter-spacing: 0;
    opacity: 0.5;
    font-weight: 600;
  }

  #vtg-facts-block .vtg-facts-desc {
    font-size: 14px;
    font-weight: 400;
    color: #888;
    line-height: 1.55;
    margin: 0;
  }

  #vtg-facts-block .vtg-facts-google {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 36px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e0e0e5;
    text-align: center;
  }

  #vtg-facts-block .vtg-facts-stars {
    display: flex;
    gap: 3px;
  }

  #vtg-facts-block .vtg-facts-stars svg {
    width: 22px;
    height: 22px;
    fill: #f5c842;
  }

  #vtg-facts-block .vtg-facts-google-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  #vtg-facts-block .vtg-facts-google-rating strong {
    font-size: 22px;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.5px;
  }

  #vtg-facts-block .vtg-facts-google-rating span {
    font-size: 13px;
    color: #888;
  }

  #vtg-facts-block .vtg-facts-google-link {
    font-size: 13px;
    font-weight: 600;
    color: #1f2c37 !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(30,37,53,0.25);
    padding-bottom: 1px;
    transition: border-color 0.2s;
  }

  #vtg-facts-block .vtg-facts-google-link:hover { border-color: #1f2c37; }

  @media (max-width: 900px) {
    #vtg-facts-block .vtg-facts { padding: 56px 0; }
    #vtg-facts-block .vtg-facts-wrap { padding: 0 16px; }
    #vtg-facts-block .vtg-facts-grid { grid-template-columns: repeat(2, 1fr); }
    #vtg-facts-block .vtg-facts-top { margin-bottom: 40px; }
  }

  @media (max-width: 560px) {
    #vtg-facts-block .vtg-facts { padding: 48px 0; }
    #vtg-facts-block .vtg-facts-item { padding: 28px 16px; }
    #vtg-facts-block .vtg-facts-num { font-size: 40px; letter-spacing: -1.5px; }
    #vtg-facts-block .vtg-facts-desc { font-size: 13px; }
    #vtg-facts-block .vtg-facts-google { padding: 28px 20px; }
    #vtg-facts-block .vtg-facts-google-rating strong { font-size: 20px; }
  }

  @media (max-width: 375px) {
    #vtg-facts-block .vtg-facts-wrap { padding: 0 12px; }
    #vtg-facts-block .vtg-facts-num { font-size: 34px; }
    #vtg-facts-block .vtg-facts-item { padding: 22px 12px; }
  }

/* ─── BLOCK 4 ─── */
#vtg-faq-block .vtg-faq {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    background: #ffffff;
    padding: 80px 0;
    
    position: relative;
    
    
    
    
    box-sizing: border-box;
  }

  

  #vtg-faq-block .vtg-faq-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 48px;
  }

  /* ЗАГОЛОВОК */
  #vtg-faq-block .vtg-faq-top {
    text-align: center;
    margin-bottom: 56px;
  }

  #vtg-faq-block .vtg-faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #1f2c37;
    opacity: 0.4;
    margin-bottom: 16px;
  }

  #vtg-faq-block .vtg-faq-eyebrow::before,
  #vtg-faq-block .vtg-faq-eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: #1f2c37;
    display: block;
  }

  #vtg-faq-block .vtg-faq-title {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -1px;
    line-height: 1.1;
    margin: 0 0 12px;
  }

  #vtg-faq-block .vtg-faq-subtitle {
    font-size: 16px;
    color: #888;
    margin: 0;
  }

  /* АККОРДЕОН */
  #vtg-faq-block .vtg-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #e8e8e8;
  }

  #vtg-faq-block .vtg-faq-item {
    border-bottom: 1px solid #e8e8e8;
    overflow: hidden;
  }

  /* Кнопка вопроса */
  #vtg-faq-block .vtg-faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    transition: color 0.2s;
  }

  #vtg-faq-block .vtg-faq-q:hover .vtg-faq-q-text {
    color: #1f2c37;
  }

  #vtg-faq-block .vtg-faq-q-text {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1.4;
    transition: color 0.2s;
    flex: 1;
  }

  /* Иконка + / - */
  #vtg-faq-block .vtg-faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f5f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.3s;
  }

  #vtg-faq-block .vtg-faq-icon svg {
    width: 14px;
    height: 14px;
    fill: #1f2c37;
    transition: transform 0.3s;
  }

  #vtg-faq-block .vtg-faq-item.open .vtg-faq-icon {
    background: #1f2c37;
  }

  #vtg-faq-block .vtg-faq-item.open .vtg-faq-icon svg {
    fill: #ffffff;
    transform: rotate(45deg);
  }

  /* Ответ */
  #vtg-faq-block .vtg-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  #vtg-faq-block .vtg-faq-item.open .vtg-faq-a {
    max-height: 1000px;
  }

  #vtg-faq-block .vtg-faq-a-inner {
    padding: 0 0 24px;
    font-size: 15px;
    font-weight: 400;
    color: #555;
    line-height: 1.75;
  }

  #vtg-faq-block .vtg-faq-link {
    color: var(--vtg-color-brand, #1f2c37);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    transition: opacity 0.2s ease;
  }
  #vtg-faq-block .vtg-faq-link:hover { opacity: 0.75; }

  /* CTA внизу */
  #vtg-faq-block .vtg-faq-cta {
    margin-top: 48px;
    padding: 32px 36px;
    background: #f5f5f7;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }

  #vtg-faq-block .vtg-faq-cta-text {
    font-size: 16px;
    font-weight: 500;
    color: #1d1d1f;
    margin: 0;
  }

  #vtg-faq-block .vtg-faq-cta-text span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #888;
    margin-top: 4px;
  }

  #vtg-faq-block .vtg-faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1f2c37;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
  }

  #vtg-faq-block .vtg-faq-cta-btn:hover {
    background: #2a3a47;
    transform: translateY(-1px);
    color: #ffffff !important;
  }

  /* МОБИЛЬНЫЙ */
  @media (max-width: 768px) {
    #vtg-faq-block .vtg-faq { padding: 56px 0; }
    #vtg-faq-block .vtg-faq-wrap { padding: 0 16px; }
    #vtg-faq-block .vtg-faq-top { margin-bottom: 36px; }
    #vtg-faq-block .vtg-faq-q { padding: 20px 0; }
    #vtg-faq-block .vtg-faq-q-text { font-size: 15px; }
    #vtg-faq-block .vtg-faq-a-inner { font-size: 14px; }
    #vtg-faq-block .vtg-faq-cta {
      flex-direction: column;
      align-items: flex-start;
      padding: 24px 20px;
      gap: 16px;
    }
    #vtg-faq-block .vtg-faq-cta-btn { width: 100%; justify-content: center; }
  }

  @media (max-width: 375px) {
    #vtg-faq-block .vtg-faq-q-text { font-size: 14px; }
    #vtg-faq-block .vtg-faq-a-inner { font-size: 13px; }
  }

/* ─── BLOCK 5 ─── */
#vtg-art-block .vtg-art {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    background: #f5f5f7;
    padding: 80px 0;
    box-sizing: border-box;
  }

  

  #vtg-art-block .vtg-art-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
  }

  #vtg-art-block .vtg-art-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
  }

  #vtg-art-block .vtg-art-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #1f2c37;
    opacity: 0.4;
    margin-bottom: 12px;
  }

  #vtg-art-block .vtg-art-eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: #1f2c37;
    display: block;
  }

  #vtg-art-block .vtg-art-title {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -1px;
    line-height: 1.1;
    margin: 0;
  }

  #vtg-art-block .vtg-art-all {
    font-size: 14px;
    font-weight: 600;
    color: #1f2c37 !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(30,37,53,0.3);
    padding-bottom: 2px;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-end;
    transition: border-color 0.2s;
  }

  #vtg-art-block .vtg-art-all:hover { border-color: #1f2c37; }

  /* СЕТКА 3+3 — чистая и простая */
  #vtg-art-block .vtg-art-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 36px;
  }

  /* КАРТОЧКА */
  #vtg-art-block .vtg-art-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none !important;
    color: inherit !important;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
  }

  #vtg-art-block .vtg-art-card:hover {
    box-shadow: 0 12px 36px rgba(0,0,0,0.09);
    transform: translateY(-3px);
    color: inherit !important;
  }

  #vtg-art-block .vtg-art-img {
    overflow: hidden;
    background: #e8e8e8;
    height: 200px;
    flex-shrink: 0;
  }

  #vtg-art-block .vtg-art-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
  }

  #vtg-art-block .vtg-art-card:hover .vtg-art-img img {
    transform: scale(1.05);
  }

  #vtg-art-block .vtg-art-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  #vtg-art-block .vtg-art-tag {
    display: inline-flex;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1f2c37;
    background: #f0f2f5;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
    align-self: flex-start;
  }

  /* Статья Полины — акцентный тег */
  #vtg-art-block .vtg-art-tag-author {
    display: inline-flex;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    background: #1f2c37;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
    align-self: flex-start;
  }

  #vtg-art-block .vtg-art-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1d1d1f;
    line-height: 1.4;
    margin: 0 0 8px;
  }

  #vtg-art-block .vtg-art-body p {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin: 0 0 16px;
    flex: 1;
  }

  #vtg-art-block .vtg-art-author-line {
    font-size: 12px;
    color: #aaa;
    margin: 0 0 16px;
    font-style: italic;
  }

  #vtg-art-block .vtg-art-link {
    font-size: 13px;
    font-weight: 600;
    color: #1f2c37;
    align-self: flex-start;
  }

  /* КНОПКА */
  #vtg-art-block .vtg-art-btn-wrap { text-align: center; }

  #vtg-art-block .vtg-art-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1f2c37;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 12px;
    transition: background 0.2s, transform 0.2s;
  }

  #vtg-art-block .vtg-art-btn:hover {
    background: #2a3a47;
    transform: translateY(-1px);
    color: #ffffff !important;
  }

  /* МОБИЛЬНЫЙ */
  @media (max-width: 900px) {
    #vtg-art-block .vtg-art { padding: 60px 0; }
    #vtg-art-block .vtg-art-wrap { padding: 0 16px; }
    #vtg-art-block .vtg-art-grid { grid-template-columns: repeat(2, 1fr); }
    #vtg-art-block .vtg-art-top { flex-direction: column; align-items: flex-start; gap: 12px; }
  }

  @media (max-width: 560px) {
    #vtg-art-block .vtg-art-grid { grid-template-columns: 1fr; }
    #vtg-art-block .vtg-art-img { height: 180px; }
  }

  @media (max-width: 375px) {
    #vtg-art-block .vtg-art-wrap { padding: 0 12px; }
    #vtg-art-block .vtg-art-body { padding: 18px; }
  }

/* ─── BLOCK 6 ─── */
#vtg-cta-block,
#vtg-cta-block.vtg-cta {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    background: #1f2c37 !important;
    color: #ffffff;
    padding: 80px 0 80px 0 !important;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
  }

  #vtg-cta-block::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.06);
    pointer-events: none;
  }

  #vtg-cta-block::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.03);
    pointer-events: none;
  }

  #vtg-cta-block .vtg-cta-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 48px;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  #vtg-cta-block .vtg-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
  }

  #vtg-cta-block .vtg-cta-eyebrow::before,
  #vtg-cta-block .vtg-cta-eyebrow::after {
    content: '';
    width: 24px;
    height: 1px;
    background: rgba(135,176,217,0.55);
    display: block;
  }

  #vtg-cta-block .vtg-cta-title {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -1.5px;
    line-height: 1.08;
    margin: 0 0 16px;
  }

  #vtg-cta-block .vtg-cta-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    margin: 0 0 40px;
    line-height: 1.6;
  }

  #vtg-cta-block .vtg-cta-btns {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 14px;
    margin: 0 auto;
    max-width: 420px;
  }

  #vtg-cta-block .vtg-cta-btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
    color: #1f2c37 !important;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 700;
    padding: 18px 36px;
    border-radius: 100px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  }

  #vtg-cta-block .vtg-cta-btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
    background: #f4f4f7;
    color: #1f2c37 !important;
  }

  #vtg-cta-block .vtg-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 600;
    padding: 18px 36px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.18);
    transition: background 0.2s, transform 0.2s;
  }

  #vtg-cta-block .vtg-cta-btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
    color: #ffffff !important;
  }

  #vtg-cta-block .vtg-cta-divider {
    display: block;
    width: 100%;
    max-width: 420px;
    height: 1px;
    background: rgba(255,255,255,0.18);
    margin: 36px auto 0;
  }

  #vtg-cta-block .vtg-cta-contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 28px;
  }

  #vtg-cta-block .vtg-cta-phone {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff !important;
    text-decoration: none !important;
    letter-spacing: -0.3px;
    transition: opacity 0.2s;
  }

  #vtg-cta-block .vtg-cta-phone:hover { opacity: 0.7; color: #ffffff !important; }

  #vtg-cta-block .vtg-cta-socials {
    display: flex;
    gap: 18px;
    align-items: center;
  }

  #vtg-cta-block .vtg-cta-socials a {
    width: auto;
    height: auto;
    background: transparent !important;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, opacity 0.2s;
    text-decoration: none !important;
    box-shadow: none !important;
  }

  #vtg-cta-block .vtg-cta-socials a:hover {
    background: transparent !important;
    transform: translateY(-2px);
    opacity: 0.8;
    box-shadow: none !important;
  }

  #vtg-cta-block .vtg-cta-socials a svg { width: 26px; height: 26px; display: block; fill: #ffffff; }

  #vtg-cta-block .vtg-sn-tg,
  #vtg-cta-block .vtg-sn-wa,
  #vtg-cta-block .vtg-sn-vb { background: transparent !important; }

  #vtg-cta-block .vtg-cta-note {
    margin-top: 32px;
    font-size: 13px;
    color: rgba(30,37,53,0.35);
  }

  @media (max-width: 768px) {
    #vtg-cta-block { padding: 60px 0 60px 0 !important; }
    #vtg-cta-block .vtg-cta-wrap { padding: 0 24px; }
    #vtg-cta-block::before, #vtg-cta-block::after { display: none; }
  }

  @media (max-width: 560px) {
    #vtg-cta-block { padding: 60px 0 60px 0 !important; }
    #vtg-cta-block .vtg-cta-wrap { padding: 0 16px; }
    #vtg-cta-block .vtg-cta-btn-main, #vtg-cta-block .vtg-cta-btn-secondary { width: 100%; justify-content: center; }
    #vtg-cta-block .vtg-cta-contacts { gap: 16px; }
    #vtg-cta-block .vtg-cta-title { letter-spacing: -1px; }
  }

  @media (max-width: 375px) {
    #vtg-cta-block .vtg-cta-title { font-size: 28px; }
    #vtg-cta-block .vtg-cta-subtitle { font-size: 16px; }
  }



/* ============================================================
   ARENDA CITY PAGES — shared systemic fixes (TZ 2026-07-24, Eugene msg 2019)
   Scoped to arenda pages via body.vtg-arenda-page (set by body_class hook
   in aiblocks.php) so home + city pages are NOT affected — same IDs/classes.
   1) center lone card(s) in incomplete last row: Районы / Наш процесс / Преимущества
   2) «Ваш специалист» block — add brand rubric dash + center heading
   3) unify block-heading alignment (center «Почему мы»)
   ============================================================ */

/* — 1. Incomplete last row → convert 3-col grids to centered flex — */
body.vtg-arenda-page #vt-warszawa-rayony .vtg-w-districts-grid,
body.vtg-arenda-page #vtg-how-block .vtg-how-steps,
body.vtg-arenda-page #vtg-home-why .vtg-h-why-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
/* districts — base gap 20 */
body.vtg-arenda-page #vt-warszawa-rayony .vtg-w-districts-grid > .vtg-w-district {
    flex: 0 1 calc((100% - 40px) / 3); min-width: 0;
}
/* process steps — base gap 20 */
body.vtg-arenda-page #vtg-how-block .vtg-how-steps > .vtg-how-step {
    flex: 0 1 calc((100% - 40px) / 3); min-width: 0;
}
/* advantages — base gap 24 */
body.vtg-arenda-page #vtg-home-why .vtg-h-why-grid > .vtg-h-why-item {
    flex: 0 1 calc((100% - 48px) / 3); min-width: 0;
}
@media (max-width: 900px) {
    /* districts → 2-col, gap 14 at this breakpoint */
    body.vtg-arenda-page #vt-warszawa-rayony .vtg-w-districts-grid > .vtg-w-district {
        flex-basis: calc((100% - 14px) / 2);
    }
    /* advantages → 2-col, gap 24 */
    body.vtg-arenda-page #vtg-home-why .vtg-h-why-grid > .vtg-h-why-item {
        flex-basis: calc((100% - 24px) / 2);
    }
    /* process steps go straight to 1-col at 900 (matches original grid) */
    body.vtg-arenda-page #vtg-how-block .vtg-how-steps > .vtg-how-step {
        flex-basis: 100%;
    }
}
@media (max-width: 560px) {
    body.vtg-arenda-page #vt-warszawa-rayony .vtg-w-districts-grid > .vtg-w-district,
    body.vtg-arenda-page #vtg-home-why .vtg-h-why-grid > .vtg-h-why-item {
        flex-basis: 100%;
    }
}

/* — 2+3. Unified block headers on ALL arenda pages (Eugene msg 2024) —
   Canonical = «Как мы помогаем»: centered title + centered eyebrow flanked by
   a dash on BOTH sides, uniform opacity. Applied across every eyebrow family so
   the single-dash / left-aligned / faded variants all collapse to one style. — */

/* center every eyebrow group (dash · label · dash) + uniform opacity */
body.vtg-arenda-page .vtg-w-eyebrow,
body.vtg-arenda-page .vtg-h-eyebrow,
body.vtg-arenda-page .vtg-art-eyebrow,
body.vtg-arenda-page .vtg-how-eyebrow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto; margin-right: auto;
    opacity: 0.5;
}
/* add the right-hand flanking dash where only the left one exists */
body.vtg-arenda-page .vtg-w-eyebrow::after,
body.vtg-arenda-page .vtg-h-eyebrow::after,
body.vtg-arenda-page .vtg-art-eyebrow::after {
    content: '';
    width: 28px; height: 1px;
    background: var(--vtg-color-brand, #1f2c37);
    display: block;
}
/* center every block title */
body.vtg-arenda-page .vtg-w-title,
body.vtg-arenda-page .vtg-h-title,
body.vtg-arenda-page .vtg-art-title,
body.vtg-arenda-page .vtg-how-title {
    text-align: center;
}
/* «Полезные статьи»: stack the top row so eyebrow, title and the
   «Все статьи →» link all sit centered (was flex space-between → left) */
body.vtg-arenda-page #vtg-art-block .vtg-art-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
/* «Ваш специалист» — named eyebrow «Ваш риелтор» added in page markup; center header */
body.vtg-arenda-page #vt-warszawa-komanda .vtg-h-team-head {
    text-align: center;
}


/* — Uniform section rhythm on arenda pages (Eugene msg 2035 → 100px) —
   scam / mistakes / «Почему мы» were 64/64 & 60/60 → bring to 100/100 like the
   main content sections so block-to-block spacing is an even 200px. Thin accent
   blocks (hero, mini-CTA, Telegram plate, cities) intentionally left smaller.
   Scoped by section ID (base .vtg-w/.vtg-h-section padding lives in common.css). — */
body.vtg-arenda-page #vt-av-scam,
body.vtg-arenda-page #vt-av-mistakes,
body.vtg-arenda-page #vtg-home-why {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}
@media (max-width: 900px) {
    body.vtg-arenda-page #vt-av-scam,
    body.vtg-arenda-page #vt-av-mistakes,
    body.vtg-arenda-page #vtg-home-why {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}


/* ============================================================
   KUPIT-KVARTIRU (purchase) CITY PAGES — same consistency pass as arenda
   (Eugene msg 2037-2041). Scoped via body.vtg-pokupka-page (body_class hook
   in aiblocks.php for the 11 kupit page IDs). Purchase pages reuse the same
   section IDs/classes as arenda + city pages, so scoping is mandatory.
   arenda.css is enqueued on all kupit pages, so these rules live here.
   ============================================================ */

/* — 1. Center incomplete last rows across all card grids — */
body.vtg-pokupka-page #vt-warszawa-rayony .vtg-w-districts-grid,
body.vtg-pokupka-page #vtg-how-block .vtg-how-steps,
body.vtg-pokupka-page #vtg-home-why .vtg-h-why-grid,
body.vtg-pokupka-page #vt-kv-mistakes .vtg-kv-mist-grid,
body.vtg-pokupka-page #vt-warszawa-obyavleniya .vtg-w-listings-grid {
    display: flex; flex-wrap: wrap; justify-content: center;
}
body.vtg-pokupka-page #vt-warszawa-rayony .vtg-w-districts-grid > .vtg-w-district { flex: 0 1 calc((100% - 40px) / 3); min-width: 0; }
body.vtg-pokupka-page #vtg-how-block .vtg-how-steps > .vtg-how-step { flex: 0 1 calc((100% - 40px) / 3); min-width: 0; }
body.vtg-pokupka-page #vtg-home-why .vtg-h-why-grid > .vtg-h-why-item { flex: 0 1 calc((100% - 48px) / 3); min-width: 0; }
body.vtg-pokupka-page #vt-kv-mistakes .vtg-kv-mist-grid > .vtg-kv-mist-card { flex: 0 1 calc((100% - 40px) / 3); min-width: 0; }
body.vtg-pokupka-page #vt-warszawa-obyavleniya .vtg-w-listings-grid > .vtg-w-listing { flex: 0 1 calc((100% - 48px) / 3); min-width: 0; }
@media (max-width: 900px) {
    body.vtg-pokupka-page #vt-warszawa-rayony .vtg-w-districts-grid > .vtg-w-district { flex-basis: calc((100% - 14px) / 2); }
    body.vtg-pokupka-page #vtg-how-block .vtg-how-steps > .vtg-how-step { flex-basis: 100%; }
    body.vtg-pokupka-page #vtg-home-why .vtg-h-why-grid > .vtg-h-why-item { flex-basis: calc((100% - 24px) / 2); }
    body.vtg-pokupka-page #vt-kv-mistakes .vtg-kv-mist-grid > .vtg-kv-mist-card { flex-basis: calc((100% - 20px) / 2); }
    body.vtg-pokupka-page #vt-warszawa-obyavleniya .vtg-w-listings-grid > .vtg-w-listing { flex-basis: calc((100% - 16px) / 2); }
}
@media (max-width: 560px) {
    body.vtg-pokupka-page #vt-warszawa-rayony .vtg-w-districts-grid > .vtg-w-district,
    body.vtg-pokupka-page #vtg-home-why .vtg-h-why-grid > .vtg-h-why-item,
    body.vtg-pokupka-page #vt-kv-mistakes .vtg-kv-mist-grid > .vtg-kv-mist-card,
    body.vtg-pokupka-page #vt-warszawa-obyavleniya .vtg-w-listings-grid > .vtg-w-listing { flex-basis: 100%; }
}

/* — 2. Unified block headers (centered title + centered eyebrow w/ double dash) — */
body.vtg-pokupka-page .vtg-w-eyebrow,
body.vtg-pokupka-page .vtg-h-eyebrow,
body.vtg-pokupka-page .vtg-art-eyebrow,
body.vtg-pokupka-page .vtg-how-eyebrow {
    display: flex; justify-content: center; align-items: center;
    margin-left: auto; margin-right: auto; opacity: 0.5;
}
body.vtg-pokupka-page .vtg-w-eyebrow::after,
body.vtg-pokupka-page .vtg-h-eyebrow::after,
body.vtg-pokupka-page .vtg-art-eyebrow::after {
    content: ''; width: 28px; height: 1px;
    background: var(--vtg-color-brand, #1f2c37); display: block;
}
body.vtg-pokupka-page .vtg-w-title,
body.vtg-pokupka-page .vtg-h-title,
body.vtg-pokupka-page .vtg-art-title,
body.vtg-pokupka-page .vtg-how-title { text-align: center; }
body.vtg-pokupka-page #vtg-art-block .vtg-art-top {
    flex-direction: column; align-items: center; text-align: center;
}
body.vtg-pokupka-page #vt-warszawa-komanda .vtg-h-team-head { text-align: center; }

/* — 3. Uniform section rhythm → 100px (kv-mistakes 64, «Почему мы» 60, kv-cities 60 → 100) — */
body.vtg-pokupka-page #vt-kv-mistakes,
body.vtg-pokupka-page #vtg-home-why,
body.vtg-pokupka-page #vtg-kv-cities {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}
@media (max-width: 900px) {
    body.vtg-pokupka-page #vt-kv-mistakes,
    body.vtg-pokupka-page #vtg-home-why,
    body.vtg-pokupka-page #vtg-kv-cities {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}
