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

/* ========== CSS Custom Properties ========== */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: rgba(18, 18, 18, 0.95);
  --bg-input: rgba(25, 25, 25, 0.9);
  --bg-input-focus: rgba(30, 30, 30, 0.95);

  --gold-primary: #d4a843;
  --gold-light: #f0d078;
  --gold-dark: #a07828;
  --gold-gradient: linear-gradient(135deg, #d4a843 0%, #f0d078 50%, #d4a843 100%);
  --gold-gradient-hover: linear-gradient(135deg, #f0d078 0%, #ffe8a0 50%, #f0d078 100%);
  --gold-glow: 0 0 20px rgba(212, 168, 67, 0.3), 0 0 40px rgba(212, 168, 67, 0.1);

  --green-accent: #2ecc71;
  --green-glow: 0 0 20px rgba(46, 204, 113, 0.3);

  --red-accent: #e74c3c;
  --red-glow: 0 0 20px rgba(231, 76, 60, 0.3);

  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-gold: #d4a843;
  --text-muted: #555555;

  --border-color: rgba(212, 168, 67, 0.15);
  --border-gold: rgba(212, 168, 67, 0.4);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-elevated: 0 16px 48px rgba(0, 0, 0, 0.7), 0 4px 16px rgba(0, 0, 0, 0.5);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========== Background Effects ========== */
.bg-effects {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-effects::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(212, 168, 67, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(212, 168, 67, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(46, 204, 113, 0.02) 0%, transparent 40%);
  animation: bgShift 20s ease-in-out infinite alternate;
}

.bg-effects::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(212, 168, 67, 0.008) 2px,
      rgba(212, 168, 67, 0.008) 4px
    );
}

@keyframes bgShift {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-2%, -2%) rotate(1deg); }
}

/* ========== Particle Dots ========== */
.particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold-primary);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 10s; }
.particle:nth-child(2) { left: 25%; top: 60%; animation-delay: 1.5s; animation-duration: 8s; }
.particle:nth-child(3) { left: 45%; top: 30%; animation-delay: 3s; animation-duration: 12s; }
.particle:nth-child(4) { left: 65%; top: 70%; animation-delay: 4.5s; animation-duration: 9s; }
.particle:nth-child(5) { left: 80%; top: 40%; animation-delay: 2s; animation-duration: 11s; }
.particle:nth-child(6) { left: 90%; top: 15%; animation-delay: 5s; animation-duration: 7s; }
.particle:nth-child(7) { left: 15%; top: 85%; animation-delay: 6s; animation-duration: 10s; }
.particle:nth-child(8) { left: 55%; top: 90%; animation-delay: 3.5s; animation-duration: 9s; }

@keyframes particleFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
  20% { opacity: 0.6; }
  50% { opacity: 0.3; transform: translateY(-40px) scale(1.5); }
  80% { opacity: 0.5; }
}

/* ========== Main Layout ========== */
.app-container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* ========== Header / Brand ========== */
.brand-header {
  text-align: center;
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease-out;
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.logo-img {
  width: 220px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(212, 168, 67, 0.35));
  transition: var(--transition-normal);
}

.logo-img:hover {
  filter: drop-shadow(0 0 20px rgba(212, 168, 67, 0.5));
  transform: scale(1.03);
}

/* Screen reader only - hidden visually */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand-tagline {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ========== Stepper ========== */
.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease-out 0.15s both;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  border: 2px solid var(--border-color);
  background: var(--bg-secondary);
  color: var(--text-muted);
  transition: var(--transition-normal);
  position: relative;
}

.step-circle::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: var(--transition-normal);
}

.step-item.active .step-circle {
  background: var(--gold-gradient);
  color: #0a0a0a;
  border-color: var(--gold-primary);
  box-shadow: var(--gold-glow);
}

.step-item.active .step-circle::after {
  border-color: rgba(212, 168, 67, 0.2);
}

.step-item.completed .step-circle {
  background: var(--green-accent);
  border-color: var(--green-accent);
  color: #fff;
  box-shadow: var(--green-glow);
}

.step-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-normal);
  white-space: nowrap;
}

.step-item.active .step-label {
  color: var(--gold-primary);
}

.step-item.completed .step-label {
  color: var(--green-accent);
}

.step-line {
  width: 48px;
  height: 2px;
  background: var(--border-color);
  margin: 0 8px;
  transition: var(--transition-normal);
  border-radius: 1px;
}

