/* 
 * ProtonCoreCapital.com - Платформа для анализа энергетических рынков Казахстана
 * CSS Framework: Custom (без фреймворков)
 * Author: EnerVision Team
 */

/* ===== CSS RESET & BASE STYLES ===== */
:root {
    /* Primary Colors */
    --ev-teal: #0A6E7A;
    --ev-blue: #0081CF;
    --ev-gold: #FFB400;
    
    /* Secondary Colors */
    --ev-gray: #2D3748;
    --ev-slate: #E2E8F0;
    --ev-mint: #38B2AC;
    
    /* Background Colors */
    --ev-white: #FFFFFF;
    --ev-light-gray: #F7FAFC;
    --ev-off-white: #F1F5F9;
    
    /* Accent Colors */
    --ev-red: #E53E3E;
    --ev-green: #38A169;
    --ev-info: #3182CE;
    
    /* Typography */
    --ev-font-primary: 'Barlow', sans-serif;
    --ev-font-secondary: 'PT Serif', serif;
    
    /* Spacing */
    --ev-space-xs: 0.25rem;
    --ev-space-sm: 0.5rem;
    --ev-space-md: 1rem;
    --ev-space-lg: 1.5rem;
    --ev-space-xl: 2rem;
    --ev-space-xxl: 3rem;
    --ev-space-xxxl: 4rem;
    
    /* Borders */
    --ev-border-radius-sm: 0.25rem;
    --ev-border-radius-md: 0.5rem;
    --ev-border-radius-lg: 1rem;
    
    /* Shadows */
    --ev-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --ev-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --ev-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --ev-transition-fast: 0.2s ease;
    --ev-transition-normal: 0.3s ease;
    --ev-transition-slow: 0.5s ease;
    
    /* Container widths */
    --ev-container-max: 1200px;
    --ev-container-narrow: 900px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--ev-font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--ev-gray);
    background-color: var(--ev-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.iti {
  width: 100%;
}

main {
    flex: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--ev-blue);
    text-decoration: none;
    transition: color var(--ev-transition-fast);
}

a:hover, a:focus {
    color: var(--ev-teal);
    text-decoration: underline;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ev-font-primary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--ev-space-md);
    color: var(--ev-gray);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--ev-space-md);
}

/* ===== UTILITY CLASSES ===== */
.ev-container {
    width: 100%;
    max-width: var(--ev-container-max);
    margin: 0 auto;
    padding: 0 var(--ev-space-lg);
}

.ev-container--narrow {
    max-width: var(--ev-container-narrow);
}

.ev-text-center {
    text-align: center;
}

.ev-text-right {
    text-align: right;
}

.ev-text-left {
    text-align: left;
}

.ev-hidden {
    display: none !important;
}

.ev-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ===== BUTTONS ===== */
.ev-button {
    display: inline-block;
    font-family: var(--ev-font-primary);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
    padding: 0.75rem 1.5rem;
    border-radius: var(--ev-border-radius-md);
    cursor: pointer;
    transition: all var(--ev-transition-fast);
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
}

.ev-button:hover, .ev-button:focus {
    text-decoration: none;
}

.ev-button--primary {
    background: linear-gradient(135deg, var(--ev-teal), var(--ev-blue));
    color: var(--ev-white);
    border-color: transparent;
}

.ev-button--primary:hover, .ev-button--primary:focus {
    background: linear-gradient(135deg, var(--ev-blue), var(--ev-teal));
    color: var(--ev-white);
    box-shadow: var(--ev-shadow-md);
}

.ev-button--outline {
    background-color: transparent;
    color: var(--ev-teal);
    border-color: var(--ev-teal);
}

.ev-button--outline:hover, .ev-button--outline:focus {
    background-color: var(--ev-teal);
    color: var(--ev-white);
}

.ev-button--sm {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

.ev-button--lg {
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

.ev-button--full {
    width: 100%;
    display: block;
}

.ev-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===== HEADER ===== */
.ev-header {
    background-color: var(--ev-white);
    box-shadow: var(--ev-shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.ev-header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--ev-container-max);
    margin: 0 auto;
    padding: var(--ev-space-md) var(--ev-space-lg);
}

.ev-logo {
    display: flex;
    align-items: center;
}

.ev-logo img {
    max-height: 48px;
    width: auto;
}

.ev-nav {
    display: flex;
    align-items: center;
}

.ev-nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--ev-space-sm);
}

.ev-nav__toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--ev-gray);
    margin: 5px 0;
    transition: transform var(--ev-transition-fast), opacity var(--ev-transition-fast);
}

.ev-nav__list {
    display: flex;
    gap: var(--ev-space-lg);
}

.ev-nav__item a {
    color: var(--ev-gray);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding: var(--ev-space-sm) 0;
}

.ev-nav__item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--ev-teal), var(--ev-blue));
    transition: width var(--ev-transition-normal);
}

.ev-nav__item a:hover::after,
.ev-nav__item a:focus::after,
.ev-nav__item--active a::after {
    width: 100%;
}

.ev-nav__item--active a {
    color: var(--ev-teal);
}

/* ===== INTRO SECTION ===== */
.ev-intro {
    display: flex;
    align-items: center;
    padding: var(--ev-space-xxl) var(--ev-space-lg);
    max-width: var(--ev-container-max);
    margin: 0 auto;
    gap: var(--ev-space-xl);
}

