/*
Theme Name: Lida24
Theme URI: https://lida24.by
Author: Panda Media
Description: Тема портала услуг для lida24.by
Version: 1.0
Text Domain: lida24
*/

/* ========== BASE ========== */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}
.container {
    max-width: 1270px;
    margin: 0 auto;
}

/* ========== HEADER ========== */
.l24-site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
}
.l24-site-header.header-hidden {
    transform: translateY(-100%);
}
.l24-header-spacer {
    height: 55px;
}

/* Top bar */
.top-bar {
    background: #333;
    color: #fff;
    padding: 5px 0;
    font-size: 14px;
}
.top-bar a {
    color: #fff;
    text-decoration: none;
}

.l24-main-header {
    padding: 15px 0;
    background: #fff;
}
.l24-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;padding-right: 15px;
    padding-left: 15px;
}

.site-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
}
.site-branding a {
    text-decoration: none;
}

/* Logo (single definition) */
.l24-main-logo {
    display: block;
    max-height: 50px;
    width: auto;
    object-fit: contain;
}
.site-branding .custom-logo-link {
    display: flex;
    align-items: center;
}

/* Navigation desktop */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
.main-navigation li {
    position: relative;
}
.main-navigation ul li {
    margin-left: 1px;
}
.main-navigation ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 5px 10px;
    transition: color 0.3s;
}
.main-navigation ul li a:hover {
    color: #0073aa;
}
.main-navigation .menu-item-has-children > a::after {
    content: none !important;
    display: none !important;
}
.main-navigation ul ul .menu-item-has-children > a::after {
    content: none !important;
    display: none !important;
}

.l24-menu-toggle {
    display: none;
}

/* Header messengers */
.l24-msg-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 100px;
    min-height: 40px;
}
.l24-h-msg-item img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: block;
    transition: transform 0.2s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.l24-h-msg-item:hover img {
    transform: scale(1.1);
}

@media (min-width: 901px) {
    .main-navigation {
        display: flex;
        align-items: center;
    }
    .l24-msg-wrap {
        margin-right: 30px;
    }
}

/* Primary menu pills */
#primary-menu {
    display: flex;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
#primary-menu li a {
    text-decoration: none;
    color: #1f2937;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border-left: 1px solid rgba(0,0,0,0.07);
}
#primary-menu li a:hover {
    background-color: #f3f4f6;
    color: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* ========== MOBILE (max 768) ========== */
@media screen and (max-width: 768px) {
    .l24-header-spacer {
        height: 60px;
    }
    .l24-menu-toggle {
        display: block;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1000;
    }
    .l24-menu-toggle .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: #333;
        transition: all 0.3s ease-in-out;
    }
    .l24-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .l24-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .l24-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        padding-top: 80px;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
        transition: right 0.3s ease-in-out;
        z-index: 998;
    }
    .main-navigation.toggled {
        right: 0;
    }
    .main-navigation ul {
        flex-direction: column;
    }
    .main-navigation ul li {
        margin: 0;
        border-bottom: 1px solid #eee;
    }
    .main-navigation ul li a {
        display: block;
        padding: 15px 20px;
        font-size: 18px;
    }
    .l24-main-logo {
        max-height: 40px;
    }
}

/* Mobile messengers (max 900) */
@media (max-width: 900px) {
    .main-navigation.toggled,
    .main-navigation.open,
    nav.mobile-menu-open {
        display: flex !important;
        flex-direction: column;
    }
    .main-navigation ul {
        order: 1;
        width: 100%;
    }
    .l24-msg-wrap {
        order: 2;
        display: flex !important;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        margin-top: 20px;
        margin-bottom: 20px;
        padding-top: 20px;
        border-top: 1px solid #eee;
    }
    .l24-msg-wrap::before {
        content: 'Напишите нам в мессенджеры:';
        display: block;
        width: 100%;
        text-align: center;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        color: #888;
        margin-bottom: 15px;
    }
    .l24-h-msg-item img {
        width: 42px;
        height: 42px;
    }
}

