/* Services Page Styles - Enhanced */

.services-page {
    background: #000;
    color: #fff;
}

/* Services Hero */
.services-hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: 1rem;
    color: #ffffff;
    animation: slideInDown 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 3rem;
    animation: slideInUp 1s ease-out 0.3s both;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    animation: slideInUp 1s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: #ccc;
}

/* New Hero Styles */
.hero-text {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease-out 0.3s forwards;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
}

.hero-description {
    margin-bottom: 2.5rem;
}

.hero-description p {
    font-size: 1.1rem;
    color: #d0d0d0;
    line-height: 1.7;
    margin: 0;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.8s ease-out forwards;
}

.hero-feature:nth-child(1) { animation-delay: 0.8s; }
.hero-feature:nth-child(2) { animation-delay: 1.0s; }
.hero-feature:nth-child(3) { animation-delay: 1.2s; }

.hero-feature i {
    color: #00ff88;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.hero-feature span {
    color: #e0e0e0;
    font-size: 1rem;
    font-weight: 500;
}

.hero-visual {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease-out 0.5s forwards;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out forwards;
}

.stat-item:nth-child(1) { animation-delay: 1.0s; }
.stat-item:nth-child(2) { animation-delay: 1.2s; }
.stat-item:nth-child(3) { animation-delay: 1.4s; }

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #00ff88;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.stat-description {
    font-size: 0.9rem;
    color: #b0b0b0;
    font-weight: 400;
}

.hero-image-placeholder {
    width: 100%;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 1s ease-out 1.6s forwards;
}

.hero-icon {
    font-size: 3rem;
    color: #00ff88;
    margin-bottom: 1rem;
}

.hero-image-placeholder p {
    color: #d0d0d0;
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
}

/* Services Overview */
.services-overview {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, #000 0%, #111 50%, #000 100%);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.services-overview.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #ffffff;
    background: linear-gradient(45deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.overview-text p {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.overview-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.feature-text p {
    font-size: 0.9rem;
    color: #ccc;
    margin: 0;
}

.overview-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-placeholder {
    width: 300px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.visual-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.visual-placeholder p {
    color: #ccc;
    font-size: 1.1rem;
    margin: 0;
}

/* Services Categories */
.services-categories {
    padding: 2rem 0 4rem;
    background: linear-gradient(135deg, #111 0%, #000 100%);
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.services-categories.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 3rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    text-align: center;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
}

.category-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.category-visual {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    color: #ffffff;
}

.category-image-placeholder {
    width: 200px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.image-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.7;
    color: #ffffff;
}

.category-image-placeholder p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

.category-content {
    padding: 2rem;
}

.category-content h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #fff;
}

.category-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.category-features li {
    padding: 0.3rem 0;
    color: #d0d0d0;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.2rem;
}

.category-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
}

.category-arrow {
    font-size: 1.5rem;
    color: #ffffff;
    transition: transform 0.3s ease;
    text-align: center;
}

.category-card:hover .category-arrow {
    transform: translateX(8px);
}

/* Detailed Services */
.detailed-services {
    padding: 2rem 0 4rem;
    background: linear-gradient(135deg, #000 0%, #111 50%, #000 100%);
}

.service-category {
    margin-bottom: 3rem;
}

.category-header {
    text-align: center;
    margin-bottom: 2rem;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #ffffff;
    background: linear-gradient(45deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-description {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.service-card.enhanced {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card.enhanced.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.service-card.enhanced:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-visual {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-image-placeholder {
    width: 250px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.service-icon {
    font-size: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
}

.service-header h3 {
    font-size: 1.8rem;
    font-weight: 400;
    color: #ffffff;
    flex: 1;
    line-height: 1.3;
}

.service-content p {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.service-features li {
    padding: 0.4rem 0;
    color: #d0d0d0;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
    font-size: 1rem;
}

.service-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
}

.tech-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.service-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #ffffff;
}

.benefit-icon {
    font-size: 1.2rem;
}

.service-btn {
    background: #ffffff;
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    margin-bottom: 0;
}

.service-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #111 0%, #000 100%);
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.process-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 1;
    transform: translateY(0);
}

.process-step.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-image-placeholder {
    width: 120px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.step-image-placeholder .image-icon {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    opacity: 0.7;
}

.step-image-placeholder p {
    color: #ccc;
    font-size: 0.8rem;
    margin: 0;
}

/* Services CTA */
.services-cta {
    padding: 6rem 0;
    text-align: center;
    background: #000;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.services-cta.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-image-placeholder {
    width: 300px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cta-image-placeholder .image-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.cta-image-placeholder p {
    color: #ccc;
    font-size: 1.2rem;
    margin: 0;
}

.cta-text h2 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #fff;
    background: linear-gradient(45deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.cta-button.primary {
    background: #ffffff;
    color: #000000;
}

.cta-button.primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-button.secondary:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
}

.arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
    transform: translateX(4px);
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: #ccc;
}

.feature-icon {
    font-size: 1.2rem;
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .hero-image-placeholder {
        height: 150px;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .service-icon {
        min-width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .service-header h3 {
        font-size: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 5rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .category-content,
    .service-content {
        padding: 1.5rem;
    }
    
    .cta-text h2 {
        font-size: 2.5rem;
    }
    
    .cta-text p {
        font-size: 1.1rem;
    }
}

/* ========================================
   УНИКАЛЬНЫЕ СТИЛИ КАРТОЧЕК УСЛУГ
   ======================================== */

/* Базовые стили для всех карточек */
.service-visual {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.service-icon-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2;
}

.service-icon-container i {
    font-size: 2rem;
    z-index: 3;
    position: relative;
}

.icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.3;
    animation: pulseGlow 2s ease-in-out infinite;
}

.service-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-size: 40px 40px;
    background-repeat: repeat;
}

/* ========================================
   КАРТОЧКИ РАЗРАБОТКИ
   ======================================== */

.development-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.development-card:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.08) 100%);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

.dev-visual {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
}

.dev-icon {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.dev-icon i {
    color: #ffffff;
}

.dev-glow {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.6) 0%, transparent 70%);
}

.dev-pattern {
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.1) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.1) 75%);
}

/* Мобильные приложения */
.mobile-card {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(147, 51, 234, 0.05) 100%);
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.mobile-card:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(147, 51, 234, 0.08) 100%);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.2);
}

.mobile-visual {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
}

.mobile-icon {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.mobile-icon i {
    color: #ffffff;
}

.mobile-glow {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.6) 0%, transparent 70%);
}