.ev-intro__content {
    flex: 1;
}

.ev-intro__title {
    font-size: 3rem;
    margin-bottom: var(--ev-space-lg);
    background: linear-gradient(135deg, var(--ev-teal), var(--ev-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.ev-intro__text {
    font-size: 1.25rem;
    margin-bottom: var(--ev-space-xl);
    color: var(--ev-gray);
}

.ev-intro__actions {
    display: flex;
    gap: var(--ev-space-md);
}

.ev-intro__visual {
    flex: 1;
    position: relative;
}

.ev-intro__image {
    border-radius: var(--ev-border-radius-lg);
    box-shadow: var(--ev-shadow-lg);
    width: 100%;
}

/* ===== SECTION STYLES ===== */
.ev-section__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--ev-space-xxl);
}

.ev-section__title {
    font-size: 2.5rem;
    margin-bottom: var(--ev-space-md);
    color: var(--ev-teal);
}

.ev-section__subtitle {
    font-size: 1.25rem;
    color: var(--ev-gray);
}

/* ===== FEATURES SECTION ===== */
.ev-features {
    padding: var(--ev-space-xxxl) var(--ev-space-lg);
    background-color: var(--ev-light-gray);
}

.ev-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--ev-space-xl);
    max-width: var(--ev-container-max);
    margin: 0 auto;
}

.ev-feature {
    background-color: var(--ev-white);
    border-radius: var(--ev-border-radius-md);
    padding: var(--ev-space-xl);
    box-shadow: var(--ev-shadow-md);
    transition: transform var(--ev-transition-normal), box-shadow var(--ev-transition-normal);
}

.ev-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--ev-shadow-lg);
}

.ev-feature__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ev-teal), var(--ev-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--ev-space-lg);
}

.ev-feature__icon i {
    font-size: 1.75rem;
    color: var(--ev-white);
}

.ev-feature__title {
    font-size: 1.5rem;
    margin-bottom: var(--ev-space-md);
    color: var(--ev-gray);
}

.ev-feature__text {
    color: var(--ev-gray);
    margin-bottom: 0;
}

/* ===== MARKET INSIGHTS SECTION ===== */
.ev-market-insights {
    padding: var(--ev-space-xxxl) var(--ev-space-lg);
}

.ev-market-insights__content {
    display: flex;
    max-width: var(--ev-container-max);
    margin: 0 auto;
    gap: var(--ev-space-xl);
    align-items: center;
}

.ev-market-insights__visual {
    flex: 1;
}

.ev-market-insights__image {
    border-radius: var(--ev-border-radius-lg);
    box-shadow: var(--ev-shadow-lg);
    width: 100%;
}

.ev-market-insights__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--ev-space-lg);
}

.ev-news-item {
    padding-bottom: var(--ev-space-lg);
    border-bottom: 1px solid var(--ev-slate);
}

.ev-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ev-news-item__date {
    font-size: 0.875rem;
    color: var(--ev-teal);
    display: block;
    margin-bottom: var(--ev-space-sm);
}

.ev-news-item__title {
    font-size: 1.25rem;
    margin-bottom: var(--ev-space-sm);
}

.ev-news-item__excerpt {
    margin-bottom: 0;
}

/* ===== CASE STUDIES SECTION ===== */
.ev-case-studies {
    padding: var(--ev-space-xxxl) var(--ev-space-lg);
    background-color: var(--ev-light-gray);
}

.ev-case-studies__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: var(--ev-space-xl);
    max-width: var(--ev-container-max);
    margin: 0 auto;
}

.ev-case {
    background-color: var(--ev-white);
    border-radius: var(--ev-border-radius-md);
    overflow: hidden;
    box-shadow: var(--ev-shadow-md);
}

.ev-case__visual {
    height: 250px;
    overflow: hidden;
}

.ev-case__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ev-transition-normal);
}

.ev-case:hover .ev-case__image {
    transform: scale(1.05);
}

.ev-case__content {
    padding: var(--ev-space-xl);
}

.ev-case__title {
    font-size: 1.25rem;
    margin-bottom: var(--ev-space-md);
    color: var(--ev-teal);
}

.ev-case__text {
    margin-bottom: 0;
}

/* ===== FEEDBACK SECTION ===== */
.ev-feedback {
    padding: var(--ev-space-xxxl) var(--ev-space-lg);
}

.ev-feedback__content {
    display: flex;
    max-width: var(--ev-container-max);
    margin: 0 auto;
    gap: var(--ev-space-xl);
}

.ev-feedback__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--ev-space-lg);
}

.ev-feedback__text {
    font-size: 1.125rem;
}

.ev-feedback__image {
    margin-top: auto;
}

.ev-feedback__visual {
    border-radius: var(--ev-border-radius-md);
    box-shadow: var(--ev-shadow-md);
    width: 100%;
}

.ev-form {
    flex: 1;
    background-color: var(--ev-white);
    border-radius: var(--ev-border-radius-md);
    padding: var(--ev-space-xl);
    box-shadow: var(--ev-shadow-md);
}

.ev-form__group {
    margin-bottom: var(--ev-space-lg);
}

