/* ===== AGUNG VPN — TECH DARK DESIGN ===== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;600&display=swap');

:root {
  --bg-deep:      #020812;
  --bg-surface:   #060f1e;
  --bg-card:      rgba(10, 20, 40, 0.7);
  --bg-card-plus: rgba(10, 5, 30, 0.75);

  --neon-blue:    #00d4ff;
  --neon-purple:  #7c3aed;
  --neon-violet:  #a855f7;
  --neon-cyan:    #06b6d4;
  --neon-green:   #10b981;
  --neon-amber:   #f59e0b;

  --text-primary: #f0f6ff;
  --text-muted:   #94a3b8;
  --text-dim:     #475569;

  --border-glow:  rgba(0, 212, 255, 0.2);
  --border-plus:  rgba(168, 85, 247, 0.35);

  --gradient-hero:   linear-gradient(135deg, #00d4ff 0%, #7c3aed 50%, #a855f7 100%);
  --gradient-plus:   linear-gradient(135deg, #7c3aed 0%, #a855f7 60%, #ec4899 100%);
  --gradient-green:  linear-gradient(135deg, #10b981 0%, #06b6d4 100%);

  --font-main: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-card: 16px;
  --radius-btn:  10px;
  --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.12);
  --shadow-plus: 0 0 40px rgba(168, 85, 247, 0.18);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== ANIMATED GRID BACKGROUND ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 10%, rgba(124,58,237,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(0,212,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 30% at 50% 50%, rgba(10,20,40,0.4) 0%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(2, 8, 18, 0.8);
  border-bottom: 1px solid rgba(0, 212, 255, 0.08);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(0, 212, 255, 0.3);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.2);
}

.navbar-brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.navbar-links {
  display: flex;
  gap: 8px;
}

.navbar-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s;
}

.navbar-link:hover {
  color: var(--neon-blue);
  background: rgba(0, 212, 255, 0.08);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 100px 0 80px;
  text-align: center;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--neon-cyan);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--neon-green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

@keyframes badge-glow {
  0%, 100% { opacity: 1; text-shadow: 0 0 8px rgba(0, 212, 255, 0.6); }
  50%       { opacity: 0.75; text-shadow: 0 0 2px rgba(0, 212, 255, 0.2); }
}

.hero-badge {
  animation: badge-glow 3s ease-in-out infinite;
}

/* Logo in hero */
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.hero-logo-ring {
  position: relative;
  display: inline-block;
}

.hero-logo-ring::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--neon-blue),
    var(--neon-purple),
    var(--neon-violet),
    var(--neon-cyan),
    var(--neon-blue)
  );
  animation: rotate-ring 4s linear infinite;
  z-index: 0;
}

.hero-logo-ring::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--bg-deep);
  z-index: 1;
}

@keyframes rotate-ring {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-logo-img {
  position: relative;
  z-index: 2;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
  box-shadow:
    0 0 0 2px rgba(0,212,255,0.3),
    0 0 40px rgba(0,212,255,0.15),
    0 0 80px rgba(124,58,237,0.1);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.gradient-text {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  max-width: 600px;
  margin: 0 auto 48px;
  background: linear-gradient(90deg, #ff00ff, #00d4ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 5px rgba(255, 0, 255, 0.4));
}

/* ===== APP BUTTONS ===== */
.app-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

.app-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.app-button::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s;
}

.app-button:hover::before { opacity: 1; }

.app-store {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-primary);
}

.app-store::before {
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 100%);
}

.app-store:hover {
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.google-play {
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.25);
  color: var(--neon-blue);
}

.google-play::before {
  background: linear-gradient(135deg, rgba(0,212,255,0.1) 0%, transparent 100%);
}

.google-play:hover {
  border-color: rgba(0,212,255,0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,212,255,0.15);
}

.app-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.app-button-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.app-button-label {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.app-button-store {
  font-size: 1rem;
  font-weight: 700;
}

/* ===== FEATURES ROW ===== */
.features-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 40px 0;
  border-top: 1px solid rgba(0,212,255,0.06);
  border-bottom: 1px solid rgba(0,212,255,0.06);
  margin-bottom: 80px;
}

