Виртуальная карта в USD/EUR для путешествий | Плати по миру
:root {
--text-dark: #1f2937;
--font-sans: system-ui, -apple-system, sans-serif;
--mastercard-red: #eb001b;
--mastercard-orange: #f79e1b;
--mastercard-black: #1a1a1a;
--mastercard-gold: #ffd700;
--border-light: rgba(255, 255, 255, 0.3);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: var(--font-sans);
background: #fff;
color: var(--text-dark);
line-height: 1.6;
font-size: clamp(1rem, 2.5vw, 1.2rem);
overflow-x: hidden;
}
main {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
}
section {
width: 100%;
max-width: 100vw;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
h1, h2, h3 {
font-weight: 700;
margin: 1rem 0;
}
h1 {
font-size: clamp(1.8rem, 5vw, 2.5rem);
color: white;
text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
h2 {
font-size: clamp(1.4rem, 4vw, 1.8rem);
color: var(--text-dark);
margin-top: 2.5rem;
}
p {
max-width: 90%;
margin: 1rem auto;
opacity: 0.9;
color: white;
text-shadow: 0 1px 5px rgba(0,0,0,0.6);
}
.hero {
width: 100%;
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
overflow: hidden;
}
.video-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
}
.overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
z-index: -1;
}
.hero-content {
z-index: 1;
padding: 2rem;
text-align: center;
max-width: 800px;
}
.sub-text {
font-size: clamp(1rem, 3vw, 1.1rem);
opacity: 1;
margin: 0.5rem 0 1.5rem;
}
.cta-button {
margin: 1.5rem 0;
padding: 1rem 2rem;
background: transparent;
color: white;
font-weight: 600;
border: 1px solid var(--border-light);
border-radius: 12px;
font-size: clamp(1rem, 3.5vw, 1.2rem);
cursor: pointer;
width: 85%;
max-width: 400px;
text-decoration: none;
transition: all 0.3s ease;
backdrop-filter: blur(4px);
}
.cta-button:hover {
background: rgba(255, 255, 255, 0.2);
border-color: rgba(255, 255, 255, 0.6);
transform: translateY(-2px);
}
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.8rem;
width: 90%;
max-width: 1100px;
margin: 2.5rem 0;
}
.feature {
background: #f9fafb;
padding: 1.6rem;
border-radius: 12px;
text-align: center;
box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.feature h3 {
font-size: clamp(1.2rem, 3vw, 1.4rem);
}
.feature p {
color: var(--text-dark);
text-shadow: none;
opacity: 1;
}
.cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 1.2rem;
width: 90%;
max-width: 800px;
margin: 2rem auto;
}
.card {
border-radius: 12px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.card img {
width: 100%;
height: auto;
display: block;
}
.team-section {
width: 90%;
max-width: 800px;
margin: 2.5rem auto;
text-align: center;
}
.team-section p {
color: var(--text-dark);
text-shadow: none;
}
.highlight {
background: #f0fdfa;
padding: 1.8rem;
border-radius: 16px;
margin: 2rem auto;
max-width: 90%;
font-weight: 600;
border-left: 4px solid #2563eb;
color: var(--text-dark);
}
.logo-text {
font-size: 1.1rem;
font-weight: 600;
color: #4b5563;
margin-top: 0.5rem;
}
.pay-world-container {
display: flex;
width: 100%;
padding: 2rem 0;
background: #f8fafc;
justify-content: center;
align-items: center;
}
.pay-world-btn {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: linear-gradient(to top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%), var(--mastercard-black);
color: white;
text-align: center;
padding: 1.6rem 2rem;
border: none;
border-radius: 16px;
font-size: clamp(1.3rem, 4vw, 1.7rem);
font-weight: 700;
cursor: pointer;
width: 85%;
max-width: 400px;
text-transform: uppercase;
letter-spacing: -0.5px;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
text-decoration: none;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}
.pay-world-btn::before {
content: '';
position: absolute;
top: 10px;
right: 15px;
width: 58px;
height: 32px;
background: linear-gradient(135deg, var(--mastercard-gold), #d4af37);
border-radius: 6px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
z-index: 2;
}
.pay-world-btn::after {
content: '';
position: absolute;
top: 50%;
left: 20px;
width: 24px;
height: 24px;
background: var(--mastercard-red);
border-radius: 50%;
box-shadow: 12px 0 0 var(--mastercard-orange);
transform: translateY(-50%);
z-index: 2;
}
.pay-world-btn .btn-text {
position: relative;
z-index: 2;
text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.pay-world-btn .mastercard-text {
position: absolute;
bottom: 10px;
right: 15px;
font-size: 0.8rem;
font-weight: bold;
letter-spacing: 1px;
text-transform: lowercase;
z-index: 2;
text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.pay-world-btn:hover {
transform: translateY(-4px);
box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}
/* Улучшенный стиль для hover - карта с цифрами */
.pay-world-btn:hover {
background: linear-gradient(to top, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0.1) 100%),
url('https://procreator.top/wp-content/uploads/2025/11/Mastercard-%D1%80%D1%83%D0%B1.webp'),
var(--mastercard-black);
background-size: cover;
background-position: center;
background-blend-mode: overlay;
}
.pay-world-btn:hover::before {
background: linear-gradient(135deg, #f0c14b, #f79e1b);
}
.pay-world-btn:hover::after {
background: #c8102e;
box-shadow: 12px 0 0 #ff5f00;
}
.pay-world-btn:hover .btn-text {
color: #1f2937;
text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}
.pay-world-btn:hover .mastercard-text {
color: #1f2937;
text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}
@media (max-width: 768px) {
.features {
grid-template-columns: 1fr;
}
.cards {
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
}
@media (max-width: 600px) {
.hero-content {
padding: 1.5rem;
}
h1 {
font-size: clamp(1.6rem, 6vw, 2.2rem);
}
h2 {
font-size: clamp(1.2rem, 5vw, 1.6rem);
}
.sub-text {
font-size: clamp(0.9rem, 4vw, 1rem);
}
.cta-button {
width: 90%;
font-size: clamp(0.9rem, 4vw, 1.1rem);
padding: 0.9rem 1.5rem;
}
.features {
gap: 1.4rem;
}
.feature {
padding: 1.4rem;
}
.cards {
grid-template-columns: 1fr;
gap: 1rem;
}
.pay-world-btn {
font-size: clamp(1.2rem, 5vw, 1.4rem);
padding: 1.4rem;
width: 90%;
}
.pay-world-btn::after {
left: 15px;
width: 20px;
height: 20px;
box-shadow: 10px 0 0 var(--mastercard-orange);
}
.pay-world-btn::before {
width: 48px;
height: 28px;
right: 12px;
}
.pay-world-btn .mastercard-text {
font-size: 0.7rem;
bottom: 8px;
right: 12px;
}
.team-section img {
width: 100%;
}
}
@media (min-width: 1200px) {
.features {
grid-template-columns: repeat(4, 1fr);
}
.cards {
grid-template-columns: repeat(4, 1fr);
}
}
Преимущества карты
Мгновенный выпуск
Карта готова через 2 минуты после регистрации. Без документов и ожиданий — только ваш телефон.
Apple Pay и Google Pay
Оплачивайте бесконтактно в любом городе мира. Добавьте карту в смартфон — и платите одним движением.
Пополнение в рублях
Удобно пополняйте через СБП. Конвертация в доллары или евро — автоматически.
Глобальные платежи
Используйте карту везде, где принимают Mastercard — от отелей до подписок и авиабилетов.
Я на борту лайнера к RelaxAway, Half Moon Cay
Частный остров Carnival • В руке шампанское • Карта в телефоне
Оплатил всё виртуальной картой в долларах, пополненной из России через СБП. Без очередей, без паспортов. Это будущее — доступное уже сегодня.
Получить карту
Наша команда
Амбассадоры Travel Advantage используют эти карты каждый день — для путешествий, покупок и бизнеса.
Мы — предприниматели и цифровые кочевники из России, которые строят систему, позволяющую жить свободно и работать откуда угодно.
Travel Advantage — экосистема возможностей для тех, кто хочет больше, чем просто отдых.
Платёжное решение от «Плати по миру»