.mobile-pattern {
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 30px 30px;
}

/* ========================================
   КАРТОЧКИ АВТОМАТИЗАЦИИ
   ======================================== */

.automation-card {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.05) 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.automation-card:hover {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.08) 100%);
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.2);
}

.automation-visual {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
}

.automation-icon {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.automation-icon i {
    color: #ffffff;
}

.automation-glow {
    background: radial-gradient(circle, rgba(34, 197, 94, 0.6) 0%, transparent 70%);
}

.automation-pattern {
    background-image: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Бизнес-автоматизация */
.business-card {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.business-card:hover {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.08) 100%);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.2);
}

.business-visual {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #fbbf24 100%);
}

.business-icon {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.business-icon i {
    color: #ffffff;
}

.business-glow {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.6) 0%, transparent 70%);
}

.business-pattern {
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%);
    background-size: 25px 25px;
}

/* ========================================
   КАРТОЧКИ ВИДЕОНАБЛЮДЕНИЯ
   ======================================== */

.surveillance-card {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.surveillance-card:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.08) 100%);
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.2);
}

.surveillance-visual {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
}

.surveillance-icon {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.surveillance-icon i {
    color: #ffffff;
}

.surveillance-glow {
    background: radial-gradient(circle, rgba(239, 68, 68, 0.6) 0%, transparent 70%);
}

.surveillance-pattern {
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 3px, transparent 3px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 3px, transparent 3px);
    background-size: 35px 35px;
}

/* Системы записи */
.recording-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(79, 70, 229, 0.05) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.recording-card:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(79, 70, 229, 0.08) 100%);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
}

.recording-visual {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #818cf8 100%);
}

.recording-icon {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.recording-icon i {
    color: #ffffff;
}

.recording-glow {
    background: radial-gradient(circle, rgba(99, 102, 241, 0.6) 0%, transparent 70%);
}

.recording-pattern {
    background-image: 
        linear-gradient(0deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 15px 15px;
}

/* IP-камеры */
.ip-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.ip-card:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.08) 100%);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
}

