:root { --neon-blue: #00f3ff; --deep-space: #0b0f19; --glass-surface: rgba(255, 255, 255, 0.03); --glass-border: rgba(255, 255, 255, 0.08); --accent-gradient: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%); --text-secondary: #94a3b8; } .contact-wrapper { background-color: var(--deep-space); background-image: radial-gradient(circle at 10% 20%, rgba(0, 198, 255, 0.08) 0%, transparent 40%), radial-gradient(circle at 90% 80%, rgba(0, 114, 255, 0.08) 0%, transparent 40%); min-height: 100vh; position: relative; overflow-x: hidden; } .hero-title { font-size: 3.5rem; font-weight: 800; background: linear-gradient(to right, #fff, #94a3b8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: -1px; } .tech-card { background: var(--glass-surface); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 24px; padding: 2.5rem; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); position: relative; overflow: hidden; transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); } .tech-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--neon-blue), transparent); opacity: 0; transition: opacity 0.3s; } .tech-card:hover::before { opacity: 1; } .cyber-input { background: rgba(0, 0, 0, 0.2); border: 1px solid var(--glass-border); color: #fff; border-radius: 12px; padding: 1rem 1.2rem; font-size: 1rem; transition: all 0.3s ease; } .cyber-input:focus { background: rgba(0, 198, 255, 0.05); border-color: var(--neon-blue); box-shadow: 0 0 20px rgba(0, 243, 255, 0.1); color: white; outline: none; } .cyber-label { color: var(--text-secondary); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 0.5rem; display: block; } .corp-badge { background: rgba(0, 198, 255, 0.1); color: var(--neon-blue); padding: 5px 12px; border-radius: 6px; font-family: monospace; font-size: 0.9rem; border: 1px solid rgba(0, 198, 255, 0.2); } .info-row { display: flex; align-items: flex-start; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--glass-border); } .info-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; } .info-icon { width: 48px; height: 48px; background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--neon-blue); font-size: 1.2rem; margin-right: 1.2rem; border: 1px solid var(--glass-border); } .btn-telegram-pulse { background: #229ED9; color: white; border: none; width: 100%; padding: 1.2rem; border-radius: 16px; font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; gap: 12px; transition: all 0.3s ease; position: relative; overflow: hidden; box-shadow: 0 10px 20px rgba(34, 158, 217, 0.3); } .btn-telegram-pulse:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(34, 158, 217, 0.5); color: white; } .btn-telegram-pulse::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%); opacity: 0; transform: scale(0.5); transition: opacity 0.3s, transform 0.5s; } .btn-telegram-pulse:active::after { opacity: 1; transform: scale(1); transition: 0s; } .faq-item { margin-bottom: 1rem; border: 1px solid var(--glass-border); border-radius: 12px; overflow: hidden; background: rgba(255, 255, 255, 0.01); } .faq-button { width: 100%; text-align: left; padding: 1.2rem 1.5rem; background: transparent; border: none; color: white; font-weight: 600; display: flex; justify-content: space-between; align-items: center; transition: background 0.3s; } .faq-button:hover { background: rgba(255, 255, 255, 0.03); } .faq-button:not(.collapsed) { background: rgba(0, 198, 255, 0.08); color: var(--neon-blue); } .faq-content { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out, padding 0.3s ease; color: var(--text-secondary); line-height: 1.6; } .faq-content.show { padding: 0 1.5rem 1.5rem 1.5rem; max-height: 500px; } .chevron { transition: transform 0.3s; } .faq-button:not(.collapsed) .chevron { transform: rotate(180deg); }