.ev-form__label {
    display: block;
    margin-bottom: var(--ev-space-sm);
    font-weight: 500;
}

.ev-form__input,
.ev-form__textarea,
.ev-form__select {
    width: 100%;
    padding: var(--ev-space-md);
    border: 1px solid var(--ev-slate);
    border-radius: var(--ev-border-radius-sm);
    font-family: var(--ev-font-primary);
    font-size: 1rem;
    transition: border-color var(--ev-transition-fast);
}

.ev-form__input:focus,
.ev-form__textarea:focus,
.ev-form__select:focus {
    outline: none;
    border-color: var(--ev-teal);
}

.ev-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.ev-form__group--checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--ev-space-sm);
}

.ev-form__checkbox {
    margin-top: 0.25rem;
}

.ev-form__checkbox-label {
    font-size: 0.875rem;
}

.ev-form__actions {
    margin-top: var(--ev-space-xl);
}

.ev-form__row {
    display: flex;
    gap: var(--ev-space-lg);
}

.ev-form__row .ev-form__group {
    flex: 1;
}

/* ===== FOOTER ===== */
.ev-footer {
    background-color: var(--ev-gray);
    color: var(--ev-white);
    padding: var(--ev-space-xxl) var(--ev-space-lg) var(--ev-space-lg);
}

.ev-footer__main {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ev-space-xxl);
    max-width: var(--ev-container-max);
    margin: 0 auto;
    margin-bottom: var(--ev-space-xxl);
}

.ev-footer__company {
    flex: 1;
    min-width: 300px;
}

.ev-footer__logo {
    display: inline-block;
    margin-bottom: var(--ev-space-lg);
}

.ev-footer__description {
    color: var(--ev-slate);
    margin-bottom: 0;
}

.ev-footer__navigation {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: var(--ev-space-xl);
}

.ev-footer__column {
    flex: 1;
    min-width: 200px;
}

.ev-footer__heading {
    color: var(--ev-white);
    font-size: 1.25rem;
    margin-bottom: var(--ev-space-lg);
    position: relative;
}

.ev-footer__heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--ev-teal), var(--ev-blue));
}

.ev-footer__links li {
    margin-bottom: var(--ev-space-sm);
}

.ev-footer__links a {
    color: var(--ev-slate);
    transition: color var(--ev-transition-fast);
}

.ev-footer__links a:hover,
.ev-footer__links a:focus {
    color: var(--ev-white);
    text-decoration: none;
}

.ev-footer__contact-info {
    font-style: normal;
    color: var(--ev-slate);
}

.ev-footer__contact-info p {
    margin-bottom: var(--ev-space-sm);
}

.ev-footer__contact-info a {
    color: var(--ev-slate);
    transition: color var(--ev-transition-fast);
}

.ev-footer__contact-info a:hover,
.ev-footer__contact-info a:focus {
    color: var(--ev-white);
}

.ev-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--ev-space-lg);
    text-align: center;
    max-width: var(--ev-container-max);
    margin: 0 auto;
}

.ev-footer__copyright {
    color: var(--ev-slate);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ===== COOKIE CONSENT ===== */
.ev-cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--ev-white);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    padding: var(--ev-space-lg);
    z-index: 9999;
    display: none;
}

.ev-cookie-consent__content {
    max-width: var(--ev-container-max);
    margin: 0 auto;
}

.ev-cookie-consent__title {
    margin-bottom: var(--ev-space-sm);
    font-size: 1.25rem;
}

.ev-cookie-consent__text {
    margin-bottom: var(--ev-space-lg);
    font-size: 0.875rem;
}

.ev-cookie-consent__actions {
    display: flex;
    gap: var(--ev-space-md);
    flex-wrap: wrap;
}

/* ===== COOKIE SETTINGS MODAL ===== */
.ev-cookie-settings {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: var(--ev-space-lg);
    display: none;
}

.ev-cookie-settings__content {
    background-color: var(--ev-white);
    border-radius: var(--ev-border-radius-md);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.ev-cookie-settings__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--ev-space-lg);
    border-bottom: 1px solid var(--ev-slate);
}

.ev-cookie-settings__title {
    margin-bottom: 0;
    font-size: 1.5rem;
}

.ev-cookie-settings__close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--ev-gray);
}

.ev-cookie-settings__body {
    padding: var(--ev-space-lg);
}

.ev-cookie-settings__text {
    margin-bottom: var(--ev-space-lg);
}

.ev-cookie-category {
    margin-bottom: var(--ev-space-lg);
    padding-bottom: var(--ev-space-lg);
    border-bottom: 1px solid var(--ev-slate);
}

.ev-cookie-category:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ev-cookie-category__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.ev-cookie-category__info {
    flex: 1;
}

.ev-cookie-category__title {
    font-size: 1.125rem;
    margin-bottom: var(--ev-space-sm);
}

.ev-cookie-category__description {
    font-size: 0.875rem;
    margin-bottom: 0;
}

.ev-cookie-category__toggle {
    position: relative;
    width: 50px;
    height: 24px;
    margin-left: var(--ev-space-md);
}

.ev-cookie-category__toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.ev-cookie-category__toggle label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--ev-slate);
    border-radius: 34px;
    cursor: pointer;
    transition: background-color var(--ev-transition-fast);
}