.ip-visual {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #6ee7b7 100%);
}

.ip-icon {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.ip-icon i {
    color: #ffffff;
}

.ip-glow {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.6) 0%, transparent 70%);
}

.ip-pattern {
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.1) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.1) 75%);
    background-size: 30px 30px;
}

/* ========================================
   КАРТОЧКИ ИНФРАСТРУКТУРЫ
   ======================================== */

.infrastructure-card {
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.1) 0%, rgba(75, 85, 99, 0.05) 100%);
    border: 1px solid rgba(107, 114, 128, 0.2);
}

.infrastructure-card:hover {
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.15) 0%, rgba(75, 85, 99, 0.08) 100%);
    border-color: rgba(107, 114, 128, 0.4);
    box-shadow: 0 15px 40px rgba(107, 114, 128, 0.2);
}

.infrastructure-visual {
    background: linear-gradient(135deg, #4b5563 0%, #6b7280 50%, #9ca3af 100%);
}

.infrastructure-icon {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.infrastructure-icon i {
    color: #ffffff;
}

.infrastructure-glow {
    background: radial-gradient(circle, rgba(107, 114, 128, 0.6) 0%, transparent 70%);
}

.infrastructure-pattern {
    background-image: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 25px 25px;
}

/* Кибербезопасность */
.security-card {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(120, 53, 15, 0.05) 100%);
    border: 1px solid rgba(139, 69, 19, 0.2);
}

.security-card:hover {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.15) 0%, rgba(120, 53, 15, 0.08) 100%);
    border-color: rgba(139, 69, 19, 0.4);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.2);
}

.security-visual {
    background: linear-gradient(135deg, #92400e 0%, #b45309 50%, #d97706 100%);
}

.security-icon {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.security-icon i {
    color: #ffffff;
}

.security-glow {
    background: radial-gradient(circle, rgba(139, 69, 19, 0.6) 0%, transparent 70%);
}

.security-pattern {
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 40px 40px;
}

/* ========================================
   КАРТОЧКИ СВЯЗИ
   ======================================== */

.communication-card {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(219, 39, 119, 0.05) 100%);
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.communication-card:hover {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(219, 39, 119, 0.08) 100%);
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.2);
}

.communication-visual {
    background: linear-gradient(135deg, #be185d 0%, #ec4899 50%, #f472b6 100%);
}

.communication-icon {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.communication-icon i {
    color: #ffffff;
}

.communication-glow {
    background: radial-gradient(circle, rgba(236, 72, 153, 0.6) 0%, transparent 70%);
}

.communication-pattern {
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%);
    background-size: 20px 20px;
}

/* Чат-боты */
.chatbot-card {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(2, 132, 199, 0.05) 100%);
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.chatbot-card:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(2, 132, 199, 0.08) 100%);
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.2);
}

.chatbot-visual {
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 50%, #38bdf8 100%);
}

.chatbot-icon {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.chatbot-icon i {
    color: #ffffff;
}

.chatbot-glow {
    background: radial-gradient(circle, rgba(14, 165, 233, 0.6) 0%, transparent 70%);
}

.chatbot-pattern {
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* ========================================
   АНИМАЦИИ
   ======================================== */

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Анимация появления карточек */
.service-card.enhanced {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.service-card.enhanced.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   АДАПТИВНОСТЬ
   ======================================== */

@media (max-width: 768px) {
    .service-visual {
        height: 150px;
    }
    
    .service-icon-container {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-container i {
        font-size: 1.5rem;
    }
    
    .service-pattern {
        background-size: 20px 20px;
    }
}

@media (max-width: 480px) {
    .service-visual {
        height: 120px;
    }
    
    .service-icon-container {
        width: 50px;
        height: 50px;
    }
    
    .service-icon-container i {
        font-size: 1.2rem;
    }
}

/* ========================================
   СОВРЕМЕННЫЕ КАРТОЧКИ УСЛУГ
   ======================================== */

/* Базовые стили для всех карточек */
.service-card.enhanced {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.service-card.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card.enhanced:hover::before {
    opacity: 1;
}

.service-card.enhanced:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Визуальная часть карточки */
.service-visual {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-icon-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
    transition: all 0.3s ease;
}

.service-icon-container i {
    font-size: 2rem;
    color: #ffffff;
    z-index: 3;
    position: relative;
}

.icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    animation: pulseGlow 2s ease-in-out infinite;
}

.service-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-size: 40px 40px;
    background-repeat: repeat;
}

/* ========================================
   КАРТОЧКИ РАЗРАБОТКИ
   ======================================== */

.development-card {
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.08) 0%, rgba(51, 65, 85, 0.04) 100%);
    border: 1px solid rgba(71, 85, 105, 0.15);
}

.development-card:hover {
    border-color: rgba(71, 85, 105, 0.25);
    box-shadow: 0 20px 60px rgba(71, 85, 105, 0.15);
}

.dev-visual {
    background: linear-gradient(135deg, #475569 0%, #64748b 50%, #94a3b8 100%);
    position: relative;
}

.dev-visual::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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.dev-icon {
    background: rgba(71, 85, 105, 0.15);
    border-color: rgba(71, 85, 105, 0.2);
}

.dev-glow {
    background: radial-gradient(circle, rgba(71, 85, 105, 0.4) 0%, transparent 70%);
}

.dev-pattern {
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.06) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.06) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.06) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.06) 75%);
}

