/* ============================================================
   NET BANK — Banking & Recovery — Design System
   Aesthetic: Modern American institutional banking.
   Palette: Deep navy + warm gold + ivory.
   ============================================================ */

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

:root {
  /* Core palette */
  --navy-900: #061629;
  --navy-800: #0A2540;
  --navy-700: #103358;
  --navy-600: #1B4474;
  --navy-500: #2C5282;
  --navy-100: #E5EAF1;

  --gold-700: #8C7340;
  --gold-600: #A88A4F;
  --gold-500: #C9A961;
  --gold-400: #DBC084;
  --gold-300: #E8D4A6;
  --gold-100: #F4ECD8;

  --cream-100: #F5F1E8;
  --cream-50: #FAF8F2;
  --ivory: #FCFBF8;
  --white: #FFFFFF;

  --ink: #0A2540;
  --ink-soft: #2A3A52;
  --muted: #5C6878;
  --muted-soft: #8A95A6;
  --line: #E8E4DA;
  --line-strong: #D6CFBF;

  --success: #2D6A4F;
  --danger: #8B2942;

  /* Typography — Real US-bank institutional sans */
  --font-display: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Sizing */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.04), 0 1px 3px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 4px 12px rgba(10, 37, 64, 0.06), 0 2px 4px rgba(10, 37, 64, 0.04);
  --shadow-lg: 0 24px 48px -12px rgba(10, 37, 64, 0.14), 0 8px 20px -8px rgba(10, 37, 64, 0.10);
  --shadow-gold: 0 12px 28px -10px rgba(201, 169, 97, 0.5);

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);

  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--gold-500);
  color: var(--navy-900);
}

/* ============================================================
   Typography
   ============================================================ */
.display,
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

h4 {
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  font-weight: 500;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-500);
}

.italic {
  font-style: italic;
  color: var(--gold-600);
}

.serif {
  font-family: var(--font-display);
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section {
  padding: clamp(60px, 9vw, 130px) 0;
  position: relative;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

@media (max-width: 880px) {
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy-800);
  color: var(--cream-100);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(201, 169, 97, 0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-gold {
  background: var(--gold-500);
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--navy-800);
  border: 1px solid var(--line-strong);
}

.btn-ghost:hover {
  background: var(--cream-100);
  border-color: var(--navy-800);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-800);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 2px;
}

.btn-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--navy-800);
  transform-origin: right;
  transition: transform 0.5s var(--transition);
}

.btn-link:hover::after {
  transform-origin: left;
  transform: scaleX(1.1);
}

.btn-link svg {
  transition: transform var(--transition);
}

.btn-link:hover svg {
  transform: translateX(4px);
}

/* ============================================================
   Top utility bar
   ============================================================ */
.topbar {
  background: var(--navy-900);
  color: var(--gold-300);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.topbar a {
  color: var(--gold-300);
  transition: color var(--transition);
}

.topbar a:hover {
  color: var(--white);
}

.topbar-left,
.topbar-right {
  display: flex;
  gap: 24px;
  align-items: center;
}

.topbar-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-500);
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  box-shadow: 0 0 10px var(--gold-500);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.55;
    transform: scale(0.85);
  }
}

@media (max-width: 720px) {

  .topbar-left .hide-mobile,
  .topbar-right .hide-mobile {
    display: none;
  }
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 251, 248, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(252, 251, 248, 0.96);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  background: var(--navy-800);
  border-radius: 10px;
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.brand-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid var(--gold-500);
  border-radius: 7px;
  opacity: 0.45;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 500;
  color: var(--navy-800);
  letter-spacing: -0.01em;
}

.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: all var(--transition);
  transform: translateX(-50%);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy-800);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 24px;
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: transparent;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--navy-800);
  transition: all 0.35s ease;
}

.menu-toggle span:nth-child(1) {
  top: 16px;
}

.menu-toggle span:nth-child(2) {
  top: 22px;
}

.menu-toggle span:nth-child(3) {
  top: 28px;
}

.menu-toggle.open span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

@media (max-width: 920px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--ivory);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    gap: 24px;
    transform: translateX(100%);
    visibility: hidden;
    opacity: 0;
    z-index: 105;
    transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1),
      visibility 0s linear 0.5s,
      opacity 0.3s ease;
  }

  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1),
      visibility 0s linear 0s,
      opacity 0.3s ease;
  }

  .nav-links a {
    font-size: 1.3rem;
    font-family: var(--font-display);
  }

  .menu-toggle {
    display: block;
    z-index: 110;
  }

  .nav-cta .btn {
    display: none;
  }

  .nav-cta .btn.mobile-show {
    display: inline-flex;
    padding: 10px 18px;
    font-size: 0.85rem;
  }
}

/* ============================================================
   Hero / Slider
   ============================================================ */
.hero {
  padding: clamp(40px, 6vw, 80px) 0 clamp(80px, 10vw, 140px);
  background:
    radial-gradient(circle at 85% 20%, rgba(201, 169, 97, 0.08), transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(10, 37, 64, 0.04), transparent 50%),
    var(--ivory);
  overflow: hidden;
  position: relative;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.hero-content {
  position: relative;
}

.hero-headline {
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 22px 0 28px;
  color: var(--navy-800);
  font-weight: 400;
}

.hero-headline .accent {
  font-style: italic;
  color: var(--gold-600);
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 38px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-credentials {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 28px;
  align-items: start;
}

.cred {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cred strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy-800);
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
}

@media (max-width: 540px) {
  .hero-credentials {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Hero slider visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--navy-800);
  box-shadow: var(--shadow-lg);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.2s ease, transform 8s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(6, 22, 41, 0.85) 100%);
  z-index: 2;
}

.slide-caption {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  color: var(--cream-100);
  z-index: 3;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.8s 0.3s ease;
}

.slide.active .slide-caption {
  transform: translateY(0);
  opacity: 1;
}

.slide-caption .tag {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.slide-caption h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  color: var(--cream-100);
  margin-bottom: 8px;
  font-weight: 400;
}

.slide-caption p {
  font-size: 0.92rem;
  opacity: 0.85;
  line-height: 1.5;
  max-width: 38ch;
}

.slider-dots {
  position: absolute;
  bottom: 24px;
  right: 32px;
  display: flex;
  gap: 8px;
  z-index: 4;
}

.slider-dots button {
  width: 26px;
  height: 3px;
  background: rgba(245, 241, 232, 0.3);
  border-radius: 2px;
  transition: background var(--transition);
  padding: 0;
}

.slider-dots button.active {
  background: var(--gold-500);
}

/* Slide visuals - SVG illustrations */
.slide-art {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide-1 {
  background:
    radial-gradient(circle at 70% 20%, rgba(201, 169, 97, 0.35), transparent 60%),
    linear-gradient(160deg, #0a2540 0%, #061629 100%);
}

.slide-2 {
  background:
    radial-gradient(circle at 30% 70%, rgba(201, 169, 97, 0.25), transparent 60%),
    linear-gradient(200deg, #103358 0%, #0a2540 100%);
}

.slide-3 {
  background:
    radial-gradient(circle at 50% 30%, rgba(201, 169, 97, 0.28), transparent 65%),
    linear-gradient(140deg, #0a2540 0%, #1B4474 100%);
}

.slide-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Floating badge on hero visual */
.hero-badge {
  position: absolute;
  left: -32px;
  top: 60px;
  background: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 5;
  animation: float 6s ease-in-out infinite;
}

.hero-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-100);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--gold-700);
}

.hero-badge-text {
  line-height: 1.2;
}

.hero-badge-text strong {
  display: block;
  font-family: var(--font-display);
  color: var(--navy-800);
  font-size: 1.1rem;
  font-weight: 500;
}

.hero-badge-text span {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-badge-2 {
  position: absolute;
  right: -24px;
  bottom: 80px;
  background: var(--navy-800);
  color: var(--cream-100);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 5;
  animation: float 7s ease-in-out infinite 1s;
}

.hero-badge-2 strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  display: block;
  color: var(--gold-400);
  font-weight: 500;
  line-height: 1;
}

.hero-badge-2 span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 6px;
  display: block;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 980px) {

  .hero-badge,
  .hero-badge-2 {
    display: none;
  }
}

/* ============================================================
   Trust marquee
   ============================================================ */
.marquee {
  background: var(--cream-100);
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.marquee-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 18px;
  font-weight: 600;
}

.marquee-track {
  display: flex;
  gap: 80px;
  animation: scroll-marquee 40s linear infinite;
  white-space: nowrap;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy-800);
  font-weight: 400;
  opacity: 0.55;
  display: flex;
  align-items: center;
  gap: 80px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.marquee-item::after {
  content: '✦';
  color: var(--gold-500);
  font-size: 0.8rem;
}

@keyframes scroll-marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   Stats / Metrics
   ============================================================ */
.stats {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 4vw, 48px);
}

@media (max-width: 880px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

.stat {
  position: relative;
  padding-left: 20px;
}

.stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: var(--gold-500);
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.8vw, 3.6rem);
  font-weight: 400;
  color: var(--navy-800);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.stat-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* ============================================================
   Section headers
   ============================================================ */
.section-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 70px);
}

.section-header h2 {
  max-width: 16ch;
  color: var(--navy-800);
}

