/* ===========================
   ARPOZAN VISA — Enhanced CSS
   Conversion-focused additions
   =========================== */

/* ══ URGENCY BAR ══ */
.urgency-bar {
  background: linear-gradient(90deg, #c0292a, #a51f20);
  color: white;
  text-align: center;
  padding: 10px var(--space-4);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 101;
}
.urgency-bar__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ffd700;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  animation: blink 1s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.urgency-bar__num {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: #ffd700;
  animation: countdown-pulse 2s ease-in-out infinite;
}
@keyframes countdown-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* ══ LIVE NOTIFICATION ══ */
.live-notif {
  position: fixed;
  bottom: var(--space-6);
  left: var(--space-6);
  z-index: 999;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  box-shadow: var(--shadow-lg);
  max-width: 320px;
  transform: translateX(-120%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.live-notif.show { transform: translateX(0); }
.live-notif__avatar {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xs);
  flex-shrink: 0;
}
.live-notif__text {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.4;
  max-width: none;
}
.live-notif__text strong { color: var(--color-text); display: block; }
.live-notif__close {
  margin-left: auto;
  font-size: 18px;
  color: var(--color-text-faint);
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
  align-self: flex-start;
}
.live-notif__close:hover { color: var(--color-text); }

@media (max-width: 480px) {
  .live-notif { left: var(--space-4); right: var(--space-4); max-width: none; }
}

/* ══ HERO ENHANCED ══ */
.hero { min-height: 92vh; }

.hero > .container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .hero > .container { grid-template-columns: 1fr; }
}

.hero__badge-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #4caf6e;
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76,175,110,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(76,175,110,0); }
}

.hero__social-proof {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.hero__avatars {
  display: flex;
}
.hero__av {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  border: 2px solid #0a1628;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 800;
  color: white;
  margin-left: -8px;
  font-family: var(--font-display);
}
.hero__av:first-child { margin-left: 0; }
.hero__social-text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
}
.hero__social-text strong { color: white; }

.btn--glass {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn--glass:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.hero__cta {
  position: relative;
  overflow: hidden;
}
.hero__cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: shimmer-btn 3s ease-in-out infinite;
}
@keyframes shimmer-btn {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}

/* ══ LIVE STATS CARD ══ */
.hero__stats-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
@media (max-width: 900px) { .hero__stats-card { display: none; } }

.hero__stats-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(76,175,110,0.2);
  color: #6daa45;
  border-radius: var(--radius-full);
  padding: 3px 8px;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.05em;
}
.live-indicator span {
  width: 6px;
  height: 6px;
  background: #4caf6e;
  border-radius: 50%;
  animation: pulse-green 1.5s ease-in-out infinite;
}

.hero__stat-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-3);
  align-items: center;
}
.hero__stat-flag { font-size: 1.8rem; line-height: 1; }
.hero__stat-country { font-size: var(--text-sm); font-weight: 600; color: white; }
.hero__stat-price { font-size: var(--text-xs); color: rgba(255,255,255,0.5); margin-top: 2px; }
.hero__stat-price strong { color: var(--color-accent); }

.hero__stat-activity {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.activity-bar {
  width: 60px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.activity-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--w, 70%);
  background: var(--color-accent);
  border-radius: 2px;
}
.hero__stat-activity span { font-size: 10px; color: rgba(255,255,255,0.4); }

/* ══ TRUST BAR ══ */
.trust-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
  padding-block: var(--space-8);
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-6);
}
.trust-bar__item {
  text-align: center;
  min-width: 100px;
}
.trust-bar__num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.trust-bar__label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.trust-bar__divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
}
@media (max-width: 600px) {
  .trust-bar__divider { display: none; }
  .trust-bar__inner { gap: var(--space-8); }
}

/* ══ COMPARE TABLE ══ */
.compare-table {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.compare-table__head {
  display: grid;
  grid-template-columns: 1fr 160px 160px 120px;
  gap: 0;
  background: var(--color-primary);
  color: white;
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.compare-table__them { color: rgba(255,255,255,0.7); }
.compare-table__us { color: var(--color-accent); }
.compare-row {
  display: grid;
  grid-template-columns: 1fr 160px 160px 120px;
  gap: 0;
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--color-divider);
  align-items: center;
  transition: background var(--transition);
  font-size: var(--text-sm);
}
.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: var(--color-surface-offset); }
.compare-flag { margin-right: 6px; }
.compare-price--old {
  color: var(--color-text-faint);
  text-decoration: line-through;
  font-size: var(--text-xs);
}
.compare-price--new {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-base);
  color: var(--color-text);
}
.compare-saving {
  font-weight: 700;
  color: var(--color-success);
  font-size: var(--text-sm);
}
.compare-row--total {
  background: var(--color-accent-highlight);
  font-weight: 700;
}
@media (max-width: 640px) {
  .compare-table__head, .compare-row { grid-template-columns: 1fr 90px 100px; }
  .compare-table__head > div:nth-child(2), .compare-row > div:nth-child(2) { display: none; }
}
@media (max-width: 480px) {
  .compare-table__head, .compare-row { grid-template-columns: 1fr 100px; }
  .compare-table__head > div:nth-child(4), .compare-row > div:nth-child(4) { display: none; }
}

/* ══ VISA CARD ENHANCED ══ */
.visa-card { position: relative; }
.visa-card__hot-badge {
  background: var(--color-danger);
  color: white;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 4px var(--space-4);
  text-align: center;
  letter-spacing: 0.03em;
}
.visa-card__save {
  background: var(--color-success-bg);
  color: var(--color-success);
  font-size: var(--text-xs);
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  margin-left: auto;
}
.visa-card__savings {
  font-size: var(--text-xs);
  color: var(--color-success);
  margin-bottom: var(--space-3);
}
.visa-card__savings strong { font-weight: 800; }
.visa-card--featured {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent);
}

/* ══ FAQ ENHANCED ══ */
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--color-accent); }
.faq-item__q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  gap: var(--space-4);
  user-select: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-icon {
  font-size: 1.4rem;
  color: var(--color-text-faint);
  flex-shrink: 0;
  font-weight: 300;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); color: var(--color-accent); }
.faq-item__a {
  padding: 0 var(--space-6) var(--space-5);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  max-width: none;
}

/* ══ CTA SECTION ENHANCED ══ */
.cta-section__urgency {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--color-accent);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-6);
}
.cta-section__guarantees {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-8);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ══ GLOBE DOTS ANIMATION ══ */
.globe-dot {
  animation: globe-pulse 3s ease-in-out infinite;
}
.globe-dot:nth-child(2) { animation-delay: 0.5s; }
.globe-dot:nth-child(3) { animation-delay: 1s; }
@keyframes globe-pulse {
  0%, 100% { r: 4; opacity: 1; }
  50% { r: 7; opacity: 0.6; }
}

/* ══ STICKY MOBILE CTA ══ */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
}
.mobile-sticky-cta .btn { width: 100%; }
@media (max-width: 768px) { .mobile-sticky-cta { display: block; } }

/* padding for mobile sticky */
@media (max-width: 768px) { .footer { padding-bottom: 80px; } }
