:root {
    --primary: #3498db;
    --primary-dark: #2980b9;
    --secondary: #2c3e50;
    --secondary-dark: #1a2530;
    --accent: #e74c3c;
    --accent-dark: #c0392b;
    --success: #2ecc71;
    --warning: #f39c12;
    --light: #f8f9fa;
    --gray-light: #ecf0f1;
    --gray: #bdc3c7;
    --gray-dark: #7f8c8d;
    --dark: #2c3e50;
    --text: #2c3e50;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-hover: 0 10px 25px rgba(0,0,0,0.15);
    --radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
}

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


.section {
    padding: 40px 0;
}

.section-title {
    text-align: center;
	position: relative;
    margin-bottom: 50px;
    font-size: 36px;
    color: var(--dark);
    position: relative;
    font-weight: 600;
}

.case-content-section .section-title:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 5%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--gray-dark);
    font-size: 18px;
}

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    flex-wrap: wrap;
}


.form-group.hidden-field {
    display: none !important;
}

/* Способ 3 - на случай, если что-то пойдет не так */
[data-name="page_url"] {
    display: none !important;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark);
}

.logo-icon {
    font-size: 32px;
    color: var(--primary);
    margin-right: 10px;
}

.logo-title {
    font-weight: 700;
    font-size: 22px;
    display: block;
}

.logo-description {
    font-size: 12px;
    color: var(--gray-dark);
    display: block;
}

.search-box form {
    display: flex;
    background: var(--light);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--gray-light);
    justify-content: space-between;
}

.search-field {
    border: none;
    padding: 10px 15px;
    width: 250px;
    background: transparent;
    outline: none;
}

.search-submit {
    background: var(--primary);
    border: none;
    color: var(--white);
    padding: 0 15px;
    cursor: pointer;
    transition: var(--transition);
}

.search-submit:hover {
    background: var(--primary-dark);
}

.city-section, .phone-section, .email-section {
    display: flex;
    align-items: center;
    margin-right: 15px;
}
.phone-section .callback-btn {
      margin-left:10px;
}
.contact-icon {
    margin-right: 8px;
    color: var(--primary);
}

.phone-with-messengers {
    display: flex;
    align-items: center;
}

.phone-content {
    display: flex;
    flex-direction: column;
}

.phone {
    font-weight: 600;
    font-size: 16px;
}

.messengers {
    display: flex;
    margin-top: 5px;
}

.messenger-link {
    color: var(--primary);
    margin-right: 10px;
    font-size: 18px;
    transition: var(--transition);
}

.messenger-link:hover {
    color: var(--primary-dark);
}

.callback-btn,
button,
input[type="submit"] {
    background: var(--accent);
    color: var(--white);
/* 	margin-left: 10px; */
    border: none;
	min-height: 40px;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.callback-btn:hover,
button:hover,
input[type="submit"]:hover {
    background: var(--accent-dark);
}

.callback-btn i {
    margin-right: 5px;
}

.email {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.email:hover {
    color: var(--primary-dark);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
}

.header-nav {
    border-top: 1px solid var(--gray-light);
    padding: 15px 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: space-between;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    padding: 5px 10px;
    border-radius: 4px;
}

.nav-menu a:hover {
    color: var(--primary);
    background: var(--light);
}

/* Хлебные крошки */
.breadcrumbs {
    background: var(--gray-light);
    padding: 15px 0;
}

.breadcrumbs-list {
    display: flex;
    list-style: none;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumbs-item {
    font-size: 14px;
}

.breadcrumbs-item:not(:last-child)::after {
    content: '›';
    margin-left: 10px;
    color: var(--gray-dark);
}

.breadcrumbs-link {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.breadcrumbs-current {
    color: var(--gray-dark);
}





/* Выравнивание кнопок search-submit и callback-btn */
.search-section {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    height: 100%;
}

.contact-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.phone-section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
}

.phone-section .callback-btn {
    height: 38px;
	transform: translateY(15px);
    margin-left: 15px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.search-submit {
    height: 38px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}





/* Hero Section Updates */
.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: start;
}

.hero-benefits {
    position: relative;
    z-index: 2;
}

.benefits-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.benefits-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefits-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(52, 152, 219, 0.3);
}

.benefits-icon {
    font-size: 32px;
    color: var(--accent);
    margin-right: 15px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefits-header h3 {
    color: var(--dark);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.benefits-list {
    list-style: none;
    margin-bottom: 25px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    transition: var(--transition);
    border-left: 3px solid var(--primary);
}

.benefits-list li:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(5px);
}

.benefits-list li i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.benefits-list li span {
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
}

.benefits-cta {
    width: 100%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    border: none;
    padding: 16px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    margin-left: 0;
}

.benefits-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    background: linear-gradient(135deg, var(--accent-dark), #a83232);
}
/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.1"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

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

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-features {
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.hero-feature i {
    color: var(--success);
    margin-right: 10px;
    font-size: 20px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-button {
    background: var(--accent);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-button-secondary {
    background: transparent !important;
    border: 2px solid var(--white);
}

.cta-button-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.about-it-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-it-description p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--gray-dark);
}

.about-it-needs h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--dark);
    text-align: center;
}

.needs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.need-item {
    display: flex;
    align-items: flex-start;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

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

.need-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 20px;
}

.need-content h4 {
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 18px;
}

.need-content p {
    color: var(--gray-dark);
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for About IT Section */
@media (max-width: 992px) {
    .about-it-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-it-needs h3 {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .need-item {
        flex-direction: column;
        text-align: center;
    }
    
    .need-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .need-item {
        padding: 15px;
    }
    
    .need-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
    position: relative;
    overflow: hidden;
}

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

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

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

.service-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 22px;
}

.service-card .service-title{
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 22px;
	font-weight: bold;
}
.service-card p {
    margin-bottom: 20px;
    color: var(--gray-dark);
}

.service-features {
    list-style: none;
    margin-top: 15px;
}

.service-features li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: '✓';
    color: var(--success);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

/* Benefits Section */
.benefits {
    background-color: var(--light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

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

.benefit-card .ben-title {
    margin-bottom: 5px;
    color: var(--dark);
	font-size: 18px;
	font-weight: bold;
}

/* .server-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.server-service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
    height: 100%;
    position: relative;
    overflow: hidden;
} */
.server-services-grid {
    display: flex;
	gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
    justify-content: center;
}
.empty-card-placeholder {
    visibility: hidden;
}
.server-service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
/*     height: 100%; */
    position: relative;
    overflow: hidden;
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    max-width: 380px;
}
.server-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.server-service-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.server-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.server-service-content h3 {
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 20px;
}

.server-service-details {
    list-style: none;
    margin: 20px 0;
}

.server-service-details li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    justify-content: space-between;
}

.server-service-details li:last-child {
    border-bottom: none;
}

.composition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.composition-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

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

.composition-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 20px;
    display: flex;
    align-items: center;
}

.composition-card h3 i {
    margin-right: 10px;
    color: var(--primary);
}
/* Cases Grid */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.case-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.case-header {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    padding: 25px;
    position: relative;
}

.case-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    opacity: 0.2;
}

.case-title {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.4;
}

.case-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;

    height: 100%;
}
/* .case-content .btn {
	margin-top: auto;
} */
.case-section {
    margin-bottom: 25px;
}

