/* ═══════════════════════════════════════════════════════
   DESIGN TOKENS
════════════════════════════════════════════════════════ */
:root {
  --ink: #060c1a;
  --ink-mid: #0d1829;
  --ink-soft: #1a2540;
  --blue: #2563eb;
  --blue-hi: #3b82f6;
  --blue-deep: #1e3a8a;
  --sky: #0ea5e9;
  --white: #ffffff;
  --off: #f6f8fc;
  --line: #e2e8f0;
  --line-dark: rgba(255, 255, 255, 0.07);
  --success: #22c55e;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-pill: 999px;
  --trans: 0.22s cubic-bezier(0.4, 0, 0.2, 1);

  /* Type scale */
  --text-xs: 11px;
  --text-sm: 13px;
  --text-base: 15px;
  --text-md: 17px;
  --text-lg: 22px;
  --text-xl: 32px;

  /* Modal/legacy tokens */
  --navy: #0a2540;
  --navy-mid: #1a3a5c;
  --teal: #00b4a0;
  --teal-light: #e6f7f0;
  --text: #1e293b;
  --text-mid: #475569;
  --text-light: #64748b;
  --border: #e2e8f0;
  --bg-light: #f1f5f9;
  --bg-gray: #f8fafc;
  --shadow-card: 0 10px 40px -12px rgba(15, 23, 42, 0.14);
  --radius-card: 18px;
  --radius-btn: 50px;
  --btn-gradient: linear-gradient(90deg, #4ca1ea 0%, #173e73 100%);
  --blue-bright: #0066ff;
}

html {
  scroll-behavior: smooth;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════
   REDUCED MOTION
════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ═══════════════════════════════════════════════════════
   SCROLL ANIMATIONS
════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--line-dark);
  transition: background var(--trans);
}
nav.scrolled {
  background: rgba(15, 23, 42, 0.97);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(140deg, #2563eb, #1e3a8a);
  display: grid;
  place-items: center;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 4px 12px rgba(37, 99, 235, 0.4);
}
.brand-text {
  line-height: 1.2;
}
.nav-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.brand-name {
  font-size: 14px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.2px;
}

.nav-center {
  display: flex;
  gap: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-center a {
  padding: 7px 16px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  border-radius: 8px;
  transition: all var(--trans);
  white-space: nowrap;
}
.nav-center a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

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

.status-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: var(--r-pill);
  font-size: var(--text-xs);
  font-weight: 700;
  color: #86efac;
  white-space: nowrap;
}
.status-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

.hamburger {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--trans);
  flex-shrink: 0;
}
.hamburger:hover {
  border-color: rgba(255, 255, 255, 0.32);
}

/* ═══════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
/*first AFTER — fix: removed min-height so hero shrinks to content,
   background image no longer bleeds into empty space */
.hero {
  padding: 64px 0 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/rdc-background.jpg");
  background-size: cover;
  background-position: center 30%;
}
/* AFTER second */
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 40px 72px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  flex: 1; /* fix: fill available hero height */
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 23, 42, 0.9) 0%,
    rgba(30, 41, 59, 0.84) 45%,
    rgba(15, 23, 42, 0.78) 100%
  );
}

.hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-grad-1 {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.14) 0%,
    transparent 65%
  );
  top: -300px;
  left: -200px;
}
.hero-grad-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.08) 0%,
    transparent 65%
  );
  bottom: -100px;
  right: 100px;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 40px 72px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* LEFT: HERO TEXT */
.hero-text {
  display: flex;
  flex-direction: column;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(37, 99, 235, 0.38);
  color: #93c5fd;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 24px;
  width: fit-content;
}
.hero-eyebrow-dot {
  width: 5px;
  height: 5px;
  background: var(--blue-hi);
  border-radius: 50%;
}

h1 {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: clamp(-1.2px, -0.04em, -2.5px);
  color: white;
  margin-bottom: 22px;
}
h1 em {
  font-style: normal;
  background: linear-gradient(120deg, #60a5fa 0%, #a5f3fc 60%, #60a5fa 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  to {
    background-position: 200% center;
  }
}

