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

:root {
  --wm-bg: #f4ede3;
  --wm-bg-soft: #fbf6ef;
  --wm-surface: rgba(255, 251, 245, 0.9);
  --wm-surface-strong: #fffaf2;
  --wm-ink: #2f2419;
  --wm-muted: #6f5a47;
  --wm-line: rgba(91, 67, 44, 0.14);
  --wm-accent: #8a5a2b;
  --wm-accent-strong: #6f431c;
  --wm-accent-soft: #d9c1a6;
  --wm-forest: #2f4d3a;
  --wm-gold: #c98e43;
  --wm-shadow: 0 24px 60px rgba(67, 44, 26, 0.12);
  --wm-radius-lg: 28px;
  --wm-radius-md: 18px;
  --wm-radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--wm-ink);
  background:
    radial-gradient(circle at top left, rgba(201, 142, 67, 0.22), transparent 24%),
    radial-gradient(circle at bottom right, rgba(47, 77, 58, 0.16), transparent 24%),
    linear-gradient(135deg, #efe3d3 0%, #f9f4ec 55%, #efe7dc 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background:
    repeating-linear-gradient(
      115deg,
      rgba(111, 67, 28, 0.04) 0,
      rgba(111, 67, 28, 0.04) 12px,
      rgba(255, 255, 255, 0) 12px,
      rgba(255, 255, 255, 0) 36px
    );
}

body::after {
  content: "";
  position: fixed;
  inset: auto auto 6% 4%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(47, 77, 58, 0.14), rgba(47, 77, 58, 0));
  filter: blur(6px);
  animation: wmFloat 16s ease-in-out infinite;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand strong,
.wm-display {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--wm-ink);
}

a {
  color: var(--wm-accent-strong);
  text-decoration: none;
}

a:hover {
  color: #4f2e13;
}

img {
  max-width: 100%;
}

.wm-auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 14px;
}

.wm-auth-shell {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: 28px;
}

.wm-auth-feature,
.wm-auth-panel,
.wm-panel,
.card,
.profile-card,
.action-card,
.user-details,
.container > .card,
.info-section,
.investment-info,
.testimonials,
.faq {
  border: 1px solid var(--wm-line);
  box-shadow: var(--wm-shadow);
  border-radius: var(--wm-radius-lg);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(248, 241, 232, 0.92));
  backdrop-filter: blur(12px);
}

.wm-auth-feature,
.wm-auth-panel,
.wm-panel,
.wm-page-header,
.wm-hero-card,
.wm-kpi,
.card,
.profile-card,
.action-card,
.user-details {
  animation: wmRise 0.7s ease both;
}

.wm-auth-feature {
  padding: 42px;
  position: relative;
  overflow: hidden;
  min-height: 620px;
}

.wm-auth-feature::after {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 142, 67, 0.36), rgba(201, 142, 67, 0));
}

.wm-auth-feature::before,
.wm-page-header::before,
.wm-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.18), transparent 28%),
    repeating-linear-gradient(
      -35deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 12px,
      rgba(255, 255, 255, 0) 12px,
      rgba(255, 255, 255, 0) 34px
    );
  opacity: 0.65;
}

.wm-auth-panel {
  padding: 34px 30px;
  align-self: center;
}

.wm-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(111, 67, 28, 0.09);
  color: var(--wm-accent-strong);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.wm-feature-list,
.wm-mini-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.wm-feature-list li,
.wm-mini-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--wm-muted);
}

.wm-feature-list i,
.wm-mini-list i {
  color: var(--wm-forest);
  margin-top: 4px;
}

.wm-auth-title {
  font-size: clamp(2.3rem, 3vw, 4.2rem);
  line-height: 1.02;
  margin: 20px 0 14px;
}

.wm-auth-copy {
  color: var(--wm-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 580px;
}

.wm-auth-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.wm-stat {
  padding: 18px 16px;
  border-radius: var(--wm-radius-md);
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(111, 67, 28, 0.1);
}

.wm-stat strong {
  display: block;
  font-size: 1.35rem;
  color: var(--wm-accent-strong);
}

.wm-stat span {
  font-size: 0.9rem;
  color: var(--wm-muted);
}

.wm-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.wm-brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--wm-accent), var(--wm-accent-strong));
  color: #fff8ef;
  box-shadow: 0 16px 30px rgba(111, 67, 28, 0.24);
}