/* ========== FOOTER GLOBAL ========== */
footer.site-footer {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
.footer-widget-area {
    margin: 0;
    padding: 0;
    width: 100%;
}

/* ========== FOOTER LIVE BAR ========== */
#l24-footer-live {
    position: relative;
    background-color: #0f172a;
    color: #94a3b8;
    padding: 60px 0;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.5;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.l24-blob {
    position: absolute;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.4;
    animation: l24-float 10s infinite ease-in-out alternate;
}
.l24-blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #25d366 0%, transparent 70%);
}
.l24-blob-2 {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
    animation-delay: -5s;
}
@keyframes l24-float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}
.l24-verif-note {
    font-size: 11px;
    color: #25d366;
    margin-top: 15px;
    line-height: 1.4;
    font-weight: 800;
}

/* ========== FORM ========== */
.l24-form-container {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
    font-family: 'Segoe UI', Roboto, sans-serif;
    max-width: 500px;
    margin: 0 auto;
}
.l24-form-head {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
}
.l24-form-sub {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 20px;
}
.l24-f-inp {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 15px;
    margin-bottom: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border 0.3s;
}
.l24-f-inp:focus {
    border-color: #25d366;
}
textarea.l24-f-inp {
    height: 100px;
    resize: vertical;
}
.l24-stars-row {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
    margin-bottom: 15px;
}
.l24-stars-row input {
    display: none;
}
.l24-stars-row label {
    font-size: 26px;
    color: #d1d5db;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}
.l24-stars-row label:hover,
.l24-stars-row label:hover ~ label,
.l24-stars-row input:checked ~ label {
    color: #fbbf24;
}
.l24-f-btn {
    width: 100%;
    background: #25d366;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}
.l24-f-btn:hover {
    background: #1ea850;
}
.l24-f-btn:disabled {
    opacity: 0.7;
    cursor: wait;
}
.l24-f-note {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 15px;
    line-height: 1.3;
}
.l24-f-alert {
    display: none;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 13px;
}
.l24-f-ok {
    background: #f0fdf4;
    color: #166534;
}
.l24-f-err {
    background: #fef2f2;
    color: #991b1b;
}

/* ========== STATS BAR ========== */
.l24-stats-wrapper {
    background-color: #0f172a;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 15px 0;
    width: 100%;
    position: relative;
    z-index: 10;
}
.l24-stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    font-family: 'Segoe UI', Roboto, sans-serif;
}
.l24-stat-box {
    display: flex;
    align-items: center;
    gap: 12px;
}
.l24-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 0 10px #25d366;
    animation: l24-statsPulse 2s infinite;
    flex-shrink: 0;
}
.l24-static-dot {
    width: 8px;
    height: 8px;
    background-color: #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
    flex-shrink: 0;
}
@keyframes l24-statsPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.6; }
    100% { transform: scale(1); opacity: 1; }
}
.l24-stat-text {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: #fff;
}
.l24-stat-num {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}
.l24-stat-desc {
    font-size: 12px;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.l24-stat-sep {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.1);
}
@media (max-width: 600px) {
    .l24-stats-inner { gap: 20px; }
    .l24-stat-desc { font-size: 10px; }
    .l24-stat-num { font-size: 16px; }
}

/* ========== RANDOM LINKS GRID ========== */
.l24-random-section {
    margin: 60px 0;
    font-family: 'Inter', sans-serif;
}
.l24-random-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.l24-random-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #25d366;
    margin: 10px auto 0 auto;
}
.l24-random-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}
.l24-random-card {
    position: relative;
    display: block;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.l24-random-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.l24-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}