.feature-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
}

.feature-chip-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.12);
}

/* ===== SECTION TITLES ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--neon-cyan);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 4px 12px;
  background: rgba(6,182,212,0.08);
  border-radius: 4px;
  border: 1px solid rgba(6,182,212,0.2);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== VIDEO SECTION ===== */
.video-section {
  padding: 80px 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.video-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  text-decoration: none;
  padding: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-card);
  backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.video-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.video-card:hover {
  border-color: rgba(0,212,255,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow), 0 20px 40px rgba(0,0,0,0.4);
}

.video-card:hover::before { opacity: 1; }

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #06101c;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover .video-thumb img {
  transform: scale(1.06);
}

.video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,8,18,0.05) 30%, rgba(2,8,18,0.72) 100%);
  pointer-events: none;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--neon-blue);
  background: rgba(2, 8, 18, 0.55);
  border: 1px solid rgba(0, 212, 255, 0.45);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.22);
  transform: translate(-50%, -50%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-play svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
}

.video-card:hover .video-play {
  color: #fff;
  background: rgba(0, 212, 255, 0.28);
  box-shadow: 0 0 32px rgba(0, 212, 255, 0.45);
  transform: translate(-50%, -50%) scale(1.08);
}

.video-platform {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  font-size: 0.68rem;
  font-family: var(--font-mono);
  color: var(--text-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(2, 8, 18, 0.62);
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.video-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-primary);
  text-align: left;
  padding: 14px 16px 18px;
}

.video-arrow {
  font-size: 0.75rem;
  color: var(--neon-blue);
  padding: 0 16px 16px;
  margin-top: -8px;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s;
}

.video-card:hover .video-arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .video-card:hover .video-thumb img { transform: none; }
  .video-card:hover .video-play { transform: translate(-50%, -50%); }
  .traffic-chip,
  .pricing-card-plus .traffic-chip {
    animation: none;
  }
  .traffic-chip::after {
    display: none;
  }
}

/* ===== PRICING ===== */
.pricing-section {
  padding: 80px 0;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 48px;
  padding: 4px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.pricing-tab {
  padding: 10px 24px;
  border-radius: 9px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  color: var(--text-dim);
  user-select: none;
  border: none;
  background: transparent;
}

.pricing-tab.active {
  background: rgba(0,212,255,0.1);
  color: var(--neon-blue);
  border: 1px solid rgba(0,212,255,0.25);
}

.pricing-tab-plus.active {
  background: rgba(168,85,247,0.1);
  color: var(--neon-violet);
  border: 1px solid rgba(168,85,247,0.25);
}

.pricing-category {
  display: none;
}

.pricing-category.active {
  display: block;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  padding: 4px;
}

/* Standard card */
.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-card);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,212,255,0.4);
  box-shadow: var(--shadow-glow), 0 24px 48px rgba(0,0,0,0.5);
}

.pricing-card:hover::before { opacity: 1; }

/* PLUS card */
.pricing-card-plus {
  background: var(--bg-card-plus);
  border-color: var(--border-plus);
}

.pricing-card-plus::before {
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.5), transparent);
}

.pricing-card-plus:hover {
  border-color: rgba(168,85,247,0.55);
  box-shadow: var(--shadow-plus), 0 24px 48px rgba(0,0,0,0.5);
}

.plus-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--gradient-plus);
  color: white;
}

.pricing-header {
  text-align: center;
}

.pricing-name {
  font-size: 1rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: #ff00ff; /* Neon Magenta */
  text-shadow: 0 0 10px #ff00ff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.pricing-name .pricing-name-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--neon-cyan);
  margin-left: 4px;
  vertical-align: middle;
}

.pricing-card-plus .pricing-name {
  color: rgba(168,85,247,0.7);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card-plus .price-value {
  background: var(--gradient-plus);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-muted);
}

.price-period {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 4px;
}

.pricing-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.12), transparent);
}

.pricing-card-plus .pricing-divider {
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.15), transparent);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.feature-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--neon-green);
}

.pricing-card-plus .feature-icon {
  color: var(--neon-violet);
}

/* Traffic HUD chip — quota readout + xN slot tag */
.feature-item-traffic {
  align-items: stretch;
}