.wm-brand-mark i {
  font-size: 1.35rem;
}

.wm-brand-badge small,
.wm-navbar .navbar-brand small {
  display: block;
  color: var(--wm-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wm-brand-badge strong,
.wm-navbar .navbar-brand strong {
  display: block;
  font-size: 1.3rem;
}

.wm-form-title {
  font-size: 2rem;
  margin-bottom: 8px;
}

.wm-form-lead {
  color: var(--wm-muted);
  margin-bottom: 22px;
}

.wm-auth-panel .form-label,
.wm-page .form-label {
  font-weight: 700;
  color: var(--wm-ink);
}

.wm-auth-panel .form-control,
.wm-auth-panel .form-select,
.wm-page .form-control,
.wm-page .form-select,
.panel-body .form-control,
.panel-body .form-control:focus {
  border-radius: 16px;
  border: 1px solid rgba(111, 67, 28, 0.18);
  background: rgba(255, 255, 255, 0.78);
  padding: 14px 16px;
  min-height: 52px;
  color: var(--wm-ink);
  box-shadow: none;
}

.wm-auth-panel .form-control:focus,
.wm-auth-panel .form-select:focus,
.wm-page .form-control:focus,
.wm-page .form-select:focus {
  border-color: rgba(111, 67, 28, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(138, 90, 43, 0.14);
}

.btn,
button,
.btn-primary,
.btn-secondary,
.btn-outline-primary {
  border-radius: 999px !important;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.btn-primary,
.wm-btn-primary {
  background: linear-gradient(135deg, var(--wm-accent), var(--wm-accent-strong));
  border: none;
  color: #fff9f1;
  box-shadow: 0 16px 28px rgba(111, 67, 28, 0.2);
}

.btn-primary:hover,
.wm-btn-primary:hover {
  background: linear-gradient(135deg, #9b6837, #5e3818);
  color: #fffdf8;
}

.btn-secondary,
.wm-btn-secondary {
  background: rgba(47, 77, 58, 0.1);
  color: var(--wm-forest);
  border: 1px solid rgba(47, 77, 58, 0.18);
}

.btn-secondary:hover,
.wm-btn-secondary:hover {
  background: rgba(47, 77, 58, 0.18);
  color: #203628;
}

.btn-outline-primary {
  color: var(--wm-accent-strong);
  border: 1px solid rgba(111, 67, 28, 0.24);
  background: rgba(255, 255, 255, 0.55);
}

.btn-outline-primary:hover {
  background: rgba(138, 90, 43, 0.1);
  color: var(--wm-accent-strong);
  border-color: rgba(111, 67, 28, 0.34);
}

.wm-navbar {
  margin: 18px auto 0;
  width: min(1280px, calc(100% - 24px));
  border-radius: 26px;
  background: rgba(255, 249, 241, 0.86);
  border: 1px solid rgba(111, 67, 28, 0.12);
  box-shadow: 0 18px 40px rgba(67, 44, 26, 0.08);
  backdrop-filter: blur(14px);
}

.wm-navbar .navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--wm-ink);
}

.wm-navbar .nav-link {
  color: var(--wm-muted) !important;
  font-weight: 700;
  padding: 12px 14px !important;
  border-radius: 999px;
}

.wm-navbar .nav-link:hover,
.wm-navbar .nav-link.active,
.wm-navbar .show > .nav-link {
  color: var(--wm-accent-strong) !important;
  background: rgba(138, 90, 43, 0.08);
}

.wm-navbar .dropdown-menu {
  border-radius: 18px;
  border: 1px solid rgba(111, 67, 28, 0.12);
  box-shadow: 0 18px 40px rgba(67, 44, 26, 0.12);
  padding: 12px;
}

.wm-navbar .dropdown-item {
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 600;
}

.wm-navbar .dropdown-item:hover {
  background: rgba(138, 90, 43, 0.08);
  color: var(--wm-accent-strong);
}

.wm-page {
  padding: 26px 0 60px;
}

.wm-shell {
  width: min(1280px, calc(100% - 24px));
  margin: 0 auto;
}

.wm-page-header,
.wm-hero-card {
  padding: 34px;
  border-radius: 34px;
  border: 1px solid var(--wm-line);
  background:
    radial-gradient(circle at top right, rgba(201, 142, 67, 0.16), transparent 24%),
    linear-gradient(140deg, rgba(63, 46, 31, 0.96), rgba(111, 67, 28, 0.9));
  color: #f9efe2;
  box-shadow: var(--wm-shadow);
}

.wm-page-header h1,
.wm-page-header h2,
.wm-page-header h3,
.wm-hero-card h1,
.wm-hero-card h2 {
  color: #fff7ef;
}

.wm-page-header p,
.wm-hero-card p {
  color: rgba(255, 244, 232, 0.82);
}

.wm-grid {
  display: grid;
  gap: 22px;
}

.wm-grid.two {
  grid-template-columns: 1.15fr 0.85fr;
}

.wm-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.wm-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.wm-kpi {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--wm-line);
  background: rgba(255, 251, 245, 0.82);
  box-shadow: 0 18px 40px rgba(67, 44, 26, 0.08);
  position: relative;
  overflow: hidden;
}

.wm-kpi::after {
  content: "";
  position: absolute;
  inset: auto -20px -32px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 142, 67, 0.18), rgba(201, 142, 67, 0));
}