@media (max-width: 760px) {
  .section-header {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Services / Cards
   ============================================================ */
.services-bg {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream-50) 100%);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-lg);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--navy-800);
  display: grid;
  place-items: center;
  color: var(--gold-400);
  margin-bottom: 28px;
  position: relative;
  transition: all var(--transition);
}

.card:hover .card-icon {
  transform: rotate(-3deg) scale(1.05);
}

.card-icon::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(201, 169, 97, 0.35);
  border-radius: 7px;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: var(--navy-800);
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.card-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-800);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.card-foot svg {
  transition: transform var(--transition);
}

.card:hover .card-foot svg {
  transform: translateX(6px);
}

/* ============================================================
   Process / Steps
   ============================================================ */
.process-bg {
  background: var(--navy-900);
  color: var(--cream-100);
  position: relative;
  overflow: hidden;
}

.process-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.process-bg .eyebrow {
  color: var(--gold-400);
}

.process-bg h2 {
  color: var(--cream-100);
}

.process-bg .section-header {
  color: var(--cream-100);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid rgba(245, 241, 232, 0.1);
}

@media (max-width: 880px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  padding: 40px 30px 36px 0;
  border-right: 1px solid rgba(245, 241, 232, 0.1);
  position: relative;
}

.step:last-child {
  border-right: none;
}

@media (max-width: 880px) {
  .step {
    border-right: none;
    border-bottom: 1px solid rgba(245, 241, 232, 0.1);
    padding: 32px 0;
  }

  .step:last-child {
    border-bottom: none;
  }
}

.step-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--gold-500);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}

.step h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: var(--cream-100);
  font-weight: 400;
}

.step p {
  font-size: 0.92rem;
  line-height: 1.65;
  opacity: 0.7;
  color: var(--cream-100);
}

/* ============================================================
   Pull quote / Testimonial
   ============================================================ */
.quote-section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--cream-50);
}

.quote-block {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--gold-500);
  line-height: 0.5;
  opacity: 0.4;
  margin-bottom: 20px;
}

.quote-block p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  line-height: 1.4;
  color: var(--navy-800);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.quote-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  display: grid;
  place-items: center;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
}

.quote-author-text {
  text-align: left;
  line-height: 1.3;
}

.quote-author-text strong {
  font-family: var(--font-display);
  color: var(--navy-800);
  font-weight: 500;
  font-size: 1.05rem;
}

.quote-author-text span {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   Why trust us section
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}

@media (max-width: 760px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

.trust-item {
  padding: 28px 28px 28px 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  display: flex;
  gap: 18px;
  transition: all var(--transition);
}

.trust-item:hover {
  border-color: var(--gold-500);
  transform: translateY(-2px);
}

.trust-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--gold-100);
  color: var(--gold-700);
  display: grid;
  place-items: center;
}

.trust-item h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--navy-800);
  font-weight: 500;
}

.trust-item p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================================
   CTA section
   ============================================================ */
.cta-section {
  padding: clamp(40px, 6vw, 80px) 0;
}

.cta-card {
  position: relative;
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 169, 97, 0.25), transparent 50%),
    linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(50px, 8vw, 100px);
  color: var(--cream-100);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.15), transparent 70%);
  border-radius: 50%;
}

.cta-card .eyebrow {
  color: var(--gold-400);
}

.cta-card h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin: 18px 0 18px;
  color: var(--cream-100);
  position: relative;
  max-width: 18ch;
}

.cta-card h2 .accent {
  font-style: italic;
  color: var(--gold-400);
}

.cta-card p {
  font-size: 1.05rem;
  max-width: 50ch;
  margin-bottom: 36px;
  opacity: 0.85;
  position: relative;
}

.cta-card .btn {
  position: relative;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--navy-900);
  color: var(--cream-100);
  padding: clamp(60px, 8vw, 100px) 0 30px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500) 50%, transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(245, 241, 232, 0.1);
}

@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand-mark {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}

.footer-brand-mark .brand-mark {
  background: var(--cream-100);
  color: var(--navy-800);
}

.footer-brand-mark .brand-name {
  color: var(--cream-100);
}

.footer-brand-mark .brand-sub {
  color: var(--gold-400);
}

.footer-bio {
  color: rgba(245, 241, 232, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 38ch;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600;
  margin-bottom: 22px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: rgba(245, 241, 232, 0.7);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom-text {
  font-size: 0.82rem;
  color: rgba(245, 241, 232, 0.5);
}

.footer-badges {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(245, 241, 232, 0.5);
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   Page header (interior pages)
   ============================================================ */
.page-header {
  padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 8vw, 100px);
  background:
    radial-gradient(circle at 85% 30%, rgba(201, 169, 97, 0.1), transparent 50%),
    var(--ivory);
  border-bottom: 1px solid var(--line);
}

.page-header h1 {
  max-width: 18ch;
  color: var(--navy-800);
  margin: 20px 0 24px;
}

.page-header h1 .accent {
  font-style: italic;
  color: var(--gold-600);
}

.page-header p {
  max-width: 60ch;
  font-size: 1.1rem;
  color: var(--ink-soft);
}

/* ============================================================
   Form / Contact
   ============================================================ */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: clamp(32px, 5vw, 56px);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 10px;
}

.form-group label .req {
  color: var(--gold-600);
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-size: 1rem;
  color: var(--navy-800);
  transition: all var(--transition);
  font-family: var(--font-body);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.12);
}

textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-disclaimer {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 18px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--cream-100);
  border-radius: var(--radius-sm);
  line-height: 1.55;
}

.form-success {
  text-align: center;
  padding: 60px 30px;
}

.form-success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--gold-100);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-700);
  animation: success-pulse 1s ease;
}

@keyframes success-pulse {
  0% {
    transform: scale(0);
  }

  60% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

@media (max-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--navy-800);
  color: var(--gold-400);
  display: grid;
  place-items: center;
  border-radius: 10px;
}

.contact-info-card strong {
  display: block;
  color: var(--navy-800);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
}

.contact-info-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ============================================================
   Auth pages (sign in / sign up)
   ============================================================ */
.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
}

@media (max-width: 880px) {
  .auth-page {
    grid-template-columns: 1fr;
  }
}

.auth-visual {
  background:
    radial-gradient(circle at 30% 70%, rgba(201, 169, 97, 0.2), transparent 60%),
    linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: var(--cream-100);
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

@media (max-width: 880px) {
  .auth-visual {
    display: none;
  }
}

.auth-visual-content {
  position: relative;
  z-index: 2;
}

.auth-visual h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-top: 60px;
  margin-bottom: 24px;
  color: var(--cream-100);
  font-weight: 400;
  max-width: 16ch;
}

.auth-visual h2 .accent {
  font-style: italic;
  color: var(--gold-400);
}

.auth-visual p {
  opacity: 0.75;
  max-width: 40ch;
  line-height: 1.7;
}

.auth-visual-svg {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 500px;
  opacity: 0.1;
}

.auth-form-area {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 540px) {
  .auth-form-area {
    padding: 32px 24px;
  }
}

.auth-form-area h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 12px 0 12px;
  color: var(--navy-800);
}

.auth-form-area>p {
  color: var(--muted);
  margin-bottom: 36px;
}

.auth-footer-text {
  margin-top: 24px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.auth-footer-text a {
  color: var(--navy-800);
  font-weight: 600;
  border-bottom: 1px solid var(--gold-500);
}

.btn-full {
  width: 100%;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.auth-trust-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--cream-100);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

/* ============================================================
   Dashboard
   ============================================================ */
.dash {
  background: var(--cream-50);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
}

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

.dash-aside {
  background: var(--navy-900);
  color: var(--cream-100);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: 0;
  height: 100vh;
}

@media (max-width: 880px) {
  .dash-aside {
    position: static;
    height: auto;
  }
}

.dash-aside-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 30px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(245, 241, 232, 0.1);
}

.dash-aside-brand .brand-mark {
  background: var(--cream-100);
  color: var(--navy-800);
}

.dash-aside-brand .brand-mark::after {
  border-color: var(--gold-500);
  opacity: 0.7;
}

.dash-aside-brand .brand-name {
  color: var(--cream-100);
}

.dash-aside-brand .brand-sub {
  color: var(--gold-400);
}

.dash-aside h6 {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600;
  margin: 22px 8px 10px;
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: rgba(245, 241, 232, 0.75);
  font-weight: 500;
  transition: all var(--transition);
  cursor: pointer;
}

.dash-nav-item:hover {
  background: rgba(245, 241, 232, 0.06);
  color: var(--cream-100);
}

.dash-nav-item.active {
  background: var(--navy-700);
  color: var(--gold-400);
}

.dash-nav-item svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.dash-aside-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 241, 232, 0.1);
}

.dash-main {
  padding: clamp(24px, 4vw, 44px);
  overflow-x: hidden;
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.dash-top h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy-800);
  margin-bottom: 4px;
}

.dash-top p {
  color: var(--muted);
  font-size: 0.95rem;
}

.dash-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dash-user-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  display: grid;
  place-items: center;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-weight: 600;
}

.dash-user-info {
  line-height: 1.3;
  font-size: 0.88rem;
}

.dash-user-info strong {
  color: var(--navy-800);
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
}

.dash-user-info span {
  color: var(--muted);
  font-size: 0.78rem;
}

.balance-card {
  background:
    radial-gradient(circle at 85% 20%, rgba(201, 169, 97, 0.3), transparent 55%),
    linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: var(--cream-100);
  padding: 40px;
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.balance-card::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.12), transparent 70%);
  border-radius: 50%;
}

