/* ══════════════════════════════════════════════════════════════════════
   GMPROXYS DESIGN SYSTEM REPLICA — VAULT SUITE
   Color tokens: #00ace6, #030712, #060b18, #0b1329, Geist / Inter typography
   ══════════════════════════════════════════════════════════════════════ */

:root {
  --background: #030712;
  --foreground: #f8fafc;
  --card: #070c18;
  --card-foreground: #f8fafc;
  --popover: #070c18;
  --popover-foreground: #f8fafc;
  --primary: #00ace6;
  --primary-foreground: #020617;
  --secondary: #0a1124;
  --secondary-foreground: #f8fafc;
  --muted: #0d162e;
  --muted-foreground: #94a3b8;
  --accent: #0f1c3d;
  --accent-foreground: #f8fafc;
  --destructive: #ef4444;
  --border: rgba(255, 255, 255, 0.08);
  --input: rgba(255, 255, 255, 0.08);
  --ring: #00ace6;
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Background Radial Aurora Layer (from gmproxys) */
.aurora-bg {
  position: absolute;
  inset: 0;
  top: 0;
  height: 750px;
  width: 100%;
  pointer-events: none;
  background: radial-gradient(125% 125% at 50% 10%, #030712 35%, #071533 100%);
  z-index: 0;
}

.aurora-glow-center {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
  height: 380px;
  background: radial-gradient(ellipse at center, rgba(0, 172, 230, 0.18) 0%, rgba(0, 172, 230, 0.03) 60%, transparent 80%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

/* ══════════════════════════════════════════════
   HEADER / NAVBAR (gmproxys floating header)
   ══════════════════════════════════════════════ */
.gm-header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 12px 16px 0;
  pointer-events: none;
}

.gm-header-bar {
  pointer-events: auto;
  width: 100%;
  max-width: 1240px;
  height: 56px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  background: rgba(4, 8, 19, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.gm-brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
}

.gm-brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #061124;
  border: 1px solid rgba(0, 172, 230, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: 0 0 12px rgba(0, 172, 230, 0.3);
}

.gm-brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.gm-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.gm-nav-item {
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.gm-nav-item:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.gm-nav-item.active {
  color: #ffffff;
}

.gm-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gm-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 12px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  height: 32px;
}

.flag-box {
  width: 16px;
  height: 12px;
  border-radius: 2px;
  overflow: hidden;
  display: inline-flex;
}

.gm-bell-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.gm-bell-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.gm-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 14px;
  border-radius: 8px;
  background: rgba(0, 172, 230, 0.1);
  border: 1px solid rgba(0, 172, 230, 0.3);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.gm-login-btn:hover {
  background: rgba(0, 172, 230, 0.2);
  border-color: rgba(0, 172, 230, 0.5);
}

.gm-login-icon-box {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: var(--primary);
  color: #030712;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ══════════════════════════════════════════════
   HERO SECTION (Exact gmproxys typography & spacing)
   ══════════════════════════════════════════════ */
.gm-hero {
  position: relative;
  padding-top: 140px;
  padding-bottom: 50px;
  text-align: center;
}

.gm-trustpilot-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  opacity: 0.9;
  margin-bottom: 24px;
  transition: opacity 0.15s;
}

.gm-trustpilot-link:hover {
  opacity: 1;
}

.trustpilot-star {
  color: #00b67a;
  font-size: 1.1rem;
}

.trustpilot-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.gm-hero-title {
  font-size: clamp(2.2rem, 5vw + 1rem, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  max-width: 820px;
  margin: 0 auto 18px;
}

.gm-highlight-text {
  display: inline-block;
  background-image: linear-gradient(100deg, #00ace6 0%, #00ace6 35%, #d4f4ff 50%, #00ace6 65%, #00ace6 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.04em;
  padding-right: 0.15em;
  animation: shineText 3s linear infinite;
}

@keyframes shineText {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.gm-hero-desc {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  color: #b5b5b5;
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.gm-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gm-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  border-radius: 9999px;
  background: #00ace6;
  color: #000000;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.25), 0 4px 14px rgba(0, 172, 230, 0.35);
  transition: all 0.15s ease;
}

.gm-btn-primary:hover {
  background: #22bbed;
  transform: translateY(-1px);
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.3), 0 6px 20px rgba(0, 172, 230, 0.5);
}

.gm-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border-radius: 9999px;
  background: rgba(3, 7, 18, 0.5);
  border: 1px solid rgba(0, 172, 230, 0.25);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: all 0.15s ease;
}

.gm-btn-secondary:hover {
  background: rgba(0, 172, 230, 0.1);
  border-color: rgba(0, 172, 230, 0.5);
}

/* ══════════════════════════════════════════════
   DASHBOARD CARD SHOWCASE (Exact Replica of Screenshots 1, 2, 3)
   ══════════════════════════════════════════════ */
.gm-dashboard-wrap {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
}

.gm-dashboard-card {
  position: relative;
  background: #040814;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 172, 230, 0.08);
  text-align: left;
}

.gm-dash-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 420px;
}

@media (max-width: 860px) {
  .gm-dash-grid { grid-template-columns: 1fr; }
}

/* Left Column: Dados da sua proxy */
.gm-dash-left {
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gm-dash-section-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
}

.gm-fields-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gm-field-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gm-field-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  gap: 4px;
}

.gm-field-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(3, 7, 18, 0.8);
  border: 1px solid rgba(0, 172, 230, 0.35);
  border-radius: 12px;
  padding: 7px 10px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: #ffffff;
}

.gm-saldo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
}

.gm-saldo-label {
  font-size: 0.78rem;
  color: var(--muted-foreground);
  font-weight: 600;
}

.gm-saldo-val {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary);
}

