:root {
  --gold-primary: #D4A855;
  --gold-light: #E8C97A;
  --gold-dark: #B8923D;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-highlight: rgba(255, 255, 255, 0.15);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  --success-green: #22C55E;
  --success-bg: rgba(34, 197, 94, 0.15);
  --error: #EF4444;
  --error-bg: rgba(239, 68, 68, 0.15);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background: #0A0A0F;
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

.hidden {
  display: none !important;
}

[dir="rtl"] {
  text-align: right;
}

[dir="rtl"] .rtl-flip {
  transform: scaleX(-1);
}

.app {
  min-height: 100vh;
  position: relative;
}

.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 85, 0.4) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  animation-delay: -7s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 168, 85, 0.25) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 30px) scale(1.02); }
}

.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.glass-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.screen {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.login-card {
  padding: 40px 32px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  position: relative;
}

.auth-lang-picker {
  position: absolute;
  top: 20px;
  right: 20px;
}

.auth-lang-picker .lang-select {
  padding: 8px 16px;
  padding-right: 32px;
  font-size: 12px;
}

.logo-container {
  margin-bottom: 24px;
  text-align: center;
}

/* RTL support for auth modal header */
[dir="rtl"] .auth-lang-picker {
  right: auto;
  left: 20px;
}

[dir="rtl"] .logo-container {
  text-align: center;
}

.auth-logo {
  height: 48px;
  width: auto;
}

.gold-bar {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  border-radius: 2px;
  margin: 0 auto 24px;
}

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.step-dot.active {
  background: var(--gold-primary);
}

.step-line {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.step-line.active {
  background: var(--gold-primary);
}

.card-title {
  font-size: clamp(22px, 4vw, 24px);
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.card-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.card-subtitle .highlight {
  color: var(--gold-primary);
  font-weight: 500;
}

.input-wrapper {
  position: relative;
  margin-bottom: 16px;
}

.input-field {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.input-field::placeholder {
  color: var(--text-muted);
}

.input-field:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(212, 168, 85, 0.15), 0 0 30px rgba(212, 168, 85, 0.1);
}

.input-field.error {
  border-color: var(--error);
  box-shadow: 0 0 0 4px var(--error-bg);
}

.textarea-field {
  height: 110px;
  min-height: 110px;
  max-height: 110px;
  resize: none;
  overflow-y: auto;
}

.input-error {
  font-size: 13px;
  color: var(--error);
  margin-top: 8px;
  text-align: left;
}

.helper-text {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.btn-gold {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  background-size: 200% 200%;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  color: #0A0A0F;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-gold:hover {
  background-position: 100% 100%;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(212, 168, 85, 0.3);
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-gold:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-gold:disabled:hover {
  box-shadow: none;
}

.btn-gold:disabled:hover::before {
  left: -100%;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  padding: 8px 0;
  margin-bottom: 24px;
  transition: color 0.2s;
}

.back-btn:hover {
  color: var(--text-primary);
}

.back-btn svg {
  width: 18px;
  height: 18px;
}

[dir="rtl"] .back-btn svg {
  transform: scaleX(-1);
}

.support-link {
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-muted);
}

.support-link a {
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.support-link a:hover {
  color: var(--gold-light);
}

.lang-picker {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.lang-select {
  padding: 8px 16px;
  padding-right: 32px;
  background-color: var(--glass-bg);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
}

.pricing-nav .lang-select {
  margin-left: auto;
  min-width: 60px;
}

/* RTL support for header */
[dir="rtl"] .pricing-nav {
  flex-direction: row-reverse;
}

[dir="rtl"] .pricing-nav .nav-logo {
  order: 2;
}

[dir="rtl"] .pricing-nav .lang-select {
  order: 1;
  margin-left: 0;
  margin-right: auto;
}

.lang-select:hover {
  background-color: rgba(255, 255, 255, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
}

.lang-select:focus {
  outline: none;
  border-color: var(--gold-primary);
}

.lang-select option {
  background: #0A0A0F;
  color: var(--text-primary);
}

/* ============================================
   OTP INPUT
   ============================================ */

.otp-container {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
  direction: ltr;
}

.otp-input {
  width: 56px;
  height: 64px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  font-size: 24px;
  font-weight: 600;
  font-family: inherit;
  color: var(--text-primary);
  text-align: center;
  transition: all 0.3s ease;
}

.otp-input:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(212, 168, 85, 0.15);
}

.otp-input.filled {
  border-color: var(--gold-primary);
  background: rgba(212, 168, 85, 0.1);
}

.otp-input.error {
  border-color: var(--error);
  animation: shake 0.5s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

/* Resend */
.resend-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.resend-btn {
  background: none;
  border: none;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: color 0.2s;
  color: var(--text-muted);
}

.resend-btn:not(:disabled) {
  color: var(--gold-primary);
}

.resend-btn:not(:disabled):hover {
  color: var(--gold-light);
}

.resend-btn:disabled {
  cursor: not-allowed;
}

.pricing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  gap: 16px;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

@media (max-width: 480px) {
  .pricing-nav {
    padding: 12px 16px;
    gap: 12px;
  }
  
  .nav-logo img {
    height: 28px;
  }
  
  .pricing-nav .lang-select {
    padding: 6px 14px;
    padding-right: 28px;
    font-size: 12px;
    min-width: 50px;
    background-position: right 10px center;
    background-size: 10px;
  }
}

.pricing-screen {
  position: relative;
  z-index: 2;
  padding: 80px 20px 50px;
  min-height: 100vh;
}

.pricing-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: #4ADE80;
  margin-bottom: 20px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.pricing-title {
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #FFFFFF 0%, rgba(255,255,255,0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-subtitle {
  font-size: clamp(14px, 2.5vw, 16px);
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.benefits-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}

.benefit-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-secondary);
  backdrop-filter: blur(10px);
}

.benefit-icon {
  font-size: 16px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  perspective: 1000px;
}

.pricing-card {
  padding: 28px 24px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  cursor: pointer;
}

.pricing-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.selected {
  border-color: rgba(212, 168, 85, 0.4);
  background: linear-gradient(
    135deg,
    rgba(212, 168, 85, 0.08) 0%,
    rgba(212, 168, 85, 0.04) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  box-shadow: 
    0 0 0 1px rgba(212, 168, 85, 0.3),
    0 8px 24px rgba(212, 168, 85, 0.12),
    0 0 40px rgba(212, 168, 85, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(-4px) scale(1.02);
  z-index: 10;
  filter: brightness(1.05);
}

.pricing-card.selected::before {
  background: linear-gradient(90deg, transparent, rgba(212, 168, 85, 0.15), transparent);
  height: 1px;
}

.pricing-card.selected::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light), var(--gold-primary));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.4;
  z-index: -1;
  animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.5;
  }
}

.pricing-card.selected .current-plan-badge,
.pricing-card.selected .featured-badge {
  z-index: 2;
}

/* Current Plan Styling - User is already on this plan */
.pricing-card.current-plan {
  opacity: 0.85;
  cursor: default;
  pointer-events: none;
  position: relative;
}

.pricing-card.current-plan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(212, 168, 85, 0.05);
  border: 2px solid rgba(212, 168, 85, 0.3);
  border-radius: 20px;
  pointer-events: none;
  z-index: 1;
}

.pricing-card.current-plan .current-plan-badge {
  opacity: 1 !important;
  background: linear-gradient(135deg, rgba(212, 168, 85, 0.3), rgba(212, 168, 85, 0.2));
  border: 1px solid rgba(212, 168, 85, 0.5);
  color: var(--gold-light);
  font-weight: 600;
}

.pricing-card.current-plan .card-subscribe-btn {
  display: none !important;
}

.current-plan-message {
  width: 100%;
  padding: 14px 24px;
  margin-top: 28px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--gold-primary);
  background: rgba(212, 168, 85, 0.1);
  border: 1px solid rgba(212, 168, 85, 0.3);
  border-radius: 12px;
  display: none;
}

.pricing-card.featured.selected {
  background: linear-gradient(
    135deg,
    rgba(212, 168, 85, 0.1) 0%,
    rgba(212, 168, 85, 0.05) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border-color: rgba(212, 168, 85, 0.4);
}

.pricing-card.featured.selected::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light), transparent 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
  z-index: -1;
}

