/*
Theme Name: Vigrama Studio
Theme URI: https://vigrama-studio.ru
Author: Vigrama Team
Description: Премиальная студия видеомонтажа
Version: 1.5.3
*/

:root {
    --primary-light: #8870ff;
    --primary-dark: #8657db;
    --bg-white: #ffffff;
    --bg-light: #f7f8f8;
    --text-dark: #000000;
    --text-light: #5a5a5a;
    --error: #dc3545;
    --star-color: #FFD700;
    --shadow: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-hover: 0 10px 25px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
    min-height: 100vh;
}

/* ===== БАЗОВАЯ ТИПОГРАФИКА ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0 !important;
}

/* ===== КНОПКИ ===== */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: white !important;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn-outline:hover {
    background: var(--primary-dark);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* ===== ЗАГОЛОВКИ СЕКЦИЙ ===== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h1,
.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: var(--text-dark);
}

.section-title h1::after,
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-dark));
    border-radius: 2px;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: var(--text-light);
}

/* ===== HEADER ===== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

#header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo img {
    max-width: 100%;
    height: auto;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(5deg);
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 30px;
}

nav ul li:first-child {
    margin-left: 0;
}

nav ul li a {
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    padding: 5px 0;
    position: relative;
    transition: all 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-dark));
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-dark);
    transform: translateY(-2px);
}

nav ul li a:hover::after {
    width: 100%;
}

.header-order-btn::after {
    display: none !important;
}

.header-order-btn {
    transition: all 0.3s ease !important;
}

.header-order-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(134, 87, 219, 0.3) !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-dark);
    cursor: pointer;
    z-index: 1001;
}

/* ===== HERO ===== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, rgba(136,112,255,0.05) 0%, rgba(255,255,255,0.95) 100%);
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-light);
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: block;
    color: var(--text-dark);
    text-decoration: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* ===== КНОПКА "ПОДРОБНЕЕ" В КАРТОЧКАХ УСЛУГ ===== */
.service-card .service-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 20px;
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
}

.service-card:hover .service-btn {
    background: var(--primary-dark);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

@media (max-width: 768px) {
    .service-card .service-btn {
        background: rgba(134, 87, 219, 0.08);
        border-color: var(--primary-dark);
    }
}

/* ===== PORTFOLIO ===== */
.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    background: transparent;
    border: 2px solid rgba(0,0,0,0.1);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: white;
    border-color: transparent;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(134,87,219,0.55), rgba(136,112,255,0.65));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
    z-index: 10;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.portfolio-overlay p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.play-btn {
    width: 50px;
    height: 50px;
    background: white;
    border: 0;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
    color: white;
}

/* ===== PROCESS ===== */
.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    margin-top: 50px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-dark));
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 20%;
    min-width: 180px;
    margin-bottom: 30px;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
    border: 5px solid var(--bg-light);
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ===== REVIEWS ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-light), var(--primary-dark));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.review-card:hover::before {
    transform: scaleY(1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.review-author {
    flex: 1;
}

.review-author-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.review-author p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.review-rating {
    display: flex;
    gap: 3px;
    color: var(--star-color);
}

.review-content p {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.review-service {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
}

.reviews-cta {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, rgba(136,112,255,0.05), rgba(134,87,219,0.05));
    border-radius: 15px;
}

/* ===== CONTACT ===== */
.contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-info > p {
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.contact-details {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.contact-detail {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    width: auto;
    max-width: 100%;
    margin-bottom: 0;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.contact-detail:hover {
    transform: translateY(-2px);
}

.contact-detail i,
.contact-detail .messenger-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-detail .messenger-logo {
    padding: 7px;
    object-fit: contain;
}

.contact-detail div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-detail strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0;
}

.contact-detail p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

.contact-info h4 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.contact-method {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(136,112,255,0.1);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: var(--primary-dark);
    color: white !important;
    transform: translateY(-2px);
}

.contact-form-container {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.required {
    color: var(--error);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-dark);
}

.contact-option {
    display: flex;
    gap: 15px;
}

.contact-option input {
    flex: 1;
}

.form-group small {
    display: block;
    margin-top: 5px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.field-error {
    color: var(--error) !important;
    font-size: 0.8rem !important;
    margin-top: 5px !important;
    display: block !important;
}

.form-control.error {
    border: 2px solid var(--error) !important;
}

/* ===== FOOTER ===== */
footer {
    background: var(--text-dark);
    color: white;
    padding: 50px 0 25px;
    margin-top: 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: white;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-dark));
}

.footer-column p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.footer-contact i {
    color: var(--primary-dark);
    width: 20px;
}

.footer-social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    transform: translateY(-3px);
}

.footer-contact a {
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: white;
    text-decoration: underline;
}

.footer-quick-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-quick-links li {
    margin: 0;
}

.footer-quick-links a,
.footer-quick-links span {
    display: inline-block;
    color: rgba(255,255,255,0.82);
    line-height: 2;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease, padding-left 0.25s ease;
}

.footer-quick-links a:hover {
    color: white;
    padding-left: 7px;
    transform: translateX(3px);
}

.footer-quick-links a::before {
    content: '›';
    display: inline-block;
    margin-right: 7px;
    color: var(--primary-light);
    transform: translateX(-2px);
    opacity: 0.75;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-quick-links a:hover::before {
    transform: translateX(0);
    opacity: 1;
}

.footer-contact .messenger-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    vertical-align: middle;
}

.messenger-logo {
    object-fit: contain;
}

.max-logo-small {
    width: 18px;
    height: 18px;
}

.yandex-zen-logo {
    width: 20px;
    height: 20px;
    display: block;
    object-fit: contain;
}

.footer-social-links a:hover .yandex-zen-logo,
.footer-social-links a:hover .messenger-logo {
    transform: scale(1.08);
}

.contact-detail {
    color: inherit;
    text-decoration: none;
}

.contact-detail:focus-visible,
.contact-method:focus-visible,
.play-btn:focus-visible,
.example-play-btn:focus-visible,
.footer-social-links a:focus-visible {
    outline: 3px solid rgba(136,112,255,0.45);
    outline-offset: 3px;
}

.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
}

/* ===== MODALS ===== */
.success-modal,
.video-modal,
.review-submit-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 3000;
    justify-content: center;
    align-items: center;
}

.success-modal.active,
.video-modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
}

.modal-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 1.8rem;
}

.modal-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.close-modal-btn {
    padding: 10px 30px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Видео модалка */
.video-modal-content {
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-modal-content video {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 85vh !important;
    object-fit: contain !important;
    border-radius: 10px;
}

.close-video-modal {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.close-video-modal:hover {
    color: var(--primary-light);
}

/* ===== ФОРМА ОТЗЫВА ===== */
.review-submit-content {
    background: white;
    max-width: 500px;
    width: 90%;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.close-review-submit {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-review-submit:hover {
    color: var(--primary-dark);
}

.review-submit-content h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.review-submit-content .form-group {
    margin-bottom: 20px;
}

.review-submit-content label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.review-submit-content input, 
.review-submit-content select, 
.review-submit-content textarea { 
    width: 100%; 
    padding: 12px; 
    border: 2px solid rgba(0,0,0,0.1); 
    border-radius: 10px; 
    font-size: 1rem; 
    font-family: 'Montserrat', sans-serif !important; 
    transition: border-color 0.3s ease; 
}

.review-submit-content input:focus, 
.review-submit-content select:focus, 
.review-submit-content textarea:focus { 
    outline: none; 
    border-color: var(--primary-dark); 
}

.star-rating {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
}

.star-rating i {
    font-size: 28px;
    color: #ccc;
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-rating i.active,
.star-rating i.fas {
    color: var(--star-color) !important;
    text-shadow: 0 0 5px rgba(255,215,0,0.5);
}

.star-rating i:hover {
    transform: scale(1.1);
}

/* ===== ФОРМА НА СТРАНИЦАХ УСЛУГ (БЕЛЫЙ ТЕКСТ) ===== */
#order-form label {
    color: white !important;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

#order-form input,
#order-form textarea,
#order-form select {
    color: white !important;
    background: rgba(255,255,255,0.2);
}

#order-form ::placeholder {
    color: rgba(255,255,255,0.7) !important;
}

#order-form small {
    color: rgba(255,255,255,0.7) !important;
}

#order-form .btn-primary {
    background: white !important;
    color: var(--primary-dark) !important;
    border: none;
    font-weight: 700;
}

#order-form .btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2) !important;
}

/* ===== УВЕДОМЛЕНИЯ ===== */
.copy-notification {
    position: fixed;
    top: 80px;
    right: 20px;
    background: var(--primary-dark);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    z-index: 99999;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: notificationSlideIn 0.3s ease;
}

@keyframes notificationSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes notificationSlideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* ===== ПУЛЬСАЦИЯ ДЛЯ ИКОНКИ УСЛУГИ ===== */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.service-hero-icon div {
    animation: pulse 2s infinite;
}

/* ===== БЫСТРЫЕ ССЫЛКИ В УСЛУГАХ ===== */
.quick-contact-link {
    transition: all 0.3s ease !important;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.quick-contact-link:hover {
    transform: translateX(5px) !important;
}

/* ===== ПРИМЕР РАБОТЫ В УСЛУГАХ ===== */
.example-work-card {
    transition: all 0.3s ease !important;
}

.example-work-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: var(--shadow-hover) !important;
}

.example-work-img {
    transition: transform 0.5s ease !important;
}

.example-work-card:hover .example-work-img {
    transform: scale(1.05);
}

.example-play-btn {
    display: inline-flex;
    border: 0;
    align-items: center;
    gap: 6px;
    background: var(--primary-dark);
    color: white;
    padding: 6px 14px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    transition: transform 0.3s ease !important;
    border: none;
}

.example-play-btn:hover {
    transform: scale(1.08) !important;
    background: var(--primary-dark) !important;
    color: white !important;
}

/* ===== FAQ ===== */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

/* ===== СКРЫТЫЕ ЭЛЕМЕНТЫ ===== */
.review-modal {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

footer + *:not(script):not(style) {
    display: none;
}

/* ===== СТРАНИЦА УСЛУГИ (SINGLE SERVICE) ===== */
.single-service .service-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f7f8f8 100%);
    position: relative;
    overflow: hidden;
}

.service-hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.service-hero-icon {
    flex: 0 0 120px;
    text-align: center;
}

.service-hero-icon div {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(134, 87, 219, 0.3);
}

.service-hero-icon div i {
    font-size: 3rem;
    color: white;
}

.service-hero-info {
    flex: 1;
}

.service-hero-info h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-hero-info p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-price {
    display: inline-block;
    background: white;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: var(--shadow);
}

.service-price span:first-child {
    font-size: 1rem;
    color: var(--text-light);
}

.service-price span:last-child {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-left: 15px;
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.related-service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease !important;
}

.related-service-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-hover) !important;
}

/* ===== СТРАНИЦА ПОРТФОЛИО (АРХИВ) ===== */
.archive-portfolio .page-header,
.post-type-archive-portfolio .page-header {
    padding: 120px 0 15px !important;
}

.archive-portfolio .page-header h1,
.post-type-archive-portfolio .page-header h1 {
    font-size: 2.5rem !important;
    margin-bottom: 12px;
}

.archive-portfolio .page-header p,
.post-type-archive-portfolio .page-header p {
    font-size: 1.15rem !important;
    max-width: 700px;
}

/* ===== ЯКОРЯ: дополнительный отступ ===== */
#process, #contact, #reviews, #services, #portfolio, #direct-form, #direct-form-title {
    scroll-margin-top: 96px;
}

/* ===== ПОЛИТИКА КОНФИДЕНЦИАЛЬНОСТИ ===== */
.privacy-policy h2,
.privacy-policy h1 {
    margin-top: 20px;
}

/* ============================================================================================================
   ПЛАНШЕТЫ (iPad Air, Surface Pro 7, Asus Zenbook Fold и др.) — БУРГЕР-МЕНЮ БЕЗ ВЫХОДА ЗА КРАЯ
   ============================================================================================================ */
@media (max-width: 1100px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .header-content {
        position: relative;
        flex-wrap: nowrap;
    }
    
    .logo {
        flex-shrink: 0;
    }
    
    .logo span {
        font-size: 1.3rem;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    
    .mobile-menu-btn {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        margin: 0;
        flex-shrink: 0;
        z-index: 1001;
    }
    
    nav ul {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    nav ul.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav ul li {
        margin: 12px 0 !important;
        width: 100%;
        text-align: center;
    }
    
    .services-grid,
    .portfolio-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .service-hero-content {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .service-hero-icon {
        margin-bottom: 20px;
    }
    
    .related-services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .step {
        width: calc(50% - 15px);
    }
}

/* ============================================================================================================
   ТЕЛЕФОНЫ (до 768px)
   ============================================================================================================ */
@media (max-width: 768px) {
    .header-content {
        position: relative;
    }
    .mobile-menu-btn {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        margin: 0;
    }
    
    nav ul {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    nav ul.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav ul li {
        margin: 12px 0 !important;
        width: 100%;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 40px 0 !important;
    }
    
    .section-title {
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .section-title h2 {
        font-size: 1.6rem !important;
    }
    
    .section-title p {
        font-size: 0.9rem !important;
    }
    
    .services-grid,
    .portfolio-grid,
    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    .portfolio-filter {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .portfolio-item {
        aspect-ratio: 4/3;
    }
    
    .play-btn {
        width: 45px !important;
        height: 45px !important;
        min-width: 45px !important;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        width: 100%;
        max-width: 400px;
        margin-bottom: 25px;
    }
    
    .step-number {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }
    
    .step h3 {
        font-size: 1rem;
    }
    
    .step p {
        font-size: 0.85rem;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-header {
        flex-wrap: wrap;
    }
    
    .review-rating {
        width: 100%;
        margin-top: 8px;
    }
    
    .review-content p {
        font-size: 0.9rem;
    }
    
    .review-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .reviews-cta {
        padding: 20px;
    }
    
    .reviews-cta p {
        font-size: 0.95rem;
    }
    
    .contact-detail i,
    .contact-detail .messenger-logo {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .contact-detail strong {
        font-size: 0.9rem;
    }
    
    .contact-detail p {
        font-size: 0.85rem;
    }
    
    .contact-methods {
        flex-direction: column;
    }
    
    .contact-method {
        width: 100%;
        justify-content: center;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .contact-option {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 25px;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social-links {
        justify-content: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .copyright p {
        font-size: 0.75rem;
    }
    
    .service-hero {
        padding: 100px 0 30px !important;
    }
    
    .service-hero-icon div {
        width: 80px !important;
        height: 80px !important;
    }
    
    .service-hero-icon div i {
        font-size: 2rem !important;
    }
    
    .service-hero-info h1 {
        font-size: 1.5rem !important;
    }
    
    .service-hero-info p {
        font-size: 1rem !important;
    }
    
    .service-price span:last-child {
        font-size: 1.5rem !important;
    }
    
    .service-main > .container > div {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
    }
    
    .service-main > .container > div > div {
        width: 100% !important;
        flex: none !important;
    }
    
    /* Фикс "Как мы работаем" — каждая карточка в 1 колонку с переносами */
    .service-description > div > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .service-description > div > div[style*="grid-template-columns"] > div {
        min-width: 0 !important;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .service-description > div > div[style*="grid-template-columns"] h4 {
        font-size: 0.95rem !important;
        margin-bottom: 3px !important;
    }
    
    .service-description > div > div[style*="grid-template-columns"] p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }
    
    /* Фикс отступов для блока "Как мы работаем" */
    .service-description [style*="background: #f7f8f8"] {
        padding: 20px 12px !important;
        margin-left: 0;
        margin-right: 0;
        border-radius: 18px !important;
    }
    
    .service-description p,
    .service-description li,
    .service-description span {
        word-wrap: break-word !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto;
    }
    
    .related-services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .archive-portfolio .page-header,
    .post-type-archive-portfolio .page-header {
        padding: 100px 0 15px !important;
    }
    
    .archive-portfolio .page-header h1,
    .post-type-archive-portfolio .page-header h1 {
        font-size: 1.6rem !important;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .modal-content h3 {
        font-size: 1.2rem;
    }
}

/* ============================================================================================================
   МАЛЕНЬКИЕ ТЕЛЕФОНЫ (до 480px)
   ============================================================================================================ */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.4rem !important;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .section-title h2 {
        font-size: 1.4rem !important;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .logo span {
        font-size: 1.1rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .mobile-menu-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .service-hero-info h1 {
        font-size: 1.3rem !important;
    }
}
/* ===== VIGRAMA: HERO VISUAL + SERVICE PRICES + CONTACT SETTINGS ===== */
.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    gap: 55px;
    align-items: center;
}

.hero-visual {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-card {
    position: relative;
    width: 100%;
    max-width: 490px;
    padding: 18px;
    border-radius: 28px;
    background: linear-gradient(145deg, #ffffff, #f4f2ff);
    box-shadow: 0 25px 70px rgba(40, 28, 90, 0.14), 0 10px 25px rgba(134, 87, 219, 0.12);
    border: 1px solid rgba(136,112,255,0.18);
    overflow: visible;
}

.hero-video-card::before {
    content: '';
    position: absolute;
    inset: -35px -28px auto auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(136,112,255,0.25), rgba(136,112,255,0));
    z-index: 0;
}

.hero-video-topbar {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.hero-video-topbar span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(134,87,219,0.25);
}

.hero-preview-window {
    position: relative;
    min-height: 220px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(136,112,255,0.86), rgba(134,87,219,0.9)),
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.35), rgba(255,255,255,0));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.hero-preview-window::before,
.hero-preview-window::after {
    content: '';
    position: absolute;
    border-radius: 18px;
    background: rgba(255,255,255,0.16);
    transform: rotate(-8deg);
}

.hero-preview-window::before {
    width: 170px;
    height: 95px;
    left: -25px;
    bottom: 25px;
}

.hero-preview-window::after {
    width: 125px;
    height: 125px;
    right: -20px;
    top: 24px;
    border-radius: 50%;
}

.hero-play-circle {
    position: relative;
    z-index: 2;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
    font-size: 1.5rem;
}

.hero-play-circle i {
    margin-left: 4px;
}

.hero-frame-glow {
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255,255,255,0.26);
    border-radius: 18px;
}

.hero-timeline {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    position: relative;
    z-index: 1;
}

.hero-track {
    height: 14px;
    border-radius: 999px;
    background: rgba(134,87,219,0.14);
    overflow: hidden;
    position: relative;
}

.hero-track::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-dark));
}

.hero-track-main::before { width: 82%; }
.hero-track-second::before { width: 58%; }
.hero-track-third::before { width: 70%; }

.hero-floating-badge {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.94);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.88rem;
    white-space: nowrap;
}

.hero-floating-badge i {
    color: var(--primary-dark);
}

.hero-badge-one {
    left: -18px;
    top: 80px;
}

.hero-badge-two {
    right: -18px;
    bottom: 88px;
}

.service-card-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: -4px auto 14px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(136,112,255,0.11);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 0.95rem;
}

.contact-detail .messenger-logo {
    flex: 0 0 40px;
}

.contact-method .messenger-logo {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.footer-contact .messenger-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex: 0 0 20px;
}

.footer-social-links img.yandex-zen-logo,
.footer-social-links img.messenger-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.footer-social-links img.messenger-logo,
.footer-social-links img.yandex-zen-logo {
    filter: none !important;
    background: transparent;
}

@media (max-width: 1100px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .hero-content {
        max-width: 760px;
    }

    .hero-visual {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-layout {
        gap: 25px;
    }

    .hero-visual {
        min-height: auto;
    }

    .hero-video-card {
        max-width: 100%;
        border-radius: 22px;
        padding: 14px;
    }

    .hero-preview-window {
        min-height: 170px;
        border-radius: 18px;
    }

    .hero-play-circle {
        width: 62px;
        height: 62px;
        font-size: 1.2rem;
    }

    .hero-floating-badge {
        position: static;
        margin-top: 12px;
        margin-right: 8px;
        font-size: 0.78rem;
        padding: 8px 12px;
    }

    .hero-badge-one,
    .hero-badge-two {
        display: inline-flex;
    }
}

/* ===== FINAL POLISH: MOBILE HERO, SERVICE BENEFITS, PERFORMANCE ===== */
.service-benefits {
    margin-bottom: 50px;
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(136,112,255,0.06), rgba(247,248,248,0.95));
    border: 1px solid rgba(136,112,255,0.14);
    box-shadow: 0 12px 35px rgba(40, 28, 90, 0.06);
}

.service-benefits-head {
    max-width: 760px;
    margin-bottom: 24px;
}

.service-benefits-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(134,87,219,0.11);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 0.86rem;
}

.service-benefits-head h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-benefits-head p {
    max-width: 680px;
    margin: 0;
    color: var(--text-light);
    font-size: 1rem;
}

.service-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.service-benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-height: 128px;
    padding: 20px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 8px 24px rgba(0,0,0,0.045);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 36px rgba(134,87,219,0.14);
    border-color: rgba(134,87,219,0.18);
}

.service-benefit-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    box-shadow: 0 10px 22px rgba(134,87,219,0.22);
}

.service-benefit-card h4 {
    margin: 0 0 6px;
    color: var(--text-dark);
    font-size: 1rem;
}

.service-benefit-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.55;
}

.service-benefits-result {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(134,87,219,0.09);
    color: var(--text-dark);
    font-weight: 600;
}

.service-benefits-result i {
    color: var(--primary-dark);
    margin-top: 3px;
}

@supports (content-visibility: auto) {
    .services.section,
    .portfolio.section,
    .process.section,
    .reviews.section,
    .contact.section,
    .service-main,
    .related-services,
    .direct-formats,
    .direct-included,
    .direct-prices,
    .direct-portfolio,
    .direct-process,
    .direct-reviews,
    .direct-faq,
    .direct-contact {
        content-visibility: auto;
        contain-intrinsic-size: auto 720px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 768px) {
    .hero-visual {
        display: none !important;
    }

    .hero-layout {
        display: block;
    }

    .service-benefits {
        padding: 22px 16px;
        border-radius: 20px;
    }

    .service-benefits-grid {
        grid-template-columns: 1fr;
    }

    .service-benefit-card {
        min-height: auto;
        padding: 18px;
    }

    .service-benefits-head h3 {
        font-size: 1.35rem;
    }
}

/* ===== FINAL: SERVICE REVIEWS INSTEAD OF BENEFITS + DESKTOP HERO ONLY ===== */
@media (max-width: 1100px) {
    .hero-layout {
        display: block;
    }

    .hero-visual {
        display: none !important;
    }
}

@media (min-width: 769px) and (max-width: 1100px) {
    .related-services-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 16px !important;
    }

    .related-service-card h3 {
        font-size: 1rem !important;
    }

    .related-service-card p {
        font-size: 0.8rem !important;
    }
}

.service-specific-reviews {
    margin-bottom: 50px;
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(136,112,255,0.06), rgba(247,248,248,0.96));
    border: 1px solid rgba(136,112,255,0.14);
    box-shadow: 0 12px 35px rgba(40, 28, 90, 0.06);
}

.service-specific-reviews-head {
    max-width: 760px;
    margin-bottom: 24px;
}

.service-reviews-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(134,87,219,0.11);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 0.86rem;
}

.service-specific-reviews-head h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-specific-reviews-head p {
    max-width: 680px;
    margin: 0;
    color: var(--text-light);
    font-size: 1rem;
}

.service-specific-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.service-specific-review-card {
    padding: 22px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 8px 24px rgba(0,0,0,0.045);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-specific-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 36px rgba(134,87,219,0.14);
    border-color: rgba(134,87,219,0.18);
}

.service-specific-review-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.service-review-avatar {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    box-shadow: 0 10px 22px rgba(134,87,219,0.22);
}

.service-specific-review-card h4 {
    margin: 0 0 3px;
    color: var(--text-dark);
    font-size: 1rem;
}

.service-specific-review-card span {
    color: var(--text-light);
    font-size: 0.82rem;
}

.service-review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
    color: var(--star-color);
}

.service-specific-review-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.94rem;
    line-height: 1.65;
    font-style: italic;
}

@media (max-width: 768px) {
    .service-specific-reviews {
        padding: 22px 16px;
        border-radius: 20px;
    }

    .service-specific-reviews-grid {
        grid-template-columns: 1fr;
    }

    .service-specific-reviews-head h3 {
        font-size: 1.35rem;
    }
}

/* ===== FINAL RELATED SERVICES COUNT + TABLET REVIEWS POLISH ===== */
/* ПК: показываем 3 карточки в одну строку */
.related-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 25px !important;
}
.related-services-grid .related-service-card:nth-child(n+4) {
    display: none !important;
}

/* Планшеты: показываем 4 карточки, 2 в первой строке и 2 во второй */
@media (min-width: 769px) and (max-width: 1100px) {
    .related-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 20px !important;
    }
    .related-services-grid .related-service-card:nth-child(n+4) {
        display: block !important;
    }
    .related-services-grid .related-service-card:nth-child(n+5) {
        display: none !important;
    }

    .related-service-card img,
    .related-service-card > div:first-child {
        height: 160px !important;
    }

    .service-specific-reviews {
        padding: 26px 22px !important;
        border-radius: 22px !important;
        margin-bottom: 42px !important;
    }

    .service-specific-reviews-head {
        max-width: 100% !important;
        margin-bottom: 20px !important;
    }

    .service-specific-reviews-head h3 {
        font-size: 1.55rem !important;
        margin-bottom: 8px !important;
    }

    .service-specific-reviews-head p {
        font-size: 0.95rem !important;
    }

    .service-specific-reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .service-specific-review-card {
        padding: 20px !important;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        column-gap: 18px;
        row-gap: 10px;
        align-items: start;
    }

    .service-specific-review-top {
        margin-bottom: 0 !important;
    }

    .service-review-stars {
        justify-content: flex-end;
        margin-bottom: 0 !important;
        padding-top: 5px;
        white-space: nowrap;
    }

    .service-specific-review-card p {
        grid-column: 1 / -1;
        font-size: 0.92rem !important;
        line-height: 1.6 !important;
    }
}

/* Телефоны: показываем только 2 карточки, по одной в строке */
@media (max-width: 768px) {
    .related-services-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }
    .related-services-grid .related-service-card:nth-child(n+3) {
        display: none !important;
    }
}

/* ===== SEO / перелинковка / страницы ===== */
.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 22px;
    font-size: 0.92rem;
    color: var(--text-light);
}
.breadcrumbs a { color: var(--primary-dark); font-weight: 600; }
.breadcrumbs-separator { color: rgba(0,0,0,0.28); }
.vigrama-readable-content {
    max-width: 920px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.04rem;
    line-height: 1.8;
}
.vigrama-readable-content h2,
.vigrama-readable-content h3,
.vigrama-readable-content h4 { color: var(--text-dark); margin-top: 1.6em; }
.vigrama-readable-content ul,
.vigrama-readable-content ol { margin: 0 0 1.2em 1.4em; color: var(--text-light); }
.vigrama-readable-content img { max-width: 100%; height: auto; border-radius: 18px; }
.internal-links-block {
    margin-top: 50px;
    padding: 30px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow);
}
.internal-links-block h2 { text-align: center; margin-bottom: 22px; font-size: 1.6rem; }
.internal-links-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.internal-links-grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 14px 18px;
    border-radius: 16px;
    background: #f7f8f8;
    color: var(--text-dark);
    font-weight: 700;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease, color .25s ease;
}
.internal-links-grid a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    color: var(--primary-dark);
}
.portfolio-single-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, .7fr);
    gap: 32px;
    align-items: start;
}
.portfolio-single-media,
.portfolio-single-info {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.portfolio-single-media img,
.portfolio-single-media video { width: 100%; display: block; height: auto; }
.portfolio-single-info { padding: 28px; }
.portfolio-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 18px; }
.portfolio-tags a {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f7f8f8;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: .9rem;
}
.portfolio-single-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
@media (max-width: 992px) {
    .internal-links-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .portfolio-single-layout { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .breadcrumbs { justify-content: flex-start; }
    .internal-links-block { padding: 22px 16px; }
    .internal-links-grid { grid-template-columns: 1fr; }
}


/* ===== FINAL: локальные иконки, хлебные крошки, портфолио 16:9 ===== */
.breadcrumbs {
    width: 100%;
    justify-content: flex-start;
    margin: 0 0 24px;
    font-size: 0.9rem;
}
.breadcrumbs ol {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 8px 12px;
    list-style: none;
    border: 1px solid rgba(134, 87, 219, 0.12);
    border-radius: 999px;
    background: rgba(255,255,255,0.78);
    box-shadow: 0 8px 22px rgba(0,0,0,0.045);
    backdrop-filter: blur(8px);
}
.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    color: var(--text-light);
}
.breadcrumbs li + li::before {
    content: '›';
    margin-right: 8px;
    color: rgba(0,0,0,0.28);
    font-weight: 800;
}
.breadcrumbs a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-dark);
    font-weight: 700;
}
.breadcrumbs a:hover { color: var(--primary-light); }
.breadcrumbs span[aria-current="page"] {
    display: inline-block;
    max-width: min(520px, 80vw);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--text-light);
    font-weight: 600;
}
.breadcrumbs-separator { display: none; }

.portfolio-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.portfolio-item {
    aspect-ratio: 4 / 3 !important;
    background: #f0f0f0 !important;
    border-radius: 15px;
}
.portfolio-item > a {
    display: block;
    width: 100%;
    height: 100%;
}
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.portfolio-overlay { border-radius: inherit; }

.internal-links-block--cta,
.internal-links-block {
    position: relative;
    overflow: hidden;
}
.internal-links-block--cta::before,
.internal-links-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 0%, rgba(136,112,255,0.12), transparent 35%), radial-gradient(circle at 85% 100%, rgba(134,87,219,0.10), transparent 35%);
    pointer-events: none;
}
.internal-links-block > * { position: relative; z-index: 1; }
.internal-links-block p {
    max-width: 720px;
    margin: -10px auto 22px;
    text-align: center;
    color: var(--text-light);
}
.internal-links-kicker {
    display: table;
    margin: 0 auto 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(134,87,219,0.10);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 0.82rem;
}
.internal-links-block--cta h2,
.internal-links-block h2 {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.internal-links-grid a {
    position: relative;
    background: #fff;
    border: 1px solid rgba(134,87,219,0.10);
}
.internal-links-grid a::after {
    content: '→';
    margin-left: 8px;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity .25s ease, transform .25s ease;
}
.internal-links-grid a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.portfolio-case-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 26px;
    align-items: end;
}
.portfolio-case-kicker {
    display: inline-flex;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(134,87,219,0.10);
    color: var(--primary-dark);
    font-weight: 800;
    margin-bottom: 16px;
}
.portfolio-case-head h1 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    margin-bottom: 16px;
}
.portfolio-case-head p {
    max-width: 780px;
    font-size: 1.12rem;
    margin-bottom: 0;
}
.portfolio-case-tags { justify-content: flex-end; margin: 0; }
.portfolio-case-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr);
}
.portfolio-case-media {
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f0f18;
}
.portfolio-case-media img,
.portfolio-case-media video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.portfolio-case-info h2 { margin-bottom: 12px; }
.portfolio-case-points {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}
.portfolio-case-points div {
    padding: 14px 16px;
    border-radius: 16px;
    background: #f7f8f8;
    border: 1px solid rgba(0,0,0,0.04);
}
.portfolio-case-points strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.portfolio-case-points span {
    color: var(--text-light);
    font-size: .92rem;
}
.portfolio-case-main {
    min-width: 0;
}
.portfolio-case-content {
    margin-top: 24px;
    padding: 28px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
}

@media (max-width: 992px) {
    .portfolio-case-head { grid-template-columns: 1fr; }
    .portfolio-case-tags { justify-content: flex-start; }
    .breadcrumbs { justify-content: flex-start; }
}
@media (max-width: 576px) {
    .breadcrumbs ol { border-radius: 18px; align-items: flex-start; }
    .breadcrumbs span[aria-current="page"] { max-width: 70vw; }
    .portfolio-grid { grid-template-columns: 1fr !important; }
    .portfolio-case-content { padding: 20px; }
}


/* На телефонах скрываем длинный текстовый список контактов рядом с формой,
   но оставляем быстрые кнопки связи */
@media (max-width: 768px) {
    #contact .contact-info {
        display: block !important;
        margin-bottom: 24px;
    }

    #contact .contact-info > p,
    #contact .contact-details {
        display: none !important;
    }

    #contact .contact-info h3,
    #contact .contact-info h4 {
        text-align: center;
    }
}

/* ===== FINAL POLISH: mobile typography, service hero compact, media performance ===== */
@media (max-width: 768px) {
    .hero h1,
    .page-header h1,
    .section-title h1,
    .portfolio-case-head h1,
    .service-hero-info h1 {
        font-size: 1.55rem !important;
        line-height: 1.25 !important;
        letter-spacing: -0.01em;
    }

    .section-title h2 {
        font-size: 1.55rem !important;
        line-height: 1.25 !important;
    }

    .hero p,
    .page-header p,
    .section-title p,
    .portfolio-case-head p,
    .service-hero-info p {
        font-size: 0.92rem !important;
        line-height: 1.55 !important;
    }

    .service-hero {
        padding: 88px 0 24px !important;
    }

    .service-hero-content {
        gap: 14px !important;
        text-align: center !important;
        justify-content: center !important;
    }

    .service-hero-icon {
        flex: 0 0 68px !important;
        margin-bottom: 4px !important;
    }

    .service-hero-icon div {
        width: 68px !important;
        height: 68px !important;
        box-shadow: 0 12px 24px rgba(134, 87, 219, 0.22) !important;
    }

    .service-hero-icon div i {
        font-size: 1.65rem !important;
    }

    .service-hero-info {
        flex: 1 1 100% !important;
        width: 100% !important;
    }

    .service-hero-info h1 {
        margin-bottom: 8px !important;
    }

    .service-hero-info p {
        margin-bottom: 12px !important;
    }

    .service-price {
        padding: 9px 16px !important;
        border-radius: 999px !important;
        margin-top: 2px !important;
    }

    .service-price span:first-child {
        font-size: 0.82rem !important;
    }

    .service-price span:last-child {
        font-size: 1.22rem !important;
        margin-left: 8px !important;
    }

    .service-hero-cta {
        flex: 1 1 100% !important;
        width: 100% !important;
        margin-top: 4px !important;
    }

    .service-hero-cta .btn {
        width: 100% !important;
        max-width: 320px !important;
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
    }

    .service-hero-cta p {
        margin-top: 8px !important;
        font-size: 0.82rem !important;
    }
}

@media (max-width: 480px) {
    .hero h1,
    .page-header h1,
    .section-title h1,
    .portfolio-case-head h1,
    .service-hero-info h1 {
        font-size: 1.42rem !important;
    }

    .section-title h2 {
        font-size: 1.42rem !important;
    }
}

/* ===== Посадочная под Яндекс Директ: Видеомонтаж на заказ ===== */
.direct-landing-page { background: #fff; }
.direct-hero { padding-top: 140px !important; background: linear-gradient(135deg, rgba(136,112,255,.08), #fff 55%, rgba(134,87,219,.08)); }
.direct-hero__grid { display: block; max-width: 940px; }
.direct-kicker { display: inline-flex; padding: 8px 14px; border-radius: 999px; background: rgba(136,112,255,.12); color: var(--primary-dark); font-weight: 700; margin-bottom: 18px; }
.direct-hero h1 { font-size: clamp(2.05rem, 4vw, 4rem); margin-bottom: 20px; max-width: 760px; }
.direct-hero__lead { font-size: 1.14rem; max-width: 720px; color: #4a4a4a; }
.direct-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin: 30px 0 22px; }
.direct-hero__points { display: flex; gap: 10px; flex-wrap: wrap; }
.direct-hero__points span { background: #fff; border: 1px solid rgba(134,87,219,.16); border-radius: 14px; padding: 9px 12px; color: #333; box-shadow: 0 8px 22px rgba(0,0,0,.05); }

.direct-video-card { width: min(100%, 520px); border-radius: 30px; background: #14121f; padding: 22px; box-shadow: 0 26px 70px rgba(42,30,95,.28); position: relative; overflow: hidden; }
.direct-video-card:before { content: ''; position: absolute; inset: -35%; background: radial-gradient(circle, rgba(136,112,255,.38), transparent 55%); transform: rotate(25deg); }
.direct-video-card > * { position: relative; }
.direct-video-card__top { display:flex; gap:8px; margin-bottom:16px; }
.direct-video-card__top span { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,.42); }
.direct-video-card__screen { height: 260px; border-radius: 22px; background: linear-gradient(135deg, rgba(136,112,255,.78), rgba(134,87,219,.35)), linear-gradient(45deg, #23213a, #090811); display:flex; align-items:center; justify-content:center; }
.direct-play { width: 82px; height: 82px; border-radius: 50%; background:#fff; color: var(--primary-dark); display:flex; align-items:center; justify-content:center; font-size: 1.8rem; box-shadow: 0 20px 45px rgba(0,0,0,.22); }
.direct-video-card__tracks { display:grid; gap: 10px; margin-top: 18px; }
.direct-video-card__tracks div { height: 12px; border-radius: 999px; background: rgba(255,255,255,.16); }
.direct-video-card__tracks div:nth-child(1) { width: 88%; background: rgba(136,112,255,.75); }
.direct-video-card__tracks div:nth-child(2) { width: 72%; }
.direct-video-card__tracks div:nth-child(3) { width: 94%; background: rgba(255,255,255,.24); }
.direct-video-card__tracks div:nth-child(4) { width: 55%; }
.direct-card-grid { display: grid; gap: 22px; }
.direct-card-grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.direct-card-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.direct-card, .direct-note-card, .direct-price-card { background:#fff; border:1px solid rgba(0,0,0,.06); border-radius: 22px; padding: 26px; box-shadow: 0 10px 28px rgba(0,0,0,.06); }
.direct-card__icon { width: 54px; height: 54px; border-radius: 18px; background: linear-gradient(135deg,var(--primary-light),var(--primary-dark)); color:#fff; display:flex; align-items:center; justify-content:center; font-size:1.35rem; margin-bottom: 18px; }
.direct-card h3, .direct-note-card h3, .direct-price-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.direct-card p, .direct-note-card p, .direct-price-card p { margin-bottom: 0; }
.direct-split { display:grid; grid-template-columns: minmax(0,1.1fr) minmax(280px,.9fr); gap: 34px; align-items:start; }
.section-title--left { text-align:left; margin-bottom:24px; }
.direct-check-list { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.direct-check-list span { background:#f7f8f8; border-radius: 14px; padding: 13px 14px 13px 42px; position:relative; color:#222; font-weight:600; }
.direct-check-list span:before { content:'✓'; position:absolute; left:14px; top: 50%; transform:translateY(-50%); color: var(--primary-dark); font-weight:800; }
.direct-note-card { background: linear-gradient(135deg, rgba(136,112,255,.12), rgba(255,255,255,.96)); position: sticky; top: 100px; }
.direct-note-card .btn { margin-top: 12px; }
.direct-prices, .direct-process, .direct-contact { background:#f7f8f8; }
.direct-price-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.direct-price-card strong { display:block; font-size: 1.7rem; color: var(--primary-dark); margin-bottom: 12px; }
.direct-price-note { margin: 22px auto 0; max-width: 780px; text-align:center; color:#555; background:#fff; padding:16px 20px; border-radius: 18px; border:1px solid rgba(0,0,0,.06); }
.direct-center { text-align:center; margin-top: 34px; }
.direct-portfolio-item { cursor: default; }
.direct-portfolio-link { display:block; height:100%; }
.direct-portfolio-link img { display:block; width:100%; height:100%; object-fit:cover; }
.direct-process-steps .step h3 { font-size: 1.18rem; }
.direct-faq-list { max-width: 900px; margin: 0 auto; display:grid; gap: 12px; }
.direct-faq-list details { background:#fff; border:1px solid rgba(0,0,0,.08); border-radius: 18px; padding: 18px 20px; box-shadow: 0 8px 20px rgba(0,0,0,.04); }
.direct-faq-list summary { cursor:pointer; font-weight:800; color:#111; }
.direct-faq-list p { margin: 12px 0 0; }
@media (max-width: 1100px) { .direct-card-grid--4, .direct-price-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 900px) { .direct-split { grid-template-columns: 1fr; } .direct-note-card { position: static; } }
@media (max-width: 768px) { .direct-hero { padding-top: 105px !important; } .direct-card-grid--4, .direct-card-grid--3, .direct-price-grid, .direct-check-list { grid-template-columns: 1fr; } .direct-video-card__screen { height: 210px; } .direct-hero__actions .btn { width:100%; } }

/* Direct landing polished conversion layer */
.direct-landing-page--polished .section-title p { max-width: 760px; margin-left: auto; margin-right: auto; }
.direct-landing-page--polished .section-title--left p { margin-left: 0; }
.direct-landing-page--polished .direct-kicker { letter-spacing: .02em; }
.direct-video-card--polished .direct-video-card__screen { position: relative; overflow: hidden; }
.direct-video-card--polished .direct-video-card__screen:before,
.direct-video-card--polished .direct-video-card__screen:after { content: ''; position: absolute; border-radius: 999px; background: rgba(255,255,255,.14); }
.direct-video-card--polished .direct-video-card__screen:before { width: 220px; height: 220px; right: -70px; top: -70px; }
.direct-video-card--polished .direct-video-card__screen:after { width: 160px; height: 160px; left: -45px; bottom: -55px; }
.direct-screen-caption { position: absolute; left: 18px; bottom: 16px; color: rgba(255,255,255,.72); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; }
.direct-video-card__badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.direct-video-card__badges span { border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.78); border-radius: 999px; padding: 6px 10px; font-size: .82rem; font-weight: 700; }
.direct-anchor-nav { position: sticky; top: 78px; z-index: 50; background: rgba(255,255,255,.9); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(0,0,0,.06); }
.direct-anchor-nav .container { display: flex; align-items: center; gap: 10px; overflow-x: auto; padding-top: 10px; padding-bottom: 10px; }
.direct-anchor-nav a { white-space: nowrap; color: #161616; font-weight: 800; border: 1px solid rgba(134,87,219,.16); background: #fff; padding: 9px 14px; border-radius: 999px; }
.direct-anchor-nav a:hover { color: var(--primary-dark); border-color: rgba(134,87,219,.34); }
.direct-anchor-nav__cta { background: linear-gradient(135deg,var(--primary-light),var(--primary-dark)) !important; color: #fff !important; border: none !important; }
.direct-intent { padding-top: 54px !important; padding-bottom: 54px !important; background: #fff; }
.direct-intent__head { max-width: 760px; margin-bottom: 24px; }
.direct-usecases { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.direct-usecase { background: linear-gradient(135deg, rgba(136,112,255,.08), rgba(255,255,255,.98)); border: 1px solid rgba(134,87,219,.14); border-radius: 24px; padding: 24px; box-shadow: 0 14px 34px rgba(0,0,0,.055); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.direct-usecase:hover { transform: translateY(-4px); box-shadow: 0 22px 42px rgba(0,0,0,.08); border-color: rgba(134,87,219,.25); }
.direct-usecase h3 { font-size: 1.12rem; margin-bottom: 10px; color: #111; }
.direct-usecase p { margin: 0; color: #5a5a5a; font-size: .98rem; line-height: 1.65; }
.direct-price-card { display: flex; flex-direction: column; }
.direct-price-card p { flex: 1; }
.direct-price-link { display: inline-flex; margin-top: 18px; font-weight: 800; color: var(--primary-dark); }
.direct-reviews { background: #fff; }
.direct-review-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.direct-review-card { background: #fff; border: 1px solid rgba(0,0,0,.06); border-radius: 22px; padding: 24px; box-shadow: 0 10px 28px rgba(0,0,0,.06); }
.direct-review-card__top { display: flex; justify-content: space-between; gap: 14px; align-items: center; margin-bottom: 8px; }
.direct-review-card__top strong { font-size: 1.05rem; }
.direct-review-card__top span { color: #f4b400; letter-spacing: .06em; white-space: nowrap; }
.direct-review-card__service { display: inline-flex; margin-bottom: 12px; border-radius: 999px; padding: 5px 10px; background: rgba(136,112,255,.1); color: var(--primary-dark); font-weight: 800; font-size: .82rem; }
.direct-review-card p { margin: 0; }
.direct-mobile-cta { display: none; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 2000; text-align: center; padding: 14px 18px; border-radius: 999px; background: linear-gradient(135deg,var(--primary-light),var(--primary-dark)); color: #fff !important; font-weight: 900; box-shadow: 0 18px 38px rgba(42,30,95,.28); }

@media (max-width: 1100px) {
    .direct-review-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .direct-anchor-nav { top: 70px; }
    .direct-usecases { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
    .direct-anchor-nav { display: none; }
    .direct-intent { padding-top: 36px !important; padding-bottom: 36px !important; }
    .direct-usecases { grid-template-columns: 1fr; }
    .direct-usecase { padding: 20px; border-radius: 20px; }
    .direct-hero__points span { width: 100%; }
    .direct-mobile-cta { display: none !important; }
}

/* Direct landing mobile: show the form before direct contacts */
@media (max-width: 768px) {
    .direct-contact .contact-form-container {
        order: 1;
    }
    .direct-contact .contact-info {
        order: 2;
    }
}

/* Direct landing: clear hero brief card instead of abstract video mockup */
.direct-brief-card {
    width: min(100%, 520px);
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,248,255,.96));
    border: 1px solid rgba(136,112,255,.20);
    box-shadow: 0 26px 70px rgba(42,30,95,.16);
    padding: 34px;
    position: relative;
    overflow: hidden;
}
.direct-brief-card:before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    right: -90px;
    top: -95px;
    background: radial-gradient(circle, rgba(136,112,255,.20), rgba(136,112,255,0) 68%);
}
.direct-brief-card > * { position: relative; }
.direct-brief-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.direct-brief-card__label {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 8px 13px;
    background: rgba(136,112,255,.12);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: .88rem;
}
.direct-brief-card__time {
    color: var(--text-light);
    font-size: .88rem;
    font-weight: 600;
}
.direct-brief-card h2 {
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    margin-bottom: 12px;
}
.direct-brief-card p {
    font-size: 1.02rem;
    margin-bottom: 22px;
}
.direct-brief-list {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}
.direct-brief-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border: 1px solid rgba(136,112,255,.16);
    border-radius: 16px;
    background: rgba(255,255,255,.82);
}
.direct-brief-list i {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg,var(--primary-light),var(--primary-dark));
    flex: 0 0 auto;
}
.direct-brief-list span { color: var(--text-dark); font-weight: 700; line-height: 1.35; }
.direct-brief-card .btn { width: 100%; }
@media (max-width: 900px) {
}
@media (max-width: 768px) {
    .direct-brief-card { padding: 24px; border-radius: 24px; }
    .direct-brief-card__top { align-items: flex-start; }
    .direct-brief-list div { align-items: flex-start; }
}


/* Speed optimization for video posters / portfolio thumbnails */
img[data-src] {
    background: linear-gradient(135deg, rgba(136,112,255,.08), rgba(247,248,248,.95));
}
.portfolio-item img[data-src],
.direct-portfolio-link img[data-src] {
    filter: blur(8px);
    transform: scale(1.015);
    opacity: .72;
}
.portfolio-item img.lazyloaded,
.direct-portfolio-link img.lazyloaded {
    filter: none;
    transform: none;
    opacity: 1;
    transition: opacity .25s ease, filter .25s ease, transform .25s ease;
}
.direct-portfolio-item {
    content-visibility: auto;
    contain-intrinsic-size: 450px 340px;
}
.direct-portfolio-link img {
    aspect-ratio: 16 / 9;
}
@media (max-width: 768px) {
    .direct-portfolio-item { contain-intrinsic-size: 340px 255px; }
}

/* Fix: close button for vertical videos must stay visible inside viewport */
.video-modal {
    padding: 56px 16px 24px;
}

.video-modal-content {
    width: min(94vw, 900px);
    max-width: 900px;
    max-height: calc(100vh - 96px);
}

.video-modal-content video {
    max-width: 100% !important;
    max-height: calc(100vh - 96px) !important;
}

.close-video-modal {
    position: fixed !important;
    top: max(14px, env(safe-area-inset-top)) !important;
    right: max(14px, env(safe-area-inset-right)) !important;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    border-radius: 50%;
    line-height: 1;
    color: #fff !important;
    z-index: 5001 !important;
    backdrop-filter: blur(6px);
}

.close-video-modal:hover,
.close-video-modal:focus {
    background: rgba(134, 87, 219, 0.85) !important;
    color: #fff !important;
    outline: none;
}

@media (max-width: 768px) {
    .video-modal {
        padding: 64px 10px 18px;
        align-items: center;
    }

    .video-modal-content {
        width: 100%;
        max-height: calc(100vh - 92px);
    }

    .video-modal-content video {
        max-height: calc(100vh - 92px) !important;
        border-radius: 8px;
    }

    .close-video-modal {
        top: max(10px, env(safe-area-inset-top)) !important;
        right: max(10px, env(safe-area-inset-right)) !important;
        width: 42px;
        height: 42px;
        font-size: 1.8rem;
    }
}


/* Direct landing: accurate scroll target for calculation form */
#direct-order-form {
    scroll-margin-top: 110px;
}
@media (max-width: 768px) {
    #direct-order-form {
        scroll-margin-top: 92px;
    }
}

/* Direct landing: mobile calculation buttons must land exactly on the form */
#contactForm {
    scroll-margin-top: 116px;
}
@media (max-width: 768px) {
    #contactForm {
        scroll-margin-top: 90px;
    }
}

/* Direct landing: precise mobile scroll anchor before form */
.direct-scroll-target {
    display: block;
    position: relative;
    width: 100%;
    height: 1px;
    margin: 0;
    padding: 0;
    scroll-margin-top: 112px;
}
@media (max-width: 768px) {
    .direct-scroll-target {
        scroll-margin-top: 92px;
    }
}

#direct-form-title{scroll-margin-top:110px;}
@media(max-width:768px){#direct-form-title{scroll-margin-top:92px;}}

/* Direct landing: keep sections measurable for mobile anchor scrolling */
.direct-formats,
.direct-included,
.direct-prices,
.direct-portfolio,
.direct-process,
.direct-reviews,
.direct-faq,
.direct-contact {
    content-visibility: visible !important;
    contain-intrinsic-size: auto !important;
}

.direct-contact,
#direct-form,
#direct-form-title,
.contact-form-container[data-direct-form] {
    scroll-margin-top: 110px;
}

@media (max-width: 768px) {
    .direct-contact,
    #direct-form,
    #direct-form-title,
    .contact-form-container[data-direct-form] {
        scroll-margin-top: 88px;
    }
}

/* ===== FINAL POLISH: LANDING /videomontazh-na-zakaz/ unified with site ===== */
.direct-landing-page--polished {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
}

.direct-landing-page--polished .section {
    padding: 76px 0 !important;
}

.direct-landing-page--polished .direct-hero {
    padding: 135px 0 78px !important;
    background: linear-gradient(135deg, rgba(136,112,255,0.06) 0%, #ffffff 58%, rgba(134,87,219,0.07) 100%) !important;
}

.direct-landing-page--polished .direct-hero__grid {
    max-width: 100%;
}

.direct-landing-page--polished .direct-hero__content {
    max-width: 880px;
}

.direct-landing-page--polished .direct-hero h1,
.direct-landing-page--polished .section-title h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--text-dark);
}

.direct-landing-page--polished .direct-hero h1 {
    font-size: clamp(2.25rem, 4vw, 3.8rem);
    line-height: 1.16;
    letter-spacing: -0.02em;
}

.direct-landing-page--polished .direct-hero__lead {
    max-width: 780px;
    color: var(--text-light);
    font-size: 1.12rem;
    line-height: 1.75;
}

.direct-landing-page--polished .direct-kicker {
    background: rgba(136,112,255,0.1);
    color: var(--primary-dark);
    border: 1px solid rgba(134,87,219,0.14);
}

.direct-landing-page--polished .direct-hero__points span,
.direct-landing-page--polished .direct-card,
.direct-landing-page--polished .direct-price-card,
.direct-landing-page--polished .direct-note-card,
.direct-landing-page--polished .direct-review-card,
.direct-landing-page--polished .direct-faq-list details {
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow);
}

.direct-landing-page--polished .direct-card,
.direct-landing-page--polished .direct-price-card,
.direct-landing-page--polished .direct-review-card,
.direct-landing-page--polished .direct-faq-list details {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.direct-landing-page--polished .direct-card:hover,
.direct-landing-page--polished .direct-price-card:hover,
.direct-landing-page--polished .direct-review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(134,87,219,0.16);
}

.direct-landing-page--polished .direct-card__icon {
    border-radius: 50%;
}

.direct-landing-page--polished .direct-prices,
.direct-landing-page--polished .direct-process,
.direct-landing-page--polished .direct-contact,
.direct-landing-page--polished .direct-included {
    background: var(--bg-light) !important;
}

.direct-landing-page--polished .direct-formats,
.direct-landing-page--polished .direct-portfolio,
.direct-landing-page--polished .direct-why,
.direct-landing-page--polished .direct-faq,
.direct-landing-page--polished .direct-reviews {
    background: var(--bg-white) !important;
}

.direct-landing-page--polished .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.direct-landing-page--polished .direct-portfolio-item {
    aspect-ratio: 4 / 3;
}

.direct-landing-page--polished .direct-portfolio-link img {
    object-fit: cover;
}

.direct-landing-page--polished .direct-anchor-nav {
    background: rgba(255,255,255,0.96);
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.direct-landing-page--polished .direct-anchor-nav a {
    font-size: .92rem;
}

@media (max-width: 1100px) {
    .direct-landing-page--polished .direct-hero {
        padding: 118px 0 58px !important;
    }

    .direct-landing-page--polished .direct-card-grid--4,
    .direct-landing-page--polished .direct-price-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .direct-landing-page--polished .direct-review-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .direct-landing-page--polished .section {
        padding: 42px 0 !important;
    }

    .direct-landing-page--polished .direct-hero {
        padding: 96px 0 38px !important;
    }

    .direct-landing-page--polished .direct-kicker {
        font-size: .82rem;
        padding: 7px 12px;
        margin-bottom: 14px;
    }

    .direct-landing-page--polished .direct-hero h1 {
        font-size: 1.62rem !important;
        line-height: 1.25;
        margin-bottom: 14px;
    }

    .direct-landing-page--polished .direct-hero__lead {
        font-size: .94rem;
        line-height: 1.65;
        margin-bottom: 18px;
    }

    .direct-landing-page--polished .direct-hero__actions {
        gap: 10px;
        margin: 22px 0 16px;
    }

    .direct-landing-page--polished .direct-hero__actions .btn {
        width: 100%;
        padding: 12px 18px;
        font-size: .9rem;
    }

    .direct-landing-page--polished .direct-hero__points {
        gap: 8px;
    }

    .direct-landing-page--polished .direct-hero__points span {
        width: 100%;
        padding: 9px 12px;
        font-size: .84rem;
    }

    .direct-landing-page--polished .section-title {
        margin-bottom: 26px;
    }

    .direct-landing-page--polished .section-title h2 {
        font-size: 1.45rem !important;
    }

    .direct-landing-page--polished .section-title p {
        font-size: .9rem !important;
        line-height: 1.6;
    }

    .direct-landing-page--polished .direct-card,
    .direct-landing-page--polished .direct-price-card,
    .direct-landing-page--polished .direct-note-card,
    .direct-landing-page--polished .direct-review-card {
        border-radius: 18px;
        padding: 20px;
    }

    .direct-landing-page--polished .direct-card h3,
    .direct-landing-page--polished .direct-price-card h3,
    .direct-landing-page--polished .direct-note-card h3 {
        font-size: 1.08rem;
    }

    .direct-landing-page--polished .direct-card p,
    .direct-landing-page--polished .direct-price-card p,
    .direct-landing-page--polished .direct-note-card p,
    .direct-landing-page--polished .direct-review-card p {
        font-size: .88rem;
        line-height: 1.58;
    }

    .direct-landing-page--polished .direct-check-list span {
        font-size: .88rem;
        padding: 12px 12px 12px 38px;
    }

    .direct-landing-page--polished .portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 18px;
    }

    .direct-landing-page--polished .direct-portfolio-item {
        border-radius: 14px;
    }

    .direct-landing-page--polished .process-steps {
        margin-top: 28px;
    }

    .direct-landing-page--polished .step {
        margin-bottom: 18px;
    }

    .direct-landing-page--polished .step h3 {
        font-size: 1rem !important;
    }

    .direct-landing-page--polished .direct-faq-list details {
        padding: 15px 16px;
        border-radius: 16px;
    }

    .direct-landing-page--polished .direct-faq-list summary {
        font-size: .92rem;
        line-height: 1.45;
    }

    .direct-landing-page--polished .direct-contact .contact-info {
        display: none;
    }

    .direct-landing-page--polished .contact-container {
        gap: 0;
    }
}

/* Direct landing: final mobile cards readability fix */
@media (max-width: 768px) {
    .direct-landing-page--polished .direct-card-grid,
    .direct-landing-page--polished .direct-card-grid--3,
    .direct-landing-page--polished .direct-card-grid--4,
    .direct-landing-page--polished .direct-price-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        max-width: 100% !important;
    }

    .direct-landing-page--polished .direct-card,
    .direct-landing-page--polished .direct-price-card,
    .direct-landing-page--polished .direct-note-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        padding: 22px 20px !important;
        border-radius: 20px !important;
    }

    .direct-landing-page--polished .direct-card h3,
    .direct-landing-page--polished .direct-price-card h3,
    .direct-landing-page--polished .direct-note-card h3 {
        font-size: 1.18rem !important;
        line-height: 1.28 !important;
        margin-bottom: 12px !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
    }

    .direct-landing-page--polished .direct-card p,
    .direct-landing-page--polished .direct-price-card p,
    .direct-landing-page--polished .direct-note-card p {
        font-size: .96rem !important;
        line-height: 1.62 !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
    }

    .direct-landing-page--polished .direct-price-card strong {
        font-size: 1.85rem !important;
        line-height: 1.15 !important;
        white-space: nowrap !important;
        display: block !important;
    }

    .direct-landing-page--polished .container {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .direct-landing-page--polished {
        padding-bottom: 86px !important;
    }
}

@media (max-width: 420px) {
    .direct-landing-page--polished .section-title h2 {
        font-size: 1.7rem !important;
        line-height: 1.22 !important;
    }

    .direct-landing-page--polished .direct-card,
    .direct-landing-page--polished .direct-price-card,
    .direct-landing-page--polished .direct-note-card {
        padding: 20px 18px !important;
    }
}


/* Direct landing: mobile form before direct contact block */
@media (max-width: 768px) {
    .direct-contact .contact-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
    }
    .direct-contact .contact-form-container,
    .direct-contact .contact-form-container[data-direct-form] {
        order: 1 !important;
        display: block !important;
    }
    .direct-contact .contact-info {
        order: 2 !important;
        display: block !important;
        margin-top: 6px !important;
    }
}

/* Direct landing: useful hero proof block instead of decorative animation */
.direct-landing-page--polished .direct-hero__grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .78fr);
    gap: 34px;
    align-items: center;
    max-width: 100% !important;
}

.direct-landing-page--polished .direct-hero__content {
    max-width: 780px !important;
}

.direct-hero-proof {
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(134,87,219,.14);
    border-radius: 28px;
    padding: 18px;
    box-shadow: 0 22px 58px rgba(0,0,0,.12);
    position: relative;
    overflow: hidden;
}

.direct-hero-proof::before {
    content: '';
    position: absolute;
    inset: -80px -70px auto auto;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(136,112,255,.24), transparent 68%);
    pointer-events: none;
}

.direct-hero-proof__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.direct-hero-proof__head span {
    color: var(--primary-dark);
    font-weight: 800;
    font-size: .9rem;
}

.direct-hero-proof__head strong {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #777;
}

.direct-hero-proof__list {
    display: grid;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.direct-hero-work {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr) 42px;
    gap: 12px;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 8px 22px rgba(0,0,0,.06);
}

.direct-hero-work img {
    width: 116px;
    height: 66px;
    object-fit: cover;
    border-radius: 12px;
    background: #f3f4f6;
}

.direct-hero-work h3 {
    font-size: .92rem;
    line-height: 1.25;
    margin: 0 0 4px;
    color: #111;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.direct-hero-work p {
    font-size: .78rem;
    line-height: 1.35;
    margin: 0;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.direct-hero-work__play {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg,var(--primary-light),var(--primary-dark));
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(134,87,219,.24);
}

.direct-hero-proof__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--primary-dark);
    font-weight: 800;
    font-size: .9rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .direct-landing-page--polished .direct-hero__grid {
        grid-template-columns: 1fr !important;
    }

    .direct-hero-proof {
        max-width: 760px;
    }
}

@media (max-width: 768px) {
    .direct-hero-proof {
        margin-top: 22px;
        padding: 14px;
        border-radius: 22px;
    }

    .direct-hero-proof__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }

    .direct-hero-work {
        grid-template-columns: 96px minmax(0, 1fr) 38px;
        gap: 10px;
        border-radius: 16px;
        padding: 9px;
    }

    .direct-hero-work img {
        width: 96px;
        height: 58px;
        border-radius: 10px;
    }

    .direct-hero-work h3 {
        font-size: .84rem;
        line-height: 1.22;
    }

    .direct-hero-work p {
        font-size: .72rem;
        line-height: 1.3;
        -webkit-line-clamp: 1;
    }

    .direct-hero-work__play {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 370px) {
    .direct-hero-work {
        grid-template-columns: 86px minmax(0, 1fr) 34px;
    }

    .direct-hero-work img {
        width: 86px;
        height: 52px;
    }

    .direct-hero-work__play {
        width: 34px;
        height: 34px;
    }
}


/* Direct landing: mobile fixed bottom CTA removed */
.direct-mobile-cta { display: none !important; }
@media (max-width: 768px) {
    .direct-mobile-cta { display: none !important; }
    footer { padding-bottom: 0; }
}

/* Direct landing reviews actions */
.direct-review-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .direct-review-actions {
        flex-direction: column;
    }

    .direct-review-actions .btn {
        width: 100%;
        max-width: 320px;
    }
}

/* Direct landing: lower the first-contact barrier */
.direct-hero__messengers {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 720px;
    margin: 0 0 20px;
    padding: 16px 18px;
    border: 1px solid rgba(134,87,219,.16);
    border-radius: 22px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 14px 36px rgba(0,0,0,.07);
}
.direct-hero__messengers-text {
    display: grid;
    gap: 4px;
    color: var(--text-dark);
}
.direct-hero__messengers-text strong {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.25;
}
.direct-hero__messengers-text span {
    color: var(--text-light);
    font-size: .94rem;
    line-height: 1.45;
}
.direct-hero__messengers-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.direct-messenger-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 15px;
    border-radius: 999px;
    font-weight: 800;
    color: var(--primary-dark);
    background: rgba(136,112,255,.12);
    border: 1px solid rgba(134,87,219,.2);
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.direct-messenger-btn:hover {
    transform: translateY(-2px);
    background: rgba(136,112,255,.18);
    box-shadow: 0 10px 22px rgba(134,87,219,.16);
}
.direct-price-note strong {
    color: var(--text-dark);
    font-family: 'Montserrat', Arial, sans-serif;
}
@media (max-width: 768px) {
    .direct-hero__messengers {
        align-items: stretch;
        flex-direction: column;
        padding: 15px;
        border-radius: 20px;
    }
    .direct-hero__messengers-actions {
        width: 100%;
        flex-direction: column;
    }
    .direct-messenger-btn {
        width: 100%;
    }
}

/* Direct landing: compact hero and faster contact choice */
.direct-landing-page--polished .direct-hero {
    padding-top: 118px !important;
    padding-bottom: 64px !important;
}
.direct-landing-page--polished .direct-hero h1 {
    font-size: clamp(2rem, 3.35vw, 3.25rem) !important;
    line-height: 1.12 !important;
    margin-bottom: 16px !important;
}
.direct-landing-page--polished .direct-hero__lead {
    max-width: 720px !important;
    font-size: 1.05rem !important;
    line-height: 1.62 !important;
    margin-bottom: 22px !important;
}
.direct-landing-page--polished .direct-hero__actions {
    margin-bottom: 16px !important;
}
.direct-landing-page--polished .direct-hero__messengers {
    max-width: 760px;
    margin: 0 0 16px !important;
    padding: 14px 16px !important;
}
.direct-landing-page--polished .direct-hero__messengers-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
}
.direct-landing-page--polished .direct-messenger-btn {
    min-height: 40px;
    padding: 9px 14px;
}
.direct-landing-page--polished .direct-hero__points {
    margin-top: 0 !important;
}
@media (max-width: 768px) {
    .direct-landing-page--polished .direct-hero {
        padding-top: 92px !important;
        padding-bottom: 44px !important;
    }
    .direct-landing-page--polished .direct-hero h1 {
        font-size: clamp(2rem, 10vw, 2.65rem) !important;
        line-height: 1.1 !important;
    }
    .direct-landing-page--polished .direct-hero__lead {
        font-size: 1rem !important;
        line-height: 1.55 !important;
        margin-bottom: 18px !important;
    }
    .direct-landing-page--polished .direct-hero__messengers-actions {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Direct landing: final hero CTA refinement */
.direct-landing-page--polished .direct-hero__lead {
    max-width: 680px !important;
}
.direct-landing-page--polished .direct-hero__messengers-text span {
    max-width: 390px;
}
.direct-landing-page--polished .direct-hero__messengers-actions {
    min-width: 330px;
}
.direct-landing-page--polished .direct-messenger-btn {
    min-width: 96px;
}
.direct-landing-page--polished .direct-hero__points {
    gap: 8px !important;
}
.direct-landing-page--polished .direct-hero__points span {
    padding: 8px 12px !important;
    font-size: .95rem !important;
}
@media (max-width: 768px) {
    .direct-landing-page--polished .direct-hero__messengers-text span {
        max-width: none;
    }
    .direct-landing-page--polished .direct-hero__messengers-actions {
        min-width: 0;
    }
    .direct-landing-page--polished .direct-messenger-btn {
        min-width: 0;
    }
}


/* Direct landing: final hero visual polish */
.direct-landing-page--polished .direct-hero h1 {
    font-size: clamp(1.9rem, 3.05vw, 3rem) !important;
    line-height: 1.12 !important;
}
.direct-landing-page--polished .direct-hero__messengers {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 14px !important;
    max-width: 740px !important;
    padding: 13px 16px !important;
}
.direct-landing-page--polished .direct-hero__messengers-text {
    gap: 3px !important;
}
.direct-landing-page--polished .direct-hero__messengers-text strong {
    font-size: .96rem !important;
}
.direct-landing-page--polished .direct-hero__messengers-text span {
    font-size: .9rem !important;
    line-height: 1.4 !important;
    max-width: 430px !important;
}
.direct-landing-page--polished .direct-hero__messengers-actions {
    min-width: 0 !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-end !important;
    gap: 8px !important;
}
.direct-landing-page--polished .direct-messenger-btn {
    min-width: 90px !important;
    min-height: 38px !important;
    padding: 8px 13px !important;
    font-size: .9rem !important;
}
.direct-hero-proof__head span {
    font-size: .94rem !important;
}
.direct-hero-proof__link {
    font-size: .86rem !important;
}
@media (max-width: 768px) {
    .direct-landing-page--polished .direct-hero h1 {
        font-size: clamp(1.78rem, 9vw, 2.35rem) !important;
        line-height: 1.12 !important;
    }
    .direct-landing-page--polished .direct-hero__messengers {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        padding: 14px !important;
    }
    .direct-landing-page--polished .direct-hero__messengers-actions {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        width: 100% !important;
        gap: 8px !important;
    }
    .direct-landing-page--polished .direct-messenger-btn {
        width: 100% !important;
        min-width: 0 !important;
        font-size: .86rem !important;
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
}
@media (max-width: 420px) {
    .direct-landing-page--polished .direct-hero__messengers-actions {
        grid-template-columns: 1fr !important;
    }
}

/* Direct landing: compact mobile hero after traffic review */
.direct-mobile-text { display: none; }
.direct-desktop-text { display: inline; }
@media (max-width: 768px) {
    .direct-desktop-text { display: none !important; }
    .direct-mobile-text { display: inline !important; }
    .direct-landing-page--polished .direct-hero {
        padding-top: 94px !important;
        padding-bottom: 26px !important;
    }
    .direct-landing-page--polished .direct-kicker {
        margin-bottom: 14px !important;
        padding: 7px 13px !important;
        font-size: .86rem !important;
    }
    .direct-landing-page--polished .direct-hero h1 {
        font-size: clamp(1.65rem, 8.2vw, 2.08rem) !important;
        line-height: 1.08 !important;
        margin-bottom: 14px !important;
    }
    .direct-landing-page--polished .direct-hero__lead {
        font-size: .98rem !important;
        line-height: 1.48 !important;
        margin-bottom: 0 !important;
    }
    .direct-landing-page--polished .direct-hero__actions {
        gap: 10px !important;
        margin: 22px 0 14px !important;
    }
    .direct-landing-page--polished .direct-hero__actions .btn {
        min-height: 48px !important;
        padding: 12px 16px !important;
        font-size: .93rem !important;
    }
    .direct-landing-page--polished .direct-hero__messengers {
        padding: 12px !important;
        gap: 9px !important;
        margin-top: 0 !important;
    }
    .direct-landing-page--polished .direct-hero__messengers-text strong {
        font-size: .94rem !important;
        line-height: 1.18 !important;
    }
    .direct-landing-page--polished .direct-hero__messengers-text span {
        font-size: .84rem !important;
        line-height: 1.32 !important;
    }
    .direct-landing-page--polished .direct-hero__messengers-actions {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 7px !important;
    }
    .direct-landing-page--polished .direct-messenger-btn {
        min-height: 36px !important;
        padding: 7px 6px !important;
        font-size: .8rem !important;
    }
    .direct-landing-page--polished .direct-hero__points {
        gap: 8px !important;
        margin-top: 12px !important;
    }
    .direct-landing-page--polished .direct-hero__points span {
        width: auto !important;
        font-size: .82rem !important;
        padding: 8px 10px !important;
        border-radius: 12px !important;
    }
    .direct-hero-proof {
        margin-top: 18px !important;
    }
}
@media (max-width: 420px) {
    .direct-landing-page--polished .direct-hero__messengers-actions {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
    .direct-landing-page--polished .direct-messenger-btn {
        font-size: .76rem !important;
    }
}

/* Direct landing: mobile proof closer to hero */
@media (max-width: 768px) {
    .direct-landing-page--polished .direct-hero__points {
        display: none !important;
    }
    .direct-landing-page--polished .direct-hero {
        padding-bottom: 18px !important;
    }
    .direct-hero-proof {
        margin-top: 12px !important;
        padding: 12px !important;
        border-radius: 20px !important;
    }
    .direct-hero-proof__head {
        margin-bottom: 10px !important;
        gap: 2px !important;
    }
    .direct-hero-proof__list {
        gap: 10px !important;
    }
    .direct-hero-proof__link {
        margin-top: 10px !important;
    }
}

@media (max-width: 420px) {
    .direct-hero-proof {
        margin-top: 10px !important;
    }
}

/* Direct landing: compact mobile task cards */
@media (max-width: 768px) {
    .direct-landing-page--polished .direct-formats {
        padding-top: 34px !important;
        padding-bottom: 34px !important;
    }

    .direct-landing-page--polished .direct-formats .section-title {
        margin-bottom: 20px !important;
    }

    .direct-landing-page--polished .direct-formats .section-title h2 {
        font-size: 1.48rem !important;
        line-height: 1.22 !important;
        margin-bottom: 12px !important;
    }

    .direct-landing-page--polished .direct-formats .section-title p {
        font-size: .9rem !important;
        line-height: 1.5 !important;
        max-width: 320px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .direct-landing-page--polished .direct-formats .direct-card-grid,
    .direct-landing-page--polished .direct-formats .direct-card-grid--4 {
        gap: 12px !important;
    }

    .direct-landing-page--polished .direct-formats .direct-card {
        display: grid !important;
        grid-template-columns: 46px minmax(0, 1fr) !important;
        column-gap: 14px !important;
        row-gap: 4px !important;
        align-items: start !important;
        padding: 16px !important;
        border-radius: 18px !important;
        box-shadow: 0 8px 22px rgba(0,0,0,.045) !important;
    }

    .direct-landing-page--polished .direct-formats .direct-card__icon {
        grid-column: 1 !important;
        grid-row: 1 / span 2 !important;
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
        border-radius: 15px !important;
        font-size: 1.05rem !important;
        margin: 0 !important;
    }

    .direct-landing-page--polished .direct-formats .direct-card h3 {
        grid-column: 2 !important;
        margin: 0 0 4px !important;
        font-size: 1rem !important;
        line-height: 1.22 !important;
    }

    .direct-landing-page--polished .direct-formats .direct-card p {
        grid-column: 2 !important;
        margin: 0 !important;
        font-size: .86rem !important;
        line-height: 1.45 !important;
    }
}

@media (max-width: 420px) {
    .direct-landing-page--polished .direct-formats .direct-card {
        padding: 15px 14px !important;
        column-gap: 12px !important;
    }

    .direct-landing-page--polished .direct-formats .direct-card h3 {
        font-size: .98rem !important;
    }

    .direct-landing-page--polished .direct-formats .direct-card p {
        font-size: .84rem !important;
    }
}

/* Direct landing: compact mobile included/work list */
@media (max-width: 768px) {
    .direct-landing-page--polished .direct-included.section {
        padding-top: 36px !important;
        padding-bottom: 38px !important;
    }

    .direct-landing-page--polished .direct-included .direct-split {
        gap: 18px !important;
    }

    .direct-landing-page--polished .direct-included .section-title {
        margin-bottom: 18px !important;
    }

    .direct-landing-page--polished .direct-included .section-title h2 {
        margin-bottom: 12px !important;
    }

    .direct-landing-page--polished .direct-included .section-title p {
        max-width: 100% !important;
        margin-bottom: 0 !important;
    }

    .direct-landing-page--polished .direct-check-list {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px 12px !important;
        margin-top: 8px !important;
    }

    .direct-landing-page--polished .direct-check-list span {
        background: transparent !important;
        border-radius: 0 !important;
        padding: 0 0 0 20px !important;
        min-height: auto !important;
        font-size: .78rem !important;
        line-height: 1.35 !important;
        font-weight: 700 !important;
        box-shadow: none !important;
    }

    .direct-landing-page--polished .direct-check-list span::before {
        left: 0 !important;
        top: .05em !important;
        transform: none !important;
        font-size: .95rem !important;
        line-height: 1 !important;
    }

    .direct-landing-page--polished .direct-included .direct-note-card {
        padding: 16px 16px !important;
        border-radius: 18px !important;
        margin-top: 4px !important;
    }

    .direct-landing-page--polished .direct-included .direct-note-card h3 {
        font-size: 1.05rem !important;
        line-height: 1.25 !important;
        margin-bottom: 8px !important;
    }

    .direct-landing-page--polished .direct-included .direct-note-card p {
        font-size: .86rem !important;
        line-height: 1.48 !important;
        margin-bottom: 12px !important;
    }

    .direct-landing-page--polished .direct-included .direct-note-card .btn {
        margin-top: 0 !important;
        padding: 10px 17px !important;
        font-size: .85rem !important;
        width: auto !important;
    }
}

@media (max-width: 360px) {
    .direct-landing-page--polished .direct-check-list {
        grid-template-columns: 1fr !important;
    }
}

/* Direct landing: compact mobile price cards */
@media (max-width: 768px) {
    .direct-landing-page--polished .direct-prices.section {
        padding-top: 36px !important;
        padding-bottom: 38px !important;
    }

    .direct-landing-page--polished .direct-prices .section-title {
        margin-bottom: 20px !important;
    }

    .direct-landing-page--polished .direct-prices .section-title h2 {
        font-size: 1.48rem !important;
        line-height: 1.22 !important;
        margin-bottom: 12px !important;
    }

    .direct-landing-page--polished .direct-prices .section-title p {
        font-size: .9rem !important;
        line-height: 1.5 !important;
        max-width: 330px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .direct-landing-page--polished .direct-price-grid {
        gap: 12px !important;
    }

    .direct-landing-page--polished .direct-price-card {
        padding: 16px 18px !important;
        border-radius: 18px !important;
        box-shadow: 0 8px 22px rgba(0,0,0,.045) !important;
    }

    .direct-landing-page--polished .direct-price-card h3 {
        font-size: 1.02rem !important;
        line-height: 1.24 !important;
        margin-bottom: 8px !important;
    }

    .direct-landing-page--polished .direct-price-card strong {
        font-size: 1.42rem !important;
        line-height: 1.1 !important;
        margin-bottom: 8px !important;
        white-space: nowrap !important;
    }

    .direct-landing-page--polished .direct-price-card p {
        font-size: .86rem !important;
        line-height: 1.45 !important;
        margin-bottom: 0 !important;
    }

    .direct-landing-page--polished .direct-price-link {
        margin-top: 12px !important;
        font-size: .88rem !important;
        line-height: 1.2 !important;
    }

    .direct-landing-page--polished .direct-price-note {
        margin-top: 16px !important;
        padding: 14px 16px !important;
        border-radius: 16px !important;
        font-size: .88rem !important;
        line-height: 1.48 !important;
    }
}

@media (max-width: 420px) {
    .direct-landing-page--polished .direct-price-card {
        padding: 15px 16px !important;
    }

    .direct-landing-page--polished .direct-price-card strong {
        font-size: 1.34rem !important;
    }
}

/* Mobile video portfolio cards: compact, informative and clearly playable */
@media (max-width: 768px) {
    .direct-landing-page--polished .direct-portfolio .portfolio-grid {
        gap: 12px !important;
    }

    .direct-landing-page--polished .direct-portfolio-item {
        aspect-ratio: auto !important;
        min-height: 112px;
        display: grid;
        grid-template-columns: 118px minmax(0, 1fr);
        align-items: stretch;
        justify-content: initial;
        overflow: hidden;
        border-radius: 16px;
        background: #fff !important;
        box-shadow: 0 10px 28px rgba(31, 24, 57, 0.09);
    }

    .direct-landing-page--polished .direct-portfolio-link {
        width: 118px;
        height: 112px;
        min-width: 118px;
        position: relative;
        overflow: hidden;
        border-radius: 16px 0 0 16px;
    }

    .direct-landing-page--polished .direct-portfolio-link img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: none !important;
    }

    .direct-landing-page--polished .direct-portfolio-item .portfolio-overlay {
        position: relative;
        inset: auto;
        width: auto;
        height: auto;
        min-width: 0;
        opacity: 1;
        padding: 14px 58px 14px 14px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        text-align: left;
        background: #fff;
        border-radius: 0 16px 16px 0;
    }

    .direct-landing-page--polished .direct-portfolio-item .portfolio-overlay h3 {
        color: var(--text-dark);
        font-size: .96rem;
        line-height: 1.28;
        margin: 0 0 5px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .direct-landing-page--polished .direct-portfolio-item .portfolio-overlay p {
        color: var(--text-light);
        font-size: .78rem;
        line-height: 1.35;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .direct-landing-page--polished .direct-portfolio-item .play-btn {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
        color: #fff;
        box-shadow: 0 8px 18px rgba(134, 87, 219, .28);
        z-index: 3;
    }

    .direct-landing-page--polished .direct-portfolio-item .play-btn:hover {
        transform: translateY(-50%) scale(1.05);
    }

    .direct-landing-page--polished .direct-portfolio .direct-center {
        margin-top: 20px;
    }
}

@media (max-width: 390px) {
    .direct-landing-page--polished .direct-portfolio-item {
        grid-template-columns: 104px minmax(0, 1fr);
        min-height: 104px;
    }

    .direct-landing-page--polished .direct-portfolio-link {
        width: 104px;
        min-width: 104px;
        height: 104px;
    }

    .direct-landing-page--polished .direct-portfolio-item .portfolio-overlay {
        padding: 12px 52px 12px 12px;
    }
}

/* Direct landing: compact lower mobile sections */
@media (max-width: 768px) {
    .direct-landing-page--polished .direct-reviews.section,
    .direct-landing-page--polished .direct-process.section,
    .direct-landing-page--polished .direct-why.section,
    .direct-landing-page--polished .direct-faq.section,
    .direct-landing-page--polished .direct-contact.section {
        padding-top: 38px !important;
        padding-bottom: 38px !important;
    }

    .direct-landing-page--polished .direct-review-grid {
        gap: 12px !important;
    }
    .direct-landing-page--polished .direct-review-card {
        padding: 16px 18px !important;
        border-radius: 18px !important;
    }
    .direct-landing-page--polished .direct-review-card__top {
        margin-bottom: 6px !important;
    }
    .direct-landing-page--polished .direct-review-card__service {
        margin-bottom: 8px !important;
        padding: 4px 9px !important;
        font-size: .76rem !important;
    }
    .direct-landing-page--polished .direct-review-card p {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: .84rem !important;
        line-height: 1.46 !important;
    }
    .direct-landing-page--polished .direct-review-actions {
        margin-top: 18px !important;
        gap: 10px !important;
    }
    .direct-landing-page--polished .direct-review-actions .btn {
        min-height: 44px !important;
        padding: 10px 16px !important;
    }

    .direct-landing-page--polished .direct-process-steps {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        margin-top: 18px !important;
    }
    .direct-landing-page--polished .direct-process-steps::before {
        display: none !important;
    }
    .direct-landing-page--polished .direct-process-steps .step {
        display: grid !important;
        grid-template-columns: 38px minmax(0,1fr) !important;
        column-gap: 12px !important;
        row-gap: 2px !important;
        align-items: center !important;
        text-align: left !important;
        margin: 0 !important;
        padding: 14px 16px !important;
        border-radius: 16px !important;
        background: #fff !important;
        box-shadow: 0 7px 20px rgba(0,0,0,.045) !important;
    }
    .direct-landing-page--polished .direct-process-steps .step-number {
        grid-row: 1 / span 2;
        width: 38px !important;
        height: 38px !important;
        margin: 0 !important;
        font-size: .95rem !important;
    }
    .direct-landing-page--polished .direct-process-steps .step h3 {
        margin: 0 !important;
        font-size: .98rem !important;
    }
    .direct-landing-page--polished .direct-process-steps .step p {
        margin: 0 !important;
        font-size: .8rem !important;
        line-height: 1.38 !important;
    }

    .direct-landing-page--polished .direct-why .direct-card-grid {
        gap: 12px !important;
    }
    .direct-landing-page--polished .direct-why .direct-card {
        padding: 16px 18px !important;
        border-radius: 18px !important;
    }
    .direct-landing-page--polished .direct-why .direct-card h3 {
        font-size: 1rem !important;
        margin-bottom: 7px !important;
    }
    .direct-landing-page--polished .direct-why .direct-card p {
        font-size: .84rem !important;
        line-height: 1.45 !important;
    }

    .direct-landing-page--polished .direct-faq-list {
        gap: 9px !important;
    }
    .direct-landing-page--polished .direct-faq-list details {
        padding: 13px 15px !important;
        border-radius: 15px !important;
    }
    .direct-landing-page--polished .direct-faq-list summary {
        font-size: .88rem !important;
        line-height: 1.35 !important;
    }
    .direct-landing-page--polished .direct-faq-list p {
        margin-top: 9px !important;
        font-size: .84rem !important;
        line-height: 1.48 !important;
    }

    .direct-landing-page--polished .direct-contact .section-title {
        margin-bottom: 20px !important;
    }
    .direct-landing-page--polished .direct-contact .contact-container {
        gap: 18px !important;
    }
    .direct-landing-page--polished .direct-contact .contact-form-container {
        padding: 18px 16px !important;
        border-radius: 18px !important;
    }
    .direct-landing-page--polished .direct-contact .form-group {
        margin-bottom: 15px !important;
    }
    .direct-landing-page--polished .direct-contact label {
        font-size: .9rem !important;
        margin-bottom: 7px !important;
    }
    .direct-landing-page--polished .direct-contact .form-control {
        min-height: 48px !important;
        padding: 11px 13px !important;
    }
    .direct-landing-page--polished .direct-contact textarea.form-control {
        min-height: 112px !important;
    }
    .direct-landing-page--polished .direct-contact small {
        font-size: .74rem !important;
    }
    .direct-landing-page--polished .direct-contact .form-optional {
        color: var(--text-light);
        font-size: .74rem;
        font-weight: 500;
        margin-left: 5px;
    }
    .direct-landing-page--polished .direct-contact .contact-info {
        padding-top: 2px !important;
    }
    .direct-landing-page--polished .direct-contact .contact-info h3 {
        font-size: 1.35rem !important;
        margin-bottom: 10px !important;
    }
    .direct-landing-page--polished .direct-contact .contact-info > p {
        font-size: .86rem !important;
        line-height: 1.48 !important;
        margin-bottom: 16px !important;
    }
    .direct-landing-page--polished .direct-contact .contact-details {
        gap: 10px !important;
    }
    .direct-landing-page--polished .direct-contact .contact-detail {
        gap: 11px !important;
        padding: 5px 0 !important;
    }
    .direct-landing-page--polished .direct-contact .contact-detail > svg,
    .direct-landing-page--polished .direct-contact .contact-detail > i,
    .direct-landing-page--polished .direct-contact .contact-detail .contact-icon {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
    }
    .direct-landing-page--polished .direct-contact .contact-detail strong {
        font-size: .86rem !important;
    }
    .direct-landing-page--polished .direct-contact .contact-detail p {
        font-size: .82rem !important;
        margin-top: 2px !important;
    }
}

/* Desktop refinement: video portfolio, form and information sections */
@media (min-width: 769px) {
    .direct-landing-page--polished .direct-included .direct-split {
        grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
        gap: 42px;
        align-items: stretch;
    }

    .direct-landing-page--polished .direct-included .direct-check-list {
        row-gap: 18px;
        column-gap: 34px;
    }

    .direct-landing-page--polished .direct-included .direct-note-card {
        position: static;
        align-self: start;
        padding: 28px 30px;
        min-height: 0;
    }

    .direct-landing-page--polished .direct-why .direct-card {
        padding: 24px 28px;
        min-height: 0;
    }

    .direct-landing-page--polished .direct-why .direct-card p {
        max-width: 42ch;
        line-height: 1.55;
    }

    .direct-landing-page--polished .direct-portfolio .portfolio-grid {
        gap: 24px;
        align-items: stretch;
    }

    .direct-landing-page--polished .direct-portfolio-item {
        aspect-ratio: auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        border-radius: 20px;
        background: #fff;
        box-shadow: 0 12px 32px rgba(31, 24, 57, .09);
    }

    .direct-landing-page--polished .direct-portfolio-link {
        display: block;
        width: 100%;
        height: 230px;
        overflow: hidden;
        border-radius: 20px 20px 0 0;
        background: #1f1f1f;
    }

    .direct-landing-page--polished .direct-portfolio-link img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: none;
    }

    .direct-landing-page--polished .direct-portfolio-item .portfolio-overlay {
        position: relative;
        inset: auto;
        opacity: 1;
        min-height: 126px;
        padding: 20px 76px 20px 22px;
        display: block;
        text-align: left;
        background: #fff;
        border-radius: 0 0 20px 20px;
    }

    .direct-landing-page--polished .direct-portfolio-item .portfolio-overlay h3 {
        margin: 0 0 7px;
        color: var(--text-dark);
        font-size: 1.08rem;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .direct-landing-page--polished .direct-portfolio-item .portfolio-overlay p {
        margin: 0;
        color: var(--text-light);
        font-size: .9rem;
        line-height: 1.45;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .direct-landing-page--polished .direct-portfolio-item .play-btn {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        min-width: 48px;
        background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
        color: #fff;
        box-shadow: 0 9px 22px rgba(134, 87, 219, .28);
    }

    .direct-landing-page--polished .direct-portfolio-item:hover .portfolio-overlay {
        opacity: 1;
    }

    .direct-landing-page--polished .direct-contact .contact-container {
        grid-template-columns: minmax(300px, .82fr) minmax(520px, 1.18fr);
        gap: 52px;
        align-items: start;
    }

    .direct-landing-page--polished .direct-contact .contact-form-container {
        padding: 30px 34px;
    }

    .direct-landing-page--polished .direct-contact .form-group {
        margin-bottom: 18px;
    }

    .direct-landing-page--polished .direct-contact .contact-info > p {
        max-width: 520px;
        margin-bottom: 22px;
    }

    .direct-landing-page--polished .direct-contact .contact-details {
        gap: 12px;
    }

    .direct-landing-page--polished .direct-price-note {
        max-width: 980px;
        margin-left: auto;
        margin-right: auto;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

/* Commercial-intent shortcuts for Direct landing */
.direct-intent-strip {
    padding: 18px 0 8px;
    background: #fff;
}
.direct-intent-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.direct-intent-card {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-height: 96px;
    padding: 18px 20px;
    border: 1px solid rgba(139, 92, 246, .18);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
    color: inherit;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.direct-intent-card:hover {
    transform: translateY(-2px);
    border-color: rgba(139, 92, 246, .45);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .09);
}
.direct-intent-card strong {
    font-size: 17px;
    line-height: 1.25;
}
.direct-intent-card span {
    font-size: 14px;
    line-height: 1.45;
    color: #68707d;
}
@media (max-width: 980px) {
    .direct-intent-strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
    .direct-intent-strip { padding: 8px 0 4px; }
    .direct-intent-strip__grid { grid-template-columns: 1fr; gap: 8px; }
    .direct-intent-card { min-height: 0; padding: 12px 14px; border-radius: 15px; }
    .direct-intent-card strong { font-size: 15px; }
    .direct-intent-card span { font-size: 13px; }
}

/* Direct landing: compact hero contacts block polish */
.direct-landing-page--polished .direct-hero__messengers {
    padding: 10px 14px !important;
    gap: 10px !important;
    border-radius: 18px !important;
    margin-bottom: 12px !important;
}
.direct-landing-page--polished .direct-hero__messengers-text {
    gap: 2px !important;
}
.direct-landing-page--polished .direct-hero__messengers-text strong {
    font-size: .9rem !important;
    line-height: 1.18 !important;
    font-weight: 700 !important;
}
.direct-landing-page--polished .direct-hero__messengers-text span {
    font-size: .86rem !important;
    line-height: 1.32 !important;
}
.direct-landing-page--polished .direct-hero__messengers-actions {
    gap: 7px !important;
}
.direct-landing-page--polished .direct-messenger-btn {
    min-height: 40px !important;
    padding: 8px 14px !important;
}
@media (max-width: 768px) {
    .direct-landing-page--polished .direct-hero__messengers {
        padding: 10px 12px !important;
        gap: 8px !important;
        border-radius: 17px !important;
    }
    .direct-landing-page--polished .direct-hero__messengers-text strong {
        font-size: .88rem !important;
    }
    .direct-landing-page--polished .direct-hero__messengers-text span {
        font-size: .82rem !important;
        line-height: 1.28 !important;
    }
    .direct-landing-page--polished .direct-hero__messengers-actions {
        gap: 6px !important;
    }
    .direct-landing-page--polished .direct-messenger-btn {
        min-height: 38px !important;
        padding: 7px 8px !important;
    }
}

/* Direct landing: balanced hero contacts block size */
.direct-landing-page--polished .direct-hero__messengers {
    padding: 16px 20px !important;
    gap: 16px !important;
    border-radius: 20px !important;
    margin-bottom: 16px !important;
}
.direct-landing-page--polished .direct-hero__messengers-text {
    gap: 4px !important;
}
.direct-landing-page--polished .direct-hero__messengers-text strong {
    font-size: 1.05rem !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
}
.direct-landing-page--polished .direct-hero__messengers-text span {
    font-size: 1rem !important;
    line-height: 1.45 !important;
}
.direct-landing-page--polished .direct-hero__messengers-actions {
    gap: 10px !important;
}
.direct-landing-page--polished .direct-messenger-btn {
    min-height: 46px !important;
    padding: 10px 18px !important;
    font-size: 1rem !important;
}
@media (max-width: 768px) {
    .direct-landing-page--polished .direct-hero__messengers {
        padding: 14px 14px !important;
        gap: 12px !important;
        border-radius: 18px !important;
    }
    .direct-landing-page--polished .direct-hero__messengers-text strong {
        font-size: 1rem !important;
        line-height: 1.25 !important;
    }
    .direct-landing-page--polished .direct-hero__messengers-text span {
        font-size: .93rem !important;
        line-height: 1.38 !important;
    }
    .direct-landing-page--polished .direct-hero__messengers-actions {
        gap: 8px !important;
    }
    .direct-landing-page--polished .direct-messenger-btn {
        min-height: 42px !important;
        padding: 8px 10px !important;
        font-size: .93rem !important;
    }
}


/* Direct landing: final hero work label and lighter messenger buttons */
.direct-landing-page--polished .direct-messenger-btn {
    min-height: 42px !important;
    padding: 8px 15px !important;
    font-size: .96rem !important;
}
@media (max-width: 768px) {
    .direct-landing-page--polished .direct-messenger-btn {
        min-height: 40px !important;
        padding: 7px 9px !important;
        font-size: .9rem !important;
    }
}

/* Direct landing: add breathing room before contacts on mobile */
@media (max-width: 768px) {
    .direct-landing-page--polished .direct-hero__messengers {
        margin-top: 20px !important;
    }
}


/* Larger exact-estimate CTA block */
.direct-price-note {
    padding: 32px 40px !important;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.direct-price-note strong,
.direct-price-note b {
    display: block;
    margin-bottom: 10px;
    font-size: clamp(24px, 1.8vw, 32px) !important;
    line-height: 1.2;
}

.direct-price-note p {
    margin: 0;
    font-size: clamp(18px, 1.25vw, 23px) !important;
    line-height: 1.5;
}

.direct-price-note__text {
    display: block;
    margin-top: 0;
}

@media (max-width: 767px) {
    .direct-price-note {
        min-height: auto;
        padding: 24px 20px !important;
        border-radius: 22px;
    }

    .direct-price-note strong,
    .direct-price-note b {
        font-size: 22px !important;
        margin-bottom: 8px;
    }

    .direct-price-note p {
        font-size: 17px !important;
        line-height: 1.45;
    }
}

/* =========================================================
   Vigrama Direct landing — unified typography system
   ========================================================= */
.direct-landing-page--polished {
    --direct-fs-h1: clamp(46px, 4.1vw, 66px);
    --direct-fs-h2: clamp(36px, 3vw, 48px);
    --direct-fs-h3: clamp(20px, 1.45vw, 25px);
    --direct-fs-body: 19px;
    --direct-fs-small: 16px;
    --direct-fs-button: 17px;
    --direct-fs-price: clamp(30px, 2.15vw, 36px);
    --direct-lh-heading: 1.16;
    --direct-lh-body: 1.55;
}

.direct-landing-page--polished .direct-hero h1 {
    font-size: var(--direct-fs-h1) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.025em !important;
}

.direct-landing-page--polished .section-title h2,
.direct-landing-page--polished .direct-contact .section-title h2 {
    font-size: var(--direct-fs-h2) !important;
    line-height: var(--direct-lh-heading) !important;
    letter-spacing: -0.018em !important;
}

.direct-landing-page--polished .section-title p,
.direct-landing-page--polished .direct-hero__lead {
    font-size: var(--direct-fs-body) !important;
    line-height: var(--direct-lh-body) !important;
}

.direct-landing-page--polished .direct-card h3,
.direct-landing-page--polished .direct-price-card h3,
.direct-landing-page--polished .direct-note-card h3,
.direct-landing-page--polished .direct-review-card h3,
.direct-landing-page--polished .direct-process-steps .step h3,
.direct-landing-page--polished .direct-contact .contact-info h3,
.direct-landing-page--polished .portfolio-overlay h3 {
    font-size: var(--direct-fs-h3) !important;
    line-height: 1.28 !important;
    letter-spacing: -0.01em !important;
}

.direct-landing-page--polished .direct-card p,
.direct-landing-page--polished .direct-price-card p,
.direct-landing-page--polished .direct-note-card p,
.direct-landing-page--polished .direct-review-card p,
.direct-landing-page--polished .direct-process-steps .step p,
.direct-landing-page--polished .direct-contact .contact-info > p,
.direct-landing-page--polished .portfolio-overlay p,
.direct-landing-page--polished .direct-faq-list p,
.direct-landing-page--polished .direct-check-list span {
    font-size: var(--direct-fs-body) !important;
    line-height: var(--direct-lh-body) !important;
}

.direct-landing-page--polished .direct-price-card strong {
    font-size: var(--direct-fs-price) !important;
    line-height: 1.1 !important;
}

.direct-landing-page--polished .btn,
.direct-landing-page--polished button,
.direct-landing-page--polished .direct-price-link,
.direct-landing-page--polished .direct-messenger-btn,
.direct-landing-page--polished .direct-review-actions .btn {
    font-size: var(--direct-fs-button) !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
}

.direct-landing-page--polished .direct-faq-list summary,
.direct-landing-page--polished .direct-contact label,
.direct-landing-page--polished .direct-review-card__name,
.direct-landing-page--polished .direct-review-card__service {
    font-size: var(--direct-fs-small) !important;
    line-height: 1.4 !important;
}

.direct-landing-page--polished .direct-contact .form-control,
.direct-landing-page--polished .direct-contact input,
.direct-landing-page--polished .direct-contact textarea,
.direct-landing-page--polished .direct-contact select {
    font-size: 17px !important;
    line-height: 1.4 !important;
}

.direct-landing-page--polished .direct-price-note {
    font-size: var(--direct-fs-body) !important;
    line-height: var(--direct-lh-body) !important;
}

.direct-landing-page--polished .direct-price-note strong,
.direct-landing-page--polished .direct-price-note b {
    font-size: var(--direct-fs-h3) !important;
    line-height: 1.25 !important;
}

.direct-landing-page--polished .direct-hero__messengers-text strong {
    font-size: 20px !important;
    line-height: 1.3 !important;
}

.direct-landing-page--polished .direct-hero__messengers-text span {
    font-size: 18px !important;
    line-height: 1.5 !important;
}

@media (max-width: 768px) {
    .direct-landing-page--polished {
        --direct-fs-h1: clamp(34px, 9.2vw, 40px);
        --direct-fs-h2: clamp(28px, 7.5vw, 32px);
        --direct-fs-h3: 20px;
        --direct-fs-body: 17px;
        --direct-fs-small: 15px;
        --direct-fs-button: 16px;
        --direct-fs-price: 28px;
    }

    .direct-landing-page--polished .direct-hero h1 {
        line-height: 1.08 !important;
    }

    .direct-landing-page--polished .section-title h2,
    .direct-landing-page--polished .direct-contact .section-title h2 {
        line-height: 1.16 !important;
    }

    .direct-landing-page--polished .section-title p,
    .direct-landing-page--polished .direct-hero__lead,
    .direct-landing-page--polished .direct-card p,
    .direct-landing-page--polished .direct-price-card p,
    .direct-landing-page--polished .direct-note-card p,
    .direct-landing-page--polished .direct-review-card p,
    .direct-landing-page--polished .direct-process-steps .step p,
    .direct-landing-page--polished .direct-contact .contact-info > p,
    .direct-landing-page--polished .direct-faq-list p,
    .direct-landing-page--polished .direct-check-list span {
        line-height: 1.5 !important;
    }

    .direct-landing-page--polished .direct-process-steps .step h3 {
        font-size: 18px !important;
    }

    .direct-landing-page--polished .direct-process-steps .step p,
    .direct-landing-page--polished .direct-review-card p,
    .direct-landing-page--polished .direct-faq-list p {
        font-size: 16px !important;
    }

    .direct-landing-page--polished .direct-faq-list summary,
    .direct-landing-page--polished .direct-contact label {
        font-size: 16px !important;
    }

    .direct-landing-page--polished .direct-contact .form-control,
    .direct-landing-page--polished .direct-contact input,
    .direct-landing-page--polished .direct-contact textarea,
    .direct-landing-page--polished .direct-contact select {
        font-size: 16px !important;
    }

    .direct-landing-page--polished .direct-price-note {
        font-size: 17px !important;
    }

    .direct-landing-page--polished .direct-price-note strong,
    .direct-landing-page--polished .direct-price-note b {
        font-size: 22px !important;
    }

    .direct-landing-page--polished .direct-hero__messengers-text strong {
        font-size: 19px !important;
    }

    .direct-landing-page--polished .direct-hero__messengers-text span {
        font-size: 16px !important;
    }
}

/* =========================================================
   Vigrama Direct landing — balanced compact typography
   ========================================================= */
.direct-landing-page--polished {
    --direct-fs-h1: clamp(42px, 3.55vw, 56px);
    --direct-fs-h2: clamp(32px, 2.45vw, 40px);
    --direct-fs-h3: clamp(19px, 1.25vw, 22px);
    --direct-fs-body: 17px;
    --direct-fs-small: 15px;
    --direct-fs-button: 16px;
    --direct-fs-price: clamp(28px, 1.9vw, 32px);
    --direct-lh-heading: 1.14;
    --direct-lh-body: 1.5;
}

.direct-landing-page--polished .direct-hero__messengers-text strong {
    font-size: 18px !important;
}

.direct-landing-page--polished .direct-hero__messengers-text span {
    font-size: 16px !important;
}

.direct-landing-page--polished .direct-contact .form-control,
.direct-landing-page--polished .direct-contact input,
.direct-landing-page--polished .direct-contact textarea,
.direct-landing-page--polished .direct-contact select {
    font-size: 16px !important;
}

.direct-landing-page--polished .direct-price-note {
    min-height: 120px !important;
    padding: 24px 30px !important;
    font-size: 17px !important;
}

.direct-landing-page--polished .direct-price-note strong,
.direct-landing-page--polished .direct-price-note b {
    font-size: 21px !important;
    margin-bottom: 6px !important;
}

@media (max-width: 768px) {
    .direct-landing-page--polished {
        --direct-fs-h1: clamp(30px, 8.1vw, 35px);
        --direct-fs-h2: clamp(25px, 6.7vw, 29px);
        --direct-fs-h3: 18px;
        --direct-fs-body: 16px;
        --direct-fs-small: 14px;
        --direct-fs-button: 15px;
        --direct-fs-price: 25px;
    }

    .direct-landing-page--polished .direct-process-steps .step h3 {
        font-size: 17px !important;
    }

    .direct-landing-page--polished .direct-process-steps .step p,
    .direct-landing-page--polished .direct-review-card p,
    .direct-landing-page--polished .direct-faq-list p {
        font-size: 15px !important;
    }

    .direct-landing-page--polished .direct-faq-list summary,
    .direct-landing-page--polished .direct-contact label {
        font-size: 15px !important;
    }

    .direct-landing-page--polished .direct-contact .form-control,
    .direct-landing-page--polished .direct-contact input,
    .direct-landing-page--polished .direct-contact textarea,
    .direct-landing-page--polished .direct-contact select {
        font-size: 15px !important;
    }

    .direct-landing-page--polished .direct-price-note {
        min-height: auto !important;
        padding: 20px 18px !important;
        font-size: 16px !important;
    }

    .direct-landing-page--polished .direct-price-note strong,
    .direct-landing-page--polished .direct-price-note b {
        font-size: 19px !important;
    }

    .direct-landing-page--polished .direct-hero__messengers-text strong {
        font-size: 17px !important;
    }

    .direct-landing-page--polished .direct-hero__messengers-text span {
        font-size: 15px !important;
    }
}

/* =========================================================
   Vigrama Direct landing — visual weight refinement
   ========================================================= */
.direct-landing-page--polished {
    --direct-fs-h1: clamp(40px, 3.2vw, 52px);
    --direct-fs-h2: clamp(31px, 2.25vw, 38px);
}

.direct-landing-page--polished .section-title h2,
.direct-landing-page--polished .direct-included .section-title h2,
.direct-landing-page--polished .direct-prices .section-title h2,
.direct-landing-page--polished .direct-portfolio .section-title h2,
.direct-landing-page--polished .direct-reviews .section-title h2,
.direct-landing-page--polished .direct-process .section-title h2,
.direct-landing-page--polished .direct-faq .section-title h2,
.direct-landing-page--polished .direct-contact .section-title h2 {
    font-size: var(--direct-fs-h2) !important;
    line-height: 1.16 !important;
    margin-bottom: 14px !important;
}

.direct-landing-page--polished .direct-hero h1 {
    font-size: var(--direct-fs-h1) !important;
    line-height: 1.08 !important;
}

.direct-landing-page--polished .direct-portfolio .portfolio-grid {
    gap: 24px !important;
}

.direct-landing-page--polished .direct-portfolio-item {
    min-height: 0 !important;
}

.direct-landing-page--polished .direct-portfolio-link {
    min-height: 310px !important;
}

.direct-landing-page--polished .direct-portfolio-link img {
    height: 152px !important;
    object-fit: cover !important;
}

.direct-landing-page--polished .direct-portfolio-item .portfolio-overlay {
    padding: 22px 24px 24px !important;
}

.direct-landing-page--polished .direct-portfolio-item .portfolio-overlay h3 {
    font-size: 20px !important;
    line-height: 1.22 !important;
}

.direct-landing-page--polished .direct-portfolio-item .portfolio-overlay p {
    font-size: 16px !important;
    line-height: 1.45 !important;
}

@media (max-width: 768px) {
    .direct-landing-page--polished {
        --direct-fs-h1: clamp(29px, 7.8vw, 34px);
        --direct-fs-h2: clamp(25px, 6.5vw, 28px);
        --direct-fs-price: 23px;
    }

    .direct-landing-page--polished .direct-check-list li {
        font-size: 16px !important;
        line-height: 1.34 !important;
        font-weight: 600 !important;
    }

    .direct-landing-page--polished .direct-check-list {
        row-gap: 16px !important;
    }

    .direct-landing-page--polished .direct-price-card h3 {
        font-size: 19px !important;
        line-height: 1.25 !important;
    }

    .direct-landing-page--polished .direct-price-card strong {
        font-size: 23px !important;
        line-height: 1.15 !important;
        margin-bottom: 10px !important;
    }

    .direct-landing-page--polished .direct-price-card p {
        font-size: 15.5px !important;
        line-height: 1.45 !important;
    }

    .direct-landing-page--polished .direct-portfolio .portfolio-grid {
        gap: 14px !important;
    }

    .direct-landing-page--polished .direct-portfolio-item {
        min-height: 0 !important;
    }

    .direct-landing-page--polished .direct-portfolio-link {
        min-height: 0 !important;
        display: grid !important;
        grid-template-columns: 128px minmax(0, 1fr) 48px !important;
        align-items: stretch !important;
    }

    .direct-landing-page--polished .direct-portfolio-link img {
        width: 128px !important;
        height: 100% !important;
        min-height: 128px !important;
        object-fit: cover !important;
    }

    .direct-landing-page--polished .direct-portfolio-item .portfolio-overlay {
        position: static !important;
        padding: 16px 12px 16px 15px !important;
        min-width: 0 !important;
        background: transparent !important;
    }

    .direct-landing-page--polished .direct-portfolio-item .portfolio-overlay h3 {
        font-size: 17px !important;
        line-height: 1.25 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        margin-bottom: 6px !important;
    }

    .direct-landing-page--polished .direct-portfolio-item .portfolio-overlay p {
        font-size: 14px !important;
        line-height: 1.35 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .direct-landing-page--polished .direct-portfolio-item .play-btn {
        position: static !important;
        align-self: center !important;
        justify-self: center !important;
        width: 44px !important;
        height: 44px !important;
        margin: 0 4px 0 0 !important;
    }

    .direct-landing-page--polished .direct-hero__messengers-actions .btn,
    .direct-landing-page--polished .direct-hero__messengers-actions a {
        min-height: 42px !important;
        padding: 9px 14px !important;
        font-size: 15px !important;
    }
}

/* =========================================================
   Targeted repair: included list and portfolio cards
   ========================================================= */
@media (min-width: 769px) {
    .direct-landing-page--polished .direct-portfolio .portfolio-grid {
        align-items: stretch !important;
        gap: 26px !important;
    }

    .direct-landing-page--polished .direct-portfolio-item {
        display: flex !important;
        flex-direction: column !important;
        min-height: 0 !important;
        height: auto !important;
        overflow: hidden !important;
    }

    .direct-landing-page--polished .direct-portfolio-link {
        display: block !important;
        width: 100% !important;
        height: 190px !important;
        min-height: 190px !important;
        flex: 0 0 190px !important;
        overflow: hidden !important;
        background: #1f1f1f !important;
    }

    .direct-landing-page--polished .direct-portfolio-link img {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        object-fit: cover !important;
    }

    .direct-landing-page--polished .direct-portfolio-item .portfolio-overlay {
        position: relative !important;
        inset: auto !important;
        min-height: 132px !important;
        padding: 20px 76px 20px 24px !important;
        flex: 1 1 auto !important;
        overflow: visible !important;
    }

    .direct-landing-page--polished .direct-portfolio-item .play-btn {
        right: 20px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
}

@media (max-width: 768px) {
    .direct-landing-page--polished .direct-check-list {
        row-gap: 12px !important;
        column-gap: 14px !important;
    }

    .direct-landing-page--polished .direct-check-list li {
        font-size: 14.5px !important;
        line-height: 1.3 !important;
        font-weight: 600 !important;
        padding-left: 20px !important;
    }

    .direct-landing-page--polished .direct-check-list li::before {
        font-size: 15px !important;
        left: 0 !important;
        top: 0 !important;
    }

    .direct-landing-page--polished .direct-portfolio-item {
        display: grid !important;
        grid-template-columns: 128px minmax(0, 1fr) !important;
        min-height: 128px !important;
        height: auto !important;
        align-items: stretch !important;
        overflow: hidden !important;
    }

    .direct-landing-page--polished .direct-portfolio-link {
        display: block !important;
        width: 128px !important;
        min-width: 128px !important;
        height: 128px !important;
        min-height: 128px !important;
        overflow: hidden !important;
        border-radius: 16px 0 0 16px !important;
        background: #1f1f1f !important;
    }

    .direct-landing-page--polished .direct-portfolio-link img {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        object-fit: cover !important;
    }

    .direct-landing-page--polished .direct-portfolio-item .portfolio-overlay {
        position: relative !important;
        inset: auto !important;
        display: block !important;
        min-width: 0 !important;
        min-height: 128px !important;
        padding: 15px 58px 14px 15px !important;
        border-radius: 0 16px 16px 0 !important;
        overflow: hidden !important;
    }

    .direct-landing-page--polished .direct-portfolio-item .portfolio-overlay h3 {
        font-size: 15.5px !important;
        line-height: 1.25 !important;
        -webkit-line-clamp: 2 !important;
        margin: 0 0 6px !important;
    }

    .direct-landing-page--polished .direct-portfolio-item .portfolio-overlay p {
        font-size: 13.5px !important;
        line-height: 1.32 !important;
        -webkit-line-clamp: 2 !important;
        margin: 0 !important;
    }

    .direct-landing-page--polished .direct-portfolio-item .play-btn {
        position: absolute !important;
        right: 10px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        margin: 0 !important;
        z-index: 3 !important;
    }
}

@media (max-width: 390px) {
    .direct-landing-page--polished .direct-portfolio-item {
        grid-template-columns: 112px minmax(0, 1fr) !important;
        min-height: 118px !important;
    }

    .direct-landing-page--polished .direct-portfolio-link {
        width: 112px !important;
        min-width: 112px !important;
        height: 118px !important;
        min-height: 118px !important;
    }

    .direct-landing-page--polished .direct-portfolio-item .portfolio-overlay {
        min-height: 118px !important;
        padding: 13px 52px 12px 13px !important;
    }

    .direct-landing-page--polished .direct-portfolio-item .portfolio-overlay h3 {
        font-size: 15px !important;
    }
}

/* Final targeted text sizing fixes */
@media (min-width: 769px) {
    .direct-landing-page--polished .direct-portfolio-item {
        min-height: 348px !important;
    }

    .direct-landing-page--polished .direct-portfolio-item .portfolio-overlay {
        min-height: 158px !important;
        padding: 22px 82px 22px 24px !important;
    }

    .direct-landing-page--polished .direct-portfolio-item .portfolio-overlay h3 {
        font-size: 18px !important;
        line-height: 1.25 !important;
        margin: 0 0 8px !important;
        display: -webkit-box !important;
        -webkit-box-orient: vertical !important;
        -webkit-line-clamp: 2 !important;
        overflow: hidden !important;
    }

    .direct-landing-page--polished .direct-portfolio-item .portfolio-overlay p {
        font-size: 15.5px !important;
        line-height: 1.4 !important;
        margin: 0 !important;
        display: -webkit-box !important;
        -webkit-box-orient: vertical !important;
        -webkit-line-clamp: 2 !important;
        overflow: hidden !important;
    }

    .direct-landing-page--polished .direct-portfolio-item .play-btn {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        right: 20px !important;
    }
}

@media (max-width: 768px) {
    .direct-landing-page--polished .direct-check-list li {
        font-size: 13.5px !important;
        line-height: 1.28 !important;
        font-weight: 600 !important;
        padding-left: 18px !important;
    }

    .direct-landing-page--polished .direct-check-list li::before {
        font-size: 14px !important;
    }
}

/* Final portfolio grid spacing and play containment */
@media (min-width: 769px) {
  .direct-landing-page--polished .direct-portfolio .portfolio-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    column-gap: 30px !important;
    row-gap: 30px !important;
    align-items: stretch !important;
  }

  .direct-landing-page--polished .direct-portfolio-item {
    position: relative !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 330px !important;
    height: 100% !important;
    border-radius: 22px !important;
    overflow: hidden !important;
    isolation: isolate !important;
  }

  .direct-landing-page--polished .direct-portfolio-link {
    width: 100% !important;
    height: 190px !important;
    min-height: 190px !important;
    overflow: hidden !important;
  }

  .direct-landing-page--polished .direct-portfolio-item .portfolio-overlay {
    position: relative !important;
    min-height: 140px !important;
    padding: 20px 86px 20px 24px !important;
    overflow: hidden !important;
  }

  .direct-landing-page--polished .direct-portfolio-item .portfolio-overlay h3 {
    font-size: 17px !important;
    line-height: 1.24 !important;
    margin: 0 0 7px !important;
  }

  .direct-landing-page--polished .direct-portfolio-item .portfolio-overlay p {
    font-size: 15px !important;
    line-height: 1.38 !important;
    margin: 0 !important;
  }

  .direct-landing-page--polished .direct-portfolio-item .play-btn {
    position: absolute !important;
    right: 20px !important;
    top: calc(190px + 70px) !important;
    transform: translateY(-50%) !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    margin: 0 !important;
    z-index: 5 !important;
  }
}

/* Final desktop portfolio play/button containment and compact text area */
@media (min-width: 769px) {
  .direct-landing-page--polished .direct-portfolio .portfolio-grid {
    column-gap: 32px !important;
    row-gap: 32px !important;
  }

  .direct-landing-page--polished .direct-portfolio-item {
    min-height: 316px !important;
    height: auto !important;
  }

  .direct-landing-page--polished .direct-portfolio-link {
    height: 190px !important;
    min-height: 190px !important;
  }

  .direct-landing-page--polished .direct-portfolio-item .portfolio-overlay {
    position: relative !important;
    min-height: 126px !important;
    padding: 20px 80px 18px 24px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    overflow: hidden !important;
  }

  .direct-landing-page--polished .direct-portfolio-item .portfolio-overlay h3 {
    font-size: 17px !important;
    line-height: 1.24 !important;
    margin: 0 0 7px !important;
  }

  .direct-landing-page--polished .direct-portfolio-item .portfolio-overlay p {
    font-size: 15px !important;
    line-height: 1.38 !important;
    margin: 0 !important;
  }

  .direct-landing-page--polished .direct-portfolio-item .portfolio-overlay .play-btn {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: absolute !important;
    right: 18px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    margin: 0 !important;
    z-index: 10 !important;
  }
}

/* Mobile refinement: smaller checklist text in "Что будет сделано с роликом" */
@media (max-width: 768px) {
    .direct-landing-page--polished .direct-included .direct-check-list {
        row-gap: 10px !important;
        column-gap: 12px !important;
    }

    .direct-landing-page--polished .direct-included .direct-check-list span {
        font-size: 13.5px !important;
        line-height: 1.3 !important;
        font-weight: 600 !important;
        padding: 0 0 0 18px !important;
    }

    .direct-landing-page--polished .direct-included .direct-check-list span::before {
        font-size: 14px !important;
        top: 0.02em !important;
    }
}

@media (max-width: 420px) {
    .direct-landing-page--polished .direct-included .direct-check-list span {
        font-size: 13px !important;
        line-height: 1.28 !important;
    }
}


/* Hero contacts: Telegram / WhatsApp / Max / VK */
.direct-landing-page--polished .direct-hero__messengers {
    max-width: 860px !important;
}

.direct-landing-page--polished .direct-hero__messengers-actions {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(76px, 1fr)) !important;
    gap: 8px !important;
}

.direct-landing-page--polished .direct-messenger-btn {
    min-width: 76px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
}

@media (max-width: 768px) {
    .direct-landing-page--polished .direct-hero__messengers-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }
}

/* Fix hero contacts proportions with four messenger buttons */
@media (min-width: 769px) {
    .direct-landing-page--polished .direct-hero__messengers {
        display: grid !important;
        grid-template-columns: minmax(330px, 1fr) auto !important;
        align-items: center !important;
        column-gap: 24px !important;
        width: 100% !important;
        max-width: 900px !important;
    }

    .direct-landing-page--polished .direct-hero__messengers-text {
        min-width: 0 !important;
        max-width: 430px !important;
    }

    .direct-landing-page--polished .direct-hero__messengers-actions {
        display: grid !important;
        grid-template-columns: repeat(4, 112px) !important;
        gap: 10px !important;
        width: auto !important;
    }

    .direct-landing-page--polished .direct-messenger-btn {
        width: 112px !important;
        min-width: 112px !important;
        padding: 10px 12px !important;
    }
}

@media (max-width: 768px) {
    .direct-landing-page--polished .direct-hero__messengers {
        display: block !important;
        width: 100% !important;
    }

    .direct-landing-page--polished .direct-hero__messengers-text {
        max-width: none !important;
        margin-bottom: 12px !important;
    }

    .direct-landing-page--polished .direct-hero__messengers-actions {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    .direct-landing-page--polished .direct-messenger-btn {
        width: 100% !important;
        min-width: 0 !important;
    }
}

/* Final hero contacts layout: prevent text/button overlap */
@media (min-width: 1101px) {
    .direct-landing-page--polished .direct-hero__messengers {
        display: grid !important;
        grid-template-columns: minmax(340px, 42%) minmax(0, 58%) !important;
        align-items: center !important;
        column-gap: 24px !important;
        width: 100% !important;
        max-width: none !important;
        box-sizing: border-box !important;
    }

    .direct-landing-page--polished .direct-hero__messengers-text {
        min-width: 0 !important;
        max-width: none !important;
        width: auto !important;
    }

    .direct-landing-page--polished .direct-hero__messengers-text span {
        display: block !important;
        max-width: 34ch !important;
    }

    .direct-landing-page--polished .direct-hero__messengers-actions {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(88px, 1fr)) !important;
        gap: 10px !important;
        width: 100% !important;
        min-width: 0 !important;
        position: static !important;
        transform: none !important;
    }

    .direct-landing-page--polished .direct-messenger-btn {
        width: 100% !important;
        min-width: 0 !important;
        padding: 10px 8px !important;
        box-sizing: border-box !important;
        position: static !important;
        transform: none !important;
    }
}

@media (min-width: 769px) and (max-width: 1100px) {
    .direct-landing-page--polished .direct-hero__messengers {
        display: grid !important;
        grid-template-columns: minmax(280px, 1fr) minmax(250px, .9fr) !important;
        align-items: center !important;
        column-gap: 20px !important;
        width: 100% !important;
        max-width: none !important;
        box-sizing: border-box !important;
    }

    .direct-landing-page--polished .direct-hero__messengers-text {
        min-width: 0 !important;
        max-width: none !important;
    }

    .direct-landing-page--polished .direct-hero__messengers-actions {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    .direct-landing-page--polished .direct-messenger-btn {
        width: 100% !important;
        min-width: 0 !important;
        padding: 9px 8px !important;
    }
}

/* Definitive hero contacts layout: text above, buttons below */
.direct-landing-page--polished .direct-hero__messengers {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
}

.direct-landing-page--polished .direct-hero__messengers-text {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 0 16px !important;
}

.direct-landing-page--polished .direct-hero__messengers-text span {
    display: block !important;
    max-width: none !important;
}

.direct-landing-page--polished .direct-hero__messengers-actions {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: 100% !important;
    min-width: 0 !important;
    position: static !important;
    transform: none !important;
}

.direct-landing-page--polished .direct-messenger-btn {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    position: static !important;
    transform: none !important;
    padding: 11px 12px !important;
}

@media (max-width: 768px) {
    .direct-landing-page--polished .direct-hero__messengers-text {
        margin-bottom: 12px !important;
    }

    .direct-landing-page--polished .direct-hero__messengers-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }
}

/* ===== HERO MICRO POLISH: contacts balance + proof header spacing ===== */
.direct-landing-page--polished .direct-hero__messengers {
    padding: 22px 24px 18px !important;
}

.direct-landing-page--polished .direct-hero__messengers-text {
    margin-bottom: 14px !important;
}

.direct-landing-page--polished .direct-hero__messengers-text span {
    max-width: 46ch !important;
}

.direct-landing-page--polished .direct-hero__messengers-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    width: auto !important;
    min-width: 0 !important;
}

.direct-landing-page--polished .direct-messenger-btn {
    flex: 0 1 150px !important;
    width: auto !important;
    min-width: 140px !important;
    max-width: 168px !important;
    padding: 10px 16px !important;
}

.direct-landing-page--polished .direct-hero-proof {
    padding-top: 22px !important;
}

.direct-landing-page--polished .direct-hero-proof__head {
    margin-bottom: 16px !important;
}

@media (max-width: 1100px) {
    .direct-landing-page--polished .direct-hero__messengers-actions {
        width: 100% !important;
    }

    .direct-landing-page--polished .direct-messenger-btn {
        flex: 1 1 calc(50% - 5px) !important;
        min-width: 0 !important;
        max-width: none !important;
    }
}

@media (max-width: 768px) {
    .direct-landing-page--polished .direct-hero__messengers {
        padding: 18px 16px 14px !important;
    }

    .direct-landing-page--polished .direct-hero__messengers-text {
        margin-bottom: 12px !important;
    }

    .direct-landing-page--polished .direct-hero__messengers-text span {
        max-width: none !important;
    }

    .direct-landing-page--polished .direct-hero__messengers-actions {
        gap: 8px !important;
        width: 100% !important;
    }

    .direct-landing-page--polished .direct-messenger-btn {
        flex: 1 1 calc(50% - 4px) !important;
        min-width: 0 !important;
        padding: 10px 12px !important;
    }

    .direct-landing-page--polished .direct-hero-proof {
        padding-top: 18px !important;
    }
}

/* Final mobile hero contacts: three compact buttons in one row */
@media (max-width: 768px) {
    .direct-landing-page--polished .direct-hero__messengers {
        padding: 16px 14px 14px !important;
    }

    .direct-landing-page--polished .direct-hero__messengers-text {
        margin-bottom: 10px !important;
    }

    .direct-landing-page--polished .direct-hero__messengers-actions {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 7px !important;
        width: 100% !important;
    }

    .direct-landing-page--polished .direct-messenger-btn {
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        min-height: 42px !important;
        padding: 8px 6px !important;
        font-size: 14px !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 380px) {
    .direct-landing-page--polished .direct-messenger-btn {
        font-size: 13px !important;
        padding-left: 4px !important;
        padding-right: 4px !important;
    }
}

/* Final micro adjustment: slightly lower mobile messenger buttons */
@media (max-width: 768px) {
    .direct-landing-page--polished .direct-messenger-btn {
        min-height: 39px !important;
        padding: 7px 6px !important;
    }
}


/* ===== UNIFIED WEBFONT ACROSS DEVICES ===== */
html,
body,
button,
input,
textarea,
select,
option,
.direct-landing-page--polished {
    font-family: 'Montserrat', Arial, sans-serif;
    font-synthesis: none;
}

/* Preserve WordPress admin-bar icon font. */
#wpadminbar .ab-icon,
#wpadminbar .ab-icon::before,
#wpadminbar .ab-item::before,
.dashicons,
.dashicons::before {
    font-family: dashicons !important;
    font-style: normal !important;
    font-weight: 400 !important;
}

html {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Restore Font Awesome after unified text-font rule */
.direct-landing-page--polished .fa,
.direct-landing-page--polished .fas,
.direct-landing-page--polished .fa-solid,
.direct-landing-page--polished .fa::before,
.direct-landing-page--polished .fas::before,
.direct-landing-page--polished .fa-solid::before {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-style: normal !important;
}

.direct-landing-page--polished .far,
.direct-landing-page--polished .fa-regular,
.direct-landing-page--polished .far::before,
.direct-landing-page--polished .fa-regular::before {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400 !important;
    font-style: normal !important;
}

.direct-landing-page--polished .fab,
.direct-landing-page--polished .fa-brands,
.direct-landing-page--polished .fab::before,
.direct-landing-page--polished .fa-brands::before {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
    font-style: normal !important;
}


/* ===== DIRECT LANDING: FINAL VIGRAMA STUDIO ALIGNMENT ===== */
.direct-landing-page--polished {
    --direct-accent: var(--primary-dark);
    --direct-accent-light: var(--primary-light);
}

.direct-landing-page--polished .direct-card,
.direct-landing-page--polished .direct-price-card,
.direct-landing-page--polished .direct-hero-proof,
.direct-landing-page--polished .contact-form-container {
    border: 1px solid rgba(134, 87, 219, 0.10);
    box-shadow: var(--shadow);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.direct-landing-page--polished .direct-card:hover,
.direct-landing-page--polished .direct-price-card:hover,
.direct-landing-page--polished .direct-hero-proof:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(134, 87, 219, 0.22);
}

.direct-landing-page--polished .direct-messenger-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.direct-landing-page--polished .direct-messenger-btn i {
    font-size: 1rem;
}

.direct-landing-page--polished .direct-messenger-logo {
    width: 18px !important;
    height: 18px !important;
    object-fit: contain;
    flex: 0 0 18px;
}

.direct-price-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.direct-price-note__content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.direct-price-note__button {
    flex: 0 0 auto;
    white-space: nowrap;
}

.direct-reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.direct-reviews .review-card {
    height: 100%;
}

.direct-contact .contact-detail,
.direct-contact .contact-method {
    text-decoration: none;
}

.direct-contact .contact-detail > i,
.direct-contact .contact-detail > .messenger-logo {
    width: 40px;
    height: 40px;
}

.direct-quick-title {
    margin: 24px 0 14px;
}

.direct-contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.direct-contact-methods .contact-method {
    width: auto;
}

@media (max-width: 1100px) {
    .direct-reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .direct-price-note {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .direct-landing-page--polished .direct-contact .contact-details {
        display: none !important;
    }

    .direct-landing-page--polished .direct-contact .contact-info > p {
        display: none;
    }

    .direct-quick-title {
        margin-top: 0;
        text-align: center;
    }

    .direct-contact-methods {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .direct-contact-methods .contact-method {
        width: 100%;
        min-height: 46px;
        padding: 10px 12px;
    }

    .direct-price-note {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .direct-price-note__button {
        width: 100%;
        white-space: normal;
    }

    .direct-reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .direct-contact-methods {
        grid-template-columns: 1fr;
    }
}

/* ===== ФИНАЛЬНАЯ ПОЛИРОВКА ПОСАДОЧНОЙ: КОНТАКТЫ, ОТЗЫВЫ, МОБИЛЬНАЯ ФОРМА ===== */
.direct-landing-page--polished .direct-review-card {
    padding: 22px;
}

.direct-landing-page--polished .direct-review-card .review-avatar {
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
}

.direct-landing-page--polished .direct-review-card .review-author-name {
    font-size: 1rem;
    line-height: 1.3;
}

.direct-landing-page--polished .direct-review-card .review-rating {
    font-size: .86rem;
}

.direct-landing-page--polished .direct-review-card .review-content p {
    margin-bottom: 0;
    font-size: .93rem;
    line-height: 1.65;
}

@media (max-width: 768px) {
    .direct-landing-page--polished .direct-contact {
        padding-top: 42px !important;
        padding-bottom: 42px !important;
    }

    .direct-landing-page--polished .direct-contact .section-title {
        margin-bottom: 24px;
        padding: 0;
    }

    .direct-landing-page--polished .direct-contact .section-title h2 {
        font-size: 1.55rem !important;
        line-height: 1.25;
        margin-bottom: 14px;
    }

    .direct-landing-page--polished .direct-contact .section-title p {
        max-width: 34rem;
        font-size: .92rem !important;
        line-height: 1.55;
    }

    .direct-landing-page--polished .direct-contact .contact-container {
        display: flex !important;
        flex-direction: column;
        gap: 22px !important;
    }

    .direct-landing-page--polished .direct-contact .contact-info {
        width: 100%;
        text-align: center;
        padding: 0 4px;
    }

    .direct-landing-page--polished .direct-contact .contact-info h3 {
        text-align: center;
        font-size: 1.28rem !important;
        line-height: 1.3;
        margin: 0 0 12px;
    }

    .direct-landing-page--polished .direct-quick-title {
        text-align: center;
        font-size: 1.22rem !important;
        line-height: 1.3;
        margin: 0 0 16px;
    }

    .direct-landing-page--polished .direct-contact-methods {
        max-width: 520px;
        margin: 0 auto;
    }

    .direct-landing-page--polished .direct-contact-methods .contact-method {
        justify-content: center;
        min-height: 50px;
        font-size: .92rem;
        border-radius: 13px;
    }

    .direct-landing-page--polished .direct-contact .contact-form-container {
        width: 100%;
        padding: 22px 16px !important;
        border-radius: 18px;
    }

    .direct-landing-page--polished .direct-review-card {
        padding: 18px;
    }

    .direct-landing-page--polished .direct-review-card .review-header {
        align-items: center;
        gap: 12px;
    }

    .direct-landing-page--polished .direct-review-card .review-author-name {
        font-size: .96rem;
    }

    .direct-landing-page--polished .direct-review-card .review-content p {
        font-size: .88rem !important;
        line-height: 1.6;
    }
}

@media (max-width: 420px) {
    .direct-landing-page--polished .direct-contact-methods {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .direct-landing-page--polished .direct-contact-methods .contact-method {
        padding: 10px 8px;
        font-size: .84rem;
    }
}


/* ===== MOBILE HERO CONTACTS 2x2 + COMPACT TEXT ===== */
@media (max-width: 768px) {
    .direct-landing-page--polished .direct-hero {
        padding-top: 82px !important;
        padding-bottom: 34px !important;
    }

    .direct-landing-page--polished .direct-kicker {
        margin-bottom: 16px !important;
    }

    .direct-landing-page--polished .direct-hero h1 {
        font-size: clamp(2rem, 9vw, 2.55rem) !important;
        line-height: 1.08 !important;
        margin-bottom: 18px !important;
    }

    .direct-landing-page--polished .direct-hero__lead {
        font-size: 1rem !important;
        line-height: 1.52 !important;
        margin-bottom: 22px !important;
    }

    .direct-landing-page--polished .direct-hero__messengers {
        padding: 18px 16px !important;
        border-radius: 18px !important;
    }

    .direct-landing-page--polished .direct-hero__messengers-text {
        margin-bottom: 14px !important;
    }

    .direct-landing-page--polished .direct-hero__messengers-text span {
        font-size: .92rem !important;
        line-height: 1.5 !important;
    }

    .direct-landing-page--polished .direct-hero__messengers-actions {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .direct-landing-page--polished .direct-messenger-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        min-height: 48px !important;
        padding: 10px 8px !important;
        margin: 0 !important;
        font-size: .92rem !important;
        line-height: 1 !important;
        white-space: nowrap !important;
        box-sizing: border-box !important;
    }

    .direct-landing-page--polished .direct-messenger-btn i,
    .direct-landing-page--polished .direct-messenger-logo {
        width: 18px !important;
        height: 18px !important;
        flex: 0 0 18px !important;
        font-size: 18px !important;
        line-height: 18px !important;
        object-fit: contain !important;
    }
}

@media (max-width: 380px) {
    .direct-landing-page--polished .direct-messenger-btn {
        gap: 6px !important;
        padding-left: 6px !important;
        padding-right: 6px !important;
        font-size: .84rem !important;
    }
}

/* ===== 3DEdge-inspired test landing for video editing ===== */
.edge-video-landing {
    --ev-accent: var(--primary-dark, #8657db);
    --ev-accent-2: var(--primary-light, #8870ff);
    --ev-dark: #11131a;
    --ev-muted: #6b7280;
    --ev-border: rgba(17, 19, 26, .08);
    --ev-soft: #f6f3ff;
    background: #fff;
    color: var(--ev-dark);
}
.edge-video-landing .container { max-width: 1240px; }
.ev-hero {
    position: relative;
    overflow: hidden;
    padding: 138px 0 78px;
    background: radial-gradient(circle at 12% 18%, rgba(136,112,255,.17), transparent 30%), linear-gradient(135deg, #fbfbff 0%, #ffffff 52%, #f5f1ff 100%);
}
.ev-blob { position:absolute; border-radius:999px; filter: blur(8px); opacity:.7; pointer-events:none; }
.ev-blob--one { width:280px; height:280px; right:-80px; top:95px; background:rgba(136,112,255,.18); }
.ev-blob--two { width:220px; height:220px; left:-90px; bottom:-80px; background:rgba(134,87,219,.12); }
.ev-hero__grid { position:relative; display:grid; grid-template-columns:minmax(0, 1.02fr) minmax(420px, .98fr); gap:42px; align-items:center; }
.ev-hero__content { background:rgba(255,255,255,.78); border:1px solid rgba(255,255,255,.9); box-shadow:0 30px 80px rgba(87,72,150,.10); backdrop-filter: blur(16px); border-radius:34px; padding:42px; }
.ev-pill, .ev-kicker { display:inline-flex; align-items:center; gap:8px; padding:8px 14px; border-radius:999px; background:rgba(136,112,255,.12); color:var(--ev-accent); font-weight:800; font-size:13px; letter-spacing:.02em; margin:0 0 18px; }
.ev-hero h1 { font-size:clamp(38px, 5vw, 68px); line-height:.98; margin:0 0 22px; letter-spacing:-.055em; color:var(--ev-dark); }
.ev-lead { font-size:clamp(17px, 1.35vw, 21px); line-height:1.55; max-width:640px; color:#4b5563; margin:0 0 26px; }
.ev-actions { display:flex; flex-wrap:wrap; gap:12px; margin:0 0 24px; }
.ev-actions .btn { min-height:52px; display:inline-flex; align-items:center; justify-content:center; }
.ev-hero__stats { display:grid; grid-template-columns:repeat(3, minmax(0, 1fr)); gap:12px; }
.ev-hero__stats div { background:#fff; border:1px solid var(--ev-border); border-radius:20px; padding:16px 14px; box-shadow:0 12px 34px rgba(17,19,26,.05); }
.ev-hero__stats strong { display:block; font-size:18px; line-height:1.1; color:var(--ev-dark); }
.ev-hero__stats span { display:block; margin-top:5px; color:var(--ev-muted); font-size:13px; line-height:1.25; }
.ev-hero__visual { position:relative; }
.ev-preview-card { background:#fff; border:1px solid var(--ev-border); border-radius:34px; padding:18px; box-shadow:0 34px 90px rgba(52,46,100,.16); transform: rotate(1deg); }
.ev-preview-card__top { display:flex; justify-content:space-between; align-items:center; padding:8px 8px 14px; color:var(--ev-dark); font-weight:800; }
.ev-preview-card__top i { width:40px; height:40px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; color:#fff; background:linear-gradient(135deg,var(--ev-accent-2),var(--ev-accent)); }
.ev-mini-works { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.ev-mini-work { position:relative; overflow:hidden; min-height:156px; border-radius:22px; background:#111; color:#fff; }
.ev-mini-work--large { grid-column:span 2; min-height:250px; }
.ev-mini-work img { width:100%; height:100%; position:absolute; inset:0; object-fit:cover; opacity:.76; transition: transform .35s ease; }
.ev-mini-work:hover img { transform:scale(1.04); }
.ev-mini-work div { position:absolute; left:14px; right:14px; bottom:14px; z-index:2; }
.ev-mini-work strong { display:block; color:#fff; font-size:16px; line-height:1.15; text-shadow:0 2px 10px rgba(0,0,0,.35); }
.ev-mini-work span { display:block; color:rgba(255,255,255,.82); margin-top:4px; font-size:13px; line-height:1.3; }
.ev-preview-placeholder { min-height:410px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; border-radius:26px; background:linear-gradient(135deg,#171827,#27203f); color:#fff; text-align:center; }
.ev-preview-placeholder i { font-size:48px; color:#fff; opacity:.8; }
.ev-hero-benefits { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin-top:14px; transform: rotate(-1deg); }
.ev-hero-benefits div { background:#fff; border:1px solid var(--ev-border); border-radius:18px; padding:14px 10px; text-align:center; box-shadow:0 18px 40px rgba(17,19,26,.06); }
.ev-hero-benefits i { display:block; color:var(--ev-accent); margin-bottom:6px; }
.ev-hero-benefits span { font-size:12px; font-weight:800; color:var(--ev-dark); }
.ev-section { padding:86px 0; }
.ev-section--soft { background:linear-gradient(180deg,#fbfbff 0%,#f7f3ff 100%); }
.ev-section-head { text-align:center; max-width:760px; margin:0 auto 42px; }
.ev-section-head--left { text-align:left; margin-left:0; }
.ev-section-head h2 { font-size:clamp(30px, 3.2vw, 48px); line-height:1.08; letter-spacing:-.035em; color:var(--ev-dark); margin:0 0 14px; }
.ev-section-head p:not(.ev-kicker) { font-size:17px; color:var(--ev-muted); margin:0; }
.ev-card-grid { display:grid; gap:16px; }
.ev-card-grid--5 { grid-template-columns:repeat(5, minmax(0,1fr)); }
.ev-card { background:#fff; border:1px solid var(--ev-border); border-radius:26px; padding:26px 22px; box-shadow:0 20px 45px rgba(17,19,26,.05); transition:transform .25s ease, box-shadow .25s ease; }
.ev-card:hover { transform:translateY(-4px); box-shadow:0 24px 60px rgba(87,72,150,.12); }
.ev-card i { width:46px; height:46px; border-radius:16px; display:inline-flex; align-items:center; justify-content:center; background:rgba(136,112,255,.12); color:var(--ev-accent); font-size:20px; margin-bottom:18px; }
.ev-card h3 { font-size:18px; line-height:1.22; margin:0 0 10px; color:var(--ev-dark); }
.ev-card p { color:var(--ev-muted); font-size:14px; line-height:1.5; margin:0; }
.ev-split { display:grid; grid-template-columns:minmax(0,1fr) 360px; gap:34px; align-items:start; }
.ev-checks { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px 16px; }
.ev-checks span { position:relative; display:block; background:#fff; border:1px solid var(--ev-border); border-radius:18px; padding:15px 16px 15px 42px; color:var(--ev-dark); font-weight:700; box-shadow:0 12px 28px rgba(17,19,26,.04); }
.ev-checks span::before { content:'✓'; position:absolute; left:15px; top:50%; transform:translateY(-50%); width:20px; height:20px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; color:#fff; background:linear-gradient(135deg,var(--ev-accent-2),var(--ev-accent)); font-size:12px; }
.ev-note-card { position:sticky; top:100px; background:linear-gradient(135deg,#151522,#28223d); color:#fff; border-radius:30px; padding:30px; box-shadow:0 30px 70px rgba(17,19,26,.18); }
.ev-note-card h3 { color:#fff; margin:0 0 12px; font-size:24px; }
.ev-note-card p { color:rgba(255,255,255,.76); margin:0 0 20px; }
.ev-material-grid { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:14px; }
.ev-material-grid div { background:#fff; border:1px solid var(--ev-border); border-radius:24px; padding:24px 18px; text-align:center; box-shadow:0 18px 40px rgba(17,19,26,.05); }
.ev-material-grid i { display:inline-flex; width:46px; height:46px; align-items:center; justify-content:center; border-radius:16px; background:rgba(136,112,255,.12); color:var(--ev-accent); margin-bottom:12px; }
.ev-material-grid strong { display:block; color:var(--ev-dark); font-size:17px; }
.ev-material-grid span { display:block; margin-top:4px; color:var(--ev-muted); font-size:13px; line-height:1.35; }
.ev-price-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.ev-price-card { background:#fff; border:1px solid var(--ev-border); border-radius:30px; padding:30px; box-shadow:0 22px 60px rgba(17,19,26,.06); }
.ev-price-card--accent { border-color:rgba(136,112,255,.35); box-shadow:0 28px 70px rgba(136,112,255,.13); }
.ev-price-card h3 { font-size:22px; margin:0 0 12px; color:var(--ev-dark); }
.ev-price-card strong { display:block; color:var(--ev-accent); font-size:34px; line-height:1; margin-bottom:14px; }
.ev-price-card p { color:var(--ev-muted); margin:0 0 20px; }
.ev-price-card a { display:inline-flex; font-weight:800; color:var(--ev-accent); }
.ev-portfolio-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.ev-work-card { background:#fff; border:1px solid var(--ev-border); border-radius:28px; overflow:hidden; box-shadow:0 22px 55px rgba(17,19,26,.07); }
.ev-work-card__media { position:relative; aspect-ratio:16/9; background:#f3f4f6; overflow:hidden; }
.ev-work-card__media img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .35s ease; }
.ev-work-card:hover .ev-work-card__media img { transform:scale(1.04); }
.ev-work-card__play { position:absolute; right:14px; bottom:14px; width:48px; height:48px; border:none; border-radius:50%; background:linear-gradient(135deg,var(--ev-accent-2),var(--ev-accent)); color:#fff; display:flex; align-items:center; justify-content:center; cursor:pointer; box-shadow:0 14px 35px rgba(0,0,0,.22); }
.ev-work-card__body { padding:20px; }
.ev-work-card__body h3 { font-size:18px; line-height:1.25; margin:0 0 8px; color:var(--ev-dark); }
.ev-work-card__body p { color:var(--ev-muted); font-size:14px; margin:0; }
.ev-process-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; counter-reset: process; }
.ev-process-grid div { background:#fff; border:1px solid var(--ev-border); border-radius:26px; padding:26px; box-shadow:0 18px 45px rgba(17,19,26,.05); }
.ev-process-grid span { display:inline-flex; width:42px; height:42px; border-radius:50%; align-items:center; justify-content:center; background:linear-gradient(135deg,var(--ev-accent-2),var(--ev-accent)); color:#fff; font-weight:900; margin-bottom:16px; }
.ev-process-grid h3 { font-size:20px; margin:0 0 8px; color:var(--ev-dark); }
.ev-process-grid p { color:var(--ev-muted); margin:0; }
.ev-final { background:linear-gradient(135deg,#12131c,#2a2142); color:#fff; }
.ev-final .ev-kicker { background:rgba(255,255,255,.12); color:#fff; }
.ev-final h2 { color:#fff; font-size:clamp(34px,4vw,54px); line-height:1.05; margin:0 0 16px; letter-spacing:-.04em; }
.ev-final p { color:rgba(255,255,255,.76); font-size:18px; max-width:560px; }
.ev-final__grid { display:grid; grid-template-columns:minmax(0,1fr) 460px; gap:42px; align-items:center; }
.ev-form-card { background:#fff; border-radius:30px; padding:26px; box-shadow:0 30px 80px rgba(0,0,0,.25); }
@media (max-width:1100px){
    .ev-hero__grid, .ev-final__grid { grid-template-columns:1fr; }
    .ev-hero__visual { max-width:720px; width:100%; justify-self:center; }
    .ev-card-grid--5 { grid-template-columns:repeat(3,minmax(0,1fr)); }
    .ev-material-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
    .ev-split { grid-template-columns:1fr; }
    .ev-note-card { position:relative; top:auto; }
}
@media (max-width:768px){
    .ev-hero { padding:104px 0 46px; }
    .ev-hero__content { padding:24px 18px; border-radius:26px; }
    .ev-hero h1 { font-size:36px; letter-spacing:-.04em; }
    .ev-lead { font-size:16px; }
    .ev-actions { flex-direction:column; }
    .ev-actions .btn { width:100%; }
    .ev-hero__stats { grid-template-columns:1fr; }
    .ev-preview-card { border-radius:26px; transform:none; padding:12px; }
    .ev-mini-works { grid-template-columns:1fr; }
    .ev-mini-work--large { grid-column:auto; min-height:210px; }
    .ev-mini-work { min-height:180px; }
    .ev-hero-benefits { grid-template-columns:repeat(2,1fr); transform:none; }
    .ev-section { padding:54px 0; }
    .ev-section-head { margin-bottom:26px; }
    .ev-section-head h2 { font-size:30px; }
    .ev-card-grid--5, .ev-material-grid, .ev-price-grid, .ev-portfolio-grid, .ev-process-grid { grid-template-columns:1fr; }
    .ev-checks { grid-template-columns:1fr; }
    .ev-card, .ev-price-card, .ev-process-grid div, .ev-note-card { border-radius:22px; padding:22px; }
    .ev-final__grid { gap:24px; }
    .ev-form-card { border-radius:24px; padding:18px; }
}

/* ================= Vigrama Direct 4.0 Final Landing ================= */
.ev4-landing{
  --ev4-accent:#8657db;
  --ev4-accent-2:#8870ff;
  --ev4-dark:#11131a;
  --ev4-soft:#f6f3ff;
  --ev4-muted:#667085;
  --ev4-border:rgba(17,19,26,.09);
  color:var(--ev4-dark);
}
.ev4-landing .container{max-width:1240px}
.ev4-hero{position:relative;overflow:hidden;padding:118px 0 30px;background:radial-gradient(circle at 74% 16%,rgba(136,112,255,.24),transparent 34%),linear-gradient(135deg,#11131a 0%,#201936 55%,#2b2146 100%);color:#fff}
.ev4-hero:before{content:'';position:absolute;inset:0;background:linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px),linear-gradient(0deg,rgba(255,255,255,.04) 1px,transparent 1px);background-size:72px 72px;opacity:.18;pointer-events:none}
.ev4-hero__grid{position:relative;display:grid;grid-template-columns:minmax(0,.92fr) minmax(460px,1.08fr);gap:52px;align-items:center}
.ev4-pill,.ev4-kicker{display:inline-flex;align-items:center;gap:8px;margin:0 0 18px;padding:8px 14px;border-radius:999px;background:rgba(136,112,255,.13);color:var(--ev4-accent-2);font-weight:900;font-size:14px;letter-spacing:.02em}
.ev4-hero .ev4-pill{background:rgba(255,255,255,.11);color:#fff;border:1px solid rgba(255,255,255,.14)}
.ev4-hero h1{margin:0 0 12px;font-size:clamp(46px,5.1vw,72px);line-height:.92;letter-spacing:-.06em;color:#fff;max-width:720px}
.ev4-hero-subtitle{margin:0 0 18px;font-size:clamp(22px,2.15vw,32px);line-height:1.12;font-weight:800;letter-spacing:-.035em;color:rgba(255,255,255,.94);max-width:760px}
.ev4-lead{font-size:clamp(16px,1.35vw,20px);line-height:1.6;color:rgba(255,255,255,.74);max-width:690px;margin:0 0 28px}
.ev4-actions{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:22px}
.ev4-actions .btn{min-height:54px;display:inline-flex;align-items:center;justify-content:center;padding:14px 24px;border-radius:16px;font-weight:900}
.ev4-outline{border:1px solid rgba(255,255,255,.25)!important;color:#fff!important;background:rgba(255,255,255,.07)!important}
.ev4-hero-facts{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px}
.ev4-hero-facts span{padding:9px 14px;border-radius:999px;background:rgba(255,255,255,.085);border:1px solid rgba(255,255,255,.13);color:rgba(255,255,255,.9);font-weight:850;font-size:14px;box-shadow:0 10px 28px rgba(0,0,0,.12)}
.ev4-showreel-card{position:relative;border-radius:30px;padding:16px;background:rgba(255,255,255,.085);border:1px solid rgba(255,255,255,.12);box-shadow:0 32px 80px rgba(0,0,0,.25);backdrop-filter:blur(18px);transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease}.ev4-showreel-card:hover{transform:translateY(-4px);box-shadow:0 42px 100px rgba(0,0,0,.32);border-color:rgba(255,255,255,.2)}
.ev4-showreel-card__label{display:flex;justify-content:space-between;gap:14px;align-items:center;margin:0 0 13px;color:#fff;font-size:13px}
.ev4-showreel-card__label span{opacity:.72}.ev4-showreel-card__label strong{font-weight:900}
.ev4-showreel-media{position:relative;overflow:hidden;border-radius:24px;aspect-ratio:16/9.4;background:#05060b}
.ev4-showreel-media img{width:100%;height:100%;object-fit:cover;display:block;opacity:.88;transition:transform .45s ease}.ev4-showreel-card:hover img{transform:scale(1.04)}
.ev4-showreel-play{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:76px;height:76px;border:none;border-radius:50%;background:linear-gradient(135deg,var(--ev4-accent-2),var(--ev4-accent));color:#fff;display:flex;align-items:center;justify-content:center;box-shadow:0 24px 60px rgba(0,0,0,.35);cursor:pointer;animation:ev4PlayPulse 2.4s ease-in-out infinite}.ev4-showreel-play:hover{transform:translate(-50%,-50%) scale(1.06)}@keyframes ev4PlayPulse{0%,100%{box-shadow:0 24px 60px rgba(0,0,0,.35),0 0 0 0 rgba(132,92,255,.28)}50%{box-shadow:0 24px 60px rgba(0,0,0,.35),0 0 0 16px rgba(132,92,255,0)}}
.ev4-showreel-meta{display:grid;grid-template-columns:1fr 1fr 1fr;gap:8px;margin-top:10px}.ev4-showreel-meta span{padding:8px 10px;border-radius:13px;background:rgba(255,255,255,.075);border:1px solid rgba(255,255,255,.08);font-size:12px;font-weight:850;text-align:center;color:rgba(255,255,255,.82)}
.ev4-showreel-placeholder{min-height:360px;display:flex;align-items:center;justify-content:center;flex-direction:column;gap:8px;color:#fff;background:#151522;border-radius:26px}.ev4-showreel-placeholder i{font-size:50px;color:var(--ev4-accent-2)}
.ev4-platforms{position:relative;display:flex;flex-wrap:wrap;justify-content:center;gap:9px;margin-top:28px}.ev4-platforms span{padding:8px 13px;border-radius:999px;background:rgba(255,255,255,.065);border:1px solid rgba(255,255,255,.1);font-weight:850;color:rgba(255,255,255,.78);font-size:14px}
.ev4-trust-strip{background:#fff;border-bottom:1px solid var(--ev4-border)}.ev4-trust-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:1px}.ev4-trust-grid div{padding:30px 18px;text-align:center}.ev4-trust-grid strong{display:block;font-size:clamp(30px,3.8vw,52px);line-height:1;color:var(--ev4-dark);letter-spacing:-.05em}.ev4-trust-grid span{display:block;margin-top:8px;color:var(--ev4-muted);font-weight:800;font-size:14px}
.ev4-section{padding:92px 0}.ev4-section--white{background:#fff}.ev4-section--soft{background:linear-gradient(180deg,#fbfbff,#f6f3ff)}.ev4-section--dark{background:linear-gradient(135deg,#11131a,#2b2146);color:#fff}.ev4-section--dark h2,.ev4-section--dark .ev4-kicker{color:#fff}.ev4-section--dark p{color:rgba(255,255,255,.74)}
.ev4-head{text-align:center;max-width:820px;margin:0 auto 42px}.ev4-head--split{max-width:none;display:grid;grid-template-columns:minmax(0,1fr) minmax(320px,.5fr);gap:30px;align-items:end;text-align:left}.ev4-head h2,.ev4-two-col h2,.ev4-final h2{font-size:clamp(34px,4vw,58px);line-height:1.02;letter-spacing:-.055em;margin:0 0 14px;color:var(--ev4-dark)}.ev4-head p:not(.ev4-kicker),.ev4-two-col p{font-size:17px;line-height:1.58;color:var(--ev4-muted);margin:0}.ev4-head__aside{display:flex;flex-direction:column;align-items:flex-start;gap:16px}.ev4-portfolio-link{display:inline-flex;align-items:center;justify-content:center;padding:14px 22px;border-radius:16px;font-weight:900;text-decoration:none}
.ev4-works-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.ev4-work{background:#fff;border:1px solid var(--ev4-border);border-radius:30px;overflow:hidden;box-shadow:0 22px 60px rgba(17,19,26,.07);transition:.28s ease}.ev4-work:hover{transform:translateY(-5px);box-shadow:0 30px 80px rgba(87,72,150,.14)}.ev4-work--featured{grid-column:span 2}.ev4-work__media{position:relative;aspect-ratio:16/9;overflow:hidden;background:#111}.ev4-work__media img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .35s ease}.ev4-work:hover img{transform:scale(1.04)}.ev4-work__tag{position:absolute;left:14px;top:14px;padding:8px 12px;border-radius:999px;background:rgba(17,19,26,.78);color:#fff;font-size:12px;font-weight:900}.ev4-work__play{position:absolute;right:14px;bottom:14px;width:52px;height:52px;border:none;border-radius:50%;background:linear-gradient(135deg,var(--ev4-accent-2),var(--ev4-accent));color:#fff;display:flex;align-items:center;justify-content:center;box-shadow:0 14px 35px rgba(0,0,0,.25);cursor:pointer}.ev4-work__body{padding:22px}.ev4-work__body h3{font-size:20px;line-height:1.2;margin:0 0 8px}.ev4-work__body p{margin:0;color:var(--ev4-muted);font-size:14px;line-height:1.5}
.ev4-result-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}.ev4-result-grid article,.ev4-price,.ev4-materials div,.ev4-reviews article{background:#fff;border:1px solid var(--ev4-border);border-radius:28px;padding:26px;box-shadow:0 20px 55px rgba(17,19,26,.055)}.ev4-result-grid i{width:48px;height:48px;border-radius:16px;background:rgba(136,112,255,.12);color:var(--ev4-accent);display:flex;align-items:center;justify-content:center;font-size:20px;margin-bottom:16px}.ev4-result-grid h3{font-size:20px;margin:0 0 8px}.ev4-result-grid p{margin:0;color:var(--ev4-muted);font-size:14px;line-height:1.5}
.ev4-price-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.ev4-price{position:relative}.ev4-price--popular{border-color:rgba(136,112,255,.4);box-shadow:0 30px 80px rgba(136,112,255,.14);transform:translateY(-12px)}.ev4-popular{display:inline-flex;margin-bottom:12px;padding:7px 12px;border-radius:999px;background:linear-gradient(135deg,var(--ev4-accent-2),var(--ev4-accent));color:#fff;font-size:12px;font-weight:900}.ev4-price h3{font-size:24px;margin:0 0 10px}.ev4-price strong{display:block;font-size:42px;line-height:1;color:var(--ev4-accent);letter-spacing:-.05em;margin-bottom:12px}.ev4-price p{color:var(--ev4-muted);margin:0 0 18px}.ev4-price ul{margin:0 0 22px;padding:0;list-style:none;display:grid;gap:9px}.ev4-price li{position:relative;padding-left:24px;color:var(--ev4-dark);font-weight:700}.ev4-price li:before{content:'✓';position:absolute;left:0;color:var(--ev4-accent);font-weight:900}.ev4-price a{font-weight:900;color:var(--ev4-accent)}
.ev4-two-col{display:grid;grid-template-columns:minmax(0,.8fr) minmax(0,1.1fr);gap:44px;align-items:center}.ev4-materials{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}.ev4-materials i{display:block;color:var(--ev4-accent);font-size:25px;margin-bottom:12px}.ev4-materials strong{display:block;font-size:19px}.ev4-materials span{display:block;color:var(--ev4-muted);margin-top:4px}
.ev4-timeline{display:grid;grid-template-columns:repeat(5,1fr);gap:14px;position:relative}.ev4-timeline div{background:#fff;border:1px solid var(--ev4-border);border-radius:26px;padding:24px;box-shadow:0 18px 46px rgba(17,19,26,.055)}.ev4-timeline span{display:inline-flex;width:42px;height:42px;border-radius:50%;align-items:center;justify-content:center;background:linear-gradient(135deg,var(--ev4-accent-2),var(--ev4-accent));color:#fff;font-weight:900;margin-bottom:14px}.ev4-timeline h3{font-size:19px;margin:0 0 8px}.ev4-timeline p{margin:0;color:var(--ev4-muted);font-size:14px}
.ev4-about{display:grid;grid-template-columns:360px minmax(0,1fr);gap:42px;align-items:center}.ev4-about-photo{min-height:430px;border-radius:36px;background:linear-gradient(135deg,#151522,#2b2146);color:#fff;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:14px;text-align:center;padding:30px;box-shadow:0 30px 80px rgba(17,19,26,.18)}.ev4-about-photo i{font-size:70px;opacity:.85}.ev4-about-photo span{color:rgba(255,255,255,.7);font-weight:800}.ev4-tags{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px}.ev4-tags span{padding:10px 14px;border-radius:999px;background:var(--ev4-soft);color:var(--ev4-accent);font-weight:900}.ev4-reviews{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.ev4-reviews strong{display:block;color:#ffb020;margin-bottom:12px}.ev4-reviews p{font-size:16px;line-height:1.55;color:var(--ev4-dark);margin:0 0 18px}.ev4-reviews span{font-weight:900;color:var(--ev4-muted)}
.ev4-faq{display:grid;gap:12px}.ev4-faq details{background:#fff;border:1px solid var(--ev4-border);border-radius:20px;padding:18px 20px;box-shadow:0 16px 42px rgba(17,19,26,.045)}.ev4-faq summary{cursor:pointer;font-weight:900;font-size:17px}.ev4-faq p{margin:12px 0 0!important;font-size:15px!important}.ev4-final{background:linear-gradient(135deg,#11131a,#2b2146);color:#fff}.ev4-final h2{color:#fff}.ev4-final p{color:rgba(255,255,255,.74)}.ev4-final__grid{display:grid;grid-template-columns:minmax(0,1fr) 470px;gap:44px;align-items:center}.ev4-final .ev4-kicker{background:rgba(255,255,255,.1);color:#fff}.ev4-final-points{display:grid;gap:10px;margin:24px 0}.ev4-final-points span{color:rgba(255,255,255,.9);font-weight:900}.ev4-final-points span:before{content:'✓ ';color:#bca8ff}.ev4-sticky-cta{display:none;position:fixed;left:16px;right:16px;bottom:14px;z-index:999;background:linear-gradient(135deg,var(--ev4-accent-2),var(--ev4-accent));color:#fff!important;text-align:center;padding:15px 18px;border-radius:18px;font-weight:900;box-shadow:0 18px 45px rgba(82,52,150,.35)}
@media(max-width:1100px){.ev4-hero__grid,.ev4-final__grid,.ev4-two-col,.ev4-about{grid-template-columns:1fr}.ev4-hero__visual{max-width:760px;width:100%;justify-self:center}.ev4-works-grid,.ev4-result-grid,.ev4-price-grid,.ev4-timeline{grid-template-columns:repeat(2,1fr)}.ev4-work--featured{grid-column:auto}.ev4-trust-grid{grid-template-columns:repeat(3,1fr)}.ev4-about-photo{min-height:300px}}
@media(max-width:768px){.ev4-hero{padding:100px 0 28px}.ev4-hero h1{font-size:42px}.ev4-hero-subtitle{font-size:22px}.ev4-actions{flex-direction:column}.ev4-actions .btn{width:100%}.ev4-hero-facts{display:grid;grid-template-columns:1fr}.ev4-showreel-card{border-radius:26px;padding:12px}.ev4-showreel-meta{grid-template-columns:1fr}.ev4-platforms{justify-content:flex-start;overflow-x:auto;flex-wrap:nowrap;padding-bottom:8px}.ev4-platforms span{white-space:nowrap}.ev4-trust-grid{grid-template-columns:repeat(2,1fr)}.ev4-section{padding:58px 0}.ev4-head--split{grid-template-columns:1fr;text-align:center}.ev4-head__aside{align-items:center}.ev4-head h2,.ev4-two-col h2,.ev4-final h2{font-size:32px}.ev4-works-grid,.ev4-result-grid,.ev4-price-grid,.ev4-materials,.ev4-timeline,.ev4-reasons,.ev4-reviews{grid-template-columns:1fr}.ev4-price--popular{transform:none}.ev4-final__grid{gap:24px}.ev4-sticky-cta{display:block}.edge-video-landing{padding-bottom:70px}}

/* === Vigrama Direct 4.1: hero premium polish === */
.ev4-landing .ev4-hero{
    padding-top:112px;
    padding-bottom:48px;
    background:
        radial-gradient(circle at 72% 26%, rgba(136,112,255,.32), transparent 34%),
        radial-gradient(circle at 18% 18%, rgba(255,255,255,.10), transparent 26%),
        linear-gradient(135deg,#0e0f18 0%,#1c1730 54%,#2a2045 100%);
}
.ev4-landing .ev4-hero__grid{
    grid-template-columns:minmax(0,.86fr) minmax(500px,1.14fr);
    gap:58px;
}
.ev4-landing .ev4-hero h1{
    font-size:clamp(42px,4.35vw,64px);
    line-height:.96;
    letter-spacing:-.058em;
    max-width:640px;
    margin-bottom:16px;
}
.ev4-landing .ev4-hero-subtitle{
    font-size:clamp(21px,1.85vw,28px);
    line-height:1.14;
    max-width:680px;
    color:rgba(255,255,255,.90);
}
.ev4-landing .ev4-lead{
    max-width:640px;
    font-size:clamp(16px,1.18vw,19px);
    color:rgba(255,255,255,.72);
    margin-bottom:24px;
}
.ev4-landing .ev4-actions{
    gap:14px;
    margin-bottom:16px;
}
.ev4-landing .ev4-actions .btn{
    min-height:56px;
    padding:15px 27px;
    border-radius:17px;
    transition:transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.ev4-landing .ev4-actions .btn-primary{
    box-shadow:0 18px 46px rgba(136,112,255,.30);
}
.ev4-landing .ev4-actions .btn-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 24px 58px rgba(136,112,255,.42);
}
.ev4-landing .ev4-outline{
    background:rgba(255,255,255,.055)!important;
    border-color:rgba(255,255,255,.20)!important;
    color:rgba(255,255,255,.92)!important;
}
.ev4-landing .ev4-outline:hover{
    transform:translateY(-2px);
    background:rgba(255,255,255,.09)!important;
    border-color:rgba(255,255,255,.32)!important;
}
.ev4-landing .ev4-hero-badges{
    display:flex;
    flex-wrap:wrap;
    gap:9px;
    margin:0 0 14px;
}
.ev4-landing .ev4-hero-badges span,
.ev4-landing .ev4-hero-facts span{
    display:inline-flex;
    align-items:center;
    min-height:36px;
    padding:8px 13px;
    border-radius:999px;
    background:rgba(255,255,255,.075);
    border:1px solid rgba(255,255,255,.13);
    color:rgba(255,255,255,.86);
    font-weight:850;
    font-size:13px;
    box-shadow:0 10px 24px rgba(0,0,0,.10);
}
.ev4-landing .ev4-hero-facts{
    margin-top:0;
    gap:8px;
}
.ev4-landing .ev4-hero-facts span{
    background:transparent;
    border-color:rgba(255,255,255,.10);
    box-shadow:none;
    color:rgba(255,255,255,.78);
    font-size:12.8px;
}
.ev4-landing .ev4-hero__visual{
    position:relative;
}
.ev4-landing .ev4-hero__visual:before{
    content:'';
    position:absolute;
    inset:-34px -20px;
    border-radius:42px;
    background:radial-gradient(circle at 58% 48%, rgba(136,112,255,.28), transparent 55%);
    filter:blur(20px);
    opacity:.82;
    pointer-events:none;
}
.ev4-landing .ev4-showreel-card{
    position:relative;
    z-index:1;
    padding:14px;
    border-radius:28px;
    background:rgba(255,255,255,.070);
    border-color:rgba(255,255,255,.15);
    box-shadow:0 36px 90px rgba(0,0,0,.32);
}
.ev4-landing .ev4-showreel-card:hover{
    transform:translateY(-6px);
    box-shadow:0 46px 112px rgba(0,0,0,.42);
}
.ev4-landing .ev4-showreel-card__label{
    margin-bottom:11px;
    font-size:12.5px;
}
.ev4-landing .ev4-showreel-card__label span{
    opacity:.80;
}
.ev4-landing .ev4-showreel-media{
    border-radius:22px;
    aspect-ratio:16/9.1;
}
.ev4-landing .ev4-showreel-media img{
    opacity:.92;
}
.ev4-landing .ev4-showreel-play{
    width:86px;
    height:86px;
    font-size:22px;
}
.ev4-landing .ev4-showreel-meta{
    gap:8px;
    margin-top:11px;
}
.ev4-landing .ev4-showreel-meta span{
    padding:9px 10px;
    border-radius:14px;
    background:rgba(255,255,255,.065);
    color:rgba(255,255,255,.80);
}
@media(max-width:1100px){
    .ev4-landing .ev4-hero__grid{
        grid-template-columns:1fr;
    }
    .ev4-landing .ev4-hero h1{
        max-width:760px;
    }
}
@media(max-width:768px){
    .ev4-landing .ev4-hero{
        padding-top:92px;
        padding-bottom:34px;
    }
    .ev4-landing .ev4-hero h1{
        font-size:clamp(37px,11vw,48px);
        line-height:.98;
        margin-bottom:14px;
    }
    .ev4-landing .ev4-hero-subtitle{
        font-size:clamp(20px,6.2vw,24px);
    }
    .ev4-landing .ev4-lead{
        font-size:16px;
        line-height:1.55;
    }
    .ev4-landing .ev4-actions{
        margin-bottom:14px;
    }
    .ev4-landing .ev4-hero-badges,
    .ev4-landing .ev4-hero-facts{
        display:grid;
        grid-template-columns:1fr;
        gap:8px;
    }
    .ev4-landing .ev4-hero-badges span,
    .ev4-landing .ev4-hero-facts span{
        justify-content:center;
    }
    .ev4-landing .ev4-showreel-card{
        margin-top:6px;
        padding:12px;
    }
    .ev4-landing .ev4-showreel-play{
        width:70px;
        height:70px;
    }
}


/* === Vigrama Direct 4.2: hero copy and contrast fixes === */
.ev4-landing .ev4-hero__content,
.ev4-landing .ev4-showreel-card {
    text-shadow: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.ev4-landing .ev4-pill,
.ev4-landing .ev4-hero h1,
.ev4-landing .ev4-hero-subtitle,
.ev4-landing .ev4-lead,
.ev4-landing .ev4-hero-badges span,
.ev4-landing .ev4-actions .btn,
.ev4-landing .ev4-showreel-card__label,
.ev4-landing .ev4-showreel-meta span {
    text-shadow: none !important;
}
.ev4-landing .ev4-showreel-card__label span {
    opacity: 1;
    color: rgba(255,255,255,.86);
    font-weight: 650;
}
.ev4-landing .ev4-showreel-card__label strong {
    color: #fff;
}
.ev4-landing .ev4-showreel-watch {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(8,9,15,.72);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    font-size: 12px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: .01em;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 26px rgba(0,0,0,.22);
}
.ev4-landing .ev4-showreel-watch i {
    font-size: 10px;
}
.ev4-landing .ev4-showreel-meta span {
    color: rgba(255,255,255,.90);
    border-color: rgba(255,255,255,.12);
}
@media(max-width:768px){
    .ev4-landing .ev4-showreel-watch {
        left: 12px;
        top: 12px;
        padding: 7px 10px;
        font-size: 11px;
    }
}

/* === Vigrama Direct 4.3: specialist block === */
.ev4-specialist-section{
    background:#fff;
}
.ev4-about-content h2{
    font-size:clamp(34px,4vw,58px);
    line-height:1.02;
    letter-spacing:-.055em;
    margin:0 0 14px;
    color:var(--ev4-dark);
}
.ev4-about-intro{
    margin:0;
    color:var(--ev4-muted);
    font-size:17px;
    line-height:1.65;
    max-width:820px;
}
.ev4-specialist-panels{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
    margin-top:28px;
}
.ev4-specialist-card{
    display:grid;
    grid-template-columns:52px minmax(0,1fr);
    gap:16px;
    align-items:start;
    padding:24px;
    border:1px solid var(--ev4-border);
    border-radius:26px;
    background:linear-gradient(180deg,#fff,#fbfaff);
    box-shadow:0 18px 50px rgba(17,19,26,.055);
}
.ev4-specialist-card__icon{
    width:52px;
    height:52px;
    border-radius:17px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(136,112,255,.12);
    color:var(--ev4-accent);
    font-size:21px;
}
.ev4-specialist-card h3,
.ev4-specialist-rating h3{
    margin:0;
    color:var(--ev4-dark);
    font-size:20px;
    line-height:1.3;
}
.ev4-tags--programs{
    margin-top:16px;
}
.ev4-specialist-contacts{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
    margin-top:16px;
}
.ev4-specialist-contacts a,
.ev4-specialist-contact--static{
    min-height:46px;
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 12px;
    border:1px solid var(--ev4-border);
    border-radius:15px;
    background:#fff;
    color:var(--ev4-dark);
    font-weight:900;
    text-decoration:none;
    transition:.22s ease;
}
.ev4-specialist-contacts a:hover{
    transform:translateY(-2px);
    border-color:rgba(136,112,255,.36);
    color:var(--ev4-accent);
    box-shadow:0 12px 28px rgba(87,72,150,.1);
}
.ev4-specialist-contacts i{
    width:22px;
    text-align:center;
    color:var(--ev4-accent);
    font-size:19px;
}
.ev4-specialist-contacts .messenger-logo{
    width:22px!important;
    height:22px!important;
    object-fit:contain;
    flex:0 0 22px;
}
.ev4-specialist-contact--static{
    cursor:default;
}
.ev4-specialist-rating{
    margin-top:16px;
    padding:24px;
    border-radius:28px;
    background:linear-gradient(135deg,#151522,#2b2146);
    color:#fff;
    box-shadow:0 24px 65px rgba(17,19,26,.16);
}
.ev4-specialist-rating h3{
    color:#fff;
    margin-bottom:18px;
}
.ev4-specialist-rating__grid{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:10px;
}
.ev4-specialist-rating__grid div{
    min-width:0;
    padding:18px 12px;
    border-radius:19px;
    text-align:center;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.1);
}
.ev4-specialist-rating__grid strong{
    display:block;
    color:#fff;
    font-size:clamp(24px,2.6vw,36px);
    line-height:1;
    letter-spacing:-.045em;
}
.ev4-specialist-rating__grid span{
    display:block;
    margin-top:8px;
    color:rgba(255,255,255,.72);
    font-size:12px;
    line-height:1.35;
    font-weight:800;
}
@media(max-width:1200px){
    .ev4-specialist-panels{
        grid-template-columns:1fr;
    }
    .ev4-specialist-rating__grid{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }
}
@media(max-width:768px){
    .ev4-about-photo{
        min-height:260px;
    }
    .ev4-specialist-card{
        grid-template-columns:1fr;
        padding:20px;
    }
    .ev4-specialist-contacts{
        grid-template-columns:1fr 1fr;
    }
    .ev4-specialist-rating{
        padding:20px;
    }
    .ev4-specialist-rating__grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}
@media(max-width:480px){
    .ev4-specialist-contacts{
        grid-template-columns:1fr;
    }
    .ev4-specialist-rating__grid{
        grid-template-columns:1fr;
    }
}

/* === Vigrama Direct 4.4: compact specialist block === */
.ev4-specialist-section{
    padding:76px 0;
}
.ev4-specialist-section .ev4-about{
    grid-template-columns:300px minmax(0,1fr);
    gap:32px;
    align-items:start;
}
.ev4-specialist-section .ev4-about-photo{
    min-height:360px;
    border-radius:30px;
    padding:24px;
}
.ev4-specialist-section .ev4-about-photo i{
    font-size:56px;
}
.ev4-specialist-section .ev4-about-photo span{
    max-width:180px;
    font-size:15px;
    line-height:1.4;
}
.ev4-specialist-section .ev4-about-content h2{
    font-size:clamp(32px,3.4vw,48px);
    line-height:1.04;
    letter-spacing:-.045em;
    margin-bottom:12px;
}
.ev4-specialist-section .ev4-about-intro{
    font-size:16px;
    line-height:1.58;
}
.ev4-specialist-section .ev4-specialist-panels{
    gap:14px;
    margin-top:22px;
}
.ev4-specialist-section .ev4-specialist-card{
    grid-template-columns:46px minmax(0,1fr);
    gap:14px;
    padding:20px;
    border-radius:22px;
}
.ev4-specialist-section .ev4-specialist-card__icon{
    width:46px;
    height:46px;
    border-radius:15px;
    font-size:19px;
}
.ev4-specialist-section .ev4-specialist-card h3,
.ev4-specialist-section .ev4-specialist-rating h3{
    font-size:18px;
    line-height:1.25;
}
.ev4-specialist-section .ev4-tags--programs{
    margin-top:14px;
    gap:8px;
}
.ev4-specialist-section .ev4-tags--programs span{
    padding:9px 12px;
    font-size:15px;
}
.ev4-specialist-section .ev4-specialist-contacts{
    gap:8px;
    margin-top:14px;
}
.ev4-specialist-section .ev4-specialist-contacts a,
.ev4-specialist-section .ev4-specialist-contact--static{
    min-width:0;
    min-height:44px;
    gap:8px;
    padding:9px 10px;
    border-radius:14px;
    font-size:15px;
    white-space:nowrap;
}
.ev4-specialist-section .ev4-specialist-contacts a > span,
.ev4-specialist-section .ev4-specialist-contact--static > span{
    min-width:0;
}
.ev4-specialist-section .ev4-specialist-contacts i{
    width:20px;
    font-size:18px;
}
.ev4-specialist-section .ev4-specialist-contacts .messenger-logo{
    width:20px!important;
    height:20px!important;
    flex-basis:20px;
}
.ev4-specialist-section .ev4-specialist-rating{
    margin-top:14px;
    padding:20px;
    border-radius:24px;
}
.ev4-specialist-section .ev4-specialist-rating h3{
    margin-bottom:14px;
}
.ev4-specialist-section .ev4-specialist-rating__grid{
    gap:8px;
}
.ev4-specialist-section .ev4-specialist-rating__grid div{
    padding:14px 8px;
    border-radius:16px;
}
.ev4-specialist-section .ev4-specialist-rating__grid strong{
    font-size:clamp(23px,2.2vw,30px);
}
.ev4-specialist-section .ev4-specialist-rating__grid span{
    margin-top:7px;
    font-size:12px;
    line-height:1.3;
}
@media(max-width:1200px){
    .ev4-specialist-section .ev4-specialist-panels{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}
@media(max-width:1100px){
    .ev4-specialist-section .ev4-about{
        grid-template-columns:1fr;
    }
    .ev4-specialist-section .ev4-about-photo{
        width:100%;
        max-width:340px;
        min-height:300px;
        justify-self:center;
    }
}
@media(max-width:800px){
    .ev4-specialist-section{
        padding:58px 0;
    }
    .ev4-specialist-section .ev4-specialist-panels{
        grid-template-columns:1fr;
    }
}
@media(max-width:768px){
    .ev4-specialist-section .ev4-about-photo{
        min-height:240px;
        max-width:none;
    }
    .ev4-specialist-section .ev4-specialist-card{
        grid-template-columns:46px minmax(0,1fr);
        padding:18px;
    }
    .ev4-specialist-section .ev4-specialist-rating{
        padding:18px;
    }
}
@media(max-width:480px){
    .ev4-specialist-section .ev4-about-content h2{
        font-size:34px;
    }
    .ev4-specialist-section .ev4-specialist-card{
        grid-template-columns:1fr;
    }
    .ev4-specialist-section .ev4-specialist-contacts a,
    .ev4-specialist-section .ev4-specialist-contact--static{
        font-size:14px;
    }
}

/* === Vigrama Direct 4.5: section balance and contrast fixes === */
.ev4-specialist-section .ev4-about{
    align-items:stretch;
}
.ev4-specialist-section .ev4-about-content{
    min-width:0;
}
.ev4-specialist-section .ev4-about-photo{
    min-height:0;
    height:100%;
    box-shadow:0 24px 65px rgba(17,19,26,.15);
}
.ev4-specialist-section .ev4-specialist-rating{
    grid-column:1 / -1;
    margin-top:0;
}
.ev4-specialist-section .ev4-specialist-rating__grid div{
    display:flex;
    min-height:96px;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.ev4-final-section{
    padding:78px 0;
}
.ev4-final-section .ev4-final__grid{
    align-items:start;
    gap:50px;
}
.ev4-final-section .ev4-final__grid > div:first-child{
    padding-top:28px;
}
.ev4-final-section .ev4-final__grid h2{
    font-size:clamp(42px,4.4vw,64px);
    line-height:1.02;
    max-width:650px;
}
.ev4-final-section .ev-form-card{
    color:var(--ev4-dark);
    padding:30px;
    border-radius:30px;
}
.ev4-final-section .ev-form-card form{
    display:grid;
    gap:18px;
}
.ev4-final-section .ev-form-card .form-group{
    margin:0;
}
.ev4-final-section .ev-form-card .form-group label{
    display:block;
    margin:0 0 8px;
    color:var(--ev4-dark);
    font-size:14px;
    line-height:1.35;
    font-weight:850;
}
.ev4-final-section .ev-form-card .required{
    color:#e5484d;
}
.ev4-final-section .ev-form-card .form-control{
    width:100%;
    min-height:54px;
    padding:14px 16px;
    border:1px solid rgba(17,19,26,.15);
    border-radius:14px;
    background:#fff;
    color:var(--ev4-dark);
    box-shadow:none;
}
.ev4-final-section .ev-form-card .form-control::placeholder{
    color:#7b8495;
    opacity:1;
}
.ev4-final-section .ev-form-card .form-control:focus{
    border-color:var(--ev4-accent-2);
    box-shadow:0 0 0 4px rgba(136,112,255,.12);
}
.ev4-final-section .ev-form-card textarea.form-control{
    min-height:104px;
    resize:vertical;
}
.ev4-final-section .ev-form-card .btn{
    min-height:58px;
    margin-top:2px;
    border-radius:16px;
}

@media(max-width:1100px){
    .ev4-specialist-section .ev4-about-photo{
        height:auto;
        min-height:300px;
    }
    .ev4-specialist-section .ev4-specialist-rating{
        grid-column:auto;
    }
    .ev4-reasons-section .ev4-two-col{
        grid-template-columns:1fr;
        gap:32px;
    }
    .ev4-final-section .ev4-final__grid > div:first-child{
        padding-top:0;
    }
}
@media(max-width:768px){
    .ev4-reasons-section,
    .ev4-final-section{
        padding:58px 0;
    }
    .ev4-reasons-section .ev4-two-col h2,
    .ev4-final-section .ev4-final__grid h2{
        font-size:36px;
    }
    .ev4-reasons-section .ev4-reasons span{
        min-height:58px;
    }
    .ev4-final-section .ev-form-card{
        padding:20px;
        border-radius:24px;
    }
}

/* === Vigrama Direct 4.6: full section polish === */
.ev4-landing .ev4-section{
    padding:74px 0;
}
.ev4-landing .ev4-head{
    margin-bottom:34px;
}
.ev4-landing .ev4-head h2,
.ev4-landing .ev4-two-col h2,
.ev4-landing .ev4-final h2{
    font-size:clamp(34px,3.55vw,52px);
    line-height:1.04;
    letter-spacing:-.045em;
}
.ev4-landing .ev4-head p:not(.ev4-kicker),
.ev4-landing .ev4-two-col p{
    font-size:16px;
    line-height:1.58;
}

/* Portfolio: equal cards without an oversized first item. */
.ev4-landing #ev4-portfolio .ev4-head--split{
    grid-template-columns:minmax(0,1fr) minmax(300px,.46fr);
    align-items:center;
}
.ev4-landing #ev4-portfolio .ev4-head__aside{
    gap:14px;
}
.ev4-landing #ev4-portfolio .ev4-works-grid{
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
}
.ev4-landing #ev4-portfolio .ev4-work--featured{
    grid-column:auto;
}
.ev4-landing #ev4-portfolio .ev4-work{
    display:flex;
    flex-direction:column;
    border-radius:26px;
}
.ev4-landing #ev4-portfolio .ev4-work__media{
    aspect-ratio:16/9;
}
.ev4-landing #ev4-portfolio .ev4-work__body{
    display:flex;
    flex:1;
    flex-direction:column;
    padding:20px 22px 22px;
}
.ev4-landing #ev4-portfolio .ev4-work__body h3{
    font-size:19px;
}
.ev4-landing #ev4-portfolio .ev4-work__body p{
    margin-top:auto;
}

/* Specialist: slightly calmer proportions. */
.ev4-landing .ev4-specialist-section{
    padding:70px 0;
}
.ev4-landing .ev4-specialist-section .ev4-about{
    grid-template-columns:290px minmax(0,1fr);
    gap:34px;
}
.ev4-landing .ev4-specialist-section .ev4-about-content h2{
    font-size:clamp(34px,3.2vw,46px);
}
.ev4-landing .ev4-specialist-section .ev4-about-photo{
    min-height:360px;
    border-radius:28px;
}
.ev4-landing .ev4-specialist-section .ev4-specialist-rating{
    padding:18px 20px 20px;
}
.ev4-landing .ev4-specialist-section .ev4-specialist-rating__grid div{
    min-height:88px;
}

/* Reasons: proper check spacing and more compact cards. */
.ev4-landing .ev4-reasons-section{
    padding:70px 0;
}
.ev4-landing .ev4-reasons-section .ev4-two-col{
    grid-template-columns:minmax(0,.78fr) minmax(0,1.22fr);
    gap:48px;
}
.ev4-landing .ev4-reasons-section .ev4-two-col h2{
    font-size:clamp(38px,3.7vw,52px);
}
.ev4-landing .ev4-reasons-section .ev4-reasons{
    gap:12px;
}
.ev4-landing .ev4-reasons-section .ev4-reasons span{
    min-height:64px;
    display:flex;
    align-items:center;
    gap:10px;
    padding:15px 18px;
    border-radius:17px;
}
.ev4-landing .ev4-reasons-section .ev4-reasons span:before{
    content:'✓';
    flex:0 0 auto;
    color:#bca8ff;
    font-weight:900;
}

/* Reviews: less empty space and equal-height cards. */
.ev4-landing .ev4-reviews-section{
    padding:68px 0;
}
.ev4-landing .ev4-reviews-section .ev4-head{
    margin-bottom:30px;
}
.ev4-landing .ev4-reviews{
    gap:16px;
}
.ev4-landing .ev4-reviews article{
    min-height:205px;
    display:flex;
    flex-direction:column;
    padding:24px 26px;
    border-radius:24px;
}
.ev4-landing .ev4-reviews strong{
    letter-spacing:.08em;
    margin-bottom:14px;
}
.ev4-landing .ev4-reviews p{
    font-size:15px;
    line-height:1.55;
    margin-bottom:20px;
}
.ev4-landing .ev4-reviews span{
    margin-top:auto;
}

/* Result cards: equal heights and calmer headings. */
.ev4-landing .ev4-results-section{
    padding:70px 0;
}
.ev4-landing .ev4-results-section .ev4-result-grid{
    align-items:stretch;
    gap:15px;
}
.ev4-landing .ev4-results-section .ev4-result-grid article{
    min-height:230px;
    display:flex;
    flex-direction:column;
    padding:24px;
    border-radius:24px;
}
.ev4-landing .ev4-results-section .ev4-result-grid p{
    margin-top:auto;
}

/* Price cards: equal height, no lifted card and visible action buttons. */
.ev4-landing .ev4-price-section{
    padding:72px 0 78px;
}
.ev4-landing .ev4-price-grid{
    align-items:stretch;
}
.ev4-landing .ev4-price{
    display:flex;
    flex-direction:column;
    min-height:470px;
    padding:26px 28px;
    border-radius:26px;
}
.ev4-landing .ev4-price--popular{
    transform:none;
}
.ev4-landing .ev4-price h3{
    font-size:23px;
}
.ev4-landing .ev4-price strong{
    font-size:clamp(36px,3.2vw,46px);
}
.ev4-landing .ev4-price ul{
    margin-bottom:24px;
}
.ev4-landing .ev4-price .ev-order-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    margin-top:auto;
    padding:12px 18px;
    border-radius:14px;
    background:linear-gradient(135deg,var(--ev4-accent-2),var(--ev4-accent));
    color:#fff!important;
    text-decoration:none;
    box-shadow:0 14px 32px rgba(134,87,219,.2);
}

/* Materials: balanced title and cards. */
.ev4-landing .ev4-materials-section{
    padding:72px 0;
}
.ev4-landing .ev4-materials-section .ev4-two-col{
    grid-template-columns:minmax(0,.78fr) minmax(0,1.12fr);
    gap:50px;
    align-items:center;
}
.ev4-landing .ev4-materials-section .ev4-two-col h2{
    max-width:620px;
    font-size:clamp(36px,3.6vw,52px);
}
.ev4-landing .ev4-materials-section .ev4-materials{
    gap:14px;
}
.ev4-landing .ev4-materials-section .ev4-materials div{
    min-height:160px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:24px 26px;
    border-radius:24px;
}

/* Process: tighter section and equal cards. */
.ev4-landing .ev4-process-section{
    padding:70px 0;
}
.ev4-landing .ev4-process-section .ev4-head{
    margin-bottom:30px;
}
.ev4-landing .ev4-process-section .ev4-timeline{
    gap:12px;
}
.ev4-landing .ev4-process-section .ev4-timeline div{
    min-height:220px;
    display:flex;
    flex-direction:column;
    padding:24px;
    border-radius:24px;
}
.ev4-landing .ev4-process-section .ev4-timeline p{
    margin-top:auto;
    line-height:1.5;
}

/* FAQ: remove excessive blank space. */
.ev4-landing .ev4-faq-section{
    padding:72px 0;
}
.ev4-landing .ev4-faq-section .ev4-two-col{
    grid-template-columns:minmax(0,.72fr) minmax(0,1.28fr);
    gap:48px;
    align-items:start;
}
.ev4-landing .ev4-faq-section .ev4-two-col h2{
    max-width:540px;
    font-size:clamp(36px,3.5vw,50px);
}
.ev4-landing .ev4-faq-section .ev4-faq{
    gap:10px;
}
.ev4-landing .ev4-faq-section .ev4-faq details{
    padding:17px 20px;
    border-radius:18px;
}
.ev4-landing .ev4-faq-section .ev4-faq summary{
    font-size:16px;
}

/* Final form: compact alignment and controlled width. */
.ev4-landing .ev4-final-section{
    padding:72px 0;
}
.ev4-landing .ev4-final-section .ev4-final__grid{
    grid-template-columns:minmax(0,1fr) minmax(420px,470px);
    gap:54px;
    align-items:center;
}
.ev4-landing .ev4-final-section .ev4-final__grid > div:first-child{
    padding-top:0;
}
.ev4-landing .ev4-final-section .ev4-final__grid h2{
    font-size:clamp(42px,4vw,58px);
}
.ev4-landing .ev4-final-section .ev-form-card{
    padding:26px;
    border-radius:28px;
}
.ev4-landing .ev4-final-section .ev-form-card form{
    gap:16px;
}
.ev4-landing .ev4-final-section .ev-form-card .form-control{
    min-height:52px;
}

@media(max-width:1100px){
    .ev4-landing #ev4-portfolio .ev4-head--split,
    .ev4-landing .ev4-reasons-section .ev4-two-col,
    .ev4-landing .ev4-materials-section .ev4-two-col,
    .ev4-landing .ev4-faq-section .ev4-two-col,
    .ev4-landing .ev4-final-section .ev4-final__grid{
        grid-template-columns:1fr;
    }
    .ev4-landing .ev4-specialist-section .ev4-about{
        grid-template-columns:1fr;
    }
    .ev4-landing .ev4-specialist-section .ev4-about-photo{
        width:100%;
        max-width:360px;
        min-height:300px;
        height:auto;
        justify-self:center;
    }
    .ev4-landing .ev4-final-section .ev-form-card{
        width:100%;
        max-width:620px;
    }
}

@media(max-width:768px){
    .ev4-landing .ev4-section,
    .ev4-landing .ev4-specialist-section,
    .ev4-landing .ev4-reasons-section,
    .ev4-landing .ev4-reviews-section,
    .ev4-landing .ev4-results-section,
    .ev4-landing .ev4-price-section,
    .ev4-landing .ev4-materials-section,
    .ev4-landing .ev4-process-section,
    .ev4-landing .ev4-faq-section,
    .ev4-landing .ev4-final-section{
        padding:54px 0;
    }
    .ev4-landing .ev4-head{
        margin-bottom:26px;
    }
    .ev4-landing .ev4-head h2,
    .ev4-landing .ev4-two-col h2,
    .ev4-landing .ev4-final h2,
    .ev4-landing .ev4-reasons-section .ev4-two-col h2,
    .ev4-landing .ev4-materials-section .ev4-two-col h2,
    .ev4-landing .ev4-faq-section .ev4-two-col h2,
    .ev4-landing .ev4-final-section .ev4-final__grid h2{
        font-size:34px;
    }
    .ev4-landing #ev4-portfolio .ev4-works-grid{
        grid-template-columns:1fr;
    }
    .ev4-landing .ev4-specialist-section .ev4-about-photo{
        max-width:none;
        min-height:240px;
    }
    .ev4-landing .ev4-reasons-section .ev4-reasons{
        grid-template-columns:1fr;
    }
    .ev4-landing .ev4-reviews article,
    .ev4-landing .ev4-results-section .ev4-result-grid article,
    .ev4-landing .ev4-price,
    .ev4-landing .ev4-process-section .ev4-timeline div{
        min-height:0;
    }
    .ev4-landing .ev4-price{
        padding:24px;
    }
    .ev4-landing .ev4-materials-section .ev4-materials div{
        min-height:130px;
    }
    .ev4-landing .ev4-final-section .ev-form-card{
        max-width:none;
        padding:20px;
    }
}

/* DIRECT PORTFOLIO GRID — CONSOLIDATED RESPONSIVE RULES */
.direct-portfolio .portfolio-grid,
.direct-landing-page--polished .direct-portfolio .portfolio-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
    align-items:stretch;
}
.direct-portfolio-item,
.direct-landing-page--polished .direct-portfolio-item{
    height:100%;
    display:flex;
    flex-direction:column;
}
.direct-portfolio-link,
.direct-landing-page--polished .direct-portfolio-link{
    display:block;
    aspect-ratio:16/9;
    overflow:hidden;
}
.direct-portfolio-item img,
.direct-landing-page--polished .direct-portfolio-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.direct-portfolio-item .portfolio-overlay,
.direct-landing-page--polished .direct-portfolio-item .portfolio-overlay{
    flex:1;
}
.direct-hero-proof__head{
    align-items:center;
}
.direct-hero-proof__list{
    align-items:stretch;
}
@media(max-width:992px){
    .direct-portfolio .portfolio-grid,
    .direct-landing-page--polished .direct-portfolio .portfolio-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}
@media(max-width:576px){
    .direct-portfolio .portfolio-grid,
    .direct-landing-page--polished .direct-portfolio .portfolio-grid{
        grid-template-columns:1fr;
    }
}

/* PREMIUM PORTFOLIO HOVER UPGRADE */
.portfolio-item{
    transition: transform .35s ease, box-shadow .35s ease;
}
.portfolio-item:hover{
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,.18);
}
.portfolio-item img{
    transition: transform .6s ease, filter .4s ease;
}
.portfolio-item:hover img{
    transform: scale(1.12);
    filter: brightness(.85) saturate(1.1);
}
.portfolio-overlay{
    backdrop-filter: blur(2px);
}
.play-btn{
    position: relative;
    overflow: hidden;
}
.play-btn::after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    opacity: 0;
    transform: scale(.6);
    transition: .4s;
}
.portfolio-item:hover .play-btn::after{
    opacity: 1;
    transform: scale(1.6);
    animation: pulse 1.2s infinite;
}
@keyframes pulse{
    0%{opacity:.6}
    70%{opacity:0}
    100%{opacity:0}
}

/* Video modal: HTML5, YouTube and Vimeo use the same frame. */
.video-modal-content iframe{
    width:100%;
    aspect-ratio:16/9;
    border:0;
    display:block;
    background:#000;
}
.video-modal-content iframe[hidden],
.video-modal-content video[hidden]{
    display:none;
}

.portfolio-single-media iframe{
    width:100%;
    aspect-ratio:16/9;
    border:0;
    display:block;
    background:#000;
}

/* === Vigrama Direct 4.6: redesigned specialist block === */
.ev4-landing .ev4-specialist-section{
    position:relative;
    overflow:hidden;
    padding:86px 0;
    background:
        radial-gradient(circle at 10% 20%,rgba(136,112,255,.12),transparent 34%),
        radial-gradient(circle at 92% 82%,rgba(134,87,219,.09),transparent 30%),
        linear-gradient(180deg,#faf9ff 0%,#f5f3fb 100%);
}
.ev4-landing .ev4-expert-layout{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:minmax(270px,330px) minmax(0,1fr);
    gap:34px;
    padding:24px;
    border:1px solid rgba(90,70,155,.13);
    border-radius:38px;
    background:rgba(255,255,255,.82);
    box-shadow:0 30px 90px rgba(33,25,64,.10);
    backdrop-filter:blur(14px);
}
.ev4-landing .ev4-expert-card{
    min-width:0;
    padding:14px;
    border:1px solid rgba(255,255,255,.7);
    border-radius:30px;
    background:linear-gradient(155deg,#171522 0%,#2b2145 100%);
    color:#fff;
    box-shadow:0 22px 55px rgba(25,20,48,.20);
}
.ev4-landing .ev4-expert-card__media{
    position:relative;
    overflow:hidden;
    aspect-ratio:4/5;
    border-radius:22px;
    background:linear-gradient(145deg,#302650,#151522);
}
.ev4-landing .ev4-expert-card__media:after{
    content:'';
    position:absolute;
    inset:auto -20% -30% 15%;
    height:58%;
    border-radius:50%;
    background:radial-gradient(circle,rgba(150,119,255,.38),transparent 68%);
    pointer-events:none;
}
.ev4-landing .ev4-expert-card__image{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center top;
}
.ev4-landing .ev4-expert-card__image--bundled{
    object-position:center center;
}
.ev4-landing .ev4-expert-card__fallback{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:
        linear-gradient(140deg,rgba(255,255,255,.08),transparent 48%),
        radial-gradient(circle at 30% 20%,rgba(160,132,255,.35),transparent 33%);
}
.ev4-landing .ev4-expert-card__fallback span{
    display:flex;
    align-items:center;
    justify-content:center;
    width:112px;
    height:112px;
    border:1px solid rgba(255,255,255,.24);
    border-radius:32px;
    background:rgba(255,255,255,.10);
    color:#fff;
    font-size:66px;
    line-height:1;
    font-weight:900;
    letter-spacing:-.08em;
    box-shadow:0 20px 50px rgba(0,0,0,.18);
    backdrop-filter:blur(10px);
}
.ev4-landing .ev4-expert-card__fallback small{
    color:rgba(255,255,255,.66);
    font-size:12px;
    font-weight:800;
    letter-spacing:.12em;
    text-transform:uppercase;
}
.ev4-landing .ev4-expert-card__status{
    position:absolute;
    left:14px;
    bottom:14px;
    z-index:2;
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 12px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:999px;
    background:rgba(12,11,20,.68);
    color:#fff;
    font-size:12px;
    line-height:1;
    font-weight:850;
    backdrop-filter:blur(12px);
}
.ev4-landing .ev4-expert-card__status i{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#6ee7a2;
    box-shadow:0 0 0 4px rgba(110,231,162,.14);
}
.ev4-landing .ev4-expert-card__identity{
    display:flex;
    flex-direction:column;
    gap:3px;
    padding:18px 6px 12px;
}
.ev4-landing .ev4-expert-card__identity strong{
    color:#fff;
    font-size:24px;
    line-height:1.1;
    letter-spacing:-.03em;
}
.ev4-landing .ev4-expert-card__identity span{
    color:rgba(255,255,255,.66);
    font-size:14px;
    font-weight:700;
}
.ev4-landing .ev4-expert-card__proof{
    display:grid;
    gap:10px;
    padding:14px 6px 5px;
    border-top:1px solid rgba(255,255,255,.11);
    color:rgba(255,255,255,.74);
    font-size:12.5px;
    line-height:1.45;
    font-weight:700;
}
.ev4-landing .ev4-expert-card__proof-item{
    display:flex;
    align-items:flex-start;
    gap:9px;
}
.ev4-landing .ev4-expert-card__proof-item i{
    width:16px;
    margin-top:2px;
    color:#bca8ff;
    flex:0 0 16px;
    text-align:center;
}
.ev4-landing .ev4-expert-main{
    min-width:0;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:12px 10px 10px 0;
}
.ev4-landing .ev4-expert-heading{
    max-width:900px;
}
.ev4-landing .ev4-expert-heading .ev4-kicker{
    margin-bottom:15px;
}
.ev4-landing .ev4-expert-heading h2{
    margin:0 0 14px;
    color:var(--ev4-dark);
    font-size:clamp(38px,4vw,58px);
    line-height:1.02;
    letter-spacing:-.055em;
}
.ev4-landing .ev4-expert-heading > p:not(.ev4-kicker){
    max-width:930px;
    margin:0;
    color:var(--ev4-muted);
    font-size:16.5px;
    line-height:1.65;
}
.ev4-landing .ev4-expert-stats{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    margin-top:26px;
    overflow:hidden;
    border:1px solid rgba(83,65,145,.12);
    border-radius:22px;
    background:#fff;
    box-shadow:0 15px 38px rgba(31,23,58,.055);
}
.ev4-landing .ev4-expert-stats div{
    min-width:0;
    min-height:94px;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    padding:18px 17px;
}
.ev4-landing .ev4-expert-stats div + div{
    border-left:1px solid rgba(83,65,145,.10);
}
.ev4-landing .ev4-expert-stats strong{
    display:block;
    color:var(--ev4-dark);
    font-size:clamp(25px,2.2vw,34px);
    line-height:1;
    letter-spacing:-.045em;
}
.ev4-landing .ev4-expert-stats span{
    display:block;
    margin-top:8px;
    color:var(--ev4-muted);
    font-size:11.5px;
    line-height:1.35;
    font-weight:800;
}
.ev4-landing .ev4-expert-details{
    display:grid;
    grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);
    gap:14px;
    margin-top:14px;
}
.ev4-landing .ev4-expert-detail-card{
    min-width:0;
    padding:20px;
    border:1px solid rgba(83,65,145,.12);
    border-radius:22px;
    background:#fff;
    box-shadow:0 15px 38px rgba(31,23,58,.045);
}
.ev4-landing .ev4-expert-detail-card__head{
    display:flex;
    align-items:center;
    gap:13px;
}
.ev4-landing .ev4-expert-detail-card__head > div{
    min-width:0;
}
.ev4-landing .ev4-expert-detail-card__icon{
    width:44px;
    height:44px;
    flex:0 0 44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:rgba(136,112,255,.12);
    color:var(--ev4-accent);
    font-size:18px;
}
.ev4-landing .ev4-expert-detail-card__head span:not(.ev4-expert-detail-card__icon){
    display:block;
    margin-bottom:2px;
    color:var(--ev4-muted);
    font-size:11px;
    font-weight:850;
    letter-spacing:.06em;
    text-transform:uppercase;
}
.ev4-landing .ev4-expert-detail-card h3{
    margin:0;
    color:var(--ev4-dark);
    font-size:18px;
    line-height:1.25;
}
.ev4-landing .ev4-expert-tools{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:16px;
}
.ev4-landing .ev4-expert-tools span{
    padding:9px 12px;
    border:1px solid rgba(136,112,255,.12);
    border-radius:999px;
    background:#f5f1ff;
    color:var(--ev4-accent);
    font-size:13px;
    line-height:1;
    font-weight:850;
}
.ev4-landing .ev4-expert-contacts{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
    margin-top:16px;
}
.ev4-landing .ev4-expert-contacts a{
    min-width:0;
    min-height:44px;
    display:flex;
    align-items:center;
    gap:9px;
    padding:9px 11px;
    border:1px solid rgba(83,65,145,.12);
    border-radius:14px;
    background:#fcfbff;
    color:var(--ev4-dark);
    font-size:14px;
    font-weight:850;
    text-decoration:none;
    transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease,color .2s ease;
}
.ev4-landing .ev4-expert-contacts a:hover{
    transform:translateY(-2px);
    border-color:rgba(136,112,255,.34);
    color:var(--ev4-accent);
    box-shadow:0 10px 24px rgba(68,48,124,.09);
}
.ev4-landing .ev4-expert-contacts a > i:first-child{
    width:20px;
    flex:0 0 20px;
    text-align:center;
    color:var(--ev4-accent);
    font-size:17px;
}
.ev4-landing .ev4-expert-contacts .messenger-logo{
    width:20px!important;
    height:20px!important;
    flex:0 0 20px;
    object-fit:contain;
}
.ev4-landing .ev4-expert-contacts a > span{
    min-width:0;
    flex:1;
}
.ev4-landing .ev4-expert-contact-arrow{
    width:auto!important;
    flex:0 0 auto!important;
    color:var(--ev4-muted)!important;
    font-size:10px!important;
    opacity:.65;
}
@media(max-width:1120px){
    .ev4-landing .ev4-expert-layout{
        grid-template-columns:270px minmax(0,1fr);
        gap:24px;
    }
}
@media(max-width:840px){
    .ev4-landing .ev4-specialist-section{
        padding:62px 0;
    }
    .ev4-landing .ev4-expert-layout{
        grid-template-columns:1fr;
        padding:18px;
        border-radius:30px;
    }
    .ev4-landing .ev4-expert-card{
        display:grid;
        grid-template-columns:180px minmax(0,1fr);
        grid-template-rows:auto auto;
        gap:0 20px;
        align-items:center;
    }
    .ev4-landing .ev4-expert-card__media{
        grid-row:1 / 3;
        aspect-ratio:4/5;
    }
    .ev4-landing .ev4-expert-card__identity{
        align-self:end;
        padding:12px 4px;
    }
    .ev4-landing .ev4-expert-card__proof{
        align-self:start;
        padding:14px 4px 8px;
    }
    .ev4-landing .ev4-expert-main{
        padding:8px 2px 2px;
    }
}
@media(max-width:620px){
    .ev4-landing .ev4-specialist-section{
        padding:52px 0;
    }
    .ev4-landing .ev4-expert-layout{
        padding:12px;
        border-radius:25px;
    }
    .ev4-landing .ev4-expert-card{
        display:block;
        padding:11px;
        border-radius:24px;
    }
    .ev4-landing .ev4-expert-card__media{
        aspect-ratio:16/11;
        min-height:250px;
        border-radius:18px;
    }
    .ev4-landing .ev4-expert-card__image{
        object-position:center 22%;
    }
    .ev4-landing .ev4-expert-card__image--bundled{
        object-position:center 38%;
    }
    .ev4-landing .ev4-expert-card__identity{
        padding:16px 5px 10px;
    }
    .ev4-landing .ev4-expert-card__proof{
        padding:13px 5px 5px;
    }
    .ev4-landing .ev4-expert-heading h2{
        font-size:34px;
    }
    .ev4-landing .ev4-expert-heading > p:not(.ev4-kicker){
        font-size:15px;
    }
    .ev4-landing .ev4-expert-stats{
        grid-template-columns:repeat(2,minmax(0,1fr));
        border-radius:18px;
    }
    .ev4-landing .ev4-expert-stats div{
        min-height:84px;
        padding:15px;
        border-right:1px solid rgba(83,65,145,.10)!important;
        border-bottom:1px solid rgba(83,65,145,.10)!important;
    }
    .ev4-landing .ev4-expert-stats div:nth-child(2n){
        border-right:0!important;
    }
    .ev4-landing .ev4-expert-stats div:last-child{
        grid-column:1 / -1;
        border-right:0!important;
        border-bottom:0!important;
    }
    .ev4-landing .ev4-expert-stats div:nth-child(4){
        border-bottom:0!important;
    }
    .ev4-landing .ev4-expert-detail-card{
        padding:17px;
        border-radius:18px;
    }
    .ev4-landing .ev4-expert-contacts{
        grid-template-columns:1fr;
    }
}


/* === Vigrama Direct 4.5: refined hero controls === */
.ev4-landing .ev4-hero{
    padding-top:110px;
    padding-bottom:58px;
    background:
        radial-gradient(circle at 82% 18%,rgba(139,103,255,.24),transparent 28%),
        radial-gradient(circle at 12% 86%,rgba(106,76,205,.15),transparent 32%),
        linear-gradient(135deg,#11121b 0%,#191526 52%,#251b3b 100%);
}
.ev4-landing .ev4-hero:before{
    opacity:.11;
    background-size:84px 84px;
}
.ev4-landing .ev4-hero__grid{
    grid-template-columns:minmax(0,.94fr) minmax(500px,1.06fr);
    gap:50px;
    align-items:center;
}
.ev4-landing .ev4-hero__content{
    max-width:660px;
}
.ev4-landing .ev4-pill{
    margin-bottom:22px;
    padding:9px 14px;
    background:rgba(255,255,255,.075);
    border-color:rgba(255,255,255,.13);
    color:rgba(255,255,255,.88);
    font-size:12.5px;
    letter-spacing:.015em;
}
.ev4-landing .ev4-pill i{color:#a98dff}
.ev4-landing .ev4-hero h1{
    max-width:610px;
    margin:0 0 20px;
    font-size:clamp(50px,4.35vw,66px);
    line-height:.98;
    letter-spacing:-.058em;
    color:#fff;
}
.ev4-landing .ev4-hero-accent{
    display:inline-block;
    color:#aa8cff;
    background:linear-gradient(135deg,#c5b2ff 0%,#8b67ff 58%,#b99cff 100%);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
}
.ev4-landing .ev4-hero-subtitle{
    max-width:620px;
    margin:0 0 28px;
    font-size:clamp(18px,1.55vw,22px);
    line-height:1.48;
    font-weight:600;
    letter-spacing:-.018em;
    color:rgba(255,255,255,.72);
}

/* Простая строка преимуществ без тяжёлых карточек */
.ev4-landing .ev4-hero-includes{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:12px 24px;
    margin:0 0 28px;
}
.ev4-landing .ev4-hero-includes span{
    display:inline-flex;
    align-items:center;
    gap:8px;
    min-height:0;
    padding:0;
    border:0;
    border-radius:0;
    background:none;
    color:rgba(255,255,255,.80);
    font-size:14px;
    line-height:1.35;
    font-weight:720;
    white-space:nowrap;
}
.ev4-landing .ev4-hero-includes i{
    flex:0 0 18px;
    width:18px;
    height:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(161,126,255,.16);
    color:#bca8ff;
    font-size:8px;
}

/* Одна главная кнопка и спокойная вторичная */
.ev4-landing .ev4-actions{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
    margin:0;
}
.ev4-landing .ev4-actions .btn{
    width:auto;
    min-height:56px;
    padding:15px 24px;
    border-radius:15px;
    font-size:16px;
    line-height:1.2;
}
.ev4-landing .ev4-actions .btn-primary{
    min-width:270px;
    background:linear-gradient(135deg,#8e6bff 0%,#7f52da 100%);
    box-shadow:0 18px 42px rgba(118,77,218,.28);
}
.ev4-landing .ev4-actions .btn-primary:hover{
    box-shadow:0 23px 52px rgba(118,77,218,.38);
}
.ev4-landing .ev4-actions .ev4-outline{
    min-width:210px;
    background:rgba(255,255,255,.025);
    border-color:rgba(255,255,255,.16);
    box-shadow:none;
    color:rgba(255,255,255,.90);
}
.ev4-landing .ev4-actions .ev4-outline:hover{
    background:rgba(255,255,255,.07);
    border-color:rgba(255,255,255,.28);
}
.ev4-landing .ev4-hero-meta{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px 20px;
    margin:15px 0 22px;
}
.ev4-landing .ev4-hero-response,
.ev4-landing .ev4-hero-online{
    display:flex;
    align-items:center;
    gap:9px;
    margin:0;
    color:rgba(255,255,255,.62);
    font-size:12.5px;
    line-height:1.35;
    font-weight:680;
}
.ev4-landing .ev4-hero-response span{
    position:relative;
    width:8px;
    height:8px;
    flex:0 0 8px;
    border-radius:50%;
    background:#58d18b;
    box-shadow:0 0 0 5px rgba(88,209,139,.10);
}
.ev4-landing .ev4-hero-online i{
    width:17px;
    height:17px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex:0 0 17px;
    border-radius:50%;
    background:rgba(169,141,255,.14);
    color:#bca8ff;
    font-size:8px;
}

/* Три ровных условия без узкой четвёртой колонки */
.ev4-landing .ev4-hero-stats{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    overflow:hidden;
    border:1px solid rgba(255,255,255,.10);
    border-radius:17px;
    background:rgba(255,255,255,.035);
}
.ev4-landing .ev4-hero-stats div{
    min-width:0;
    padding:17px 20px 18px;
    border:0;
    border-radius:0;
    background:none;
}
.ev4-landing .ev4-hero-stats div+div{
    border-left:1px solid rgba(255,255,255,.09);
}
.ev4-landing .ev4-hero-stats strong,
.ev4-landing .ev4-hero-stats span{display:block}
.ev4-landing .ev4-hero-stats span{
    margin-bottom:5px;
    color:rgba(255,255,255,.45);
    font-size:10px;
    line-height:1.2;
    font-weight:760;
    letter-spacing:.055em;
    text-transform:uppercase;
}
.ev4-landing .ev4-hero-stats strong{
    margin:0;
    color:rgba(255,255,255,.94);
    font-size:16px;
    line-height:1.2;
    font-weight:850;
    letter-spacing:-.015em;
}
.ev4-landing .ev4-showreel-card{
    padding:12px;
    border-radius:26px;
    background:rgba(255,255,255,.06);
    border-color:rgba(255,255,255,.12);
    box-shadow:0 34px 86px rgba(0,0,0,.34);
}
.ev4-landing .ev4-showreel-card__label{margin-bottom:10px;padding:1px 3px}
.ev4-landing .ev4-showreel-card__label span{color:rgba(255,255,255,.60);font-size:12px}
.ev4-landing .ev4-showreel-card__label strong{
    max-width:70%;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    font-size:13px;
}
.ev4-landing .ev4-showreel-media{border-radius:20px}
.ev4-landing .ev4-showreel-meta span{background:rgba(255,255,255,.045);color:rgba(255,255,255,.68)}

@media(max-width:1100px){
    .ev4-landing .ev4-hero__grid{grid-template-columns:1fr;gap:42px}
    .ev4-landing .ev4-hero__content{max-width:760px}
    .ev4-landing .ev4-hero h1,
    .ev4-landing .ev4-hero-subtitle{max-width:760px}
    .ev4-landing .ev4-hero__visual{max-width:800px}
}
@media(max-width:768px){
    .ev4-landing .ev4-hero{padding-top:88px;padding-bottom:40px}
    .ev4-landing .ev4-hero__grid{gap:32px}
    .ev4-landing .ev4-pill{margin-bottom:18px}
    .ev4-landing .ev4-hero h1{
        max-width:560px;
        margin-bottom:16px;
        font-size:clamp(40px,10.8vw,54px);
        line-height:1;
    }
    .ev4-landing .ev4-hero-subtitle{margin-bottom:21px;font-size:17px;line-height:1.5}
    .ev4-landing .ev4-hero-includes{gap:10px 20px;margin-bottom:23px}
    .ev4-landing .ev4-hero-includes span{font-size:13px;white-space:normal}
    .ev4-landing .ev4-actions .btn{min-height:52px;padding:13px 18px;font-size:14px}
    .ev4-landing .ev4-actions .btn-primary{min-width:235px}
    .ev4-landing .ev4-actions .ev4-outline{min-width:190px}
    .ev4-landing .ev4-hero-meta{margin:13px 0 18px;gap:9px 16px}
    .ev4-landing .ev4-hero-response,
    .ev4-landing .ev4-hero-online{font-size:12px}
    .ev4-landing .ev4-hero-stats{grid-template-columns:repeat(3,minmax(0,1fr))}
    .ev4-landing .ev4-hero-stats div{padding:14px 15px 15px}
    .ev4-landing .ev4-hero-stats strong{font-size:14px}
    .ev4-landing .ev4-hero-stats span{font-size:9px}
}
@media(max-width:560px){
    .ev4-landing .ev4-hero h1{font-size:clamp(38px,12vw,48px)}
    .ev4-landing .ev4-hero-includes{
        display:grid;
        grid-template-columns:1fr;
        gap:10px;
    }
    .ev4-landing .ev4-actions{display:grid;grid-template-columns:1fr;width:100%}
    .ev4-landing .ev4-actions .btn,
    .ev4-landing .ev4-actions .btn-primary,
    .ev4-landing .ev4-actions .ev4-outline{width:100%;min-width:0}
    .ev4-landing .ev4-hero-meta{align-items:flex-start;flex-direction:column;gap:10px}
    .ev4-landing .ev4-hero-stats{grid-template-columns:1fr}
    .ev4-landing .ev4-hero-stats div{
        display:grid;
        grid-template-columns:1fr auto;
        align-items:center;
        gap:14px;
        padding:13px 15px;
    }
    .ev4-landing .ev4-hero-stats div+div{
        border-left:0;
        border-top:1px solid rgba(255,255,255,.09);
    }
    .ev4-landing .ev4-hero-stats span{margin:0}
    .ev4-landing .ev4-hero-stats strong{text-align:right}
}


/* === Vigrama 1.4.3: Kwork rating link and reliable video modal === */
.ev4-landing .ev4-expert-stats > div,
.ev4-landing .ev4-expert-stats > .ev4-expert-stat{
    min-width:0;
    min-height:94px;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    padding:18px 17px;
}
.ev4-landing .ev4-expert-stats > * + *{border-left:1px solid rgba(83,65,145,.10)}
.ev4-landing .ev4-expert-stat--link{
    position:relative;
    color:inherit;
    text-decoration:none;
    transition:background-color .2s ease;
}
.ev4-landing .ev4-expert-stat--link > i{
    position:absolute;
    top:15px;
    right:14px;
    color:var(--ev4-accent);
    font-size:11px;
    opacity:.7;
}
.ev4-landing .ev4-expert-stat--link:hover{background:#f7f3ff}
.ev4-landing .ev4-expert-stat--link:focus-visible{
    outline:3px solid rgba(136,112,255,.32);
    outline-offset:-3px;
}
.video-modal-content{min-height:160px}
.video-modal-content iframe{
    min-height:min(72vh,506px);
    border-radius:12px;
}
.video-modal-fallback{
    width:min(100%,620px);
    padding:30px;
    border-radius:18px;
    background:#fff;
    color:#17151f;
    text-align:center;
    box-shadow:0 28px 80px rgba(0,0,0,.35);
}
.video-modal-fallback[hidden]{display:none!important}
.video-modal-fallback p{margin:0 0 18px;font-weight:700;line-height:1.5}
.video-modal-fallback a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:11px 18px;
    border-radius:12px;
    background:linear-gradient(135deg,var(--primary-light),var(--primary-dark));
    color:#fff;
    text-decoration:none;
    font-weight:800;
}
@media(max-width:768px){
    .ev4-landing .ev4-expert-stats > div,
    .ev4-landing .ev4-expert-stats > .ev4-expert-stat{
        min-height:84px;
        padding:15px;
        border-right:1px solid rgba(83,65,145,.10)!important;
        border-bottom:1px solid rgba(83,65,145,.10)!important;
        border-left:0!important;
    }
    .ev4-landing .ev4-expert-stats > *:nth-child(2n){border-right:0!important}
    .ev4-landing .ev4-expert-stats > *:last-child{
        grid-column:1 / -1;
        border-right:0!important;
        border-bottom:0!important;
    }
    .ev4-landing .ev4-expert-stats > *:nth-child(4){border-bottom:0!important}
    .video-modal-content iframe{min-height:0;aspect-ratio:16/9}
    .video-modal-fallback{padding:22px 18px}
}

/* === Vigrama 1.4.4: reliable video controls === */
.ev4-landing .ev4-showreel-media,
.ev4-landing .ev4-work__media {
    cursor: pointer;
}

/* Позднее общее правило .play-btn не должно сбивать абсолютное позиционирование. */
.ev4-landing .ev4-showreel-media > .ev4-showreel-play.play-btn {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    right: auto !important;
    bottom: auto !important;
    width: 76px !important;
    height: 76px !important;
    transform: translate(-50%, -50%) !important;
    z-index: 5;
    overflow: hidden;
}
.ev4-landing .ev4-showreel-media > .ev4-showreel-play.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.06) !important;
}
.ev4-landing .ev4-work__media > .ev4-work__play.play-btn {
    position: absolute !important;
    left: auto !important;
    top: auto !important;
    right: 14px !important;
    bottom: 14px !important;
    width: 52px !important;
    height: 52px !important;
    transform: none !important;
    z-index: 5;
    overflow: hidden;
}
.ev4-landing .ev4-work__media > .ev4-work__play.play-btn:hover {
    transform: scale(1.08) !important;
}
.ev4-landing .ev4-showreel-watch,
.ev4-landing .ev4-work__tag {
    pointer-events: none;
    z-index: 6;
}
.ev4-landing .ev4-showreel-media img,
.ev4-landing .ev4-work__media img {
    pointer-events: none;
}
.video-modal.active {
    display: flex !important;
}
.video-modal-content iframe:not([hidden]),
.video-modal-content video:not([hidden]) {
    display: block !important;
}
@media (max-width: 768px) {
    .ev4-landing .ev4-showreel-media > .ev4-showreel-play.play-btn {
        width: 66px !important;
        height: 66px !important;
    }
    .ev4-landing .ev4-work__media > .ev4-work__play.play-btn {
        right: 12px !important;
        bottom: 12px !important;
        width: 48px !important;
        height: 48px !important;
    }
}



/* Specialist block redesign */
.ev4-landing .ev4-expert-layout{
    gap:28px;
    padding:26px;
    border-radius:34px;
    background:linear-gradient(180deg,rgba(255,255,255,.94) 0%,rgba(255,255,255,.88) 100%);
    box-shadow:0 22px 60px rgba(34,24,63,.08);
}
.ev4-landing .ev4-expert-main{
    padding:8px 0 0;
}
.ev4-landing .ev4-expert-heading h2{
    margin-bottom:12px;
    font-size:clamp(34px,3.4vw,52px);
    letter-spacing:-.05em;
}
.ev4-landing .ev4-expert-heading > p:not(.ev4-kicker){
    max-width:820px;
    font-size:16px;
    line-height:1.58;
}
.ev4-landing .ev4-expert-stats{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:12px;
    margin-top:22px;
    border:none;
    border-radius:0;
    background:transparent;
    box-shadow:none;
    overflow:visible;
}
.ev4-landing .ev4-expert-stats > div,
.ev4-landing .ev4-expert-stats > a{
    min-width:0;
    min-height:0;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
    padding:18px 20px;
    border:1px solid rgba(83,65,145,.12);
    border-radius:22px;
    background:#fff;
    box-shadow:0 10px 28px rgba(31,23,58,.045);
    text-decoration:none;
    transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}
.ev4-landing .ev4-expert-stats > div + div,
.ev4-landing .ev4-expert-stats > a + div,
.ev4-landing .ev4-expert-stats > div + a,
.ev4-landing .ev4-expert-stats > a + a{
    border-left:none;
}
.ev4-landing .ev4-expert-stats > a:hover{
    transform:translateY(-2px);
    border-color:rgba(136,112,255,.28);
    box-shadow:0 14px 34px rgba(63,45,118,.08);
}
.ev4-landing .ev4-expert-stats strong{
    font-size:clamp(26px,2vw,32px);
}
.ev4-landing .ev4-expert-stats span{
    margin-top:7px;
    font-size:12px;
    line-height:1.35;
}
.ev4-landing .ev4-expert-stats > a{
    position:relative;
    color:inherit;
}
.ev4-landing .ev4-expert-stats > a i{
    position:absolute;
    top:16px;
    right:16px;
    color:var(--ev4-accent);
    font-size:12px;
    opacity:.7;
}
.ev4-landing .ev4-expert-details{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
    margin-top:16px;
}
.ev4-landing .ev4-expert-detail-card{
    padding:22px;
    border-radius:24px;
    box-shadow:0 10px 28px rgba(31,23,58,.04);
}
.ev4-landing .ev4-expert-detail-card__head{
    gap:14px;
}
.ev4-landing .ev4-expert-detail-card__icon{
    width:48px;
    height:48px;
    flex:0 0 48px;
    border-radius:16px;
    background:linear-gradient(180deg,#f2ecff 0%,#eee7ff 100%);
}
.ev4-landing .ev4-expert-detail-card__head span:not(.ev4-expert-detail-card__icon){
    margin-bottom:4px;
    color:#7d879c;
    font-size:12px;
    letter-spacing:.08em;
}
.ev4-landing .ev4-expert-detail-card h3{
    font-size:16px;
    letter-spacing:-.02em;
}
.ev4-landing .ev4-expert-tools{
    gap:10px;
    margin-top:18px;
}
.ev4-landing .ev4-expert-tools span{
    padding:10px 14px;
    border-color:#ece6ff;
    background:#f8f5ff;
    color:#7a5be7;
    font-size:14px;
}
.ev4-landing .ev4-expert-contacts{
    gap:10px;
    margin-top:18px;
}
.ev4-landing .ev4-expert-contacts a{
    min-height:50px;
    padding:11px 13px;
    border-radius:16px;
    background:linear-gradient(180deg,#fff 0%,#fcfbff 100%);
    box-shadow:none;
}
.ev4-landing .ev4-expert-contacts a:hover{
    box-shadow:0 10px 24px rgba(68,48,124,.08);
}
.ev4-landing .ev4-expert-contacts a > i:first-child,
.ev4-landing .ev4-expert-contacts .messenger-logo{
    width:22px!important;
    height:22px!important;
    flex:0 0 22px;
}
.ev4-landing .ev4-expert-contact-arrow{
    font-size:11px!important;
}
@media(max-width:1120px){
    .ev4-landing .ev4-expert-stats{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }
}
@media(max-width:840px){
    .ev4-landing .ev4-expert-details{
        grid-template-columns:1fr;
    }
    .ev4-landing .ev4-expert-stats{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}
@media(max-width:620px){
    .ev4-landing .ev4-expert-layout{
        gap:18px;
        padding:14px;
        border-radius:24px;
    }
    .ev4-landing .ev4-expert-stats{
        gap:10px;
        margin-top:18px;
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
    .ev4-landing .ev4-expert-stats > div,
    .ev4-landing .ev4-expert-stats > a{
        padding:16px 15px;
        border-radius:18px;
    }
    .ev4-landing .ev4-expert-stats strong{
        font-size:24px;
    }
    .ev4-landing .ev4-expert-stats span{
        font-size:11px;
    }
    .ev4-landing .ev4-expert-detail-card{
        padding:18px;
        border-radius:20px;
    }
}
@media(max-width:460px){
    .ev4-landing .ev4-expert-stats{
        grid-template-columns:1fr;
    }
    .ev4-landing .ev4-expert-contacts{
        grid-template-columns:1fr;
    }
}


/* Specialist block: trust-focused compact layout */
.ev4-landing .ev4-expert-proof-grid{
    display:grid;
    grid-template-columns:minmax(150px,.72fr) minmax(150px,.72fr) minmax(310px,1.56fr);
    gap:14px;
    margin-top:24px;
}
.ev4-landing .ev4-expert-proof-card,
.ev4-landing .ev4-expert-kwork{
    min-width:0;
    min-height:118px;
    border:1px solid rgba(83,65,145,.12);
    border-radius:24px;
    background:#fff;
    box-shadow:0 12px 30px rgba(31,23,58,.05);
}
.ev4-landing .ev4-expert-proof-card{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:22px;
}
.ev4-landing .ev4-expert-proof-card strong{
    color:var(--ev4-dark);
    font-size:clamp(30px,2.5vw,40px);
    line-height:1;
    letter-spacing:-.055em;
}
.ev4-landing .ev4-expert-proof-card span{
    margin-top:9px;
    color:var(--ev4-muted);
    font-size:12.5px;
    line-height:1.35;
    font-weight:800;
}
.ev4-landing .ev4-expert-kwork{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:22px 24px;
    background:linear-gradient(135deg,#201932 0%,#3c2c68 100%);
    color:#fff;
    text-decoration:none;
    transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}
.ev4-landing .ev4-expert-kwork:hover{
    transform:translateY(-2px);
    border-color:rgba(167,143,255,.52);
    box-shadow:0 18px 38px rgba(47,32,87,.18);
}
.ev4-landing .ev4-expert-kwork > div{
    min-width:0;
    display:flex;
    flex-direction:column;
}
.ev4-landing .ev4-expert-kwork small{
    margin-bottom:6px;
    color:rgba(255,255,255,.58);
    font-size:10px;
    line-height:1.2;
    font-weight:850;
    letter-spacing:.09em;
    text-transform:uppercase;
}
.ev4-landing .ev4-expert-kwork strong{
    color:#fff;
    font-size:25px;
    line-height:1.15;
    letter-spacing:-.035em;
}
.ev4-landing .ev4-expert-kwork span{
    margin-top:7px;
    color:rgba(255,255,255,.72);
    font-size:12px;
    line-height:1.35;
    font-weight:750;
}
.ev4-landing .ev4-expert-kwork > i{
    width:42px;
    height:42px;
    flex:0 0 42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.16);
    border-radius:14px;
    background:rgba(255,255,255,.08);
    color:#c9baff;
    font-size:14px;
}
.ev4-landing .ev4-expert-compact-tools{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:8px 10px;
    margin-top:16px;
    padding:15px 18px;
    border:1px solid rgba(83,65,145,.10);
    border-radius:18px;
    background:rgba(248,246,255,.82);
}
.ev4-landing .ev4-expert-compact-tools span{
    color:#7257d6;
    font-size:13px;
    line-height:1;
    font-weight:820;
}
.ev4-landing .ev4-expert-compact-tools span:not(:last-child):not(.ev4-expert-compact-tools__label)::after{
    content:'·';
    margin-left:10px;
    color:#b8abc9;
}
.ev4-landing .ev4-expert-compact-tools .ev4-expert-compact-tools__label{
    color:var(--ev4-muted);
    font-size:11px;
    letter-spacing:.07em;
    text-transform:uppercase;
}
.ev4-landing .ev4-expert-contact-panel{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    align-items:center;
    gap:24px;
    margin-top:16px;
    padding:20px 22px;
    border:1px solid rgba(83,65,145,.12);
    border-radius:24px;
    background:#fff;
    box-shadow:0 12px 30px rgba(31,23,58,.045);
}
.ev4-landing .ev4-expert-contact-panel__copy{
    min-width:0;
    display:flex;
    flex-direction:column;
    gap:5px;
}
.ev4-landing .ev4-expert-contact-panel__copy > span{
    color:var(--ev4-accent);
    font-size:11px;
    font-weight:850;
    letter-spacing:.08em;
    text-transform:uppercase;
}
.ev4-landing .ev4-expert-contact-panel__copy strong{
    max-width:560px;
    color:var(--ev4-dark);
    font-size:17px;
    line-height:1.35;
    letter-spacing:-.02em;
}
.ev4-landing .ev4-expert-contact-panel__actions{
    width:min(100%,430px);
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:9px;
}
.ev4-landing .ev4-expert-contact-primary{
    width:100%;
    min-height:50px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:12px 18px;
    border-radius:16px;
    background:linear-gradient(135deg,#7f63ff 0%,#9160e8 100%);
    color:#fff;
    font-size:14px;
    font-weight:850;
    text-decoration:none;
    box-shadow:0 12px 24px rgba(124,91,225,.22);
    transition:transform .2s ease,box-shadow .2s ease;
}
.ev4-landing .ev4-expert-contact-primary:hover{
    transform:translateY(-2px);
    color:#fff;
    box-shadow:0 16px 30px rgba(124,91,225,.28);
}
.ev4-landing .ev4-expert-contact-primary i,
.ev4-landing .ev4-expert-contact-primary .messenger-logo{
    width:20px!important;
    height:20px!important;
    flex:0 0 20px;
}
.ev4-landing .ev4-expert-contact-links{
    width:100%;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:8px;
}
.ev4-landing .ev4-expert-contact-links a{
    min-width:0;
    min-height:38px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    padding:8px 12px;
    border:1px solid rgba(83,65,145,.14);
    border-radius:13px;
    background:linear-gradient(180deg,#fff 0%,#faf8ff 100%);
    color:#626b80;
    font-size:11.5px;
    line-height:1;
    font-weight:850;
    text-decoration:none;
    white-space:nowrap;
    box-shadow:0 5px 14px rgba(43,31,77,.035);
    transition:transform .2s ease,border-color .2s ease,color .2s ease,box-shadow .2s ease,background .2s ease;
}
.ev4-landing .ev4-expert-contact-links a:hover{
    transform:translateY(-1px);
    border-color:rgba(136,112,255,.34);
    background:#f5f1ff;
    color:var(--ev4-accent);
    box-shadow:0 8px 18px rgba(68,48,124,.08);
}
.ev4-landing .ev4-expert-contact-links a > i:first-child{
    width:15px;
    flex:0 0 15px;
    color:var(--ev4-accent);
    font-size:14px;
    text-align:center;
}
.ev4-landing .ev4-expert-contact-links .messenger-logo{
    width:16px!important;
    height:16px!important;
    flex:0 0 16px;
    object-fit:contain;
}
.ev4-landing .ev4-expert-contact-links a > span{
    min-width:0;
    overflow:visible;
    text-overflow:clip;
    white-space:nowrap;
}
@media(max-width:1080px){
    .ev4-landing .ev4-expert-proof-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
    .ev4-landing .ev4-expert-kwork{
        grid-column:1 / -1;
    }
}
@media(min-width:761px){
    .ev4-landing .ev4-expert-contact-panel{
        grid-template-columns:minmax(0,1fr) minmax(360px,430px);
    }
    .ev4-landing .ev4-expert-contact-links{
        grid-template-columns:repeat(3,minmax(112px,1fr));
    }
}
@media(max-width:760px){
    .ev4-landing .ev4-expert-contact-panel{
        grid-template-columns:1fr;
        gap:16px;
    }
    .ev4-landing .ev4-expert-contact-panel__actions{
        width:100%;
        align-items:stretch;
    }
    .ev4-landing .ev4-expert-contact-links{
        width:100%;
    }
}
@media(max-width:520px){
    .ev4-landing .ev4-expert-proof-grid{
        grid-template-columns:1fr;
        gap:10px;
        margin-top:18px;
    }
    .ev4-landing .ev4-expert-kwork{
        grid-column:auto;
        padding:19px;
    }
    .ev4-landing .ev4-expert-proof-card{
        min-height:98px;
        padding:18px;
    }
    .ev4-landing .ev4-expert-compact-tools{
        align-items:flex-start;
        padding:14px 15px;
    }
    .ev4-landing .ev4-expert-compact-tools span{
        line-height:1.35;
    }
    .ev4-landing .ev4-expert-contact-panel{
        padding:18px;
        border-radius:20px;
    }
    .ev4-landing .ev4-expert-contact-primary{
        width:100%;
    }
    .ev4-landing .ev4-expert-contact-links{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
    .ev4-landing .ev4-expert-contact-mini--kwork:last-child{
        grid-column:1 / -1;
    }
}
@media(max-width:360px){
    .ev4-landing .ev4-expert-contact-links{
        grid-template-columns:1fr;
    }
    .ev4-landing .ev4-expert-contact-mini--kwork:last-child{
        grid-column:auto;
    }
}


/* Specialist heading after duplicate title removal */
.ev4-landing .ev4-expert-heading .ev4-kicker{margin-bottom:12px}
.ev4-landing .ev4-expert-heading > p:not(.ev4-kicker){margin-top:0}


/* Mobile specialist card containment fix */
.ev4-landing .ev4-expert-card,
.ev4-landing .ev4-expert-card__media,
.ev4-landing .ev4-expert-card__image{
    box-sizing:border-box;
    max-width:100%;
}
.ev4-landing .ev4-expert-card{
    overflow:hidden;
}
.ev4-landing .ev4-expert-card__media{
    width:100%;
    min-width:0;
}
.ev4-landing .ev4-expert-card__image{
    display:block!important;
    width:100%!important;
    height:100%!important;
    margin:0!important;
}
@media(max-width:620px){
    .ev4-landing .ev4-expert-layout,
    .ev4-landing .ev4-expert-card{
        width:100%;
        max-width:100%;
        min-width:0;
    }
    .ev4-landing .ev4-expert-card{
        padding:10px;
    }
    .ev4-landing .ev4-expert-card__media{
        width:100%;
        max-width:100%;
        min-width:0;
        min-height:0;
        aspect-ratio:16/11;
        border-radius:18px;
        overflow:hidden;
    }
    .ev4-landing .ev4-expert-card__image,
    .ev4-landing .ev4-expert-card__image--bundled{
        width:100%!important;
        max-width:100%!important;
        height:100%!important;
        object-fit:cover!important;
        object-position:62% 34%!important;
    }
}
@media(max-width:420px){
    .ev4-landing .ev4-expert-card__media{
        aspect-ratio:4/3;
    }
    .ev4-landing .ev4-expert-card__identity{
        padding:14px 5px 9px;
    }
    .ev4-landing .ev4-expert-card__proof{
        padding:12px 5px 4px;
    }
}


/* Mobile direct-contact dock: full-width bottom action bar */

.ev4-mobile-contact-dock{
    display:none;
}
@media(max-width:768px){
    .ev4-sticky-cta{
        display:none!important;
    }
    .ev4-mobile-contact-dock{
        position:fixed;
        left:12px;
        right:12px;
        bottom:calc(10px + env(safe-area-inset-bottom));
        z-index:999;
        display:block;
        box-sizing:border-box;
        padding:8px;
        border:1px solid rgba(255,255,255,.08);
        border-radius:20px;
        background:rgba(10,13,23,.92);
        box-shadow:0 12px 34px rgba(6,8,18,.28);
        backdrop-filter:blur(14px);
        -webkit-backdrop-filter:blur(14px);
    }
    .ev4-mobile-contact-dock__actions{
        width:100%;
        display:grid;
        grid-template-columns:repeat(3,minmax(0,1fr));
        gap:8px;
    }
    .ev4-mobile-contact-dock__button{
        min-width:0;
        min-height:42px;
        box-sizing:border-box;
        display:flex;
        align-items:center;
        justify-content:center;
        gap:6px;
        padding:9px 8px;
        border:1px solid rgba(255,255,255,.08);
        border-radius:14px;
        background:linear-gradient(180deg,#212838 0%, #191f2d 100%);
        color:#fff!important;
        font-size:12.5px;
        line-height:1;
        font-weight:800;
        text-decoration:none!important;
        white-space:nowrap;
        box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
    }
    .ev4-mobile-contact-dock__button--max{
        border-color:rgba(77,219,255,.28);
        background:linear-gradient(135deg,#41d7ff 0%,#2bbbe9 100%);
        color:#07131b!important;
        box-shadow:0 8px 18px rgba(43,187,233,.22);
    }
    .ev4-mobile-contact-dock__button i{
        width:15px;
        flex:0 0 15px;
        text-align:center;
        color:#fff;
        font-size:14px;
    }
    .ev4-mobile-contact-dock__button--max i{
        color:#07131b;
    }
    .ev4-mobile-contact-dock__button .messenger-logo{
        width:16px!important;
        height:16px!important;
        flex:0 0 16px;
        object-fit:contain;
    }
    .ev4-mobile-contact-dock__button span{
        min-width:0;
        overflow:visible;
        text-overflow:clip;
    }
    .edge-video-landing{
        padding-bottom:84px;
    }
}
@media(max-width:390px){
    .ev4-mobile-contact-dock{
        left:10px;
        right:10px;
        padding:7px;
        border-radius:18px;
    }
    .ev4-mobile-contact-dock__actions{
        gap:6px;
    }
    .ev4-mobile-contact-dock__button{
        min-height:40px;
        gap:5px;
        padding:8px 6px;
        border-radius:12px;
        font-size:12px;
    }
    .ev4-mobile-contact-dock__button i,
    .ev4-mobile-contact-dock__button .messenger-logo{
        width:14px!important;
        height:14px!important;
        flex-basis:14px;
        font-size:13px;
    }
}

/* === Direct 4.7: service directions after reviews === */
.ev4-landing .ev4-service-directions-section{
    position:relative;
    overflow:hidden;
    padding:72px 0 78px;
}
.ev4-landing .ev4-service-directions-section:before{
    content:'';
    position:absolute;
    width:380px;
    height:380px;
    right:-170px;
    top:-180px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(136,112,255,.12),rgba(136,112,255,0) 68%);
    pointer-events:none;
}
.ev4-landing .ev4-service-directions-head{
    position:relative;
    z-index:1;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:28px;
    margin-bottom:32px;
}
.ev4-landing .ev4-service-directions-head h2{
    margin:0;
    max-width:760px;
    color:var(--ev4-dark);
    font-size:clamp(36px,3.6vw,52px);
    line-height:1.04;
    letter-spacing:-.045em;
}
.ev4-landing .ev4-service-directions-count{
    display:inline-flex;
    align-items:center;
    gap:9px;
    flex:0 0 auto;
    padding:11px 15px;
    border:1px solid rgba(136,112,255,.18);
    border-radius:999px;
    background:rgba(255,255,255,.78);
    color:var(--ev4-accent);
    font-size:13px;
    line-height:1;
    font-weight:900;
    box-shadow:0 10px 28px rgba(54,39,104,.05);
    backdrop-filter:blur(10px);
}
.ev4-landing .ev4-service-directions-count:before{
    content:'';
    width:8px;
    height:8px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--ev4-accent-2),var(--ev4-accent));
    box-shadow:0 0 0 5px rgba(136,112,255,.1);
}
.ev4-landing .ev4-service-directions-grid{
    position:relative;
    z-index:1;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
}
.ev4-landing .ev4-service-direction-card{
    min-width:0;
    min-height:250px;
    display:flex;
    flex-direction:column;
    padding:24px 25px 23px;
    border:1px solid rgba(79,61,139,.12);
    border-radius:26px;
    background:rgba(255,255,255,.96);
    color:var(--ev4-dark);
    text-decoration:none;
    box-shadow:0 18px 46px rgba(31,23,58,.055);
    transition:transform .24s ease,border-color .24s ease,box-shadow .24s ease;
}
.ev4-landing .ev4-service-direction-card:hover{
    transform:translateY(-5px);
    border-color:rgba(136,112,255,.3);
    box-shadow:0 26px 62px rgba(64,46,121,.11);
}
.ev4-landing .ev4-service-direction-card__top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin-bottom:22px;
}
.ev4-landing .ev4-service-direction-card__icon{
    width:50px;
    height:50px;
    flex:0 0 50px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    background:linear-gradient(145deg,#f4efff,#ece5ff);
    color:var(--ev4-accent);
    font-size:19px;
    box-shadow:inset 0 0 0 1px rgba(136,112,255,.08);
}
.ev4-landing .ev4-service-direction-card__number{
    color:#a0a8b8;
    font-size:13px;
    font-weight:900;
    letter-spacing:.08em;
}
.ev4-landing .ev4-service-direction-card h3{
    margin:0 0 10px;
    color:var(--ev4-dark);
    font-size:21px;
    line-height:1.22;
    letter-spacing:-.025em;
}
.ev4-landing .ev4-service-direction-card p{
    margin:0 0 22px;
    color:var(--ev4-muted);
    font-size:14px;
    line-height:1.55;
}
.ev4-landing .ev4-service-direction-card__link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:auto;
    color:var(--ev4-accent);
    font-size:13px;
    font-weight:900;
}
.ev4-landing .ev4-service-direction-card__link i{
    font-size:11px;
    transition:transform .2s ease;
}
.ev4-landing .ev4-service-direction-card:hover .ev4-service-direction-card__link i{
    transform:translateX(4px);
}
@media(max-width:1020px){
    .ev4-landing .ev4-service-directions-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}
@media(max-width:680px){
    .ev4-landing .ev4-service-directions-section{
        padding:54px 0 58px;
    }
    .ev4-landing .ev4-service-directions-head{
        align-items:flex-start;
        flex-direction:column;
        gap:16px;
        margin-bottom:24px;
    }
    .ev4-landing .ev4-service-directions-head h2{
        font-size:34px;
    }
    .ev4-landing .ev4-service-directions-grid{
        grid-template-columns:1fr;
        gap:13px;
    }
    .ev4-landing .ev4-service-direction-card{
        min-height:0;
        padding:21px;
        border-radius:22px;
    }
    .ev4-landing .ev4-service-direction-card__top{
        margin-bottom:17px;
    }
    .ev4-landing .ev4-service-direction-card h3{
        font-size:20px;
    }
}


/* Mobile: hide the hero showreel block */
@media (max-width: 768px){
    .ev4-landing .ev4-hero__visual{
        display:none!important;
    }
    .ev4-landing .ev4-hero__grid{
        gap:0;
    }
}


/* Mobile specialist block width alignment */
@media(max-width:620px){
    .ev4-landing .ev4-specialist-section{
        padding:38px 0;
    }
    .ev4-landing .ev4-specialist-section > .container{
        padding-left:8px;
        padding-right:8px;
        overflow:visible;
    }
    .ev4-landing .ev4-expert-layout{
        width:100%;
        max-width:none;
        padding:6px;
        gap:14px;
        border-radius:24px;
    }
    .ev4-landing .ev4-expert-card{
        width:100%;
        max-width:none;
        padding:8px;
        border-radius:22px;
    }
    .ev4-landing .ev4-expert-card__media{
        width:100%;
        border-radius:16px;
    }
    .ev4-landing .ev4-expert-main{
        width:100%;
        padding:6px 6px 10px;
    }
}
@media(max-width:390px){
    .ev4-landing .ev4-specialist-section > .container{
        padding-left:5px;
        padding-right:5px;
    }
    .ev4-landing .ev4-expert-layout{
        padding:5px;
    }
    .ev4-landing .ev4-expert-card{
        padding:7px;
    }
}


/* Hide project and experience counters on mobile */
@media(max-width:520px){
    .ev4-landing .ev4-expert-proof-card{
        display:none!important;
    }
    .ev4-landing .ev4-expert-proof-grid{
        grid-template-columns:1fr!important;
        gap:0!important;
    }
    .ev4-landing .ev4-expert-kwork{
        grid-column:1!important;
    }
}


/* === Vigrama 1.5.3: unified specialist proof card === */
.ev4-landing .ev4-expert-proof-grid{
    grid-template-columns:minmax(150px,.72fr) minmax(150px,.72fr) minmax(310px,1.56fr);
    gap:0;
    overflow:hidden;
    border:1px solid rgba(83,65,145,.12);
    border-radius:26px;
    background:#fff;
    box-shadow:0 12px 30px rgba(31,23,58,.05);
}
.ev4-landing .ev4-expert-proof-card,
.ev4-landing .ev4-expert-kwork{
    min-height:118px;
    border:0;
    border-radius:0;
    box-shadow:none;
}
.ev4-landing .ev4-expert-proof-card + .ev4-expert-proof-card{
    border-left:1px solid rgba(83,65,145,.10);
}
.ev4-landing .ev4-expert-kwork{
    border-left:1px solid rgba(255,255,255,.10);
}
.ev4-landing .ev4-expert-kwork:hover{
    transform:none;
    box-shadow:none;
}
@media(max-width:1080px){
    .ev4-landing .ev4-expert-proof-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
    .ev4-landing .ev4-expert-kwork{
        grid-column:1 / -1;
        border-top:1px solid rgba(255,255,255,.10);
        border-left:0;
    }
}
@media(max-width:520px){
    .ev4-landing .ev4-expert-proof-grid{
        grid-template-columns:1fr!important;
        border-radius:22px;
    }
    .ev4-landing .ev4-expert-kwork{
        grid-column:1!important;
        border-top:0;
    }
}

/* === Vigrama specialist unified v2: light trust layout === */
.ev4-landing .ev4-specialist-v2{
    padding:72px 0;
    background:
        radial-gradient(circle at 7% 15%,rgba(136,112,255,.10),transparent 28%),
        radial-gradient(circle at 92% 85%,rgba(134,87,219,.08),transparent 28%),
        #f8f7fc;
}
.ev4-landing .ev4-spv2-shell{
    padding:36px;
    border:1px solid rgba(91,73,138,.10);
    border-radius:34px;
    background:rgba(255,255,255,.94);
    box-shadow:0 24px 68px rgba(45,31,84,.11);
}
.ev4-landing .ev4-spv2-header{
    display:grid;
    grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);
    gap:54px;
    align-items:end;
    padding-bottom:30px;
    margin-bottom:26px;
    border-bottom:1px solid #ebe7f2;
}
.ev4-landing .ev4-spv2-header__title h1{
    max-width:760px;
    margin:12px 0 0;
    color:#15131d;
    font-size:clamp(2.65rem,3.3vw,3.4rem);
    line-height:1.02;
    letter-spacing:-.055em;
}
.ev4-landing .ev4-spv2-header__lead{
    margin:0 0 6px;
    padding-left:24px;
    border-left:3px solid #8462ff;
    color:#626b83;
    font-size:1.18rem;
    line-height:1.6;
}
.ev4-landing .ev4-spv2-grid{
    display:grid;
    grid-template-columns:330px minmax(0,1fr);
    gap:30px;
    align-items:stretch;
}
.ev4-landing .ev4-spv2-profile{
    display:flex;
    min-width:0;
    flex-direction:column;
    overflow:hidden;
    border-radius:28px;
    background:#241b39;
    color:#fff;
    box-shadow:0 18px 44px rgba(34,24,58,.18);
}
.ev4-landing .ev4-spv2-profile__media{
    position:relative;
    min-height:500px;
    flex:1;
    overflow:hidden;
}
.ev4-landing .ev4-spv2-profile__media:after{
    content:"";
    position:absolute;
    inset:auto 0 0;
    height:42%;
    background:linear-gradient(to bottom,transparent,rgba(27,18,47,.94));
    pointer-events:none;
}
.ev4-landing .ev4-spv2-profile__image{
    width:100%;
    height:100%;
    min-height:500px;
    display:block;
    object-fit:cover;
    object-position:center;
}
.ev4-landing .ev4-spv2-profile__status{
    position:absolute;
    z-index:2;
    top:18px;
    left:18px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 13px;
    border:1px solid rgba(255,255,255,.22);
    border-radius:999px;
    background:rgba(21,17,31,.74);
    color:#fff;
    font-size:.84rem;
    font-weight:800;
    backdrop-filter:blur(8px);
}
.ev4-landing .ev4-spv2-profile__status i{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#4fd184;
    box-shadow:0 0 0 5px rgba(79,209,132,.16);
}
.ev4-landing .ev4-spv2-profile__identity{
    position:absolute;
    z-index:2;
    left:22px;
    right:22px;
    bottom:20px;
    display:flex;
    flex-direction:column;
    gap:3px;
}
.ev4-landing .ev4-spv2-profile__identity strong{
    color:#fff;
    font-size:2rem;
    line-height:1.05;
}
.ev4-landing .ev4-spv2-profile__identity span{
    color:#d8d0e6;
    font-size:1rem;
    font-weight:700;
}
.ev4-landing .ev4-spv2-profile__location{
    display:flex;
    align-items:center;
    gap:9px;
    padding:17px 22px 19px;
    border-top:1px solid rgba(255,255,255,.10);
    color:#d8d0e6;
    font-size:.9rem;
}
.ev4-landing .ev4-spv2-content{
    display:flex;
    min-width:0;
    flex-direction:column;
    gap:18px;
}
.ev4-landing .ev4-spv2-description{
    margin:2px 0 0;
    color:#626b83;
    font-size:1.08rem;
    line-height:1.62;
}
.ev4-landing .ev4-spv2-description strong{color:#18151f}
.ev4-landing .ev4-spv2-trust{
    overflow:hidden;
    border:1px solid #e7e1f0;
    border-radius:24px;
    background:#fff;
    box-shadow:0 14px 34px rgba(45,31,84,.075);
}
.ev4-landing .ev4-spv2-trust__top{
    display:grid;
    grid-template-columns:auto minmax(0,1fr) auto;
    gap:14px;
    align-items:center;
    padding:19px 20px 17px;
}
.ev4-landing .ev4-spv2-trust__mark{
    display:grid;
    width:44px;
    height:44px;
    place-items:center;
    border-radius:13px;
    background:linear-gradient(135deg,#7653ff,#8f59e8);
    color:#fff;
    font-size:1.15rem;
    font-weight:900;
    box-shadow:0 9px 22px rgba(118,83,255,.26);
}
.ev4-landing .ev4-spv2-trust__rating small{
    display:block;
    margin-bottom:3px;
    color:#6e6680;
    font-size:.72rem;
    font-weight:900;
    letter-spacing:.045em;
    text-transform:uppercase;
}
.ev4-landing .ev4-spv2-trust__rating>div{
    display:flex;
    align-items:baseline;
    gap:7px;
    flex-wrap:wrap;
}
.ev4-landing .ev4-spv2-trust__rating strong{
    color:#1c1727;
    font-size:1.9rem;
    line-height:1;
}
.ev4-landing .ev4-spv2-trust__rating span{
    color:#7653ff;
    font-size:1.42rem;
    line-height:1;
}
.ev4-landing .ev4-spv2-trust__rating em{
    color:#777084;
    font-size:.82rem;
    font-style:normal;
    font-weight:700;
}
.ev4-landing .ev4-spv2-trust__link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    min-height:42px;
    padding:0 14px;
    border:1px solid #ded4ed;
    border-radius:13px;
    background:#faf8fd;
    color:#6f50e7;
    font-size:.82rem;
    font-weight:900;
    transition:.2s ease;
}
.ev4-landing .ev4-spv2-trust__link:hover{
    transform:translateY(-1px);
    background:#f1ebfb;
}
.ev4-landing .ev4-spv2-trust__link b{font-size:1.08rem}
.ev4-landing .ev4-spv2-trust__metrics{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    border-top:1px solid #ece7f2;
    background:#fbf9fd;
}
.ev4-landing .ev4-spv2-trust__metrics>div{
    min-width:0;
    padding:14px 17px 15px;
    border-left:1px solid #ece7f2;
}
.ev4-landing .ev4-spv2-trust__metrics>div:first-child{border-left:0}
.ev4-landing .ev4-spv2-trust__metrics strong{
    display:block;
    margin-bottom:4px;
    color:#201a2b;
    font-size:1.55rem;
    line-height:1;
}
.ev4-landing .ev4-spv2-trust__metrics span{
    display:block;
    color:#6d6678;
    font-size:.68rem;
    font-weight:800;
    line-height:1.25;
    text-transform:uppercase;
}
.ev4-landing .ev4-spv2-tools{
    display:flex;
    align-items:center;
    gap:10px 14px;
    flex-wrap:wrap;
    padding:0 3px;
    color:#7454e8;
    font-size:.9rem;
    font-weight:800;
}
.ev4-landing .ev4-spv2-tools strong{
    color:#555d72;
    font-size:.78rem;
    letter-spacing:.04em;
    text-transform:uppercase;
}
.ev4-landing .ev4-spv2-tools span:not(:last-child):after{
    content:"·";
    margin-left:14px;
    color:#c5bdd4;
}
.ev4-landing .ev4-spv2-contact{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(360px,.95fr);
    gap:24px;
    align-items:center;
    margin-top:auto;
    padding:18px;
    border:1px solid #e7e0f1;
    border-radius:22px;
    background:linear-gradient(135deg,#fcfbff,#f7f3fd);
}
.ev4-landing .ev4-spv2-contact__copy small{
    display:block;
    margin-bottom:5px;
    color:#7653ff;
    font-size:.73rem;
    font-weight:900;
    letter-spacing:.05em;
    text-transform:uppercase;
}
.ev4-landing .ev4-spv2-contact__copy strong{
    display:block;
    color:#1a1721;
    font-size:1.2rem;
    line-height:1.25;
}
.ev4-landing .ev4-spv2-contact__copy p{
    margin:7px 0 0;
    color:#737b90;
    font-size:.82rem;
    line-height:1.45;
}
.ev4-landing .ev4-spv2-contact__actions{
    display:grid;
    gap:8px;
}
.ev4-landing .ev4-spv2-cta{
    display:flex;
    min-height:50px;
    align-items:center;
    justify-content:center;
    padding:0 20px;
    border-radius:14px;
    background:linear-gradient(135deg,#7653ff,#9355df);
    color:#fff !important;
    font-weight:900;
    box-shadow:0 12px 26px rgba(118,83,255,.22);
    transition:.2s ease;
}
.ev4-landing .ev4-spv2-cta:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 30px rgba(118,83,255,.28);
}
.ev4-landing .ev4-spv2-contact__links{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:8px;
}
.ev4-landing .ev4-spv2-contact__links a{
    display:flex;
    min-height:40px;
    align-items:center;
    justify-content:center;
    border:1px solid #e4dced;
    border-radius:12px;
    background:#fff;
    color:#667087;
    font-size:.78rem;
    font-weight:900;
    transition:.2s ease;
}
.ev4-landing .ev4-spv2-contact__links a:hover{
    color:#6f50e7;
    border-color:#cfc0e5;
    background:#faf8fd;
}
#ev4-form-title{scroll-margin-top:110px}

@media (max-width:1100px){
    .ev4-landing .ev4-spv2-header{grid-template-columns:1fr;gap:20px;align-items:start}
    .ev4-landing .ev4-spv2-header__lead{max-width:760px}
    .ev4-landing .ev4-spv2-grid{grid-template-columns:280px minmax(0,1fr)}
    .ev4-landing .ev4-spv2-profile__media,
    .ev4-landing .ev4-spv2-profile__image{min-height:470px}
    .ev4-landing .ev4-spv2-contact{grid-template-columns:1fr}
}
@media (max-width:820px){
    .ev4-landing .ev4-specialist-v2{padding:54px 0}
    .ev4-landing .ev4-spv2-shell{padding:24px;border-radius:28px}
    .ev4-landing .ev4-spv2-header{padding-bottom:24px;margin-bottom:22px}
    .ev4-landing .ev4-spv2-header__title h1{font-size:clamp(2.15rem,8vw,3.5rem)}
    .ev4-landing .ev4-spv2-grid{grid-template-columns:1fr}
    .ev4-landing .ev4-spv2-profile{display:grid;grid-template-columns:220px minmax(0,1fr);align-items:stretch}
    .ev4-landing .ev4-spv2-profile__media,
    .ev4-landing .ev4-spv2-profile__image{min-height:310px}
    .ev4-landing .ev4-spv2-profile__location{align-items:center}
}
@media (max-width:600px){
    .ev4-landing .ev4-specialist-v2{padding:34px 0}
    .ev4-landing .ev4-specialist-v2>.container{padding-left:14px;padding-right:14px}
    .ev4-landing .ev4-spv2-shell{padding:16px;border-radius:24px}
    .ev4-landing .ev4-spv2-header{gap:15px;padding-bottom:20px;margin-bottom:18px}
    .ev4-landing .ev4-spv2-header__title h1{margin-top:9px;font-size:2.25rem;line-height:1.01;letter-spacing:-.045em}
    .ev4-landing .ev4-spv2-header__lead{padding-left:15px;font-size:1rem;line-height:1.55}
    .ev4-landing .ev4-spv2-profile{display:flex;border-radius:22px}
    .ev4-landing .ev4-spv2-profile__media,
    .ev4-landing .ev4-spv2-profile__image{min-height:420px}
    .ev4-landing .ev4-spv2-profile__identity strong{font-size:1.75rem}
    .ev4-landing .ev4-spv2-profile__location{padding:15px 18px;font-size:.82rem}
    .ev4-landing .ev4-spv2-content{gap:15px}
    .ev4-landing .ev4-spv2-description{font-size:1rem;line-height:1.58}
    .ev4-landing .ev4-spv2-trust{border-radius:20px}
    .ev4-landing .ev4-spv2-trust__top{position:relative;grid-template-columns:auto 1fr;padding:16px 66px 15px 15px}
    .ev4-landing .ev4-spv2-trust__mark{width:40px;height:40px;border-radius:12px;font-size:1rem}
    .ev4-landing .ev4-spv2-trust__rating small{font-size:.62rem}
    .ev4-landing .ev4-spv2-trust__rating strong{font-size:1.62rem}
    .ev4-landing .ev4-spv2-trust__rating span{font-size:1.18rem}
    .ev4-landing .ev4-spv2-trust__rating em{width:100%;font-size:.7rem}
    .ev4-landing .ev4-spv2-trust__link{position:absolute;top:15px;right:14px;width:42px;min-height:42px;padding:0;border-radius:13px}
    .ev4-landing .ev4-spv2-trust__link span{display:none}
    .ev4-landing .ev4-spv2-trust__metrics{grid-template-columns:repeat(2,minmax(0,1fr))}
    .ev4-landing .ev4-spv2-trust__metrics>div{padding:13px 14px;border-top:1px solid #ece7f2}
    .ev4-landing .ev4-spv2-trust__metrics>div:nth-child(odd){border-left:0}
    .ev4-landing .ev4-spv2-trust__metrics>div:nth-child(-n+2){border-top:0}
    .ev4-landing .ev4-spv2-trust__metrics strong{font-size:1.4rem}
    .ev4-landing .ev4-spv2-trust__metrics span{font-size:.62rem}
    .ev4-landing .ev4-spv2-tools{gap:8px 10px;font-size:.8rem}
    .ev4-landing .ev4-spv2-tools span:not(:last-child):after{margin-left:10px}
    .ev4-landing .ev4-spv2-contact{gap:15px;padding:15px;border-radius:19px}
    .ev4-landing .ev4-spv2-contact__copy strong{font-size:1.08rem}
    .ev4-landing .ev4-spv2-contact__links{grid-template-columns:repeat(2,minmax(0,1fr))}
    .ev4-landing .ev4-spv2-cta{min-height:52px}
    #ev4-form-title{scroll-margin-top:92px}
}

/* Desktop vertical rhythm correction for unified specialist block */
@media (min-width:821px){
    .ev4-landing .ev4-spv2-grid{align-items:start}
    .ev4-landing .ev4-spv2-profile{align-self:start}
    .ev4-landing .ev4-spv2-profile__media{
        min-height:0;
        aspect-ratio:4/5;
    }
    .ev4-landing .ev4-spv2-profile__image{
        min-height:0;
        aspect-ratio:4/5;
    }
    .ev4-landing .ev4-spv2-contact{margin-top:4px}
}


/* === First specialist block: fixed-header offset and controlled title scale === */
.ev4-landing .ev4-specialist-v2--first{
    padding-top:118px;
}
.ev4-landing .ev4-spv2-header__title h1{
    max-width:760px;
    margin:12px 0 0;
    font-size:clamp(42px,3.3vw,54px);
    line-height:1.02;
    letter-spacing:-.045em;
    text-wrap:balance;
}
@media (max-width:1100px){
    .ev4-landing .ev4-specialist-v2--first{padding-top:104px;}
    .ev4-landing .ev4-spv2-header__title h1{font-size:clamp(40px,5vw,50px);}
}
@media (max-width:820px){
    .ev4-landing .ev4-specialist-v2--first{padding-top:96px;}
    .ev4-landing .ev4-spv2-header__title h1{font-size:clamp(36px,7vw,44px);line-height:1.04;}
}
@media (max-width:600px){
    .ev4-landing .ev4-specialist-v2--first{padding-top:88px;}
    .ev4-landing .ev4-spv2-header__title h1{font-size:32px;line-height:1.06;letter-spacing:-.035em;}
}


/* === Active Direct 4.0: specialist is the real first screen === */
.ev4-landing .ev4-specialist-v2--first{
    padding-top:104px;
}
.ev4-landing .ev4-specialist-v2--first .ev4-spv2-header__title h1{
    max-width:720px;
    margin:10px 0 0;
    font-size:clamp(38px,3vw,48px);
    line-height:1.04;
    letter-spacing:-.04em;
    text-wrap:balance;
}
.ev4-landing .ev4-specialist-v2--first .ev4-spv2-header__lead{
    font-size:1.08rem;
    line-height:1.55;
}
@media (max-width:1100px){
    .ev4-landing .ev4-specialist-v2--first{padding-top:94px;}
    .ev4-landing .ev4-specialist-v2--first .ev4-spv2-header__title h1{font-size:42px;}
}
@media (max-width:820px){
    .ev4-landing .ev4-specialist-v2--first{padding-top:88px;}
    .ev4-landing .ev4-specialist-v2--first .ev4-spv2-header__title h1{font-size:36px;line-height:1.06;}
}
@media (max-width:600px){
    .ev4-landing .ev4-specialist-v2--first{padding-top:80px;}
    .ev4-landing .ev4-specialist-v2--first .ev4-spv2-header__title h1{font-size:30px;line-height:1.08;letter-spacing:-.03em;}
    .ev4-landing .ev4-specialist-v2--first .ev4-spv2-header__lead{font-size:1rem;}
}

/* === Mobile title containment + service cards without "Подробнее" === */
.ev4-landing .ev4-service-direction-card__link{
    display:none !important;
}
@media (max-width:600px){
    .ev4-landing .ev4-specialist-v2--first .ev4-spv2-header__title,
    .ev4-landing .ev4-specialist-v2--first .ev4-spv2-header__title h1{
        min-width:0;
        max-width:100%;
    }
    .ev4-landing .ev4-specialist-v2--first .ev4-spv2-header__title h1{
        font-size:clamp(24px,7vw,28px) !important;
        line-height:1.08 !important;
        letter-spacing:-.025em !important;
        overflow-wrap:break-word;
        word-break:normal;
        hyphens:auto;
    }
}
@media (max-width:360px){
    .ev4-landing .ev4-specialist-v2--first .ev4-spv2-header__title h1{
        font-size:23px !important;
    }
}
.service-card .service-btn{
    display:inline-block !important;
}

/* === Unified page background for the first specialist block === */
.ev4-landing .ev4-specialist-v2--first{
    background:#fff !important;
}

/* === Vigrama specialist trust block compact layout === */
.ev4-landing .ev4-spv2-trust{
    border-radius:22px;
    border-color:#e5def0;
    background:#fff;
    box-shadow:0 16px 36px rgba(50,35,85,.07);
}
.ev4-landing .ev4-spv2-trust__top{
    display:grid;
    grid-template-columns:52px minmax(0,1fr) auto;
    align-items:center;
    gap:16px;
    padding:16px 18px;
    min-height:84px;
}
.ev4-landing .ev4-spv2-trust__mark{
    width:52px;
    height:52px;
    border-radius:16px;
    font-size:1.22rem;
    box-shadow:0 12px 26px rgba(118,83,255,.22);
}
.ev4-landing .ev4-spv2-trust__rating{
    min-width:0;
    display:grid;
    gap:5px;
}
.ev4-landing .ev4-spv2-trust__rating small{
    margin:0;
    color:#6b6578;
    font-size:.74rem;
    line-height:1.15;
    letter-spacing:.055em;
}
.ev4-landing .ev4-spv2-trust__rating>div{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
    line-height:1;
}
.ev4-landing .ev4-spv2-trust__rating strong{
    font-size:2.06rem;
    letter-spacing:-.04em;
}
.ev4-landing .ev4-spv2-trust__rating span{
    font-size:1.38rem;
    transform:translateY(-1px);
}
.ev4-landing .ev4-spv2-trust__rating em{
    color:#746d82;
    font-size:.9rem;
    font-weight:800;
    line-height:1.2;
}
.ev4-landing .ev4-spv2-trust__link{
    min-height:48px;
    padding:0 18px;
    border-radius:16px;
    background:#fbf9fe;
    font-size:.86rem;
    white-space:nowrap;
}
.ev4-landing .ev4-spv2-trust__metrics{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    background:#fbf9fd;
    border-top:1px solid #ebe5f3;
}
.ev4-landing .ev4-spv2-trust__metrics>div{
    min-height:82px;
    padding:17px 20px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    border-left:1px solid #ebe5f3;
}
.ev4-landing .ev4-spv2-trust__metrics>div:first-child{border-left:0}
.ev4-landing .ev4-spv2-trust__metrics strong{
    margin:0 0 6px;
    font-size:1.82rem;
    letter-spacing:-.035em;
}
.ev4-landing .ev4-spv2-trust__metrics span{
    max-width:150px;
    font-size:.72rem;
    line-height:1.18;
    letter-spacing:.015em;
}

@media (max-width:820px){
    .ev4-landing .ev4-spv2-trust__top{
        grid-template-columns:48px minmax(0,1fr) auto;
        gap:13px;
        padding:15px;
        min-height:auto;
    }
    .ev4-landing .ev4-spv2-trust__mark{
        width:48px;
        height:48px;
        border-radius:15px;
    }
    .ev4-landing .ev4-spv2-trust__rating strong{font-size:1.82rem}
    .ev4-landing .ev4-spv2-trust__rating em{font-size:.82rem}
    .ev4-landing .ev4-spv2-trust__metrics{grid-template-columns:repeat(2,minmax(0,1fr))}
    .ev4-landing .ev4-spv2-trust__metrics>div{
        min-height:78px;
        padding:15px 17px;
        border-top:1px solid #ebe5f3;
    }
    .ev4-landing .ev4-spv2-trust__metrics>div:nth-child(odd){border-left:0}
    .ev4-landing .ev4-spv2-trust__metrics>div:nth-child(-n+2){border-top:0}
}
@media (max-width:420px){
    .ev4-landing .ev4-spv2-trust{border-radius:20px}
    .ev4-landing .ev4-spv2-trust__top{
        position:relative;
        grid-template-columns:42px minmax(0,1fr) 42px;
        gap:11px;
        padding:14px;
    }
    .ev4-landing .ev4-spv2-trust__mark{
        width:42px;
        height:42px;
        border-radius:13px;
        font-size:1rem;
    }
    .ev4-landing .ev4-spv2-trust__rating small{
        font-size:.62rem;
        line-height:1.22;
    }
    .ev4-landing .ev4-spv2-trust__rating>div{gap:6px}
    .ev4-landing .ev4-spv2-trust__rating strong{font-size:1.58rem}
    .ev4-landing .ev4-spv2-trust__rating span{font-size:1.05rem}
    .ev4-landing .ev4-spv2-trust__rating em{
        width:100%;
        font-size:.7rem;
    }
    .ev4-landing .ev4-spv2-trust__link{
        width:42px;
        min-height:42px;
        padding:0;
        border-radius:14px;
    }
    .ev4-landing .ev4-spv2-trust__link span{display:none}
    .ev4-landing .ev4-spv2-trust__metrics>div{
        min-height:74px;
        padding:14px 13px;
    }
    .ev4-landing .ev4-spv2-trust__metrics strong{font-size:1.44rem;margin-bottom:5px}
    .ev4-landing .ev4-spv2-trust__metrics span{font-size:.62rem;line-height:1.2}
}

/* === Vigrama 1.4.9: compact Kwork trust block === */
.ev4-landing .ev4-spv2-trust{
    border-radius:26px;
}
.ev4-landing .ev4-spv2-trust__top{
    grid-template-columns:56px minmax(0,1fr) auto;
    gap:14px;
    padding:14px 18px;
    min-height:auto;
}
.ev4-landing .ev4-spv2-trust__mark{
    width:56px;
    height:56px;
    border-radius:16px;
    font-size:1.55rem;
}
.ev4-landing .ev4-spv2-trust__rating small{
    margin:0 0 4px;
    font-size:.78rem;
    line-height:1.15;
    letter-spacing:.02em;
}
.ev4-landing .ev4-spv2-trust__rating>div{
    gap:8px;
    align-items:flex-end;
}
.ev4-landing .ev4-spv2-trust__rating strong{
    font-size:1.95rem;
    line-height:.95;
}
.ev4-landing .ev4-spv2-trust__rating span{
    font-size:1.18rem;
    line-height:1;
}
.ev4-landing .ev4-spv2-trust__rating em{
    font-size:.9rem;
    line-height:1.1;
}
.ev4-landing .ev4-spv2-trust__link{
    min-height:46px;
    padding:0 18px;
    border-radius:16px;
    font-size:1rem;
}
.ev4-landing .ev4-spv2-trust__metrics>div{
    min-height:86px;
    padding:15px 22px 14px;
}
.ev4-landing .ev4-spv2-trust__metrics strong{
    margin:0 0 4px;
    font-size:1.7rem;
    line-height:1;
}
.ev4-landing .ev4-spv2-trust__metrics span{
    max-width:118px;
    font-size:.68rem;
    line-height:1.15;
}
@media (max-width:820px){
    .ev4-landing .ev4-spv2-trust{
        border-radius:22px;
    }
    .ev4-landing .ev4-spv2-trust__top{
        grid-template-columns:46px minmax(0,1fr) auto;
        gap:12px;
        padding:13px 14px;
    }
    .ev4-landing .ev4-spv2-trust__mark{
        width:46px;
        height:46px;
        border-radius:14px;
        font-size:1.25rem;
    }
    .ev4-landing .ev4-spv2-trust__rating small{
        font-size:.68rem;
        margin-bottom:3px;
    }
    .ev4-landing .ev4-spv2-trust__rating strong{
        font-size:1.72rem;
    }
    .ev4-landing .ev4-spv2-trust__rating span{
        font-size:1rem;
    }
    .ev4-landing .ev4-spv2-trust__rating em{
        font-size:.8rem;
    }
    .ev4-landing .ev4-spv2-trust__link{
        min-height:42px;
        padding:0 14px;
        border-radius:14px;
        font-size:.95rem;
    }
    .ev4-landing .ev4-spv2-trust__metrics>div{
        min-height:72px;
        padding:13px 15px;
    }
    .ev4-landing .ev4-spv2-trust__metrics strong{
        font-size:1.45rem;
    }
    .ev4-landing .ev4-spv2-trust__metrics span{
        max-width:100px;
        font-size:.62rem;
    }
}
@media (max-width:420px){
    .ev4-landing .ev4-spv2-trust{
        border-radius:20px;
    }
    .ev4-landing .ev4-spv2-trust__top{
        grid-template-columns:40px minmax(0,1fr) 40px;
        gap:10px;
        padding:12px;
    }
    .ev4-landing .ev4-spv2-trust__mark{
        width:40px;
        height:40px;
        border-radius:12px;
        font-size:1rem;
    }
    .ev4-landing .ev4-spv2-trust__rating small{
        font-size:.58rem;
        margin-bottom:2px;
    }
    .ev4-landing .ev4-spv2-trust__rating>div{gap:5px}
    .ev4-landing .ev4-spv2-trust__rating strong{font-size:1.48rem}
    .ev4-landing .ev4-spv2-trust__rating span{font-size:1rem}
    .ev4-landing .ev4-spv2-trust__rating em{font-size:.68rem}
    .ev4-landing .ev4-spv2-trust__link{
        width:40px;
        min-height:40px;
        padding:0;
        border-radius:12px;
    }
    .ev4-landing .ev4-spv2-trust__metrics>div{
        min-height:66px;
        padding:11px 12px;
    }
    .ev4-landing .ev4-spv2-trust__metrics strong{
        margin-bottom:4px;
        font-size:1.28rem;
    }
    .ev4-landing .ev4-spv2-trust__metrics span{
        font-size:.58rem;
        line-height:1.12;
    }
}


/* === Vigrama 1.5.0: specialist contacts/programs wording === */
.ev4-landing .ev4-spv2-contact__title{
    display:flex;
    min-height:50px;
    align-items:center;
    justify-content:center;
    padding:0 20px;
    border:1px solid #ded4f1;
    border-radius:14px;
    background:linear-gradient(135deg,#ffffff,#faf7ff);
    color:#7653ff;
    font-weight:900;
    font-size:1rem;
    letter-spacing:.01em;
}
.ev4-landing .ev4-spv2-tools strong{
    max-width:100%;
}
@media (max-width:600px){
    .ev4-landing .ev4-spv2-contact__title{
        min-height:46px;
        font-size:.95rem;
    }
    .ev4-landing .ev4-spv2-tools{
        align-items:flex-start;
    }
    .ev4-landing .ev4-spv2-tools strong{
        display:block;
        flex-basis:100%;
        margin-bottom:2px;
        line-height:1.25;
    }
}

/* === Vigrama 1.5.0: mobile contact dock starts from second block === */
@media(max-width:768px){
    .ev4-mobile-contact-dock{
        opacity:0;
        pointer-events:none;
        transform:translateY(18px);
        transition:opacity .22s ease, transform .22s ease;
    }
    .ev4-mobile-contact-dock.is-visible{
        opacity:1;
        pointer-events:auto;
        transform:translateY(0);
    }
}

/* === Vigrama 1.5.1: mobile contact dock label === */
@media(max-width:768px){
    .ev4-mobile-contact-dock{
        padding:9px 9px 8px;
        border-radius:22px;
    }
    .ev4-mobile-contact-dock__title{
        margin:0 0 7px;
        color:#ffffff;
        font-size:12px;
        line-height:1;
        font-weight:900;
        letter-spacing:.08em;
        text-transform:uppercase;
        text-align:center;
        opacity:.92;
    }
    .ev4-mobile-contact-dock__actions{
        gap:7px;
    }
    .edge-video-landing{
        padding-bottom:106px;
    }
}
@media(max-width:390px){
    .ev4-mobile-contact-dock{
        padding:8px 8px 7px;
        border-radius:20px;
    }
    .ev4-mobile-contact-dock__title{
        margin-bottom:6px;
        font-size:11px;
        letter-spacing:.07em;
    }
    .edge-video-landing{
        padding-bottom:102px;
    }
}

/* === Vigrama 1.5.1: hide specialist description on mobile === */
@media (max-width: 768px){
    .ev4-landing .ev4-spv2-description{
        display:none !important;
    }
}

/* === Vigrama 1.5.2: colored contact buttons in specialist block === */
.ev4-landing .ev4-spv2-contact__links .ev4-spv2-contact__link{
    color:#fff !important;
    border-color:transparent;
    box-shadow:0 10px 20px rgba(30,24,50,.10);
}
.ev4-landing .ev4-spv2-contact__links .ev4-spv2-contact__link:hover{
    color:#fff !important;
    transform:translateY(-2px);
    filter:saturate(1.05) brightness(1.02);
}
.ev4-landing .ev4-spv2-contact__link--telegram{
    background:linear-gradient(135deg,#2AABEE,#1688D3) !important;
}
.ev4-landing .ev4-spv2-contact__link--whatsapp{
    background:linear-gradient(135deg,#25D366,#128C7E) !important;
}
.ev4-landing .ev4-spv2-contact__link--max{
    background:linear-gradient(135deg,#35C8F4,#169ED8) !important;
}
.ev4-landing .ev4-spv2-contact__link--kwork{
    background:linear-gradient(135deg,#7653ff,#9355df) !important;
}
@media (max-width:768px){
    .ev4-landing .ev4-spv2-contact__links .ev4-spv2-contact__link{
        min-height:46px;
        font-size:.86rem;
    }
}

/* === Vigrama 1.5.4: colored buttons in mobile contact dock === */
@media(max-width:768px){
    .ev4-mobile-contact-dock__button--telegram{
        border-color:rgba(80,157,255,.36);
        background:linear-gradient(135deg,#37a8ff 0%,#2485e8 100%);
        color:#ffffff!important;
        box-shadow:0 8px 18px rgba(36,133,232,.24);
    }
    .ev4-mobile-contact-dock__button--whatsapp{
        border-color:rgba(37,211,102,.38);
        background:linear-gradient(135deg,#27d96d 0%,#16b75b 100%);
        color:#ffffff!important;
        box-shadow:0 8px 18px rgba(22,183,91,.24);
    }
    .ev4-mobile-contact-dock__button--telegram i,
    .ev4-mobile-contact-dock__button--whatsapp i,
    .ev4-mobile-contact-dock__button--telegram .messenger-logo,
    .ev4-mobile-contact-dock__button--whatsapp .messenger-logo{
        color:#ffffff!important;
        filter:none!important;
    }
    .ev4-mobile-contact-dock__button--telegram span,
    .ev4-mobile-contact-dock__button--whatsapp span{
        color:#ffffff!important;
    }
}

/* === Vigrama 1.5.5: white text for MAX in mobile dock === */
@media(max-width:768px){
    .ev4-mobile-contact-dock__button--max{
        color:#ffffff!important;
    }
    .ev4-mobile-contact-dock__button--max i,
    .ev4-mobile-contact-dock__button--max .messenger-logo,
    .ev4-mobile-contact-dock__button--max span{
        color:#ffffff!important;
        filter:none!important;
    }
}

/* === Vigrama 1.5.6: mobile headings size and portfolio title fix === */
@media (max-width: 768px){
    body .ev4-landing h1,
    body .ev4-landing h2,
    body .ev4-landing .ev4-spv2-title,
    body .ev4-landing .ev4-head h2,
    body .ev4-landing .section-title h2{
        font-size:28px!important;
        line-height:1.12!important;
        letter-spacing:-.035em!important;
        max-width:100%!important;
        overflow-wrap:break-word!important;
        word-break:normal!important;
    }
}


/* === Исполнители Vigrama Studio === */
.menu-item-performers a{white-space:nowrap;}
.performers-teaser{padding-top:70px!important;padding-bottom:70px!important;}
.performers-teaser-card{display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:28px;padding:34px;border-radius:28px;background:linear-gradient(135deg,rgba(136,112,255,.09),rgba(255,255,255,.98));box-shadow:0 18px 45px rgba(50,35,85,.09);border:1px solid rgba(136,112,255,.16);}
.performers-teaser-icon{width:74px;height:74px;border-radius:22px;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,var(--primary-light),var(--primary-dark));color:#fff;font-size:1.7rem;box-shadow:0 14px 30px rgba(134,87,219,.24);}
.performers-teaser-label{display:inline-block;margin-bottom:8px;color:var(--primary-dark);font-weight:800;font-size:.78rem;text-transform:uppercase;letter-spacing:.08em;}
.performers-teaser h2{margin:0 0 10px;font-size:2rem;}
.performers-teaser p{margin:0;max-width:720px;}
.performers-teaser-btn{white-space:nowrap;}
.performers-archive{background:#f7f8f8!important;padding-top:120px!important;}
.performers-page-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:28px;}
.performer-card{display:flex;flex-direction:column;background:#fff;border-radius:24px;overflow:hidden;box-shadow:var(--shadow);text-decoration:none;color:var(--text-dark);transition:all .3s ease;}
.performer-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-hover);}
.performer-card-photo{aspect-ratio:4/5;background:linear-gradient(135deg,rgba(136,112,255,.12),rgba(134,87,219,.08));display:flex;align-items:center;justify-content:center;color:var(--primary-dark);font-size:3rem;overflow:hidden;}
.performer-card-photo img{width:100%;height:100%;object-fit:cover;display:block;}
.performer-card-body{padding:24px;display:flex;flex-direction:column;gap:12px;flex:1;}
.performer-card-body h2,.performer-card-body h3{font-size:1.35rem;margin:0;}
.performer-meta{display:flex;flex-wrap:wrap;gap:8px;margin:0;}
.performer-meta span{display:inline-flex;align-items:center;gap:6px;padding:7px 10px;border-radius:999px;background:rgba(136,112,255,.1);color:var(--primary-dark);font-size:.82rem;font-weight:700;}
.performer-card-body p{margin:0;}
.performer-card-link{margin-top:auto;color:var(--primary-dark);font-weight:800;}
.performer-single-hero{background:linear-gradient(135deg,rgba(136,112,255,.08),rgba(255,255,255,.96));padding-top:125px!important;padding-bottom:70px!important;}
.performer-single-layout{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(280px,.75fr);gap:46px;align-items:center;}
.performer-single-content h1{font-size:clamp(2rem,4vw,3rem);margin-bottom:16px;}
.performer-single-photo{border-radius:28px;overflow:hidden;background:#fff;box-shadow:var(--shadow-hover);min-height:360px;display:flex;align-items:center;justify-content:center;color:var(--primary-dark);font-size:4rem;}
.performer-single-photo img{width:100%;height:100%;object-fit:cover;display:block;}
.performer-single-section{padding:70px 0;background:#fff;}
.performer-related-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;}
.performer-work-card,.performer-review-card{background:#fff;border-radius:22px;box-shadow:var(--shadow);overflow:hidden;border:1px solid rgba(134,87,219,.1);}
.performer-work-card img{width:100%;aspect-ratio:16/9;object-fit:cover;display:block;background:#f0f0f0;}
.performer-work-card-body,.performer-review-card{padding:22px;}
.performer-work-card h3,.performer-review-card h3{font-size:1.15rem;margin-bottom:8px;}
.performer-review-stars{color:#f5a623;margin-bottom:10px;letter-spacing:1px;}
.performer-empty-spacer{min-height:20px;}
@media (max-width:900px){.performers-teaser-card{grid-template-columns:1fr;text-align:left}.performer-single-layout{grid-template-columns:1fr}.performer-single-photo{min-height:300px}.performer-related-grid{grid-template-columns:1fr}}
@media (max-width:600px){.performers-teaser{padding-top:45px!important;padding-bottom:45px!important}.performers-teaser-card{padding:24px;border-radius:22px}.performers-teaser h2{font-size:1.55rem}.performers-teaser-btn{width:100%;text-align:center}.performers-page-grid{grid-template-columns:1fr}.performers-archive{padding-top:100px!important}.performer-single-hero{padding-top:105px!important}.performer-single-content .hero-btns{flex-direction:column}.performer-single-content .btn{width:100%;text-align:center}}

/* === Vigrama Studio fixes: unified performers, rating speed, service buttons === */
body.post-type-archive-performer,
body.single-performer{
    background: var(--text-dark);
}
body.post-type-archive-performer main,
body.single-performer main{
    background:#fff;
}
body.post-type-archive-performer footer,
body.single-performer footer{
    margin-bottom:-1px;
}
.performers-page-v2 .performers-archive-v2{
    padding-top:118px!important;
    padding-bottom:76px!important;
    background:
        radial-gradient(circle at 7% 15%,rgba(136,112,255,.10),transparent 28%),
        radial-gradient(circle at 92% 85%,rgba(134,87,219,.08),transparent 28%),
        #f8f7fc!important;
}
.performers-page-v2 .performers-archive-head{
    margin-bottom:28px;
}
.performers-page-v2 .performers-archive-head .ev4-spv2-header{
    margin-bottom:0;
    padding-bottom:0;
    border-bottom:0;
}
.performers-list-v2{
    display:grid;
    gap:28px;
}
.performers-page-v2 .performer-profile-card-v2{
    padding:28px;
}
.performers-page-v2 .performer-profile-card-v2__grid{
    grid-template-columns:300px minmax(0,1fr);
    align-items:stretch;
}
.performers-page-v2 .ev4-spv2-profile__media{
    display:block;
    color:#fff;
    text-decoration:none;
}
.performers-page-v2 .performer-photo-placeholder{
    display:flex;
    width:100%;
    height:100%;
    min-height:420px;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#2d2346,#171221);
    color:rgba(255,255,255,.76);
    font-size:4rem;
}
.performers-page-v2 .performer-card-actions-v2{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:auto;
}
.performers-page-v2 .performer-card-actions-v2 .btn{
    min-height:50px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}
.performers-page-v2 .performer-metrics-v2{
    grid-template-columns:repeat(3,minmax(0,1fr));
}
.performers-page-v2 .performer-metrics-v2 strong{
    font-size:1.18rem;
    line-height:1.15;
}
.performers-page-v2 .ev4-spv2-trust__rating strong{
    font-size:1.42rem;
    line-height:1.15;
}
.performers-page-v2 .ev4-spv2-description{
    font-size:1.12rem;
}
@media (max-width:1100px){
    .performers-page-v2 .performer-profile-card-v2__grid{
        grid-template-columns:280px minmax(0,1fr);
    }
}
@media (max-width:820px){
    .performers-page-v2 .performers-archive-v2{
        padding-top:94px!important;
        padding-bottom:54px!important;
    }
    .performers-page-v2 .performer-profile-card-v2{
        padding:20px;
        border-radius:28px;
    }
    .performers-page-v2 .performer-profile-card-v2__grid{
        grid-template-columns:1fr;
    }
    .performers-page-v2 .performer-photo-placeholder,
    .performers-page-v2 .ev4-spv2-profile__media,
    .performers-page-v2 .ev4-spv2-profile__image{
        min-height:380px;
    }
}
@media (max-width:600px){
    .performers-page-v2 .performers-archive-v2{
        padding-top:86px!important;
    }
    .performers-page-v2 .performers-archive-head,
    .performers-page-v2 .performer-profile-card-v2{
        padding:16px;
        border-radius:24px;
    }
    .performers-page-v2 .ev4-spv2-header__title h1{
        font-size:30px!important;
        line-height:1.08!important;
        letter-spacing:-.03em!important;
    }
    .performers-page-v2 .ev4-spv2-header__lead{
        font-size:1rem;
        line-height:1.55;
    }
    .performers-page-v2 .performer-photo-placeholder,
    .performers-page-v2 .ev4-spv2-profile__media,
    .performers-page-v2 .ev4-spv2-profile__image{
        min-height:360px;
    }
    .performers-page-v2 .performer-metrics-v2{
        grid-template-columns:1fr;
    }
    .performers-page-v2 .performer-card-actions-v2 .btn{
        width:100%;
    }
}

/* Быстрая оценка в модалке отзыва без ожидания загрузки FontAwesome. */
.star-rating{
    align-items:center;
}
.star-rating .review-star{
    appearance:none;
    -webkit-appearance:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:34px;
    height:34px;
    padding:0;
    border:0;
    background:transparent;
    color:#d2d2d2;
    font-family:Arial, sans-serif;
    font-size:34px;
    line-height:1;
    cursor:pointer;
    transition:color .12s ease, transform .12s ease, text-shadow .12s ease;
}
.star-rating .review-star.active,
.star-rating .review-star:hover{
    color:var(--star-color)!important;
    text-shadow:0 0 5px rgba(255,215,0,.38);
}
.star-rating .review-star:hover{
    transform:scale(1.08);
}
.star-rating .review-star:focus-visible{
    outline:3px solid rgba(136,112,255,.35);
    outline-offset:4px;
    border-radius:8px;
}

/* Кнопка «Смотреть» на странице услуги не должна наследовать круглую кнопку портфолио. */
.example-play-btn.play-btn{
    width:auto!important;
    height:auto!important;
    min-height:34px!important;
    padding:7px 15px!important;
    border-radius:999px!important;
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    gap:7px!important;
    line-height:1.2!important;
    white-space:nowrap!important;
    position:relative!important;
}
.example-play-btn.play-btn::after{
    display:none!important;
}
.example-play-btn.play-btn i{
    position:static!important;
    width:auto!important;
    height:auto!important;
}
.service-card .service-btn{
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:auto!important;
    min-height:38px!important;
    border-radius:999px!important;
    opacity:1!important;
    visibility:visible!important;
}

/* === Fix performers page footer position/background after removing archive intro === */
body.post-type-archive-performer,
body.single-performer{
    background:#f8f7fc!important;
}
body.post-type-archive-performer footer,
body.single-performer footer{
    margin-bottom:0!important;
}
body.post-type-archive-performer .performers-page-v2 .performers-archive-v2{
    min-height:clamp(520px,56vh,760px);
}
body.post-type-archive-performer .performers-page-v2 .performers-archive-v2 > .container{
    width:100%;
}
@media (max-width:600px){
    body.post-type-archive-performer .performers-page-v2 .performers-archive-v2{
        min-height:420px;
    }
}

/* === Vigrama 1.5.7: readable mobile typography pass === */
@media (max-width: 768px){
    body .ev4-landing{
        font-size:16px!important;
        line-height:1.5!important;
    }

    body .ev4-landing h1,
    body .ev4-landing h2,
    body .ev4-landing .ev4-spv2-title,
    body .ev4-landing .ev4-head h2,
    body .ev4-landing .section-title h2{
        font-size:28px!important;
        line-height:1.12!important;
        letter-spacing:-.035em!important;
        max-width:100%!important;
        overflow-wrap:break-word!important;
    }

    .ev4-landing .ev4-spv2-header__lead,
    .ev4-landing .ev4-head__aside p,
    .ev4-landing .ev4-head p,
    .ev4-landing .section-title p{
        font-size:16px!important;
        line-height:1.55!important;
    }

    .ev4-landing .ev4-spv2-profile__status{
        font-size:14px!important;
    }
    .ev4-landing .ev4-spv2-profile__identity strong{
        font-size:28px!important;
        line-height:1.05!important;
    }
    .ev4-landing .ev4-spv2-profile__identity span,
    .ev4-landing .ev4-spv2-profile__location{
        font-size:15px!important;
        line-height:1.35!important;
    }

    .ev4-landing .ev4-spv2-trust__rating small{
        font-size:12px!important;
        line-height:1.15!important;
    }
    .ev4-landing .ev4-spv2-trust__rating strong{
        font-size:26px!important;
        line-height:1!important;
    }
    .ev4-landing .ev4-spv2-trust__rating span{
        font-size:18px!important;
    }
    .ev4-landing .ev4-spv2-trust__rating em{
        font-size:13px!important;
        line-height:1.2!important;
    }
    .ev4-landing .ev4-spv2-trust__metrics strong{
        font-size:24px!important;
        line-height:1!important;
    }
    .ev4-landing .ev4-spv2-trust__metrics span{
        font-size:12px!important;
        line-height:1.16!important;
        letter-spacing:.01em!important;
    }

    .ev4-landing .ev4-spv2-contact__copy small{
        font-size:12px!important;
        line-height:1.15!important;
    }
    .ev4-landing .ev4-spv2-contact__copy strong{
        font-size:20px!important;
        line-height:1.2!important;
    }
    .ev4-landing .ev4-spv2-contact__copy p{
        font-size:15px!important;
        line-height:1.45!important;
    }
    .ev4-landing .ev4-spv2-contact__links .ev4-spv2-contact__link{
        font-size:15px!important;
        min-height:48px!important;
    }

    .ev4-landing .ev4-kicker,
    .ev4-landing .section-kicker,
    .ev4-landing .ev4-head .ev4-kicker{
        font-size:14px!important;
        line-height:1.2!important;
    }

    .ev4-landing .ev4-service-direction-card h3{
        font-size:20px!important;
        line-height:1.22!important;
    }
    .ev4-landing .ev4-service-direction-card p{
        font-size:15.5px!important;
        line-height:1.48!important;
    }
    .ev4-landing .ev4-service-direction-card__number,
    .ev4-landing .ev4-service-direction-card .ev4-service-direction-card__num{
        font-size:14px!important;
    }

    .ev4-landing .ev4-portfolio-card h3,
    .ev4-landing .ev4-video-card h3,
    .ev4-landing .portfolio-card h3{
        font-size:18px!important;
        line-height:1.25!important;
    }
    .ev4-landing .ev4-portfolio-card p,
    .ev4-landing .ev4-video-card p,
    .ev4-landing .portfolio-card p{
        font-size:15px!important;
        line-height:1.45!important;
    }

    .ev4-landing .ev4-price-card h3,
    .ev4-landing .ev4-result-card h3,
    .ev4-landing .ev4-process-card h3,
    .ev4-landing .ev4-review-card h3,
    .ev4-landing .ev4-faq-item h3{
        font-size:18px!important;
        line-height:1.25!important;
    }
    .ev4-landing .ev4-price-card p,
    .ev4-landing .ev4-result-card p,
    .ev4-landing .ev4-process-card p,
    .ev4-landing .ev4-review-card p,
    .ev4-landing .ev4-faq-item p{
        font-size:15px!important;
        line-height:1.48!important;
    }

    .ev4-mobile-contact-dock__title{
        font-size:12px!important;
        line-height:1.15!important;
    }
    .ev4-mobile-contact-dock__button span{
        font-size:14px!important;
    }
}

@media (max-width: 380px){
    .ev4-landing .ev4-spv2-trust__rating small{
        font-size:11px!important;
    }
    .ev4-landing .ev4-spv2-trust__metrics span{
        font-size:11px!important;
    }
    .ev4-landing .ev4-service-direction-card p{
        font-size:15px!important;
    }
}

/* === Vigrama 1.5.9: Kwork trust integrated into specialist photo === */
.ev4-landing .ev4-spv2-profile__media:after{
    height:58%;
    background:linear-gradient(to bottom,transparent 0%,rgba(27,18,47,.76) 52%,rgba(27,18,47,.97) 100%);
}
.ev4-landing .ev4-spv2-profile__identity{
    bottom:104px;
}
.ev4-landing .ev4-spv2-photo-trust{
    position:absolute;
    z-index:4;
    left:16px;
    right:16px;
    bottom:18px;
    min-height:68px;
    display:grid;
    grid-template-columns:42px minmax(0,1fr) 36px;
    align-items:center;
    gap:11px;
    padding:12px;
    border:1px solid rgba(255,255,255,.48);
    border-radius:20px;
    background:rgba(255,255,255,.92);
    color:#171421;
    text-decoration:none!important;
    box-shadow:0 18px 40px rgba(17,12,33,.22);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
}
.ev4-landing .ev4-spv2-photo-trust:hover{
    transform:translateY(-2px);
    box-shadow:0 22px 46px rgba(17,12,33,.27);
}
.ev4-landing .ev4-spv2-photo-trust__mark{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:linear-gradient(135deg,#7653ff,#8b55e8);
    color:#fff;
    font-size:1.2rem;
    font-weight:900;
    line-height:1;
}
.ev4-landing .ev4-spv2-photo-trust__text{
    min-width:0;
    display:flex;
    flex-direction:column;
    gap:4px;
}
.ev4-landing .ev4-spv2-photo-trust__text strong{
    color:#12101f;
    font-size:1rem;
    line-height:1;
    font-weight:900;
    letter-spacing:-.02em;
}
.ev4-landing .ev4-spv2-photo-trust__text em{
    color:#625b79;
    font-size:.66rem;
    line-height:1.15;
    font-style:normal;
    font-weight:800;
    letter-spacing:-.01em;
    white-space:normal;
}
.ev4-landing .ev4-spv2-photo-trust b{
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(132,98,255,.22);
    border-radius:12px;
    background:#f7f3ff;
    color:#7653ff;
    font-size:1rem;
    line-height:1;
}
.ev4-landing .ev4-spv2-content{
    gap:16px;
}
.ev4-landing .ev4-spv2-contact{
    margin-top:0;
}

@media (min-width:821px){
    .ev4-landing .ev4-spv2-photo-trust__text strong{
        font-size:.96rem;
    }
    .ev4-landing .ev4-spv2-photo-trust__text em{
        font-size:.62rem;
    }
}

@media (max-width:600px){
    .ev4-landing .ev4-spv2-profile__media,
    .ev4-landing .ev4-spv2-profile__image{
        min-height:430px;
    }
    .ev4-landing .ev4-spv2-profile__identity{
        left:20px;
        right:20px;
        bottom:104px;
    }
    .ev4-landing .ev4-spv2-profile__identity strong{
        font-size:1.85rem;
    }
    .ev4-landing .ev4-spv2-photo-trust{
        left:16px;
        right:16px;
        bottom:17px;
        min-height:66px;
        grid-template-columns:40px minmax(0,1fr) 34px;
        gap:10px;
        padding:11px;
        border-radius:18px;
    }
    .ev4-landing .ev4-spv2-photo-trust__mark{
        width:40px;
        height:40px;
        border-radius:13px;
        font-size:1.1rem;
    }
    .ev4-landing .ev4-spv2-photo-trust__text strong{
        font-size:.96rem;
    }
    .ev4-landing .ev4-spv2-photo-trust__text em{
        font-size:.61rem;
    }
    .ev4-landing .ev4-spv2-photo-trust b{
        width:34px;
        height:34px;
        border-radius:11px;
    }
}

@media (max-width:380px){
    .ev4-landing .ev4-spv2-photo-trust{
        grid-template-columns:38px minmax(0,1fr) 32px;
        gap:8px;
        padding:10px;
    }
    .ev4-landing .ev4-spv2-photo-trust__mark{
        width:38px;
        height:38px;
    }
    .ev4-landing .ev4-spv2-photo-trust__text strong{
        font-size:.9rem;
    }
    .ev4-landing .ev4-spv2-photo-trust__text em{
        font-size:.58rem;
    }
}

/* === Vigrama 1.5.9: move online location under contact buttons === */
.ev4-landing .ev4-spv2-contact__location{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin-top:12px;
    padding:11px 14px;
    border-radius:16px;
    background:rgba(255,255,255,.72);
    border:1px solid rgba(136,112,255,.16);
    color:#5f6680;
    font-size:.9rem;
    font-weight:800;
    line-height:1.25;
    text-align:center;
}
.ev4-landing .ev4-spv2-contact__location i{
    color:var(--ev4-accent);
    font-size:.95rem;
}
@media(max-width:768px){
    .ev4-landing .ev4-spv2-contact__location{
        margin-top:11px;
        padding:12px 14px;
        font-size:15px;
        border-radius:15px;
    }
}

/* === Vigrama 1.6.0: Direct conversion contact block === */
.ev4-landing .ev4-spv2-contact{
    align-items:center;
    gap:22px;
}
.ev4-landing .ev4-spv2-contact__copy small{
    margin-bottom:8px;
    font-size:.82rem;
    letter-spacing:.055em;
}
.ev4-landing .ev4-spv2-contact__copy strong{
    max-width:460px;
    font-size:1.28rem;
    line-height:1.22;
}
.ev4-landing .ev4-spv2-contact__terms{
    display:inline-flex;
    width:auto;
    margin:10px 0 0!important;
    padding:8px 12px;
    border-radius:999px;
    background:#fff;
    border:1px solid rgba(136,112,255,.18);
    color:#151421!important;
    font-size:.86rem!important;
    line-height:1.2!important;
    font-weight:900;
    box-shadow:0 8px 20px rgba(31,23,58,.045);
}
.ev4-landing .ev4-spv2-contact__title{
    min-height:auto;
    padding:0;
    border:0;
    border-radius:0;
    background:transparent;
    color:#6f50e7;
    justify-content:flex-start;
    font-size:.84rem;
    font-weight:900;
    line-height:1.25;
    letter-spacing:.045em;
    text-transform:uppercase;
    box-shadow:none;
}
.ev4-landing .ev4-spv2-contact__links{
    margin-top:0;
}
.ev4-landing .ev4-spv2-contact__location{
    margin-top:4px;
}
@media(max-width:768px){
    .ev4-landing .ev4-spv2-contact{
        gap:14px;
    }
    .ev4-landing .ev4-spv2-contact__copy small{
        font-size:14px!important;
        margin-bottom:7px;
    }
    .ev4-landing .ev4-spv2-contact__copy strong{
        font-size:23px!important;
        line-height:1.18!important;
    }
    .ev4-landing .ev4-spv2-contact__terms{
        display:flex;
        justify-content:center;
        text-align:center;
        width:100%;
        margin:12px 0 0!important;
        padding:10px 12px;
        font-size:14px!important;
        line-height:1.25!important;
    }
    .ev4-landing .ev4-spv2-contact__copy p:not(.ev4-spv2-contact__terms){
        margin-top:9px!important;
        font-size:15px!important;
        line-height:1.4!important;
    }
    .ev4-landing .ev4-spv2-contact__title{
        justify-content:center;
        font-size:12px!important;
        letter-spacing:.04em;
    }
}

/* === Vigrama 1.6.1: cleaner direct contact block for conversion === */
.ev4-landing .ev4-spv2-contact{
    gap:20px;
    padding:19px 20px;
}
.ev4-landing .ev4-spv2-contact__copy strong{
    max-width:410px;
    font-size:1.36rem;
    line-height:1.16;
}
.ev4-landing .ev4-spv2-contact__terms{
    margin-top:12px!important;
    padding:9px 14px;
    font-size:.9rem!important;
}
.ev4-landing .ev4-spv2-contact__title{
    margin:0 0 9px;
    color:#7653ff;
    font-size:.78rem;
    letter-spacing:.055em;
}
.ev4-landing .ev4-spv2-contact__links{
    gap:10px;
}
.ev4-landing .ev4-spv2-contact__links .ev4-spv2-contact__link,
.ev4-landing .ev4-spv2-contact__links a{
    min-height:48px;
    border-radius:14px;
    font-size:.92rem;
}
.ev4-landing .ev4-spv2-contact__location{
    margin-top:10px;
    padding:12px 14px;
}
.ev4-landing .ev4-spv2-photo-trust__text em{
    font-size:.72rem;
    line-height:1.18;
    font-weight:900;
}
@media (min-width:821px){
    .ev4-landing .ev4-spv2-photo-trust__text em{
        font-size:.68rem;
    }
}
@media(max-width:768px){
    .ev4-landing .ev4-spv2-contact{
        gap:13px;
        padding:18px;
    }
    .ev4-landing .ev4-spv2-contact__copy small{
        font-size:13px!important;
        margin-bottom:7px;
    }
    .ev4-landing .ev4-spv2-contact__copy strong{
        max-width:none;
        font-size:22px!important;
        line-height:1.16!important;
    }
    .ev4-landing .ev4-spv2-contact__terms{
        margin-top:11px!important;
        padding:10px 12px;
        font-size:14px!important;
    }
    .ev4-landing .ev4-spv2-contact__title{
        justify-content:center;
        margin-bottom:10px;
        font-size:13px!important;
        letter-spacing:.045em;
    }
    .ev4-landing .ev4-spv2-contact__links{
        gap:10px;
    }
    .ev4-landing .ev4-spv2-contact__links .ev4-spv2-contact__link,
    .ev4-landing .ev4-spv2-contact__links a{
        min-height:52px;
        border-radius:13px;
        font-size:16px!important;
    }
    .ev4-landing .ev4-spv2-contact__location{
        margin-top:10px;
    }
    .ev4-landing .ev4-spv2-photo-trust__text em{
        font-size:.7rem;
    }
}
@media(max-width:380px){
    .ev4-landing .ev4-spv2-contact__links .ev4-spv2-contact__link,
    .ev4-landing .ev4-spv2-contact__links a{
        min-height:50px;
        font-size:15px!important;
    }
    .ev4-landing .ev4-spv2-photo-trust__text em{
        font-size:.66rem;
    }
}

/* === Vigrama: clearer Kwork success metric inside specialist photo === */
.ev4-landing .ev4-spv2-photo-trust__text em span{
    display:block;
}

/* === Fix: WhatsApp button overflow in specialist contact block === */
.ev4-landing .ev4-spv2-contact__links{
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:10px;
}
.ev4-landing .ev4-spv2-contact__links .ev4-spv2-contact__link{
    min-width:0;
    padding:0 10px;
    font-size:14px !important;
    line-height:1.1;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
@media (max-width: 991px){
    .ev4-landing .ev4-spv2-contact__links .ev4-spv2-contact__link{
        font-size:13px !important;
        padding:0 8px;
    }
}
@media (max-width: 768px){
    .ev4-landing .ev4-spv2-contact__links{
        gap:10px;
    }
    .ev4-landing .ev4-spv2-contact__links .ev4-spv2-contact__link{
        font-size:15px !important;
        padding:0 10px;
    }
}

/* === Vigrama 1.6: mobile contact buttons layout fix === */
@media (max-width: 768px){
    .ev4-landing .ev4-spv2-contact{
        text-align:center;
    }
    .ev4-landing .ev4-spv2-contact__links{
        grid-template-columns:repeat(2,minmax(0,1fr)) !important;
        gap:10px !important;
    }
    .ev4-landing .ev4-spv2-contact__links .ev4-spv2-contact__link,
    .ev4-landing .ev4-spv2-contact__links a{
        width:100% !important;
        min-width:0 !important;
        min-height:54px !important;
        padding:0 12px !important;
        justify-content:center !important;
        text-align:center !important;
        white-space:nowrap !important;
        overflow:visible !important;
        text-overflow:clip !important;
        font-size:15px !important;
        line-height:1.1 !important;
    }
    .ev4-landing .ev4-spv2-contact__title{
        text-align:center;
    }
    .ev4-landing .ev4-spv2-contact__terms{
        width:100%;
        max-width:none;
        text-align:center;
        font-size:13.5px !important;
        line-height:1.25 !important;
    }
}
@media (max-width: 360px){
    .ev4-landing .ev4-spv2-contact__links .ev4-spv2-contact__link,
    .ev4-landing .ev4-spv2-contact__links a{
        font-size:14px !important;
        padding:0 8px !important;
    }
}

/* === Vigrama: conversion chips for price / deadline / edits === */
.ev4-landing .ev4-spv2-contact__terms{
    display:flex !important;
    flex-wrap:wrap;
    gap:8px;
    margin:12px 0 0!important;
    padding:0!important;
    border:0!important;
    background:transparent!important;
    box-shadow:none!important;
}
.ev4-landing .ev4-spv2-contact__terms span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:38px;
    padding:8px 13px;
    border-radius:999px;
    background:#fff;
    border:1px solid rgba(136,112,255,.18);
    color:#151421!important;
    font-size:14px!important;
    line-height:1.15!important;
    font-weight:900;
    white-space:nowrap;
    box-shadow:0 8px 20px rgba(31,23,58,.045);
}
@media (max-width:768px){
    .ev4-landing .ev4-spv2-contact__terms{
        display:grid!important;
        grid-template-columns:1fr;
        gap:8px;
        width:100%;
    }
    .ev4-landing .ev4-spv2-contact__terms span{
        width:100%;
        min-height:40px;
        font-size:14px!important;
    }
}
@media (min-width:769px) and (max-width:1240px){
    .ev4-landing .ev4-spv2-contact__terms span{
        font-size:13px!important;
        padding-left:11px;
        padding-right:11px;
    }
}

/* === Vigrama precise fix: CTA like approved screenshot, but cleaner === */
.ev4-landing .ev4-spv2-contact{
    display:grid !important;
    grid-template-columns:minmax(310px,.82fr) minmax(460px,1.18fr) !important;
    align-items:center !important;
    column-gap:28px !important;
    row-gap:12px !important;
    padding:22px 26px !important;
    border-radius:26px !important;
    overflow:visible !important;
}
.ev4-landing .ev4-spv2-contact__copy,
.ev4-landing .ev4-spv2-contact__actions{
    min-width:0 !important;
}
.ev4-landing .ev4-spv2-contact__copy small{
    display:block !important;
    margin:0 0 9px !important;
    font-size:14px !important;
    line-height:1.12 !important;
    letter-spacing:.045em !important;
    white-space:normal !important;
}
.ev4-landing .ev4-spv2-contact__copy strong{
    display:block !important;
    max-width:520px !important;
    margin:0 !important;
    font-size:26px !important;
    line-height:1.14 !important;
    letter-spacing:-.03em !important;
    white-space:normal !important;
    word-break:normal !important;
    overflow-wrap:normal !important;
    hyphens:none !important;
}
.ev4-landing .ev4-spv2-contact__actions{
    display:grid !important;
    gap:10px !important;
}
.ev4-landing .ev4-spv2-contact__title{
    margin:0 !important;
    text-align:left !important;
    font-size:13px !important;
    line-height:1.1 !important;
    letter-spacing:.045em !important;
}
.ev4-landing .ev4-spv2-contact__links{
    display:grid !important;
    grid-template-columns:repeat(4,minmax(0,1fr)) !important;
    gap:10px !important;
    width:100% !important;
}
.ev4-landing .ev4-spv2-contact__links .ev4-spv2-contact__link{
    min-width:0 !important;
    min-height:48px !important;
    padding:0 10px !important;
    border-radius:14px !important;
    font-size:14px !important;
    line-height:1.1 !important;
    white-space:nowrap !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;
}
.ev4-landing .ev4-spv2-contact__location{
    min-height:40px !important;
    margin:0 !important;
    padding:8px 14px !important;
    border-radius:14px !important;
    font-size:14px !important;
    line-height:1.15 !important;
    width:100% !important;
}
.ev4-landing .ev4-spv2-contact__terms{
    grid-column:1 / -1 !important;
    display:grid !important;
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    gap:10px !important;
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
    padding:0 !important;
    border:0 !important;
    background:transparent !important;
    box-shadow:none !important;
}
.ev4-landing .ev4-spv2-contact__terms span{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    min-height:36px !important;
    padding:7px 12px !important;
    border:1px solid rgba(136,112,255,.2) !important;
    border-radius:999px !important;
    background:#fff !important;
    color:#151421 !important;
    font-size:13px !important;
    line-height:1.12 !important;
    font-weight:900 !important;
    text-align:center !important;
    white-space:nowrap !important;
    box-shadow:0 7px 18px rgba(31,23,58,.035) !important;
}
@media (max-width:1180px){
    .ev4-landing .ev4-spv2-contact{
        grid-template-columns:1fr !important;
        row-gap:14px !important;
    }
    .ev4-landing .ev4-spv2-contact__copy strong{
        max-width:none !important;
    }
    .ev4-landing .ev4-spv2-contact__links{
        grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    }
}
@media (max-width:768px){
    .ev4-landing .ev4-spv2-contact{
        padding:17px !important;
        border-radius:22px !important;
    }
    .ev4-landing .ev4-spv2-contact__copy strong{
        font-size:21px !important;
        line-height:1.13 !important;
    }
    .ev4-landing .ev4-spv2-contact__title{
        text-align:center !important;
        font-size:13px !important;
    }
    .ev4-landing .ev4-spv2-contact__links{
        grid-template-columns:repeat(2,minmax(0,1fr)) !important;
        gap:10px !important;
    }
    .ev4-landing .ev4-spv2-contact__links .ev4-spv2-contact__link{
        min-height:50px !important;
        font-size:15px !important;
    }
    .ev4-landing .ev4-spv2-contact__terms{
        grid-template-columns:1fr !important;
        gap:8px !important;
    }
    .ev4-landing .ev4-spv2-contact__terms span{
        min-height:38px !important;
        font-size:14px !important;
    }
}

/* === Vigrama: final fix for CTA overflow inside first block === */
.ev4-landing .ev4-spv2-contact{
    max-width:100% !important;
    overflow:hidden !important;
    display:grid !important;
    grid-template-columns:minmax(0,42%) minmax(0,58%) !important;
    align-items:center !important;
    column-gap:22px !important;
    row-gap:12px !important;
    padding:22px 24px !important;
    border-radius:26px !important;
}

.ev4-landing .ev4-spv2-contact__copy,
.ev4-landing .ev4-spv2-contact__actions{
    min-width:0 !important;
    width:100% !important;
}

.ev4-landing .ev4-spv2-contact__copy small{
    display:block !important;
    margin:0 0 8px !important;
    font-size:14px !important;
    line-height:1.12 !important;
    white-space:normal !important;
}

.ev4-landing .ev4-spv2-contact__copy strong{
    display:block !important;
    max-width:100% !important;
    margin:0 !important;
    font-size:25px !important;
    line-height:1.14 !important;
    letter-spacing:-.03em !important;
    white-space:normal !important;
    word-break:normal !important;
    overflow-wrap:normal !important;
    hyphens:none !important;
}

.ev4-landing .ev4-spv2-contact__actions{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:10px !important;
}

.ev4-landing .ev4-spv2-contact__title{
    margin:0 !important;
    text-align:left !important;
    font-size:13px !important;
    line-height:1.1 !important;
    letter-spacing:.045em !important;
}

.ev4-landing .ev4-spv2-contact__links{
    width:100% !important;
    max-width:100% !important;
    display:grid !important;
    grid-template-columns:repeat(4,minmax(0,1fr)) !important;
    gap:9px !important;
}

.ev4-landing .ev4-spv2-contact__links .ev4-spv2-contact__link{
    min-width:0 !important;
    width:100% !important;
    max-width:100% !important;
    min-height:46px !important;
    padding:0 8px !important;
    border-radius:14px !important;
    font-size:13.5px !important;
    line-height:1.1 !important;
    white-space:nowrap !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;
}

.ev4-landing .ev4-spv2-contact__location{
    width:100% !important;
    max-width:100% !important;
    min-height:40px !important;
    margin:0 !important;
    padding:8px 12px !important;
    border-radius:14px !important;
    font-size:14px !important;
    line-height:1.15 !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;
    white-space:nowrap !important;
}

.ev4-landing .ev4-spv2-contact__terms{
    grid-column:1 / -1 !important;
    width:100% !important;
    max-width:100% !important;
    display:grid !important;
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    gap:9px !important;
    margin:0 !important;
    padding:0 !important;
    border:0 !important;
    background:transparent !important;
    box-shadow:none !important;
    overflow:hidden !important;
}

.ev4-landing .ev4-spv2-contact__terms span{
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    min-height:36px !important;
    padding:7px 10px !important;
    border:1px solid rgba(136,112,255,.2) !important;
    border-radius:999px !important;
    background:#fff !important;
    color:#151421 !important;
    font-size:13px !important;
    line-height:1.12 !important;
    font-weight:900 !important;
    text-align:center !important;
    white-space:nowrap !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;
    box-shadow:0 7px 18px rgba(31,23,58,.035) !important;
}

@media (max-width:1180px){
    .ev4-landing .ev4-spv2-contact{
        grid-template-columns:1fr !important;
        row-gap:14px !important;
    }
    .ev4-landing .ev4-spv2-contact__links{
        grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    }
}

@media (max-width:768px){
    .ev4-landing .ev4-spv2-contact{
        padding:17px !important;
        border-radius:22px !important;
    }
    .ev4-landing .ev4-spv2-contact__copy strong{
        font-size:21px !important;
        line-height:1.13 !important;
    }
    .ev4-landing .ev4-spv2-contact__title{
        text-align:center !important;
        font-size:13px !important;
    }
    .ev4-landing .ev4-spv2-contact__links{
        grid-template-columns:repeat(2,minmax(0,1fr)) !important;
        gap:10px !important;
    }
    .ev4-landing .ev4-spv2-contact__links .ev4-spv2-contact__link{
        min-height:50px !important;
        font-size:15px !important;
    }
    .ev4-landing .ev4-spv2-contact__terms{
        grid-template-columns:1fr !important;
        gap:8px !important;
    }
    .ev4-landing .ev4-spv2-contact__terms span{
        min-height:38px !important;
        font-size:14px !important;
    }
    .ev4-landing .ev4-spv2-contact__location{
        min-height:38px !important;
        font-size:14px !important;
        white-space:normal !important;
    }
}

/* === Vigrama CTA: exact stacked layout like approved screenshot === */
.ev4-landing .ev4-spv2-contact{
    display:block !important;
    max-width:100% !important;
    overflow:hidden !important;
    padding:22px 26px 24px !important;
    border-radius:26px !important;
}

.ev4-landing .ev4-spv2-contact__copy{
    width:100% !important;
    min-width:0 !important;
}

.ev4-landing .ev4-spv2-contact__copy small{
    display:block !important;
    margin:0 0 8px !important;
    font-size:14px !important;
    line-height:1.12 !important;
    letter-spacing:.045em !important;
    white-space:normal !important;
}

.ev4-landing .ev4-spv2-contact__copy strong{
    display:block !important;
    max-width:720px !important;
    margin:0 !important;
    font-size:26px !important;
    line-height:1.14 !important;
    letter-spacing:-.03em !important;
    white-space:normal !important;
    word-break:normal !important;
    overflow-wrap:normal !important;
    hyphens:none !important;
}

.ev4-landing .ev4-spv2-contact__actions{
    display:block !important;
    width:100% !important;
    min-width:0 !important;
    margin-top:18px !important;
}

.ev4-landing .ev4-spv2-contact__title{
    display:block !important;
    margin:0 0 10px !important;
    text-align:left !important;
    font-size:13px !important;
    line-height:1.1 !important;
    letter-spacing:.045em !important;
}

.ev4-landing .ev4-spv2-contact__links{
    width:100% !important;
    max-width:100% !important;
    display:grid !important;
    grid-template-columns:repeat(4,minmax(0,1fr)) !important;
    gap:10px !important;
}

.ev4-landing .ev4-spv2-contact__links .ev4-spv2-contact__link{
    min-width:0 !important;
    width:100% !important;
    max-width:100% !important;
    min-height:54px !important;
    padding:0 10px !important;
    border-radius:14px !important;
    font-size:15px !important;
    line-height:1.1 !important;
    white-space:nowrap !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;
}

.ev4-landing .ev4-spv2-contact__terms{
    display:grid !important;
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    gap:10px !important;
    width:100% !important;
    max-width:100% !important;
    margin:12px 0 0 !important;
    padding:0 !important;
    border:0 !important;
    background:transparent !important;
    box-shadow:none !important;
    overflow:hidden !important;
}

.ev4-landing .ev4-spv2-contact__terms span{
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    min-height:38px !important;
    padding:7px 12px !important;
    border:1px solid rgba(136,112,255,.2) !important;
    border-radius:999px !important;
    background:#fff !important;
    color:#151421 !important;
    font-size:13.5px !important;
    line-height:1.12 !important;
    font-weight:900 !important;
    text-align:center !important;
    white-space:nowrap !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;
    box-shadow:0 7px 18px rgba(31,23,58,.035) !important;
}

.ev4-landing .ev4-spv2-contact__location{
    width:100% !important;
    max-width:100% !important;
    min-height:42px !important;
    margin:12px 0 0 !important;
    padding:8px 14px !important;
    border-radius:14px !important;
    font-size:14px !important;
    line-height:1.15 !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;
    white-space:nowrap !important;
}

@media (max-width:768px){
    .ev4-landing .ev4-spv2-contact{
        padding:17px !important;
        border-radius:22px !important;
    }
    .ev4-landing .ev4-spv2-contact__copy strong{
        font-size:21px !important;
        line-height:1.13 !important;
    }
    .ev4-landing .ev4-spv2-contact__title{
        text-align:center !important;
        font-size:13px !important;
    }
    .ev4-landing .ev4-spv2-contact__links{
        grid-template-columns:repeat(2,minmax(0,1fr)) !important;
        gap:10px !important;
    }
    .ev4-landing .ev4-spv2-contact__links .ev4-spv2-contact__link{
        min-height:50px !important;
        font-size:15px !important;
    }
    .ev4-landing .ev4-spv2-contact__terms{
        grid-template-columns:1fr !important;
        gap:8px !important;
    }
    .ev4-landing .ev4-spv2-contact__terms span{
        min-height:38px !important;
        font-size:14px !important;
    }
    .ev4-landing .ev4-spv2-contact__location{
        min-height:38px !important;
        font-size:14px !important;
        white-space:normal !important;
    }
}

/* === Vigrama: Kwork rating text and one-line CTA title === */
.ev4-landing .ev4-spv2-photo-trust__text strong{
    white-space:nowrap !important;
    font-size:14px !important;
    line-height:1.08 !important;
}

.ev4-landing .ev4-spv2-contact__copy--single small{
    display:none !important;
}

.ev4-landing .ev4-spv2-contact__copy--single .ev4-spv2-contact__mainline{
    display:block !important;
    max-width:100% !important;
    margin:0 !important;
    font-size:24px !important;
    line-height:1.18 !important;
    letter-spacing:-.025em !important;
    font-weight:900 !important;
}

@media (min-width:1181px){
    .ev4-landing .ev4-spv2-contact__copy--single .ev4-spv2-contact__mainline{
        white-space:nowrap !important;
        font-size:22px !important;
    }
}

@media (max-width:768px){
    .ev4-landing .ev4-spv2-photo-trust__text strong{
        font-size:13px !important;
    }
    .ev4-landing .ev4-spv2-contact__copy--single .ev4-spv2-contact__mainline{
        font-size:20px !important;
        line-height:1.18 !important;
        white-space:normal !important;
    }
}

/* === Vigrama: reduce excessive boldness in specialist first block === */
.ev4-landing .ev4-spv2-description strong{
    font-weight:700 !important;
}
.ev4-landing .ev4-spv2-contact__copy strong,
.ev4-landing .ev4-spv2-contact__copy--single .ev4-spv2-contact__mainline{
    font-weight:600 !important;
}
.ev4-landing .ev4-spv2-contact__title,
.ev4-landing .ev4-spv2-contact__copy small{
    font-weight:800 !important;
}
.ev4-landing .ev4-spv2-contact__links .ev4-spv2-contact__link{
    font-weight:800 !important;
}
.ev4-landing .ev4-spv2-contact__terms span{
    font-weight:700 !important;
}
.ev4-landing .ev4-spv2-contact__location{
    font-weight:700 !important;
}
.ev4-landing .ev4-spv2-photo-trust__text strong{
    font-weight:800 !important;
}
.ev4-landing .ev4-spv2-photo-trust__text em{
    font-weight:700 !important;
}
.ev4-landing .ev4-spv2-profile__identity strong,
.ev4-landing .ev4-spv2-profile__identity span{
    font-weight:800 !important;
}

/* === Vigrama: mobile floating contacts dock WhatsApp fit === */
@media (max-width: 480px){
    .ev4-mobile-contact-dock{
        left:10px!important;
        right:10px!important;
        max-width:calc(100vw - 20px)!important;
        padding:7px!important;
        border-radius:18px!important;
        box-sizing:border-box!important;
    }
    .ev4-mobile-contact-dock__title{
        margin-bottom:6px!important;
        font-size:11px!important;
        line-height:1.1!important;
        letter-spacing:.06em!important;
    }
    .ev4-mobile-contact-dock__actions{
        grid-template-columns:repeat(3,minmax(0,1fr))!important;
        gap:6px!important;
    }
    .ev4-mobile-contact-dock__button{
        min-width:0!important;
        min-height:44px!important;
        padding:8px 5px!important;
        gap:4px!important;
        border-radius:12px!important;
        font-size:12.5px!important;
        line-height:1!important;
        box-sizing:border-box!important;
    }
    .ev4-mobile-contact-dock__button i,
    .ev4-mobile-contact-dock__button .messenger-logo{
        width:13px!important;
        height:13px!important;
        flex:0 0 13px!important;
        font-size:12px!important;
    }
    .ev4-mobile-contact-dock__button span{
        min-width:0!important;
        max-width:100%!important;
        display:block!important;
        white-space:nowrap!important;
        overflow:hidden!important;
        text-overflow:clip!important;
        font-size:12.5px!important;
        line-height:1!important;
    }
    .ev4-mobile-contact-dock__button--whatsapp span{
        font-size:12px!important;
        letter-spacing:-.02em!important;
    }
}
@media (max-width: 370px){
    .ev4-mobile-contact-dock{
        left:8px!important;
        right:8px!important;
        max-width:calc(100vw - 16px)!important;
        padding:6px!important;
    }
    .ev4-mobile-contact-dock__actions{
        gap:5px!important;
    }
    .ev4-mobile-contact-dock__button{
        padding:7px 4px!important;
        gap:3px!important;
    }
    .ev4-mobile-contact-dock__button span{
        font-size:11.5px!important;
    }
    .ev4-mobile-contact-dock__button--whatsapp span{
        font-size:11px!important;
    }
}

/* === Vigrama: fix CTA heading overflow in first block === */
.ev4-landing .ev4-spv2-contact{
    overflow:hidden !important;
}

.ev4-landing .ev4-spv2-contact__copy,
.ev4-landing .ev4-spv2-contact__copy--single{
    min-width:0 !important;
    max-width:100% !important;
}

.ev4-landing .ev4-spv2-contact__copy strong,
.ev4-landing .ev4-spv2-contact__copy--single .ev4-spv2-contact__mainline{
    display:block !important;
    max-width:100% !important;
    white-space:normal !important;
    word-break:normal !important;
    overflow-wrap:normal !important;
    hyphens:none !important;
    font-size:23px !important;
    line-height:1.18 !important;
}

@media (min-width:1181px){
    .ev4-landing .ev4-spv2-contact__copy--single .ev4-spv2-contact__mainline{
        white-space:normal !important;
        font-size:23px !important;
        line-height:1.18 !important;
    }
}

@media (max-width:768px){
    .ev4-landing .ev4-spv2-contact__copy strong,
    .ev4-landing .ev4-spv2-contact__copy--single .ev4-spv2-contact__mainline{
        font-size:20px !important;
        line-height:1.2 !important;
    }
}

/* === Vigrama: keep 'мне' in CTA and prevent overflow === */
.ev4-landing .ev4-spv2-contact__copy strong,
.ev4-landing .ev4-spv2-contact__copy--single .ev4-spv2-contact__mainline{
    white-space:normal !important;
    max-width:100% !important;
    overflow-wrap:normal !important;
    word-break:normal !important;
    font-size:22px !important;
    line-height:1.18 !important;
}