.gm-progress-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gm-progress-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: var(--muted-foreground);
  font-family: var(--font-mono);
}

.gm-progress-track {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  overflow: hidden;
}

.gm-progress-fill {
  width: 18%;
  height: 100%;
  background: var(--primary);
  border-radius: 9999px;
  box-shadow: 0 0 10px var(--primary);
}

.gm-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  padding: 4px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* Right Column: Tráfego (últimos 30 dias) */
.gm-dash-right {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #02050e;
}

.gm-stats-3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gm-stat-mini-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 10px 12px;
}

.gm-stat-mini-label {
  font-size: 0.65rem;
  color: var(--muted-foreground);
  font-weight: 600;
  margin-bottom: 2px;
}

.gm-stat-mini-val {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary);
}

.gm-chart-area-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gm-chart-svg {
  width: 100%;
  height: 80px;
  overflow: visible;
}

.gm-hosts-table {
  width: 100%;
  font-size: 0.72rem;
  font-family: var(--font-mono);
}

.gm-hosts-head {
  display: flex;
  justify-content: space-between;
  color: var(--muted-foreground);
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.65rem;
}

.gm-hosts-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.gm-hosts-row span:last-child {
  color: var(--primary);
  font-weight: 700;
}

/* Bottom Search Pill (from gmproxys mockup) */
.gm-dash-search-bar {
  padding: 12px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #030713;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gm-dash-search-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  padding: 8px 16px;
  color: #ffffff;
  font-size: 0.8rem;
  outline: none;
}

.gm-dash-send-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #030712;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Central Demo Overlay Pill Button */
.gm-demo-overlay-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(3, 7, 18, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 9999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 172, 230, 0.2);
  transition: all 0.2s ease;
  z-index: 20;
}

.gm-demo-overlay-btn:hover {
  background: #00ace6;
  color: #000000;
  border-color: #00ace6;
  transform: translate(-50%, -50%) scale(1.05);
}

/* ══════════════════════════════════════════════
   LOGOS MARQUEE (Undetectable, AdsPower, etc.)
   ══════════════════════════════════════════════ */