.case-section:last-child {
    margin-bottom: 0;
}

.case-section h4 {
    font-size: 18px;
    color: #3498db;
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.case-section h4 i {
    margin-right: 10px;
    font-size: 16px;
}

.case-problem {
    color: #5a6c7d;
    line-height: 1.6;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.case-solution, .case-result {
    list-style: none;
}

.case-solution li, .case-result li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #5a6c7d;
    line-height: 1.5;
}

.case-solution li:before {
    content: '✓';
    color: #2ecc71;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.case-result li:before {
    content: '★';
    color: #f39c12;
    position: absolute;
    left: 0;
}

.case-stats {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #ecf0f1;
	margin-bottom:20px;
}

.case-stat {
    text-align: center;
    flex: 1;
}

.case-stat-value {
    font-size: 24px;
    font-weight: bold;
    color: #3498db;
}

.case-stat-label {
    font-size: 14px;
    color: #7f8c8d;
}

/* Адаптивность */
@media (max-width: 992px) {
    .cases-grid {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .case-header {
        padding: 20px;
    }
    
    .case-content {
        padding: 20px;
    }
    
    .case-icon {
        font-size: 35px;
    }
    
    .case-title {
        font-size: 19px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 26px;
        margin-bottom: 40px;
    }
    
    .case-header {
        padding: 18px;
    }
    
    .case-content {
        padding: 18px;
    }
    
    .case-section {
        margin-bottom: 20px;
    }
    
    .case-section h4 {
        font-size: 17px;
    }
    
    .case-icon {
        font-size: 30px;
    }
    
    .case-stats {
        flex-direction: column;
        gap: 15px;
    }
}

/* Process Section */
.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 50px 0;
}

.process-steps:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--gray);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    color: var(--primary);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    font-weight: bold;
    transition: var(--transition);
}

.process-step:hover .step-number {
    background-color: var(--primary);
    color: var(--white);
}

.step-content {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-top: 10px;
}
.step-content .step-title {
/* 	margin-bottom: 15px; */
	font-size: larger;
    color: var(--dark);
    font-weight: bold;
}
#process .step-content {
	max-width: 1000px !important;
}

#cooperation .step-content {
    max-width: 1000px !important;
}
/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    text-align: center;
    border: 2px solid transparent;
	display: flex;
    flex-direction: column;
	min-height: 100%;
}
.pricing-card .btn {
	margin-top: auto;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-name {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.pricing-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1;
}

.pricing-period {
    font-size: 16px;
    color: var(--gray-dark);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
    color: var(--gray-dark);
    position: relative;
    padding-left: 25px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary);
    width: 100%;
    text-align: center;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
}

.btn-accent:hover {
    background: var(--accent-dark);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}



/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.03) 0%, rgba(44, 62, 80, 0.03) 100%);
    opacity: 0;
    transition: var(--transition);
}

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

.faq-item:hover::before {
    opacity: 1;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
    line-height: 1.4;
    position: relative;
    padding-left: 30px;
}

.faq-question::before {
    content: '?';
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.faq-answer {
    color: var(--gray-dark);
    line-height: 1.6;
    padding-left: 30px;
}

.services-table-container {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin: 40px 0;
}

.services-table {
    width: 100%;
    border-collapse: collapse;
}

.services-table thead {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
}

.services-table th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 18px;
}

.services-table td {
    padding: 20px;
    border-bottom: 1px solid var(--gray-light);
    vertical-align: top;
}

.services-table tr:hover {
    background-color: rgba(52, 152, 219, 0.05);
}

.service-table-icon {
    color: var(--primary);
    font-size: 24px;
    margin-right: 15px;
    vertical-align: middle;
}

.service-table-title {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark);
}

.service-table-feature {
    display: flex;
    margin-bottom: 8px;
    align-items: flex-start;
}

.service-table-feature i {
    color: var(--success);
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .services-table {
        display: block;
        overflow-x: auto;
    }
    
    .services-table th, 
    .services-table td {
        min-width: 200px;
    }
}

.calculator {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    margin: 40px 0;
}

.calculator-step {
    margin-bottom: 30px;
}