.featured-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: #0A0A0F;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0 0 12px 12px;
  z-index: 2;
}

.current-plan-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: 0 0 10px 10px;
  backdrop-filter: blur(10px);
  z-index: 2;
}

.plan-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.plan-name {
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.plan-tier {
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 600;
  color: var(--gold-primary);
  letter-spacing: 0.3px;
  margin-top: 6px;
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(212, 168, 85, 0.15), rgba(212, 168, 85, 0.08));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 168, 85, 0.25);
  border-radius: 100px;
  box-shadow: 
    0 0 20px rgba(212, 168, 85, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-shadow: 0 0 10px rgba(212, 168, 85, 0.3);
}

.plan-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
}

.plan-radio {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.pricing-card.selected .plan-radio {
  border-color: var(--gold-primary);
}

.plan-radio-inner {
  width: 12px;
  height: 12px;
  background: var(--gold-primary);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pricing-card.selected .plan-radio-inner {
  transform: scale(1);
}

@keyframes subtleSelect {
  0% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.03) translateY(-2px);
  }
  100% {
    transform: scale(1.02) translateY(-4px);
  }
}

.pricing-card.selecting {
  animation: subtleSelect 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-signup-btn,
.card-subscribe-btn {
  width: 100%;
  padding: 14px 24px;
  margin-top: 28px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  background-size: 200% 200%;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  color: #0A0A0F;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card-signup-btn::before,
.card-subscribe-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.card-signup-btn:hover,
.card-subscribe-btn:hover {
  background-position: 100% 100%;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(212, 168, 85, 0.3);
}

.card-signup-btn:hover::before,
.card-subscribe-btn:hover::before {
  left: 100%;
}

.card-signup-btn:active,
.card-subscribe-btn:active {
  transform: translateY(0);
}

.card-signup-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}

.plan-name-inline {
  color: #0A0A0F;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 17px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
}

.feature-check {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, rgba(212, 168, 85, 0.2), rgba(212, 168, 85, 0.1));
  border: 1px solid rgba(212, 168, 85, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-check svg {
  width: 12px;
  height: 12px;
  stroke: var(--gold-primary);
  stroke-width: 2.5;
}

.discount-badge {
  display: inline-block;
  padding: 4px 10px;
  background: linear-gradient(135deg, rgba(212, 168, 85, 0.2), rgba(212, 168, 85, 0.1));
  border: 1px solid rgba(212, 168, 85, 0.3);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  margin-left: 8px;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  text-align: center;
  margin-top: 32px;
}

.cta-above-plans {
  margin-top: 28px;
  margin-bottom: 32px;
}

@keyframes nudge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.pricing-card.nudge {
  animation: nudge 0.5s ease;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  background-size: 200% 200%;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  color: #0A0A0F;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s ease;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(212, 168, 85, 0.35);
}

.btn-cta:hover::before {
  left: 100%;
}

.terms-text {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 40px;
  text-align: center;
}

.pricing-footer {
  text-align: center;
  padding: 24px 20px 20px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 10;
}

.footer-copyright {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer-support {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-support a {
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  cursor: pointer;
  position: relative;
  z-index: 1;
  display: inline-block;
}

.footer-support a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  padding: 48px 40px;
  width: 100%;
  max-width: 440px;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
}

@media (max-width: 480px) {
  .modal-backdrop {
    padding: 16px;
    align-items: flex-start;
    padding-top: 20px;
  }
  
  .modal-card {
    padding: 32px 24px;
    max-width: 100%;
    margin: 0;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
  }
  
  .modal-title {
    font-size: 24px;
  }
  
  .modal-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }
  
  .selected-plan-card {
    padding: 16px 20px;
    margin-bottom: 24px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-label {
    font-size: 13px;
  }
  
  .input-field {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .textarea-field {
    height: 100px;
    min-height: 100px;
    max-height: 100px;
  }
  
  .btn-gold {
    padding: 14px 24px;
    font-size: 14px;
    width: 100%;
  }
  
  .close-button {
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
  }
}

.modal-backdrop.active .modal-card {
  transform: scale(1) translateY(0);
}

.privacy-policy-modal {
  max-width: 600px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}

.privacy-policy-content {
  margin: 24px 0;
  padding-right: 8px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  overflow-y: auto;
  flex: 1;
  max-height: calc(85vh - 200px);
  text-align: left;
}

.privacy-policy-content::-webkit-scrollbar {
  width: 8px;
}

.privacy-policy-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.privacy-policy-content::-webkit-scrollbar-thumb {
  background: rgba(212, 168, 85, 0.3);
  border-radius: 4px;
}

.privacy-policy-content::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 168, 85, 0.5);
}

.privacy-policy-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 28px 0 12px 0;
  color: var(--gold-primary);
}

.privacy-policy-content h3:first-child {
  margin-top: 0;
}

.privacy-policy-content p {
  margin: 0 0 18px 0;
  font-size: 14px;
  line-height: 1.7;
}

.privacy-policy-content p:last-child {
  margin-bottom: 0;
}

.privacy-policy-content a {
  color: var(--gold-primary);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.privacy-policy-content a:hover {
  color: var(--gold-light);
}

.close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-secondary);
}