.balance-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.balance-amount {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream-100);
}

.balance-currency {
  font-size: 0.6em;
  opacity: 0.6;
  margin-right: 12px;
  vertical-align: top;
  letter-spacing: 0.05em;
}

.balance-meta {
  display: flex;
  gap: 36px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.balance-meta-item .label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.balance-meta-item .value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
}

.balance-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
  position: relative;
}

.balance-action {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(245, 241, 232, 0.1);
  border: 1px solid rgba(245, 241, 232, 0.15);
  border-radius: var(--radius-full);
  color: var(--cream-100);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition);
  cursor: pointer;
}

.balance-action:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
}

.dash-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

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

.dash-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.dash-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.dash-card-head h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy-800);
  font-weight: 500;
}

.dash-card-head a {
  font-size: 0.82rem;
  color: var(--gold-700);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.tx-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tx {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  padding: 14px 12px;
  border-radius: var(--radius-sm);
  align-items: center;
  transition: background var(--transition);
}

.tx:hover {
  background: var(--cream-50);
}

.tx-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--cream-100);
  color: var(--navy-800);
  display: grid;
  place-items: center;
}

.tx-icon.credit {
  background: rgba(45, 106, 79, 0.1);
  color: var(--success);
}

.tx-icon.debit {
  background: rgba(139, 41, 66, 0.08);
  color: var(--danger);
}

.tx-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy-800);
  font-weight: 600;
}

.tx-info span {
  font-size: 0.78rem;
  color: var(--muted);
}

.tx-amount {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy-800);
}

.tx-amount.credit {
  color: var(--success);
}

.tx-amount.debit {
  color: var(--danger);
}

.case-status {
  padding: 22px;
  background: linear-gradient(135deg, var(--cream-100), var(--gold-100));
  border-radius: var(--radius-md);
  margin-bottom: 18px;
}

.case-status .case-tag {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.case-status .case-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-600);
  animation: pulse-dot 2s infinite;
}

.case-status h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy-800);
  margin-bottom: 4px;
}

.case-status p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.case-progress {
  background: rgba(10, 37, 64, 0.1);
  height: 5px;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 12px;
}

.case-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-600));
  border-radius: 3px;
  width: 0;
  transition: width 1.4s 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.dash-quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.dash-quick-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  cursor: pointer;
}

.dash-quick-action:hover {
  border-color: var(--gold-500);
  background: var(--cream-50);
  transform: translateY(-2px);
}

.dash-quick-action svg {
  color: var(--gold-600);
  margin-bottom: 8px;
}

.dash-quick-action span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-800);
}

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal.d1 {
  transition-delay: 0.1s;
}

.reveal.d2 {
  transition-delay: 0.2s;
}

.reveal.d3 {
  transition-delay: 0.3s;
}

.reveal.d4 {
  transition-delay: 0.4s;
}

/* ============================================================
   Misc
   ============================================================ */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--navy-900);
  color: var(--cream-100);
  padding: 14px 24px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gold-600);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.toast svg {
  color: var(--gold-400);
}

/* Loader for initial page paint */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader-mark {
  width: 60px;
  height: 60px;
  background: var(--navy-800);
  border-radius: 12px;
  position: relative;
  animation: loader-pulse 1.4s ease-in-out infinite;
}

.page-loader-mark::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1.5px solid var(--gold-500);
  border-radius: 8px;
}

@keyframes loader-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(0.92);
    opacity: 0.75;
  }
}

/* ============================================================
   Dashboard additions — balance card refinements, mini accounts,
   inline status pill
   ============================================================ */

/* Override .balance-card padding for new inner structure */
.balance-card .balance-card-inner {
  position: relative;
  z-index: 2;
}

.balance-card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
}

.balance-card-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.balance-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.balance-row>div:first-child {
  flex: 1 1 auto;
  min-width: 240px;
}

.balance-trend {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  padding: 14px 18px;
  background: rgba(245, 241, 232, 0.06);
  border: 1px solid rgba(201, 169, 97, 0.18);
  border-radius: 12px;
  min-width: 140px;
}

.trend-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.55);
  font-weight: 600;
}

.trend-value {
  font-family: var(--font-display);
  color: var(--gold-400);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Inline status pill — overrides the panel-style .case-status when used as <span> */
span.case-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(201, 169, 97, 0.12);
  border: 1px solid rgba(201, 169, 97, 0.35);
  border-radius: 99px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 700;
  margin-bottom: 0;
}

span.case-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-600);
  animation: pulse-dot 2s infinite;
}

/* Mini account cards (secondary balances strip) */
.mini-account-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: all var(--transition);
}

.mini-account-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-md);
}

.mini-account-label {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
}

.mini-account-amount {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--navy-800);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.mini-account-meta {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Dashboard body — hide page-loader since dashboard.html has it but no header  */
body.has-dash {
  background: var(--cream-50);
}

/* Tighter dash-grid override for the secondary 3-col strip */
.dash-main>.dash-grid:not(:last-of-type) {
  margin-bottom: 0;
}

/* Responsive: balance card padding tighter on mobile */
@media (max-width: 640px) {
  .balance-card {
    padding: 28px 22px;
  }

  .balance-amount {
    font-size: 2.4rem;
  }

  .balance-trend {
    width: 100%;
    align-items: flex-start;
  }

  .dash-grid[style*="1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   NET BANK V4 OVERRIDES — Institutional US-bank polish
   - Kill childish italic+gold accent treatment everywhere
   - Heavier display weights, tighter tracking (real bank feel)
   - Image-based hero slides
   ============================================================ */

/* Display headings: institutional weight, tight tracking, no italics */
.display,
h1,
h2,
h3,
h4,
.serif,
.hero-headline,
.page-header h1,
.section h2,
.cta-card h2,
.auth-visual h2,
.auth-form-area h1 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.08;
}

/* Hero headline — confident, no italic, no gold accent */
.hero-headline {
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.04;
  color: var(--navy-800);
}

/* The .accent class — was italic gold. Now it's just a line-break with subtle weight contrast */
.hero-headline .accent,
.page-header h1 .accent,
.cta-card h2 .accent,
.auth-visual h2 .accent,
.section h2 .accent {
  display: block;
  font-style: normal !important;
  font-weight: 600;
  color: inherit !important;
  /* subtle gold underline for a refined institutional accent */
  position: relative;
}

/* Kill any remaining italic on display elements */
.hero-headline,
.page-header h1,
.cta-card h2,
.auth-visual h2,
.section h2,
.serif {
  font-style: normal;
}

/* Eyebrow / labels: very institutional uppercase */
.eyebrow,
.hslide-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-700);
}

/* Body copy: Inter is denser, so adjust line-height for readability */
body {
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  -webkit-font-smoothing: antialiased;
}

.hero-sub {
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.6;
  color: var(--muted);
  font-weight: 400;
  max-width: 54ch;
}

/* Stats / numbers: tabular numerals for that proper bank look */
.cred strong,
.hero-stat strong,
.balance-amount,
.mini-account-amount,
[data-count] {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.cred strong {
  font-size: 1.5rem;
}

/* Brand wordmark — slightly more weight, tighter */
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.015em;
  color: var(--navy-800);
}

.brand-sub {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-top: 1px;
}

/* Nav links: more institutional */
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0;
}

/* Buttons: heavier, more banky */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.005em;
}

/* ============================================================
   IMAGE-BASED HERO SLIDES (replaces SVG illustrations)
   The .slide.active mechanism already exists in v1 CSS.
   We just need to style the img + caption properly.
   ============================================================ */

.slide.slide-img {
  background: var(--navy-900);
}

.slide-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 8s ease-out, opacity 1s ease;
}

.slide.active .slide-photo {
  transform: scale(1);
}

/* Fallback gradients if user hasn't added the images yet */
.slide-photo-fallback {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.fallback-1 {
  background:
    radial-gradient(ellipse at 65% 35%, rgba(201, 169, 97, 0.4) 0%, transparent 55%),
    linear-gradient(135deg, #0a2540 0%, #061629 60%, #143a5e 100%);
}

.fallback-2 {
  background:
    radial-gradient(ellipse at 35% 65%, rgba(201, 169, 97, 0.35) 0%, transparent 55%),
    linear-gradient(160deg, #061629 0%, #0a2540 50%, #1B4474 100%);
}

.fallback-3 {
  background:
    radial-gradient(ellipse at 75% 25%, rgba(201, 169, 97, 0.45) 0%, transparent 50%),
    linear-gradient(110deg, #0a2540 0%, #143a5e 100%);
}

/* Dark gradient over photo so caption stays readable */
.slide-overlay-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(6, 22, 41, 0.92) 0%, rgba(6, 22, 41, 0.55) 35%, rgba(6, 22, 41, 0.15) 65%, rgba(6, 22, 41, 0.05) 100%);
  z-index: 1;
}

/* Caption — institutional, refined */
.slide-caption-photo {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 32px 64px;
  z-index: 2;
  color: var(--cream-100);
}

.slide-caption-photo .tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  padding: 5px 12px;
  background: rgba(201, 169, 97, 0.12);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 4px;
  margin-bottom: 16px;
}

.slide-caption-photo h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 12px;
  font-style: normal;
}

.slide-caption-photo p {
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.55;
  color: rgba(245, 241, 232, 0.82);
  margin: 0;
  max-width: 42ch;
  font-weight: 400;
}