.calculator-step h4 {
    margin-bottom: 15px;
    color: var(--dark);
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider {
    flex: 1;
    -webkit-appearance: none;
    height: 8px;
    border-radius: 4px;
    background: var(--gray-light);
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: 3px solid var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.slider-value {
    min-width: 60px;
    text-align: center;
    font-weight: 600;
    color: var(--primary);
}

.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px 15px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.radio-label:hover {
    border-color: var(--primary);
}

.radio-label input {
    margin-right: 10px;
}

.calculator-result {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    margin-top: 30px;
}

.calculator-result h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.total-price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}
/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 70px 40px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    margin-bottom: 40px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	pointer-events: none;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.1"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.cta-section p {
    font-size: 18px;
/*     margin-bottom: 35px; */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.cta-feature i {
    color: var(--success);
    margin-right: 8px;
    font-size: 16px;
}

/* Map Section */
.map-section {
    background-color: var(--light);
}

.map-container {
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.map-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 400px;
    margin: 0 auto;
    font-weight: 500;
    color: var(--dark);
}

.map-address i {
    color: var(--accent);
    font-size: 18px;
}

/* Responsive Design for Map Section */
@media (max-width: 768px) {
    .map-container {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .map-container {
        height: 300px;
    }
    
    .map-address {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 12px;
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column .column-title {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column .column-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.footer-links li i {
    margin-right: 10px;
    color: var(--primary);
    width: 16px;
    text-align: center;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: var(--transition);
}

.footer-links a:hover::before {
    width: 100%;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 14px;
}

.footer-policies {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.policy-link {
    color: var(--gray);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
    position: relative;
}

.policy-link:hover {
    color: var(--primary);
}

.policy-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: var(--transition);
}

.policy-link:hover::after {
    width: 100%;
}

/* Сетка УТП */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* auto-fill рисует 4-ый эл-нт */
    gap: 30px;
    margin-top: 40px;
}

.usp-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

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

/* Этапы проведения аудита */
.audit-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
    position: relative;
}

.audit-steps::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
    opacity: 0.3;
}
#process .audit-steps::before {
	left : 50px;
}
#cooperation .audit-steps::before {
    left: 50px;
}
.audit-step {
    display: flex;
    gap: 20px;
    position: relative;
}

.step-content h3 {
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 20px;
}

/* Методология аудита */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.methodology-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.methodology-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 30px;
}
.modal-body {
    margin-top: 20px; /* Отступ от заголовка до формы */
}
/* Если в форме CF7 есть поля, которые нужно стилизовать отдельно */
.modal-body .wpcf7-form p {
    margin-bottom: 15px; /* Пример стиля для параграфов формы */
}

/* Стили для кнопок формы */
.modal-body .wpcf7-submit {
    /* Стили по умолчанию из вашей темы или кастомные */
    padding: 10px 20px;
    background-color: #007cba; /* Пример цвета */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.modal-body .wpcf7-submit:hover {
    background-color: #005a87; /* Пример цвета при наведении */
}

/* Тарифы аудита */
.audit-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.audit-pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    text-align: center;
    border: 2px solid var(--gray-light);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.audit-pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

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

.audit-pricing-card.featured:hover {
    transform: translateY(-5px) scale(1.02);
}

.audit-pricing-header {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gray-light);
}

.audit-pricing-name {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.audit-pricing-target {
    color: var(--gray-dark);
    font-size: 14px;
    margin-bottom: 15px;
}

.audit-pricing-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
    line-height: 1;
}

.audit-pricing-period {
    font-size: 14px;
    color: var(--gray-dark);
}

.audit-pricing-features {
    list-style: none;
    margin: 20px 0;
    text-align: left;
    flex-grow: 1;
}

.audit-pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
    color: var(--gray-dark);
    position: relative;
    padding-left: 25px;
}

.audit-pricing-features li:last-child {
    border-bottom: none;
}

.audit-pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary);
    width: 100%;
    text-align: center;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-accent {
    background: var(--accent);
    border-color: var(--accent);
}

.btn-accent:hover {
    background: var(--accent-dark);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Гарантии */
.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.guarantee-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.guarantee-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.guarantee-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SEO Blocks */
.seo-block {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    margin: 40px 0;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}

.seo-placeholder {
    color: var(--gray-dark);
    font-style: italic;
    text-align: center;
    padding: 20px;
    background-color: var(--light);
    border-radius: 5px;
    border: 1px dashed var(--gray);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-logo {
    display: flex;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
}

.mobile-logo i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 28px;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background: rgba(255,255,255,0.1);
}

.mobile-nav {
    flex-grow: 1;
    padding: 30px 20px;
    overflow-y: auto;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-list a {
    display: block;
    padding: 16px 20px;
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-nav-list a:hover {
    background: rgba(255,255,255,0.1);
    padding-left: 28px;
    color: var(--primary);
}

.mobile-menu-footer {
    padding: 30px 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-contact {
    margin-bottom: 25px;
}

.mobile-phone,
.mobile-email {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--white);
    font-size: 16px;
}

.mobile-phone a,
.mobile-email a {
    color: var(--primary);
    text-decoration: none;
}

.mobile-phone i,
.mobile-email i {
    color: var(--primary);
    width: 20px;
}

/* Анимация гамбургера → крестик */
.mobile-menu-btn {
    position: relative;
    z-index: 100;
}

.mobile-menu-btn i {
    transition: all 0.3s ease;
}

.mobile-menu-btn.active i.fas.fa-bars {
    opacity: 0;
    transform: rotate(90deg);
}

.mobile-menu-btn.active i.fas.fa-times {
    opacity: 1;
    transform: rotate(0);
}

.mobile-menu-btn i.fas.fa-times {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    opacity: 0;
}

/* Стили для улучшенного блока услуг */
.services-included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.service-included-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-included-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.service-included-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 30px 25px;
    text-align: center;
}

.service-included-icon {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.service-included-header h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.service-included-content {
    padding: 25px;
    flex-grow: 1;
}

.service-included-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-light);
}

.service-included-feature:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.feature-icon {
    color: var(--success);
    font-size: 18px;
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-text {
    flex-grow: 1;
}

.feature-text strong {
    display: block;
    color: var(--dark);
    margin-bottom: 5px;
    font-size: 16px;
}

.feature-text span {
    color: var(--gray-dark);
    font-size: 14px;
    line-height: 1.4;
    display: block;
}

.services-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 60px 0 40px;
}

.summary-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}