.ev-cookie-category__toggle label::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: var(--ev-white);
    border-radius: 50%;
    transition: transform var(--ev-transition-fast);
}

.ev-cookie-category__toggle input:checked + label {
    background-color: var(--ev-teal);
}

.ev-cookie-category__toggle input:checked + label::before {
    transform: translateX(26px);
}

.ev-cookie-category__toggle input:disabled + label {
    opacity: 0.6;
    cursor: not-allowed;
}

.ev-cookie-settings__footer {
    padding: var(--ev-space-lg);
    border-top: 1px solid var(--ev-slate);
    display: flex;
    justify-content: flex-end;
    gap: var(--ev-space-md);
}

/* ===== PAGE HEADER ===== */
.ev-page-header {
    background: linear-gradient(135deg, var(--ev-teal), var(--ev-blue));
    color: var(--ev-white);
    padding: var(--ev-space-xxxl) var(--ev-space-lg);
    text-align: center;
}

.ev-page-header__content {
    max-width: var(--ev-container-max);
    margin: 0 auto;
}

.ev-page-header__title {
    color: var(--ev-white);
    font-size: 3rem;
    margin-bottom: var(--ev-space-md);
}

.ev-page-header__subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== SOLUTIONS PAGE ===== */
.ev-solutions {
    padding: var(--ev-space-xxxl) var(--ev-space-lg);
    max-width: var(--ev-container-max);
    margin: 0 auto;
}

.ev-solution {
    display: flex;
    gap: var(--ev-space-xl);
    margin-bottom: var(--ev-space-xxxl);
    align-items: center;
}

.ev-solution:last-child {
    margin-bottom: 0;
}

.ev-solution--reverse {
    flex-direction: row-reverse;
}

.ev-solution__content {
    flex: 1;
}

.ev-solution__title {
    font-size: 2rem;
    color: var(--ev-teal);
    margin-bottom: var(--ev-space-md);
}

.ev-solution__description {
    font-size: 1.125rem;
    margin-bottom: var(--ev-space-lg);
}

.ev-solution__features {
    list-style: disc;
    padding-left: var(--ev-space-xl);
}

.ev-solution__features li {
    margin-bottom: var(--ev-space-sm);
}

.ev-solution__visual {
    flex: 1;
}

.ev-solution__image {
    border-radius: var(--ev-border-radius-lg);
    box-shadow: var(--ev-shadow-lg);
    width: 100%;
}

/* ===== INTEGRATION SECTION ===== */
.ev-integration {
    padding: var(--ev-space-xxxl) var(--ev-space-lg);
    background-color: var(--ev-light-gray);
}

.ev-integration__content {
    display: flex;
    max-width: var(--ev-container-max);
    margin: 0 auto;
    gap: var(--ev-space-xl);
    align-items: center;
}

.ev-integration__visual {
    flex: 1;
}

.ev-integration__image {
    border-radius: var(--ev-border-radius-lg);
    box-shadow: var(--ev-shadow-lg);
    width: 100%;
}

.ev-integration__info {
    flex: 1;
}

.ev-integration__list {
    display: flex;
    flex-direction: column;
    gap: var(--ev-space-lg);
}

.ev-integration__item {
    display: flex;
    gap: var(--ev-space-lg);
}

.ev-integration__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--ev-teal), var(--ev-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ev-integration__icon i {
    font-size: 1.5rem;
    color: var(--ev-white);
}

.ev-integration__text h3 {
    font-size: 1.25rem;
    margin-bottom: var(--ev-space-sm);
    color: var(--ev-teal);
}

.ev-integration__text p {
    margin-bottom: 0;
}

/* ===== CONTACT BANNER ===== */
.ev-contact-banner {
    background: linear-gradient(135deg, var(--ev-teal), var(--ev-blue));
    color: var(--ev-white);
    padding: var(--ev-space-xxl) var(--ev-space-lg);
    text-align: center;
}

.ev-contact-banner__content {
    max-width: var(--ev-container-narrow);
    margin: 0 auto;
}

.ev-contact-banner__title {
    color: var(--ev-white);
    font-size: 2rem;
    margin-bottom: var(--ev-space-md);
}

.ev-contact-banner__text {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--ev-space-lg);
}

/* ===== WHY US PAGE ===== */
.ev-advantages {
    padding: var(--ev-space-xxxl) var(--ev-space-lg);
    max-width: var(--ev-container-max);
    margin: 0 auto;
}

.ev-advantages__intro {
    max-width: 800px;
    margin: 0 auto var(--ev-space-xxl);
    text-align: center;
    font-size: 1.125rem;
}

.ev-advantages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--ev-space-xl);
}

.ev-advantage {
    display: flex;
    gap: var(--ev-space-lg);
    padding: var(--ev-space-lg);
    background-color: var(--ev-white);
    border-radius: var(--ev-border-radius-md);
    box-shadow: var(--ev-shadow-md);
    transition: transform var(--ev-transition-normal);
}

.ev-advantage:hover {
    transform: translateY(-5px);
}