.l24-random-card:hover .l24-card-bg {
    transform: scale(1.1);
}
.l24-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
}
.l24-card-text {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.3;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
@media (max-width: 1024px) {
    .l24-random-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .l24-random-grid { grid-template-columns: repeat(2, 1fr); }
    .l24-random-card { height: 140px; }
    .l24-card-text { font-size: 0.85rem; bottom: 10px; left: 10px; }
}

/* ========== DROPDOWN MENU ========== */
.l24-header-dropdown-wrap {
    position: relative;
    margin-right: 20px;
    display: inline-block;
    z-index: 1002;
}
.l24-dropdown-btn {
    background: #f3f4f6;
    color: #374151;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}
.l24-dropdown-btn .arr {
    font-size: 10px;
    color: #25d366;
    transition: 0.2s;
}
.l24-dropdown-btn:hover {
    background: #e5e7eb;
    color: #0f172a;
}
.l24-header-dropdown-wrap:hover .l24-dropdown-btn .arr {
    transform: rotate(180deg);
}
.l24-dropdown-list {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    padding: 15px;
    transform: translateY(10px);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-height: 400px;
    overflow-y: auto;
}
.l24-header-dropdown-wrap:hover .l24-dropdown-list {
    visibility: visible;
    opacity: 1;
    transform: translateY(10px);
}
.l24-dropdown-list a {
    display: block;
    text-decoration: none;
    color: #4b5563;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.2s;
    line-height: 1.3;
}
.l24-dropdown-list a:hover {
    background: #f0fdf4;
    color: #16a34a;
}
.l24-dropdown-list a.parent-link {
    color: #0f172a;
    font-weight: 800;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 5px;
    padding-bottom: 12px;
    background: none !important;
}
.l24-dropdown-list a.parent-link:hover {
    color: #25d366;
}

/* WP submenu desktop */
@media (min-width: 901px) {
    .main-navigation > ul {
        display: flex;
        align-items: center;
    }
    .main-navigation ul ul {
        display: block;
        visibility: hidden;
        opacity: 0;
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 240px;
        background: #fff;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        border-radius: 0 0 8px 8px;
        border-top: 2px solid #25d366;
        z-index: 9999;
        transform: translateY(10px);
        transition: all 0.3s ease;
        padding: 10px 0;
    }
    .main-navigation li:hover > ul {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
    .main-navigation ul ul li {
        display: block;
        margin: 0;
        border: none;
    }
    .main-navigation ul ul a {
        padding: 10px 20px;
        color: #333;
        font-size: 14px;
        font-weight: 500;
        background: #fff;
    }
    .main-navigation ul ul a:hover {
        background: #f0fdf4;
        color: #16a34a;
        padding-left: 25px;
    }
    .main-navigation ul ul ul {
        top: 0;
        left: 100%;
        margin-top: -12px;
    }
}

/* Mobile fix order & dropdown */
@media (max-width: 900px) {
    #primary-menu {
        order: 1;
        width: 100%;
        margin: 0 0 20px 0;
    }
    .l24-header-dropdown-wrap {
        order: 2;
        width: 100%;
        margin-bottom: 20px;
        padding: 0 20px;
        box-sizing: border-box;
    }
    .l24-msg-wrap {
        order: 3;
        width: 100%;
        margin-bottom: 40px;
        justify-content: center;
    }
    .main-navigation ul.sub-menu {
        display: none;
        background-color: #f9fafb;
        padding: 0;
        margin: 0;
        border-top: 1px solid #eee;
    }
    .mobile-arrow {
        float: right;
        width: 40px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        color: #25d366;
        cursor: pointer;
    }
    .main-navigation li a {
        padding: 15px 20px;
        font-size: 16px;
        font-weight: 600;
        color: #1f2937;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .main-navigation .sub-menu li a {
        padding-left: 40px !important;
        font-size: 14px;
        font-weight: 400;
        color: #4b5563;
    }
    .l24-dropdown-btn {
        justify-content: space-between;
        background: #eef2f6;
        width: max-content;
        margin: auto;
    }
    .l24-dropdown-btn.active .arr {
        transform: rotate(180deg);
    }
    .l24-dropdown-list {
        display: none;
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: 1px solid #eee;
        width: 100%;
    }
    .l24-header-dropdown-wrap:hover .l24-dropdown-list,
    .l24-header-dropdown-wrap:active .l24-dropdown-list {
        display: flex;
    }
    .l24-dropdown-list a {
        padding: 12px;
        border-bottom: 1px solid #f0f0f0;
        color: #4b5563;
    }
    .l24-header-dropdown-wrap {
        display: block;
    }
    .l24-dropdown-btn {
        background: #f9fafb;
        border: 1px solid #e5e7eb;
    }
}

/* ========== FOOTER SITE ========== */
.l24-site-footer {
    background-color: #020617;
    color: #cbd5e1;
    padding: 70px 20px 30px 20px;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.l24-ft-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
}
.l24-ft-blob-1 {
    width: 450px;
    height: 450px;
    background: #25d366;
    top: -150px;
    left: -100px;
}
.l24-ft-blob-2 {
    width: 550px;
    height: 550px;
    background: #3b82f6;
    bottom: -200px;
    right: -150px;
}
.l24-footer-container {
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.l24-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.1fr;
    gap: 30px;
    margin-bottom: 5px;
}
.l24-card-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;    margin: 15px 15px 1px;
}
.l24-card-glass:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}
.l24-ft-system-data,
.l24-ft-partner-data {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e1;
}
.l24-ft-org-name {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1.1rem;
}
.l24-ft-contacts {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.l24-ft-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}
.l24-ft-link:hover {
    color: #25d366;
}
.l24-ft-partner-data .l24-social-grid {
    justify-content: flex-start !important;
    margin-top: 20px;
}
.l24-ft-partner-data img {
    width: 32px;
    height: 32px;
    box-shadow: none;
    border-radius: 6px;
}
.l24-ft-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.l24-ft-nav a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.2s;
    display: block;
    padding: 4px 0;
}
.l24-ft-nav a:hover {
    color: #fff;
    transform: translateX(3px);
}
.l24-col-accent {
    align-items: center;
    text-align: center;
    border-color: rgba(37, 211, 102, 0.2);
    background: rgba(37, 211, 102, 0.05);
}
.l24-footer-logo {
    max-width: 150px;
    margin-bottom: 15px;
}
.l24-cta-desc {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #cbd5e1;
    line-height: 1.4;
}
.l24-footer-btn {
    background: #25d366;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    transition: 0.3s;
}
.l24-footer-btn:hover {
    background: #1ea850;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}
.l24-footer-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}
.l24-copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;padding: 15px;
}
@media (max-width: 900px) {
    .l24-footer-grid {
        grid-template-columns: 1fr;
        gap: 3px;
    }
    .l24-card-glass {
        height: auto;
    }
}