.close-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.close-button svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.modal-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(212, 168, 85, 0.2), rgba(212, 168, 85, 0.05));
  border: 1px solid rgba(212, 168, 85, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
}

.modal-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.modal-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 32px;
}

/* Subscription Error Message */
.subscription-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 0 0 24px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  animation: slideDown 0.3s ease-out;
}

.subscription-error.hidden {
  display: none;
}

.subscription-error .error-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.subscription-error .error-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

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

/* Selected Plan Card */
.selected-plan-card {
  background: linear-gradient(135deg, rgba(212, 168, 85, 0.15), rgba(212, 168, 85, 0.05));
  border: 1px solid rgba(212, 168, 85, 0.3);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  text-align: left;
}

.plan-checkmark {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.plan-checkmark svg {
  width: 16px;
  height: 16px;
  stroke: #0A0A0F;
  stroke-width: 3;
}

.selected-plan-info h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 2px;
}

.selected-plan-info p {
  font-size: 14px;
  color: var(--text-secondary);
}

.modal-plan-features {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 28px;
  text-align: left;
}

.modal-features-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.modal-features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-primary);
  padding: 4px 0;
}

.modal-feature-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.modal-feature-item .discount-badge-inline {
  display: inline-block;
  padding: 2px 8px;
  background: linear-gradient(135deg, rgba(212, 168, 85, 0.2), rgba(212, 168, 85, 0.1));
  border: 1px solid rgba(212, 168, 85, 0.3);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  margin-left: 6px;
}

