/* ============ GLOBAL VIP SIM — premium dark theme ============ */
:root {
  --bg: #0b1220;
  --bg-2: #0f1a2f;
  --bg-3: #152038;
  --glass: rgba(255,255,255,.06);
  --line: #23314f;
  --line-soft: rgba(255,255,255,.09);
  --text: #e7ecf4;
  --muted: #aeb8cc;
  --soft: #c7d2ea;
  --brand: #ffd700;
  --brand-2: #ffb300;
  --brand-dim: rgba(255,215,0,.14);
  --success: #3ddc97;
  --danger: #ff6b6b;
  --radius: 18px;
  --shadow: 0 10px 40px rgba(0,0,0,.35);
  --max: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.55; -webkit-font-smoothing: antialiased;
}
[dir="rtl"] body { text-align: right; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { line-height: 1.12; margin: 0 0 12px; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 12px; }
.container { width: min(var(--max), 92vw); margin-inline: auto; }
.section { padding: 5rem 0; }
.section--alt { background: linear-gradient(180deg, transparent, rgba(255,255,255,.025) 50%, transparent); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 2.6rem; }
.section-head p { color: var(--soft); font-size: 1.1rem; }
.eyebrow { display: inline-block; color: var(--brand); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; margin-bottom: 10px; }
.muted { color: var(--muted); }
.gold { color: var(--brand); }

.glass {
  background: linear-gradient(to bottom right, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--line-soft);
  box-shadow: inset 0 1px rgba(255,255,255,.08), var(--shadow);
  backdrop-filter: blur(8px);
}
.pill { display: inline-flex; align-items: center; gap: .4rem; padding: .3rem .65rem; background: var(--bg-3); border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .8rem; }
.badge { display: inline-flex; gap: .4rem; align-items: center; padding: .35rem .7rem; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .85rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .9rem 1.4rem; border-radius: 14px; border: 1px solid transparent; cursor: pointer;
  background: linear-gradient(180deg, var(--brand), var(--brand-2)); color: #1b1b1b; font-weight: 800; font-size: 1rem;
  box-shadow: 0 10px 30px rgba(255,199,0,.25); transition: transform .2s, box-shadow .2s; white-space: nowrap; font-family: inherit;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 16px 40px rgba(255,199,0,.35); }
.btn.ghost { background: transparent; border-color: var(--line); color: var(--text); box-shadow: none; }
.btn.ghost:hover { border-color: var(--brand); }
.btn.sm { padding: .6rem 1rem; font-size: .9rem; }
.btn.block { width: 100%; }

/* Header */
header.header { position: sticky; top: 0; z-index: 50; background: rgba(11,18,32,.75); backdrop-filter: saturate(1.2) blur(10px); border-bottom: 1px solid rgba(255,255,255,.06); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .75rem 0; }
.logo { display: flex; align-items: center; gap: .6rem; font-weight: 900; }
.logo img { height: 34px; width: auto; }
.logo-mark { width: 42px; height: 42px; border-radius: 12px; flex: none; border: 1px solid rgba(255,215,0,.45); box-shadow: 0 0 18px rgba(255,199,0,.25);
  background: #0b1a33 url("assets/logo_global_vip_sim.jpeg") -38px -6px / 114px auto no-repeat; }
.logo-text { font-weight: 900; letter-spacing: .04em; font-size: 1.05rem; background: linear-gradient(90deg, #ffe27a, var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 1.1rem; color: var(--muted); font-weight: 600; }
.nav-links a:hover { color: var(--brand); }
.switcher { display: inline-flex; align-items: center; gap: .4rem; background: var(--bg-2); color: var(--text); border: 1px solid var(--line); border-radius: 999px; padding: .45rem .9rem; font-size: .85rem; font-weight: 600; font-family: inherit; cursor: pointer; white-space: nowrap; }
.switcher:hover { border-color: var(--brand); }

/* Language / currency modal */
.modal { position: fixed; inset: 0; z-index: 100; background: rgba(5,8,15,.7); backdrop-filter: blur(6px); display: flex; align-items: flex-start; justify-content: center; padding: 4vh 2vw; overflow: auto; }
.modal[hidden] { display: none; }
.modal__box { position: relative; width: min(1100px, 100%); background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: 24px; padding: 3.5rem 2rem 2rem; box-shadow: var(--shadow); }
.modal__close { position: absolute; top: 1rem; right: 1rem; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: var(--bg-3); color: var(--text); font-size: 1rem; cursor: pointer; }
[dir="rtl"] .modal__close { right: auto; left: 1rem; }
.modal__tabs { display: flex; gap: .4rem; margin: 0 auto 2rem; width: min(560px, 100%); background: var(--bg-3); border-radius: 16px; padding: .35rem; }
.modal__tab { flex: 1; padding: .8rem 1rem; border-radius: 12px; border: 1px solid transparent; background: transparent; color: var(--muted); font-weight: 700; font-size: 1rem; font-family: inherit; cursor: pointer; }
.modal__tab.is-active { background: var(--bg-2); color: var(--text); border-color: var(--line); }
.modal__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.opt { display: flex; align-items: center; justify-content: space-between; gap: .6rem; padding: .9rem 1rem; border-radius: 14px; border: 1px solid var(--line); background: var(--bg); color: var(--text); text-align: start; font-family: inherit; cursor: pointer; transition: .15s; }
.opt:hover { border-color: rgba(255,215,0,.5); }
.opt b { display: block; font-size: 1rem; }
.opt small { color: var(--muted); font-size: .8rem; }
.opt i { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--line); flex: none; }
.opt.is-active { border-color: var(--brand); background: rgba(255,215,0,.08); }
.opt.is-active i { border-color: var(--brand); background: radial-gradient(circle, var(--brand) 45%, transparent 50%); }
@media (max-width: 1024px) { .modal__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .modal__grid { grid-template-columns: repeat(2, 1fr); } .modal__box { padding: 3.2rem 1rem 1.2rem; } }
@media (max-width: 460px) { .modal__grid { grid-template-columns: 1fr; } }
.burger { display: none; background: none; border: 1px solid var(--line); border-radius: 10px; color: var(--text); font-size: 1.3rem; padding: .3rem .6rem; cursor: pointer; }

/* Hero */
.hero { position: relative; isolation: isolate; overflow: hidden; }
.hero .bg { position: absolute; inset: 0; z-index: -2; background: #0d1628 url("https://images.unsplash.com/photo-1517694712202-14dd9538aa97?q=80&w=2000&auto=format&fit=crop") center / cover no-repeat; filter: brightness(.55) saturate(1.2); }
.hero .overlay { position: absolute; inset: 0; z-index: -1; background:
  radial-gradient(60% 50% at 60% 30%, rgba(93,214,255,.15), transparent 60%),
  radial-gradient(50% 40% at 30% 70%, rgba(255,215,0,.13), transparent 60%),
  linear-gradient(180deg, rgba(11,18,32,.15) 0%, rgba(11,18,32,.6) 100%); }
.hero__content { padding: 7rem 0 4rem; }
.hero h1 { color: #fff; max-width: 900px; }
.hero h1 span { color: #fff; }
.hero__lead { color: var(--soft); font-size: clamp(1rem, 1.6vw, 1.25rem); max-width: 800px; margin-bottom: 1.4rem; }
.hero__cta { display: flex; gap: .9rem; flex-wrap: wrap; margin: 1.3rem 0 0; }
.hero__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.2rem; }
.hero__cards .card h3 { margin-bottom: .5rem; }
.hero__cards .card p { color: var(--soft); margin: 0; }
.search { position: relative; max-width: 580px; }
.search input { width: 100%; padding: 1.05rem 1.2rem 1.05rem 3.2rem; border-radius: 16px; border: 1px solid var(--line); background: var(--bg-2); color: var(--text); font-size: 1.05rem; outline: none; font-family: inherit; box-shadow: var(--shadow); }
[dir="rtl"] .search input { padding: 1.05rem 3.2rem 1.05rem 1.2rem; }
.search input:focus { border-color: var(--brand); }
.search__icon { position: absolute; left: 1.1rem; top: 50%; transform: translateY(-50%); font-size: 1.1rem; }
[dir="rtl"] .search__icon { left: auto; right: 1.1rem; }
.search__list { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); max-height: 320px; overflow: auto; display: none; z-index: 20; }
.search__list.is-open { display: block; }
.search__item { display: flex; align-items: center; gap: .8rem; padding: .75rem 1.1rem; cursor: pointer; }
.search__item:hover { background: var(--bg-3); }
.search__item .flag { font-size: 1.3rem; }
.search__item small { margin-inline-start: auto; color: var(--brand); font-weight: 700; }
.hero__badges { display: flex; flex-wrap: wrap; gap: .6rem 1.3rem; margin-top: 1.4rem; color: var(--soft); font-weight: 600; font-size: .95rem; }
.hero__badges span::before { content: "✓ "; color: var(--brand); font-weight: 900; }

.hero__art { position: relative; }
.hero__art img { width: 100%; border-radius: 24px; border: 1px solid rgba(255,215,0,.35); box-shadow: 0 40px 80px rgba(0,0,0,.55), 0 0 60px rgba(255,215,0,.12); }
.phone-wrap { position: relative; }
.phone { width: 290px; margin: 0 auto; background: #05080f; border: 1px solid #1b2740; border-radius: 44px; padding: 12px; box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,215,0,.15); }
.phone__screen { background: linear-gradient(160deg, #101b31 0%, #0b1220 100%); border-radius: 34px; padding: 26px 18px; min-height: 520px; display: flex; flex-direction: column; gap: 12px; }
.phone__status { display: flex; justify-content: space-between; font-size: .75rem; font-weight: 700; color: var(--muted); }
.phone__card { background: var(--bg-3); border: 1px solid var(--line); border-radius: 16px; padding: 14px; }
.phone__card h4 { margin: 0 0 4px; font-size: .95rem; }
.phone__card p { margin: 0; font-size: .8rem; color: var(--muted); }
.phone__bar { height: 8px; background: #0b1220; border-radius: 99px; overflow: hidden; margin-top: 10px; }
.phone__bar i { display: block; height: 100%; width: 68%; background: linear-gradient(90deg, var(--brand), var(--brand-2)); border-radius: 99px; }
.qr { width: 110px; height: 110px; margin: 6px auto; border-radius: 8px; background: #fff; padding: 8px; }
.qr i { display: block; width: 100%; height: 100%; background:
  repeating-linear-gradient(90deg, #0b1220 0 7px, transparent 7px 14px),
  repeating-linear-gradient(0deg, #0b1220 0 7px, transparent 7px 14px); background-blend-mode: multiply; }
.float { position: absolute; background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: .65rem 1rem; box-shadow: var(--shadow); font-weight: 700; font-size: .85rem; }
.float--1 { top: -16px; left: -16px; }
.float--2 { bottom: -16px; right: -16px; }
.float--3 { top: 48%; right: -10px; }

/* Trust bar */
.trust { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: rgba(255,255,255,.02); }
.trust .container { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.2rem 0; }
.trust__item { display: flex; align-items: center; gap: .6rem; font-weight: 600; color: var(--muted); font-size: .95rem; }
.stars { color: var(--brand); letter-spacing: 2px; }

/* Destinations */
.dest-tabs { display: flex; justify-content: center; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.dest-tab { padding: .6rem 1.1rem; border-radius: 999px; border: 1px solid var(--line); background: var(--bg-2); color: var(--muted); font-weight: 600; cursor: pointer; font-family: inherit; }
.dest-tab.is-active { background: linear-gradient(180deg, var(--brand), var(--brand-2)); color: #1b1b1b; border-color: transparent; }
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.dest-card { display: flex; align-items: center; gap: .9rem; border-radius: var(--radius); padding: 1rem 1.1rem; transition: .2s; cursor: pointer; }
.dest-card:hover { transform: translateY(-3px); border-color: rgba(255,215,0,.45); }
.dest-card .flag { font-size: 2rem; }
.dest-card b { display: block; font-size: 1rem; }
.dest-card small { color: var(--muted); }
.dest-card .price { margin-inline-start: auto; font-weight: 800; color: var(--brand); white-space: nowrap; font-size: .95rem; }
.dest-more { text-align: center; margin-top: 1.8rem; }

/* Steps / features */
.steps, .features, .cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.step, .feature, .card { border-radius: var(--radius); padding: 1.6rem; }
.step__num { width: 46px; height: 46px; border-radius: 14px; background: var(--brand-dim); color: var(--brand); display: grid; place-items: center; font-weight: 900; font-size: 1.1rem; margin-bottom: 1rem; }
.feature__icon { font-size: 2rem; margin-bottom: .8rem; }
.step p, .feature p { color: var(--soft); margin: 0; }
.step a { color: var(--brand); font-weight: 600; }

/* Compare */
.compare { overflow-x: auto; border-radius: var(--radius); }
.compare table { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.compare th, .compare td { padding: 1rem 1.2rem; text-align: left; border-bottom: 1px solid var(--line); }
[dir="rtl"] .compare th, [dir="rtl"] .compare td { text-align: right; }
.compare th { background: var(--bg-3); font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.compare td.yes { color: var(--success); font-weight: 800; }
.compare td.no { color: var(--danger); font-weight: 800; }
.compare th.hl, .compare td.hl { background: rgba(255,215,0,.08); color: var(--brand); }

/* Reviews */
.review__text { color: var(--soft); margin: .6rem 0 1rem; }
.review__author { display: flex; align-items: center; gap: .7rem; font-weight: 700; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--brand-dim); color: var(--brand); display: grid; place-items: center; font-weight: 900; }
.review__author small { display: block; color: var(--muted); font-weight: 500; }

/* FAQ */
.faq { max-width: 840px; margin: 0 auto; }
.faq details { background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: 0 1.3rem; margin-bottom: .7rem; }
.faq summary { cursor: pointer; font-weight: 700; font-size: 1.02rem; padding: 1.05rem 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--brand); }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--soft); padding-bottom: 1.1rem; margin: 0; }

/* CTA band */
.cta-band { border-radius: 24px; padding: 3.2rem 2.4rem; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(120deg, rgba(255,215,0,.16), rgba(93,214,255,.08)); border: 1px solid rgba(255,215,0,.35); }
.cta-band p { font-size: 1.1rem; color: var(--soft); margin-bottom: 1.4rem; }

.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.4rem; align-items: center; }
.split ul { padding-inline-start: 1.2rem; color: var(--soft); }
.split li { margin-bottom: .5rem; }
.lead { color: var(--soft); font-size: 1.1rem; }

/* Contact form */
.form { display: grid; gap: .7rem; }
.form input, .form textarea, .form select { width: 100%; padding: .85rem 1rem; border-radius: 12px; border: 1px solid var(--line); background: var(--bg-2); color: var(--text); font-size: .95rem; font-family: inherit; }
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--brand); }
.form label { font-size: .85rem; color: var(--muted); }
.note { font-size: .82rem; color: var(--muted); }

/* Footer */
footer.footer { border-top: 1px solid rgba(255,255,255,.06); padding: 3.5rem 0 1.8rem; margin-top: 2rem; color: var(--muted); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.4rem; }
.footer h4 { color: var(--text); margin: 0 0 .9rem; font-size: .95rem; }
.footer a { display: block; margin-bottom: .5rem; font-size: .9rem; }
.footer a:hover { color: var(--brand); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.3rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem; font-size: .82rem; }
.pay { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: .8rem; }
.pay span { background: #fff; color: #0b1220; font-weight: 800; font-size: .68rem; padding: .3rem .55rem; border-radius: 6px; }

/* Product page */
.product { padding: 3rem 0 4.5rem; }
.product__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: start; }
.crumbs { font-size: .85rem; color: var(--muted); margin-bottom: 1.2rem; }
.crumbs a:hover { color: var(--brand); }
.product__flag { font-size: 4rem; line-height: 1; margin-bottom: .5rem; }
.tabs { display: flex; gap: .4rem; margin: 1.2rem 0; }
.tab { padding: .5rem 1rem; border-radius: 999px; border: 1px solid var(--line); background: var(--bg-2); color: var(--muted); font-weight: 600; cursor: pointer; font-family: inherit; }
.tab.is-active { color: var(--brand); border-color: var(--brand); }
.tabpanel[hidden] { display: none; }
.included { list-style: none; padding: 0; margin: 1rem 0; display: grid; gap: .5rem; color: var(--soft); }
.included li::before { content: "✓ "; color: var(--brand); font-weight: 900; }
.networks { display: flex; flex-wrap: wrap; gap: .4rem; margin: .6rem 0 1rem; }
.plans { display: grid; gap: .7rem; margin: 1.2rem 0; }
.plan { display: flex; align-items: center; gap: 1rem; border: 1px solid var(--line); border-radius: 14px; padding: .9rem 1.1rem; cursor: pointer; background: var(--bg-2); transition: .15s; }
.plan:hover { border-color: rgba(255,215,0,.5); }
.plan.is-active { border-color: var(--brand); background: rgba(255,215,0,.08); }
.plan b { font-size: 1.02rem; }
.plan small { display: block; color: var(--muted); }
.plan .price { margin-inline-start: auto; font-weight: 800; font-size: 1.05rem; color: var(--brand); }
.plan .tag { font-size: .68rem; background: linear-gradient(180deg, var(--brand), var(--brand-2)); color: #1b1b1b; padding: .2rem .5rem; border-radius: 99px; font-weight: 800; }
.summary { border-radius: var(--radius); padding: 1.7rem; position: sticky; top: 92px; }
.summary__row { display: flex; justify-content: space-between; padding: .6rem 0; border-bottom: 1px solid var(--line); color: var(--soft); }
.summary__row.total { border-bottom: 0; font-size: 1.35rem; font-weight: 900; color: var(--text); }
.summary__row.total .gold { color: var(--brand); }
.qty { display: flex; align-items: center; gap: .6rem; }
.qty button { width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--line); background: var(--bg-3); color: var(--text); font-size: 1.1rem; cursor: pointer; }
.value-msg { background: rgba(61,220,151,.1); border: 1px solid rgba(61,220,151,.3); color: var(--success); border-radius: 12px; padding: .7rem .9rem; font-size: .9rem; margin: .8rem 0; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td { padding: .8rem 1rem; border-bottom: 1px solid var(--line); text-align: left; }
[dir="rtl"] .price-table th, [dir="rtl"] .price-table td { text-align: right; }
.price-table th { color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }
.price-table td:last-child { color: var(--brand); font-weight: 800; }
.thanks { text-align: center; padding: 3rem 0; }
.apps { display: flex; gap: 1.4rem; flex-wrap: wrap; justify-content: center; margin-top: 1rem; color: var(--muted); font-weight: 600; }

/* Catalog */
.catalog-search { max-width: 560px; margin: 0 auto 2rem; }
.region-title { margin: 2rem 0 1rem; font-size: 1.2rem; color: var(--brand); }

@media (max-width: 1024px) {
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 900px) {
  .split, .product__grid, .hero__cards { grid-template-columns: 1fr; }
  .hero__content { padding: 4rem 0 3rem; }
  .logo-text { display: none; }
  .phone-wrap { display: none; }
  .hero__art { max-width: 520px; margin: 0 auto; }
  .hero__art .float { display: none; }
  .steps, .features, .cards-3 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.is-open { display: flex; flex-direction: column; align-items: flex-start; position: absolute; top: 62px; left: 0; right: 0; background: var(--bg-2); padding: 1.2rem 4vw; border-bottom: 1px solid var(--line); }
  .burger { display: block; }
  .summary { position: static; }
}
@media (max-width: 900px) {
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .dest-card { flex-wrap: wrap; gap: .5rem .8rem; }
  .dest-card .price { flex-basis: 100%; margin-inline-start: 0; }
}
@media (max-width: 600px) {
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card { flex-wrap: nowrap; }
  .dest-card .price { flex-basis: auto; margin-inline-start: auto; }
  .dest-card .flag { font-size: 1.5rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 3.5rem 0; }
  .hero__content { padding: 3rem 0 2.5rem; }
}