/* ========== HERO ========== */
.l24-hero-section {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #0f172a;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.l24-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0f172a 0%, rgba(15, 23, 42, 0.8) 45%, rgba(15, 23, 42, 0.1) 100%);
    z-index: 1;
}
.l24-hero-container {
    width: 100%;
    max-width: 1300px !important;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}
.l24-hero-content {
    max-width: 900px;padding-top: 50px;
    padding-bottom: 50px;
}
.l24-breadcrumbs {
    font-size: 13px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.l24-breadcrumbs a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.2s;
}
.l24-breadcrumbs a:hover {
    color: #fff;
}
.l24-breadcrumbs span {
    color: #64748b;
}
.l24-hero-h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 15px 0;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.l24-rating-wrap {
    margin-bottom: 25px;
}
.l24-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}
.l24-feat-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
}
.l24-feat-item span {
    font-size: 16px;
    color: #25d366;
}
.l24-hero-divider {
    height: 1px;
    background: rgba(255,255,255,0.15);
    width: 100%;
    margin-bottom: 35px;
}
.l24-phones-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
}
.l24-ph-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    border-radius: 12px;
    font-weight: 800;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    line-height: 1;
}
.l24-ph-primary {
    background: #25d366;
    color: #fff;
    font-size: 22px;
    padding: 18px 40px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}