.gm-marquee-wrap {
  padding: 30px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(2, 5, 13, 0.6);
}

.gm-marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.gm-marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #475569;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════
   RECARGA AUTOMÁTICA SECTION (Exact Replica of Screenshot 4)
   ══════════════════════════════════════════════ */
.gm-features-section {
  padding: 90px 0;
  text-align: center;
}

.gm-section-title-lg {
  font-size: clamp(2rem, 4vw + 0.5rem, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 16px;
}

.gm-section-desc-lg {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted-foreground);
  max-width: 640px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.gm-radar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: left;
}

@media (max-width: 1024px) {
  .gm-radar-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .gm-radar-grid { grid-template-columns: 1fr; }
}

.gm-radar-card {
  background: #050a17;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}

/* Concentric Radar Lines from Screenshot 4 */
.gm-radar-card::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(0, 172, 230, 0.12);
  box-shadow: 0 0 0 20px rgba(0, 172, 230, 0.06), 0 0 0 40px rgba(0, 172, 230, 0.03);
  pointer-events: none;
}

.gm-radar-card:hover {
  border-color: rgba(0, 172, 230, 0.35);
  background: #070e20;
}

.gm-radar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.gm-radar-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0, 172, 230, 0.08);
  border: 1px solid rgba(0, 172, 230, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.gm-radar-num {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary);
}

.gm-radar-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.gm-radar-desc {
  font-size: 0.84rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════
   PLANS SECTION (Clean SaaS Pricing)
   ══════════════════════════════════════════════ */
.gm-pricing-section {
  padding: 90px 0;
}

.gm-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 960px) {
  .gm-pricing-grid { grid-template-columns: 1fr; }
}

.gm-plan-card {
  background: #050a17;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.2s ease;
}

.gm-plan-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.gm-plan-card.featured {
  border-color: rgba(0, 172, 230, 0.6);
  background: linear-gradient(180deg, #091326 0%, #050a17 100%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 172, 230, 0.15);
}

.gm-plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #020617;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 12px;
  border-radius: 9999px;
}

.gm-plan-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.gm-plan-sub {
  font-size: 0.82rem;
  color: var(--muted-foreground);
}

.gm-plan-price-box {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 20px 0;
}

.gm-plan-price-val {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
}

.gm-plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.gm-plan-feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #cbd5e1;
}

.gm-plan-feat-check {
  color: var(--primary);
}

.gm-btn-plan {
  width: 100%;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.gm-btn-plan:hover {
  background: rgba(255, 255, 255, 0.1);
}

.gm-btn-plan.featured-btn {
  background: var(--primary);
  color: #020617;
  border: none;
}

.gm-btn-plan.featured-btn:hover {
  background: #22bbed;
}

/* ══════════════════════════════════════════════
   FLOATING CHAT BUTTON (gmproxys bottom right)
   ══════════════════════════════════════════════ */
.gm-chat-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 172, 230, 0.5);
  z-index: 100;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gm-chat-floating:hover {
  transform: scale(1.08);
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.gm-footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #02040a;
  color: var(--muted-foreground);
  font-size: 0.82rem;
}

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

/* ══════════════════════════════════════════════
   PIX CHECKOUT MODAL (NEO-GLASS DARK)
   ══════════════════════════════════════════════ */
.pix-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.pix-modal-backdrop.active {
  display: flex;
}