.summary-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.summary-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

.summary-card p {
    color: var(--gray-dark);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .services-included-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    
    .services-summary {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.target-audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.target-audience-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

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

/* Детали кейса */
.case-detail {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.case-detail-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 40px;
    border-radius: var(--radius);
    margin-bottom: 40px;
    position: relative;
}

.case-detail-title {
    font-size: 36px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.case-detail-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.case-detail-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.case-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.case-meta-item i {
    color: rgba(255, 255, 255, 0.8);
}

.case-content-section {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.case-content-section:last-child {
    margin-bottom: 0;
}

.case-content-section .section-title {
    color: var(--dark);
    font-size: 28px;
	text-align: left;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
    position: relative;
}

/* .case-content-section {
    content: '';
    position: absolute;
    bottom: -2px;
    transform: none;
    left: 0;
    width: 100px;
    height: 2px;
    background: var(--accent);
} */

.problem-description {
    background: #fff5f5;
    border-left: 4px solid var(--accent);
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
}

.timeline {
    position: relative;
    padding-left: 30px;
    margin: 30px 0;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
}

.timeline-phase {
    margin-bottom: 40px;
    position: relative;
}

.timeline-phase:before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary);
}

.phase-title {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.phase-content {
    background: var(--gray-light);
    padding: 20px;
    border-radius: var(--radius);
}
.phase-content ul {
    margin-left: 10px;
}
.solution-list {
    list-style: none;
    margin: 20px 0;
}

.solution-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.solution-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 18px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.result-card {
    background: var(--light);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

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

.result-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
}

.result-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.result-label {
    color: var(--gray-dark);
    font-size: 14px;
}

/* Сравнительная таблица */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    overflow: hidden;
}

.comparison-table th {
    background: var(--primary);
    color: var(--white);
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid var(--gray-light);
}

.comparison-table tr:nth-child(even) {
    background: var(--light);
}

.comparison-table tr:hover {
    background: rgba(52, 152, 219, 0.05);
}

.highlight {
    background-color: rgba(46, 204, 113, 0.1) !important;
    font-weight: 600;
}
/* Форма */
.audit-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 40px auto 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray);
    border-radius: 4px;
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    font-size: 16px;
    background: var(--white);
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.form-check-input {
    margin-right: 10px;
    margin-top: 5px;
}

.form-check-label {
    font-size: 14px;
    color: var(--gray-dark);
}

.form-check-label a {
    color: var(--primary);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}
/* CTA Section */
.case-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 60px 40px;
    border-radius: var(--radius);
    text-align: center;
    margin: 60px auto;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
}

/* .case-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.1"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
} */

.case-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.case-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* Кейсы Hero */
.cases-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.cases-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.1"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.cases-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

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

.cases-hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

 /* Контакты Hero - УМЕНЬШЕНЫ ОТСТУПЫ */
 .contacts-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 40px 0 20px;
    position: relative;
    overflow: hidden;
}

.contacts-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.1"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.contacts-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.contacts-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.contacts-hero p {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Уменьшенные отступы для контактной секции */
.contacts-section {
    padding: 40px 0;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.contact-info-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-light);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 24px;
}

.contact-info-header h3 {
    color: var(--dark);
    font-size: 24px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light);
    border-radius: var(--radius);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

.contact-detail-item:hover {
    background: var(--gray-light);
    transform: translateX(5px);
}

.contact-detail-icon {
    color: var(--primary);
    margin-right: 15px;
    font-size: 20px;
    width: 30px;
    text-align: center;
}

.contact-detail-content h4 {
    margin-bottom: 5px;
    color: var(--dark);
    font-size: 18px;
}

.contact-detail-content p {
    color: var(--gray-dark);
    margin: 0;
}

.contact-detail-link {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    margin-top: 5px;
}

.contact-detail-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Яндекс Карта */
.map-container {
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 10px;
    position: relative;
}

#map {
    width: 100%;
    height: 100%;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 300px;
}

.map-overlay h4 {
    margin-bottom: 10px;
    color: var(--dark);
}

.map-overlay p {
    color: var(--gray-dark);
    margin: 0;
    font-size: 14px;
}
/* Основные стили кнопки */
/* ОСНОВНЫЕ СТИЛИ КНОПКИ */
.btn-kontact {
    background: var(--accent);
    color: var(--white);
    padding: 15px 40px !important;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    border: 2px solid var(--accent);
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    
    /* Центрирование */
    display: block;
    margin: 0 auto !important;
    width: fit-content;
    min-width: 200px;
    text-align: center !important;
}