/* Мобильные приложения */
.mobile-card {
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.08) 0%, rgba(71, 85, 105, 0.04) 100%);
    border: 1px solid rgba(100, 116, 139, 0.15);
}

.mobile-card:hover {
    border-color: rgba(100, 116, 139, 0.25);
    box-shadow: 0 20px 60px rgba(100, 116, 139, 0.15);
}

.mobile-visual {
    background: linear-gradient(135deg, #64748b 0%, #94a3b8 50%, #cbd5e1 100%);
    position: relative;
}

.mobile-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.06) 2px, transparent 2px),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.06) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.mobile-icon {
    background: rgba(100, 116, 139, 0.15);
    border-color: rgba(100, 116, 139, 0.2);
}

.mobile-glow {
    background: radial-gradient(circle, rgba(100, 116, 139, 0.4) 0%, transparent 70%);
}

.mobile-pattern {
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.06) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.06) 2px, transparent 2px);
    background-size: 30px 30px;
}

/* ========================================
   КАРТОЧКИ АВТОМАТИЗАЦИИ
   ======================================== */

.automation-card {
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.08) 0%, rgba(51, 65, 85, 0.04) 100%);
    border: 1px solid rgba(71, 85, 105, 0.15);
}

.automation-card:hover {
    border-color: rgba(71, 85, 105, 0.25);
    box-shadow: 0 20px 60px rgba(71, 85, 105, 0.15);
}

.automation-visual {
    background: linear-gradient(135deg, #475569 0%, #64748b 50%, #94a3b8 100%);
    position: relative;
}

.automation-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
                linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.automation-icon {
    background: rgba(71, 85, 105, 0.15);
    border-color: rgba(71, 85, 105, 0.2);
}

.automation-glow {
    background: radial-gradient(circle, rgba(71, 85, 105, 0.4) 0%, transparent 70%);
}

.automation-pattern {
    background-image: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Бизнес-автоматизация */
.business-card {
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.08) 0%, rgba(71, 85, 105, 0.04) 100%);
    border: 1px solid rgba(100, 116, 139, 0.15);
}

.business-card:hover {
    border-color: rgba(100, 116, 139, 0.25);
    box-shadow: 0 20px 60px rgba(100, 116, 139, 0.15);
}

.business-visual {
    background: linear-gradient(135deg, #64748b 0%, #94a3b8 50%, #cbd5e1 100%);
    position: relative;
}

.business-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.06) 25%, transparent 25%),
                linear-gradient(-45deg, rgba(255, 255, 255, 0.06) 25%, transparent 25%);
    background-size: 25px 25px;
    opacity: 0.5;
}

.business-icon {
    background: rgba(100, 116, 139, 0.15);
    border-color: rgba(100, 116, 139, 0.2);
}

.business-glow {
    background: radial-gradient(circle, rgba(100, 116, 139, 0.4) 0%, transparent 70%);
}

.business-pattern {
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.06) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.06) 25%, transparent 25%);
    background-size: 25px 25px;
}

/* ========================================
   КАРТОЧКИ ВИДЕОНАБЛЮДЕНИЯ
   ======================================== */