.l24-ph-primary:hover {
    background: #1ea850;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
    color: #fff;
}
.l24-ph-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 18px;
    padding: 16px 30px;
    backdrop-filter: blur(5px);
}
.l24-ph-secondary:hover {
    background: #fff;
    border-color: #fff;
    color: #0f172a;
    transform: translateY(-3px);
}
.l24-messengers-left {
    margin-top: 10px;
}
.l24-messengers-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.l24-btn-green {
    background: #25d366 !important;
    color: #fff !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    padding: 18px 45px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s;
}
.l24-btn-green:hover {
    transform: translateY(-3px);
    background: #1ea850 !important;
}
.l24-btn-green::before {
    content: '📞';
    font-size: 24px;
}
.l24-messengers-wrapper {
    margin-top: 30px;
}
.l24-msg-title {
    font-size: 12px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 12px;
    font-weight: 700;
}
.l24-social-grid {
    display: flex;
    gap: 15px;
}
.l24-social-item img {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    transition: transform 0.2s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.l24-social-item:hover img {
    transform: scale(1.1);
}
.l24-hero-anchors {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 25px;
    max-width: 450px;
}
.l24-anchor-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}
.l24-anchor-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.l24-anchor-btn span {
    font-size: 18px;
}
@media (max-width: 768px) {
    .l24-hero-section {
        min-height: auto;
        padding:40px 0 20px 0;
    }
    .l24-hero-h1 {
        font-size: 1.8rem;
    }
    .l24-hero-container {
        padding: 0 15px;
    }
    .l24-btn-green {
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
        font-size: 20px !important;
    }
}
@media (max-width: 600px) {
    .l24-phones-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .l24-ph-btn {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
    .l24-ph-primary {
        font-size: 20px;
        padding: 16px;
    }
    .l24-ph-secondary {
        font-size: 18px;
        padding: 14px;
    }
    .l24-hero-anchors {
        gap: 10px;
    }
    .l24-anchor-btn {
        font-size: 13px;
        padding: 12px 10px;
    }
}

/* ========== SUBCATEGORIES ========== */
.l24-sub-section {
    margin: 60px 0;
}
.l24-sub-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 25px;
    border-left: 5px solid #25d366;
    padding-left: 15px;
}
.l24-sub-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.l24-sub-card {
    position: relative;
    height: 140px;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.l24-sub-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.l24-sub-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}
.l24-sub-card:hover .l24-sub-bg {
    transform: scale(1.1);
}
.l24-sub-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}
.l24-sub-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    box-sizing: border-box;
}
.l24-sub-name {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.2;
}
.l24-sub-arrow {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    opacity: 0;
    transform: translateX(-10px);
    transition: 0.3s;
}
.l24-sub-card:hover .l24-sub-arrow {
    opacity: 1;
    transform: translateX(0);
    background: #25d366;
}
@media (max-width: 900px) {
    .l24-sub-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========== INFO SECTION ========== */
.l24-info-section {
    background-color: #f8fafc;
}
.l24-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}
.l24-info-card {
background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    margin: 20px 15px 2px;
}
.l24-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
.l24-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.l24-verified-tag {
    background: #dcfce7;
    color: #166534;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    align-self: flex-start;
}
.l24-data-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #334155;
}
.l24-data-list li {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
}
.l24-d-label {
    color: #94a3b8;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.l24-d-value {
    font-weight: 500;
}
.l24-schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 15px;
    color: #334155;
}
.l24-schedule-row:last-child {
    border-bottom: none;
}
.l24-sep-dashed {
    border-top: 2px dashed #e2e8f0;
    margin: 20px 0;
}
.l24-payment-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.l24-payment-icons span {
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    color: #475569;
    font-weight: 600;
}
.l24-card-promo {
    background: linear-gradient(135deg, #4f46e5 0%, #3b82f6 100%);
    color: #fff;
    border: none;
    position: relative;
    overflow: hidden;
}
.l24-card-promo::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.l24-card-promo::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.l24-promo-badge {
    background: #fbbf24;
    color: #000;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    align-self: flex-start;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}
.l24-promo-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px 0;
    position: relative;
    z-index: 2;
    line-height: 1.2;
}
.l24-promo-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}
.l24-promo-value {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-top: auto;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.l24-promo-note {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    margin-top: 5px;
    position: relative;
    z-index: 2;
}
@media (max-width: 900px) {
    .l24-info-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }
}

/* ========== PRICES ========== */
.l24-prices-pro {
    position: relative;
    background-color: #fff;
    padding: 60px 20px;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}
.l24-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.6;
    z-index: 0;
}
.l24-bg-spot {
    position: absolute;
    width: 1000px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.04) 0%, transparent 70%);
    top: -20%;
    right: -10%;
    z-index: 0;
    pointer-events: none;
}
.l24-sec-header {
    margin-bottom: 45px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.l24-sec-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}