/* ЭФФЕКТЫ ПРИ ВЗАИМОДЕЙСТВИИ */
.btn-kontact:hover:not(:disabled):not([disabled]) {
    transform: translateY(-5px) !important; /* Смещение вверх на 5px */
    background: var(--accent-dark, #0056b3);
    border-color: var(--accent-dark, #0056b3);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-kontact:active:not(:disabled):not([disabled]) {
    transform: translateY(-2px) !important; /* Смещение вверх на 2px при нажатии */
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.btn-kontact:focus,
.btn-kontact:focus-visible {
    padding: 15px 40px !important;
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* СТИЛИ ДЛЯ ИКОНКИ (через before) */
.btn-kontact::before {
    content: "\f1d8";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    display: inline-block;
    font-size: 1.1em;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.btn-kontact:hover::before {
    transform: translateX(3px);
}

/* СОСТОЯНИЯ ФОРМЫ Contact Form 7 */
.wpcf7-form.sent .btn-kontact {
    opacity: 0.8;
}

.wpcf7-form .btn-kontact:disabled,
.wpcf7-form .btn-kontact[disabled],
.wpcf7-form.submitting .btn-kontact {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
    transform: none !important;
}

/* КОНТЕЙНЕР ДЛЯ ЦЕНТРИРОВАНИЯ */
.wpcf7-form.init div[style*="text-align: center"] {
    text-align: center !important;
}

/* СПИННЕР CF7 */
.wpcf7-form .btn-kontact .wpcf7-spinner {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}

/* ПЕРЕОПРЕДЕЛЕНИЕ КОНФЛИКТУЮЩИХ СТИЛЕЙ */
.callback-btn,
button,
input[type="submit"] {
    /* Пусто - просто для повышения специфичности при необходимости */
}

/* ФИНАЛЬНЫЙ СБРОС ДЛЯ ВСЕХ СОСТОЯНИЙ */
.wpcf7-form.init .wpcf7-submit.btn-kontact,
.wpcf7-form .wpcf7-submit.btn-kontact,
.wpcf7-form.invalid .wpcf7-submit.btn-kontact,
.wpcf7-form.sent .wpcf7-submit.btn-kontact,
.wpcf7-form.failed .wpcf7-submit.btn-kontact,
.wpcf7-form.spam .wpcf7-submit.btn-kontact {
    /* Наследуем все стили из .btn-kontact */
    background: var(--accent) !important;
    color: var(--white) !important;
    padding: 15px 40px !important;
    border: 2px solid var(--accent) !important;
    display: block !important;
    margin: 0 auto !important;
    width: fit-content;
    min-width: 200px;
    text-align: center !important;
}

/* ВАЖНО: разрешаем трансформацию при наведении для всех состояний */
.wpcf7-form.init .wpcf7-submit.btn-kontact:hover:not(:disabled):not([disabled]),
.wpcf7-form .wpcf7-submit.btn-kontact:hover:not(:disabled):not([disabled]),
.wpcf7-form.invalid .wpcf7-submit.btn-kontact:hover:not(:disabled):not([disabled]),
.wpcf7-form.sent .wpcf7-submit.btn-kontact:hover:not(:disabled):not([disabled]),
.wpcf7-form.failed .wpcf7-submit.btn-kontact:hover:not(:disabled):not([disabled]),
.wpcf7-form.spam .wpcf7-submit.btn-kontact:hover:not(:disabled):not([disabled]) {
    transform: translateY(-5px) !important;
    background: var(--accent-dark, #0056b3) !important;
    border-color: var(--accent-dark, #0056b3) !important;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15) !important;
}

.wpcf7-form.init .wpcf7-submit.btn-kontact:active:not(:disabled):not([disabled]),
.wpcf7-form .wpcf7-submit.btn-kontact:active:not(:disabled):not([disabled]),
.wpcf7-form.invalid .wpcf7-submit.btn-kontact:active:not(:disabled):not([disabled]),
.wpcf7-form.sent .wpcf7-submit.btn-kontact:active:not(:disabled):not([disabled]),
.wpcf7-form.failed .wpcf7-submit.btn-kontact:active:not(:disabled):not([disabled]),
.wpcf7-form.spam .wpcf7-submit.btn-kontact:active:not(:disabled):not([disabled]) {
    transform: translateY(-2px) !important;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1) !important;
}
/* Форма обратной связи */
.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    max-width: 500px;
	min-height: auto;
/* 	max-height: 830px;640px; */
    margin: 0 auto;
}

.wpcf7 form .wpcf7-response-output {
 	margin: 2em 0.5em 1em;
	padding: 0.2em 1em;
	border: 2px solid #00a0d2; /* Blue */
	color: black !important;
}

/* Убираем отступы у параграфов внутри checkbox-wrapper */
.checkbox-wrapper p {
    margin: 0; /* Убирает все отступы */
    padding: 0; /* Убирает все внутренние отступы */
}

/* Если нужно убрать только нижний отступ */
.checkbox-wrapper p {
    margin-bottom: 0;
    margin-top: 0;
}

/* Или регулируем расстояние между чек-боксами */
.checkbox-wrapper {
    margin-bottom: 5px; /* вместо стандартных 10-15px */
}

/* Для последнего элемента можно убрать отступ вообще */
.checkbox-wrapper:last-child {
    margin-bottom: 0;
}
.wpcf7-list-item-label{
	font-size: 14px;
}
.form-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}
/* .btn-kontact {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary);
	border-color: var(--accent);
    text-align: center;
    cursor: pointer;
    font-size: 16px;
}
.wpcf7-form.init input.wpcf7-submit.btn-kontact {
    text-align: center;
    padding: 15px 40px;
} */
.form-group {
    flex: 1;
    min-width: 250px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    font-size: 16px;
    transition: var(--transition);
    background-color: var(--light);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* Дополнительная информация */
.additional-info {
    margin-top: 60px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

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

.info-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 20px;
}

.info-card p {
    color: var(--gray-dark);
    margin-bottom: 20px;
}

/* О компании Hero */
.about-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.1"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

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

.about-hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
    display: block;
}

.hero-stat-text {
    font-size: 16px;
    opacity: 0.9;
}

/* Миссия и ценности */
.mission-section {
    background-color: var(--white);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark);
}

.mission-text p {
    margin-bottom: 20px;
    color: var(--gray-dark);
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

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

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

.value-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 20px;
}

.value-card p {
    color: var(--gray-dark);
    margin: 0;
}

/* Сравнение тарифов */
.comparison-table {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 50px;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr repeat(3, 1fr);
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.table-header div {
    padding: 20px;
    text-align: center;
}

.table-header div:first-child {
    text-align: left;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr repeat(3, 1fr);
    border-bottom: 1px solid var(--gray-light);
}

.table-row:last-child {
    border-bottom: none;
}

.table-row div {
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.table-row div:first-child {
    font-weight: 500;
    color: var(--dark);
}

.table-row:nth-child(even) {
    background-color: var(--light);
}

.feature-check {
    color: var(--success);
    font-weight: bold;
    justify-content: center;
}

.feature-cross {
    color: var(--gray);
    justify-content: center;
}

.feature-partial {
    color: var(--warning);
    justify-content: center;
}

/* ============================================
   СТИЛИ ДЛЯ СТРАНИЦ УСЛУГ
   ============================================ */

/* Hero Section */
.service-hero {
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
/* 83-40 */
/* Hero: бейджи над кнопками (страницы услуг) */
.service-hero .guarantee-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}
.service-hero .guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    font-size: 0.95rem;
    color: #fff;
}
.service-hero .guarantee-badge i {
    font-size: 1.2rem;
    opacity: 0.95;
}


/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a237e;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.feature-subtitle {
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 10px;
}

.feature-list {
    margin-top: 15px;
    padding-left: 20px;
    list-style: none;
}

.feature-list li {
    color: #666;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.feature-list li i {
    font-size: 0.9rem;
    margin-right: 8px;
    color: #4caf50;
}

.recovery-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.recovery-service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.recovery-service-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.recovery-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.recovery-service-content h3 {
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 20px;
}
.recovery-service-content .recovery-title {
	margin-bottom: 10px;
    color: var(--dark);
    font-size: 20px;
	font-weight: bold;
}
.recovery-service-details {
    list-style: none;
    margin: 20px 0;
}

.recovery-service-details li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    justify-content: space-between;
}

.recovery-service-details li:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--gray-dark);
}

.detail-value {
    color: var(--dark);
    font-weight: 600;
}
/* Device Cards */
.device-card .device-subtitle {
    font-weight: 600;
    color: #0d47a1;
    margin-bottom: 10px;
}

.device-card .device-desc {
    color: #666;
    margin-bottom: 15px;
}

.device-card .device-meta {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.device-card .device-methods,
.device-card .device-deadline {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.device-card .device-methods:last-child,
.device-card .device-deadline:last-child {
    margin-bottom: 0;
}


/* Tech */

.recovery-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}
.tech-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 25px;
	margin-top: 40px;
}

.tech-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}
.tech-card .tech-title {
	margin-bottom: 15px;
    color: var(--dark);
    font-size: 22px;
	font-weight: bold;
}
.tech-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.tech-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Price Table */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    overflow: hidden;
}