.wm-kpi span {
  display: block;
  color: var(--wm-muted);
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.wm-kpi strong {
  display: block;
  font-size: 1.65rem;
  color: var(--wm-ink);
}

.wm-card,
.card,
.profile-card,
.action-card,
.user-details {
  border: 1px solid var(--wm-line);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.wm-card:hover,
.card:hover,
.profile-card:hover,
.action-card:hover,
.user-details:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(67, 44, 26, 0.14);
  border-color: rgba(111, 67, 28, 0.22);
}

.wm-card-header,
.card-header {
  border: 0;
  background: linear-gradient(135deg, rgba(138, 90, 43, 0.95), rgba(83, 51, 27, 0.92));
  color: #fff8ef !important;
  border-radius: calc(var(--wm-radius-lg) - 4px) calc(var(--wm-radius-lg) - 4px) 0 0 !important;
}

.card-title,
.card h3,
.card h4,
.card h5 {
  color: var(--wm-ink);
}

.card-icon,
.action-link i,
.wm-icon {
  color: var(--wm-accent) !important;
}

.info-section,
.investment-info,
.testimonials,
.faq {
  color: var(--wm-ink);
}

.info-section h4,
.investment-info h3,
.testimonials h3,
.faq h3 {
  color: var(--wm-ink);
}

.info-section p,
.investment-info p,
.testimonials p,
.faq p {
  color: var(--wm-muted);
}

.wm-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(47, 77, 58, 0.08);
  color: var(--wm-forest);
  font-weight: 700;
}

.wm-muted {
  color: var(--wm-muted);
}

.table {
  overflow: hidden;
  border-radius: 22px;
}

.table th {
  background: rgba(138, 90, 43, 0.92) !important;
  color: #fff9f1 !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.table td {
  vertical-align: middle;
  border-color: rgba(111, 67, 28, 0.08);
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  background-color: rgba(138, 90, 43, 0.04);
}

.alert {
  border-radius: 18px;
  border: 1px solid rgba(111, 67, 28, 0.1);
}

.progress {
  height: 14px;
  background: rgba(111, 67, 28, 0.08);
  border-radius: 999px;
}

.progress-bar {
  background: linear-gradient(90deg, var(--wm-accent), var(--wm-gold));
}

.wm-footer {
  margin: 18px auto 34px;
  width: min(1280px, calc(100% - 24px));
  border-radius: 28px;
  background: rgba(52, 39, 28, 0.96);
  color: rgba(255, 245, 232, 0.82);
  box-shadow: 0 22px 40px rgba(51, 36, 24, 0.18);
}

.wm-stack {
  display: grid;
  gap: 22px;
}

.wm-dual-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 22px;
}

