/* ===== IT Page Specific Styles ===== */

/* IT Color Variables */
:root {
    --it-primary: #e91e8c;
    --it-primary-light: #ff4da6;
    --it-primary-dark: #c4157a;
    --it-secondary: #00d4ff;
    --it-bg-dark: #1a1a3e;
    --it-bg-darker: #0d0d1f;
    --it-gradient: linear-gradient(135deg, #e91e8c 0%, #00d4ff 100%);
}

/* IT Page Body */
.it-page {
    background: var(--it-bg-darker);
}

/* Container más compacto para página IT */
.it-page .container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

/* Secciones con padding lateral adicional */
.services-it .container,
.about-it .container,
.team-it .container,
.contact-it .container {
    max-width: 1080px;
}

/* ===== IT Preloader - Terminal Effect ===== */
.it-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--it-bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.it-preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.it-preloader__content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Code Rain Effect */
.code-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.3;
}

.code-column {
    position: absolute;
    top: -100%;
    width: 20px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--it-primary);
    text-shadow: 0 0 10px var(--it-primary);
    animation: code-fall 4s linear infinite;
    white-space: nowrap;
}

.code-column::before {
    content: '01101001 01110100';
    writing-mode: vertical-rl;
    letter-spacing: 5px;
}

.code-column:nth-child(1) { left: 5%; animation-delay: 0s; animation-duration: 3s; }
.code-column:nth-child(2) { left: 15%; animation-delay: 0.5s; animation-duration: 4s; }
.code-column:nth-child(3) { left: 25%; animation-delay: 1s; animation-duration: 3.5s; }
.code-column:nth-child(4) { left: 40%; animation-delay: 0.3s; animation-duration: 4.5s; }
.code-column:nth-child(5) { left: 55%; animation-delay: 0.8s; animation-duration: 3s; }
.code-column:nth-child(6) { left: 70%; animation-delay: 0.2s; animation-duration: 4s; }
.code-column:nth-child(7) { left: 82%; animation-delay: 0.6s; animation-duration: 3.5s; }
.code-column:nth-child(8) { left: 92%; animation-delay: 1.2s; animation-duration: 4s; }