.hero-desc {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-benefits {
  list-style: none;
  margin-bottom: 36px;
}
.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 13px;
}
.benefit-ico {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--r-pill);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  width: fit-content;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* LOGIN CARD */
.login-card {
  background: rgba(255, 255, 255, 0.99);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.38),
    0 8px 24px rgba(0, 0, 0, 0.18);
  max-width: 480px;
  width: 100%;
}
.card-body {
  padding: 32px 28px;
}

.card-portal-badge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f6f8fc;
  border: 1px solid #e8edf4;
  border-radius: 12px;
  padding: 10px 14px;
  margin-top: 16px;
  margin-bottom: 20px;
}
.card-portal-label {
  font-size: var(--text-xs);
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.card-portal-status {
  font-size: var(--text-sm);
  font-weight: 700;
  color: #0f172a;
}
.secure-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #dcfce7;
  color: #16a34a;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: var(--text-xs);
  font-weight: 800;
}

.card-heading {
  font-size: var(--text-lg);
  font-weight: 800;
  color: #0a0f1e;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}
.card-sub {
  font-size: var(--text-sm);
  color: #64748b;
  margin-top: 0;
  margin-bottom: 20px;
}

.success-flash {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: #dcfce7;
  color: #15803d;
  border-radius: 10px;
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: 14px;
}

.f-group {
  margin-bottom: 16px;
}
.f-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 800;
  color: #475569;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.f-input {
  width: 100%;
  height: 44px;
  border: 1.5px solid #dde3ec;
  border-radius: 10px;
  padding: 0 14px;
  font-size: 14px;
  font-family: inherit;
  color: #0a0f1e;
  background: white;
  transition:
    border-color var(--trans),
    box-shadow var(--trans);
  -webkit-appearance: none;
}
.f-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
  outline: none;
}
.f-input::placeholder {
  color: #b0bac6;
}

.pw-wrap {
  position: relative;
}
.pw-eye {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #94a3b8;
  padding: 3px;
  border-radius: 5px;
  transition: color var(--trans);
}
.pw-eye:hover {
  color: #475569;
}

.row-extras {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-sm);
  margin: 8px 0 16px;
  gap: 8px;
  flex-wrap: wrap;
}
.row-extras label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #64748b;
  font-weight: 500;
  cursor: pointer;
}
.row-extras a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}
.row-extras a:hover {
  text-decoration: underline;
}

.btn-main {
  width: 100%;
  height: 46px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow:
    0 4px 16px rgba(37, 99, 235, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}
.btn-main::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.22),
    transparent
  );
  transition: left 0.5s;
}
.btn-main:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
}
.btn-main:hover::after {
  left: 250%;
}
.btn-main:active {
  transform: translateY(0);
}
.btn-main.loading {
  opacity: 0.8;
  pointer-events: none;
}
.btn-main .spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
}
.btn-main.loading .btn-label {
  display: none;
}
.btn-main.loading .spinner {
  display: block;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.divider-or {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
  color: #b0bac6;
  font-size: var(--text-xs);
  font-weight: 700;
}
.divider-or::before,
.divider-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e8edf4;
}

.btn-ghost {
  width: 100%;
  height: 44px;
  background: white;
  color: #1e293b;
  border: 1.5px solid #dde3ec;
  border-radius: 10px;
  font-size: var(--text-sm);
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--trans);
}
.btn-ghost:hover {
  background: #f6f8fc;
  border-color: #b0bac6;
  transform: translateY(-1px);
}