.pix-modal-card {
  background: #080d1a;
  border: 1px solid rgba(0, 172, 230, 0.4);
  border-radius: 24px;
  width: 100%;
  max-width: 440px;
  padding: 36px 28px 28px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 172, 230, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  animation: modalScaleIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalScaleIn {
  from { opacity: 0; transform: scale(0.92) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.15s ease;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.pix-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0, 172, 230, 0.12);
  border: 1px solid rgba(0, 172, 230, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 12px;
  box-shadow: 0 0 20px rgba(0, 172, 230, 0.25);
}

/* 5-Min Expiration Countdown Badge */
.pix-timer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #fde047;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 9999px;
  margin-bottom: 6px;
}

.pix-timer-badge.is-expired {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

.pix-qr-box {
  background: #ffffff;
  padding: 14px;
  border-radius: 16px;
  margin: 14px auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 180px;
  position: relative;
  overflow: hidden;
}

.pix-qr-img {
  width: 180px;
  height: 180px;
  display: block;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.pix-qr-box.is-expired .pix-qr-img {
  filter: blur(8px) grayscale(80%);
  opacity: 0.2;
}

/* Expired Overlay */
.pix-expired-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 24, 0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  text-align: center;
  border-radius: 16px;
  animation: fadeInOverlay 0.2s ease-out;
}

@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}

.btn-renew-pix {
  background: linear-gradient(135deg, #00ace6, #0088cc);
  color: #020617;
  font-weight: 800;
  font-size: 0.82rem;
  border: none;
  border-radius: 10px;
  padding: 8px 16px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 172, 230, 0.4);
  transition: all 0.15s ease;
}

.btn-renew-pix:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 172, 230, 0.6);
}

.pix-copy-input-wrap {
  display: flex;
  gap: 8px;
  width: 100%;
  margin: 12px 0 16px;
}

.pix-copy-input {
  flex: 1;
  background: #040711;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0 12px;
  height: 42px;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  outline: none;
}

.pix-copy-input:focus {
  border-color: var(--primary);
}

.btn-copy-pix {
  height: 42px;
  padding: 0 18px;
  background: var(--primary);
  color: #020617;
  font-weight: 800;
  font-size: 0.84rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn-copy-pix:hover {
  background: #22bbed;
}

/* ══════════════════════════════════════════════
   MOBILE HAMBURGER & DRAWER STYLES
   ══════════════════════════════════════════════ */
.gm-mobile-menu-btn {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.gm-mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.gm-mobile-drawer {
  position: absolute;
  top: calc(100% + 8px);
  left: 16px;
  right: 16px;
  background: rgba(6, 11, 23, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 18px 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 172, 230, 0.15);
  display: none;
  flex-direction: column;
  gap: 8px;
  z-index: 100;
  animation: drawerSlide 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.gm-mobile-drawer.active {
  display: flex;
}

@keyframes drawerSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.gm-mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gm-mob-link {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: all 0.15s ease;
}

.gm-mob-link:hover {
  color: #ffffff;
  background: rgba(0, 172, 230, 0.08);
  border-color: rgba(0, 172, 230, 0.25);
}

.gm-mob-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: #00ace6;
  color: #020617;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  border-radius: 12px;
  margin-top: 6px;
  box-shadow: 0 4px 16px rgba(0, 172, 230, 0.35);
}

/* ══════════════════════════════════════════════
   100% FLUID MOBILE RESPONSIVENESS
   ══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .gm-nav { display: none; }
  .gm-mobile-menu-btn { display: flex; }
  
  .gm-hero {
    padding-top: 100px;
    padding-bottom: 40px;
  }
  
  .gm-hero-title {
    font-size: 2.2rem;
    line-height: 1.15;
  }
  
  .gm-hero-desc {
    font-size: 0.95rem;
    padding: 0 8px;
  }
  
  .gm-cta-row {
    flex-direction: column;
    width: 100%;
  }
  
  .gm-btn-primary, .gm-btn-secondary {
    width: 100%;
    max-width: 380px;
    height: 48px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }
  
  .gm-header-bar {
    height: 50px;
    padding: 0 12px;
  }
  
  .gm-lang-btn {
    display: none;
  }
  
  .gm-hero-title {
    font-size: 1.85rem;
  }
  
  .gm-dash-left, .gm-dash-right {
    padding: 16px;
  }
  
  .gm-fields-row-2 {
    grid-template-columns: 1fr;
  }
  
  .gm-stats-3-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  
  .gm-stat-mini-card {
    padding: 8px 6px;
  }
  
  .gm-stat-mini-label {
    font-size: 0.58rem;
  }
  
  .gm-stat-mini-val {
    font-size: 0.82rem;
  }
  
  .gm-dash-search-bar {
    padding: 10px 14px;
  }
  
  .gm-dash-search-input {
    font-size: 0.74rem;
  }
  
  .gm-section-title-lg {
    font-size: 1.8rem;
  }
  
  .gm-section-desc-lg {
    font-size: 0.9rem;
    margin-bottom: 36px;
  }
  
  .gm-radar-card {
    min-height: auto;
    padding: 22px 18px;
  }
  
  .gm-plan-card {
    padding: 24px 20px;
  }
  
  .gm-chat-floating {
    width: 46px;
    height: 46px;
    bottom: 16px;
    right: 16px;
  }
  
  .pix-modal-card {
    padding: 28px 18px 22px;
    max-width: 95%;
  }
  
  .pix-qr-box {
    min-width: 150px;
    min-height: 150px;
    padding: 10px;
  }
  
  .pix-qr-img {
    width: 150px;
    height: 150px;
  }
}

/* ══════════════════════════════════════════════
   PROGRESSIVE DISCOUNT CALCULATOR (CLEAN ENTERPRISE SAAS)
   Minimalist dark aesthetic, crisp typography & balanced accents
   ══════════════════════════════════════════════ */
.plans-wrapper-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 1060px;
  margin: 0 auto;
  text-align: left;
}

/* 1. Header Promo Banner (Clean) */
.calc-promo-banner {
  background: rgba(14, 165, 233, 0.04);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.calc-banner-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.calc-flame-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
}

.calc-banner-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #f8fafc;
  letter-spacing: -0.01em;
}