.step-line.active {
  background: var(--gold-primary);
  box-shadow: 0 0 8px rgba(212, 168, 67, 0.3);
}

.step-line.completed {
  background: var(--green-accent);
}

/* ========== Card ========== */
.form-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212, 168, 67, 0.5) 30%,
    rgba(240, 208, 120, 0.8) 50%,
    rgba(212, 168, 67, 0.5) 70%,
    transparent 100%
  );
}

.form-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(212, 168, 67, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* ========== Form Steps ========== */
.form-step {
  display: none;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.form-step.active {
  display: flex;
  animation: stepFadeIn 0.45s ease-out;
}

@keyframes stepFadeIn {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  text-align: center;
}

.step-subtitle {
  font-size: 0.88rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.5;
  margin-top: -12px;
}

/* ========== Form Elements ========== */
.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: var(--transition-fast);
  pointer-events: none;
}

.form-input {
  width: 100%;
  padding: 16px 16px 16px 48px;
  background: var(--bg-input);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  outline: none;
  transition: var(--transition-normal);
}

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

.form-input:hover {
  border-color: rgba(212, 168, 67, 0.3);
  background: var(--bg-input-focus);
}

.form-input:focus {
  border-color: var(--gold-primary);
  background: var(--bg-input-focus);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1), inset 0 0 0 1px rgba(212, 168, 67, 0.1);
}

.form-input:focus ~ .input-icon,
.form-input:not(:placeholder-shown) ~ .input-icon {
  color: var(--gold-primary);
}

.form-input.iban-input {
  font-family: 'Inter', monospace;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.input-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.input-error {
  font-size: 0.78rem;
  color: var(--red-accent);
  display: none;
  align-items: center;
  gap: 6px;
  animation: shakeError 0.4s ease-out;
}

.input-error.visible {
  display: flex;
}

@keyframes shakeError {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

.form-input.error {
  border-color: var(--red-accent);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* ========== Name Badge (IBAN sayfasında) ========== */
.user-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: var(--radius-md);
}

.user-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #0a0a0a;
  flex-shrink: 0;
}

.user-badge-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-light);
}

.user-badge-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========== Buttons ========== */
.btn-primary {
  width: 100%;
  padding: 16px 32px;
  background: var(--gold-gradient);
  border: none;
  border-radius: var(--radius-md);
  color: #0a0a0a;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  background: var(--gold-gradient-hover);
  box-shadow: var(--gold-glow);
  transform: translateY(-2px);
}

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

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

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-primary:disabled::before {
  display: none;
}

.btn-secondary {
  width: 100%;
  padding: 14px 24px;
  background: transparent;
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-md);
  color: var(--gold-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-secondary:hover {
  background: rgba(212, 168, 67, 0.08);
  border-color: var(--gold-primary);
}

/* Loading state */
.btn-loading {
  pointer-events: none;
  position: relative;
}

.btn-loading .btn-text {
  visibility: hidden;
}

.btn-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border: 3px solid rgba(10, 10, 10, 0.3);
  border-top-color: #0a0a0a;
  border-radius: 50%;
  animation: btnSpin 0.6s linear infinite;
}

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

/* ========== Step 3 States ========== */
.status-container {
  text-align: center;
  padding: 10px 0;
}

.status-container.hidden {
  display: none;
}

/* --- Pending / Bekleme --- */
.pending-icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pending-spinner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(212, 168, 67, 0.15);
  border-top-color: var(--gold-primary);
  border-right-color: var(--gold-primary);
  animation: pendingSpin 1.2s linear infinite;
}

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

.pending-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  animation: pendingPulse 2s ease-in-out infinite;
}

@keyframes pendingPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.pending-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-primary);
  margin-bottom: 8px;
}

.pending-message {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.pending-sub {
  font-size: 0.78rem;
  color: var(--gold-primary);
  font-weight: 600;
  animation: pendingPulse 2s ease-in-out infinite;
}

.pending-display {
  background: rgba(212, 168, 67, 0.08) !important;
  border-color: rgba(212, 168, 67, 0.2) !important;
}

.pending-display .iban-display-value {
  color: var(--gold-primary) !important;
}

.pending-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}

.pending-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-primary);
  animation: dotBounce 1.4s ease-in-out infinite;
}

.pending-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.pending-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotBounce {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1.2); }
}

/* --- Approved / Onaylandı --- */
.success-icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  position: relative;
}