/* STATS BAR */
.stats-bar {
  border-top: 1px solid var(--line-dark);
  background: rgba(4, 8, 20, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0;
  position: relative;
  z-index: 2;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.stats-inner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 6px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  flex: 1 1 auto;
  justify-content: center;
}
.stat-item:last-child {
  border-right: none;
}
.stat-icon {
  color: var(--blue-hi);
  flex-shrink: 0;
}
.stat-val {
  font-size: 15px;
  font-weight: 900;
  color: white;
  line-height: 1.1;
}
.stat-lbl {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 500;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════════════ */
.how-section {
  padding: 80px 40px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.how-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #dde8f8 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.28;
  pointer-events: none;
}

.how-main {
  max-width: 1180px;
  margin: 0 auto;
}
.how-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 56px;
  align-items: start;
}

/* LEFT DARK CARD */
.how-info-card {
  background: #0d1829;
  border-radius: 28px;
  padding: 44px 40px 40px;
  box-shadow:
    0 20px 60px rgba(13, 24, 41, 0.22),
    0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 84px;
}
.how-info-card .s-label {
  color: #60a5fa;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.how-info-card .s-label::before {
  content: "";
  width: 22px;
  height: 2.5px;
  background: #3b82f6;
  border-radius: 2px;
}
.how-info-card h2 {
  font-size: 32px;
  line-height: 1.08;
  margin-bottom: 18px;
  color: white;
  letter-spacing: -1.2px;
}
.how-info-card h2 .blue-accent {
  color: #60a5fa;
  font-weight: 900;
}
.how-info-card .how-desc {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 28px;
}
.authorized-label {
  font-size: var(--text-xs);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Brand pills */
.brand-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px 6px 8px;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 9999px;
  font-size: var(--text-sm);
  font-weight: 700;
  color: #e2e8f0;
  transition: all 0.2s ease;
}
.brand-pill:hover {
  background: #1e40af;
  border-color: #3b82f6;
  color: white;
}
.brand-letter {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 900;
  color: white;
  flex-shrink: 0;
}
.brand-letter.epson {
  background: #0066b3;
}
.brand-letter.canon {
  background: #ed1c24;
}
.brand-letter.asus {
  background: #000000;
}
.brand-letter.lenovo {
  background: #e2231a;
}
.brand-letter.hik {
  background: #00a0e3;
}

/* RIGHT TIMELINE */
.how-timeline {
  position: relative;
  padding-top: 8px;
}
.timeline-line {
  position: absolute;
  left: 27px;
  top: 48px;
  bottom: 48px;
  width: 3px;
  background: linear-gradient(to bottom, #2563eb, #60a5fa);
  border-radius: 999px;
  z-index: 0;
}

.step-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.step-row:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 54px;
  height: 54px;
  min-width: 54px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: white;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow:
    0 0 0 8px #eff6ff,
    0 8px 24px rgba(37, 99, 235, 0.35);
  z-index: 2;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.step-row:hover .step-number {
  transform: scale(1.08);
  box-shadow:
    0 0 0 10px #dbeafe,
    0 10px 28px rgba(37, 99, 235, 0.45);
}

.step-card-new {
  flex: 1;
  background: white;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow:
    0 4px 20px rgba(15, 23, 42, 0.06),
    0 1px 4px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all 0.25s ease;
}
.step-row:hover .step-card-new {
  border-color: #93c5fd;
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.12);
  transform: translateY(-3px);
}

.step-content {
  flex: 1;
}
.step-title-new {
  font-size: var(--text-base);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}
.step-desc-new {
  font-size: var(--text-sm);
  color: #475569;
  line-height: 1.6;
}

.step-icon-right {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #2563eb;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.step-row:hover .step-icon-right {
  background: #dbeafe;
  border-color: #93c5fd;
}

/* ═══════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════════ */
.contact-section {
  padding: 80px 40px;
  background: #0f1f3d;
  position: relative;
  overflow: hidden;
}
.contact-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.12) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  opacity: 0.18;
  pointer-events: none;
}
.contact-glow {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.contact-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}
.contact-header h2 {
  color: white;
  font-size: var(--text-xl);
  font-weight: 900;
  letter-spacing: -1.2px;
  margin-bottom: 6px;
}
.contact-sub {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
}

.s-label-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 14px;
  justify-content: center;
}

.contact-grid-compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-card-small {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 16px 18px;
  text-align: center;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-card-small:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: #e0f0ff;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  color: #2563eb;
  box-shadow: 0 3px 10px rgba(37, 99, 235, 0.15);
}