.ev-advantage__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ev-teal), var(--ev-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ev-advantage__icon i {
    font-size: 1.75rem;
    color: var(--ev-white);
}

.ev-advantage__content {
    flex: 1;
}

.ev-advantage__title {
    font-size: 1.25rem;
    margin-bottom: var(--ev-space-sm);
    color: var(--ev-teal);
}

.ev-advantage__text {
    margin-bottom: 0;
}

/* ===== EXPERTISE SECTION ===== */
.ev-expertise {
    padding: var(--ev-space-xxxl) var(--ev-space-lg);
    background-color: var(--ev-light-gray);
}

.ev-expertise__content {
    display: flex;
    max-width: var(--ev-container-max);
    margin: 0 auto;
    gap: var(--ev-space-xl);
    align-items: center;
}

.ev-expertise__visual {
    flex: 1;
}

.ev-expertise__image {
    border-radius: var(--ev-border-radius-lg);
    box-shadow: var(--ev-shadow-lg);
    width: 100%;
}

.ev-expertise__info {
    flex: 1;
}

.ev-expertise__info p {
    margin-bottom: var(--ev-space-lg);
}

.ev-expertise__list {
    list-style: disc;
    padding-left: var(--ev-space-xl);
    margin-bottom: var(--ev-space-lg);
}

.ev-expertise__list li {
    margin-bottom: var(--ev-space-sm);
}

/* ===== CERTIFICATIONS SECTION ===== */
.ev-certifications {
    padding: var(--ev-space-xxxl) var(--ev-space-lg);
}

.ev-certifications__content {
    display: flex;
    max-width: var(--ev-container-max);
    margin: 0 auto;
    gap: var(--ev-space-xl);
    align-items: center;
}

.ev-certifications__info {
    flex: 1;
}

.ev-certifications__info p {
    margin-bottom: var(--ev-space-lg);
}

.ev-certifications__list {
    margin-bottom: var(--ev-space-lg);
}

.ev-certification {
    display: flex;
    gap: var(--ev-space-lg);
    margin-bottom: var(--ev-space-lg);
}

.ev-certification:last-child {
    margin-bottom: 0;
}

.ev-certification__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--ev-teal), var(--ev-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ev-certification__icon i {
    font-size: 1.5rem;
    color: var(--ev-white);
}

.ev-certification__content {
    flex: 1;
}

.ev-certification__title {
    font-size: 1.25rem;
    margin-bottom: var(--ev-space-sm);
    color: var(--ev-teal);
}

.ev-certification__text {
    margin-bottom: 0;
}

.ev-certifications__visual {
    flex: 1;
}

.ev-certifications__image {
    border-radius: var(--ev-border-radius-lg);
    box-shadow: var(--ev-shadow-lg);
    width: 100%;
}

/* ===== CLIENTS SECTION ===== */
.ev-clients {
    padding: var(--ev-space-xxxl) var(--ev-space-lg);
    background-color: var(--ev-light-gray);
}

.ev-clients__content {
    max-width: var(--ev-container-max);
    margin: 0 auto;
}

.ev-clients__text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--ev-space-xxl);
    font-size: 1.125rem;
}

.ev-clients__types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--ev-space-xl);
}

.ev-client-type {
    background-color: var(--ev-white);
    border-radius: var(--ev-border-radius-md);
    padding: var(--ev-space-xl);
    text-align: center;
    box-shadow: var(--ev-shadow-md);
    transition: transform var(--ev-transition-normal);
}

.ev-client-type:hover {
    transform: translateY(-5px);
}

.ev-client-type__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--ev-teal), var(--ev-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--ev-space-lg);
}

.ev-client-type__icon i {
    font-size: 2rem;
    color: var(--ev-white);
}

.ev-client-type__title {
    font-size: 1.25rem;
    margin-bottom: var(--ev-space-md);
    color: var(--ev-teal);
}

.ev-client-type__text {
    margin-bottom: 0;
}

/* ===== PRICING PAGE ===== */
.ev-pricing-intro {
    padding: var(--ev-space-xxl) var(--ev-space-lg) var(--ev-space-lg);
    text-align: center;
}

.ev-pricing-intro__content {
    max-width: 800px;
    margin: 0 auto;
}

.ev-pricing-intro__content p {
    font-size: 1.125rem;
    margin-bottom: var(--ev-space-xl);
}

.ev-pricing-tabs {
    display: inline-flex;
    background-color: var(--ev-slate);
    border-radius: var(--ev-border-radius-md);
    padding: var(--ev-space-sm);
    margin-bottom: var(--ev-space-lg);
}

.ev-pricing-tab {
    padding: var(--ev-space-md) var(--ev-space-lg);
    background: none;
    border: none;
    border-radius: var(--ev-border-radius-sm);
    cursor: pointer;
    font-weight: 500;
    transition: all var(--ev-transition-fast);
}

.ev-pricing-tab--active {
    background-color: var(--ev-white);
    box-shadow: var(--ev-shadow-sm);
}

.ev-pricing-tab__discount {
    display: inline-block;
    background-color: var(--ev-green);
    color: var(--ev-white);
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: var(--ev-border-radius-sm);
    margin-left: var(--ev-space-sm);
}

.ev-pricing-plans {
    padding: var(--ev-space-lg) var(--ev-space-lg) var(--ev-space-xxxl);
}

.ev-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--ev-space-xl);
    max-width: var(--ev-container-max);
    margin: 0 auto;
}