/* Form Group */
.form-group {
  margin-bottom: 22px;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

.form-label .optional-text {
  color: var(--text-muted);
  font-weight: 400;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--success-bg);
  border: 2px solid rgba(34, 197, 94, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.success-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--success-green);
  stroke-width: 2.5;
  animation: drawCheck 0.5s ease 0.3s forwards;
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
}

/* Consent Section */
.cost-warning-section {
  margin: 24px 0;
  padding: 16px;
  background: rgba(212, 168, 85, 0.1);
  border: 1px solid rgba(212, 168, 85, 0.3);
  border-radius: 12px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-align: left;
}

.warning-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.warning-content {
  flex: 1;
  text-align: left;
}

.warning-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--gold-primary);
  margin: 0 0 8px 0;
  text-align: left;
}

.warning-text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 8px 0;
  text-align: left;
}

.warning-text:last-child {
  margin-bottom: 0;
}

.cost-amount-bold {
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 14px;
}

.warning-text strong {
  color: var(--gold-primary);
  font-weight: 600;
}

.consent-section {
  margin: 28px 0;
  text-align: left;
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.consent-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.2s ease;
}

.consent-checkbox input[type="checkbox"]:hover {
  border-color: rgba(212, 168, 85, 0.4);
  background: rgba(212, 168, 85, 0.05);
}

.consent-checkbox input[type="checkbox"]:checked {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  border-color: var(--gold-primary);
}

.consent-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 5px;
  height: 10px;
  border: solid #0A0A0F;
  border-width: 0 2px 2px 0;
}

.consent-checkbox input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.consent-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.consent-text a {
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.consent-text a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

[dir="rtl"] .consent-checkbox {
  text-align: right;
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.success-title {
  font-size: clamp(24px, 4vw, 28px);
  font-weight: 700;
  margin-bottom: 10px;
}

.success-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}

.success-subtitle strong {
  color: var(--gold-primary);
  font-weight: 600;
}

.success-subtitle-secondary {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 12px;
  margin-bottom: 24px;
  opacity: 0.8;
  line-height: 1.5;
  text-align: center;
}

.success-subtitle-secondary strong {
  color: var(--gold-primary);
  font-weight: 600;
}

.success-subtitle .highlight {
  color: var(--gold-primary);
  font-weight: 500;
}

/* ============================================
   SUBSCRIBED VIEW
   ============================================ */

.subscribed-content {
  text-align: center;
  padding: 20px 0;
}

.subscribed-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #0A0A0F;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(212, 168, 85, 0.3);
}

.upgrade-info {
  margin-top: 32px;
  margin-bottom: 32px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.upgrade-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.support-email-link {
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease;
  display: inline-block;
}

.support-email-link:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.exclusive-features {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 24px;
  text-align: left;
}

.exclusive-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.exclusive-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.exclusive-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.exclusive-item span:first-child {
  font-size: 14px;
}

.discount-badge-inline {
  display: inline-block;
  padding: 2px 8px;
  background: linear-gradient(135deg, rgba(212, 168, 85, 0.2), rgba(212, 168, 85, 0.1));
  border: 1px solid rgba(212, 168, 85, 0.3);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  margin-left: 6px;
}

.toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 300;
  animation: toastIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

@keyframes toastIn {
  to { transform: translateX(-50%) translateY(0); }
}

.toast.error {
  border-color: var(--error);
  background: var(--error-bg);
}

.toast.success {
  border-color: var(--success-green);
  background: var(--success-bg);
}

.confetti-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  overflow: hidden;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--gold-primary);
  opacity: 0;
}