.contact-label {
  font-size: var(--text-xs);
  font-weight: 800;
  color: #64748b;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-value {
  font-size: var(--text-sm);
  font-weight: 600;
  color: #334155;
  line-height: 1.4;
  margin-bottom: 10px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.contact-badge {
  display: inline-block;
  width: fit-content;
  font-size: var(--text-xs);
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.contact-badge.viber {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.contact-btn {
  display: inline-block;
  padding: 7px 18px;
  background: #2563eb;
  color: white;
  font-size: var(--text-xs);
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: auto;
  border: 2px solid #2563eb;
}
.contact-btn:hover {
  background: #1d4ed8;
  color: white;
  border-color: #1d4ed8;
  transform: translateY(-1px);
}

.contact-card-small.featured {
  border-color: #2563eb;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.18);
}

.contact-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 28px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
}

/* ═══════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════ */
.faq-section {
  padding: 80px 40px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}
.faq-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #d1ddf5 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.32;
  pointer-events: none;
}
.faq-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.faq-header {
  text-align: center;
  margin-bottom: 28px;
}
.faq-header h2 {
  color: var(--ink);
  font-size: var(--text-xl);
  font-weight: 900;
  letter-spacing: -1.2px;
}
.faq-s-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.faq-s-label::before {
  content: "";
  width: 22px;
  height: 2.5px;
  background: currentColor;
  border-radius: 2px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.acc-item {
  background: white;
  border: 2px solid #cbd5e1;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}
.acc-item.open {
  border-color: #2563eb;
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.18);
  background: #f8fafc;
}
.acc-trigger {
  width: 100%;
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  gap: 16px;
}
.acc-arrow {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: #f0f4ff;
  border: 1px solid #dbeafe;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--blue);
  transition: all 0.25s;
}
.acc-item.open .acc-arrow {
  background: var(--blue);
  color: white;
  transform: rotate(180deg);
}
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 24px;
  color: #475569;
  font-size: var(--text-base);
  line-height: 1.85;
}
.acc-body-inner {
  padding: 4px 0 22px;
  border-top: 1px solid #f1f5f9;
}
.acc-item.open .acc-body {
  max-height: 300px;
}

/* ═══════════════════════════════════════════════════════
   OFFICE / LOCAL SUPPORT
════════════════════════════════════════════════════════ */
.office-section {
  padding: 80px 40px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}
.office-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.office-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  gap: 24px;
  flex-wrap: wrap;
}
.office-s-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 12px;
}
.office-s-label::before {
  content: "";
  width: 22px;
  height: 2.5px;
  background: currentColor;
  border-radius: 2px;
}
.office-top h2 {
  font-size: var(--text-xl);
  line-height: 1.1;
  margin-bottom: 12px;
  color: #0f172a;
  font-weight: 900;
  letter-spacing: -1.2px;
}
.office-top h2 span {
  color: #1e3a8a;
  font-weight: 900;
}

.office-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 20px;
  align-items: start;
}

.info-card {
  background: rgba(255, 255, 255, 0.97);
  border: none;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.12);
}
.info-card-top {
  padding: 22px 24px 18px;
  background: #1e3a8a;
}
.info-card-co {
  font-size: var(--text-xs);
  font-weight: 900;
  color: #93c5fd;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.info-card-name {
  font-size: var(--text-md);
  font-weight: 800;
  color: white;
  letter-spacing: -0.2px;
}
.info-card-body {
  padding: 18px 24px;
}
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: var(--text-sm);
}
.info-row:last-child {
  border-bottom: none;
}
.info-ico {
  color: var(--blue-hi);
  margin-top: 2px;
  flex-shrink: 0;
}
.info-key {
  font-weight: 700;
  color: var(--ink);
  font-size: 12px;
  margin-bottom: 1px;
}
.info-val {
  color: #475569;
  line-height: 1.6;
}
.info-link {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}
.info-link:hover {
  text-decoration: underline;
}
.hours-row {
  margin: 0 24px 20px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hours-day {
  font-size: var(--text-sm);
  font-weight: 600;
  color: #166534;
}
.hours-time {
  font-size: var(--text-sm);
  font-weight: 800;
  color: #15803d;
}

.map-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.28);
}
.map-header {
  padding: 18px 22px;
  background: #1e3a8a;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.map-label {
  font-size: var(--text-xs);
  font-weight: 900;
  color: #93c5fd;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.map-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #dbeafe;
  text-decoration: none;
  transition: color var(--trans);
}
.map-link:hover {
  color: #ffffff;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
footer {
  background: #040912;
  padding: 64px 40px 36px;
  position: relative;
  overflow: hidden;
}
.footer-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.footer-glow {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.09) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 52px;
  position: relative;
  z-index: 1;
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(140deg, #2563eb, #1e3a8a);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.footer-mark img,
.footer-mark .footer-brand-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
  display: block;
}
.footer-brand-name {
  font-size: var(--text-base);
  font-weight: 800;
  color: white;
}
.footer-brand-sub {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
}
.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
}
.footer-quote {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.38);
  font-style: italic;
  line-height: 1.75;
  margin-top: 14px;
}
.footer-certs {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.22);
  border-radius: var(--r-pill);
  font-size: var(--text-xs);
  color: #93c5fd;
}
.footer-connect {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-weight: 700;
}
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 36px 0 26px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  max-width: 1180px;
  margin: 0 auto;
}
.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: var(--text-sm);
  margin-bottom: 6px;
  transition: color 0.2s ease;
}
.footer-link:hover {
  color: #93c5fd;
}
.footer-contact-item {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: 6px;
}

/* SHARED SECTION LABEL */
.s-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.s-label::before {
  content: "";
  width: 22px;
  height: 2.5px;
  background: currentColor;
  border-radius: 2px;
}

/* BACK TO TOP */
#btt {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: white;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.45);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.88);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#btt.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
#btt:hover {
  transform: translateY(-3px) scale(1.06);
}

/* ═══════════════════════════════════════════════════════
   ERROR & SUCCESS BANNERS (login card)
════════════════════════════════════════════════════════ */
.error-banner {
  display: none;
  align-items: flex-start;
  gap: 10px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 18px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
  animation: fadeInDown 0.2s ease;
}
.error-banner svg {
  flex-shrink: 0;
  margin-top: 1px;
  stroke: #b91c1c;
}

.success-banner {
  display: none;
  background: #e6f4ea;
  color: #137333;
  padding: 13px 16px;
  border-radius: 8px;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 24px;
}
.success-banner.visible {
  display: flex;
}

/* ═══════════════════════════════════════════════════════
   REGISTRATION MODAL
════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 37, 64, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  animation: overlayIn 0.2s ease;
}
.modal-overlay[hidden] {
  display: none;
}

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

.modal-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 44px 40px 36px;
  width: 100%;
  max-width: 460px;
  max-height: 92vh;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.45);
  animation: cardIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  /* Custom scrollbar */
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}
.modal-card::-webkit-scrollbar {
  width: 5px;
}
.modal-card::-webkit-scrollbar-track {
  background: transparent;
}
.modal-card::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 99px;
}
.modal-card::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.modal-close:hover {
  background: #e2e8f0;
}
.modal-close svg {
  width: 16px;
  height: 16px;
  stroke: #475569;
  fill: none;
  stroke-width: 2.2;
}

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

.required-star {
  color: #dc2626;
  margin-left: 2px;
}
.optional-tag {
  font-weight: 400;
  color: #64748b;
  font-size: 11px;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 4px;
}

.modal-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #f1f5f9;
  border-left: 3px solid #173e73;
  border-radius: 0 8px 8px 0;
  padding: 10px 14px;
  font-size: 12px;
  color: #334155;
  font-weight: 500;
  margin-bottom: 22px;
  line-height: 1.5;
}
.modal-note svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 1px;
  stroke: #173e73;
  fill: none;
  stroke-width: 2;
}

.modal-signin-link {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #475569;
  font-weight: 500;
}
.modal-signin-link a {
  color: #173e73;
  font-weight: 700;
  text-decoration: none;
}
.modal-signin-link a:hover {
  text-decoration: underline;
}

/* Account Type Tabs */
.account-type-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  overflow: hidden;
  background: #eaeff4;
}
.account-type-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border: none;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s;
}
.account-type-tab:first-child {
  border-right: 1px solid #d1d5db;
}
.account-type-tab svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.account-type-tab.active {
  background: #173e73;
  color: #fff;
}
.account-type-tab:not(.active):hover {
  background: rgba(23, 62, 115, 0.06);
  color: #173e73;
}

/* Form divider */
.form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 14px;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-divider::before,
.form-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #d1d5db;
}