/* Slider dots — refined, bank-quality */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 32px;
  right: 32px;
  display: flex;
  gap: 8px;
  z-index: 3;
  justify-content: flex-start;
}

.slider-dots button {
  flex: 1;
  height: 3px;
  max-width: 56px;
  background: rgba(245, 241, 232, 0.25);
  border: none;
  border-radius: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.slider-dots button:hover {
  background: rgba(245, 241, 232, 0.45);
}

.slider-dots button.active {
  background: rgba(245, 241, 232, 0.25);
}

.slider-dots button.active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-500);
  transform-origin: left;
  animation: slide-progress 5500ms linear forwards;
}

@keyframes slide-progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

/* Make sure hero-visual gives slides full canvas */
.hero-visual {
  background: var(--navy-900);
}

/* ============================================================
   Refined details across the page
   ============================================================ */

/* Section headings: tighter, more institutional */
.section h2 {
  font-weight: 600;
  letter-spacing: -0.025em;
}

/* Topbar: cleaner */
.topbar {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}

/* Footer brand */
.footer .brand-name {
  color: var(--navy-900);
}

/* Marquee: tighter */
.marquee-item {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
}

/* CTA card heading — no italic */
.cta-card h2 {
  font-style: normal;
  font-weight: 600;
}

/* Process step numbers / accent numbers */
.process-step-num,
.step-num {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  letter-spacing: -0.02em;
}


/* ============================================================
   NET BANK V5 — Image slider hardening + mobile polish
   FIXES:
   1. Image overflow (explicit sizing, !important overrides, override
      global `img { max-width: 100%; height: auto }`)
   2. Smooth fast auto-rotation (0.7s fade, scale-in on photo)
   3. Caption slide-up on each new slide
   4. Animated gold progress bar on active dot synced to 4.5s timer
   5. Full mobile responsive
   ============================================================ */

/* Lock the hero visual frame: no more aspect-ratio guessing */
.hero .hero-visual,
.hero-visual {
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  max-height: 500px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: var(--navy-900) !important;
  box-shadow:
    0 30px 80px -20px rgba(10, 37, 64, 0.4),
    0 4px 20px rgba(10, 37, 64, 0.08) !important;
  isolation: isolate;
  perspective: 1500px;
}

/* Each slide fills the visual frame — cinematic slide-fade transition */
.hero .slide,
.slide.slide-img {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0;
  transform: translate3d(40px, 0, 0) scale(0.985) !important;
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1) !important;
  overflow: hidden !important;
  z-index: 1;
  will-change: opacity, transform;
}

.hero .slide.active,
.slide.slide-img.active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) !important;
  z-index: 2;
}

/* Image: explicitly fills slide, overrides global img defaults */
.hero .slide-photo,
.slide-img .slide-photo,
img.slide-photo {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  transform: none !important;
  transition: none !important;
  background: var(--navy-900);
  z-index: 0;
}

.hero .slide.active .slide-photo,
.slide-img.active .slide-photo {
  transform: none !important;
}

/* Fallback gradient layer if image fails */
.hero .slide-photo-fallback,
.slide-photo-fallback {
  position: absolute !important;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

/* Dark gradient overlay so caption stays readable */
.hero .slide-overlay-photo,
.slide-overlay-photo {
  position: absolute !important;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background:
    linear-gradient(to top,
      rgba(6, 22, 41, 0.92) 0%,
      rgba(6, 22, 41, 0.55) 35%,
      rgba(6, 22, 41, 0.15) 65%,
      transparent 100%) !important;
  z-index: 1;
  pointer-events: none;
}

/* Caption: fades with the slide motion (no independent transform) */
.hero .slide-caption-photo,
.slide-caption-photo {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  padding: 32px 36px 40px !important;
  z-index: 3;
  color: var(--cream-100);
  opacity: 1;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.hero .slide.active .slide-caption-photo,
.slide-img.active .slide-caption-photo {
  opacity: 1;
}

/* Animated dots: progress bar synced to JS interval (4500ms) */
.hero .slider-dots,
.hero-visual .slider-dots {
  position: absolute !important;
  bottom: 24px !important;
  left: 36px !important;
  right: 36px !important;
  top: auto !important;
  display: flex !important;
  gap: 8px !important;
  z-index: 5 !important;
  justify-content: flex-start !important;
  pointer-events: auto;
}

.hero .slider-dots button,
.hero-visual .slider-dots button {
  flex: 1 !important;
  height: 3px !important;
  width: auto !important;
  max-width: 56px !important;
  background: rgba(245, 241, 232, 0.25) !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  cursor: pointer !important;
  overflow: hidden !important;
  position: relative !important;
  transition: background 0.2s ease;
}

.hero .slider-dots button:hover {
  background: rgba(245, 241, 232, 0.45) !important;
}

.hero .slider-dots button.active {
  background: rgba(245, 241, 232, 0.25) !important;
}

.hero .slider-dots button.active::after,
.hero-visual .slider-dots button.active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  animation: net-slide-progress 3000ms linear forwards;
}

@keyframes net-slide-progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */

/* Tablet & smaller desktop */
@media (max-width: 1024px) {

  .hero .hero-visual,
  .hero-visual {
    aspect-ratio: 16 / 9 !important;
    max-height: 440px !important;
    height: auto !important;
  }
}

/* Tablet: hero grid stacks at 980px (existing rule), give image more room */
@media (max-width: 980px) {

  .hero .hero-visual,
  .hero-visual {
    aspect-ratio: 16 / 9 !important;
    max-height: 440px !important;
    height: auto !important;
    border-radius: 14px !important;
  }

  .hero .slide-caption-photo,
  .slide-caption-photo {
    padding: 28px 28px 56px !important;
  }

  .hero .slider-dots,
  .hero-visual .slider-dots {
    bottom: 20px !important;
    left: 28px !important;
    right: 28px !important;
  }
}

/* Mobile portrait */
@media (max-width: 640px) {

  .hero .hero-visual,
  .hero-visual {
    aspect-ratio: 16 / 9 !important;
    max-height: none !important;
    height: auto !important;
    border-radius: 12px !important;
  }

  .hero .slide-caption-photo,
  .slide-caption-photo {
    padding: 22px 22px 48px !important;
  }

  .hero .slide-caption-photo .tag,
  .slide-caption-photo .tag {
    font-size: 0.66rem !important;
    padding: 4px 10px !important;
    margin-bottom: 12px !important;
    letter-spacing: 0.16em !important;
  }

  .hero .slide-caption-photo h3,
  .slide-caption-photo h3 {
    font-size: clamp(1.15rem, 5.2vw, 1.5rem) !important;
    margin-bottom: 8px !important;
  }

  .hero .slide-caption-photo p,
  .slide-caption-photo p {
    font-size: 0.86rem !important;
    line-height: 1.5 !important;
    max-width: 100% !important;
  }

  .hero .slider-dots,
  .hero-visual .slider-dots {
    bottom: 14px !important;
    left: 20px !important;
    right: 20px !important;
    gap: 6px !important;
  }

  .hero .slider-dots button,
  .hero-visual .slider-dots button {
    height: 2px !important;
    max-width: 44px !important;
  }
}

/* Small mobile */
@media (max-width: 380px) {

  .hero .hero-visual,
  .hero-visual {
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
  }

  .hero .slide-caption-photo,
  .slide-caption-photo {
    padding: 18px 18px 42px !important;
  }
}

/* Reduce motion preference: instant transitions for users who request it */
@media (prefers-reduced-motion: reduce) {

  .hero .slide,
  .hero .slide-photo,
  .hero .slide-caption-photo,
  .hero .slider-dots button.active::after {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}

/* ============================================================
   BANKING SYSTEM V6 — Additions
   Professional US banking UI: accounts, transfer, wire, support
   ============================================================ */

/* Sidebar nav group spacing */
.dash-nav-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 18px;
}

/* Dashboard top sign-off */
.dash-signoff {
  text-align: center;
  margin: 48px 0 8px;
  font-size: 0.78rem;
  color: var(--muted-soft);
  letter-spacing: 0.04em;
}

.dash-signoff a {
  color: var(--gold-700);
  font-weight: 600;
}

/* ============================================================
   Accounts strip — 3-up account cards
   ============================================================ */
.accounts-strip-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 8px 0 16px;
}

.accounts-strip-head h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy-800);
  font-weight: 600;
}

.accounts-count {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.accounts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

@media (max-width: 980px) {
  .accounts-grid {
    grid-template-columns: 1fr;
  }
}

.account-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 22px 20px;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.account-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-md);
}

.account-card.is-selected {
  border-color: var(--navy-800);
  box-shadow: 0 0 0 2px rgba(10, 37, 64, 0.06);
}

.account-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.account-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
}

.account-card-status {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
}

.account-card-status.active {
  background: rgba(45, 106, 79, 0.1);
  color: var(--success);
}

.account-card-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 6px;
}

.account-card-amount {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-size: 1.65rem;
  color: var(--navy-800);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.account-card-meta {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.account-card-meta .dot {
  color: var(--muted-soft);
}

/* ============================================================
   Account details list (dashboard side + transfer/wire pages)
   ============================================================ */
.acct-detail-list {
  display: flex;
  flex-direction: column;
}

.acct-detail-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  gap: 16px;
}

.acct-detail-list li:last-child {
  border-bottom: none;
}

.acct-detail-list li span {
  color: var(--muted);
  font-weight: 500;
}

.acct-detail-list li strong {
  color: var(--navy-800);
  font-family: var(--font-display);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.acct-secure-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 14px;
  background: var(--cream-50);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--muted);
}