.calc-banner-sub {
  font-size: 0.78rem;
  color: #94a3b8;
}

.calc-discount-badge {
  background: #0ea5e9;
  color: #030712;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 9999px;
  letter-spacing: 0.5px;
}

/* 2. Main Glass Calculator Card */
.calc-main-card {
  background: #070c18;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  position: relative;
}

.calc-card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.calc-card-head-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
}

.calc-live-discount-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.25);
  color: #38bdf8;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  font-family: var(--font-mono);
}

/* Controls Grid */
.calc-controls-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

@media (max-width: 860px) {
  .calc-controls-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.calc-stepper-box {
  display: flex;
  align-items: center;
  background: #040711;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  height: 48px;
  overflow: hidden;
}

.calc-step-btn {
  width: 44px;
  height: 100%;
  background: transparent;
  border: none;
  color: #cbd5e1;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}

.calc-step-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.calc-step-display {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.calc-step-num {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.calc-step-unit {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--muted-foreground);
  letter-spacing: 0.5px;
}

/* Custom Clean Range Slider */
.calc-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-slider-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted-foreground);
}

.calc-neon-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 9999px;
  background: #131b2e;
  outline: none;
}

.calc-neon-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0ea5e9;
  border: 2px solid #ffffff;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  transition: transform 0.15s;
}

.calc-neon-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-ticks-chips {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  flex-wrap: wrap;
}

.calc-tick-chip {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #94a3b8;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
}

.calc-tick-chip:hover, .calc-tick-chip.active {
  background: rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.35);
  color: #38bdf8;
}

/* Total Cost Breakdown Card */
.calc-total-card {
  background: #040711;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  text-align: center;
}

.calc-total-orig {
  font-size: 0.72rem;
  color: var(--muted-foreground);
  text-decoration: line-through;
}

.calc-total-final {
  font-family: var(--font-mono);
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 1px 0;
}

.calc-total-rate {
  font-size: 0.7rem;
  color: #0ea5e9;
  font-weight: 600;
}