@keyframes code-fall {
    0% {
        top: -20%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Terminal Window */
.it-preloader__logo {
    position: relative;
    z-index: 10;
}

.terminal-window {
    background: rgba(26, 26, 62, 0.95);
    border: 1px solid var(--it-primary);
    border-radius: var(--radius-lg);
    width: 450px;
    box-shadow:
        0 0 50px rgba(233, 30, 140, 0.3),
        inset 0 0 30px rgba(233, 30, 140, 0.05);
    overflow: hidden;
}

.terminal-header {
    background: linear-gradient(90deg, rgba(233, 30, 140, 0.2) 0%, rgba(0, 212, 255, 0.2) 100%);
    padding: 12px 16px;
    display: flex;
    gap: 8px;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--it-primary);
}

.terminal-dot:nth-child(2) {
    background: #00d4ff;
}

.terminal-dot:nth-child(3) {
    background: #40e0d0;
}

.terminal-body {
    padding: 24px;
    min-height: 120px;
}

.typing-text {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.prompt {
    color: var(--it-primary);
    font-weight: bold;
}

.command {
    color: #00d4ff;
}

.cursor {
    color: var(--it-primary);
    animation: blink 0.8s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.terminal-response {
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: #40e0d0;
    margin-bottom: 16px;
    min-height: 24px;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.terminal-response.show {
    opacity: 1;
    transform: translateY(0);
}

.terminal-response .success-icon {
    color: #40e0d0;
    margin-right: 8px;
}

.loading-bar {
    height: 4px;
    background: rgba(233, 30, 140, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    width: 0%;
    background: var(--it-gradient);
    border-radius: 2px;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px var(--it-primary);
}

/* ===== Page Entry Animations ===== */
.it-page [data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.it-page [data-animate].animate-in {
    opacity: 1;
    transform: translateY(0);
}

.it-page [data-animate="fade-up"] {
    transform: translateY(40px);
}

.it-page [data-animate="fade-left"] {
    transform: translateX(-40px);
}

.it-page [data-animate="fade-right"] {
    transform: translateX(40px);
}

.it-page [data-animate="scale"] {
    transform: scale(0.9);
}

/* Staggered animations for service cards */
.service-it-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.service-it-card:nth-child(1) { transition-delay: 0.1s; }
.service-it-card:nth-child(2) { transition-delay: 0.2s; }
.service-it-card:nth-child(3) { transition-delay: 0.3s; }
.service-it-card:nth-child(4) { transition-delay: 0.4s; }

/* Team cards stagger */
.team-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

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

.team-card:nth-child(1) { transition-delay: 0.2s; }
.team-card:nth-child(2) { transition-delay: 0.4s; }

/* Glitch effect for title on hover */
.hero-it__title-accent {
    position: relative;
}

.hero-it__title:hover .hero-it__title-accent {
    animation: glitch 0.5s ease;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(-3px, -3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(3px, -3px); }
    100% { transform: translate(0); }
}

/* Header IT */
.header--it {
    background: rgba(26, 26, 62, 0.9);
    backdrop-filter: blur(10px);
}

.header--it.scrolled {
    background: rgba(13, 13, 31, 0.98);
}

.logo-tagline--it {
    color: var(--it-primary) !important;
    font-weight: 700;
}

.nav__cta--it {
    background: var(--it-gradient) !important;
    color: white !important;
}

.nav__cta--it:hover {
    box-shadow: 0 0 30px rgba(233, 30, 140, 0.5);
}

/* Hero IT Section */
.hero-it {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, var(--it-bg-dark) 0%, var(--it-bg-darker) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-it__background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-it__gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 30%, rgba(233, 30, 140, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 70%, rgba(0, 212, 255, 0.15) 0%, transparent 50%);
}

.hero-it__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(233, 30, 140, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(233, 30, 140, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-it__content {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--spacing-3xl);
    align-items: center;
    z-index: 10;
    max-width: 1080px;
    margin: 0 auto;
}

.hero-it__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(233, 30, 140, 0.1);
    border: 1px solid rgba(233, 30, 140, 0.3);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--it-primary);
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-xl);
}

.pulse-it {
    width: 8px;
    height: 8px;
    background: var(--it-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-it__title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1;
}

.hero-it__title-line {
    display: block;
    font-family: 'Orbitron', sans-serif;
    color: var(--color-white);
    letter-spacing: 3px;
}

.hero-it__title-accent {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    background: var(--it-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3em;
    filter: drop-shadow(0 0 30px rgba(233, 30, 140, 0.5));
}

.hero-it__tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--it-primary);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-xl);
}

.hero-it__description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
    margin-bottom: var(--spacing-2xl);
    line-height: 1.8;
}

.hero-it__actions {
    display: flex;
    gap: var(--spacing-lg);
}

/* Hero IT Visual */
.hero-it__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-it__robot-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.robot-sphere {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sphere-ring {
    position: absolute;
    border: 2px solid rgba(233, 30, 140, 0.3);
    border-radius: 50%;
    animation: ring-rotate 10s linear infinite;
}

.sphere-ring--1 {
    width: 300px;
    height: 300px;
    animation-duration: 10s;
}

.sphere-ring--2 {
    width: 250px;
    height: 250px;
    animation-duration: 15s;
    animation-direction: reverse;
    border-color: rgba(0, 212, 255, 0.3);
}

.sphere-ring--3 {
    width: 200px;
    height: 200px;
    animation-duration: 8s;
    border-color: rgba(233, 30, 140, 0.5);
}

@keyframes ring-rotate {
    0% { transform: rotateX(60deg) rotateZ(0deg); }
    100% { transform: rotateX(60deg) rotateZ(360deg); }
}

.sphere-core {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.2) 0%, rgba(0, 212, 255, 0.2) 100%);
    border: 2px solid var(--it-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 50px rgba(233, 30, 140, 0.3),
        inset 0 0 30px rgba(233, 30, 140, 0.2);
    animation: core-pulse 3s ease-in-out infinite;
}

@keyframes core-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 50px rgba(233, 30, 140, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 80px rgba(233, 30, 140, 0.5); }
}

.code-symbol {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: var(--it-primary);
    text-shadow: 0 0 20px rgba(233, 30, 140, 0.5);
}

.floating-icons {
    position: absolute;
    inset: 0;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(26, 26, 62, 0.9);
    border: 1px solid rgba(233, 30, 140, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--it-primary);
    animation: float-icon 5s ease-in-out infinite;
}

.floating-icon svg {
    width: 24px;
    height: 24px;
}

.floating-icon--1 { top: 10%; left: 10%; animation-delay: 0s; }
.floating-icon--2 { top: 20%; right: 5%; animation-delay: 1s; }
.floating-icon--3 { bottom: 20%; left: 5%; animation-delay: 2s; }
.floating-icon--4 { bottom: 10%; right: 15%; animation-delay: 3s; }

@keyframes float-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Services IT Section */
.services-it {
    background: var(--it-bg-darker);
    padding: var(--spacing-4xl) 0;
    position: relative;
}

.section__tag--it {
    color: var(--it-primary);
}

.section__title--it {
    font-family: 'Orbitron', sans-serif !important;
    color: var(--color-white);
}

.text-gradient-it {
    font-family: 'Orbitron', sans-serif !important;
    background: var(--it-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Asegurar tipografía Orbitron en todos los títulos IT */
.it-page .section__title,
.it-page h2,
.hero-it__title,
.service-it-card__title,
.team-card__name,
.value-item__content h4 {
    font-family: 'Orbitron', sans-serif !important;
}

.services-it__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.service-it-card {
    position: relative;
    background: rgba(26, 26, 62, 0.5);
    border: 1px solid rgba(233, 30, 140, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    transition: all var(--transition-base);
    overflow: hidden;
}

.service-it-card:hover {
    transform: translateY(-8px);
    border-color: var(--it-primary);
    box-shadow: 0 20px 40px rgba(233, 30, 140, 0.2);
}

.service-it-card__glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--it-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

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

.service-it-card__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.15) 0%, rgba(0, 212, 255, 0.15) 100%);
    border-radius: var(--radius-lg);
    color: var(--it-primary);
    margin-bottom: var(--spacing-lg);
}

.service-it-card__icon svg {
    width: 40px;
    height: 40px;
}

.service-it-card__title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.service-it-card__description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.service-it-card__features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.service-it-card__features li {
    padding-left: var(--spacing-lg);
    position: relative;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.service-it-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--it-primary);
    border-radius: 50%;
}