/* Modal form fields */
.form-group {
  margin-bottom: 18px;
}
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}
.input-wrap {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #1e293b;
  background: #fff;
  transition: all 0.2s;
  outline: none;
}
.form-input::placeholder {
  color: #64748b;
}
.form-input:focus {
  border-color: #4ca1ea;
  box-shadow: 0 0 0 3px rgba(76, 161, 234, 0.2);
  background: #fff;
}
.form-input.pw-field {
  padding-right: 44px;
}
.form-input.has-error {
  border-color: #dc2626;
  background: #fef2f2;
}

.pw-toggle {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 3px;
  color: #64748b;
  display: flex;
  align-items: center;
}
.pw-toggle:hover {
  color: #0f172a;
}
.pw-toggle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
}

.field-error {
  display: none;
  font-size: 11.5px;
  color: #dc2626;
  margin-top: 5px;
  font-weight: 500;
}
.field-error.visible {
  display: block;
}

/* Modal buttons */
.btn-primary {
  width: 100%;
  background: var(--btn-gradient);
  color: #fff;
  border: none;
  padding: 15px 20px;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(23, 62, 115, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(23, 62, 115, 0.4);
}
.btn-primary svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  width: 18px;
  height: 18px;
}
.btn-primary.loading {
  opacity: 0.8;
  pointer-events: none;
}
.btn-primary .spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
}
.btn-primary.loading .btn-label {
  display: none;
}
.btn-primary.loading .spinner {
  display: block;
}

.btn-secondary {
  width: 100%;
  background: #eaeff4;
  color: #173e73;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 14px 20px;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-secondary:hover {
  background: #dfe6ee;
}
.btn-secondary.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
  width: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ═══════════════════════════════════════════════════════
   FORGOT PASSWORD MODAL — Multi-step flow
════════════════════════════════════════════════════════ */
.fp-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 28px;
}

.fp-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.fp-step.active {
  background: var(--btn-gradient);
  color: #fff;
  box-shadow: 0 2px 8px rgba(23, 62, 115, 0.3);
}
.fp-step.completed {
  background: #137333;
  color: #fff;
  font-size: 13px;
}

.fp-step-bar {
  width: 40px;
  height: 3px;
  background: #e2e8f0;
  margin: 0 4px;
  border-radius: 2px;
  transition: background 0.3s ease;
}
.fp-step-bar.filled {
  background: #137333;
}

/* OTP Input */
.otp-container {
  margin-bottom: 4px;
}
.otp-input {
  text-align: center;
  font-size: 28px !important;
  font-weight: 700;
  letter-spacing: 12px;
  padding: 16px 20px !important;
  font-family: "Courier New", monospace !important;
  caret-color: var(--blue-bright);
}
.otp-input::placeholder {
  font-size: 28px;
  letter-spacing: 12px;
  color: #cbd5e1;
  font-weight: 400;
}

.otp-expired-msg {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 13px;
  color: #dc2626;
  font-weight: 500;
  animation: fadeInDown 0.2s ease;
}

.link-btn {
  background: none;
  border: none;
  color: var(--blue, #0052cc);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  font-family: inherit;
}
.link-btn:hover {
  color: #003d99;
}

/* Password Strength */
.pw-strength {
  height: 4px;
  background: #e2e8f0;
  border-radius: 4px;
  margin-top: 8px;
  overflow: hidden;
}
.pw-strength-bar {
  height: 100%;
  width: 0;
  border-radius: 4px;
  transition:
    width 0.3s ease,
    background 0.3s ease;
}
.pw-strength-bar.weak {
  background: #dc2626;
  width: 20% !important;
}
.pw-strength-bar.fair {
  background: #f97316;
  width: 40% !important;
}
.pw-strength-bar.good {
  background: #eab308;
  width: 60% !important;
}
.pw-strength-bar.strong {
  background: #22c55e;
  width: 80% !important;
}
.pw-strength-bar.very-strong {
  background: #16a34a;
  width: 100% !important;
}

/* Success Icon */
.fp-success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  background: #e6f4ea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fp-success-icon svg {
  width: 40px;
  height: 40px;
  stroke: #137333;
  fill: none;
  stroke-width: 2;
}

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

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — 900px
════════════════════════════════════════════════════════ */
/* fix: iPad Pro / Surface Pro 7 card column overflow */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr 380px;
    gap: 32px;
    padding: 72px 32px 60px;
  }

  .login-card {
    max-width: 380px;
  }
}
@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 70px 32px 56px;
  }
  .login-card {
    margin: 0 auto;
  }
  .hero-text {
    align-items: flex-start;
  }
  .hero-desc {
    max-width: 100%;
  }
  .hero-benefits li {
    justify-content: flex-start;
    margin-bottom: 10px;
  }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .how-info-card {
    position: static;
  }

  .office-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — 768px