.wm-triple-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.wm-surface-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--wm-line);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(248, 241, 232, 0.94));
  box-shadow: var(--wm-shadow);
  overflow: hidden;
}

.wm-surface-card::after {
  content: "";
  position: absolute;
  inset: auto auto -45px -30px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 142, 67, 0.16), rgba(201, 142, 67, 0));
}

.wm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(138, 90, 43, 0.08);
  color: var(--wm-accent-strong);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.wm-subtle {
  color: var(--wm-muted);
  line-height: 1.7;
}

.wm-info-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(111, 67, 28, 0.1);
  background: rgba(255, 255, 255, 0.56);
}

.wm-info-card h4,
.wm-info-card h5 {
  margin-bottom: 10px;
}

.wm-data-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.wm-data-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(111, 67, 28, 0.14);
}

.wm-data-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.wm-data-row span:first-child {
  color: var(--wm-muted);
  font-weight: 600;
}

.wm-data-row span:last-child {
  font-weight: 700;
  color: var(--wm-ink);
  text-align: right;
}

.wm-avatar-ring {
  width: 170px;
  height: 170px;
  margin: 0 auto;
  padding: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wm-gold), var(--wm-accent), var(--wm-forest));
  box-shadow: 0 24px 40px rgba(67, 44, 26, 0.18);
}

.wm-avatar-ring img,
.wm-avatar-ring .wm-avatar-fallback {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.wm-avatar-ring img {
  object-fit: cover;
  border: 4px solid rgba(255, 250, 242, 0.85);
}

.wm-avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff7ef, #f0dfcb);
  color: var(--wm-accent-strong);
  font-size: 3rem;
  font-weight: 800;
  border: 4px solid rgba(255, 250, 242, 0.85);
}

.wm-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.wm-action-tile {
  display: block;
  padding: 24px 20px;
  border-radius: 24px;
  border: 1px solid rgba(111, 67, 28, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(249, 241, 232, 0.74));
  box-shadow: 0 18px 36px rgba(67, 44, 26, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.wm-action-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 52px rgba(67, 44, 26, 0.14);
  border-color: rgba(111, 67, 28, 0.22);
}

.wm-action-tile i {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(138, 90, 43, 0.12), rgba(47, 77, 58, 0.12));
  color: var(--wm-accent-strong);
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.wm-action-tile strong {
  display: block;
  font-size: 1.05rem;
  color: var(--wm-ink);
  margin-bottom: 6px;
}

.wm-action-tile span {
  display: block;
  color: var(--wm-muted);
  line-height: 1.6;
}

.wm-form-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(111, 67, 28, 0.12);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(248, 241, 232, 0.92));
  box-shadow: var(--wm-shadow);
}

.wm-form-card h3,
.wm-form-card h4 {
  margin-bottom: 8px;
}

.wm-form-card p {
  color: var(--wm-muted);
}

.wm-form-stack {
  display: grid;
  gap: 22px;
}

.wm-record-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(111, 67, 28, 0.1);
  background: rgba(255, 255, 255, 0.62);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.wm-record-card + .wm-record-card {
  margin-top: 14px;
}

.wm-record-card:hover {
  transform: translateY(-3px);
  border-color: rgba(111, 67, 28, 0.18);
  box-shadow: 0 22px 42px rgba(67, 44, 26, 0.1);
}

.wm-record-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.wm-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(138, 90, 43, 0.1);
  color: var(--wm-accent-strong);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.wm-pill-success {
  background: rgba(47, 77, 58, 0.12);
  color: var(--wm-forest);
}

.wm-pill-warning {
  background: rgba(201, 142, 67, 0.14);
  color: #925d17;
}

.wm-pill-danger {
  background: rgba(168, 58, 47, 0.12);
  color: #a83a2f;
}

.wm-record-meta {
  display: grid;
  gap: 8px;
}

.wm-record-meta div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--wm-muted);
}

.wm-record-meta strong {
  color: var(--wm-ink);
}

.wm-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wm-modal-card .modal-content {
  border-radius: 26px;
  border: 1px solid rgba(111, 67, 28, 0.12);
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(67, 44, 26, 0.16);
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(245, 236, 226, 0.96));
}