.l24-sec-desc {
    color: #64748b;
    font-size: 1.1rem;
}
.l24-table-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    max-width: 1150px;
    margin: 0 auto 40px auto;
    position: relative;
    z-index: 2;
}
.l24-pro-table {
    width: 100%;
    border-collapse: collapse;
}
.l24-pro-table thead th {
    background: #f8fafc;
    color: #64748b;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    padding: 20px 30px;
    text-align: left;
    border-bottom: 2px solid #e2e8f0;
}
.l24-pro-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}
.l24-pro-table tbody tr:last-child {
    border-bottom: none;
}
.l24-pro-table tbody tr:hover {
    background-color: #fcfdfe;
    box-shadow: inset 4px 0 0 #25d366;
    transform: scale(1.005);
}
.l24-pro-table td {
    padding: 20px 30px;
    vertical-align: middle;
}
.l24-serv-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}
.l24-serv-desc {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.3;
}
.l24-price-col {
    text-align: right;
    font-size: 1.2rem;
    font-weight: 800;
    color: #16a34a;
    white-space: nowrap;
}
.l24-alert-box {
    max-width: 950px;
    margin: 0 auto;
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.1);
}
.l24-alert-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: -2px;
}
.l24-alert-content {
    font-size: 0.95rem;
    color: #78350f;
    line-height: 1.5;
}
.l24-calc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0f172a;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
    transition: 0.3s;
}
.l24-calc-btn:hover {
    transform: translateY(-3px);
    background: #1e293b;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.35);
}
@media (max-width: 600px) {
    .l24-pro-table thead {
        display: none;
    }
    .l24-pro-table tr {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    .l24-pro-table td {
        padding: 5px 0;
        border: none;
        width: 100%;
        text-align: center;
    }
    .l24-price-col {
        font-size: 1.4rem;
        margin-top: 5px;
    }
    .l24-serv-desc {
        margin-bottom: 10px;
    }
    .l24-pro-table tbody tr:hover {
        box-shadow: none;
        border-left: none;
        border-bottom: 4px solid #25d366;
    }
}

/* ========== CONSULT ========== */
.l24-consult-section {
    background: linear-gradient(135deg, #020617 0%, #1e293b 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    color: #fff;
}
.l24-bg-lines {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 10px);
    z-index: 1;
}
.l24-consult-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}
.l24-consult-text {
    flex: 1;
    max-width: 600px;
}
.l24-consult-badge {
    display: inline-block;
    background: rgba(37, 211, 102, 0.2);
    color: #4ade80;
    border: 1px solid rgba(37, 211, 102, 0.4);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.l24-consult-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    line-height: 1.2;
}
.l24-consult-desc {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
}
.l24-arrow-hint {
    margin-top: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
}
.l24-arrow-hint span {
    color: #25d366;
    font-size: 1.5rem;
    animation: l24-moveRight 1.5s infinite ease-in-out;
}
@keyframes l24-moveRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}
.l24-consult-icons {
    position: relative;
    padding: 35px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 300px;
}
.l24-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}
.l24-consult-phone-wrap {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}
.l24-status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #25d366;
    border-radius: 50%;
    margin-right: 5px;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    animation: l24-dotPulse 2s infinite;
}
@keyframes l24-dotPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.l24-big-link-phone {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    margin-top: 5px;
    transition: color 0.2s;
}
.l24-big-link-phone:hover {
    color: #25d366;
}
.l24-consult-sep {
    height: 1px;
    width: 100%;
    background: rgba(255,255,255,0.1);
    margin-bottom: 20px;
}
.l24-consult-icons .l24-social-grid {
    display: flex;
    gap: 15px !important;
    justify-content: center;
}
.l24-consult-icons .l24-social-item img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 14px !important;
    transition: transform 0.2s !important;
}
.l24-consult-icons .l24-social-item:hover img {
    transform: scale(1.1) !important;
}
@media (max-width: 900px) {
    .l24-consult-flex {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .l24-arrow-hint {
        display: none;
    }
    .l24-consult-icons {
        width: 100%;
        box-sizing: border-box;
    }
    .l24-big-link-phone {
        font-size: 1.5rem;
    }
}

/* ========== SEO / GALLERY ========== */
.l24-works-seo {
    position: relative;
    background-color: #fff;
    padding: 60px 20px;
    overflow: hidden;
}
.l24-gallery-imgs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.l24-gallery-imgs img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    transition: 0.3s;
    cursor: pointer;
}
.l24-gallery-imgs img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.l24-seo-article {
    background: #fff;
    max-width: 1250px;
    margin: 40px auto 0 auto;

    position: relative;
    z-index: 2;
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.6;
}
.l24-title-bar {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    border-left: 6px solid #25d366;
    padding-left: 20px;
    margin-bottom: 25px;
    line-height: 1.2;
}
.l24-text-cols-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}
.l24-adv-item strong {
    display: block;
    color: #0f172a;
    margin-bottom: 5px;
    font-size: 1.1rem;
}
.l24-adv-item p {
    margin: 0;
    font-size: 0.95rem;
    color: #64748b;
}
.l24-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}
.l24-step-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px 25px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.l24-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border-color: #25d366;
}
.l24-step-bg {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 90px;
    font-weight: 900;
    color: #f8fafc;
    z-index: 0;
    line-height: 1;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
}
.l24-step-card h4 {
    position: relative;
    z-index: 1;
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px 0;
}
.l24-step-card p {
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}
.l24-list-cols-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    padding: 0;
    list-style: none;
    margin-bottom: 40px;
}
.l24-list-cols-3 li {
    background: #f1f5f9;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    color: #475569;
}
.l24-quote-block {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    color: #92400e;
    padding: 20px;
    border-radius: 12px;
    margin-top: 30px;
    font-size: 0.95rem;
}
@media (max-width: 768px) {
    .l24-text-cols-2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .l24-list-cols-3 {
        grid-template-columns: 1fr 1fr;
    }
    .l24-step-bg {
        font-size: 70px;
        right: 10px;
    }
}