.acct-secure-note svg {
  color: var(--gold-700);
  flex-shrink: 0;
}

/* ============================================================
   Side column on dashboard
   ============================================================ */
.dash-side-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ============================================================
   Transactions — filters, show more
   ============================================================ */
.tx-filters {
  display: flex;
  gap: 4px;
  background: var(--cream-50);
  padding: 4px;
  border-radius: 99px;
}

.tx-filter-btn {
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  transition: all var(--transition);
}

.tx-filter-btn:hover {
  color: var(--navy-800);
}

.tx-filter-btn.active {
  background: var(--white);
  color: var(--navy-800);
  box-shadow: var(--shadow-sm);
}

.tx-list .tx {
  cursor: default;
}

.tx-list .tx.hidden {
  display: none;
}

.tx-show-more-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.tx-show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--navy-800);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
}

.tx-show-more-btn:hover {
  background: var(--navy-800);
  color: var(--cream-100);
  border-color: var(--navy-800);
}

.tx-show-more-btn:hover svg {
  color: var(--gold-400);
}

.tx-show-more-btn svg {
  color: var(--gold-600);
  transition: transform var(--transition);
}

.tx-show-more-btn.is-end {
  opacity: 0.5;
  pointer-events: none;
}

.tx-count {
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--muted-soft);
  font-weight: 500;
}

/* ============================================================
   Transfer & Wire forms
   ============================================================ */
.transfer-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: start;
}

@media (max-width: 1080px) {
  .transfer-layout {
    grid-template-columns: 1fr;
  }
}

.transfer-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 24px;
}

.form-section {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.form-section:last-of-type {
  margin-bottom: 24px;
  padding-bottom: 0;
  border-bottom: none;
}

.form-section-label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 700;
  margin-bottom: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-hint {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.required {
  color: var(--danger);
  font-weight: 600;
}

/* ============================================================
   Account picker (radio cards for from-account selection)
   ============================================================ */
.account-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (max-width: 720px) {
  .account-picker {
    grid-template-columns: 1fr;
  }
}

.account-pick {
  position: relative;
  cursor: pointer;
  display: block;
}

.account-pick input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.account-pick-inner {
  display: block;
  padding: 16px 14px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  position: relative;
}

.account-pick input:checked+.account-pick-inner {
  border-color: var(--navy-800);
  background: linear-gradient(180deg, var(--cream-50) 0%, var(--white) 100%);
  box-shadow: 0 0 0 1px var(--navy-800), 0 2px 8px rgba(10, 37, 64, 0.08);
}

.account-pick input:checked+.account-pick-inner::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.2);
}

.account-pick.disabled {
  cursor: not-allowed;
}

.account-pick.disabled .account-pick-inner {
  opacity: 0.5;
  background: var(--cream-50);
}

.account-pick-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 2px;
}

.account-pick-sub {
  display: block;
  font-size: 0.76rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.account-pick-amt {
  display: block;
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-800);
  letter-spacing: -0.01em;
}

/* ============================================================
   Custom US Bank selector dropdown
   ============================================================ */
.bank-select {
  position: relative;
}

.bank-select-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--navy-800);
  font-weight: 500;
  text-align: left;
  transition: all var(--transition);
}

.bank-select-trigger:hover {
  border-color: var(--gold-500);
}

.bank-select.is-open .bank-select-trigger {
  border-color: var(--navy-800);
  box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.06);
}

.bank-select.is-open .bank-select-trigger svg {
  transform: rotate(180deg);
}

.bank-select-trigger svg {
  color: var(--muted);
  transition: transform var(--transition);
}

.bank-select-placeholder {
  color: var(--muted-soft);
  font-weight: 400;
}

.bank-select-trigger.has-value .bank-select-placeholder {
  color: var(--navy-800);
  font-weight: 500;
}

.bank-select-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 50;
  max-height: 340px;
  flex-direction: column;
  overflow: hidden;
  animation: bankSelectIn 0.2s ease;
  display: none;
}

.bank-select.is-open .bank-select-panel {
  display: flex;
}

.bank-select-panel[hidden] {
  display: none !important;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bank-select-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--cream-50);
}

.bank-select-search-wrap svg {
  color: var(--muted);
  flex-shrink: 0;
}

.bank-select-search {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.92rem;
  color: var(--navy-800);
}

.bank-select-search::placeholder {
  color: var(--muted-soft);
}

.bank-select-list {
  overflow-y: auto;
  flex: 1;
  padding: 6px 0;
}

.bank-select-list li {
  padding: 11px 16px;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--navy-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--transition);
}

.bank-select-list li:hover,
.bank-select-list li.is-focused {
  background: var(--cream-50);
}

.bank-select-list li .bank-routing {
  font-size: 0.74rem;
  color: var(--muted-soft);
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.bank-select-list .bank-empty {
  padding: 22px 16px;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  cursor: default;
}

.bank-select-list .bank-empty:hover {
  background: transparent;
}

/* ============================================================
   Form controls polish (banking-specific)
   ============================================================ */
.amount-input {
  position: relative;
  display: flex;
  align-items: center;
}

.amount-input-currency {
  position: absolute;
  left: 18px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 500;
  pointer-events: none;
}

.amount-input input {
  padding-left: 38px;
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Native select styling matched to inputs */
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235C6878' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

/* ============================================================
   Wire-specific: cutoff card, security tip
   ============================================================ */
.wire-cutoff {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  color: var(--cream-100);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
}

.wire-cutoff::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.15), transparent 70%);
  border-radius: 50%;
}

.wire-cutoff-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.wire-cutoff-head svg {
  color: var(--gold-400);
}

.wire-cutoff-head strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold-400);
  letter-spacing: 0.04em;
}

.wire-cutoff p {
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(245, 241, 232, 0.85);
  position: relative;
  z-index: 1;
}

.wire-cutoff strong {
  color: var(--cream-100);
  font-weight: 600;
}

.security-tip {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: rgba(201, 169, 97, 0.08);
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: var(--radius-md);
}

.security-tip-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(201, 169, 97, 0.18);
  color: var(--gold-700);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.security-tip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--navy-800);
  margin-bottom: 4px;
  font-weight: 600;
}

.security-tip p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ============================================================
   Support — Chat interface
   ============================================================ */
.support-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

@media (max-width: 1080px) {
  .support-layout {
    grid-template-columns: 1fr;
  }
}

.support-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 24px;
}

.chat-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  height: calc(100vh - 220px);
  min-height: 560px;
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.chat-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: var(--gold-400);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
}

.chat-avatar::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 11px;
  height: 11px;
  background: var(--success);
  border: 2px solid var(--white);
  border-radius: 50%;
}

.chat-head h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy-800);
  font-weight: 600;
  margin-bottom: 2px;
}

.chat-head>div:nth-child(2) {
  flex: 1;
}

.chat-status {
  font-size: 0.78rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.chat-status-dot {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.15);
  }
}

.chat-clear-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--muted);
  transition: all var(--transition);
  display: grid;
  place-items: center;
}

.chat-clear-btn:hover {
  background: var(--cream-50);
  color: var(--danger);
}

.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 22px 24px;
  background: var(--cream-50);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chat-msg {
  display: flex;
  gap: 10px;
  max-width: 78%;
  animation: chatIn 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes chatIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-msg.from-user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.chat-msg-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-display);
}

.chat-msg.from-bot .chat-msg-avatar {
  background: var(--navy-800);
  color: var(--gold-400);
}

.chat-msg.from-user .chat-msg-avatar {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900);
}

.chat-msg-bubble {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--navy-800);
  background: var(--white);
  border: 1px solid var(--line);
}

.chat-msg.from-user .chat-msg-bubble {
  background: var(--navy-800);
  color: var(--cream-100);
  border-color: var(--navy-800);
}

.chat-msg-bubble strong {
  font-weight: 600;
  color: inherit;
}

.chat-msg-bubble a {
  color: var(--gold-700);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.chat-msg.from-user .chat-msg-bubble a {
  color: var(--gold-400);
}

.chat-msg-bubble ul {
  margin: 8px 0 0;
  padding-left: 14px;
}

.chat-msg-bubble ul li {
  list-style: disc;
  margin-bottom: 4px;
  font-size: 0.88rem;
}

.chat-msg-time {
  display: block;
  margin-top: 4px;
  font-size: 0.7rem;
  color: var(--muted-soft);
}

.chat-msg.from-user .chat-msg-time {
  text-align: right;
}

.chat-msg-typing .chat-msg-bubble {
  display: flex;
  gap: 4px;
  padding: 14px 18px;
}

.chat-typing-dot {
  width: 6px;
  height: 6px;
  background: var(--muted-soft);
  border-radius: 50%;
  animation: chatTyping 1.2s infinite ease-in-out;
}

.chat-typing-dot:nth-child(2) {
  animation-delay: 0.15s;
}

.chat-typing-dot:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes chatTyping {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }

  30% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 24px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.chat-suggestion {
  padding: 8px 14px;
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 0.82rem;
  color: var(--navy-800);
  font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
}

.chat-suggestion:hover {
  background: var(--navy-800);
  color: var(--cream-100);
  border-color: var(--navy-800);
}

.chat-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.chat-attach {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--muted);
  display: grid;
  place-items: center;
  transition: all var(--transition);
  flex-shrink: 0;
}

