* { margin: 0; padding: 0; box-sizing: border-box; } :root { --primary: #0088cc; --primary-dark: #006ba3; --secondary: #3390ec; --text: #1a1a1a; --text-light: #666; --bg: #ffffff; --bg-light: #f8f9fa; --accent: #ff6b35; --success: #28a745; } body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--text); line-height: 1.6; overflow-x: hidden; } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } header { background: var(--bg); box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; padding: 1rem 0; } nav { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; } .logo { font-size: 1.5rem; font-weight: 700; color: var(--primary); text-decoration: none; } .nav-links { display: flex; gap: 2rem; list-style: none; } .nav-links a { color: var(--text); text-decoration: none; font-weight: 500; transition: color 0.3s; } .nav-links a:hover { color: var(--primary); } .header-contacts { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; } .header-phone { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.9rem; } .header-phone-number { display: flex; align-items: center; gap: 0.5rem; color: var(--text); text-decoration: none; font-weight: 600; transition: color 0.3s; } .header-phone-number:hover { color: var(--primary); } .header-phone-label { font-size: 0.75rem; color: var(--text-light); } .header-action-buttons { display: flex; gap: 0.5rem; align-items: center; } .header-btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 16px; border-radius: 8px; font-weight: 600; text-decoration: none; transition: all 0.3s; font-size: 0.9rem; white-space: nowrap; } .header-btn-call { background: var(--success); color: white; } .header-btn-call:hover { background: #218838; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(40,167,69,0.3); } .header-btn-telegram { background: var(--primary); color: white; display: inline-flex; align-items: center; gap: 0.5rem; } .header-btn-telegram:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,136,204,0.3); } .header-btn-telegram svg { width: 18px; height: 18px; fill: currentColor; } .btn { display: inline-block; padding: 12px 30px; background: var(--primary); color: white; text-decoration: none; border-radius: 8px; font-weight: 600; transition: all 0.3s; border: none; cursor: pointer; font-size: 1rem; } .btn:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,136,204,0.3); } .btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); } .btn-outline:hover { background: var(--primary); color: white; } .hero { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 100px 0; text-align: center; position: relative; overflow: hidden; } .hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>'); opacity: 0.3; } .hero-content { position: relative; z-index: 1; } .hero h1 { font-size: 3.5rem; font-weight: 700; margin-bottom: 1.5rem; line-height: 1.2; } .hero p { font-size: 1.3rem; margin-bottom: 2rem; opacity: 0.95; max-width: 700px; margin-left: auto; margin-right: auto; } .hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; } .hero .btn { background: white; color: var(--primary); font-size: 1.1rem; padding: 15px 40px; } .hero .btn:hover { background: var(--bg-light); } .services { padding: 80px 0; background: var(--bg-light); } .section-title { text-align: center; font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; color: var(--text); } .section-subtitle { text-align: center; font-size: 1.2rem; color: var(--text-light); margin-bottom: 4rem; max-width: 600px; margin-left: auto; margin-right: auto; } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; } .service-card { background: white; padding: 2.5rem; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; height: 100%; } .how-we-work-card { padding: 1.5rem; } .service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); } .service-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 1.5rem; overflow: hidden; } .service-icon img { width: 100%; height: 100%; object-fit: cover; } .service-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--text); } .service-card p { color: var(--text-light); line-height: 1.8; } .service-card.ai-card { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; position: relative; overflow: hidden; } .service-card.ai-card::before { content: 'Новое'; position: absolute; top: 15px; right: 15px; background: var(--accent); color: white; padding: 5px 15px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; } .service-card.ai-card h3, .service-card.ai-card p { color: white; } .service-card.ai-card .service-icon { background: rgba(255,255,255,0.2); } .ai-badge { display: inline-block; background: var(--accent); color: white; padding: 3px 10px; border-radius: 12px; font-size: 0.85rem; font-weight: 600; margin-left: 0.5rem; } .features { padding: 80px 0; } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; } .feature-item { text-align: left; padding: 1rem; } .feature-icon { display: inline-flex; align-items: center; margin-right: 0.75rem; color: var(--primary); } .feature-icon img { width: 64px; height: 64px; object-fit: contain; } .feature-header { display: flex; align-items: center; margin-bottom: 0.5rem; } .feature-item h4 { font-size: 1.1rem; margin: 0; color: var(--text); } .feature-item p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; margin-top: 0.5rem; } .pricing { padding: 80px 0; background: var(--bg-light); } .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; } .pricing-card { background: white; padding: 2.5rem; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); text-align: center; position: relative; } .pricing-card.featured { border: 3px solid var(--primary); transform: scale(1.05); } .pricing-card.featured::before { content: 'Популярно'; position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; padding: 5px 20px; border-radius: 20px; font-size: 0.9rem; font-weight: 600; } .pricing-title { font-size: 1.5rem; margin-bottom: 1rem; color: var(--text); } .pricing-price { font-size: 3rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; } .pricing-period { color: var(--text-light); margin-bottom: 2rem; } .pricing-features { list-style: none; text-align: left; margin-bottom: 2rem; } .pricing-features li { padding: 0.5rem 0; color: var(--text-light); } .pricing-features li::before { content: '✓'; color: var(--success); font-weight: bold; margin-right: 0.5rem; } .contact { padding: 80px 0; } .contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; } .contact-info h3 { font-size: 1.8rem; margin-bottom: 1.5rem; color: var(--text); } .contact-info p { color: var(--text-light); margin-bottom: 2rem; line-height: 1.8; } .contact-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; } .contact-item-icon { width: 40px; height: 40px; background: var(--primary); color: white; border-radius: 8px; display: flex; align-items: center; justify-content: center; } .telegram-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--primary); text-decoration: none; font-weight: 500; transition: color 0.3s; } .telegram-link:hover { color: var(--primary-dark); } .telegram-icon { width: 24px; height: 24px; fill: currentColor; } .social-links { display: flex; gap: 1rem; margin-top: 1rem; } .social-link { display: inline-flex; align-items: center; justify-content: center; width: 50px; height: 50px; background: var(--primary); color: white; border-radius: 50%; text-decoration: none; transition: all 0.3s; } .social-link:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,136,204,0.3); } .contact-form { background: var(--bg-light); padding: 2.5rem; border-radius: 12px; } .form-group { margin-bottom: 1.5rem; } .form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; color: var(--text); } .form-group input, .form-group textarea { width: 100%; padding: 12px; border: 2px solid #e0e0e0; border-radius: 8px; font-family: inherit; font-size: 1rem; transition: border-color 0.3s; } .form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); } .form-group textarea { resize: vertical; min-height: 120px; } footer { background: var(--text); color: white; padding: 3rem 0; text-align: center; } .footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem; } .footer-links { display: flex; gap: 2rem; list-style: none; } .footer-links a { color: white; text-decoration: none; opacity: 0.8; transition: opacity 0.3s; } .footer-links a:hover { opacity: 1; } @media (max-width: 768px) { .nav-links { display: none; } nav { flex-direction: column; align-items: flex-start; } .header-contacts { width: 100%; justify-content: space-between; flex-wrap: wrap; } .header-phone { font-size: 0.85rem; } .header-action-buttons { width: 100%; justify-content: flex-start; } .header-btn { flex: 1; min-width: 120px; } .hero h1 { font-size: 2.5rem; } .hero p { font-size: 1.1rem; } .contact-content { grid-template-columns: 1fr; } .pricing-card.featured { transform: scale(1); } .why-we-grid { grid-template-columns: repeat(2, 1fr) !important; } .how-we-work-grid { grid-template-columns: repeat(2, 1fr) !important; } .cases-grid { grid-template-columns: repeat(2, 1fr) !important; } .features-grid { grid-template-columns: 1fr !important; gap: 1rem !important; } } @media (max-width: 480px) { .why-we-grid { grid-template-columns: 1fr !important; } .how-we-work-grid { grid-template-columns: 1fr !important; } .cases-grid { grid-template-columns: 1fr !important; } } @media (max-width: 480px) { .header-contacts { flex-direction: column; align-items: flex-start; } .header-action-buttons { width: 100%; } .header-btn { flex: 1; } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } .service-card, .feature-item, .pricing-card { animation: fadeInUp 0.6s ease-out; } .case-card { background: white; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); overflow: hidden; display: flex; flex-direction: column; height: 100%; transition: transform 0.3s, box-shadow 0.3s; } .case-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); } .case-slider-wrapper { position: relative; width: 100%; height: 500px; overflow: hidden; background: #ffffff; } .case-slider { display: flex; transition: transform 0.4s ease-in-out; height: 100%; } .case-slide { min-width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 0; cursor: pointer; } .case-slide img { width: 100%; height: 100%; object-fit: contain; background: #ffffff; transition: transform 0.3s; } .case-slide:hover img { transform: scale(1.02); } .case-slider-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255, 255, 255, 0.9); border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; z-index: 10; box-shadow: 0 2px 8px rgba(0,0,0,0.15); } .case-slider-nav:hover { background: white; box-shadow: 0 4px 12px rgba(0,0,0,0.25); } .case-slider-nav.prev { left: 10px; } .case-slider-nav.next { right: 10px; } .case-slider-nav svg { width: 20px; height: 20px; stroke: var(--primary); stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; } .case-content { padding: 2rem; display: flex; flex-direction: column; flex-grow: 1; } .case-content h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--text); } .case-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; flex-grow: 1; } .case-features { list-style: none; margin-bottom: 1.5rem; } .case-features li { padding: 0.5rem 0; color: var(--text-light); display: flex; align-items: flex-start; gap: 0.5rem; } .case-features li::before { content: '✓'; color: var(--success); font-weight: bold; flex-shrink: 0; margin-top: 0.1rem; } .case-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--primary); text-decoration: none; font-weight: 600; transition: color 0.3s; margin-top: auto; } .case-link:hover { color: var(--primary-dark); } .case-link svg { width: 16px; height: 16px; transition: transform 0.3s; } .case-link:hover svg { transform: translateX(4px); } .case-card-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: white; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; } .case-card-layout:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); } .case-card-slider-section { width: 100%; } .case-card-content-section { padding: 2rem; display: flex; flex-direction: column; justify-content: center; } @media (max-width: 768px) { .case-card-layout { grid-template-columns: 1fr; } .case-card-slider-section { order: 1; } .case-card-content-section { order: 2; } .case-slider-wrapper { height: 400px; } } .image-modal { display: none; position: fixed; z-index: 10000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.95); cursor: pointer; animation: fadeIn 0.3s; } .image-modal.active { display: flex; align-items: center; justify-content: center; } .image-modal-content { max-width: 95%; max-height: 95%; object-fit: contain; animation: zoomIn 0.3s; } .image-modal-close { position: absolute; top: 20px; right: 30px; color: white; font-size: 40px; font-weight: bold; cursor: pointer; z-index: 10001; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.1); border-radius: 50%; transition: all 0.3s; } .image-modal-close:hover { background: rgba(255, 255, 255, 0.2); transform: rotate(90deg); } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes zoomIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }