*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0a0e2e;
  --dark-blue: #0d1545;
  --mid-blue: #1a2580;
  --accent-blue: #2563eb;
  --bright-blue: #3b82f6;
  --light-purple: #a78bfa;
  --purple: #7c3aed;
  --white: #ffffff;
  --light-gray: #f0f4ff;
  --text-muted: #94a3b8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 46, 0.97);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  height: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  text-decoration: none;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #3b82f6, #7c3aed);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color .2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a.highlight {
  color: var(--bright-blue);
  font-weight: 600;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #0a0e2e 0%, #0d1545 40%, #1a1060 70%, #2d1b8a 100%);
  min-height: 580px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 60px 6vw 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 75% 50%, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 2;
}

.hero-left h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 20px;
}

.hero-left p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-primary {
  background: var(--accent-blue);
  color: #fff;
  border: none;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .15s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s, transform .15s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  border-color: #fff;
  transform: translateY(-1px);
}

.hero-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-checks li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-checks li::before {
  content: '✓';
  color: #22c55e;
  font-weight: 700;
}

.hero-domain {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-family: 'Manrope', monospace;
}

/* Phone mockup */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.phone-wrap {
  position: relative;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.phone {
  width: 220px;
  background: #111;
  border-radius: 36px;
  border: 8px solid #222;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}

.phone-screen {
  background: linear-gradient(160deg, #1e3a8a, #1e1b74);
  min-height: 400px;
  padding: 24px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-notch {
  width: 80px;
  height: 20px;
  background: #111;
  border-radius: 0 0 12px 12px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.profile-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  margin-top: 20px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.profile-avatar svg {
  width: 40px;
  height: 40px;
  fill: white;
}

.profile-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 2px;
}

.profile-title {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}

.phone-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone-action-row {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
}

.phone-action-row span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-socials {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.social-dot {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
}

/* ── FEATURES SECTION ── */
.features {
  background: #f5f7ff;
  padding: 80px 6vw;
}

.section-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  text-align: center;
  color: var(--navy);
  margin-bottom: 60px;
}

.features-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.phones-duo {
  display: flex;
  gap: -20px;
  position: relative;
  justify-content: center;
}

.phone-sm {
  width: 160px;
  background: #111;
  border-radius: 28px;
  border: 6px solid #222;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  position: relative;
}

.phone-sm:first-child {
  transform: rotate(-6deg) translateX(20px);
  z-index: 1;
}

.phone-sm:last-child {
  transform: rotate(3deg) translateX(-20px);
  z-index: 2;
}

.phone-sm-screen {
  background: linear-gradient(160deg, #1e3a8a, #1e1b74);
  padding: 16px 10px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qr-block {
  width: 90px;
  height: 90px;
  background: white;
  border-radius: 8px;
  margin: 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.qr-block svg {
  width: 100%;
  height: 100%;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.92rem;
}

.feat-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.feat-text strong {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
}

.feat-text span {
  display: block;
  font-size: 0.78rem;
  color: #6b7280;
  margin-top: 1px;
}

/* ── BRAND SECTION ── */
.brand-section {
  padding: 80px 6vw;
  background: #fff;
  text-align: center;
}

.brand-links-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.brand-device-mockup {
  width: 220px;
  background: #e8f0fe;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
}

.brand-device-mockup .mock-bar {
  height: 10px;
  border-radius: 4px;
  background: #bfdbfe;
  margin-bottom: 8px;
}

.brand-device-mockup .mock-bar.short {
  width: 60%;
}

.brand-device-mockup .mock-bar.shorter {
  width: 40%;
}

.brand-device-row {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.brand-device-row>div {
  height: 8px;
  border-radius: 4px;
  background: #bfdbfe;
  flex: 1;
}

.brand-domain-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.domain-item {
  font-size: 1.05rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
}

.domain-item strong {
  color: var(--navy);
  font-weight: 800;
}

.domain-item .domain-blue {
  color: #2563eb;
}

.domain-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  background: #dbeafe;
}

.brand-card-preview {
  width: 180px;
  background: #1e3a8a;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 8px 30px rgba(30, 58, 138, 0.3);
}

.brand-card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-card-avatar svg {
  width: 26px;
  height: 26px;
  fill: white;
}

.brand-card-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: #fff;
  text-align: center;
}

.brand-card-socials {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.brand-card-socials .social-sm {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  font-size: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}

/* ── HOW IT WORKS ── */
.how {
  background: #f5f7ff;
  padding: 60px 6vw;
}

.how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.how-step {
  text-align: center;
  max-width: 200px;
}

.how-icon {
  width: 64px;
  height: 64px;
  background: #e8f0fe;
  border-radius: 16px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.how-step h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.how-step p {
  font-size: 0.82rem;
  color: #6b7280;
}

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, #0a0e2e 0%, #0d1545 40%, #1a1060 70%, #2d1b8a 100%);
  padding: 80px 6vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
}

.cta-section h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 32px;
  position: relative;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.btn-outline-cta {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color .2s;
}

.btn-outline-cta:hover {
  border-color: #fff;
}

.btn-cta-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 28px 6vw;
  font-size: 0.78rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: #fff;
}

.emp-login {
  background: var(--accent-blue);
  color: #fff;
  border: none;
  padding: 9px 18px;
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-right {
    margin-top: 40px;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-checks li {
    justify-content: center;
  }

  .features-inner {
    grid-template-columns: 1fr;
  }

  .phones-duo {
    transform: scale(0.85);
  }

  .brand-links-wrap {
    flex-direction: column;
    align-items: center;
  }

  .how-steps {
    gap: 30px;
  }

  nav {
    padding: 0 4vw;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 0.8rem;
  }
}

@media (max-width: 560px) {
  .nav-links {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Employee portal page (employe.html) – scoped so index unchanged
   ═══════════════════════════════════════════════════════════════ */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-5px);
  }

  60% {
    transform: translateX(5px);
  }
}

@keyframes popIn {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

body.page-employe {
  --input-bg: rgba(255, 255, 255, 0.06);
  --input-border: rgba(255, 255, 255, 0.14);
  --input-focus: rgba(59, 130, 246, 0.5);
  --success: #22c55e;
  --error: #ef4444;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0a0e2e 0%, #0d1545 40%, #1a1060 70%, #2d1b8a 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--white);
  overflow-x: hidden;
}

body.page-employe::before,
body.page-employe::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

body.page-employe::before {
  width: 500px;
  height: 500px;
  background: rgba(124, 58, 237, 0.18);
  top: -100px;
  right: -100px;
}

body.page-employe::after {
  width: 400px;
  height: 400px;
  background: rgba(37, 99, 235, 0.15);
  bottom: -80px;
  left: -80px;
}

body.page-employe main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

body.page-employe .logo-icon svg {
  width: 26px;
  height: 26px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

body.page-employe .nav-back {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}

body.page-employe .nav-back:hover {
  color: #fff;
}

/* Employee auth card */
body.page-employe .auth-card {
  width: 100%;
  max-width: 460px;
  background: rgba(13, 21, 69, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px 36px;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
  animation: slideUp 0.45s ease;
}

body.page-employe .card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

body.page-employe .card-icon svg {
  width: 26px;
  height: 26px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

body.page-employe .card-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #fff;
}

body.page-employe .card-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
  line-height: 1.5;
}

body.page-employe .tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 28px;
  gap: 4px;
}

body.page-employe .tab-btn {
  flex: 1;
  padding: 9px;
  border: none;
  background: transparent;
  border-radius: 7px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background .2s, color .2s;
}

body.page-employe .tab-btn.active {
  background: var(--accent-blue);
  color: #fff;
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.4);
}

body.page-employe .form-panel {
  display: none;
}

body.page-employe .form-panel.active {
  display: block;
  animation: fadeIn .3s ease;
}

body.page-employe .form-group {
  margin-bottom: 16px;
}

body.page-employe .auth-card label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

body.page-employe .auth-card input {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
}

body.page-employe .auth-card input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

body.page-employe .auth-card input:focus {
  border-color: var(--bright-blue);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}

body.page-employe .auth-card input.error-field {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

body.page-employe .field-error {
  font-size: 0.75rem;
  color: var(--error);
  margin-top: 5px;
  display: none;
}

body.page-employe .field-error.show {
  display: block;
}

body.page-employe .pass-wrap {
  position: relative;
}

body.page-employe .pass-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.35);
  transition: color .2s;
  display: flex;
  align-items: center;
}

body.page-employe .pass-toggle:hover {
  color: rgba(255, 255, 255, 0.7);
}

body.page-employe .pass-toggle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

body.page-employe .divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.78rem;
}

body.page-employe .divider::before,
body.page-employe .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

body.page-employe .btn-gmail {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .15s;
  margin-bottom: 4px;
}

body.page-employe .btn-gmail:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

body.page-employe .gmail-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Employee page .btn-primary overrides */
body.page-employe .auth-card .btn-primary {
  width: 100%;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  padding: 13px;
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
  margin-top: 4px;
  position: relative;
  overflow: hidden;
}

body.page-employe .auth-card .btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.45);
}

body.page-employe .auth-card .btn-primary:active {
  transform: translateY(0);
}

body.page-employe .auth-card .btn-primary .spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin: 0 auto;
}

body.page-employe .auth-card .btn-primary.loading .btn-text {
  display: none;
}

body.page-employe .auth-card .btn-primary.loading .spinner {
  display: block;
}

body.page-employe .link-sm {
  display: block;
  text-align: right;
  font-size: 0.78rem;
  color: var(--bright-blue);
  text-decoration: none;
  margin-top: -6px;
  margin-bottom: 16px;
  transition: color .2s;
}

body.page-employe .link-sm:hover {
  color: #93c5fd;
}

body.page-employe .otp-panel {
  display: none;
  animation: slideUp 0.4s ease;
}

body.page-employe .otp-panel.active {
  display: block;
}

body.page-employe .otp-header {
  text-align: center;
  margin-bottom: 28px;
}

body.page-employe .otp-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

body.page-employe .otp-icon svg {
  width: 30px;
  height: 30px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
}

body.page-employe .otp-email-shown {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

body.page-employe .otp-email-shown strong {
  color: var(--bright-blue);
  font-weight: 600;
}

body.page-employe .otp-boxes {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 24px 0;
}

body.page-employe .otp-box {
  width: 50px;
  height: 56px;
  background: var(--input-bg);
  border: 1.5px solid var(--input-border);
  border-radius: 10px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  caret-color: var(--bright-blue);
}

body.page-employe .otp-box:focus {
  border-color: var(--bright-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}

body.page-employe .otp-box.filled {
  border-color: var(--bright-blue);
  background: rgba(37, 99, 235, 0.1);
}

body.page-employe .otp-box.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
  animation: shake 0.35s ease;
}

body.page-employe .otp-box.success {
  border-color: var(--success);
  background: rgba(34, 197, 94, 0.1);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

body.page-employe .resend-row {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 16px;
}

body.page-employe #resend-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--bright-blue);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0;
  margin-left: 4px;
  transition: color .2s;
}

body.page-employe #resend-btn:hover {
  color: #93c5fd;
}

body.page-employe #resend-btn:disabled {
  color: rgba(255, 255, 255, 0.25);
  cursor: default;
}

body.page-employe #countdown {
  color: rgba(255, 255, 255, 0.4);
}

body.page-employe .success-state {
  text-align: center;
  padding: 20px 0;
  display: none;
  animation: fadeIn .4s ease;
}

body.page-employe .success-state.active {
  display: block;
}

body.page-employe .success-circle {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.35);
  animation: popIn .4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

body.page-employe .success-circle svg {
  width: 34px;
  height: 34px;
  stroke: white;
  fill: none;
  stroke-width: 3;
}

body.page-employe .success-state h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}

body.page-employe .success-state p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
}

body.page-employe .card-footer-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 22px;
  line-height: 1.6;
}

body.page-employe .toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: rgba(13, 21, 69, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 0.85rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 999;
  backdrop-filter: blur(10px);
  transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity .3s ease;
  opacity: 0;
  white-space: nowrap;
}

body.page-employe .toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

body.page-employe .toast .toast-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 500px) {
  body.page-employe .auth-card {
    padding: 30px 20px;
    border-radius: 18px;
  }

  body.page-employe .otp-box {
    width: 42px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* ── HAMBURGER / MOBILE NAV ─────────────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.2s;
  flex-shrink: 0;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

/* Animated X when open */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10, 14, 46, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 0 18px;
    z-index: 99;
    animation: slideDown 0.25s ease;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 13px 24px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    transition: background 0.15s, color 0.15s;
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
  }

  .nav-links a.highlight {
    color: #60a5fa;
    font-weight: 600;
    background: rgba(37, 99, 235, 0.08);
  }

  .nav-links a.highlight:hover {
    background: rgba(37, 99, 235, 0.15);
  }

  /* Position nav relatively so dropdown is anchored */
  nav {
    position: sticky;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}