/* static/css/technology.css */

/* ========== ПЕРЕМЕННЫЕ В СТИЛЕ ГЛАВНОЙ ========== */
:root {
    --tech-white: #ffffff;
    --tech-off-white: #fafafa;
    --tech-light-gray: #f0f0f0;
    --tech-medium-gray: #e0e0e0;
    --tech-gray: #808080;
    --tech-dark-gray: #333333;
    --tech-black: #111111;
    --tech-accent: #1a1a1a;
    --tech-shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.02);
    --tech-shadow-md: 0 8px 30px rgba(0, 0, 0, 0.04);
    --tech-shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.06);
}

/* ========== ОСНОВНЫЕ СТИЛИ ========== */
.technology-page {
    background-color: var(--tech-white);
    color: var(--tech-black);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.tech-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .tech-container {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .tech-container {
        padding: 0 1.5rem;
    }
}

/* ========== ЭФФЕКТ СТЕКАНИЯ КРАСКИ ДЛЯ ЗАГОЛОВКОВ ========== */
.tech-hero-title-line:nth-child(2),
.tech-section-title span,
.tech-guarantee-card h3 {
    position: relative;
    display: inline-block;
}

.tech-hero-title-line:nth-child(2)::before,
.tech-section-title span::before,
.tech-guarantee-card h3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(0, 0, 0, 0.02) 50%,
        transparent 70%
    );
    animation: dripPaint 4s ease-in-out infinite;
    pointer-events: none;
}

.tech-hero-title-line:nth-child(2)::after,
.tech-section-title span::after,
.tech-guarantee-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 10%;
    width: 5px;
    height: 5px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 50%;
    filter: blur(2px);
    animation: dripDrop 3s ease-in-out infinite;
}

@keyframes dripPaint {
    0%, 100% {
        transform: translateY(-100%) translateX(-100%);
        opacity: 0;
    }
    50% {
        transform: translateY(0) translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateY(100%) translateX(100%);
        opacity: 0;
    }
}

@keyframes dripDrop {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(10px) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
}

/* Дополнительные капли для разных заголовков */
.tech-section-title span::after {
    left: 20%;
    animation-delay: 0.5s;
}

.tech-guarantee-card h3::after {
    left: 30%;
    animation-delay: 1s;
}

/* ========== HERO СЕКЦИЯ С ВОЛНАМИ ========== */
.tech-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--tech-off-white), var(--tech-white));
}

.tech-hero-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.tech-hero-wave {
    position: absolute;
    background: linear-gradient(90deg,
        transparent,
        rgba(0, 0, 0, 0.02),
        transparent
    );
    height: 2px;
    width: 100%;
    animation: waveMove 8s ease-in-out infinite;
}

.tech-hero-wave-1 {
    top: 20%;
    animation-delay: 0s;
}

.tech-hero-wave-2 {
    top: 40%;
    animation-delay: 2s;
}

.tech-hero-wave-3 {
    top: 60%;
    animation-delay: 4s;
}

.tech-hero-wave-4 {
    top: 80%;
    animation-delay: 6s;
}

@keyframes waveMove {
    0% {
        transform: translateX(-100%) scaleX(0.5);
        opacity: 0;
    }
    50% {
        transform: translateX(0) scaleX(1);
        opacity: 0.3;
    }
    100% {
        transform: translateX(100%) scaleX(0.5);
        opacity: 0;
    }
}

.tech-hero-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 0, 0, 0.02) 2px, transparent 2px);
    background-size: 40px 40px;
    animation: dotsFloat 20s linear infinite;
}

@keyframes dotsFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

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

.tech-hero-badge {
    display: inline-block;
    padding: 0.5rem 2rem;
    background: var(--tech-off-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 100px;
    color: var(--tech-dark-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    box-shadow: var(--tech-shadow-sm);
    animation: fadeInScale 1s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.tech-hero-title {
    margin-bottom: 2rem;
    animation: slideInUp 1s ease 0.2s both;
}

.tech-hero-title-line {
    display: block;
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--tech-black);
}

.tech-hero-title-line:nth-child(2) {
    color: var(--tech-dark-gray);
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-top: 0.5rem;
    position: relative;
    display: inline-block;
}

.tech-hero-title-line:nth-child(2)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--tech-black);
    transform: scaleX(0);
    transform-origin: right;
    animation: lineExpand 1.5s ease 1s forwards;
}

@keyframes lineExpand {
    to {
        transform: scaleX(1);
        transform-origin: left;
    }
}

