/* ============================================================
   LANDING HOME — FINAL POLISH (DARK)
   Дополняет landing-home-polish.css. Применяется только к body.landing-page--home.
   Цель: сделать визуальную ритмику единой, добавить тонкие акценты,
   улучшить мобильную версию. Не меняет общую композицию.
   ============================================================ */

/* ────────────── 1. ЕДИНЫЙ РИТМ И ТИПОГРАФИКА СЕКЦИЙ ────────────── */
body.landing-page--home .landing-section {
    padding: 80px 0;
    position: relative;
}
body.landing-page--home .landing-section + .landing-section {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
body.landing-page--home .landing-section-heading {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    text-align: center;
}
body.landing-page--home .landing-section-subtitle {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ────────────── 2. VALUE PROPS — карточки одинаковой высоты + glow ────────────── */
body.landing-page--home .value-props-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: stretch;
}
body.landing-page--home .value-prop-card {
    position: relative;
    background: linear-gradient(160deg, rgba(28, 28, 48, 0.95), rgba(18, 18, 35, 0.98)) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px;
    padding: 36px 28px;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}
body.landing-page--home .value-prop-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(420px 220px at 50% 0%, var(--vp-glow, rgba(102, 126, 234, 0.18)), transparent 60%);
    pointer-events: none;
    opacity: 0.9;
}
body.landing-page--home .value-prop-card > * { position: relative; z-index: 1; }

body.landing-page--home .value-prop-owner { --vp-glow: rgba(16, 185, 129, 0.18); }
body.landing-page--home .value-prop-contractor { --vp-glow: rgba(102, 126, 234, 0.20); }

body.landing-page--home .value-prop-card:hover {
    transform: translateY(-4px);
    border-color: rgba(167, 139, 250, 0.35) !important;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5), 0 0 30px rgba(167, 139, 250, 0.12);
}

body.landing-page--home .value-prop-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    background: rgba(102, 126, 234, 0.12);
    color: #c4b5fd;
    border: 1px solid rgba(102, 126, 234, 0.32);
    margin-bottom: 16px;
    box-shadow: 0 8px 22px rgba(102, 126, 234, 0.18);
}
body.landing-page--home .value-prop-owner .value-prop-icon {
    background: rgba(16, 185, 129, 0.14);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.32);
    box-shadow: 0 8px 22px rgba(16, 185, 129, 0.18);
}

body.landing-page--home .value-prop-for {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 800;
    color: #a78bfa;
    margin-bottom: 8px;
}
body.landing-page--home .value-prop-owner .value-prop-for { color: #34d399; }

body.landing-page--home .value-prop-headline {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff !important;
    line-height: 1.25;
    margin-bottom: 18px;
}

body.landing-page--home .value-prop-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
body.landing-page--home .value-prop-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(245, 245, 250, 0.78);
    line-height: 1.45;
    font-size: 0.94rem;
}
body.landing-page--home .value-prop-list li i {
    flex-shrink: 0;
    color: #34d399;
    font-size: 1.1rem;
    margin-top: 2px;
}
body.landing-page--home .value-prop-contractor .value-prop-list li i {
    color: #60a5fa;
}

body.landing-page--home .value-prop-price {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    padding: 10px 14px;
    margin-bottom: 18px;
    text-align: center;
    font-size: 0.86rem;
    font-weight: 700;
    color: rgba(245, 245, 250, 0.85);
}
body.landing-page--home .value-prop-owner .value-prop-price {
    background: rgba(16, 185, 129, 0.10);
    border-color: rgba(16, 185, 129, 0.28);
    color: #6ee7b7;
}
body.landing-page--home .value-prop-contractor .value-prop-price {
    background: rgba(102, 126, 234, 0.10);
    border-color: rgba(102, 126, 234, 0.28);
    color: #c4b5fd;
}

body.landing-page--home .value-prop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    border: none;
}
body.landing-page--home .value-prop-btn-owner {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.32);
}
body.landing-page--home .value-prop-btn-owner:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(16, 185, 129, 0.42);
    color: #ffffff;
}
body.landing-page--home .value-prop-btn-contractor {
    background: linear-gradient(135deg, #667eea, #8b5cf6);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(102, 126, 234, 0.32);
}
body.landing-page--home .value-prop-btn-contractor:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(102, 126, 234, 0.42);
    color: #ffffff;
}