.surveillance-card {
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.08) 0%, rgba(51, 65, 85, 0.04) 100%);
    border: 1px solid rgba(71, 85, 105, 0.15);
}

.surveillance-card:hover {
    border-color: rgba(71, 85, 105, 0.25);
    box-shadow: 0 20px 60px rgba(71, 85, 105, 0.15);
}

.surveillance-visual {
    background: linear-gradient(135deg, #475569 0%, #64748b 50%, #94a3b8 100%);
    position: relative;
}

.surveillance-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.06) 3px, transparent 3px),
                radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.06) 3px, transparent 3px);
    background-size: 35px 35px;
    opacity: 0.5;
}

.surveillance-icon {
    background: rgba(71, 85, 105, 0.15);
    border-color: rgba(71, 85, 105, 0.2);
}

.surveillance-glow {
    background: radial-gradient(circle, rgba(71, 85, 105, 0.4) 0%, transparent 70%);
}

.surveillance-pattern {
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.06) 3px, transparent 3px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.06) 3px, transparent 3px);
    background-size: 35px 35px;
}

/* Системы записи */
.recording-card {
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.08) 0%, rgba(71, 85, 105, 0.04) 100%);
    border: 1px solid rgba(100, 116, 139, 0.15);
}

.recording-card:hover {
    border-color: rgba(100, 116, 139, 0.25);
    box-shadow: 0 20px 60px rgba(100, 116, 139, 0.15);
}

.recording-visual {
    background: linear-gradient(135deg, #64748b 0%, #94a3b8 50%, #cbd5e1 100%);
    position: relative;
}

.recording-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 15px 15px;
    opacity: 0.5;
}

.recording-icon {
    background: rgba(100, 116, 139, 0.15);
    border-color: rgba(100, 116, 139, 0.2);
}

.recording-glow {
    background: radial-gradient(circle, rgba(100, 116, 139, 0.4) 0%, transparent 70%);
}

.recording-pattern {
    background-image: 
        linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 15px 15px;
}

/* IP-камеры */
.ip-card {
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.08) 0%, rgba(51, 65, 85, 0.04) 100%);
    border: 1px solid rgba(71, 85, 105, 0.15);
}

.ip-card:hover {
    border-color: rgba(71, 85, 105, 0.25);
    box-shadow: 0 20px 60px rgba(71, 85, 105, 0.15);
}

.ip-visual {
    background: linear-gradient(135deg, #475569 0%, #64748b 50%, #94a3b8 100%);
    position: relative;
}

.ip-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.06) 25%, transparent 25%),
                linear-gradient(-45deg, rgba(255, 255, 255, 0.06) 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.06) 75%),
                linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.06) 75%);
    background-size: 30px 30px;
    opacity: 0.5;
}

.ip-icon {
    background: rgba(71, 85, 105, 0.15);
    border-color: rgba(71, 85, 105, 0.2);
}

.ip-glow {
    background: radial-gradient(circle, rgba(71, 85, 105, 0.4) 0%, transparent 70%);
}

.ip-pattern {
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.06) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.06) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.06) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.06) 75%);
    background-size: 30px 30px;
}

/* ========================================
   КАРТОЧКИ ИНФРАСТРУКТУРЫ
   ======================================== */

.infrastructure-card {
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.08) 0%, rgba(51, 65, 85, 0.04) 100%);
    border: 1px solid rgba(71, 85, 105, 0.15);
}

.infrastructure-card:hover {
    border-color: rgba(71, 85, 105, 0.25);
    box-shadow: 0 20px 60px rgba(71, 85, 105, 0.15);
}

.infrastructure-visual {
    background: linear-gradient(135deg, #475569 0%, #64748b 50%, #94a3b8 100%);
    position: relative;
}

.infrastructure-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
                linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 25px 25px;
    opacity: 0.5;
}

.infrastructure-icon {
    background: rgba(71, 85, 105, 0.15);
    border-color: rgba(71, 85, 105, 0.2);
}

.infrastructure-glow {
    background: radial-gradient(circle, rgba(71, 85, 105, 0.4) 0%, transparent 70%);
}

.infrastructure-pattern {
    background-image: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 25px 25px;
}

/* Кибербезопасность */
.security-card {
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.08) 0%, rgba(71, 85, 105, 0.04) 100%);
    border: 1px solid rgba(100, 116, 139, 0.15);
}

