:root {
    --gradient-primary: linear-gradient(135deg, #5b3af3 0%, #3e54f1 100%);
    --gradient-light: linear-gradient(135deg, #F8F9FF 0%, #E8ECFF 100%);
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
}

/* Стили для подменю индустрий */
.industries-submenu {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 90px; /* Высота основного меню */
    z-index: 900;
    transition: transform 0.3s ease;
}

.industries-nav {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: center;
}

.industries-nav li {
    flex: 0 0 auto;
}

.industries-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.industries-nav a i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #666;
    transition: color 0.3s ease;
}

.industries-nav a span {
    font-size: 0.9rem;
}

.industries-nav a:hover,
.industries-nav a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.industries-nav a:hover i,
.industries-nav a.active i {
    color: var(--primary-color);
}

.industries-container {
    width: 100%;
    max-width: 100%;
}

/* Медиа-запросы */
@media (max-width: 768px) {
    .industries-nav {
        padding: 0.5rem;
        justify-content: normal;
    }
    
    .industries-nav a {
        padding: 0.75rem 1rem;
    }
}

/* Hero Section */
.industry-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #F8F9FF 0%, #E8ECFF 100%);
    position: relative;
    overflow: hidden;
}

.industry-hero__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.industry-hero__content {
    max-width: 600px;
}

.industry-hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.industry-hero__description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2.5rem;
}

.industry-hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.industry-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.industry-hero__stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.industry-hero__stat-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.4;
}

.industry-hero__actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.industry-hero__button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-md);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.industry-hero__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(91, 58, 243, 0.2);
}

.industry-hero__link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(91, 58, 243, 0.1);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
}

.industry-hero__link:hover {
    background: rgba(91, 58, 243, 0.15);
}

.industry-hero__link i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.industry-hero__link-content {
    display: flex;
    flex-direction: column;
}

.industry-hero__link-text {
    color: var(--text-color);
    font-weight: 500;
}

.industry-hero__link-size {
    font-size: 0.875rem;
    color: #666;
}

.industry-hero__visual {
    position: relative;
    width: 100%;
    height: 300px;
}

.industry-hero__factory {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 250px;
}

.industry-hero__building {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80%;
    background-color: #e0e0e0;
    border-radius: 10px 10px 0 0;
}

.industry-hero__window {
    position: absolute;
    width: 30px;
    height: 40px;
    background-color: #f5f5f5;
    border: 2px solid #d0d0d0;
}

.industry-hero__window:nth-child(1) { top: 20%; left: 20%; }
.industry-hero__window:nth-child(2) { top: 20%; right: 20%; }
.industry-hero__window:nth-child(3) { top: 60%; left: 50%; transform: translateX(-50%); }

.industry-hero__chimney {
    position: absolute;
    top: 10%;
    right: 20%;
    width: 30px;
    height: 60px;
    background-color: #d0d0d0;
}

.industry-hero__smoke {
    position: absolute;
    bottom: 100%;
    left: 50%;
    width: 20px;
    height: 20px;
    background-color: rgba(200, 200, 200, 0.8);
    border-radius: 50%;
    animation: smoke 3s infinite ease-out;
}

.industry-hero__smoke:nth-child(1) { animation-delay: 0s; }
.industry-hero__smoke:nth-child(2) { animation-delay: 1s; }
.industry-hero__smoke:nth-child(3) { animation-delay: 2s; }

@keyframes smoke {
    0% { transform: translate(-50%, 0) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -100px) scale(2); opacity: 0; }
}

.industry-hero__gear {
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 60px;
    height: 60px;
    background-color: #b0b0b0;
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.industry-hero__gear::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 50%;
}

.industry-hero__gear--small {
    width: 40px;
    height: 40px;
    left: auto;
    right: 10%;
    animation-direction: reverse;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 1200px) {
    .industry-hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .industry-hero__wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .industry-hero__content {
        max-width: 100%;
        text-align: center;
    }

    .industry-hero__actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .industry-hero {
        padding: 120px 0 60px;
    }

    .industry-hero h1 {
        font-size: 2.5rem;
    }

    .industry-hero__stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .industry-hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .industry-hero__button,
    .industry-hero__link {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .industry-hero__smoke,
    .industry-hero__gear {
        animation: none;
    }
    
    .industry-hero__button:hover,
    .industry-hero__link:hover {
        transform: none;
    }
}

.industry-problems {
    padding: 100px 0;
    background-color: var(--white);
}

.industry-problems__title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.industry-problems__description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.25rem;
    color: #666;
}

.industry-problems__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-problems__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.industry-problems__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.industry-problems__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-problems__card:hover::before {
    opacity: 1;
}

.industry-problems__icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: rgba(91, 58, 243, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.industry-problems__icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    z-index: 1;
}