.pricing-table th {
    background: var(--primary);
    color: var(--white);
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.pricing-table td {
    padding: 15px;
    border-bottom: 1px solid var(--gray-light);
}

.pricing-table tr:nth-child(even) {
    background: var(--light);
}

.pricing-table tr:hover {
    background: rgba(52, 152, 219, 0.05);
}

.price-badge {
    background: var(--accent);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

 /* Таблица проблем */
.problems-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    overflow: hidden;
}

.problems-table th {
    background: var(--primary);
    color: var(--white);
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.problems-table td {
    padding: 15px;
    border-bottom: 1px solid var(--gray-light);
}

.problems-table tr:nth-child(even) {
    background: var(--light);
}

.problems-table tr:hover {
    background: rgba(52, 152, 219, 0.05);
}

.guarantee-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 50px;
    border-left: 3px solid var(--accent);
}

.guarantee-badge i {
    margin-right: 10px;
    color: var(--success);
}
.office-services-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}


.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.2);
    padding: 20px;
    z-index: 999999;
    display: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    animation: slideIn 0.3s ease;
}

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

.cookie-content p {
    margin: 0 0 20px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.cookie-accept {
    background: var(--accent);
	
    color: white;
}

.cookie-accept:hover {
    
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(31, 70, 152, 0.3);
}

.cookie-reject {
    background: #e9ecef;
    color: #495057;
}

.cookie-reject:hover {
    background: #dee2e6;
}

@media (max-width: 480px) {
    .cookie-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pain-point-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-left: 4px solid #e74c3c;
}

.pain-point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pain-point-header {
    background: #f8f9fa;
    padding: 25px;
    position: relative;
}

.pain-point-title {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.4;
    color: #2c3e50;
}

.pain-point-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: #e74c3c;
    opacity: 0.3;
}

.pain-point-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pain-point-description {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pain-point-solution {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);/*#2ecc71; */
    margin-top: auto;
}

.solution-title {
    font-weight: 600;
	color: var(--primary);
/*     color: #27ae60; */
    margin-bottom: 8px;
}

.office-services-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.services-by-domain {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}


.domain-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #3498db;
}

.domain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.domain-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.domain-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.domain-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
}

.service-plan-section {
    padding: 80px 0;
}