/* About IT Section */
.about-it {
    background: linear-gradient(180deg, var(--it-bg-darker) 0%, var(--it-bg-dark) 100%);
    padding: var(--spacing-4xl) 0;
}

.about-it__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.about-it__description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.about-it__description strong {
    color: var(--it-primary);
}

.about-it__values {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.value-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: rgba(233, 30, 140, 0.05);
    border: 1px solid rgba(233, 30, 140, 0.2);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.value-item:hover {
    background: rgba(233, 30, 140, 0.1);
    border-color: var(--it-primary);
    transform: translateX(10px);
}

.value-item__icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--it-gradient);
    border-radius: var(--radius-md);
    color: white;
}

.value-item__icon svg {
    width: 24px;
    height: 24px;
}

.value-item__content h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-xs);
}

.value-item__content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* About IT Visual */
.about-it__visual {
    position: relative;
}

.about-it__image {
    position: relative;
    height: 450px;
    background: linear-gradient(135deg, var(--it-bg-dark) 0%, rgba(233, 30, 140, 0.1) 100%);
    border: 1px solid rgba(233, 30, 140, 0.2);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.tech-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(233, 30, 140, 0.3) 1px, transparent 1px),
        radial-gradient(rgba(0, 212, 255, 0.2) 1px, transparent 1px);
    background-size: 40px 40px, 25px 25px;
    background-position: 0 0, 12px 12px;
    opacity: 0.5;
}

.floating-elements {
    position: absolute;
    inset: 0;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    gap: var(--spacing-xl);
    padding: var(--spacing-2xl);
}

.tech-element {
    padding: var(--spacing-md) var(--spacing-xl);
    background: rgba(26, 26, 62, 0.9);
    border: 1px solid rgba(233, 30, 140, 0.3);
    border-radius: var(--radius-full);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: var(--it-primary);
    animation: float-element 4s ease-in-out infinite;
}

.tech-element--1 { animation-delay: 0s; }
.tech-element--2 { animation-delay: 1s; }
.tech-element--3 { animation-delay: 2s; }
.tech-element--4 { animation-delay: 3s; }