/* ========== FAQ ========== */
.l24-faq-section {
    background-color: #020617;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    color: #fff;
}
.l24-faq-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.05) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}
.l24-faq-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
}
.l24-faq-desc {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 50px;
    font-size: 1.1rem;
}
.l24-faq-grid {
    max-width: 900px;
    margin: 0 auto;
}
.l24-faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}
.l24-faq-item:hover {
    background: rgba(255,255,255,0.05);
}
.l24-faq-item.active {
    border-color: #25d366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.1);
    background: rgba(37, 211, 102, 0.05);
}
.l24-faq-head {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.l24-faq-q {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
    padding-right: 20px;
}
.l24-faq-icon {
    font-size: 24px;
    color: #25d366;
    font-weight: 300;
    transition: transform 0.3s ease;
    line-height: 1;
}
.l24-faq-item.active .l24-faq-icon {
    transform: rotate(45deg);
    color: #fff;
}
.l24-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.l24-faq-item.active .l24-faq-body {
    max-height: 300px;
}
.l24-faq-text {
    padding: 0 25px 25px 25px;
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 15px;
}
@media (max-width: 600px) {
    .l24-faq-title {
        font-size: 1.8rem;
    }
    .l24-faq-q {
        font-size: 1rem;
    }
}

/* ========== REVIEWS ========== */
.l24-reviews-section {
    background-color: #f8fafc;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 2;
}
.l24-rev-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    align-items: start;
}
.l24-rev-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.l24-rev-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.l24-rev-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #cbd5e1;
}
.l24-rev-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.l24-rev-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #314987;
}
.l24-av-blue { background: #3b82f6; }
.l24-av-green { background: #22c55e; }
.l24-av-orange { background: #f97316; }
.l24-av-purple { background: #8b5cf6; }
.l24-rev-name {
    font-weight: 700;
    color: #0f172a;
    font-size: 1rem;
}
.l24-rev-loc {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 2px;
}
.l24-rev-stars {
    color: #fbbf24;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 12px;
}
.l24-rev-text {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
}
.l24-rev-date {
    font-size: 0.8rem;
    color: #cbd5e1;
    text-align: right;
    margin-top: auto;
}
.l24-rev-sidebar {
    position: relative;
    height: 100%;
}
.l24-sticky-form-wrapper {
    position: sticky;
    top: 120px;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}
.l24-sticky-form-wrapper .l24-form-container {
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
    margin: 0 !important;
    max-width: 100% !important;
}
.l24-sticky-form-wrapper .l24-form-head {
    font-size: 1.6rem !important;
    margin-bottom: 10px !important;
}
@media (max-width: 992px) {
    .l24-rev-layout {
        grid-template-columns: 1fr;
    }
    .l24-sticky-form-wrapper {
        position: static;
        max-width: 600px;
        margin: 0 auto;
    }
    .l24-rev-sidebar {
        margin-top: 40px;
    }
}
@media (max-width: 600px) {
    .l24-rev-grid {
        grid-template-columns: 1fr;
    }
    .l24-sec-title {
        font-size: 1.8rem;
    }
}

/* Footer nav head */
.l24-nav-head {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.6;
    margin-bottom: 10px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 5px;
    grid-column: 1 / -1;
}

/* ========== SITEMAP/CATALOG SHORTCODE ========== */
.l24-sitemap-search {
    margin-bottom: 25px;
}
.l24-sitemap-search input {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    box-sizing: border-box;
}
.l24-sitemap-search input:focus {
    outline: none;
    border-color: #25d366;
}
.l24-sitemap-cols {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}
.l24-letter-group {
    break-inside: avoid;
}
.l24-letter-head {
    font-size: 1.1rem;
    font-weight: 800;
    color: #25d366;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid #e2e8f0;
}
.l24-sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.l24-sitemap-list li {
    margin-bottom: 6px;
}
.l24-sitemap-list a {
    text-decoration: none;
    color: #475569;
    font-size: 14px;
    transition: color 0.2s;
}
.l24-sitemap-list a:hover {
    color: #25d366;
}

/* ========== BLOG / ARCHIVE (записи) ========== */
.l24-blog-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 60px;
    font-family: 'Inter', sans-serif;
}
.l24-blog-header {
    text-align: center;
    margin-bottom: 50px;
}
.l24-blog-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px 0;
}
.l24-blog-desc {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 560px;
    margin: 0 auto;
}
.l24-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}
.l24-post-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.l24-post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.l24-post-thumb {
    aspect-ratio: 16/10;
    object-fit: cover;
    width: 100%;
    display: block;
}
.l24-post-thumb-wrap {
    background: #f1f5f9;
    overflow: hidden;
}
.l24-post-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.l24-post-meta {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 10px;
}
.l24-post-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
    line-height: 1.35;
}
.l24-post-card h2:hover {
    color: #25d366;
}
.l24-post-excerpt {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}
.l24-post-link {
    margin-top: 16px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #25d366;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.l24-pagination-wrap {
    margin-top: 50px;
    text-align: center;
}
.l24-pagination-wrap .nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}
.l24-pagination-wrap .page-numbers {
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    color: #475569;
    background: #f1f5f9;
    transition: 0.2s;
}
.l24-pagination-wrap .page-numbers:hover,
.l24-pagination-wrap .page-numbers.current {
    background: #25d366;
    color: #fff;
}
.l24-no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #64748b;
    font-size: 1.1rem;
}

/* Single post */
.l24-single-wrap {
    max-width: 780px;
    margin: 0 auto;
    padding: 40px 20px 60px;
    font-family: 'Inter', sans-serif;
}
.l24-single-header {
    margin-bottom: 32px;
}
.l24-single-meta {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 12px;
}
.l24-single-wrap .entry-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 20px 0;
    line-height: 1.25;
}
.l24-single-thumb {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.l24-single-wrap .entry-content {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #334155;
}
.l24-single-wrap .entry-content p {
    margin-bottom: 1.2em;
}
.l24-back-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #25d366;
    font-weight: 700;
    text-decoration: none;
    margin-top: 40px;
}
.l24-back-blog:hover {
    color: #1ea850;
}
@media (max-width: 600px) {
    .l24-posts-grid {
        grid-template-columns: 1fr;
    }
    .l24-blog-title {
        font-size: 1.9rem;
    }
}
/*
 * Дополнительные стили для страниц услуг lida24.by
 * Основные блоки (hero, sub, info, prices, consult, faq, reviews) в style.css
 */
/* Специфичные переопределения для страниц услуг при необходимости */
.kksr-legend { color: #cbd5e1 !important; font-size: 14px !important; }