.chat-attach:hover {
  background: var(--cream-50);
  color: var(--navy-800);
}

.chat-input {
  flex: 1;
  padding: 11px 18px;
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 0.94rem;
  color: var(--navy-800);
  outline: none;
  transition: all var(--transition);
}

.chat-input:focus {
  background: var(--white);
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.06);
}

.chat-send-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 20px;
  background: var(--navy-800);
  color: var(--cream-100);
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
}

.chat-send-btn:hover {
  background: var(--navy-900);
}

.chat-send-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.chat-send-btn svg {
  color: var(--gold-400);
}

/* Support — channel + FAQ lists */
.support-channel-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.support-channel-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.support-channel-list li:last-child {
  border-bottom: none;
}

.support-channel-list strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy-800);
  margin-bottom: 2px;
  font-weight: 600;
}

.support-channel-list span {
  font-size: 0.82rem;
  color: var(--muted);
}

.support-channel-icon {
  width: 32px;
  height: 32px;
  background: var(--cream-50);
  color: var(--navy-800);
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-list li {
  border-bottom: 1px solid var(--line);
}

.faq-list li:last-child {
  border-bottom: none;
}

.faq-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 0.9rem;
  color: var(--navy-800);
  font-weight: 500;
  transition: color var(--transition);
}

.faq-list a::after {
  content: '→';
  color: var(--gold-600);
  font-weight: 600;
  transition: transform var(--transition);
}

.faq-list a:hover {
  color: var(--gold-700);
}

.faq-list a:hover::after {
  transform: translateX(3px);
}

/* ============================================================
   Mobile sidebar — collapses to top bar on small screens
   ============================================================ */
@media (max-width: 880px) {
  .dash-aside {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding: 16px 18px;
    gap: 12px;
  }

  .dash-aside-brand {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    margin-right: auto;
  }

  .dash-aside h6 {
    display: none;
  }

  .dash-nav-group {
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 0;
    gap: 4px;
  }

  .dash-nav-item {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .dash-aside-footer {
    display: none;
  }
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .account-picker {
    grid-template-columns: 1fr;
  }

  .chat-card {
    height: calc(100vh - 280px);
    min-height: 480px;
  }

  .balance-actions {
    gap: 8px;
  }

  .balance-action {
    padding: 8px 14px;
    font-size: 0.82rem;
  }
}

/* ============================================================
   Confirmation modal (used after transfer/wire submit)
   ============================================================ */
.confirm-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 22, 41, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.confirm-backdrop.show {
  opacity: 1;
}

.confirm-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: scale(0.96);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.confirm-backdrop.show .confirm-modal {
  transform: scale(1);
}

.confirm-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: rgba(45, 106, 79, 0.12);
  color: var(--success);
  display: grid;
  place-items: center;
}

.confirm-modal h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy-800);
  font-weight: 600;
  margin-bottom: 8px;
}

.confirm-modal>p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 22px;
  line-height: 1.55;
}

.confirm-ref {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--cream-50);
  border-radius: 99px;
  margin-bottom: 22px;
}

.confirm-ref-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.confirm-ref strong {
  font-family: var(--font-display);
  color: var(--navy-800);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.confirm-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.confirm-actions .btn {
  flex: 1;
  justify-content: center;
}

/* ============================================================
   Quick-pick amount buttons (transfer & wire)
   ============================================================ */
.quick-amounts {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.quick-amt {
  padding: 9px 18px;
  background: var(--cream-50);
  border: 1.5px solid var(--line);
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-800);
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  transition: all var(--transition);
  cursor: pointer;
}

.quick-amt:hover {
  background: var(--white);
  border-color: var(--gold-500);
  color: var(--gold-700);
  transform: translateY(-1px);
}

.quick-amt.is-active {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: var(--cream-100);
}

.quick-amt.is-active:hover {
  background: var(--navy-900);
  color: var(--cream-100);
}

/* ============================================================
   NET BANK — Banking & Recovery — Design System
   Aesthetic: Modern American institutional banking.
   Palette: Deep navy + warm gold + ivory.
   ============================================================ */

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

:root {
  /* Core palette */
  --navy-900: #061629;
  --navy-800: #0A2540;
  --navy-700: #103358;
  --navy-600: #1B4474;
  --navy-500: #2C5282;
  --navy-100: #E5EAF1;

  --gold-700: #8C7340;
  --gold-600: #A88A4F;
  --gold-500: #C9A961;
  --gold-400: #DBC084;
  --gold-300: #E8D4A6;
  --gold-100: #F4ECD8;

  --cream-100: #F5F1E8;
  --cream-50: #FAF8F2;
  --ivory: #FCFBF8;
  --white: #FFFFFF;

  --ink: #0A2540;
  --ink-soft: #2A3A52;
  --muted: #5C6878;
  --muted-soft: #8A95A6;
  --line: #E8E4DA;
  --line-strong: #D6CFBF;

  --success: #2D6A4F;
  --danger: #8B2942;

  /* Typography — Real US-bank institutional sans */
  --font-display: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Sizing */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.04), 0 1px 3px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 4px 12px rgba(10, 37, 64, 0.06), 0 2px 4px rgba(10, 37, 64, 0.04);
  --shadow-lg: 0 24px 48px -12px rgba(10, 37, 64, 0.14), 0 8px 20px -8px rgba(10, 37, 64, 0.10);
  --shadow-gold: 0 12px 28px -10px rgba(201, 169, 97, 0.5);

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);

  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Base resets & layout retained from original code for brevity... */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--gold-500);
  color: var(--navy-900);
}

.display,
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.022em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

/* --- Dashboard / Support layout overrides --- */
.dash {
  background: var(--cream-50);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
}

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

.dash-aside {
  background: var(--navy-900);
  color: var(--cream-100);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: 0;
  height: 100vh;
}

@media (max-width: 880px) {
  .dash-aside {
    position: static;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding: 16px 18px;
  }
}

.dash-aside-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 30px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(245, 241, 232, 0.1);
}

@media (max-width: 880px) {
  .dash-aside-brand {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    margin-right: auto;
  }
}

.brand-mark {
  width: 44px;
  height: 44px;
  background: var(--cream-100);
  color: var(--navy-800);
  border-radius: 10px;
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.brand-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid var(--gold-500);
  border-radius: 7px;
  opacity: 0.7;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream-100);
}

.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--gold-400);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}

.dash-aside h6 {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600;
  margin: 22px 8px 10px;
}

@media (max-width: 880px) {
  .dash-aside h6 {
    display: none;
  }
}

.dash-nav-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 18px;
}

@media (max-width: 880px) {
  .dash-nav-group {
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 0;
    gap: 4px;
  }
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: rgba(245, 241, 232, 0.75);
  font-weight: 500;
  transition: all var(--transition);
}

.dash-nav-item:hover {
  background: rgba(245, 241, 232, 0.06);
  color: var(--cream-100);
}

.dash-nav-item.active {
  background: var(--navy-700);
  color: var(--gold-400);
}

@media (max-width: 880px) {
  .dash-nav-item {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}

.dash-main {
  padding: clamp(24px, 4vw, 44px);
  overflow-x: hidden;
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.dash-top h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy-800);
  margin-bottom: 4px;
}

.dash-top p {
  color: var(--muted);
  font-size: 0.95rem;
}

.dash-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dash-user-info {
  line-height: 1.3;
  font-size: 0.88rem;
  text-align: right;
}

.dash-user-info strong {
  color: var(--navy-800);
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
}

.dash-user-info span {
  color: var(--muted);
  font-size: 0.78rem;
}

.dash-user-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  display: grid;
  place-items: center;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-weight: 600;
}

.dash-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.dash-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.dash-card-head h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy-800);
  font-weight: 500;
}

.support-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

@media (max-width: 1080px) {
  .support-layout {
    grid-template-columns: 1fr;
  }
}

.support-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 24px;
}

/* Support Chat UI */
.chat-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  height: calc(100vh - 220px);
  min-height: 560px;
}

@media (max-width: 640px) {
  .chat-card {
    height: calc(100vh - 280px);
    min-height: 480px;
  }
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.chat-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: var(--gold-400);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
}

.chat-head h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy-800);
  font-weight: 600;
  margin-bottom: 2px;
}

.chat-status {
  font-size: 0.78rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.chat-status-dot {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.15);
  }
}

.chat-clear-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--muted);
  transition: all var(--transition);
  display: grid;
  place-items: center;
}

.chat-clear-btn:hover {
  background: var(--cream-50);
  color: var(--danger);
}

.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 22px 24px;
  background: var(--cream-50);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chat-msg {
  display: flex;
  gap: 10px;
  max-width: 85%;
  animation: chatIn 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes chatIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-msg.from-user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.chat-msg-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-display);
}

.chat-msg.from-bot .chat-msg-avatar {
  background: var(--navy-800);
  color: var(--gold-400);
}

.chat-msg.from-user .chat-msg-avatar {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900);
}

.chat-msg-bubble {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--navy-800);
  background: var(--white);
  border: 1px solid var(--line);
}

.chat-msg.from-user .chat-msg-bubble {
  background: var(--navy-800);
  color: var(--cream-100);
  border-color: var(--navy-800);
}