@keyframes float-element {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

/* Team IT Section */
.team-it {
    background: var(--it-bg-darker);
    padding: var(--spacing-4xl) 0;
}

.team-it__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
}

.team-card {
    background: rgba(26, 26, 62, 0.5);
    border: 1px solid rgba(233, 30, 140, 0.2);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
    text-align: center;
    padding: var(--spacing-2xl);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--it-primary);
    box-shadow: 0 25px 50px rgba(233, 30, 140, 0.15);
}

.team-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-xl);
}

.team-card__photo-wrapper {
    position: relative;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    padding: 4px;
    background: var(--it-gradient);
    animation: rotate-border 8s linear infinite paused;
}

.team-card:hover .team-card__photo-wrapper {
    animation-play-state: running;
}

@keyframes rotate-border {
    0% { background: linear-gradient(0deg, #e91e8c, #00d4ff); }
    25% { background: linear-gradient(90deg, #e91e8c, #00d4ff); }
    50% { background: linear-gradient(180deg, #e91e8c, #00d4ff); }
    75% { background: linear-gradient(270deg, #e91e8c, #00d4ff); }
    100% { background: linear-gradient(360deg, #e91e8c, #00d4ff); }
}

.team-card__photo-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: var(--it-bg-dark);
    padding: 3px;
}

.team-card__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 50%;
    transition: filter var(--transition-base);
}

.team-card:hover .team-card__photo {
    filter: brightness(1.05);
}

.team-card__content {
    padding: 0;
}

.team-card__name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-xs);
}

.team-card__role {
    display: block;
    font-size: 0.9rem;
    color: var(--it-primary);
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
}

.team-card__bio {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    text-align: left;
}

.team-card__skills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
}

.team-card__skills li {
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(233, 30, 140, 0.1);
    border: 1px solid rgba(233, 30, 140, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--it-primary);
    transition: all var(--transition-base);
}

.team-card__skills li:hover {
    background: var(--it-primary);
    color: white;
}

/* Contact IT Section */
.contact-it {
    background: var(--it-bg-dark);
    padding: var(--spacing-4xl) 0;
    position: relative;
    overflow: hidden;
}

.contact-it__background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.contact-it__pattern {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(233, 30, 140, 0.1) 0%, transparent 60%);
}

.contact-it__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

.contact-it__description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-2xl);
}

.contact-it__methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-method--it {
    background: rgba(233, 30, 140, 0.05);
    border: 1px solid rgba(233, 30, 140, 0.2);
}

.contact-method--it:hover {
    background: rgba(233, 30, 140, 0.1);
    border-color: var(--it-primary);
}

.contact-method__icon--it {
    background: rgba(233, 30, 140, 0.2);
    color: var(--it-primary);
}

.contact-it__form-wrapper {
    background: rgba(26, 26, 62, 0.8);
    border: 1px solid rgba(233, 30, 140, 0.2);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
}

.contact-it__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.form-line--it {
    background: var(--it-gradient);
}

/* Footer IT */
.footer--it {
    background: var(--it-bg-darker);
    border-top: 1px solid rgba(233, 30, 140, 0.2);
}

.social-link--it:hover {
    background: var(--it-primary);
}

/* Responsive IT Styles */
@media (max-width: 1024px) {
    .hero-it__content,
    .about-it__content,
    .contact-it__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-it__description {
        margin: 0 auto var(--spacing-2xl);
    }

    .hero-it__actions {
        justify-content: center;
    }

    .hero-it__visual {
        display: none;
    }

    .services-it__grid,
    .team-it__grid {
        grid-template-columns: 1fr;
    }

    .about-it__values {
        max-width: 500px;
        margin: var(--spacing-2xl) auto 0;
    }

    .about-it__visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-it__title {
        font-size: 2.5rem;
    }

    .hero-it__tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .hero-it__actions {
        flex-direction: column;
    }

    .contact-it__form {
        grid-template-columns: 1fr;
    }

    .value-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-it {
        padding-top: 100px;
    }

    .hero-it__title {
        font-size: 2rem;
    }

    .team-card__skills {
        justify-content: center;
    }

    .terminal-window {
        width: 90%;
        max-width: 350px;
    }

    .typing-text {
        font-size: 0.9rem;
    }

    .team-card__photo-wrapper {
        width: 150px;
        height: 150px;
    }
}