.service-plans {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.plan-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-card.featured {
    transform: scale(1.05);
    border: 2px solid #3498db;
    position: relative;
    z-index: 1;
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.plan-header {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    padding: 30px;
    text-align: center;
}

.plan-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.plan-period {
    font-size: 16px;
    opacity: 0.9;
}

.plan-featured-badge {
    background: #e74c3c;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

.plan-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid #ecf0f1;
    display: flex;
    align-items: center;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li:before {
    content: '✓';
    color: #2ecc71;
    margin-right: 10px;
    font-weight: bold;
}

.usp-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.usp-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.usp-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-list {
    list-style: none;
    margin-top: 20px;
}

.service-list li {
    padding: 10px 0;
    border-bottom: 1px solid #ecf0f1;
    display: flex;
    align-items: center;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li:before {
    content: '✓';
    color: #2ecc71;
    margin-right: 10px;
    font-weight: bold;
}

.service-plan-section {
    padding: 80px 0;
}

.service-plans {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.office-form-section {
    padding: 80px 0;
}

.office-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.form-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: #2c3e50;
}

.form-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #7f8c8d;
    font-size: 18px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}
.wpcf7-form.init .form-group label {
    display: inline;
}
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    outline: none;
}

.form-full {
    margin-bottom: 30px;
}

.form-consent {
    margin-bottom: 30px;
    font-size: 14px;
    color: #7f8c8d;
}

.form-button {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.form-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.2);
}
/* FAQ на странице услуг — аккордеон */
.faq-section .faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-section .faq-item {
    margin-bottom: 15px;
}
.faq-section .faq-question {
    cursor: pointer;
    user-select: none;
    margin-bottom: 0;
}
.faq-section .faq-answer {
    display: none;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid var(--light);
}
.faq-section .faq-item.active .faq-answer {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .features-grid,
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
    
    .price-table th,
    .price-table td {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}
/* .audit-steps::before {
	left: 25px;
} */

/* #process .audit-steps::before {
    left: 25px;
} */

/* Responsive Design */
@media (max-width: 992px) {
    .search-section {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }
    
    .search-input {
        width: 100%;
    }
    
    .header-top {
        gap: 15px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .faq-grid {
        gap: 20px;
    }
    
    .process-steps::before {
        left: 40px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
            
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr repeat(2, 1fr);
    }
    
    .table-header div:nth-child(4),
    .table-row div:nth-child(4) {
        display: none;
    }
}
@media (max-width: 1024px) {
	#process .step-content {
		max-width: 850px !important ;
	}
/* 	#process  */
	.audit-steps::before {
        left: 35px !important;
	}
	#cooperation .step-content {
		max-width: 850px !important ;
	}
}
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .header-right .contact-main {
        display: none;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .services-grid,
    .benefits-grid,
    .cases-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-step {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }
    
    .step-number {
        width: 80px;
        height: 80px;
        font-size: 24px;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .step-content {
        width: 100%;
        margin-left: 0;
        padding: 25px;
		    max-width: 1000px;
    }
    
    .step-content::before {
        display: none;
    }

    .cta-section {
        padding: 50px 25px;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .cta-section p {
        font-size: 16px;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-column {
        flex: 1 1 calc(50% - 30px);
    }
    
    .pricing-card {
        padding: 30px 25px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .process-steps {
        flex-direction: column;
    }

    .contact-info-card {
        padding: 30px;
    }

    .contacts-hero h1 {
        font-size: 32px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stat-number {
        font-size: 36px;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .table-header div:nth-child(3),
    .table-row div:nth-child(3) {
        display: none;
    }
	.contact-form {
		padding:20px;
	}
	.pain-points-grid {
		grid-template-columns:none;
	}
	.services-by-domain {
		grid-template-columns:none;
	}
	.service-plans {
		grid-template-columns:none;
	}
	
}

@media (max-width: 480px) {
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 26px;
        margin-bottom: 40px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .testimonial-card,
    .faq-item,
    .pricing-card {
        padding: 20px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
	.domain-title {
    	font-size: 16px;
	}
	#process .audit-steps::before {
		left: 39px !important;
	}
    .step-content {
        padding: 20px;
		width: 75%;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
    
    .cta-section h2 {
        font-size: 24px;
    }
    
    .footer-column {
        flex: 1 1 100%;
    }
    
    .footer-policies {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .pricing-name {
        font-size: 22px;
    }
    
    .pricing-price {
        font-size: 32px;
    }

    .contacts-section {
        padding: 20px 0;
    }
    .contact-info-card {
        padding: 25px;
    }
    
    .contact-detail-item {
        padding: 12px;
    }

    .hero-stats {
        gap: 20px;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .achievement-number {
        font-size: 36px;
    }

    .hero-stat-number {
        font-size: 32px;
    }
    
    .about-hero {
        padding: 80px 0 60px;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr 1fr;
        font-size: 14px;
    }
    
    .table-header div,
    .table-row div {
        padding: 12px 15px;
    }
	.methodology-grid {
		grid-template-columns: none;
	}
	.process-steps .step-content {
        padding: 20px;
        width: 100%;
    }
	.process-steps::before {
		display: none;
	}
}

@media (max-width: 375px) {
	.search-field {
		width: 210px;
	}
	.form-group {
		min-width: auto;
	}
	.audit-step {
		gap: 5px;
	}
	.usp-grid {
		grid-template-columns: none;
	}
	.recovery-services-grid {
		grid-template-columns: none;
	}
	.case-detail-title {
    	font-size: 32px;
	}
	
}
@media (max-width: 374px) {
	#process .audit-steps::before {
			left:29px !important;
		}
	.calculator-result {
		padding: 5px;
	}
}
/* Responsive Design for Hero Benefits */
@media (max-width: 992px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-benefits {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .benefits-card {
        padding: 25px 20px;
    }
    
    .benefits-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .benefits-icon {
        margin-right: 0;
    }
    
    .benefits-list li {
        padding: 10px 12px;
    }
	#process .audit-steps::before {
    	left: 35px;
	}
}

@media (max-width: 480px) {
    .benefits-card {
        padding: 20px 15px;
    }
    
    .benefits-header h3 {
        font-size: 18px;
    }
    
    .benefits-list li span {
        font-size: 14px;
    }
    
    .benefits-cta {
        padding: 14px 16px;
        font-size: 15px;
    }
}
/* Responsive Design for Hero Benefits */
@media (max-width: 992px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-benefits {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .benefits-card {
        padding: 25px 20px;
    }
    
    .benefits-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .benefits-icon {
        margin-right: 0;
    }
    
    .benefits-list li {
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .benefits-card {
        padding: 20px 15px;
    }
    
    .benefits-header h3 {
        font-size: 18px;
    }
    
    .benefits-list li span {
        font-size: 14px;
    }
    
    .benefits-cta {
        padding: 14px 16px;
        font-size: 15px;
    }
}

/* Общие стили для всех таблиц на планшетах */
@media (max-width: 992px) {
    .pricing-table th,
    .pricing-table td,
    .problems-table th,
    .problems-table td,
    .comparison-table th,
    .comparison-table td {
        padding: 14px 12px;
        font-size: 16px;
    }
    
    .price-badge {
        padding: 4px 10px;
        font-size: 13px;
    }
	
	.audit-pricing-grid {
/*         display: flex; */
        overflow-x: auto;
        gap: 20px;
        padding: 10px 5px 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        grid-template-columns: none; /* сбрасываем grid */
    }
    
    .audit-pricing-grid .audit-pricing-card {
        min-width: 320px; /* фиксированная ширина для планшетов */
        scroll-snap-align: start;
        flex-shrink: 0;
    }
    
    .audit-pricing-card.featured {
        transform: scale(1);
    }
    
    .audit-pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

/* Общие стили для всех таблиц на средних экранах */
@media (max-width: 768px) {
    .pricing-table,
    .problems-table,
    .comparison-table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .pricing-table th,
    .pricing-table td,
    .problems-table th,
    .problems-table td,
    .comparison-table th,
    .comparison-table td {
        padding: 14px 12px;
        font-size: 16px;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
        min-width: 240px;
    }
    
    .pricing-table th,
    .problems-table th,
    .comparison-table th {
        padding: 16px 12px;
        font-weight: 600;
    }
    
    .pricing-table th:first-child,
    .pricing-table td:first-child,
    .problems-table th:first-child,
    .problems-table td:first-child {
        min-width: 200px;
    }
    
    .comparison-table th:first-child,
    .comparison-table td:first-child {
        min-width: 180px;
        font-weight: 600;
    }
    
    .comparison-table td.highlight {
        background-color: rgba(46, 204, 113, 0.1) !important;
        font-weight: 600;
        border-left: 3px solid #2ecc71;
        border-right: 3px solid #2ecc71;
    }
    
    .comparison-table tr:last-child td.highlight {
        border-bottom: 3px solid #2ecc71;
    }
    
    .comparison-table tr:first-child td.highlight {
        border-top: 3px solid #2ecc71;
    }
    
    .price-badge {
        padding: 4px 10px;
        font-size: 13px;
    }
	
	 .audit-pricing-grid {
/*         display: flex; */
        overflow-x: auto;
        gap: 15px;
        padding: 10px 5px 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        grid-template-columns: none;
    }
    
    .audit-pricing-grid .audit-pricing-card {
        min-width: 280px; /* меньшая ширина для мобильных */
        scroll-snap-align: start;
        flex-shrink: 0;
        padding: 25px 15px;
    }
    
    .audit-pricing-card.featured {
        transform: scale(1);
    }
    
    .audit-pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .audit-pricing-price {
        font-size: 30px;
    }
}

/* Общие стили для всех таблиц на телефонах */
@media (max-width: 480px) {
    .pricing-table,
    .problems-table,
    .comparison-table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: var(--radius);
        margin: 20px 0;
    }
    
    .pricing-table th,
    .pricing-table td,
    .problems-table th,
    .problems-table td,
    .comparison-table th,
    .comparison-table td {
        padding: 14px 10px;
        font-size: 16px;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
        min-width: 240px;
    }
    
    .pricing-table th,
    .problems-table th,
    .comparison-table th {
        padding: 16px 10px;
        font-weight: 600;
    }
    
    .pricing-table th:first-child,
    .pricing-table td:first-child,
    .problems-table th:first-child,
    .problems-table td:first-child,
    .comparison-table th:first-child,
    .comparison-table td:first-child {
        min-width: 200px;
        font-weight: 600;
    }
    
    .comparison-table td.highlight {
        background-color: rgba(46, 204, 113, 0.15) !important;
        font-weight: 600;
        position: relative;
        border-left: 3px solid #2ecc71;
        border-right: 3px solid #2ecc71;
        box-shadow: inset 0 0 10px rgba(46, 204, 113, 0.1);
    }
    
    .comparison-table tr:last-child td.highlight {
        border-bottom: 1px solid #2ecc71;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }
    
    .comparison-table tr:first-child td.highlight {
        border-top: 1px solid #2ecc71;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }
    
    .comparison-table tr:nth-child(even) td:first-child {
        background-color: rgba(52, 152, 219, 0.05);
    }
    
    .price-badge {
        padding: 4px 8px;
        font-size: 13px;
        border-radius: 20px;
        white-space: nowrap;
    }
	
	    .audit-pricing-grid {
/*         display: flex; */
        overflow-x: auto;
        gap: 12px;
        padding: 10px 5px 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        grid-template-columns: none;
    }
    
    .audit-pricing-grid .audit-pricing-card {
        min-width: 260px;
        scroll-snap-align: start;
        flex-shrink: 0;
        padding: 20px 12px;
    }
    
    .audit-pricing-name {
        font-size: 20px;
    }
    
    .audit-pricing-price {
        font-size: 28px;
    }
    
    .audit-pricing-features li {
        font-size: 14px;
        padding: 8px 0 8px 22px;
    }
}