.tech-hero-description {
    font-size: 1.2rem;
    color: var(--tech-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    animation: slideInUp 1s ease 0.4s both;
}

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

/* ========== СЕКЦИЯ ПРОЦЕССОВ ПЕЧАТИ ========== */
.tech-printing {
    padding: 6rem 0;
    position: relative;
    background: var(--tech-white);
}

.tech-section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.tech-section-subtitle {
    display: inline-block;
    padding: 0.3rem 1.5rem;
    background: var(--tech-off-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 100px;
    color: var(--tech-gray);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    box-shadow: var(--tech-shadow-sm);
}

.tech-section-title {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--tech-black);
    margin-bottom: 1rem;
}

.tech-section-title span {
    color: var(--tech-gray);
    font-weight: 400;
    position: relative;
    display: inline-block;
}

.tech-section-description {
    color: var(--tech-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.tech-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .tech-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tech-process-grid {
        grid-template-columns: 1fr;
    }
}

.tech-process-card {
    background: var(--tech-white);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.15, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--tech-shadow-sm);
    animation: floatCard 6s ease-in-out infinite;
    animation-delay: calc(var(--card-index) * 0.2s);
}

.tech-process-card:nth-child(1) { --card-index: 0; }
.tech-process-card:nth-child(2) { --card-index: 1; }
.tech-process-card:nth-child(3) { --card-index: 2; }

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.tech-process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--tech-off-white) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.tech-process-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--tech-shadow-lg);
    border-color: rgba(0, 0, 0, 0.08);
}

.tech-process-card:hover::before {
    opacity: 0.5;
}

.tech-process-icon {
    width: 70px;
    height: 70px;
    background: var(--tech-off-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--tech-black);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tech-process-card:hover .tech-process-icon {
    transform: rotateY(180deg) scale(1.1);
    background: var(--tech-black);
    color: var(--tech-white);
}

.tech-process-card h3 {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--tech-black);
}

.tech-process-card h3 small {
    display: block;
    font-size: 1rem;
    color: var(--tech-gray);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tech-process-card p {
    color: var(--tech-gray);
    line-height: 1.7;
    margin: 1.5rem 0;
}

.tech-process-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-process-features li {
    padding: 0.5rem 0;
    color: var(--tech-dark-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.tech-process-features li::before {
    content: '→';
    color: var(--tech-black);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.tech-process-card:hover .tech-process-features li::before {
    transform: translateX(3px);
}

/* ========== СЕКЦИЯ ПОСТОБРАБОТКИ ========== */
.tech-post {
    padding: 6rem 0;
    background: var(--tech-off-white);
    position: relative;
    overflow: hidden;
}

.tech-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(0, 0, 0, 0.01) 20px,
        rgba(0, 0, 0, 0.01) 40px
    );
    pointer-events: none;
}

.tech-post-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .tech-post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tech-post-grid {
        grid-template-columns: 1fr;
    }
}

.tech-post-card {
    background: var(--tech-white);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.15, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--tech-shadow-sm);
    animation: revealCard 1s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.tech-post-card:nth-child(1) { animation-delay: 0.1s; }
.tech-post-card:nth-child(2) { animation-delay: 0.2s; }
.tech-post-card:nth-child(3) { animation-delay: 0.3s; }
.tech-post-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes revealCard {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tech-post-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--tech-black);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.15, 1);
}

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

.tech-post-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.tech-post-icon {
    width: 60px;
    height: 60px;
    background: var(--tech-off-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--tech-black);
    transition: all 0.5s ease;
}

.tech-post-card:hover .tech-post-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--tech-black);
    color: var(--tech-white);
}

.tech-post-card h3 {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--tech-black);
}

.tech-post-card p {
    color: var(--tech-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tech-post-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.tech-post-steps li {
    padding: 0.4rem 0;
    color: var(--tech-dark-gray);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.03);
}

.tech-post-steps li::before {
    content: '—';
    color: var(--tech-black);
    font-weight: 600;
}

/* ========== СЕКЦИЯ ПРОГРАММНОГО ОБЕСПЕЧЕНИЯ ========== */
.tech-software {
    padding: 6rem 0;
    position: relative;
}

.tech-software-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .tech-software-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tech-software-grid {
        grid-template-columns: 1fr;
    }
}

.tech-software-card {
    background: var(--tech-white);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.15, 1);
    cursor: pointer;
    box-shadow: var(--tech-shadow-sm);
    position: relative;
    overflow: hidden;
}