.ev-pricing-card {
    background-color: var(--ev-white);
    border-radius: var(--ev-border-radius-md);
    box-shadow: var(--ev-shadow-md);
    padding: var(--ev-space-xl);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform var(--ev-transition-normal), box-shadow var(--ev-transition-normal);
}

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

.ev-pricing-card--featured {
    border: 2px solid var(--ev-teal);
    transform: scale(1.05);
    z-index: 1;
}

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

.ev-pricing-card__badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--ev-teal), var(--ev-blue));
    color: var(--ev-white);
    padding: var(--ev-space-sm) var(--ev-space-lg);
    border-radius: var(--ev-border-radius-md);
    font-weight: 500;
    font-size: 0.875rem;
}

.ev-pricing-card__header {
    text-align: center;
    margin-bottom: var(--ev-space-lg);
}

.ev-pricing-card__title {
    font-size: 1.75rem;
    margin-bottom: var(--ev-space-sm);
    color: var(--ev-teal);
}

.ev-pricing-card__description {
    color: var(--ev-gray);
    margin-bottom: 0;
}

.ev-pricing-card__price {
    text-align: center;
    margin-bottom: var(--ev-space-xl);
    padding-bottom: var(--ev-space-lg);
    border-bottom: 1px solid var(--ev-slate);
}

.ev-pricing-card__amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: var(--ev-space-sm);
}

.ev-pricing-card__currency {
    font-size: 1rem;
    margin-right: var(--ev-space-sm);
}

.ev-pricing-card__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ev-gray);
}

.ev-pricing-card__period {
    font-size: 1rem;
    margin-left: var(--ev-space-sm);
    color: var(--ev-gray);
}

.ev-pricing-card__annual {
    font-size: 0.875rem;
    color: var(--ev-teal);
}

.ev-pricing-card__features {
    flex: 1;
    margin-bottom: var(--ev-space-xl);
}

.ev-pricing-card__feature-list {
    list-style: none;
}

.ev-pricing-card__feature-list li {
    padding: var(--ev-space-sm) 0;
    position: relative;
    padding-left: 25px;
}

.ev-pricing-card__feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--ev-teal);
    position: absolute;
    left: 0;
}

.ev-pricing-card__action {
    text-align: center;
}

/* ===== CUSTOM SOLUTIONS SECTION ===== */
.ev-custom-solutions {
    padding: var(--ev-space-xxxl) var(--ev-space-lg);
    background-color: var(--ev-light-gray);
}

.ev-custom-solutions__content {
    display: flex;
    max-width: var(--ev-container-max);
    margin: 0 auto;
    gap: var(--ev-space-xl);
    align-items: center;
}

.ev-custom-solutions__info {
    flex: 1;
}

.ev-custom-solutions__info h3 {
    font-size: 1.5rem;
    margin: var(--ev-space-xl) 0 var(--ev-space-md);
    color: var(--ev-teal);
}

.ev-custom-solutions__steps {
    counter-reset: step;
    list-style: none;
    margin-bottom: var(--ev-space-xl);
}

.ev-custom-step {
    display: flex;
    gap: var(--ev-space-lg);
    margin-bottom: var(--ev-space-lg);
}

.ev-custom-step__number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--ev-teal), var(--ev-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ev-white);
    font-weight: 700;
    flex-shrink: 0;
}

.ev-custom-step__content {
    flex: 1;
}

.ev-custom-step__title {
    font-size: 1.125rem;
    margin-bottom: var(--ev-space-sm);
    color: var(--ev-teal);
}

.ev-custom-step__text {
    margin-bottom: 0;
}

.ev-custom-solutions__action {
    margin-top: var(--ev-space-xl);
}

.ev-custom-solutions__visual {
    flex: 1;
}

.ev-custom-solutions__image {
    border-radius: var(--ev-border-radius-lg);
    box-shadow: var(--ev-shadow-lg);
    width: 100%;
}

/* ===== FAQ SECTION ===== */
.ev-faq {
    padding: var(--ev-space-xxxl) var(--ev-space-lg);
}

.ev-faq__content {
    max-width: var(--ev-container-narrow);
    margin: 0 auto;
}

.ev-faq__item {
    border-bottom: 1px solid var(--ev-slate);
}

.ev-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--ev-space-lg) 0;
    cursor: pointer;
}

.ev-faq__question h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
    flex: 1;
    padding-right: var(--ev-space-md);
}

.ev-faq__toggle {
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.ev-faq__toggle .fa-minus {
    display: none;
}

.ev-faq__item.active .ev-faq__toggle .fa-plus {
    display: none;
}

.ev-faq__item.active .ev-faq__toggle .fa-minus {
    display: block;
}

.ev-faq__answer {
    padding-bottom: var(--ev-space-lg);
    display: none;
}

.ev-faq__item.active .ev-faq__answer {
    display: block;
}

.ev-faq__answer p {
    margin-bottom: var(--ev-space-md);
}

.ev-faq__answer p:last-child {
    margin-bottom: 0;
}

.ev-faq__answer ul, 
.ev-faq__answer ol {
    list-style-position: inside;
    margin-bottom: var(--ev-space-md);
    padding-left: var(--ev-space-md);
}

.ev-faq__answer li {
    margin-bottom: var(--ev-space-sm);
}

/* ===== CONTACT PAGE ===== */
.ev-contact-info {
    padding: var(--ev-space-xxxl) var(--ev-space-lg);
}

.ev-contact-info__content {
    max-width: var(--ev-container-max);
    margin: 0 auto;
}

.ev-contact-info__details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--ev-space-lg);
    margin-bottom: var(--ev-space-xxl);
}