.chat-msg-bubble strong {
  font-weight: 600;
  color: inherit;
}

.chat-msg-time {
  display: block;
  margin-top: 4px;
  font-size: 0.7rem;
  color: var(--muted-soft);
}

.chat-msg.from-user .chat-msg-time {
  text-align: right;
}

.chat-msg-typing .chat-msg-bubble {
  display: flex;
  gap: 4px;
  padding: 14px 18px;
}

.chat-typing-dot {
  width: 6px;
  height: 6px;
  background: var(--muted-soft);
  border-radius: 50%;
  animation: chatTyping 1.2s infinite ease-in-out;
}

.chat-typing-dot:nth-child(2) {
  animation-delay: 0.15s;
}

.chat-typing-dot:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes chatTyping {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }

  30% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

.chat-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.chat-input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 11px 18px;
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 0.94rem;
  color: var(--navy-800);
  outline: none;
  transition: all var(--transition);
}

.chat-input:focus {
  background: var(--white);
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.06);
}

.chat-send-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 11px 20px;
  background: var(--navy-800);
  color: var(--cream-100);
  border: 0;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: all var(--transition);
}

.chat-send-btn:hover {
  background: var(--navy-900);
}

.chat-send-btn svg {
  flex-shrink: 0;
}

/* --- Support channel lists --- */
.support-channel-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.support-channel-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.support-channel-list li:last-child {
  border-bottom: none;
}

.support-channel-list strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy-800);
  margin-bottom: 2px;
  font-weight: 600;
}

.support-channel-list span {
  font-size: 0.82rem;
  color: var(--muted);
}

.support-channel-icon {
  width: 32px;
  height: 32px;
  background: var(--cream-50);
  color: var(--navy-800);
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.security-tip {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: rgba(201, 169, 97, 0.08);
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: var(--radius-md);
}

.security-tip-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(201, 169, 97, 0.18);
  color: var(--gold-700);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.security-tip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--navy-800);
  margin-bottom: 4px;
  font-weight: 600;
}

.security-tip p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ============================================================
   TOLIC CUSTOM AI BILLING / PAYMENT STYLES
   ============================================================ */
.payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.pay-btn {
  padding: 8px 14px;
  background: var(--cream-50);
  color: var(--navy-800);
  border: 1px solid var(--gold-500);
  border-radius: 99px;
  font-size: 0.85rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}

.pay-btn:hover {
  background: var(--gold-500);
  color: var(--navy-900);
}

.pay-btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.payment-details-box {
  background: rgba(201, 169, 97, 0.08);
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 12px;
}

.payment-details-box strong {
  color: var(--navy-800);
  font-family: var(--font-display);
  font-size: 1rem;
  display: block;
  margin-bottom: 6px;
}

.payment-details-box p {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  background: var(--white);
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid var(--line);
  word-break: break-all;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--navy-800);
}

.timer-text {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--danger);
  font-size: 1.05rem;
}

.paid-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 12px;
  padding: 10px 16px;
  background: var(--success);
  color: var(--white);
  border-radius: 99px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}

.paid-btn:hover {
  background: #22523c;
}

.paid-btn:disabled {
  background: var(--muted);
  cursor: not-allowed;
  opacity: 0.8;
}

.file-upload-box {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.file-upload-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1.4;
}

.file-upload-input {
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  width: 100%;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--muted);
}

.file-upload-input::file-selector-button {
  background: var(--navy-800);
  color: var(--cream-100);
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 600;
  margin-right: 10px;
  cursor: pointer;
  transition: background 0.2s;
}

.file-upload-input::file-selector-button:hover {
  background: var(--navy-900);
}

/* ============================================================
   Support chat — mobile alignment fixes
   ============================================================ */
@media (max-width: 640px) {
  .chat-head {
    padding: 14px 16px;
    gap: 10px;
  }

  .chat-head h3 {
    font-size: 0.95rem;
  }

  .chat-input-wrap {
    padding: 10px 12px;
    gap: 8px;
  }

  .chat-input {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .chat-send-btn {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    gap: 0;
    flex-shrink: 0;
  }

  .chat-send-label {
    display: none;
  }
}

/* ============================================================
   MOBILE HARDENING — prevent layout from bleeding past viewport
   ============================================================ */
html,
body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

* {
  max-width: 100%;
}

img,
video,
iframe,
svg {
  max-width: 100%;
  height: auto;
}

.container {
  box-sizing: border-box;
}

/* Phone — tighter section padding and container gutters */
@media (max-width: 600px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  section {
    padding: clamp(48px, 12vw, 80px) 0;
  }

  /* prevent any nested grids/flex from forcing overflow */
  .hero-grid,
  .split {
    grid-template-columns: 1fr !important;
  }
}

/* Tiny phone — even tighter */
@media (max-width: 380px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* ============================================================
   Security Feature Popup — compact, locked, professional
   Static bottom-right card across every device.
   ============================================================ */
.security-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  max-width: calc(100vw - 32px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.security-popup.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.security-popup-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--cream-100);
  overflow: hidden;
  line-height: 0;
}

.security-popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.security-popup-image img.is-loaded {
  opacity: 1;
}

.security-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: rgba(10, 37, 64, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  z-index: 3;
  padding: 0;
}

.security-popup-close:hover {
  background: rgba(10, 37, 64, 0.88);
  transform: scale(1.06);
}

.security-popup-close:active {
  transform: scale(0.96);
}

.security-popup-close:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
}

.security-popup-progress {
  position: relative;
  height: 3px;
  background: var(--line);
}

.security-popup-progress-bar {
  position: absolute;
  inset: 0 100% 0 0;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
}

/* Tablet */
@media (max-width: 900px) {
  .security-popup {
    width: 280px;
    bottom: 16px;
    right: 16px;
  }
}

/* Phone */
@media (max-width: 600px) {
  .security-popup {
    width: 240px;
    bottom: 14px;
    right: 14px;
    border-radius: var(--radius-md);
  }

  .security-popup-close {
    width: 26px;
    height: 26px;
    top: 6px;
    right: 6px;
  }
}

/* Small phone */
@media (max-width: 400px) {
  .security-popup {
    width: 220px;
    bottom: 12px;
    right: 12px;
  }

  .security-popup-close {
    width: 24px;
    height: 24px;
  }

  .security-popup-close svg {
    width: 12px;
    height: 12px;
  }
}

/* Tiny phone */
@media (max-width: 340px) {
  .security-popup {
    width: 200px;
    bottom: 10px;
    right: 10px;
  }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .security-popup {
    transition: opacity 0.3s ease;
    transform: none;
  }

  .security-popup.is-visible {
    transform: none;
  }

  .security-popup-progress-bar {
    transition: none !important;
  }
}

/* ============================================================
   NET BANK — Banking & Recovery — Design System
   Aesthetic: Modern American institutional banking.
   Palette: Deep navy + warm gold + ivory.
   ============================================================ */

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

:root {
  /* Core palette */
  --navy-900: #061629;
  --navy-800: #0A2540;
  --navy-700: #103358;
  --navy-600: #1B4474;
  --navy-500: #2C5282;
  --navy-100: #E5EAF1;

  --gold-700: #8C7340;
  --gold-600: #A88A4F;
  --gold-500: #C9A961;
  --gold-400: #DBC084;
  --gold-300: #E8D4A6;
  --gold-100: #F4ECD8;

  --cream-100: #F5F1E8;
  --cream-50: #FAF8F2;
  --ivory: #FCFBF8;
  --white: #FFFFFF;

  --ink: #0A2540;
  --ink-soft: #2A3A52;
  --muted: #5C6878;
  --muted-soft: #8A95A6;
  --line: #E8E4DA;
  --line-strong: #D6CFBF;

  --success: #2D6A4F;
  --danger: #8B2942;

  /* Typography — Real US-bank institutional sans */
  --font-display: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Sizing */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.04), 0 1px 3px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 4px 12px rgba(10, 37, 64, 0.06), 0 2px 4px rgba(10, 37, 64, 0.04);
  --shadow-lg: 0 24px 48px -12px rgba(10, 37, 64, 0.14), 0 8px 20px -8px rgba(10, 37, 64, 0.10);
  --shadow-gold: 0 12px 28px -10px rgba(201, 169, 97, 0.5);

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);

  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Base resets & layout retained from original code for brevity... */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--gold-500);
  color: var(--navy-900);
}

.display,
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.022em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

/* --- Dashboard / Support layout overrides --- */
.dash {
  background: var(--cream-50);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
}

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

.dash-aside {
  background: var(--navy-900);
  color: var(--cream-100);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: 0;
  height: 100vh;
}

@media (max-width: 880px) {
  .dash-aside {
    position: static;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding: 16px 18px;
  }
}

.dash-aside-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 30px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(245, 241, 232, 0.1);
}

@media (max-width: 880px) {
  .dash-aside-brand {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    margin-right: auto;
  }
}

.brand-mark {
  width: 44px;
  height: 44px;
  background: var(--cream-100);
  color: var(--navy-800);
  border-radius: 10px;
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.brand-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid var(--gold-500);
  border-radius: 7px;
  opacity: 0.7;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream-100);
}

.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--gold-400);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}

.dash-aside h6 {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600;
  margin: 22px 8px 10px;
}

@media (max-width: 880px) {
  .dash-aside h6 {
    display: none;
  }
}