.calc-savings-chip {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #34d399;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 9999px;
  margin-top: 4px;
}

/* Double Hours Callout */
.calc-bonus-callout {
  display: none;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 12px;
  padding: 12px 16px;
  align-items: center;
  gap: 12px;
  font-size: 0.84rem;
  color: #fef08a;
}

.calc-bonus-callout.active {
  display: flex;
}

/* CTA Row */
.calc-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-calc-pix-cta {
  flex: 1;
  min-width: 260px;
  height: 48px;
  background: #0ea5e9;
  color: #030712;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s, transform 0.15s;
}

.btn-calc-pix-cta:hover {
  background: #38bdf8;
  transform: translateY(-1px);
}

.calc-cta-note {
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

/* 3. Preset Quick Cards */
.calc-presets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 860px) {
  .calc-presets-grid {
    grid-template-columns: 1fr;
  }
}

.calc-preset-box {
  background: #070c18;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
}

.calc-preset-box:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 165, 233, 0.35);
  background: #0a1122;
}

.calc-preset-box.featured-gold {
  border: 1px solid rgba(245, 158, 11, 0.4);
  background: #090e1e;
}

.calc-preset-box.featured-gold:hover {
  border-color: #f59e0b;
}

.calc-preset-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
}

.calc-preset-tag.gold {
  background: #f59e0b;
  color: #030712;
  font-weight: 800;
}

.calc-preset-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.calc-preset-price {
  font-family: var(--font-mono);
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
}

.calc-preset-desc {
  font-size: 0.76rem;
  color: var(--muted-foreground);
  line-height: 1.4;
}

/* ══════════════════════════════════════════════
   FLOATING PENDING PIX BAR (BACKGROUND PERSISTENCE)
   ══════════════════════════════════════════════ */
.floating-pending-pix {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(12, 19, 34, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 210, 255, 0.4);
  border-radius: 9999px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9998;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 210, 255, 0.25);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  animation: slideUpBounce 0.4s ease-out;
}

.floating-pending-pix:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: #00d2ff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.9), 0 0 28px rgba(0, 210, 255, 0.4);
}

.floating-pix-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 10px #f59e0b;
  animation: pulse-dot 1.5s infinite;
}

.floating-pix-text {
  font-size: 0.82rem;
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.floating-pix-timer {
  font-family: var(--font-mono);
  color: #00d2ff;
  font-weight: 800;
  background: rgba(0, 210, 255, 0.12);
  padding: 2px 8px;
  border-radius: 6px;
}

.floating-pix-action {
  font-size: 0.76rem;
  font-weight: 800;
  color: #030712;
  background: #00d2ff;
  padding: 5px 12px;
  border-radius: 9999px;
  text-transform: uppercase;
}

@keyframes slideUpBounce {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .floating-pending-pix {
    left: 16px;
    right: 16px;
    bottom: 16px;
    justify-content: space-between;
    padding: 10px 14px;
  }
}

/* ══════════════════════════════════════════════
   DEV SANDBOX SIMULATION BOX
   ══════════════════════════════════════════════ */
.dev-simulate-box {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px dashed rgba(139, 92, 246, 0.4);
  text-align: center;
  width: 100%;
}

.btn-dev-simulate {
  width: 100%;
  padding: 9px 14px;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(139, 92, 246, 0.3);
  transition: all 0.2s ease;
}

.btn-dev-simulate:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
  background: linear-gradient(135deg, #a78bfa, #818cf8);
}

/* ══════════════════════════════════════════════
   QUICK AUTH MODAL (INLINE ONBOARDING)
   ══════════════════════════════════════════════ */
.quick-auth-card {
  background: #090e1c;
  border: 1px solid rgba(0, 210, 255, 0.35);
  border-radius: 20px;
  padding: 28px 24px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 210, 255, 0.2);
  text-align: left;
}