.industry-problems__icon-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(91, 58, 243, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(91, 58, 243, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(91, 58, 243, 0);
    }
}

.industry-problems__card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.industry-problems__card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.industry-problems__example {
    background: rgba(91, 58, 243, 0.05);
    border-radius: var(--radius-sm);
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.industry-problems__label {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.industry-problems__example span:last-child {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .industry-problems__grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 576px) {
    .industry-problems {
        padding: 60px 0;
    }

    .industry-problems__title {
        font-size: 2rem;
    }

    .industry-problems__description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .industry-problems__card:hover {
        transform: none;
    }

    .industry-problems__icon-pulse {
        animation: none;
    }
}

.industry-solutions {
    padding: 100px 0;
    background: var(--background-color);
}

.industry-solutions__title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.industry-solutions__description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.25rem;
    color: #666;
}

.industry-solutions__grid {
    display: grid;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-solutions__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.industry-solutions__content {
    padding-right: 2rem;
}

.industry-solutions__icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.industry-solutions__icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.industry-solutions__content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.industry-solutions__content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.industry-solutions__features {
    list-style: none;
    padding: 0;
}

.industry-solutions__features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.industry-solutions__features i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* Демо интерфейс */
.industry-solutions__demo {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

.industry-solutions__demo-switch {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.industry-solutions__demo-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.industry-solutions__demo-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.industry-solutions__demo-screen {
    position: relative;
    background: #f5f5f5;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.industry-solutions__demo-view {
    display: none;
    padding: 1.5rem;
}

.industry-solutions__demo-view.active {
    display: block;
}

/* Стили для демо-интерфейса "до" */
.industry-solutions__interface--before {
    opacity: 0.7;
}

.industry-solutions__interface--before .interface-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.industry-solutions__interface--before .stat-item {
    background: #e0e0e0;
    padding: 1rem;
    border-radius: 4px;
}

.industry-solutions__interface--before .small-text {
    font-size: 0.75rem;
}

.industry-solutions__interface--before .low-contrast {
    color: #999;
}

/* Стили для демо-интерфейса "после" */
.industry-solutions__interface--after .interface-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.industry-solutions__interface--after .stat-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.industry-solutions__interface--after .high-contrast {
    color: var(--text-color);
}

.industry-solutions__interface--after .value {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    display: block;
    margin-top: 0.5rem;
}

@media (max-width: 992px) {
    .industry-solutions__item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .industry-solutions__content {
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .industry-solutions {
        padding: 60px 0;
    }

    .industry-solutions__title {
        font-size: 2rem;
    }

    .industry-solutions__description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}

/* Стили для демо обучающих материалов */
.demo-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.demo-text {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.demo-text--adapted {
    font-family: 'Open Dyslexic', sans-serif;
    line-height: 1.8;
}

.demo-video {
    background: #ddd;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
    flex-direction: column;
    justify-content: space-evenly;
}

.demo-video-placeholder {
    color: #666;
}

.demo-subtitles {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.demo-audio-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

/* Стили для демо документооборота */
.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.demo-input {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
}

.demo-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.demo-submit[disabled] {
    background: #ddd;
    cursor: not-allowed;
}

.demo-help-text {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.25rem;
}

/* Дополнительные адаптивные стили */
@media (max-width: 768px) {
    .industry-solutions__demo-screen {
        font-size: 0.9rem;
    }

    .demo-title {
        font-size: 1.1rem;
    }
}

.industry-cases {
    padding: 100px 0;
    background-color: var(--white);
}

.industry-cases__title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.industry-cases__description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.25rem;
    color: #666;
}

.industry-cases__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-cases__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.industry-cases__card:hover {
    transform: translateY(-5px);
}

.industry-cases__logo {
    margin-bottom: 1.5rem;
    height: 60px;
    display: flex;
    align-items: center;
}

.industry-cases__logo img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
}

.industry-cases__company {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.industry-cases__text {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.industry-cases__results {
    list-style: none;
    padding: 0;
}

.industry-cases__result {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
}

.industry-cases__metric {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 1rem;
}

.industry-cases__metric-description {
    font-size: 1rem;
    color: #666;
}

@media (max-width: 992px) {
    .industry-cases__grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 576px) {
    .industry-cases {
        padding: 60px 0;
    }

    .industry-cases__title {
        font-size: 2rem;
    }

    .industry-cases__description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .industry-cases__card {
        padding: 2rem;
    }

    .industry-cases__metric {
        font-size: 1.75rem;
    }
}

/* Обновляем стили для хедера карточки */
.industry-cases__header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(91, 58, 243, 0.1);
}

.industry-cases__icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.industry-cases__icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.industry-cases__info {
    flex-grow: 1;
}

.industry-cases__category {
    font-size: 0.875rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.industry-cases__company {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.industry-cases__details {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #666;
}

.industry-cases__details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.industry-cases__details i {
    font-size: 1rem;
    color: var(--primary-color);
}

/* Обновляем стили для результатов */
.industry-cases__results {
    background: rgba(91, 58, 243, 0.03);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-top: 2rem;
}

.industry-cases__result {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
}

.industry-cases__result:last-child {
    margin-bottom: 0;
}

.industry-cases__metric {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 1rem;
}

.industry-cases__metric-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 576px) {
    .industry-cases__header {
        gap: 1rem;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .industry-cases__icon {
        width: 48px;
        height: 48px;
    }

    .industry-cases__icon i {
        font-size: 1.25rem;
    }

    .industry-cases__company {
        font-size: 1.5rem;
    }

    .industry-cases__details {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.industry-benefits {
    padding: 100px 0;
    background: var(--gradient-light);
}

.industry-benefits__title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.industry-benefits__description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.25rem;
    color: #666;
}

.industry-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-benefits__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-md);
}

.industry-benefits__icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.industry-benefits__icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--primary-color);
    z-index: 1;
}

.industry-benefits__progress {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2.8;
    stroke-linecap: round;
    opacity: 0.2;
}

.industry-benefits__progress path {
    opacity: 1;
    transition: stroke-dasharray 1s ease;
}

.industry-benefits__card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.industry-benefits__counter {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.industry-benefits__counter::after {
    content: '%';
    font-size: 1.5rem;
    margin-left: 0.25rem;
}

.industry-benefits__label {
    display: block;
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.industry-benefits__list {
    list-style: none;
    padding: 0;
    text-align: left;
    border-top: 1px solid rgba(91, 58, 243, 0.1);
    padding-top: 1.5rem;
}

.industry-benefits__list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: #666;
}

.industry-benefits__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
}

@media (max-width: 992px) {
    .industry-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .industry-benefits__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 576px) {
    .industry-benefits {
        padding: 60px 0;
    }

    .industry-benefits__title {
        font-size: 2rem;
    }

    .industry-benefits__description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .industry-benefits__counter {
        font-size: 3rem;
    }
}

.industry-timeline {
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
}

.industry-timeline__title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.industry-timeline__description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.25rem;
    color: #666;
}

.industry-timeline__wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.industry-timeline__progress {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.2;
}

.industry-timeline__item {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.industry-timeline__item:nth-child(even) {
    flex-direction: row-reverse;
}

.industry-timeline__icon {
    position: relative;
    flex: 0 0 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.industry-timeline__icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.industry-timeline__content {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: calc(50% - 4rem);
}

.industry-timeline__content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.industry-timeline__content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.industry-timeline__list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.industry-timeline__list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #666;
}

.industry-timeline__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
}

.industry-timeline__duration {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(91, 58, 243, 0.1);
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .industry-timeline__progress {
        left: 32px;
    }

    .industry-timeline__item,
    .industry-timeline__item:nth-child(even) {
        flex-direction: row;
        padding-left: 64px;
    }

    .industry-timeline__content {
        max-width: none;
    }

    .industry-timeline__icon {
        position: absolute;
        left: 12px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .industry-timeline {
        padding: 60px 0;
    }

    .industry-timeline__title {
        font-size: 2rem;
    }

    .industry-timeline__description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .industry-timeline__content {
        padding: 1.5rem;
    }

    .industry-timeline__content h3 {
        font-size: 1.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .industry-timeline__item {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

.industry-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2B2D42 0%, #1A1B2E 100%);
    position: relative;
    color: var(--white);
}

.industry-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(91, 58, 243, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.industry-cta__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-cta__text {
    max-width: 50%;
}

.industry-cta__title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.industry-cta__description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.industry-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    background-color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.industry-cta__button i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.industry-cta__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.industry-cta__button:hover i {
    transform: translateX(5px);
}

.industry-cta__animation {
    position: relative;
    width: 40%;
    height: 200px;
    overflow: hidden;
}

.line {
    position: absolute;
    width: 2px;
    height: 100%;
    background: var(--white);
    animation: move 3s linear infinite;
}

.line-1 {
    left: 20%;
    animation-delay: 0s;
}

.line-2 {
    left: 50%;
    animation-delay: 1s;
}

.line-3 {
    left: 80%;
    animation-delay: 2s;
}

@keyframes move {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

@media (max-width: 768px) {
    .industry-cta__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .industry-cta__text {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .industry-cta__animation {
        width: 100%;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .industry-cta {
        padding: 60px 0;
    }

    .industry-cta__title {
        font-size: 1.75rem;
    }

    .industry-cta__description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .industry-cta__button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}