.confetti.animate {
  animation: confettiFall 2.5s ease-out forwards;
}

@keyframes confettiFall {
  0% { opacity: 1; transform: translateY(0) rotate(0deg); }
  100% { opacity: 0; transform: translateY(-500px) rotate(720deg); }
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-overlay.hidden {
  display: none;
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(212, 168, 85, 0.2);
  border-top-color: #d4a853;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(212, 168, 85, 0.2);
  border-top-color: #d4a853;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

@media (min-width: 481px) {
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (min-width: 769px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .login-card {
    padding: 44px 36px;
  }
  
  .pricing-screen {
    padding: 90px 24px 60px;
  }
}

@media (max-width: 480px) {
  .screen {
    padding: 16px;
  }
  
  .login-card {
    padding: 32px 20px;
    max-width: 100%;
  }
  
  .auth-logo {
    height: 40px;
  }
  
  .auth-lang-picker {
    top: 16px;
    right: 16px;
  }
  
  [dir="rtl"] .auth-lang-picker {
    right: auto;
    left: 16px;
  }
  
  .auth-lang-picker .lang-select {
    padding: 6px 12px;
    padding-right: 28px;
    font-size: 11px;
    background-position: right 10px center;
    background-size: 10px;
  }
  
  .gold-bar {
    width: 32px;
    margin-bottom: 20px;
  }
  
  .card-title {
    font-size: 20px;
    margin-bottom: 4px;
  }
  
  .card-subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }
  
  .input-field {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .btn-gold {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  
  .nav-logo img {
    height: 32px;
  }
  
  .pricing-screen {
    padding: 70px 16px 40px;
  }
  
  .pricing-header {
    margin-bottom: 32px;
  }
  
  .status-pill {
    padding: 6px 12px;
    font-size: 11px;
    margin-bottom: 16px;
  }
  
  .pricing-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }
  
  .benefits-row {
    gap: 8px;
    margin-bottom: 24px;
  }
  
  .benefit-chip {
    padding: 8px 12px;
    font-size: 12px;
    gap: 6px;
  }
  
  .benefit-icon {
    font-size: 14px;
  }
  
  .cta-above-plans {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  
  .btn-cta {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .pricing-card {
    padding: 24px 20px;
  }
  
  .pricing-card.selected {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 
      0 0 0 1px rgba(212, 168, 85, 0.4),
      0 4px 20px rgba(212, 168, 85, 0.12),
      0 0 40px rgba(212, 168, 85, 0.08);
  }
  
  .current-plan-badge,
  .featured-badge {
    font-size: 10px;
    padding: 5px 12px;
  }
  
  .plan-header {
    margin-bottom: 10px;
  }
  
  .plan-tier {
    font-size: clamp(12px, 1.8vw, 14px);
    margin-top: 6px;
    padding: 4px 10px;
  }
  
  .plan-name {
    font-size: 22px;
  }
  
  .plan-description {
    font-size: 13px;
    margin-bottom: 20px;
  }
  
  .plan-radio {
    width: 20px;
    height: 20px;
  }
  
  .plan-radio-inner {
    width: 10px;
    height: 10px;
  }
  
  .features-list {
    gap: 12px;
  }
  
  .feature-item {
    font-size: 14px;
    gap: 12px;
  }
  
  .feature-check {
    width: 20px;
    height: 20px;
  }
  
  .feature-check svg {
    width: 10px;
    height: 10px;
  }
  
  .otp-input {
    width: 52px;
    height: 60px;
    font-size: 22px;
  }
  
  .otp-container {
    gap: 8px;
    margin-bottom: 24px;
  }
  
  .modal-card {
    padding: 32px 20px;
  }
  
  .modal-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .modal-title {
    font-size: 24px;
  }
  
  .modal-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }
  
  .terms-text {
    font-size: 12px;
    margin-top: 32px;
  }
  
  .pricing-footer {
    padding: 20px 16px 16px;
    margin-top: 24px;
  }
  
  .footer-copyright {
    font-size: 11px;
    margin-bottom: 6px;
  }
  
  .footer-support {
    font-size: 11px;
  }
}