.success-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--green-glow);
  animation: successPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-circle svg {
  width: 42px;
  height: 42px;
  color: #fff;
  animation: checkDraw 0.4s ease-out 0.3s both;
}

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

@keyframes checkDraw {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

.success-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(46, 204, 113, 0.3);
  animation: ringPulse 2s ease-out infinite;
}

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

.success-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-accent);
  margin-bottom: 8px;
}

.success-message {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* --- Rejected / Reddedildi --- */
.rejected-icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  position: relative;
}

.rejected-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--red-glow);
  animation: successPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.rejected-circle svg {
  width: 42px;
  height: 42px;
  color: #fff;
  animation: checkDraw 0.4s ease-out 0.3s both;
}

.rejected-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(231, 76, 60, 0.3);
  animation: ringPulse 2s ease-out infinite;
}

.rejected-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--red-accent);
  margin-bottom: 8px;
}

.rejected-message {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* IBAN Display */
.iban-display {
  padding: 16px 20px;
  background: rgba(46, 204, 113, 0.08);
  border: 1px solid rgba(46, 204, 113, 0.2);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.iban-display-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.iban-display-value {
  font-family: 'Inter', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-accent);
  letter-spacing: 2.5px;
}

/* ========== Footer ========== */
.app-footer {
  margin-top: 32px;
  text-align: center;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.footer-text {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.footer-text a {
  color: var(--gold-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

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

/* ========== Security Badge ========== */
.security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  padding: 8px 16px;
  background: rgba(46, 204, 113, 0.06);
  border: 1px solid rgba(46, 204, 113, 0.1);
  border-radius: var(--radius-sm);
}

.security-badge svg {
  width: 14px;
  height: 14px;
  color: var(--green-accent);
}

.security-badge span {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(46, 204, 113, 0.8);
  letter-spacing: 0.5px;
}

/* ========== Toast Notification ========== */
.toast {
  position: fixed;
  top: 24px;
  right: 24px;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 1000;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.68, -0.1, 0.265, 1.2);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 360px;
}

.toast.show {
  transform: translateX(0);
}

.toast.success {
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: var(--green-accent);
  backdrop-filter: blur(10px);
}

.toast.error {
  background: rgba(231, 76, 60, 0.15);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: var(--red-accent);
  backdrop-filter: blur(10px);
}

/* ========== Animations ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

/* ========== Responsive ========== */
@media (max-width: 520px) {
  .app-container {
    padding: 16px;
    justify-content: flex-start;
    padding-top: 40px;
  }

  .brand-name {
    font-size: 1.8rem;
    letter-spacing: 3px;
  }

  .brand-tagline {
    font-size: 0.65rem;
    letter-spacing: 4px;
  }

  .logo-img {
    width: 170px;
  }

  .form-card {
    padding: 28px 22px;
    border-radius: var(--radius-lg);
  }

  .step-title {
    font-size: 1.25rem;
  }

  .step-label {
    display: none;
  }

  .step-line {
    width: 32px;
  }

  .stepper {
    margin-bottom: 24px;
  }

  .brand-header {
    margin-bottom: 24px;
  }

  .form-input {
    padding: 14px 14px 14px 44px;
    font-size: 0.95rem;
  }

  .btn-primary {
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .toast {
    top: 12px;
    right: 12px;
    left: 12px;
    max-width: none;
  }
}

@media (max-width: 360px) {
  .brand-name {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .logo-img {
    width: 140px;
  }

  .form-card {
    padding: 24px 18px;
  }

  .step-circle {
    width: 32px;
    height: 32px;
    font-size: 0.78rem;
  }
}

/* ========== Scrollbar ========== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(212, 168, 67, 0.3);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 168, 67, 0.5);
}

/* ========== Selection ========== */
::selection {
  background: rgba(212, 168, 67, 0.3);
  color: var(--text-primary);
}

/* ========== Toggle Password ========== */
.toggle-password {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  border-radius: 4px;
}

.toggle-password:hover {
  color: var(--gold-primary);
}

/* ========== WhatsApp Link ========== */
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: var(--radius-md);
  color: #25d366;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-normal);
  margin-bottom: 14px;
}

.whatsapp-link:hover {
  background: rgba(37, 211, 102, 0.18);
  border-color: rgba(37, 211, 102, 0.45);
  box-shadow: 0 0 16px rgba(37, 211, 102, 0.2);
  transform: translateY(-2px);
}

.whatsapp-link svg {
  flex-shrink: 0;
}