.security-card:hover {
    border-color: rgba(100, 116, 139, 0.25);
    box-shadow: 0 20px 60px rgba(100, 116, 139, 0.15);
}

.security-visual {
    background: linear-gradient(135deg, #64748b 0%, #94a3b8 50%, #cbd5e1 100%);
    position: relative;
}

.security-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.06) 2px, transparent 2px),
                radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.06) 2px, transparent 2px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.security-icon {
    background: rgba(100, 116, 139, 0.15);
    border-color: rgba(100, 116, 139, 0.2);
}

.security-glow {
    background: radial-gradient(circle, rgba(100, 116, 139, 0.4) 0%, transparent 70%);
}

.security-pattern {
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.06) 2px, transparent 2px),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.06) 2px, transparent 2px);
    background-size: 40px 40px;
}

/* ========================================
   КАРТОЧКИ СВЯЗИ
   ======================================== */

.communication-card {
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.08) 0%, rgba(51, 65, 85, 0.04) 100%);
    border: 1px solid rgba(71, 85, 105, 0.15);
}

.communication-card:hover {
    border-color: rgba(71, 85, 105, 0.25);
    box-shadow: 0 20px 60px rgba(71, 85, 105, 0.15);
}

.communication-visual {
    background: linear-gradient(135deg, #475569 0%, #64748b 50%, #94a3b8 100%);
    position: relative;
}

.communication-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.06) 25%, transparent 25%),
                linear-gradient(-45deg, rgba(255, 255, 255, 0.06) 25%, transparent 25%);
    background-size: 20px 20px;
    opacity: 0.5;
}

.communication-icon {
    background: rgba(71, 85, 105, 0.15);
    border-color: rgba(71, 85, 105, 0.2);
}

.communication-glow {
    background: radial-gradient(circle, rgba(71, 85, 105, 0.4) 0%, transparent 70%);
}

.communication-pattern {
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.06) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.06) 25%, transparent 25%);
    background-size: 20px 20px;
}

/* Чат-боты */
.chatbot-card {
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.08) 0%, rgba(71, 85, 105, 0.04) 100%);
    border: 1px solid rgba(100, 116, 139, 0.15);
}

.chatbot-card:hover {
    border-color: rgba(100, 116, 139, 0.25);
    box-shadow: 0 20px 60px rgba(100, 116, 139, 0.15);
}

.chatbot-visual {
    background: linear-gradient(135deg, #64748b 0%, #94a3b8 50%, #cbd5e1 100%);
    position: relative;
}

.chatbot-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.06) 2px, transparent 2px),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.06) 2px, transparent 2px),
                radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.chatbot-icon {
    background: rgba(100, 116, 139, 0.15);
    border-color: rgba(100, 116, 139, 0.2);
}

.chatbot-glow {
    background: radial-gradient(circle, rgba(100, 116, 139, 0.4) 0%, transparent 70%);
}

.chatbot-pattern {
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.06) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.06) 2px, transparent 2px),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* ========================================
   АНИМАЦИИ И ЭФФЕКТЫ
   ======================================== */

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Эффекты при наведении */
.service-card.enhanced:hover .service-icon-container {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 255, 255, 0.25);
}

.service-card.enhanced:hover .icon-glow {
    opacity: 0.8;
    transform: scale(1.2);
}

.service-card.enhanced:hover .service-pattern {
    opacity: 0.2;
    transform: scale(1.1);
}

/* Анимация появления карточек */
.service-card.enhanced {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card.enhanced.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   АДАПТИВНОСТЬ
   ======================================== */

@media (max-width: 768px) {
    .service-visual {
        height: 150px;
    }
    
    .service-icon-container {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-container i {
        font-size: 1.5rem;
    }
    
    .service-pattern {
        background-size: 20px 20px;
    }
    
    .service-card.enhanced:hover {
        transform: translateY(-8px) scale(1.01);
    }
}

@media (max-width: 480px) {
    .service-visual {
        height: 120px;
    }
    
    .service-icon-container {
        width: 50px;
        height: 50px;
    }
    
    .service-icon-container i {
        font-size: 1.2rem;
    }
    
    .service-card.enhanced:hover {
        transform: translateY(-4px) scale(1.005);
    }
}