.wm-modal-card .modal-header {
  background: linear-gradient(135deg, var(--wm-accent), var(--wm-accent-strong));
  color: #fff9f1;
}

.wm-modal-card .modal-body {
  background:
    radial-gradient(circle at top right, rgba(201, 142, 67, 0.12), transparent 34%),
    rgba(255, 250, 243, 0.92);
}

.wm-page .container {
  width: min(1280px, calc(100% - 24px));
  margin-left: auto;
  margin-right: auto;
}

input[type="file"].form-control {
  padding: 12px 14px;
}

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

.progress {
  height: 13px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(111, 67, 28, 0.08);
}

.progress-bar {
  background: linear-gradient(135deg, var(--wm-gold), var(--wm-accent-strong));
}

.form-check-input {
  width: 3.2rem;
  height: 1.7rem;
  border-color: rgba(111, 67, 28, 0.22);
  background-color: rgba(111, 67, 28, 0.12);
  box-shadow: none !important;
}

.form-check-input:focus {
  border-color: rgba(111, 67, 28, 0.34);
}

.form-check-input:checked {
  background-color: var(--wm-forest);
  border-color: var(--wm-forest);
}

.alert {
  border: 1px solid rgba(111, 67, 28, 0.12);
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(67, 44, 26, 0.08);
}

.alert-success {
  color: #204e33;
  background: rgba(201, 236, 214, 0.92);
  border-color: rgba(47, 77, 58, 0.16);
}

.alert-danger {
  color: #7d2c22;
  background: rgba(247, 217, 213, 0.94);
  border-color: rgba(168, 58, 47, 0.18);
}

.alert-warning {
  color: #74470d;
  background: rgba(252, 236, 205, 0.94);
  border-color: rgba(201, 142, 67, 0.22);
}

.text-muted {
  color: var(--wm-muted) !important;
}

@keyframes wmFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(12px, -18px, 0);
  }
}

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

.wm-footer a {
  color: rgba(255, 245, 232, 0.92);
}

.wm-footer a:hover {
  color: #fff;
}

.wm-footer-inner {
  padding: 28px 30px;
}

.wm-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 20px;
}

.wm-empty {
  padding: 32px;
  text-align: center;
  border-radius: 24px;
  border: 1px dashed rgba(111, 67, 28, 0.22);
  color: var(--wm-muted);
  background: rgba(255, 255, 255, 0.4);
}

.wm-carousel-card img,
.card-img-top {
  border-radius: 22px 22px 0 0;
  object-fit: cover;
}

.wm-carousel-card .card-body {
  padding: 22px;
}

.wm-link-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.wm-auth-note {
  color: var(--wm-muted);
  font-size: 0.95rem;
}

.wm-auth-note a {
  font-weight: 700;
}

.wm-highlight {
  color: var(--wm-gold);
}

.wm-panel {
  padding: 28px;
}

.wm-split-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.wm-mini-card {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(111, 67, 28, 0.1);
}

.wm-mini-card strong {
  display: block;
  margin-top: 6px;
  font-size: 1.5rem;
}

.call-center-icon .btn {
  background: linear-gradient(135deg, var(--wm-accent), var(--wm-accent-strong)) !important;
  border: 0;
}

@media (max-width: 991px) {
  .wm-auth-shell,
  .wm-grid.two,
  .wm-grid.three,
  .wm-split-card,
  .wm-footer-grid,
  .wm-dual-grid,
  .wm-triple-grid,
  .wm-action-grid {
    grid-template-columns: 1fr;
  }

  .wm-kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wm-auth-feature {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .wm-auth-page {
    padding: 16px 10px;
  }

  .wm-auth-feature,
  .wm-auth-panel,
  .wm-page-header,
  .wm-hero-card,
  .wm-panel,
  .wm-form-card,
  .wm-surface-card,
  .container,
  .card-body {
    padding: 22px !important;
  }

  .wm-kpi-grid,
  .wm-auth-stats {
    grid-template-columns: 1fr;
  }

  .wm-navbar {
    width: calc(100% - 16px);
  }

  .wm-shell,
  .wm-footer {
    width: calc(100% - 16px);
  }

  .wm-footer-inner {
    padding: 22px;
  }
}