.ev-contact-card {
    background-color: var(--ev-white);
    border-radius: var(--ev-border-radius-md);
    padding: var(--ev-space-lg);
    box-shadow: var(--ev-shadow-md);
    display: flex;
    align-items: center;
    gap: var(--ev-space-lg);
    transition: transform var(--ev-transition-normal);
}

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

.ev-contact-card__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--ev-teal), var(--ev-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ev-contact-card__icon i {
    font-size: 1.25rem;
    color: var(--ev-white);
}

.ev-contact-card__content {
    flex: 1;
}

.ev-contact-card__title {
    font-size: 1.125rem;
    margin-bottom: var(--ev-space-sm);
    color: var(--ev-teal);
}

.ev-contact-card__text {
    margin-bottom: 0;
}

.ev-contact-info__map {
    border-radius: var(--ev-border-radius-md);
    overflow: hidden;
    box-shadow: var(--ev-shadow-lg);
    height: 450px;
}

.ev-contact-info__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.ev-contact-form {
    padding: var(--ev-space-xxxl) var(--ev-space-lg);
    background-color: var(--ev-light-gray);
}

.ev-contact-form__content {
    max-width: var(--ev-container-narrow);
    margin: 0 auto;
}

/* ===== THANKS PAGE ===== */
.ev-thanks {
    padding: var(--ev-space-xxxl) var(--ev-space-lg);
    text-align: center;
}

.ev-thanks__content {
    max-width: var(--ev-container-narrow);
    margin: 0 auto;
    background-color: var(--ev-white);
    border-radius: var(--ev-border-radius-lg);
    padding: var(--ev-space-xxl);
    box-shadow: var(--ev-shadow-lg);
}

.ev-thanks__icon {
    font-size: 4rem;
    color: var(--ev-green);
    margin-bottom: var(--ev-space-lg);
}

.ev-thanks__title {
    font-size: 2.5rem;
    margin-bottom: var(--ev-space-lg);
    color: var(--ev-teal);
}

.ev-thanks__message {
    font-size: 1.125rem;
    margin-bottom: var(--ev-space-xl);
}

.ev-thanks__info {
    margin-bottom: var(--ev-space-xl);
    padding: var(--ev-space-lg);
    background-color: var(--ev-light-gray);
    border-radius: var(--ev-border-radius-md);
    display: inline-block;
}

.ev-thanks__contacts {
    list-style: none;
    margin-top: var(--ev-space-md);
    text-align: left;
}

.ev-thanks__contacts li {
    margin-bottom: var(--ev-space-sm);
}

.ev-thanks__contacts i {
    width: 20px;
    margin-right: var(--ev-space-sm);
    color: var(--ev-teal);
}

.ev-thanks__actions {
    margin-top: var(--ev-space-xl);
}

/* ===== LEGAL PAGES ===== */
.ev-legal-content {
    padding: var(--ev-space-xxxl) var(--ev-space-lg);
}

.ev-legal-content__wrapper {
    max-width: var(--ev-container-max);
    margin: 0 auto;
    display: flex;
    gap: var(--ev-space-xl);
}

.ev-legal-content__toc {
    flex: 0 0 300px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    background-color: var(--ev-white);
    border-radius: var(--ev-border-radius-md);
    padding: var(--ev-space-lg);
    box-shadow: var(--ev-shadow-md);
    max-height: calc(100vh - 150px);
    overflow-y: auto;
}

.ev-legal-content__toc-title {
    font-size: 1.25rem;
    margin-bottom: var(--ev-space-lg);
    color: var(--ev-teal);
}

.ev-legal-content__toc-list {
    list-style: none;
}

.ev-legal-content__toc-list li {
    margin-bottom: var(--ev-space-sm);
}

.ev-legal-content__toc-list a {
    color: var(--ev-gray);
    text-decoration: none;
    transition: color var(--ev-transition-fast);
}

.ev-legal-content__toc-list a:hover,
.ev-legal-content__toc-list a:focus {
    color: var(--ev-teal);
}

.ev-legal-content__body {
    flex: 1;
}

.ev-legal-section {
    margin-bottom: var(--ev-space-xxl);
}

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

.ev-legal-section__title {
    font-size: 1.75rem;
    margin-bottom: var(--ev-space-lg);
    color: var(--ev-teal);
    padding-bottom: var(--ev-space-sm);
    border-bottom: 1px solid var(--ev-slate);
}

.ev-legal-section__subtitle {
    font-size: 1.25rem;
    margin: var(--ev-space-lg) 0 var(--ev-space-md);
    color: var(--ev-gray);
}

.ev-legal-section p,
.ev-legal-section ul,
.ev-legal-section ol {
    margin-bottom: var(--ev-space-md);
}

.ev-legal-section ul,
.ev-legal-section ol {
    padding-left: var(--ev-space-xl);
}

.ev-legal-section li {
    margin-bottom: var(--ev-space-sm);
}

.ev-legal-section__contact {
    background-color: var(--ev-light-gray);
    padding: var(--ev-space-lg);
    border-radius: var(--ev-border-radius-md);
    font-style: normal;
}

.ev-legal-section__contact p {
    margin-bottom: var(--ev-space-sm);
}

.ev-legal-section__contact p:last-child {
    margin-bottom: 0;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .ev-intro__title {
        font-size: 2.5rem;
    }
    
    .ev-page-header__title {
        font-size: 2.5rem;
    }
    
    .ev-section__title {
        font-size: 2.25rem;
    }
    
    .ev-solution__title {
        font-size: 1.75rem;
    }
    
    .ev-case-studies__grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 992px) {
    .ev-intro {
        flex-direction: column;
    }
    
    .ev-market-insights__content {
        flex-direction: column;
    }
    
    .ev-feedback__content {
        flex-direction: column;
    }
    
    .ev-solution {
        flex-direction: column;
    }
    
    .ev-solution--reverse {
        flex-direction: column;
    }
    
    .ev-integration__content {
        flex-direction: column;
    }
    
    .ev-expertise__content {
        flex-direction: column;
    }
    
    .ev-certifications__content {
        flex-direction: column;
    }
    
    .ev-custom-solutions__content {
        flex-direction: column;
    }
    
    .ev-legal-content__wrapper {
        flex-direction: column;
    }
    
    .ev-legal-content__toc {
        position: static;
        max-height: none;
        margin-bottom: var(--ev-space-xl);
    }
    
    .ev-pricing-card--featured {
        transform: none;
    }
    
    .ev-pricing-card--featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .ev-header__wrapper {
        padding: var(--ev-space-md) var(--ev-space-md);
    }
    
    .ev-nav__toggle {
        display: block;
    }
    
    .ev-nav__list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: var(--ev-white);
        flex-direction: column;
        gap: 0;
        padding: var(--ev-space-xl) var(--ev-space-lg);
        box-shadow: var(--ev-shadow-lg);
        transition: right var(--ev-transition-normal);
        z-index: 101;
    }
    
    .ev-nav.active .ev-nav__list {
        right: 0;
    }
    
    .ev-nav__item {
        width: 100%;
    }
    
    .ev-nav__item a {
        display: block;
        padding: var(--ev-space-md) 0;
        border-bottom: 1px solid var(--ev-slate);
    }
    
    .ev-nav.active .ev-nav__toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .ev-nav.active .ev-nav__toggle span:nth-child(2) {
        opacity: 0;
    }
    
    .ev-nav.active .ev-nav__toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .ev-intro {
        padding: var(--ev-space-xl) var(--ev-space-md);
    }
    
    .ev-intro__title {
        font-size: 2rem;
    }
    
    .ev-intro__text {
        font-size: 1.125rem;
    }
    
    .ev-features, 
    .ev-market-insights, 
    .ev-case-studies, 
    .ev-feedback, 
    .ev-integration, 
    .ev-expertise, 
    .ev-certifications, 
    .ev-clients, 
    .ev-custom-solutions, 
    .ev-faq, 
    .ev-contact-info, 
    .ev-contact-form, 
    .ev-legal-content {
        padding: var(--ev-space-xl) var(--ev-space-md);
    }
    
    .ev-section__title {
        font-size: 2rem;
    }
    
    .ev-section__subtitle {
        font-size: 1.125rem;
    }
    
    .ev-form__row {
        flex-direction: column;
        gap: var(--ev-space-md);
    }
    
    .ev-footer {
        padding: var(--ev-space-xl) var(--ev-space-md) var(--ev-space-md);
    }
    
    .ev-footer__main {
        flex-direction: column;
        gap: var(--ev-space-xl);
    }
    
    .ev-footer__navigation {
        flex-direction: column;
        gap: var(--ev-space-xl);
    }
    
    .ev-intro__actions {
        flex-direction: column;
        gap: var(--ev-space-md);
    }
    
    .ev-intro__actions .ev-button {
        width: 100%;
    }
    
    .ev-cookie-consent__actions {
        flex-direction: column;
        gap: var(--ev-space-md);
    }
    
    .ev-cookie-consent__actions .ev-button {
        width: 100%;
    }
    
    .ev-cookie-settings__footer {
        flex-direction: column;
        gap: var(--ev-space-md);
    }
    
    .ev-cookie-settings__footer .ev-button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .ev-intro__title {
        font-size: 1.75rem;
    }
    
    .ev-page-header__title {
        font-size: 2rem;
    }
    
    .ev-section__title {
        font-size: 1.75rem;
    }
    
    .ev-features__grid {
        grid-template-columns: 1fr;
    }
    
    .ev-case-studies__grid {
        grid-template-columns: 1fr;
    }
    
    .ev-advantages__grid {
        grid-template-columns: 1fr;
    }
    
    .ev-clients__types {
        grid-template-columns: 1fr;
    }
    
    .ev-pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .ev-contact-info__details {
        grid-template-columns: 1fr;
    }
    
    .ev-advantage {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .ev-integration__item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .ev-certification {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .ev-custom-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}