Guest Pass Travel Advantage — бесплатно · Procreator.top { "@context": "https://schema.org", "@type": "TravelAgency", "name": "Travel Advantage Procreator", "description": "Эксклюзивные групповые туры и путешествия для фрилансеров и цифровых кочевников", "url": "https://procreator.top", "logo": "https://procreator.top/logo.png", "image": "https://procreator.top/og-image.jpg", "telephone": "+79853422252", "address": { "@type": "PostalAddress", "addressCountry": "RU" }, "geo": { "@type": "GeoCoordinates", "latitude": "55.7558", "longitude": "37.6173" }, "openingHoursSpecification": { "@type": "OpeningHoursSpecification", "dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"], "opens": "09:00", "closes": "18:00" }, "contactPoint": { "@type": "ContactPoint", "telephone": "+79853422252", "contactType": "customer service", "areaServed": "RU", "availableLanguage": "Russian" }, "areaServed": "Worldwide", "priceRange": "$$", "offers": { "@type": "Offer", "url": "https://procreator.top/guest-pass-travel/", "priceCurrency": "USD", "price": "0", "availability": "https://schema.org/InStock" }, "sameAs": ["https://t.me/NikolayMaksimenko"] } :root { --accent: #4f9df7; --accent-light: #7abaff; --accent-dark: #2d6eb8; --text: #e0e8ff; --bg-dark: #000; --bg-card: rgba(255, 255, 255, 0.02); --radius: 12px; --gap-xs: 12px; --gap-s: 20px; --gap-m: 32px; --gap-l: 48px; --gap-xl: 64px; --transition: 0.28s ease; --gradient-light: linear-gradient(90deg, #fffacd 0%, #ffe08a 50%, #fffacd 100%); } * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } body { font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: linear-gradient(180deg, #000 0%, #0a0a12 30%, #0f0f1a 60%, #12121f 100%); color: var(--text); line-height: 1.6; overflow-x: hidden; min-height: 100vh; } .container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 20px; } /* ЦЕНТРИРОВАНИЕ КОНТЕНТА НА МОБИЛЬНЫХ */ @media (max-width: 768px) { .container { padding: 0 16px; max-width: 100%; } } /* ХЕДЕР С ПЕРЕКЛЮЧАТЕЛЕМ ЯЗЫКА */ header { padding: 12px 0; background: rgba(0, 0, 0, 0.5); position: relative; width: 100%; z-index: 100; } .header-container { display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 20px; } .logo { font-size: clamp(1.25rem, 3.5vw, 1.6rem); font-weight: 700; letter-spacing: 0.4px; background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-light), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: 0 0 12px rgba(79, 157, 247, 0.3); background-size: 200% 100%; background-position: 0% 50%; animation: gradient-shift 8s ease-in-out infinite; line-height: 1.2; } .lang-switcher { display: flex; gap: 6px; align-items: center; } .lang-btn { display: inline-flex; align-items: center; justify-content: center; padding: 4px 8px; min-width: 38px; font-size: 0.78rem; font-weight: 600; font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; text-decoration: none; border-radius: 5px; border: 1px solid transparent; color: var(--text); background: rgba(79, 157, 247, 0.12); transition: all var(--transition); cursor: pointer; user-select: none; white-space: nowrap; } .lang-btn:hover { background: rgba(79, 157, 247, 0.22); transform: translateY(-1px); } .lang-btn.active { background: rgba(79, 157, 247, 0.32); border-color: var(--accent); color: white; box-shadow: 0 1px 6px rgba(79, 157, 247, 0.25); } @keyframes gradient-shift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } } .hero { position: relative; min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: var(--gap-xl) 0; overflow: hidden; width: 100%; background: none; } .hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.28) 100%); z-index: -1; } .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.78; z-index: -2; } .hero-content { width: 100%; max-width: 100%; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; } .hero h1 { font-size: clamp(2.8rem, 8vw, 4.8rem); line-height: 1.1; margin-bottom: var(--gap-s); letter-spacing: -1px; color: rgba(255, 255, 255, 0.78); text-shadow: 0 0 8px rgba(255, 255, 255, 0.25), 0 0 18px rgba(79, 157, 247, 0.35); -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.15); background: linear-gradient(90deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.9) 45%, rgba(255,255,255,0.85) 100%); -webkit-background-clip: text; background-clip: text; background-size: 200% 100%; background-position: 0% 50%; animation: text-shimmer 4s ease-in-out infinite; font-weight: 700; mix-blend-mode: screen; } .hero p { font-size: clamp(1.2rem, 3.2vw, 1.5rem); font-weight: 500; max-width: 700px; margin: 0 auto var(--gap-l); color: var(--text); opacity: 0.95; line-height: 1.5; } .hero .btn { margin: 0 auto; max-width: 560px; min-height: 68px; } .trust-badges-section { background: rgba(10, 10, 18, 0.92); padding: var(--gap-m) 0; border-top: 1px solid rgba(79,157,247,0.15); border-bottom: 1px solid rgba(79,157,247,0.15); } .trust-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: var(--gap-m) var(--gap-l); max-width: 1000px; margin: 0 auto; padding: 0 20px; } .badge { display: flex; align-items: center; gap: 12px; font-size: clamp(0.95rem, 2.5vw, 1.1rem); font-weight: 600; padding: 8px 0; background: transparent; border: none; } .badge-icon { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 6px; background: transparent; position: relative; overflow: visible; } .badge-icon svg { width: 20px; height: 20px; fill: var(--accent); } .badge-text { color: var(--text); opacity: 0.95; font-weight: 600; } .btn { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; min-height: 64px; padding: 0 2.8rem; font-size: 1.25rem; font-weight: 700; color: #fff; text-decoration: none; border-radius: 999px; background: transparent; border: 2px solid var(--accent); transition: all var(--transition); box-shadow: 0 4px 20px rgba(79, 157, 247, 0.2); will-change: transform; position: relative; touch-action: manipulation; -webkit-tap-highlight-color: transparent; margin: var(--gap-l) auto 0; max-width: 600px; width: 100%; } .btn:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(79, 157, 247, 0.5); background: rgba(79, 157, 247, 0.1); } .btn:focus { outline: 2px solid var(--accent); outline-offset: 2px; } .btn small { font-size: 0.88rem; font-weight: 400; opacity: 0.9; margin-top: 4px; } .btn.viral { background: transparent !important; border: 2px solid transparent !important; box-shadow: none !important; position: relative; overflow: hidden; margin: var(--gap-xl) auto 0; min-height: 56px; padding: 0 2rem !important; max-width: 480px; border-radius: 56px; } .btn.viral::before { content: ''; position: absolute; inset: -2px; background: linear-gradient(135deg, var(--accent), var(--accent-light), var(--accent), var(--accent-dark), var(--accent)); border-radius: 58px; z-index: -1; opacity: 0.8; animation: border-glow 4.5s ease-in-out infinite; } .btn.viral::after { content: ''; position: absolute; inset: 2px; background: rgba(10, 12, 20, 0.9); border-radius: 54px; z-index: -1; } .btn.viral span { font-size: clamp(1.25rem, 3.4vw, 1.6rem); font-weight: 700; background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: 0 0 6px rgba(79, 157, 247, 0.25); letter-spacing: -0.3px; } .btn.viral small { font-size: clamp(0.9rem, 2.4vw, 1.1rem); font-weight: 500; color: var(--text); opacity: 0.85; margin-top: 3px; text-shadow: none; letter-spacing: -0.2px; } .btn.viral:hover { transform: translateY(-2px) scale(1.01); } .btn.viral:hover::before { opacity: 0.95; box-shadow: 0 0 18px rgba(79, 157, 247, 0.8), 0 0 28px rgba(122, 186, 255, 0.6), 0 0 35px rgba(45, 110, 184, 0.45); } .video-reviews-section { background: rgba(8, 8, 16, 0.94); padding: var(--gap-xl) 0; width: 100%; position: relative; overflow: hidden; } .video-reviews-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(79,157,247,0.02), transparent 80%); z-index: 0; } .video-reviews-container { width: 100%; max-width: 100%; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; } .video-reviews-title { font-size: clamp(1.8rem, 4.5vw, 2.6rem); font-weight: 800; text-align: center; margin-bottom: var(--gap-m); color: var(--text); } .video-reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--gap-l); max-width: 1600px; margin: 0 auto; padding: 0 20px; width: 100%; } .review-sphere { width: 100%; aspect-ratio: 1/1; border-radius: 50%; overflow: hidden; background: var(--bg-card); cursor: pointer; transition: all var(--transition); position: relative; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6); border: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; touch-action: manipulation; will-change: transform, opacity; outline: 0; opacity: 0; transform: scale(0.9); transition: opacity 0.15s ease, transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1); } .review-sphere.loaded { opacity: 1; transform: scale(1); } .review-sphere::before { content: ''; position: absolute; inset: -3px; border-radius: 50%; background: linear-gradient(135deg, rgba(122, 186, 255, 0.08), rgba(79, 157, 247, 0.15), rgba(45, 110, 184, 0.12)); z-index: -1; animation: pulse-ring 8s ease-in-out infinite; opacity: 0.25; filter: blur(4px); } @keyframes pulse-ring { 0%, 100% { transform: scale(1); opacity: 0.15; } 50% { transform: scale(1.08); opacity: 0.3; } } .sphere-poster { position: absolute; width: 100%; height: 100%; object-fit: cover; border-radius: 50%; opacity: 1; transition: opacity 0.2s ease; z-index: 1; } .review-sphere video { position: absolute; width: 100%; height: 100%; object-fit: cover; border-radius: 50%; opacity: 0; filter: brightness(0.88) contrast(1.25) saturate(1.15); pointer-events: none; z-index: 2; top: 0; left: 0; transition: opacity 0.25s ease; will-change: opacity; } .review-sphere video.loaded { opacity: 0.5; } .review-sphere.is-playing video { opacity: 0.55; } .review-sphere.is-playing .sphere-poster { opacity: 0; } .review-sphere:hover { transform: scale(1.04); box-shadow: 0 6px 20px rgba(0,0,0,0.65), 0 0 16px rgba(79, 157, 247, 0.25); z-index: 10; } .review-sphere:hover::before { animation: pulse-ring 3s ease-in-out infinite; filter: blur(6px); opacity: 0.35; } .review-sphere:focus { outline: 2px solid var(--accent); outline-offset: 3px; z-index: 10; box-shadow: 0 6px 20px rgba(0,0,0,0.65), 0 0 16px rgba(79, 157, 247, 0.3); } .review-sphere:active { transform: scale(0.98); } .social-proof { text-align: center; padding: var(--gap-l) 0; width: 100%; background: rgba(10, 10, 18, 0.95); } .social-proof h3 { margin-bottom: 16px; font-size: clamp(1.6rem, 4vw, 2rem); } .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: var(--gap-m); margin-top: var(--gap-l); max-width: 800px; margin-left: auto; margin-right: auto; } .stat-item { text-align: center; padding: var(--gap-s); } .stat-number { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: var(--accent); display: block; margin-bottom: var(--gap-xs); } .stat-label { font-size: clamp(0.9rem, 2.4vw, 1rem); color: var(--text); opacity: 0.9; } /* ФОТО НИКОЛАЯ - БЕЗ РАМКИ, УТОПЛЕНО В ФОН, КРУГЛОЕ */ .ambassador { width: 100%; max-width: 100%; margin: 0 auto; text-align: center; padding: var(--gap-xl) 20px; background: rgba(12, 12, 20, 0.96); position: relative; overflow: hidden; } .ambassador::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(79,157,247,0.03), transparent 70%); z-index: 0; } .ambassador-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; } /* КРУГЛОЕ ФОТО БЕЗ РАМКИ, УТОПЛЕНО В ФОН */ .ambassador-avatar { width: 160px; height: 160px; margin: 0 auto 24px; overflow: hidden; border-radius: 50%; position: relative; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4); border: 3px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.01); } .ambassador-avatar::before { content: ''; position: absolute; inset: -6px; border-radius: 50%; background: linear-gradient(135deg, rgba(79, 157, 247, 0.2), rgba(122, 186, 255, 0.15), rgba(45, 110, 184, 0.1) ); z-index: -1; opacity: 0.3; animation: pulse-glow 4s ease-in-out infinite; } @keyframes pulse-glow { 0%, 100% { transform: scale(1); opacity: 0.2; } 50% { transform: scale(1.1); opacity: 0.4; } } .ambassador-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; } .ambassador-avatar:hover img { transform: scale(1.05); } .ambassador-status { color: var(--accent); font-size: 0.95rem; margin-bottom: 16px; font-weight: 600; letter-spacing: 0.5px; } /* БЕЛАЯ ИКОНКА ТЕЛЕГРАММА С КОНТУРОМ */ .telegram-icon { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; color: #fff; font-size: 14px; background: transparent; border: 2px solid rgba(255, 255, 255, 0.6); box-shadow: none; margin-right: 10px; flex-shrink: 0; transition: all 0.2s ease; } .telegram-icon:hover { border-color: var(--accent); background: rgba(79, 157, 247, 0.1); transform: scale(1.1); } .telegram-icon svg { fill: currentColor; } .ambassador h2 a { text-decoration: none; color: var(--text); font-size: clamp(1.4rem, 3.5vw, 1.8rem); font-weight: 700; display: inline-flex; align-items: center; padding: 8px 18px; transition: all var(--transition); border-radius: 10px; background: rgba(255, 255, 255, 0.02); } .ambassador h2 a:hover { color: #7abaff; background: rgba(79, 157, 247, 0.12); transform: translateY(-2px); } .grid-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--gap-l); margin-top: var(--gap-m); width: 100%; padding: var(--gap-xl) 20px; justify-items: center; background: rgba(14, 14, 22, 0.97); } .benefit { padding: var(--gap-m); background: var(--bg-card); border-radius: var(--radius); text-align: left; border: 1px solid rgba(255, 255, 255, 0.03); transition: all var(--transition); max-width: 360px; position: relative; overflow: hidden; } .benefit::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); } .benefit:hover::before { transform: scaleX(1); } .benefit:hover { background: rgba(255, 255, 255, 0.03); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25); border-color: rgba(79, 157, 247, 0.25); } .benefit h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); margin-bottom: var(--gap-s); color: var(--accent); } .benefit p { font-size: clamp(1rem, 2.6vw, 1.2rem); color: var(--text); opacity: 0.9; line-height: 1.7; } .guarantees-section { background: rgba(16, 16, 24, 0.98); padding: var(--gap-xl) 0; text-align: center; border-top: 1px solid rgba(79,157,247,0.15); border-bottom: 1px solid rgba(79,157,247,0.15); } .guarantees { display: flex; justify-content: center; flex-wrap: wrap; gap: var(--gap-l) var(--gap-xl); max-width: 1000px; margin: 0 auto; padding: 0 20px; } .guarantee-item { text-align: center; max-width: 320px; padding: var(--gap-m); } .guarantee-item .icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(79, 157, 247, 0.1); font-size: 1.3rem; font-weight: 700; margin-bottom: var(--gap-s); color: var(--accent); } .guarantee-item strong { display: block; font-size: clamp(1.2rem, 3vw, 1.4rem); margin-bottom: var(--gap-xs); color: var(--text); } .guarantee-item p { font-size: clamp(0.95rem, 2.4vw, 1.1rem); opacity: 0.85; } .how-to-section { background: rgba(18, 18, 26, 0.98); padding: var(--gap-xl) 0; width: 100%; } .how-to { width: 100%; max-width: 100%; margin: 0 auto; padding: 0 20px; display: flex; flex-direction: column; align-items: center; } .step-item { margin-bottom: var(--gap-l); padding-left: var(--gap-m); border-left: 2px solid var(--accent); max-width: 800px; width: 100%; } .step-item:last-child { margin-bottom: 0; } .step-item h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); margin-bottom: 0.5rem; } .step-item p { font-size: clamp(0.95rem, 2vw, 1.1rem); opacity: 0.9; } .modal { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.96); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s ease; touch-action: none; } .modal.active { opacity: 1; visibility: visible; } .modal-content { width: 96vw; max-width: 100%; max-height: 90vh; position: relative; } .modal-video { width: 100%; height: auto; max-height: 90vh; object-fit: contain; border-radius: 12px; background: var(--bg-dark); } .modal-close { position: absolute; top: 16px; right: 16px; color: rgba(255, 255, 255, 0.85); font-size: 1.8rem; background: rgba(0, 0, 0, 0.45); border: none; border-radius: 50%; cursor: pointer; padding: 8px; min-height: 40px; min-width: 40px; z-index: 10; transition: all var(--transition); touch-action: manipulation; -webkit-tap-highlight-color: transparent; } .modal-close:hover { color: white; background: rgba(79, 157, 247, 0.4); transform: scale(1.15); } .modal-close:focus { outline: 2px solid var(--accent); outline-offset: 2px; } .modal-overlay { position: absolute; inset: 0; z-index: 5; } :focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; } button, a, .benefit { transition: all var(--transition); } .club-section { background: rgba(20, 20, 28, 0.99); padding: var(--gap-xl) 0; text-align: center; border-top: 1px solid rgba(79,157,247,0.2); border-bottom: 1px solid rgba(79,157,247,0.2); width: 100%; position: relative; overflow: hidden; } .club-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(79,157,247,0.05), transparent); opacity: 0.25; z-index: -1; } .club-section h2 { color: #fff; font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin-bottom: var(--gap-xl); text-shadow: 0 0 8px rgba(79, 157, 247, 0.2); } .club-section p { max-width: 800px; margin: 0 auto var(--gap-m); font-size: clamp(1rem, 2.5vw, 1.2rem); opacity: 0.95; } .club-section .club-features { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--gap-m); margin-bottom: var(--gap-l); } .club-section .club-feature { flex: 1 1 280px; padding: var(--gap-s); background: rgba(255,255,255,0.015); border-radius: var(--radius); border: 1px solid rgba(79,157,247,0.06); text-align: left; transition: all var(--transition); } .club-section .club-feature:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2); } .club-section .club-feature h3 { font-size: clamp(1.2rem, 2.8vw, 1.4rem); margin-bottom: 0.5rem; color: var(--accent); } .club-section .club-feature p { margin: 0; font-size: 0.95rem; opacity: 0.9; } @media (max-width: 768px) { .club-section .club-features { flex-direction: column; align-items: center; } .club-section .club-feature { width: 100%; max-width: 480px; text-align: center; } } /* 📱 УЛУЧШЕННАЯ МОБИЛЬНАЯ ВЕРСТКА — ОПТИМИЗИРОВАННАЯ */ @media (max-width: 768px) { :root { --gap-xl: 40px; --gap-l: 32px; --gap-m: 24px; --gap-s: 16px; --gap-xs: 8px; } header { padding: 6px 0; background: rgba(0, 0, 0, 0.8); min-height: 44px; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); } .header-container { padding: 0 14px; } .lang-switcher { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); gap: 3px; } .lang-btn { padding: 2px 6px; font-size: 0.68rem; min-width: 32px; background: rgba(79, 157, 247, 0.06) !important; border: 1px solid rgba(255, 255, 255, 0.08) !important; color: rgba(255, 255, 255, 0.65) !important; transition: none !important; } .lang-btn:hover, .lang-btn:active, .lang-btn:focus { background: rgba(79, 157, 247, 0.06) !important; transform: none !important; box-shadow: none !important; border-color: rgba(255, 255, 255, 0.08) !important; color: rgba(255, 255, 255, 0.65) !important; outline: none !important; } .lang-btn.active { background: rgba(79, 157, 247, 0.15) !important; border-color: var(--accent) !important; color: white !important; box-shadow: none !important; } .logo { font-size: clamp(1.1rem, 3vw, 1.35rem); letter-spacing: 0.25px; line-height: 1.3; text-shadow: 0 0 8px rgba(79, 157, 247, 0.2); font-weight: 600; } /* Уменьшенные отступы для всех секций */ .hero { padding: var(--gap-xl) 0 36px; min-height: 45vh; } .hero h1 { font-size: clamp(2.4rem, 7vw, 3.6rem); letter-spacing: -0.5px; } .hero p { font-size: clamp(1.05rem, 2.6vw, 1.3rem); padding: 0 6px; } .video-reviews-section, .ambassador, .grid-benefits, .guarantees-section, .how-to-section, .club-section { padding: var(--gap-l) 0; } .video-reviews-grid { padding: 0 12px; } .review-sphere { max-width: 280px; margin: 0 auto; } /* ФОТО НИКОЛАЯ - ЦЕНТРИРОВАНО, КРУГЛОЕ */ .ambassador { padding: var(--gap-l) 14px; } .ambassador-avatar { width: 130px; height: 130px; margin: 0 auto 18px; } .ambassador-status { font-size: 0.88rem; margin-bottom: 12px; } .ambassador h2 a { font-size: clamp(1.25rem, 2.8vw, 1.5rem); padding: 6px 14px; } .grid-benefits { grid-template-columns: 1fr; gap: var(--gap-m); padding: var(--gap-l) 14px; } .benefit { padding: var(--gap-s); max-width: 100%; } .benefit h3 { font-size: clamp(1.25rem, 2.8vw, 1.5rem); } .benefit p { font-size: clamp(0.95rem, 2.2vw, 1.1rem); } .guarantees { flex-direction: column; align-items: center; padding: 0 14px; } .step-item { padding-left: var(--gap-s); margin-bottom: var(--gap-m); padding: 0 14px; } .step-item h3 { font-size: clamp(1.2rem, 2.7vw, 1.4rem); } .step-item p { font-size: clamp(0.9rem, 1.8vw, 0.98rem); } .btn { min-height: 52px; font-size: clamp(1.05rem, 2.6vw, 1.15rem); padding: 0 clamp(1.6rem, 2.8vw, 2rem); width: 100%; max-width: 460px; } .btn small { font-size: clamp(0.8rem, 2vw, 0.88rem); } .btn.viral { min-height: 48px; padding: 0 1.6rem !important; max-width: 460px; } .btn.viral span { font-size: clamp(1.2rem, 3.1vw, 1.5rem); } .btn.viral small { font-size: clamp(0.85rem, 2.2vw, 1rem); } .trust-badges { flex-direction: column; align-items: center; gap: var(--gap-s); padding: 0 14px; } .badge { font-size: clamp(0.9rem, 2.3vw, 1rem); } .badge-icon { width: 24px; height: 24px; } .social-proof h3 { font-size: clamp(1.5rem, 3.8vw, 1.8rem); } .stats-grid { gap: var(--gap-s); } .stat-number { font-size: clamp(1.8rem, 4.5vw, 2.6rem); } .stat-label { font-size: clamp(0.85rem, 2.2vw, 0.95rem); } .club-section p { font-size: clamp(0.95rem, 2.3vw, 1.1rem); padding: 0 6px; } footer.elementor-footer { padding: 28px 14px 36px; } .footer-phones { font-size: 0.96rem; margin: 14px 0 22px; } .footer-phones a { padding: 5px 10px; font-size: 0.96rem; gap: 5px; } .footer-nav { gap: 10px 16px; font-size: 0.84rem; } .footer-nav a { padding: 7px 14px; font-size: 0.84rem; } .footer-declaration { font-size: 0.7rem; margin-top: 26px; } .footer-divider { margin: 14px auto; } /* Убираем горизонтальный скролл */ body { overflow-x: hidden; } /* Оптимизация видео в хедере */ .hero-video { opacity: 0.7; } /* Улучшение читаемости текста */ h1, h2, h3, h4 { line-height: 1.3; } p { line-height: 1.5; } /* Оптимизация кнопок для касаний */ .btn { min-height: 48px; /* Минимальная высота для удобного тапа */ touch-action: manipulation; } /* Улучшение доступности форм */ input, textarea, select { min-height: 44px; /* Стандартная высота для мобильных */ } /* Оптимизация изображений */ img { max-width: 100%; height: auto; } /* Улучшение прокрутки */ html { scroll-behavior: smooth; -webkit-overflow-scrolling: touch; } /* Убираем выделение текста при случайном касании */ * { -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } /* Улучшение анимаций на слабых устройствах */ @media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } } } @media (max-width: 480px) { :root { --gap-xl: 36px; --gap-l: 28px; --gap-m: 20px; --gap-s: 14px; --gap-xs: 7px; } header { padding: 4px 0; min-height: 40px; } .lang-switcher { right: 10px; gap: 2px; } .lang-btn { padding: 1px 5px; font-size: 0.64rem; min-width: 30px; } .logo { font-size: clamp(1.05rem, 2.8vw, 1.25rem); letter-spacing: 0.2px; } .hero { padding: var(--gap-xl) 0 32px; min-height: 42vh; } .hero h1 { font-size: clamp(2.2rem, 6.5vw, 3.2rem); } .hero p { font-size: clamp(1rem, 2.4vw, 1.2rem); padding: 0 4px; } .review-sphere { max-width: 260px; } .ambassador-avatar { width: 120px; height: 120px; margin: 0 auto 16px; } .ambassador h2 a { font-size: clamp(1.2rem, 2.6vw, 1.4rem); } .btn { min-height: 48px; font-size: clamp(1rem, 2.4vw, 1.1rem); padding: 0 clamp(1.4rem, 2.6vw, 1.8rem); max-width: 420px; } .btn.viral { min-height: 46px; padding: 0 1.5rem !important; max-width: 420px; } .btn.viral span { font-size: clamp(1.15rem, 2.9vw, 1.4rem); } .trust-badges { gap: var(--gap-xs); } .badge { font-size: clamp(0.85rem, 2.1vw, 0.95rem); } .stat-number { font-size: clamp(1.7rem, 4.2vw, 2.4rem); } .stat-label { font-size: clamp(0.8rem, 2vw, 0.9rem); } footer.elementor-footer { padding: 24px 12px 32px; } .footer-phones { font-size: 0.92rem; margin: 12px 0 20px; } .footer-phones a { padding: 4px 8px; font-size: 0.92rem; gap: 4px; } .footer-nav { gap: 8px 14px; font-size: 0.8rem; } .footer-nav a { padding: 6px 12px; font-size: 0.8rem; } .footer-declaration { font-size: 0.66rem; margin-top: 24px; } .footer-divider { margin: 12px auto; } } @media (max-width: 360px) { :root { --gap-xl: 32px; --gap-l: 24px; --gap-m: 18px; --gap-s: 12px; --gap-xs: 6px; } header { padding: 2px 0; min-height: 38px; } .lang-switcher { right: 8px; gap: 1px; } .lang-btn { padding: 1px 4px; font-size: 0.6rem; min-width: 28px; } .logo { font-size: clamp(1rem, 2.6vw, 1.2rem); letter-spacing: 0.15px; } .hero { padding: var(--gap-xl) 0 28px; min-height: 40vh; } .hero h1 { font-size: clamp(2rem, 6vw, 3rem); } .hero p { font-size: clamp(0.95rem, 2.2vw, 1.15rem); padding: 0 2px; } .review-sphere { max-width: 240px; } .ambassador-avatar { width: 110px; height: 110px; margin: 0 auto 14px; } .ambassador h2 a { font-size: clamp(1.15rem, 2.4vw, 1.35rem); } .btn { min-height: 46px; font-size: clamp(0.95rem, 2.2vw, 1.05rem); padding: 0 clamp(1.3rem, 2.4vw, 1.7rem); max-width: 400px; } .btn.viral { min-height: 44px; padding: 0 1.4rem !important; max-width: 400px; } .btn.viral span { font-size: clamp(1.1rem, 2.7vw, 1.35rem); } .btn.viral small { font-size: clamp(0.8rem, 2vw, 0.95rem); } .trust-badges { gap: var(--gap-xs); } .badge { font-size: clamp(0.8rem, 1.9vw, 0.9rem); } .stat-number { font-size: clamp(1.6rem, 4vw, 2.2rem); } .stat-label { font-size: clamp(0.75rem, 1.8vw, 0.85rem); } .grid-benefits { padding: var(--gap-l) 12px; } .benefit h3 { font-size: clamp(1.2rem, 2.6vw, 1.45rem); } .benefit p { font-size: clamp(0.9rem, 2vw, 1.05rem); } .step-item h3 { font-size: clamp(1.15rem, 2.5vw, 1.35rem); } .step-item p { font-size: clamp(0.85rem, 1.7vw, 0.95rem); } footer.elementor-footer { padding: 20px 10px 28px; } .footer-phones { font-size: 0.88rem; margin: 10px 0 18px; } .footer-phones a { padding: 3px 7px; font-size: 0.88rem; gap: 3px; } .footer-nav { gap: 6px 12px; font-size: 0.76rem; } .footer-nav a { padding: 5px 10px; font-size: 0.76rem; } .footer-declaration { font-size: 0.62rem; margin-top: 22px; } .footer-divider { margin: 10px auto; } } footer.elementor-footer { padding: 40px 20px 48px; text-align: center; color: #777; border-top: 1px solid #1a1a1a; background: rgba(15, 15, 23, 0.98); font-size: 0.92rem; width: 100%; position: relative; } footer.elementor-footer .container { max-width: 100%; padding: 0; } .footer-phones { margin: 20px 0 28px; font-size: 1.1rem; opacity: 0.92; } .footer-phones a { color: #ccc; text-decoration: none; transition: all 0.2s ease; font-weight: 500; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 8px 16px; border-radius: 6px; border: 1px solid rgba(79, 157, 247, 0.2); } .footer-phones a:hover { color: var(--accent); background: rgba(79, 157, 247, 0.06); transform: translateY(-2px); border-color: var(--accent); } .phone-icon { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border: 1px solid rgba(79, 157, 247, 0.4); border-radius: 50%; color: var(--accent); font-size: 12px; background: rgba(79, 157, 247, 0.05); } .footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 24px; margin: 0 auto 24px; max-width: 800px; font-size: 0.94rem; padding: 0; list-style: none; } .footer-nav a { color: #aaa; text-decoration: none; transition: all 0.22s ease; white-space: nowrap; padding: 6px 12px; border-radius: 4px; font-weight: 500; } .footer-nav a:hover, .footer-nav a:focus { color: var(--accent); background: rgba(79, 157, 247, 0.05); transform: translateY(-1px); } .footer-declaration { font-size: 0.78rem; line-height: 1.6; opacity: 0.55; margin-top: 24px; max-width: 640px; margin-left: auto; margin-right: auto; color: #666; padding: 12px 0; } .footer-declaration br { display: none; } .footer-divider { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(79, 157, 247, 0.2), transparent); margin: 20px auto; max-width: 400px; } img[loading="lazy"], video[loading="lazy"] { content-visibility: auto; contain-intrinsic-size: 300px 200px; will-change: auto; } @keyframes slideUp { from { opacity: 0; transform: translateY(20px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } } .benefit, .stat-item, .guarantee-item { animation: slideUp 0.5s ease-out forwards; animation-delay: calc(var(--index, 0) * 0.08s); } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } .review-sphere:nth-child(1) { animation: fadeIn 0.15s ease-out forwards; } .review-sphere:nth-child(2) { animation: fadeIn 0.15s ease-out 0.03s forwards; } .review-sphere:nth-child(3) { animation: fadeIn 0.15s ease-out 0.06s forwards; } @media (prefers-reduced-motion: reduce) { * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } .btn, .benefit, .review-sphere { transform: none !important; } .review-sphere::before { animation: none !important; } .hero h1 { animation: none !important; } .btn.viral::before { animation: none !important; } .ambassador-avatar::before { animation: none !important; } }

Твой круг путешественников

Присоединяйся к 450,000 путешественникам и начни экономить уже сегодня

Получить доступ бесплатно Гостевой пропуск на 14 дней без обязательств
Featured in Forbes, TechCrunch, Entrepreneur
SSL шифрование всех данных
4.9/5 на основе 2,400+ отзывов

Амбассадоры MWR Life

Видео амбассадора о путешествиях
Видео амбассадора о Майорке
Видео амбассадора о лидерстве
Николай Максименко — официальный амбассадор MWR Life
Официальный амбассадор MWR Life

Nikolay Maksimenko

Начни путешествовать с нами сегодня

Найди попутчиков за 48 часов

89% наших пользователей находят компанию для поездки менее чем за 2 дня. Средний возраст участников — 28-45 лет.

Получи персональную консультацию

Наши эксперты помогут подобрать идеальный маршрут с учетом вашего бюджета и предпочтений.

Экономь до 80% на отелях

Доступ к 2,147,389 отелям по ценам на 40-80% ниже рынка. Средняя экономия — $300 за поездку.

14 дней бесплатно

Без обязательств и привязки карты. Просто зарегистрируйтесь и начните путешествовать.

Гарантия лучшей цены

Если найдете дешевле — вернем разницу в течение 24 часов.

Эксклюзивный доступ к Клубу

Получите гостевой доступ

Бесплатно на 14 дней. Без обязательств и привязки карты. Просто зарегистрируйтесь.

Выберите эксклюзивную поездку

Доступ к закрытым направлениям и специальным условиям для участников клуба.

Оформите партнерство

Годовое членство за $99 или бизнес-пакет для партнерства с брендом TRAVEL ADVANTAGE.

Для доступа к платформе может потребоваться VPN. Посмотреть презентацию

window.dataLayer=window.dataLayer||[];function gtag(){dataLayer.push(arguments);}gtag('js',new Date());gtag('config','G-XXXXXXXXXX'); (function(){'use strict'; document.addEventListener('DOMContentLoaded',function(){ /* ОПТИМИЗИРОВАННАЯ ЗАГРУЗКА СФЕР - УСКОРЕННАЯ */ const spheres = document.querySelectorAll('.review-sphere'); spheres.forEach(function(sphere, index) { const posterImg = sphere.querySelector('.sphere-poster'); const video = sphere.querySelector('.sphere-video'); // Показать сферу с постером МГНОВЕННО setTimeout(() => { sphere.classList.add('loaded'); }, index * 10); // Загрузка видео при наведении (только на десктопе) if (!('ontouchstart' in window)) { sphere.addEventListener('mouseenter', function() { if (!video.src && !sphere.classList.contains('is-playing')) { video.src = sphere.dataset.video; video.load(); video.addEventListener('loadeddata', function() { sphere.classList.add('is-playing'); video.play().catch(function(){}); }, {once: true}); } }); sphere.addEventListener('mouseleave', function() { if (!video.paused) { video.pause(); sphere.classList.remove('is-playing'); } }); } // Открыть модальное окно при клике sphere.addEventListener('click', function(e) { e.stopPropagation(); const modal = document.getElementById('videoModal'); const player = document.getElementById('modalVideoPlayer'); const videoUrl = sphere.dataset.video; const posterUrl = sphere.dataset.poster; if (posterUrl) player.poster = posterUrl; player.src = videoUrl; player.load(); player.oncanplay = function() { player.play().catch(function(err) { console.log('Autoplay prevented:', err); }); }; modal.classList.add('active'); document.body.style.overflow = 'hidden'; const closeModal = function() { player.pause(); player.currentTime = 0; player.removeAttribute('poster'); modal.classList.remove('active'); document.body.style.overflow = ''; document.removeEventListener('keydown', handleKeydown); document.getElementById('modalOverlay').removeEventListener('click', closeModal); document.getElementById('closeVideoModal').removeEventListener('click', closeModal); }; const handleKeydown = function(e) { if (e.key === 'Escape') closeModal(); }; document.getElementById('closeVideoModal').addEventListener('click', closeModal); document.getElementById('modalOverlay').addEventListener('click', closeModal); document.addEventListener('keydown', handleKeydown); }); }); // Эффекты для мобильных устройств if ('ontouchstart' in window || navigator.maxTouchPoints) { document.querySelectorAll('.btn, .benefit, .review-sphere').forEach(function(el) { el.addEventListener('touchstart', function() { this.style.transform = 'scale(0.98)'; }, {passive: true}); el.addEventListener('touchend', function() { this.style.transform = ''; }, {passive: true}); }); } })();