════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  nav {
    padding: 0 20px;
  }

  .nav-center {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(6, 12, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 12px 16px;
    gap: 2px;
    transform: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  }
  .nav-center.open {
    display: flex;
  }
  .nav-center a {
    padding: 11px 16px;
    font-size: 15px;
    border-radius: 10px;
  }

  .nav-right .status-pill {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .hero-inner {
    padding: 40px 20px 44px;
    gap: 28px;
  }
  h1 {
    letter-spacing: -1.4px;
  }

  .how-section,
  .contact-section,
  .faq-section,
  .office-section {
    padding: 56px 20px;
  }

  .stats-bar {
    padding: 0;
  }
  .stats-inner {
    gap: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .stat-item {
    width: 50%;
    padding: 8px 6px;
    border-right: none;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .stat-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .contact-grid-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  footer {
    padding: 44px 20px 28px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-col:first-child {
    order: 2;
  }
  .footer-col:nth-child(2) {
    order: 0;
  }
  .footer-col:nth-child(3) {
    order: 1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: left;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — 480px
════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-inner {
    padding: 32px 16px 36px;
  }

  h1 {
    font-size: 27px;
    line-height: 1.12;
    letter-spacing: -1.6px;
    margin-bottom: 16px;
  }

  .how-section,
  .contact-section,
  .faq-section,
  .office-section {
    padding: 36px 16px;
  }

  .how-info-card {
    padding: 32px 24px;
  }
  .how-info-card h2 {
    font-size: 24px;
    line-height: 1.1;
  }

  .step-row {
    gap: 14px;
  }
  .step-number {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 15px;
  }
  .step-card-new {
    padding: 16px 18px;
  }

  .contact-grid-compact {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0;
    padding: 0 2px;
    gap: 10px;
  }
  .contact-card-small {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 14px 16px;
    gap: 12px;
  }
  .contact-card-small .contact-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .contact-card-small .contact-info-group {
    flex: 1;
    min-width: 0;
  }
  .contact-card-small .contact-label {
    font-size: 10px;
    letter-spacing: 0.5px;
  }
  .contact-card-small .contact-value {
    font-size: 13px;
    margin-bottom: 4px;
  }
  .contact-card-small .contact-badge {
    margin-bottom: 0;
    margin-right: 6px;
    font-size: 10px;
  }
  .contact-card-small .contact-btn {
    margin-top: 0;
    flex-shrink: 0;
    padding: 8px 16px;
    font-size: 12px;
    min-height: 36px;
  }

  .acc-trigger {
    font-size: 14px;
    padding: 14px 18px;
  }

  .stats-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
  }
  .stat-item {
    width: 50%;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 8px 6px;
    gap: 4px;
    text-align: center;
  }
  .stat-item:nth-child(2n) {
    border-right: none;
  }
  .stat-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }
  .stat-val {
    font-size: 15px;
  }
  .stat-lbl {
    font-size: 9px;
  }

  .office-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .login-card {
    margin: 0 auto;
    max-width: 100%;
  }

  #btt {
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }

  .btn-main,
  .btn-ghost,
  .contact-btn,
  .acc-trigger {
    min-height: 44px;
  }
  .f-input {
    height: 48px;
    font-size: 15px;
  }

  nav,
  .hero,
  .contact-section,
  footer {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .card-body {
    padding: 24px 20px;
  }
  .f-group {
    margin-bottom: 16px;
  }
  .card-portal-status {
    font-size: 11px;
  }

  .modal-card {
    padding: 36px 24px 28px;
  }
}