/* ────────────── 3. COUNTERS — добавляем легкий glow и единообразие ────────────── */
body.landing-page--home .landing-counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
body.landing-page--home .landing-counter-item {
    background: linear-gradient(160deg, rgba(28, 28, 48, 0.85), rgba(18, 18, 35, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 28px 18px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}
body.landing-page--home .landing-counter-item:hover {
    transform: translateY(-3px);
    border-color: rgba(167, 139, 250, 0.30);
}
body.landing-page--home .counter-value {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff, #c4b5fd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
body.landing-page--home .counter-label {
    color: rgba(245, 245, 250, 0.65);
    font-size: 0.85rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

/* ────────────── 4. FLOW — путь заказчика и подрядчика ────────────── */
body.landing-page--home .flow-path {
    background: linear-gradient(160deg, rgba(28, 28, 48, 0.6), rgba(18, 18, 35, 0.3));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    padding: 28px 20px;
}
body.landing-page--home .flow-path-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 22px;
}
body.landing-page--home .flow-path-label-owner {
    background: rgba(16, 185, 129, 0.14);
    border: 1px solid rgba(16, 185, 129, 0.32);
    color: #6ee7b7;
}
body.landing-page--home .flow-path-label-contractor {
    background: rgba(59, 130, 246, 0.14);
    border: 1px solid rgba(59, 130, 246, 0.32);
    color: #93c5fd;
}

body.landing-page--home .landing-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 18px;
    align-items: stretch;
}
body.landing-page--home .landing-flow-item {
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 22px 18px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}
body.landing-page--home .landing-flow-item:hover {
    transform: translateY(-3px);
    border-color: rgba(167, 139, 250, 0.32);
}
body.landing-page--home .landing-flow-number {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center; justify-content: center;
    color: #ffffff;
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}
body.landing-page--home .landing-flow-item h3 {
    font-size: 1.05rem !important;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 8px;
}
body.landing-page--home .landing-flow-item p {
    color: rgba(245, 245, 250, 0.72) !important;
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
}
body.landing-page--home .landing-flow-arrow {
    color: rgba(167, 139, 250, 0.45);
    font-size: 1.4rem;
    align-self: center;
}

/* ────────────── 5. INTEGRATIONS — ровный grid, тонкий glow ────────────── */
body.landing-page--home .landing-integrations-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
body.landing-page--home .integration-card-v2 {
    position: relative;
    background: linear-gradient(160deg, rgba(28, 28, 48, 0.85), rgba(18, 18, 35, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 24px 22px;
    transition: transform 0.2s ease, border-color 0.2s ease;
    overflow: hidden;
}
body.landing-page--home .integration-card-v2:hover {
    transform: translateY(-3px);
    border-color: rgba(167, 139, 250, 0.32);
}
body.landing-page--home .integration-card-v2-glow {
    position: absolute;
    top: -40px; left: 50%;
    transform: translateX(-50%);
    width: 110px; height: 110px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.20;
    pointer-events: none;
}
body.landing-page--home .integration-card-v2-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
body.landing-page--home .integration-card-v2-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 6px;
}
body.landing-page--home .integration-card-v2-desc {
    color: rgba(245, 245, 250, 0.65) !important;
    font-size: 0.86rem;
    line-height: 1.5;
}

/* ────────────── 6. PRICING — финальный шарм ────────────── */
body.landing-page--home .pricing-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 920px;
    margin: 0 auto;
}
body.landing-page--home .pricing-card-v2 {
    position: relative;
    background: linear-gradient(160deg, rgba(28, 28, 48, 0.95), rgba(18, 18, 35, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 36px 28px 32px;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
body.landing-page--home .pricing-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5);
}
body.landing-page--home .pricing-owner { --pricing-color: #10b981; }
body.landing-page--home .pricing-contractor { --pricing-color: #667eea; }
body.landing-page--home .pricing-owner:hover { border-color: rgba(16, 185, 129, 0.45) !important; }
body.landing-page--home .pricing-contractor:hover { border-color: rgba(102, 126, 234, 0.45) !important; }

body.landing-page--home .pricing-v2-glow {
    position: absolute;
    top: -60px; left: 50%;
    transform: translateX(-50%);
    width: 200px; height: 200px;
    border-radius: 50%;
    background: var(--pricing-color);
    opacity: 0.18;
    filter: blur(50px);
    pointer-events: none;
}
body.landing-page--home .pricing-v2-badge-free,
body.landing-page--home .pricing-v2-badge-pro {
    position: absolute;
    top: 16px; right: 16px;
    background: linear-gradient(135deg, var(--pricing-color), color-mix(in srgb, var(--pricing-color) 70%, white));
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.32);
}
body.landing-page--home .pricing-v2-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--pricing-color);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 14px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.32);
}
body.landing-page--home .pricing-v2-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffffff !important;
    margin-bottom: 4px;
}
body.landing-page--home .pricing-v2-for {
    color: rgba(245, 245, 250, 0.65) !important;
    font-size: 0.86rem;
    margin-bottom: 16px;
}
body.landing-page--home .pricing-v2-price-block {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
body.landing-page--home .pricing-v2-price {
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 900;
    color: #ffffff !important;
    line-height: 1;
}
body.landing-page--home .pricing-v2-period {
    color: rgba(245, 245, 250, 0.55) !important;
    font-size: 0.86rem;
}
body.landing-page--home .pricing-v2-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.10), transparent);
    margin: 16px 0;
}
body.landing-page--home .pricing-v2-features {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
body.landing-page--home .pricing-v2-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(245, 245, 250, 0.80) !important;
    font-size: 0.92rem;
    line-height: 1.4;
}
body.landing-page--home .pricing-v2-features li i {
    color: var(--pricing-color);
    flex-shrink: 0;
    font-size: 1rem;
    margin-top: 3px;
}
body.landing-page--home .pricing-v2-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    border: none;
}
body.landing-page--home .pricing-v2-btn-owner {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.32);
}
body.landing-page--home .pricing-v2-btn-owner:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(16, 185, 129, 0.45);
    color: #ffffff;
}
body.landing-page--home .pricing-v2-btn-contractor {
    background: linear-gradient(135deg, #667eea, #8b5cf6);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(102, 126, 234, 0.32);
}
body.landing-page--home .pricing-v2-btn-contractor:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(102, 126, 234, 0.45);
    color: #ffffff;
}
body.landing-page--home .pricing-v2-guarantee {
    margin-top: 28px;
    padding: 14px 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: rgba(245, 245, 250, 0.78) !important;
    font-size: 0.88rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}