.dash-nav-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 18px;
}

@media (max-width: 880px) {
  .dash-nav-group {
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 0;
    gap: 4px;
  }
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: rgba(245, 241, 232, 0.75);
  font-weight: 500;
  transition: all var(--transition);
}

.dash-nav-item:hover {
  background: rgba(245, 241, 232, 0.06);
  color: var(--cream-100);
}

.dash-nav-item.active {
  background: var(--navy-700);
  color: var(--gold-400);
}

@media (max-width: 880px) {
  .dash-nav-item {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}

.dash-main {
  padding: clamp(24px, 4vw, 44px);
  overflow-x: hidden;
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.dash-top h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy-800);
  margin-bottom: 4px;
}

.dash-top p {
  color: var(--muted);
  font-size: 0.95rem;
}

.dash-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dash-user-info {
  line-height: 1.3;
  font-size: 0.88rem;
  text-align: right;
}

.dash-user-info strong {
  color: var(--navy-800);
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
}

.dash-user-info span {
  color: var(--muted);
  font-size: 0.78rem;
}

.dash-user-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  display: grid;
  place-items: center;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-weight: 600;
}

.dash-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.dash-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.dash-card-head h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy-800);
  font-weight: 500;
}

.support-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

@media (max-width: 1080px) {
  .support-layout {
    grid-template-columns: 1fr;
  }
}

.support-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 24px;
}

/* Support Chat UI */
.chat-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  height: calc(100vh - 220px);
  min-height: 560px;
}

@media (max-width: 640px) {
  .chat-card {
    height: calc(100vh - 280px);
    min-height: 480px;
  }
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.chat-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: var(--gold-400);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
}

.chat-head h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy-800);
  font-weight: 600;
  margin-bottom: 2px;
}

.chat-status {
  font-size: 0.78rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.chat-status-dot {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.15);
  }
}

.chat-clear-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--muted);
  transition: all var(--transition);
  display: grid;
  place-items: center;
}

.chat-clear-btn:hover {
  background: var(--cream-50);
  color: var(--danger);
}

.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 22px 24px;
  background: var(--cream-50);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chat-msg {
  display: flex;
  gap: 10px;
  max-width: 85%;
  animation: chatIn 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes chatIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-msg.from-user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.chat-msg-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-display);
}

.chat-msg.from-bot .chat-msg-avatar {
  background: var(--navy-800);
  color: var(--gold-400);
}

.chat-msg.from-user .chat-msg-avatar {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900);
}

.chat-msg-bubble {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--navy-800);
  background: var(--white);
  border: 1px solid var(--line);
}

.chat-msg.from-user .chat-msg-bubble {
  background: var(--navy-800);
  color: var(--cream-100);
  border-color: var(--navy-800);
}

.chat-msg-bubble strong {
  font-weight: 600;
  color: inherit;
}

.chat-msg-time {
  display: block;
  margin-top: 4px;
  font-size: 0.7rem;
  color: var(--muted-soft);
}

.chat-msg.from-user .chat-msg-time {
  text-align: right;
}

.chat-msg-typing .chat-msg-bubble {
  display: flex;
  gap: 4px;
  padding: 14px 18px;
}

.chat-typing-dot {
  width: 6px;
  height: 6px;
  background: var(--muted-soft);
  border-radius: 50%;
  animation: chatTyping 1.2s infinite ease-in-out;
}

.chat-typing-dot:nth-child(2) {
  animation-delay: 0.15s;
}

.chat-typing-dot:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes chatTyping {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }

  30% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

.chat-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.chat-input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 11px 18px;
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 0.94rem;
  color: var(--navy-800);
  outline: none;
  transition: all var(--transition);
}

.chat-input:focus {
  background: var(--white);
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.06);
}

.chat-send-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 11px 20px;
  background: var(--navy-800);
  color: var(--cream-100);
  border: 0;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: all var(--transition);
}

.chat-send-btn:hover {
  background: var(--navy-900);
}

.chat-send-btn svg {
  flex-shrink: 0;
}

/* --- Support channel lists --- */
.support-channel-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.support-channel-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.support-channel-list li:last-child {
  border-bottom: none;
}

.support-channel-list strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy-800);
  margin-bottom: 2px;
  font-weight: 600;
}

.support-channel-list span {
  font-size: 0.82rem;
  color: var(--muted);
}

.support-channel-icon {
  width: 32px;
  height: 32px;
  background: var(--cream-50);
  color: var(--navy-800);
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.security-tip {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: rgba(201, 169, 97, 0.08);
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: var(--radius-md);
}

.security-tip-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(201, 169, 97, 0.18);
  color: var(--gold-700);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.security-tip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--navy-800);
  margin-bottom: 4px;
  font-weight: 600;
}

.security-tip p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ============================================================
   TOLIC CUSTOM AI BILLING / PAYMENT STYLES
   ============================================================ */
.payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.pay-btn {
  padding: 8px 14px;
  background: var(--cream-50);
  color: var(--navy-800);
  border: 1px solid var(--gold-500);
  border-radius: 99px;
  font-size: 0.85rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}

.pay-btn:hover {
  background: var(--gold-500);
  color: var(--navy-900);
}

.pay-btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.payment-details-box {
  background: rgba(201, 169, 97, 0.08);
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 12px;
}

.payment-details-box strong {
  color: var(--navy-800);
  font-family: var(--font-display);
  font-size: 1rem;
  display: block;
  margin-bottom: 6px;
}

.payment-details-box p {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  background: var(--white);
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid var(--line);
  word-break: break-all;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--navy-800);
}

.timer-text {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--danger);
  font-size: 1.05rem;
}

.paid-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 12px;
  padding: 10px 16px;
  background: var(--success);
  color: var(--white);
  border-radius: 99px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}

.paid-btn:hover {
  background: #22523c;
}

.paid-btn:disabled {
  background: var(--muted);
  cursor: not-allowed;
  opacity: 0.8;
}

.file-upload-box {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.file-upload-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1.4;
}

.file-upload-input {
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  width: 100%;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--muted);
}

.file-upload-input::file-selector-button {
  background: var(--navy-800);
  color: var(--cream-100);
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 600;
  margin-right: 10px;
  cursor: pointer;
  transition: background 0.2s;
}

.file-upload-input::file-selector-button:hover {
  background: var(--navy-900);
}

/* ============================================================
   Support chat — mobile alignment fixes
   ============================================================ */
@media (max-width: 640px) {
  .chat-head {
    padding: 14px 16px;
    gap: 10px;
  }

  .chat-head h3 {
    font-size: 0.95rem;
  }

  .chat-input-wrap {
    padding: 10px 12px;
    gap: 8px;
  }

  .chat-input {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .chat-send-btn {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    gap: 0;
    flex-shrink: 0;
  }

  .chat-send-label {
    display: none;
  }
}

/* ============================================================
   MOBILE HARDENING — prevent layout from bleeding past viewport
   ============================================================ */
html,
body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

* {
  max-width: 100%;
}

img,
video,
iframe,
svg {
  max-width: 100%;
  height: auto;
}

.container {
  box-sizing: border-box;
}

/* Phone — tighter section padding and container gutters */
@media (max-width: 600px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  section {
    padding: clamp(48px, 12vw, 80px) 0;
  }

  /* prevent any nested grids/flex from forcing overflow */
  .hero-grid,
  .split {
    grid-template-columns: 1fr !important;
  }
}

/* Tiny phone — even tighter */
@media (max-width: 380px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* ============================================================
   Security Feature Popup — compact, locked, professional
   Static bottom-right card across every device.
   ============================================================ */
.security-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  max-width: calc(100vw - 32px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.security-popup.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.security-popup-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--cream-100);
  overflow: hidden;
  line-height: 0;
}

.security-popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.security-popup-image img.is-loaded {
  opacity: 1;
}

.security-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: rgba(10, 37, 64, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  z-index: 3;
  padding: 0;
}

.security-popup-close:hover {
  background: rgba(10, 37, 64, 0.88);
  transform: scale(1.06);
}

.security-popup-close:active {
  transform: scale(0.96);
}

.security-popup-close:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
}

.security-popup-progress {
  position: relative;
  height: 3px;
  background: var(--line);
}

.security-popup-progress-bar {
  position: absolute;
  inset: 0 100% 0 0;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
}

/* Tablet */
@media (max-width: 900px) {
  .security-popup {
    width: 280px;
    bottom: 16px;
    right: 16px;
  }
}

/* Phone */
@media (max-width: 600px) {
  .security-popup {
    width: 240px;
    bottom: 14px;
    right: 14px;
    border-radius: var(--radius-md);
  }

  .security-popup-close {
    width: 26px;
    height: 26px;
    top: 6px;
    right: 6px;
  }
}

/* Small phone */
@media (max-width: 400px) {
  .security-popup {
    width: 220px;
    bottom: 12px;
    right: 12px;
  }

  .security-popup-close {
    width: 24px;
    height: 24px;
  }

  .security-popup-close svg {
    width: 12px;
    height: 12px;
  }
}

/* Tiny phone */
@media (max-width: 340px) {
  .security-popup {
    width: 200px;
    bottom: 10px;
    right: 10px;
  }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .security-popup {
    transition: opacity 0.3s ease;
    transform: none;
  }

  .security-popup.is-visible {
    transform: none;
  }

  .security-popup-progress-bar {
    transition: none !important;
  }
}