.feature-item-traffic .feature-icon {
  display: none;
}

.traffic-chip {
  --chip-cyan: rgba(0, 212, 255, 0.55);
  --chip-cyan-soft: rgba(0, 212, 255, 0.12);
  --chip-scan: rgba(0, 212, 255, 0.07);
  position: relative;
  display: inline-flex;
  align-items: stretch;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-mono);
  line-height: 1;
  background:
    linear-gradient(90deg, var(--chip-cyan-soft) 0%, rgba(255, 0, 255, 0.05) 70%),
    rgba(2, 12, 28, 0.85);
  border: 1px solid var(--chip-cyan);
  clip-path: polygon(
    7px 0,
    100% 0,
    100% calc(100% - 7px),
    calc(100% - 7px) 100%,
    0 100%,
    0 7px
  );
  box-shadow:
    0 0 10px rgba(0, 212, 255, 0.18),
    inset 0 0 12px rgba(0, 212, 255, 0.08);
  animation: traffic-glow 3.2s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.traffic-chip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent 0,
    transparent 2px,
    var(--chip-scan) 2px,
    var(--chip-scan) 3px
  );
  pointer-events: none;
  z-index: 1;
}

.traffic-chip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 34%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.16),
    transparent
  );
  animation: traffic-scan 3.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
  z-index: 2;
}

.traffic-vol {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  padding: 7px 3px 7px 10px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--neon-cyan);
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.85);
}

.traffic-unit {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 8px 0 2px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 212, 255, 0.72);
}

.traffic-mult {
  position: relative;
  z-index: 3;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  padding: 7px 10px 7px 9px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--neon-cyan);
  text-shadow: 0 0 8px var(--neon-cyan);
  background: rgba(255, 0, 255, 0.16);
  border-left: 1px solid rgba(255, 0, 255, 0.45);
  box-shadow: inset 0 0 10px rgba(255, 0, 255, 0.12);
}

.traffic-mult-x {
  color: #ff00ff;
  text-shadow: 0 0 8px #ff00ff;
  margin-right: 1px;
}

.pricing-card:hover .traffic-chip {
  border-color: rgba(0, 212, 255, 0.85);
  box-shadow:
    0 0 16px rgba(0, 212, 255, 0.32),
    inset 0 0 14px rgba(0, 212, 255, 0.14);
}

.pricing-card-plus .traffic-chip {
  --chip-cyan: rgba(168, 85, 247, 0.55);
  --chip-cyan-soft: rgba(168, 85, 247, 0.14);
  --chip-scan: rgba(168, 85, 247, 0.08);
  box-shadow:
    0 0 10px rgba(168, 85, 247, 0.22),
    inset 0 0 12px rgba(168, 85, 247, 0.1);
}

.pricing-card-plus .traffic-chip::after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(168, 85, 247, 0.2),
    transparent
  );
}

.pricing-card-plus .traffic-vol {
  color: #d8b4fe;
  text-shadow: 0 0 8px rgba(168, 85, 247, 0.9);
}

.pricing-card-plus .traffic-unit {
  color: rgba(216, 180, 254, 0.72);
}

.pricing-card-plus:hover .traffic-chip {
  border-color: rgba(168, 85, 247, 0.9);
  box-shadow:
    0 0 16px rgba(168, 85, 247, 0.38),
    inset 0 0 14px rgba(168, 85, 247, 0.16);
}

@keyframes traffic-glow {
  0%, 100% {
    box-shadow:
      0 0 8px rgba(0, 212, 255, 0.14),
      inset 0 0 10px rgba(0, 212, 255, 0.06);
  }
  50% {
    box-shadow:
      0 0 16px rgba(0, 212, 255, 0.28),
      inset 0 0 14px rgba(0, 212, 255, 0.12);
  }
}

@keyframes traffic-scan {
  0%   { transform: translateX(-140%); }
  100% { transform: translateX(340%); }
}

.pricing-card-plus .traffic-chip {
  animation-name: traffic-glow-plus;
}