body.landing-page--home .pricing-v2-guarantee i {
    color: #34d399;
    font-size: 1.1rem;
}

/* ────────────── 7. FAQ — premium accordions ────────────── */
body.landing-page--home .faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
body.landing-page--home .faq-item {
    background: linear-gradient(160deg, rgba(28, 28, 48, 0.85), rgba(18, 18, 35, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
body.landing-page--home .faq-item:hover {
    border-color: rgba(167, 139, 250, 0.32);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}
body.landing-page--home .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    transition: background 0.2s ease;
}
body.landing-page--home .faq-question:hover {
    background: rgba(167, 139, 250, 0.04);
}
body.landing-page--home .faq-question h4 {
    margin: 0;
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 700;
    flex: 1;
}
body.landing-page--home .faq-toggle {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(167, 139, 250, 0.14);
    color: #c4b5fd;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease, background 0.25s ease;
}
body.landing-page--home .faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: rgba(167, 139, 250, 0.30);
}
body.landing-page--home .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 22px;
}
body.landing-page--home .faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 22px 18px;
}
body.landing-page--home .faq-answer p {
    margin: 0;
    color: rgba(245, 245, 250, 0.78) !important;
    line-height: 1.6;
    font-size: 0.94rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 14px;
}

/* ────────────── 8. FINAL CTA ────────────── */
body.landing-page--home .final-cta-box {
    position: relative;
    background: linear-gradient(160deg, rgba(28, 28, 48, 0.95), rgba(18, 18, 35, 0.98));
    border: 1px solid rgba(167, 139, 250, 0.32);
    border-radius: 28px;
    padding: 56px 32px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
body.landing-page--home .final-cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(420px 220px at 0% 0%, rgba(102, 126, 234, 0.18), transparent 60%),
        radial-gradient(420px 220px at 100% 100%, rgba(16, 185, 129, 0.14), transparent 60%);
    pointer-events: none;
}
body.landing-page--home .final-cta-box > * { position: relative; z-index: 1; }
body.landing-page--home .final-cta-box h2 {
    font-size: clamp(1.8rem, 4.2vw, 2.6rem);
    margin-bottom: 12px;
}
body.landing-page--home .final-cta-box p {
    color: rgba(245, 245, 250, 0.78) !important;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
}

/* ────────────── 9. CITIES SEO — компактные пилюли ────────────── */
body.landing-page--home .cities-seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 8px;
    margin-top: 24px;
}
body.landing-page--home .city-seo-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: rgba(245, 245, 250, 0.85) !important;
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 600;
    transition: all 0.15s ease;
}
body.landing-page--home .city-seo-pill i {
    color: #a78bfa;
    flex-shrink: 0;
}
body.landing-page--home .city-seo-pill:hover {
    background: rgba(167, 139, 250, 0.10);
    border-color: rgba(167, 139, 250, 0.32);
    color: #ffffff !important;
    transform: translateY(-1px);
}