.tech-software-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--tech-off-white) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-software-card:hover {
    transform: translateX(8px);
    box-shadow: var(--tech-shadow-md);
    border-color: rgba(0, 0, 0, 0.08);
}

.tech-software-card:hover::before {
    opacity: 0.3;
}

.tech-software-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.tech-software-icon {
    width: 50px;
    height: 50px;
    background: var(--tech-off-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tech-black);
    font-size: 1.5rem;
    transition: all 0.5s ease;
}

.tech-software-card:hover .tech-software-icon {
    transform: rotate(360deg);
    background: var(--tech-black);
    color: var(--tech-white);
}

.tech-software-card h3 {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.3rem;
    color: var(--tech-black);
    margin-bottom: 0.25rem;
}

.tech-software-card p {
    color: var(--tech-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.tech-software-level {
    width: 100%;
    height: 6px;
    background: var(--tech-light-gray);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.tech-software-level-fill {
    height: 100%;
    background: var(--tech-black);
    border-radius: 3px;
    transition: width 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    width: 0;
    animation: fillBar 1.5s ease forwards;
}

.tech-software-card:nth-child(1) .tech-software-level-fill { animation-delay: 0.1s; }
.tech-software-card:nth-child(2) .tech-software-level-fill { animation-delay: 0.2s; }
.tech-software-card:nth-child(3) .tech-software-level-fill { animation-delay: 0.3s; }
.tech-software-card:nth-child(4) .tech-software-level-fill { animation-delay: 0.4s; }
.tech-software-card:nth-child(5) .tech-software-level-fill { animation-delay: 0.5s; }
.tech-software-card:nth-child(6) .tech-software-level-fill { animation-delay: 0.6s; }

@keyframes fillBar {
    from { width: 0; }
    to { width: var(--target-width); }
}

/* ========== СЕКЦИЯ ГАРАНТИЙ ========== */
.tech-guarantees {
    padding: 6rem 0;
    background: var(--tech-off-white);
    position: relative;
    overflow: hidden;
}

.tech-guarantees-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.01) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.tech-guarantees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .tech-guarantees-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tech-guarantees-grid {
        grid-template-columns: 1fr;
    }
}

.tech-guarantee-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--tech-white);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 1.5rem;
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.15, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--tech-shadow-sm);
    cursor: pointer;
}

.tech-guarantee-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.02);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.tech-guarantee-card:hover::before {
    width: 300px;
    height: 300px;
}

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

.tech-guarantee-value {
    display: block;
    font-family: 'Clash Display', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--tech-black);
    line-height: 1;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.tech-guarantee-card h3 {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.3rem;
    color: var(--tech-dark-gray);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    display: inline-block;
}

.tech-guarantee-card p {
    color: var(--tech-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* ========== CTA СЕКЦИЯ ========== */
.tech-cta {
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tech-cta-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
    background: var(--tech-white);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--tech-shadow-lg);
}

.tech-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--tech-off-white) 0%, transparent 70%);
    animation: rotateSlow 20s linear infinite;
    opacity: 0.5;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.tech-cta-card h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--tech-black);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.tech-cta-card h2 span {
    color: var(--tech-gray);
    display: block;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 400;
    position: relative;
    display: inline-block;
}

.tech-cta-card p {
    color: var(--tech-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.tech-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: var(--tech-black);
    color: var(--tech-white);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.15, 1);
    border: 1px solid var(--tech-black);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.tech-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.tech-cta-button:hover {
    background: transparent;
    color: var(--tech-black);
    transform: translateY(-3px);
    box-shadow: var(--tech-shadow-md);
}

.tech-cta-button:hover::before {
    left: 100%;
}

.tech-cta-button i {
    transition: transform 0.3s ease;
}

.tech-cta-button:hover i {
    transform: translateX(5px);
}

/* ========== АДАПТИВНОСТЬ ========== */
@media (max-width: 768px) {
    .tech-hero {
        min-height: 60vh;
        padding: 6rem 0 3rem;
    }

    .tech-process-card,
    .tech-post-card,
    .tech-software-card,
    .tech-guarantee-card {
        padding: 1.5rem;
    }

    .tech-process-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .tech-process-card h3 {
        font-size: 1.5rem;
    }

    .tech-cta-card {
        padding: 2rem 1.5rem;
    }
}

@media (hover: none) and (pointer: coarse) {
    .tech-process-card:hover,
    .tech-post-card:hover,
    .tech-software-card:hover,
    .tech-guarantee-card:hover {
        transform: none;
    }

    .tech-process-card:active {
        transform: scale(0.98);
    }
}