@keyframes traffic-glow-plus {
  0%, 100% {
    box-shadow:
      0 0 8px rgba(168, 85, 247, 0.16),
      inset 0 0 10px rgba(168, 85, 247, 0.08);
  }
  50% {
    box-shadow:
      0 0 16px rgba(168, 85, 247, 0.32),
      inset 0 0 14px rgba(168, 85, 247, 0.14);
  }
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0;
}

.cta-card {
  position: relative;
  background: linear-gradient(135deg,
    rgba(0,212,255,0.06) 0%,
    rgba(124,58,237,0.08) 50%,
    rgba(168,85,247,0.06) 100%
  );
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 24px;
  padding: 64px 40px;
  text-align: center;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), var(--neon-purple), var(--neon-violet), transparent);
}

.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,212,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
  position: relative;
}

.cta-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 40px;
  position: relative;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-btn);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cta-button-primary {
  background: var(--gradient-hero);
  color: #000;
  box-shadow: 0 0 30px rgba(0,212,255,0.3);
}

.cta-button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(0,212,255,0.4), 0 16px 40px rgba(0,0,0,0.4);
}

.cta-button-secondary {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-primary);
}

.cta-button-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-3px);
}

.cta-icon {
  width: 22px;
  height: 22px;
}

.cta-note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-dim);
  position: relative;
}

.cta-note a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid rgba(0,212,255,0.06);
  padding: 40px 0;
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  object-fit: cover;
  border: 1px solid rgba(0,212,255,0.2);
}

.footer-brand-name {
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-text {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-link {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--neon-blue);
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.08), transparent);
  margin: 0;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 64px 0 56px; }
  .hero-logo-img { width: 120px; height: 120px; }
  .app-links { gap: 12px; }
  .pricing-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
  .cta-card { padding: 40px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .navbar-links { display: none; }
  .features-row { gap: 20px; }
  .video-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .price-value { font-size: 2rem; }
  .traffic-vol { font-size: 0.8rem; padding-left: 8px; }
  .traffic-unit { font-size: 0.55rem; padding-right: 4px; }
  .traffic-mult { font-size: 0.72rem; padding: 6px 8px; }
}

/* --- Advanced Crypto Animations --- */
.anim-matrix { color: #00ff41; font-family: monospace; }
.anim-matrix:hover { animation: matrix-anim 0.5s infinite; }
@keyframes matrix-anim { 0% { content: "10101"; } 100% { letter-spacing: 5px; } }

.anim-cipher { font-family: monospace; color: #ff00ff; }
.anim-cipher:hover { animation: cipher-anim 1s infinite; }
@keyframes cipher-anim { 0% { content: "X@!V#"; } 100% { transform: scale(1.1); } }

.anim-glitch { color: #fff; text-shadow: 2px 0 #ff00ff, -2px 0 #00d4ff; animation: glitch-anim 2s infinite; }
@keyframes glitch-anim { 0%, 100% { transform: none; } 50% { transform: translate(-2px, 1px); } }

.anim-davinci { font-family: serif; color: #d4af37; transform: rotate(180deg) scaleX(-1); display: inline-block; }
.anim-davinci:hover { transform: rotate(0deg) scaleX(1); transition: 1s; }

.anim-decrypt { animation: decrypt-anim 5s infinite; color: #00d4ff; }
@keyframes decrypt-anim { 0% { filter: blur(5px); opacity: 0; } 50% { filter: blur(1px); } 100% { filter: blur(0); } }

.anim-binary { color: #a855f7; }
.anim-binary::before { content: "010101001"; opacity: 0.5; font-size: 0.8rem; }

.anim-pulse { color: #10b981; animation: pulse-anim 2s infinite; }
@keyframes pulse-anim { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }

.anim-blur {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--neon-cyan);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: badge-glow 3s ease-in-out infinite;
}

.anim-typing { color: #fff; overflow: hidden; border-right: 3px solid #ff00ff; animation: typing 3s steps(40, end), blink 0.5s step-end infinite; }
@keyframes typing { from { width: 0; } to { width: 100%; } }
@keyframes blink { 50% { border-color: transparent } }

.anim-mirror { transform: scaleX(-1); color: #06b6d4; }
.anim-mirror:hover { transform: scaleX(1); transition: 0.5s; }