/* ────────────── 10. SECURITY & TRUST REASONS ────────────── */
body.landing-page--home .security-grid,
body.landing-page--home .trust-reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 40px;
}
body.landing-page--home .security-card,
body.landing-page--home .trust-reason-card {
    background: linear-gradient(160deg, rgba(28, 28, 48, 0.85), rgba(18, 18, 35, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 26px 22px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}
body.landing-page--home .security-card:hover,
body.landing-page--home .trust-reason-card:hover {
    transform: translateY(-3px);
    border-color: rgba(167, 139, 250, 0.32);
}
body.landing-page--home .security-card-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 14px;
}
body.landing-page--home .security-card h4,
body.landing-page--home .trust-reason-card h4 {
    color: #ffffff !important;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 8px;
}
body.landing-page--home .security-card p,
body.landing-page--home .trust-reason-card p {
    color: rgba(245, 245, 250, 0.72) !important;
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
}
body.landing-page--home .trust-reason-number {
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #a78bfa, #67e8f9);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

/* ────────────── 11. ECOSYSTEM ────────────── */
body.landing-page--home .ecosystem-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
body.landing-page--home .ecosystem-card-v2 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(160deg, rgba(28, 28, 48, 0.85), rgba(18, 18, 35, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 22px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, border-color 0.2s ease;
    overflow: hidden;
}
body.landing-page--home .ecosystem-card-v2:hover {
    transform: translateY(-3px);
    border-color: rgba(167, 139, 250, 0.32);
}
body.landing-page--home .ecosystem-card-v2-glow {
    position: absolute;
    top: -40px; right: -40px;
    width: 110px; height: 110px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.18;
    pointer-events: none;
}
body.landing-page--home .ecosystem-card-v2-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
body.landing-page--home .ecosystem-card-v2-content {
    flex: 1;
    position: relative;
    z-index: 1;
}
body.landing-page--home .ecosystem-card-v2-title {
    color: #ffffff !important;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 4px;
}
body.landing-page--home .ecosystem-card-v2-desc {
    color: rgba(245, 245, 250, 0.70) !important;
    font-size: 0.84rem;
    line-height: 1.4;
}
body.landing-page--home .ecosystem-card-v2-badge {
    position: absolute;
    top: 14px; right: 14px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    z-index: 2;
}
body.landing-page--home .ecosystem-badge-active {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.32);
    color: #34d399;
}

/* ────────────── 12. QUICKSTART TIMELINE ────────────── */
body.landing-page--home .quickstart-timeline {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 16px;
    align-items: stretch;
}
body.landing-page--home .quickstart-step {
    background: linear-gradient(160deg, rgba(28, 28, 48, 0.85), rgba(18, 18, 35, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
}
body.landing-page--home .quickstart-step:hover {
    transform: translateY(-3px);
    border-color: rgba(167, 139, 250, 0.32);
}
body.landing-page--home .quickstart-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 12px;
    background: rgba(102, 126, 234, 0.14);
    border: 1px solid rgba(102, 126, 234, 0.32);
    border-radius: 999px;
    color: #c4b5fd;
    font-size: 0.74rem;
    font-weight: 800;
    margin-bottom: 14px;
}
body.landing-page--home .quickstart-step-num-done {
    background: rgba(16, 185, 129, 0.14);
    border-color: rgba(16, 185, 129, 0.32);
    color: #34d399;
}
body.landing-page--home .quickstart-step-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 14px;
}
body.landing-page--home .quickstart-step h4 {
    color: #ffffff !important;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 8px;
}
body.landing-page--home .quickstart-step p {
    color: rgba(245, 245, 250, 0.72) !important;
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
}
body.landing-page--home .quickstart-connector {
    color: rgba(167, 139, 250, 0.45);
    font-size: 1.5rem;
    align-self: center;
}

/* ────────────── 13. REVIEWS ────────────── */
body.landing-page--home .landing-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
body.landing-page--home .landing-review-card {
    background: linear-gradient(160deg, rgba(28, 28, 48, 0.85), rgba(18, 18, 35, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 28px 24px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}
body.landing-page--home .landing-review-card:hover {
    transform: translateY(-3px);
    border-color: rgba(167, 139, 250, 0.32);
}
body.landing-page--home .review-stars {
    margin-bottom: 14px;
    color: #fbbf24;
    font-size: 1.05rem;
}
body.landing-page--home .review-text {
    color: rgba(245, 245, 250, 0.85) !important;
    font-size: 0.96rem;
    line-height: 1.6;
    margin-bottom: 18px;
}
body.landing-page--home .review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
body.landing-page--home .review-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #8b5cf6);
    color: #ffffff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
body.landing-page--home .review-avatar-company {
    background: linear-gradient(135deg, #10b981, #06b6d4);
}
body.landing-page--home .review-info { flex: 1; min-width: 0; }
body.landing-page--home .review-name {
    color: #ffffff !important;
    font-weight: 800;
    font-size: 0.96rem;
    margin-bottom: 2px;
}
body.landing-page--home .review-role {
    color: rgba(245, 245, 250, 0.60) !important;
    font-size: 0.82rem;
}
body.landing-page--home .review-badge {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
body.landing-page--home .review-badge-owner {
    background: rgba(16, 185, 129, 0.14);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.32);
}
body.landing-page--home .review-badge-company {
    background: rgba(102, 126, 234, 0.14);
    color: #c4b5fd;
    border: 1px solid rgba(102, 126, 234, 0.32);
}

/* ────────────── 14. MOBILE ADAPTATION ────────────── */
@media (max-width: 992px) {
    body.landing-page--home .landing-section { padding: 64px 0; }
    body.landing-page--home .value-props-grid,
    body.landing-page--home .pricing-grid-v2,
    body.landing-page--home .landing-reviews-grid {
        grid-template-columns: 1fr;
    }
    body.landing-page--home .landing-counters {
        grid-template-columns: repeat(2, 1fr);
    }
    body.landing-page--home .landing-flow {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    body.landing-page--home .landing-flow-arrow {
        justify-self: center;
        transform: rotate(90deg);
    }
    body.landing-page--home .landing-integrations-grid-v2,
    body.landing-page--home .ecosystem-grid-v2,
    body.landing-page--home .security-grid,
    body.landing-page--home .trust-reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    body.landing-page--home .quickstart-timeline {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    body.landing-page--home .quickstart-connector {
        justify-self: center;
        transform: rotate(90deg);
    }
}

@media (max-width: 540px) {
    body.landing-page--home .landing-section { padding: 48px 0; }
    body.landing-page--home .value-prop-card,
    body.landing-page--home .pricing-card-v2 { padding: 24px 18px; }
    body.landing-page--home .value-prop-headline { font-size: 1.2rem; }
    body.landing-page--home .pricing-v2-title { font-size: 1.4rem; }
    body.landing-page--home .pricing-v2-icon { width: 56px; height: 56px; font-size: 1.5rem; }
    body.landing-page--home .landing-counters { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    body.landing-page--home .landing-counter-item { padding: 20px 12px; }
    body.landing-page--home .landing-integrations-grid-v2,
    body.landing-page--home .ecosystem-grid-v2,
    body.landing-page--home .security-grid,
    body.landing-page--home .trust-reasons-grid {
        grid-template-columns: 1fr;
    }
    body.landing-page--home .cities-seo-grid {
        grid-template-columns: 1fr;
    }
    body.landing-page--home .final-cta-box { padding: 40px 22px; }
    body.landing-page--home .flow-path { padding: 22px 16px; }
    body.landing-page--home .quickstart-step,
    body.landing-page--home .integration-card-v2,
    body.landing-page--home .ecosystem-card-v2,
    body.landing-page--home .security-card,
    body.landing-page--home .trust-reason-card,
    body.landing-page--home .landing-review-card {
        padding: 18px 16px;
    }
    body.landing-page--home .review-text { font-size: 0.9rem; }
    body.landing-page--home .faq-question { padding: 14px 16px; }
    body.landing-page--home .faq-answer { padding: 0 16px; }
    body.landing-page--home .faq-item.active .faq-answer { padding: 0 16px 14px; }
    body.landing-page--home .faq-question h4 { font-size: 0.94rem; }
}

/* ────────────── 15. ACCESSIBILITY: focus-visible ────────────── */
body.landing-page--home a:focus-visible,
body.landing-page--home button:focus-visible {
    outline: 2px solid rgba(167, 139, 250, 0.6);
    outline-offset: 3px;
    border-radius: 8px;
}

/* ────────────── 16. PREFERS REDUCED MOTION ────────────── */
@media (prefers-reduced-motion: reduce) {
    body.landing-page--home *,
    body.landing-page--home *::before,
    body.landing-page--home *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
