:root {
  --brand: #27cfe2;
  --brand-dark: #17bfd1;
  --brand-soft: #e7fbff;
  --ink: #152235;
  --ink-soft: #5f7189;
  --ink-muted: #8fa0b6;
  --line: #e5edf4;
  --line-strong: #d9e3ee;
  --surface: #f5f8fb;
  --surface-alt: #eef5f8;
  --white: #ffffff;
  --success-bg: #dcf8e4;
  --success-text: #35a859;
  --warning-bg: #ffeab7;
  --warning-text: #d58a00;
  --danger-bg: #ffd8de;
  --danger-text: #e25d75;
  --info-bg: #daf7fb;
  --info-text: #5fb5d0;
  --sidebar-width: 250px;
  --header-shadow: 0 10px 35px rgba(34, 61, 92, 0.06);
  --card-shadow: 0 18px 42px rgba(26, 66, 105, 0.08);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 26px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

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

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

p {
  color: var(--ink-soft);
}

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

.text-secondary {
  color: var(--ink-soft) !important;
}

.bg-body-tertiary {
  background: #f5f8fc !important;
}

.page-title {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
}

.section-title {
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  font-weight: 800;
}

.page-subtitle {
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.app-shell {
  min-height: 100vh;
  background: var(--surface);
}

.app-main {
  min-width: 0;
  flex: 1 1 auto;
}

.app-shell--wide .app-main {
  width: 100%;
}

.app-content {
  padding: 0 0 2rem;
}

.page-shell {
  max-width: var(--container);
  margin: 0 auto;
}

.page-shell--narrow {
  max-width: 820px;
}

.card,
.shadow-soft,
.receipt-box,
.upload-box,
.detail-box,
.interest-box,
.location-strip,
.info-note {
  box-shadow: var(--card-shadow);
}

.card,
.profile-summary-card,
.match-card,
.request-card,
.conversation-panel,
.chat-panel,
.detail-panel,
.payment-success-card,
.form-surface,
.support-card,
.summary-card {
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-md) !important;
  background: var(--white);
  box-shadow: var(--card-shadow);
}

.top-strip {
  background: var(--brand);
  min-height: 34px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-strip-row {
  font-size: 0.58rem;
}

.header-strip-item,
.header-strip-link {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.82rem;
}

.header-strip-link {
  transition: opacity 0.2s ease;
}

.header-strip-link:hover {
  opacity: 0.76;
}

.header-main {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.header-copy {
  min-width: 220px;
}

.header-title {
  margin: 0;
  font-size: clamp(1.15rem, 1.55vw, 1.75rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--ink);
}

.header-subtitle {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.header-actions {
  /* width: 100%; */
  gap: 0.55rem !important;
}

.ui-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.search-pill {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: min(100%, 280px);
  max-width: 280px;
  min-height: 44px;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--white);
  transition: all 0.2s ease;
}

.search-pill:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-soft);
}

.search-pill-icon {
  color: #a0b0c2;
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
}

.search-pill .form-control {
  padding: 0;
  font-size: 0.78rem;
  color: var(--ink);
  min-height: auto;
  line-height: 1.2;
}

.search-pill .form-control::placeholder {
  color: #b1bfd0;
}

.header-match-btn,
.btn-brand {
  min-height: 48px;
  padding: 0.72rem 1.5rem;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #31d6e8 0%, #1ac8dd 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(39, 207, 226, 0.22);
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: normal;
}

.header-match-btn:hover,
.btn-brand:hover,
.btn-brand:focus {
  background: linear-gradient(180deg, #22c9de 0%, #11bdd1 100%);
  color: #fff;
}

.btn-outline-brand {
  min-height: 48px;
  padding: 0.72rem 1.5rem;
  border: 1px solid #caeaf0;
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: normal;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  background: #f7fcfd;
  color: var(--ink);
}

.header-lang-btn {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.84rem;
  padding: 0.68rem 0.9rem;
}

.header-match-btn {
  min-height: 38px;
  padding: 0.52rem 0.95rem;
  font-size: 0.8rem;
  border-radius: 10px;
}

.header-lang-btn {
  min-height: 38px;
  padding: 0.5rem 0.72rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

.header-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid #f7fbfe;
  box-shadow: 0 0 0 1px rgba(39, 207, 226, 0.2);
}

.header-user-btn {
  text-decoration: none;
  font-family: inherit;
  transition: all 0.2s;
}

.header-user-btn:hover {
  background-color: #f8fafc !important;
  border-color: #cbd5e1 !important;
  transform: translateY(-1px);
}

.header-user-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.header-user-name {
  color: #1a2b3c;
  line-height: 1.2;
}

.header-user-role {
  font-weight: 500;
  text-transform: capitalize;
}

.header-user-menu {
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(22, 44, 71, 0.12);
}

.header-user-menu .dropdown-item {
  padding: 0.8rem 1rem;
  font-weight: 600;
}

.header-user-menu .dropdown-item:hover {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.sidebar {
  width: var(--sidebar-width);
  min-width: var(--sidebar-width);
  flex: 0 0 var(--sidebar-width);
  min-height: 100vh;
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.sidebar-brand {
  padding: 1.5rem 1rem 1.25rem;
}

.sidebar-brand__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #1a2b3c;
}

.sidebar-brand__mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.sidebar-brand__name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
}

.brand-mark,
.brand-mark--small {
  position: relative;
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(180deg, #31d6e8 0%, #18c8db 100%);
  box-shadow: inset 0 -10px 16px rgba(6, 135, 148, 0.18);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark--small::before,
.brand-mark--small::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 3px;
}

.brand-mark::before,
.brand-mark--small::before {
  width: 14px;
  height: 5px;
  left: 8px;
  top: 15px;
}

.brand-mark::after,
.brand-mark--small::after {
  width: 5px;
  height: 14px;
  left: 15px;
  top: 8px;
}

.brand-mark--small {
  width: 28px;
  height: 28px;
  border-radius: 9px;
}

.brand-mark--small::before {
  width: 11px;
  height: 4px;
  left: 6px;
  top: 12px;
}

.brand-mark--small::after {
  width: 4px;
  height: 11px;
  left: 12px;
  top: 6px;
}

.brand-logo {
  width: 36px;
  height: 36px;
  display: inline-block;
  flex-shrink: 0;
}

.brand-logo--sm {
  width: 28px;
  height: 28px;
}

.sidebar-brand__name {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.sidebar-brand__sub {
  margin-top: 0.12rem;
  color: var(--ink-muted);
  font-size: 0.68rem;
}

.sidebar-nav {
  padding: 0.9rem 0.7rem 1rem;
}

.sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.45rem;
  padding: 0.78rem 0.9rem;
  border-radius: 12px;
  color: #4d6078;
  font-weight: 700;
  font-size: 0.92rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.sidebar-link__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sidebar-link__icon {
  width: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #65758d;
}

.sidebar-link:hover,
.sidebar-link.active {
  background: #e0faff;
  color: #00d1e5;
}

.sidebar-link.active .sidebar-link__icon,
.sidebar-link:hover .sidebar-link__icon {
  color: #00d1e5;
}

.sidebar-link--logout {
  color: #ff5b5b;
}

.sidebar-link--logout .sidebar-link__icon {
  color: #ff5b5b;
}

.sidebar-link--logout:hover {
  background: #fff5f5;
  color: #ff3b3b;
}

.sidebar-divider {
  margin: 0.8rem 1rem;
  opacity: 0.08;
  border-top: 1px solid #000;
}

.sidebar-badge {
  min-width: 24px;
  height: 24px;
  padding: 0 0.45rem;
  border-radius: 999px;
  background: #c8f5fc;
  color: var(--brand-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
}

.sidebar-profile {
  padding: 1rem;
  margin: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfdff 0%, #f4f8fb 100%);
}

.sidebar-profile__name {
  font-size: 1rem;
  font-weight: 700;
}

.sidebar-profile__role {
  color: var(--ink-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sidebar-profile__logout {
  color: #92a1b5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.avatar {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
}

.avatar-sm {
  width: 34px;
  height: 34px;
}

.avatar-md {
  width: 42px;
  height: 42px;
}

.avatar-xl {
  width: 88px;
  height: 88px;
}

.avatar-xxl {
  width: 118px;
  height: 118px;
}

.profile-ring {
  padding: 3px;
  background: linear-gradient(180deg, #3fdced 0%, #23c7da 100%);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 28px;
  padding: 0.15rem 0.72rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.chip-brand {
  background: #e8fbff;
  color: var(--brand-dark);
}

.chip-muted {
  background: #f3f6fb;
  color: #71829a;
}

.chip-outline {
  background: var(--white);
  border: 1px dashed #d4ddea;
  color: #95a4b8;
}

.badge {
  font-weight: 800;
}

.status-badge,
.badge-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.status-badge--pending,
.badge-soft--pending {
  background: var(--warning-bg);
  color: var(--warning-text);
}

.status-badge--approved,
.badge-soft--approved {
  background: var(--success-bg);
  color: var(--success-text);
}

.status-badge--completed,
.badge-soft--completed {
  background: var(--info-bg);
  color: var(--info-text);
}

.status-badge--rejected,
.badge-soft--rejected {
  background: var(--danger-bg);
  color: var(--danger-text);
}

.status-badge--review {
  background: #dff7fb;
  color: #69b9cd;
}

.profile-summary-card .card-body,
.profile-summary-card__inner {
  padding: 1.55rem 1.65rem;
}

.profile-summary-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.profile-summary-card__meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.profile-summary-card__heading {
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 300;
  margin-bottom: 0.25rem;
}

.profile-summary-card__subline {
  margin-bottom: 0.55rem;
  font-size: 1rem;
}

.match-card .card-body {
  padding: 1.2rem;
}

.swap-interest-card {
  background: linear-gradient(180deg, #32d4e8 0%, #1ec6dc 100%);
}

.match-avatar {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 16px;
}

.match-card__name {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.location-strip {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: #f7fafc;
  border: 1px solid var(--line);
  box-shadow: none;
}

.location-strip__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
}

.location-strip__label {
  color: #9caabd;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.location-strip__city {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.matches-filter {
  padding: 1.7rem;
}

.filter-label {
  margin-bottom: 0.85rem;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
}

.request-tabs {
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.request-tabs .nav-link {
  border: 0;
  border-bottom: 3px solid transparent;
  padding: 0 0 1rem;
  background: transparent;
  color: #71829a;
  font-weight: 800;
  border-radius: 0;
}

.request-tabs .nav-link.active {
  background: transparent;
  color: var(--ink);
  border-bottom-color: var(--brand);
}

.request-card .card-body {
  padding: 1.5rem 1.2rem;
}

.request-row__name {
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 800;
}

.request-route {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #6f8097;
  font-weight: 800;
  text-transform: uppercase;
}

.request-route__arrow {
  color: var(--brand);
}

.table thead th {
  border-bottom-color: var(--line);
  color: #95a3b6;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.table tbody td {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-color: var(--line);
  vertical-align: middle;
}

.table-card .card-body {
  padding: 1.4rem;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 1.7rem;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, #33d5e8 0%, #1ec8de 100%);
  color: #fff;
}

.stat-strip__item {
  padding: 1.2rem 1.4rem;
}

.stat-strip__label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0.9;
}

.stat-strip__value {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.conversation-panel {
  overflow: hidden;
}

.conversation-search {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

.conversation-item {
  display: flex;
  gap: 0.85rem;
  padding: 1rem;
  border-left: 3px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.conversation-item.active {
  background: #f7fdff;
  border-left-color: var(--brand);
}

.conversation-item:hover {
  background: #fafcff;
}

.conversation-list {
  max-height: 680px;
  overflow-y: auto;
}

.chat-panel {
  display: flex;
  flex-direction: column;
  min-height: 740px;
  overflow: hidden;
}

.chat-thread {
  flex: 1 1 auto;
  padding: 1.6rem 1.3rem 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at top, rgba(39, 207, 226, 0.07), transparent 45%);
}

.chat-row {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 1rem;
  align-items: flex-end;
}

.chat-row.outgoing {
  justify-content: flex-end;
}

.chat-bubble {
  max-width: 78%;
  padding: 1rem 1rem 0.8rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: 0 12px 24px rgba(27, 61, 97, 0.06);
}

.chat-row.outgoing .chat-bubble {
  background: linear-gradient(180deg, #34d4e8 0%, #21cadd 100%);
  border-color: transparent;
  color: #fff;
}

.chat-bubble-audio {
  min-width: 310px;
}

.chat-separator {
  margin: 1.2rem auto;
  width: fit-content;
  color: #99a7ba;
  font-size: 0.82rem;
  font-style: italic;
}

.play-button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
}

.audio-bars {
  width: 96px;
  height: 20px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 8%, transparent 8% 12%, rgba(255, 255, 255, 0.92) 12% 16%, transparent 16% 20%, rgba(255, 255, 255, 0.92) 20% 24%, transparent 24% 28%, rgba(255, 255, 255, 0.92) 28% 32%, transparent 32% 36%, rgba(255, 255, 255, 0.92) 36% 40%, transparent 40% 44%, rgba(255, 255, 255, 0.92) 44% 48%, transparent 48% 52%, rgba(255, 255, 255, 0.92) 52% 56%, transparent 56% 60%, rgba(255, 255, 255, 0.92) 60% 64%, transparent 64% 68%, rgba(255, 255, 255, 0.92) 68% 72%, transparent 72% 76%, rgba(255, 255, 255, 0.92) 76% 80%);
  border-radius: 999px;
  opacity: 0.85;
}

.chat-input-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.chat-input-icon,
.chat-input-send {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f7fafc;
  color: #90a1b6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.chat-input-send {
  background: linear-gradient(180deg, #31d6e8 0%, #1ac8dd 100%);
  border-color: transparent;
  color: #fff;
}

.chat-input {
  flex: 1 1 auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.82rem 1rem;
  background: #f7fafc;
}

.detail-panel .card-body,
.detail-panel__section {
  padding: 1.4rem;
}

.detail-panel__title {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.detail-box {
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fbfdff;
  box-shadow: none;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.status-dot--success {
  background: #43c56d;
}

.status-dot--warning {
  background: #ffbf35;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
  gap: 1.8rem;
}

.support-card .card-body {
  padding: 1.5rem;
}

.support-block {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
}

.support-block__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #edfafe;
  color: var(--brand-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.payment-success-wrap {
  min-height: calc(100vh - 130px);
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top, rgba(39, 207, 226, 0.14), transparent 30%),
    linear-gradient(180deg, #eff9fb 0%, #f6f8fb 26%, #f7f9fb 100%);
}

.payment-success-card {
  width: min(100%, 500px);
}

.success-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #dff8e7;
  color: #37ba61;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 800;
}

.receipt-box {
  max-width: 100%;
  padding: 1.1rem 1.35rem;
  border-top: 4px solid var(--brand);
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--white);
}

.payment-modal .modal-content {
  border-radius: 22px;
}

.logout-confirm-modal__content {
  border: 0;
  border-radius: 10px;
  box-shadow: 0 28px 70px rgba(16, 43, 69, 0.18);
}

.logout-confirm-modal__body {
  padding: 2rem;
  text-align: center;
}

.logout-confirm-modal__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.35rem;
  border-radius: 999px;
  background: #fff1f1;
  color: #ee5b5b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logout-confirm-modal__icon svg {
  width: 28px;
  height: 28px;
}

.logout-confirm-modal__title {
  margin-bottom: 0.85rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #162938;
}

.logout-confirm-modal__copy {
  max-width: 310px;
  margin: 0 auto 1.75rem;
  color: #697b90;
  font-size: 0.98rem;
  line-height: 1.45;
}

.logout-confirm-modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.logout-confirm-modal__logout,
.logout-confirm-modal__cancel {
  min-height: 44px;
  border-radius: 6px;
  font-weight: 700;
}

.logout-confirm-modal__logout {
  background: #ee5b5b;
  box-shadow: none;
}

.logout-confirm-modal__logout:hover,
.logout-confirm-modal__logout:focus {
  background: #e14d4d;
  color: #fff;
}

.logout-confirm-modal__cancel {
  border: 1px solid #dce3ea;
  background: #fff;
  color: #162938;
}

.payment-plan {
  border: 2px solid var(--brand);
  border-radius: 16px;
  background: #f4fdff;
}

.auth-body {
  background: #fff;
}

.auth-layout-shell {
  background: #fff;
}

.auth-showcase {
  isolation: isolate;
  background:
    radial-gradient(circle at 62% 4%, rgba(255, 214, 164, 0.72), transparent 28%),
    linear-gradient(180deg, #f7f4ef 0%, #d9d7d2 44%, #2b3e43 100%);
  overflow: hidden;
}

.auth-showcase__glow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 32%, rgba(8, 17, 18, 0.3)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
}

.auth-showcase__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 2.5rem 2.3rem 2rem;
  color: #fff;
}

.showcase-figure {
  position: absolute;
  inset: auto auto 13% 7%;
  width: min(70%, 480px);
  aspect-ratio: 0.8;
  z-index: 1;
}

.showcase-figure__hair {
  position: absolute;
  left: 25%;
  top: 0;
  width: 44%;
  height: 27%;
  border-radius: 44% 48% 38% 42%;
  background: #38272a;
  box-shadow:
    -38px 18px 0 -6px #38272a,
    34px 18px 0 -8px #38272a,
    2px 22px 0 6px #2e2023;
}

.showcase-figure__head {
  position: absolute;
  left: 28%;
  top: 10%;
  width: 35%;
  height: 26%;
  border-radius: 40% 44% 46% 42%;
  background: linear-gradient(180deg, #d69b7a 0%, #c98666 100%);
  box-shadow: inset -8px -10px 0 rgba(143, 80, 63, 0.22);
}

.showcase-figure__neck {
  position: absolute;
  left: 42%;
  top: 31%;
  width: 10%;
  height: 8%;
  border-radius: 40px;
  background: #c98666;
}

.showcase-figure__body {
  position: absolute;
  left: 3%;
  bottom: 0;
  width: 94%;
  height: 56%;
  border-radius: 42% 42% 10% 10%;
  background: #224851;
}

.showcase-figure__shirt {
  position: absolute;
  left: 18%;
  bottom: 4%;
  width: 70%;
  height: 45%;
  border-radius: 34px 34px 0 0;
  border: 3px solid rgba(93, 150, 153, 0.55);
  border-bottom: 0;
}

.showcase-copy-card {
  position: relative;
  z-index: 2;
  max-width: 360px;
  margin-top: auto;
  padding: 1.2rem 1.35rem 1.5rem;
  border-radius: 12px;
  background: rgba(21, 28, 32, 0.84);
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 40px rgba(9, 16, 19, 0.16);
}

.showcase-copy-card__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

.showcase-copy-card__title {
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(2.5rem, 4vw, 3.9rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.showcase-copy-card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  line-height: 1.75;
}

.auth-form-wrap {
  min-height: 100vh;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.auth-form-card {
  max-width: 520px;
}

.password-field {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #a3b1c1;
  padding: 0;
  line-height: 0;
}

.password-toggle svg {
  width: 20px;
  height: 20px;
}

.form-control,
.form-select {
  min-height: 52px;
  border-color: var(--line);
  border-radius: 14px !important;
  padding: 0.9rem 1rem;
}

.form-control:focus,
.form-select:focus,
.form-range:focus {
  border-color: rgba(39, 207, 226, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(39, 207, 226, 0.12);
}

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

.form-range::-webkit-slider-thumb {
  background: var(--brand);
}

.form-range::-moz-range-thumb {
  background: var(--brand);
}

.upload-box {
  border: 1px dashed #cfe1ee;
  background: #f6fbfd;
}

.upload-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto;
  border-radius: 14px;
  background: #e7fbff;
  color: var(--brand-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
}

.profile-complete-page {
  min-height: 100vh;
  padding: 0 0 3rem;
  background: linear-gradient(180deg, #f5f7fb 0%, #eef2f8 100%);
}

.profile-complete-page__topbar {
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 0 1.2rem;
  background: #fff;
  border-bottom: 1px solid #edf1f6;
}

.profile-complete-page__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 800;
}

.profile-complete-page__container {
  width: min(100%, 840px);
  margin: 0 auto;
  padding: 2rem 1rem 0;
}

.profile-complete-page__intro,
.profile-complete-card {
  border: 1px solid #edf1f6;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(36, 58, 84, 0.04);
}

.profile-complete-page__intro {
  margin-bottom: 1rem;
  padding: 1.15rem 1.35rem;
}

.profile-complete-page__intro h1 {
  margin: 0 0 0.3rem;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.profile-complete-page__intro p,
.profile-complete-page__footer-note {
  margin: 0;
  color: #8c9aaf;
  font-size: 0.86rem;
}

.profile-complete-card {
  padding: 1.25rem 1.1rem 1.45rem;
}

.profile-complete-form .form-label {
  margin-bottom: 0.55rem;
  color: #5d6f87;
  font-size: 0.84rem;
  font-weight: 700;
}

.profile-complete-form .form-control,
.profile-complete-form .form-select {
  min-height: 52px;
  border: 1px solid #e4ebf3;
  border-radius: 10px !important;
  background-color: #fff;
  box-shadow: none !important;
  color: var(--ink);
  font-size: 0.92rem;
}

.profile-complete-form .form-control::placeholder {
  color: #b3c0cf;
}

.profile-complete-form .form-control:focus,
.profile-complete-form .form-select:focus {
  border-color: #94e4ee;
  box-shadow: 0 0 0 4px rgba(39, 207, 226, 0.12) !important;
}

.profile-token-input {
  min-height: 56px;
  padding: 0.7rem 0.8rem;
  border: 1px solid #e4ebf3;
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.profile-token-input:focus-within {
  border-color: #94e4ee;
  box-shadow: 0 0 0 4px rgba(39, 207, 226, 0.12);
}

.profile-token-input__tokens {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.profile-token {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.32rem 0.65rem;
  border: 0;
  border-radius: 999px;
  background: #e8fbff;
  color: #53c8da;
  font-size: 0.76rem;
  font-weight: 700;
}

.profile-token__remove {
  font-size: 0.9rem;
  line-height: 1;
}

.profile-token-input__field {
  flex: 1 1 180px;
  min-width: 150px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.9rem;
  outline: none;
}

.profile-token-input__field::placeholder {
  color: #b3c0cf;
}

.profile-helper-text {
  margin-top: 0.45rem;
  color: #a2afbf;
  font-size: 0.75rem;
}

.profile-bio-wrapper {
  border: 1px solid #e4ebf3;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.profile-bio-wrapper:focus-within {
  border-color: #94e4ee;
  box-shadow: 0 0 0 4px rgba(39, 207, 226, 0.12);
}

.profile-bio-wrapper .ql-toolbar.ql-snow {
  border: none;
  border-bottom: 1px solid #f2f5f8;
  background: #fcfdfe;
  padding: 0.6rem 0.8rem;
}

.profile-bio-wrapper .ql-container.ql-snow {
  border: none;
  min-height: 140px;
  font-family: inherit;
  font-size: 0.95rem;
}

.profile-resume-zone {
  position: relative;
  padding: 2.2rem 1.5rem;
  border: 2px dashed #dbe9f3;
  border-radius: 16px;
  background: #fbfdff;
  text-align: center;
  transition: all 0.2s ease;
}

.profile-resume-zone:hover {
  border-color: #94e4ee;
  background: #f3fcff;
}

.profile-resume-zone--has-file {
  border-style: solid;
  border-color: #53c8da;
  background: #f0fdfd;
}

.profile-resume-zone__content {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.profile-resume-zone__icon-wrap {
  position: relative;
  display: inline-flex;
}

.profile-resume-zone__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 4px 12px rgba(83, 200, 218, 0.1);
  border-radius: 14px;
  color: #53c8da;
}

.profile-resume-zone__badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  background: #53c8da;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.profile-resume-zone__badge svg {
  width: 10px;
  height: 10px;
}

.profile-resume-zone__title {
  font-size: 0.94rem;
  font-weight: 700;
  color: #435266;
  margin-bottom: 0.25rem;
}

.profile-resume-zone__meta {
  font-size: 0.78rem;
  color: #8c9aaf;
}

.profile-resume-zone__filename {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #53c8da;
  display: none;
}

.profile-resume-zone--has-file .profile-resume-zone__filename {
  display: block;
}

.profile-resume-zone--has-file .profile-resume-zone__title,
.profile-resume-zone--has-file .profile-resume-zone__meta {
  display: none;
}

.profile-complete-form__textarea {
  min-height: 126px;
  padding-top: 0.9rem;
}

.profile-complete-page .select2-container {
  width: 100% !important;
}

.profile-complete-page .select2-container--default .select2-selection--single,
.profile-complete-page .select2-container--default .select2-selection--multiple {
  min-height: 56px;
  border: 1px solid #e4ebf3;
  border-radius: 1rem;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0.35rem 0.6rem;
}

.profile-complete-page .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--ink);
  line-height: 1.5;
  padding-left: 0.35rem;
  padding-right: 1.75rem;
}

.profile-complete-page .select2-container--default .select2-selection--single .select2-selection__placeholder,
.profile-complete-page .select2-container--default .select2-selection--multiple .select2-search__field::placeholder {
  color: #b3c0cf;
}

.profile-complete-page .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: 0.95rem;
}

.profile-complete-page .select2-container--default.select2-container--focus .select2-selection--single,
.profile-complete-page .select2-container--default.select2-container--focus .select2-selection--multiple,
.profile-complete-page .select2-container--default.select2-container--open .select2-selection--single,
.profile-complete-page .select2-container--default.select2-container--open .select2-selection--multiple {
  border-color: #94e4ee;
  box-shadow: 0 0 0 4px rgba(39, 207, 226, 0.12);
}

.profile-complete-page .select2-container--default .profile-complete-select2-selection--tokens.select2-selection--multiple {
  min-height: 56px;
  align-items: flex-start;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
}

.profile-complete-page .select2-container--default .profile-complete-select2-selection--tokens.select2-selection--multiple .select2-selection__rendered {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0;
}

.profile-complete-page .select2-container--default .profile-complete-select2-selection--tokens.select2-selection--multiple .select2-selection__choice {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background: #e8fbff;
  color: #53c8da;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.32rem 0.65rem;
}

.profile-complete-page .select2-container--default .profile-complete-select2-selection--tokens.select2-selection--multiple .select2-selection__choice__remove {
  order: 2;
  position: static;
  transform: none;
  border: 0;
  color: #53c8da;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  line-height: 1;
}

.profile-complete-page .select2-container--default .profile-complete-select2-selection--tokens.select2-selection--multiple .select2-selection__choice__display {
  order: 1;
}

.profile-complete-page .select2-container--default .profile-complete-select2-selection--tokens.select2-selection--multiple .select2-search--inline {
  flex: 1 1 180px;
}

.profile-complete-page .select2-container--default .profile-complete-select2-selection--tokens.select2-selection--multiple .select2-search--inline .select2-search__field {
  width: 100% !important;
  min-width: 150px;
  margin: 0;
  color: var(--ink);
  font-size: 0.9rem;
}

.select2-dropdown.profile-complete-select2-dropdown {
  border: 1px solid var(--line-strong);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(19, 39, 64, 0.12);
}

.profile-complete-select2-dropdown .select2-search--dropdown {
  background: linear-gradient(180deg, var(--brand-soft) 0%, var(--white) 100%);
  padding: 0.8rem;
}

.profile-complete-select2-dropdown .select2-search__field {
  border: 1px solid var(--line-strong);
  border-radius: 0.8rem;
  background: var(--white);
  color: var(--ink);
  padding: 0.65rem 0.85rem;
}

.profile-complete-select2-dropdown .select2-search__field:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(39, 207, 226, 0.12);
  outline: none;
}

.profile-complete-select2-dropdown .select2-results {
  background: var(--white);
}

.profile-complete-select2-dropdown .select2-results__option {
  color: var(--ink);
  padding: 0.75rem 0.95rem;
}

.profile-complete-select2-dropdown .select2-results__option--selectable {
  transition: background-color 0.18s ease, color 0.18s ease;
}

.profile-complete-select2-dropdown .select2-results__option--selectable.select2-results__option--highlighted {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.profile-complete-select2-dropdown .select2-results__option--selected {
  background: rgba(39, 207, 226, 0.12);
  color: var(--brand-dark);
  font-weight: 700;
}

.profile-complete-form__submit {
  min-width: 178px;
  min-height: 48px;
  border-radius: 10px;
}

.profile-complete-page__footer-note {
  padding: 1.75rem 0 0;
  text-align: center;
}

.info-note {
  border: 1px solid #dceff4;
  background: #f8fdff;
  box-shadow: none;
}

.site-footer {
  padding: 1rem 0 2rem;
  background: var(--white);
}

.site-footer--app {
  padding-top: 1.2rem;
}

.site-footer--auth {
  padding-top: 2.2rem;
}

.site-footer--public {
  border-top: 1px solid var(--line);
  padding: 0;
}

.site-footer--public .container-fluid {
  padding-top: 2.5rem !important;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(120px, 1fr));
  gap: 1.1rem;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.site-footer__heading {
  margin-bottom: 0.5rem;
  font-size: 0.68rem;
  font-weight: 800;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
}

.site-footer__links a {
  color: #83a0b9;
  font-weight: 600;
  font-size: 0.62rem;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.65rem;
  margin-top: 0.9rem;
  border-top: 1px solid var(--line);
  color: #9badc0;
  font-size: 0.58rem;
}

.site-footer__socials {
  display: flex;
  gap: 0.8rem;
}

.marketing-hero {
  padding: 4rem 0 4.5rem;
  background: linear-gradient(180deg, #f6fafc 0%, #eef7f8 100%);
}

.audience-page {
  background: #fff;
}

.audience-page__hero,
.audience-page__section {
  padding: 2.7rem 0;
}

.audience-page__section--soft {
  background: #f4f8fb;
}

.audience-page__shell {
  max-width: 1120px;
}

.audience-page__hero-grid,
.audience-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
  gap: 2.6rem;
  align-items: center;
}

.audience-page__photo-image {
  width: 100%;
  display: block;
  border-radius: 28px;
}

.audience-page__title {
  max-width: 10ch;
  margin: 0 0 1rem;
  color: #1b2b39;
  font-size: clamp(2.6rem, 4.1vw, 4.4rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.audience-page__copy,
.audience-page__section-head p,
.audience-feature__copy {
  max-width: 560px;
  margin: 0;
  color: #8495a8;
  font-size: 1rem;
  line-height: 1.75;
}

.audience-page__section-head {
  max-width: 700px;
  margin: 0 auto 2rem;
  text-align: center;
}

.audience-page__section-head h2,
.audience-feature__content h2 {
  margin: 0 0 0.7rem;
  color: #1d2c3a;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.audience-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.audience-step-card {
  padding: 1.8rem 1.35rem 1.5rem;
  border: 1px solid #e8eff5;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(27, 59, 90, 0.04);
  text-align: center;
}

.audience-step-card h3 {
  margin: 0 0 0.65rem;
  color: #273746;
  font-size: 1rem;
  font-weight: 800;
}

.audience-step-card p {
  margin: 0;
  color: #8b9bae;
  font-size: 0.86rem;
  line-height: 1.65;
}

.audience-step-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: #eefcff;
  color: var(--brand);
  box-shadow: inset 0 0 0 1px rgba(39, 207, 226, 0.1);
}

.audience-step-card__icon span,
.audience-step-card__icon::before,
.audience-step-card__icon::after {
  content: "";
  display: block;
  position: relative;
}

.audience-step-card__icon--profile span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: 0 -7px 0 -3px currentColor, 0 7px 0 0 currentColor;
}

.audience-step-card__icon--match span {
  width: 16px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.audience-step-card__icon--match span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.audience-step-card__icon--shield span {
  width: 14px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 8px 8px 10px 10px;
}

.audience-step-card__icon--building span {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.audience-step-card__icon--doc span {
  width: 14px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.audience-step-card__icon--users span {
  width: 16px;
  height: 12px;
  border-radius: 999px;
  box-shadow: -6px 0 0 -2px currentColor, 6px 0 0 -2px currentColor;
}

.audience-feature__copy {
  margin-bottom: 1.2rem;
}

.audience-feature__list {
  display: grid;
  gap: 1rem;
}

.audience-feature-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
}

.audience-feature-item__icon {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  border-radius: 50%;
  border: 2px solid #48d1e8;
  position: relative;
}

.audience-feature-item__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #48d1e8;
  transform: translate(-50%, -50%);
}

.audience-feature-item__title {
  color: #243545;
  font-size: 1rem;
  font-weight: 800;
}

.audience-feature-item__copy {
  margin: 0.25rem 0 0;
  color: #8b9bae;
  font-size: 0.86rem;
  line-height: 1.65;
}

.audience-photo {
  position: relative;
  min-height: 300px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #f2f6f9 0%, #dce7ee 100%);
  box-shadow: 0 18px 40px rgba(31, 66, 102, 0.1);
}

.audience-photo--hero {
  min-height: 330px;
}

.audience-photo__frame {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.78), transparent 38%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08));
}

.audience-photo__subject {
  position: absolute;
  inset: auto 6% 0 auto;
  width: 46%;
  height: 82%;
  border-radius: 32px 32px 0 0;
  background: linear-gradient(180deg, #183a51 0%, #305c76 100%);
  box-shadow: inset 0 0 0 999px rgba(255, 255, 255, 0.04);
}

.audience-photo__accent {
  position: absolute;
  inset: 8% auto auto 6%;
  width: 44%;
  height: 38%;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 36px rgba(33, 72, 105, 0.08);
}

.audience-photo--employee {
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 224, 168, 0.5), transparent 20%),
    linear-gradient(135deg, #d8ecef 0%, #b9cdd5 48%, #f2dfc4 100%);
}

.audience-photo--employee .audience-photo__subject {
  left: 10%;
  right: auto;
  width: 34%;
  height: 76%;
  background: linear-gradient(180deg, #f6efe8 0%, #c7d1d9 100%);
}

.audience-photo--employee .audience-photo__accent {
  inset: auto 8% 9% auto;
  width: 38%;
  height: 46%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 246, 249, 0.9)),
    #fff;
}

.audience-photo--employer {
  background:
    linear-gradient(135deg, #dfe7ec 0%, #c9d4dc 42%, #f6f2ea 100%);
}

.audience-photo--employer .audience-photo__subject {
  left: 10%;
  right: auto;
  width: 52%;
  height: 26%;
  bottom: 12%;
  border-radius: 18px;
  background: linear-gradient(180deg, #dee8ef 0%, #b3c7d7 100%);
}

.audience-photo--employer .audience-photo__accent {
  inset: 12% 10% auto auto;
  width: 48%;
  height: 54%;
  background: rgba(255, 255, 255, 0.8);
}

.audience-page--employers {
  background: #f8fbfd;
}

.audience-page--employers .audience-page__hero,
.audience-page--employers .audience-page__section {
  padding: 4.5rem 0;
}

.audience-page--employers .audience-page__hero-grid,
.audience-page--employers .audience-feature {
  grid-template-columns: minmax(0, .96fr) minmax(420px, 1.04fr);
  gap: 4rem;
}

.audience-page--employers .audience-page__title {
  max-width: 10ch;
  color: #13202b;
  font-size: clamp(3.1rem, 5vw, 5rem);
  line-height: .96;
  letter-spacing: -0.05em;
  margin-bottom: 1.7rem;
}

.audience-page--employers .audience-page__copy,
.audience-page--employers .audience-page__section-head p,
.audience-page--employers .audience-feature__copy {
  color: #738390;
  font-size: 1.03rem;
  line-height: 1.72;
}

.audience-page--employers .audience-page__hero-visual,
.audience-page--employers .audience-feature__media {
  display: flex;
  justify-content: flex-end;
}

.audience-page--employers .audience-page__photo-image--hero,
.audience-page--employers .audience-page__photo-image--feature {
  width: min(100%, 575px);
  border-radius: 26px;
  box-shadow: 0 20px 42px rgba(31, 66, 102, 0.12);
}

.audience-page--employers .audience-page__section--soft {
  background: #f5f9fc;
}

.audience-page--employers .audience-page__section-head {
  max-width: 840px;
  margin-bottom: 2.8rem;
}

.audience-page--employers .audience-page__section-head h2,
.audience-page--employers .audience-feature__content h2 {
  color: #13202b;
  font-size: clamp(2.35rem, 3.8vw, 3.8rem);
  letter-spacing: -0.04em;
}

.audience-page--employers .audience-steps-grid {
  gap: 1.15rem;
}

.audience-page--employers .audience-step-card {
  padding: 2.25rem 2rem 2rem;
  border: 1px solid #e4edf2;
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(28, 55, 78, 0.05);
}

.audience-page--employers .audience-step-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.45rem;
  background: #f3f8fa;
  box-shadow: none;
}

.audience-page--employers .audience-step-card h3 {
  color: #1d2c3a;
  font-size: 1rem;
  margin-bottom: .85rem;
}

.audience-page--employers .audience-step-card p {
  color: #7d8d99;
  font-size: 0.95rem;
  line-height: 1.65;
}

.audience-page--employers .audience-feature__copy {
  max-width: 520px;
  margin-bottom: 1.6rem;
}

.audience-page--employers .audience-feature__list {
  gap: 1.35rem;
}

.audience-page--employers .audience-feature-item {
  gap: 1rem;
}

.audience-page--employers .audience-feature-item__icon {
  width: 22px;
  height: 22px;
  margin-top: .2rem;
  border-color: #18cde3;
}

.audience-page--employers .audience-feature-item__icon::after {
  width: 7px;
  height: 7px;
  background: #18cde3;
}

.audience-page--employers .audience-feature-item__title {
  color: #13202b;
  font-size: 1rem;
}

.audience-page--employers .audience-feature-item__copy {
  color: #7d8d99;
  font-size: .93rem;
  line-height: 1.55;
}

.about-page {
  background: #f7fafc;
}

.about-page__hero,
.about-page__mission {
  padding: 4.5rem 0;
}

.about-page__hero {
  background: #f7fafc;
}

.about-page__shell {
  max-width: 1140px;
}

.about-page__title {
  max-width: 10.5ch;
  margin: 0 auto 1.6rem;
  color: #13202b;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.about-page__subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: #70808d;
  font-size: 1.02rem;
  line-height: 1.85;
}

.about-page__mission {
  background: #f7fafc;
}

.about-page__mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: 4rem;
  align-items: center;
}

.about-page__mission-copy h2 {
  margin: 0 0 1.35rem;
  color: #13202b;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.about-page__mission-copy p {
  max-width: 480px;
  margin: 0;
  color: #70808d;
  font-size: 1rem;
  line-height: 1.75;
}

.about-page__mission-visual {
  display: flex;
  justify-content: flex-end;
}

.about-page__mission-image {
  width: min(100%, 470px);
  display: block;
  border-radius: 22px;
}

.landing-page {
  background: #f8fcfd;
}

.landing-shell {
  max-width: 940px;
  margin: 0 auto;
  padding: 0.7rem 0 0;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1.2rem;
  align-items: center;
}

.landing-hero__title {
  max-width: 320px;
  margin-bottom: 0.55rem;
  color: #152235;
  font-size: clamp(1.7rem, 2.3vw, 2.75rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.landing-hero__copy {
  max-width: 360px;
  margin-bottom: 0.8rem;
  color: #6f7f93;
  font-size: 0.7rem;
}

.landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero-mini-card {
  margin-top: 0.7rem;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.38rem 0.55rem;
  border: 1px solid #dfeaf1;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(26, 66, 105, 0.06);
}

.hero-mini-card__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-mini-card__title {
  color: #17314a;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.15;
}

.hero-mini-card__copy {
  color: #90a0b3;
  font-size: 0.54rem;
  line-height: 1.15;
}

.landing-btn,
.landing-btn-secondary {
  min-height: 28px;
  padding: 0.24rem 0.75rem;
  border-radius: 6px;
  font-size: 0.6rem;
}

.landing-hero__visual {
  display: flex;
  justify-content: center;
}

.hero-illustration {
  position: relative;
  width: 100%;
  max-width: 285px;
  aspect-ratio: 1.28;
  border-radius: 10px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #bfeef6 0%, #dff8fb 48%, #f5fdff 100%);
  box-shadow: 0 18px 36px rgba(18, 60, 98, 0.08);
}

.hero-illustration__city {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.55) 10%, transparent 10% 18%, rgba(255, 255, 255, 0.42) 18% 28%, transparent 28% 36%, rgba(255, 255, 255, 0.38) 36% 50%, transparent 50%),
    linear-gradient(180deg, rgba(85, 165, 190, 0.18), transparent 55%);
}

.hero-illustration__map {
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: 8%;
  height: 42%;
  border-radius: 16px;
  background:
    linear-gradient(135deg, #d5f8cc 0%, #d8f2c6 100%);
  box-shadow: 0 18px 32px rgba(38, 89, 58, 0.15);
}

.hero-illustration__map::before,
.hero-illustration__map::after {
  content: "";
  position: absolute;
  inset: 14% 10%;
  border-radius: 14px;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(255, 255, 255, 0.9) 18% 22%, transparent 22% 44%, rgba(255, 255, 255, 0.9) 44% 48%, transparent 48% 100%),
    linear-gradient(0deg, transparent 0 22%, rgba(255, 255, 255, 0.9) 22% 26%, transparent 26% 54%, rgba(255, 255, 255, 0.9) 54% 58%, transparent 58% 100%);
  opacity: 0.8;
}

.hero-illustration__person {
  position: absolute;
  bottom: 18%;
  width: 74px;
  height: 138px;
  border-radius: 999px 999px 24px 24px;
}

.hero-illustration__person::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 50%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: #ffd8c0;
}

.hero-illustration__person--left {
  left: 20%;
  background: linear-gradient(180deg, #2f6d86 0%, #1f495b 100%);
}

.hero-illustration__person--right {
  right: 18%;
  background: linear-gradient(180deg, #28c9dc 0%, #1fa2b6 100%);
}

.hero-illustration__route {
  position: absolute;
  left: 34%;
  right: 34%;
  bottom: 36%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #28c9dc 0%, #19a6b8 100%);
}

.impact-panel {
  margin-top: 0.9rem;
  padding: 0.8rem;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 0.95rem;
  border-radius: 12px;
  background: #13212c;
  color: #fff;
  box-shadow: 0 20px 40px rgba(14, 30, 45, 0.18);
}

.impact-panel__art {
  min-height: 170px;
  border-radius: 10px;
  background: linear-gradient(180deg, #6b9192 0%, #90afb0 100%);
  position: relative;
  overflow: hidden;
}

.impact-panel__figure {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 0;
  top: 16%;
  border-radius: 28px 28px 0 0;
  background:
    radial-gradient(circle at 50% 14%, #ffd3c1 0 12%, transparent 12.5%),
    linear-gradient(180deg, #374b5d 0 28%, transparent 28%),
    linear-gradient(180deg, #2ecbdf 28%, #1e6570 28%);
}

.impact-panel__content {
  padding: 0.4rem 0.4rem 0.4rem 0;
}

.impact-panel__eyebrow {
  display: inline-block;
  margin-bottom: 0.55rem;
  padding: 0.24rem 0.6rem;
  border-radius: 999px;
  background: rgba(47, 209, 227, 0.18);
  color: #59deee;
  font-size: 0.56rem;
  font-weight: 800;
}

.impact-panel__title {
  margin-bottom: 0.95rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.impact-panel__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.impact-panel__list li {
  position: relative;
  padding-left: 1.05rem;
  color: #dce8ee;
  font-size: 0.65rem;
}

.impact-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.46rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #29d1e3;
}

.story-section {
  padding: 1.1rem 0 0.4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.95fr);
  gap: 1.1rem;
  align-items: center;
}

.story-section__title {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 800;
}

.story-section__text {
  max-width: 360px;
  color: #697b8f;
  font-size: 0.62rem;
}

.story-section__points {
  margin-top: 1rem;
  display: grid;
  gap: 0.55rem;
}

.story-point {
  position: relative;
  padding-left: 1rem;
  color: #51667f;
  font-size: 0.58rem;
  font-weight: 600;
}

.story-point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #29d1e3;
}

.story-photo {
  min-height: 175px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 70% 35%, rgba(255, 255, 255, 0.55), transparent 20%),
    linear-gradient(135deg, #8cc6a4 0%, #d8efdb 58%, #f8fcf9 100%);
  box-shadow: 0 18px 32px rgba(32, 84, 68, 0.12);
}

.how-section {
  padding: 1.3rem 0 0.5rem;
}

.section-heading {
  max-width: 500px;
  margin: 0 auto 0.9rem;
}

.section-kicker {
  margin-bottom: 0.3rem;
  color: #25cade;
  font-size: 0.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-kicker--dark {
  color: #6ae6f3;
}

.section-heading__title {
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
  font-weight: 800;
}

.section-heading__copy {
  color: #7c8ba0;
  font-size: 0.58rem;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.how-card {
  padding: 0.75rem;
  border: 1px solid #e3eef3;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(30, 86, 120, 0.04);
}

.how-card__icon {
  margin-bottom: 0.45rem;
}

.how-card__title {
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
}

.how-card__copy {
  margin-bottom: 0;
  color: #7d8ea2;
  font-size: 0.58rem;
}

.benefits-section {
  padding: 1.5rem 0 0.55rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.benefit-card {
  padding: 0.8rem;
  border: 1px solid #e3eef3;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(30, 86, 120, 0.04);
}

.benefit-card__icon {
  margin-bottom: 0.45rem;
  color: #24cade;
  font-size: 0.68rem;
}

.benefit-card__title {
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
}

.benefit-card__list {
  margin: 0;
  padding-left: 1rem;
  color: #7d8ea2;
  font-size: 0.58rem;
}

.women-panel {
  margin-top: 1.25rem;
  padding: 0.85rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
  gap: 1rem;
  border-radius: 12px;
  background: #12212c;
  color: #fff;
}

.women-panel__title {
  max-width: 220px;
  margin-bottom: 0.55rem;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 800;
}

.women-panel__copy {
  max-width: 310px;
  color: #d5e3ea;
  font-size: 0.62rem;
}

.women-panel__list {
  margin: 0.65rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.32rem;
}

.women-panel__list li {
  position: relative;
  padding-left: 1rem;
  color: #dce8ee;
  font-size: 0.58rem;
}

.women-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.44rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #29d1e3;
}

.women-panel__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.women-panel__illustration {
  width: 100%;
  min-height: 170px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, #5f888b 0%, #85aeb0 100%);
}

.cta-panel {
  margin-top: 1.3rem;
  padding: 1.35rem 0.9rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #32d4e8 0%, #1ac8dd 100%);
  text-align: center;
  color: #fff;
}

.cta-panel__title {
  margin-bottom: 0.35rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

.cta-panel__copy {
  max-width: 360px;
  margin: 0 auto 0.8rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.62rem;
}

.cta-panel__button {
  min-height: 28px;
  padding: 0.28rem 0.8rem;
  border-radius: 6px;
  background: #fff;
  color: #17bfd1;
  font-size: 0.62rem;
  font-weight: 800;
}

.cta-panel__button:hover {
  background: #f8fcfd;
  color: #17bfd1;
}

.marketing-section {
  padding: 4rem 0;
  background: var(--white);
}

.marketing-section--soft {
  background: #f5fafb;
}

.marketing-card {
  padding: 1.8rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--card-shadow);
}

.marketing-visual {
  min-height: 320px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(39, 207, 226, 0.12), rgba(20, 34, 53, 0.04)),
    linear-gradient(180deg, #fff 0%, #eef8fa 100%);
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
}

.faq-page {
  background: #fff;
}

.faq-page__hero {
  padding: 3.4rem 0 2.2rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.faq-page__hero-inner {
  max-width: 760px;
}

.faq-page__title {
  margin: 0 0 0.9rem;
  color: #1f2d3b;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.faq-page__subtitle {
  max-width: 560px;
  color: #9aa9bb;
  font-size: 1rem;
  line-height: 1.75;
}

.faq-page__content {
  padding: 0 0 4rem;
}

.faq-page__shell {
  max-width: 900px;
}

.faq-page__group+.faq-page__group {
  margin-top: 2rem;
}

.faq-page__group-title {
  margin: 0 0 1rem;
  color: #243444;
  font-size: 1.15rem;
  font-weight: 800;
}

.faq-page__list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid #e7eef4;
  border-radius: 10px;
  background: #f9fcfe;
  overflow: hidden;
}

.faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  list-style: none;
  cursor: pointer;
  color: #314255;
  font-size: 0.92rem;
  font-weight: 700;
}

.faq-item__summary::-webkit-details-marker {
  display: none;
}

.faq-item__icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1.8px;
  border-radius: 999px;
  background: #9aa9bb;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-item__icon::after {
  opacity: 0;
}

.faq-item__body {
  padding: 0 1.15rem 1rem;
}

.faq-item__body p {
  margin: 0;
  color: #7c8ea5;
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-benefits {
  margin-top: 2.4rem;
  padding: 2rem 1.5rem 1.6rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #dff5ff 0%, #c8ebfb 100%);
  text-align: center;
}

.faq-benefits__badge,
.faq-support__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  box-shadow: 0 10px 20px rgba(39, 207, 226, 0.15);
}

.faq-benefits__badge svg,
.faq-support__icon svg {
  width: 22px;
  height: 22px;
}

.faq-benefits__title,
.faq-support__title {
  margin: 0 0 0.75rem;
  color: #1f7aa3;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.faq-benefits__copy,
.faq-support__copy {
  max-width: 560px;
  margin: 0 auto;
  color: #5f8ba0;
  font-size: 0.92rem;
  line-height: 1.75;
}

.faq-benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 720px;
  margin: 1.5rem auto 0;
}

.faq-benefits__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  color: #315b73;
  font-size: 0.84rem;
  font-weight: 700;
  text-align: left;
}

.faq-benefits__item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 260px;
  justify-self: center;
}

.faq-benefits__item-icon {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: linear-gradient(180deg, #46d7eb 0%, #1cc7dd 100%);
  box-shadow: inset 0 -4px 8px rgba(7, 131, 145, 0.18);
  flex-shrink: 0;
}

.faq-support {
  margin-top: 2.8rem;
  padding: 3rem 1.5rem 3.2rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #f3f6f8 0%, #edf1f4 100%);
  text-align: center;
}

.faq-support__copy {
  color: #8899aa;
}

.faq-support__button {
  min-height: 46px;
  margin-top: 1.4rem;
  padding: 0.72rem 1.35rem;
  border-radius: 10px;
}

.public-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.public-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 50px;
}

.public-header__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.8rem;
  font-weight: 800;
}

.public-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #5d7189;
  font-weight: 700;
  font-size: 0.64rem;
}

.public-nav a.active {
  color: var(--brand);
}

.public-main {
  min-height: 50vh;
}

.public-header .container-fluid,
.public-main .container-fluid,
.site-footer .container-fluid {
  max-width: 1320px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

@media (min-width: 992px) {
  .public-header .container-fluid,
  .public-main .container-fluid,
  .site-footer .container-fluid {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
}

.auth-panel {
  max-width: 460px;
}

.auth-form-shell {
  width: 100%;
  max-width: 420px;
}

.auth-title {
  color: var(--ink);
  font-size: clamp(2.35rem, 3vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.auth-subtitle {
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 340px;
}

.auth-form-shell .form-label {
  color: var(--ink);
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.auth-form-shell .form-control {
  min-height: 54px;
  border: 1px solid #e4ecf3;
  border-radius: 14px !important;
  box-shadow: none !important;
  font-size: 0.98rem;
  color: var(--ink);
}

.auth-form-shell .form-control::placeholder {
  color: #b3c0cf;
}

.auth-form-shell .form-control:focus {
  border-color: #9de6ef;
  box-shadow: 0 0 0 4px rgba(39, 207, 226, 0.12) !important;
}

.auth-form-shell .form-check-label {
  font-size: 0.92rem;
  color: #7d8fa5 !important;
}

.auth-form-shell .form-check-input {
  margin-top: 0.18rem;
  border-color: #d7e2eb;
  box-shadow: none !important;
}

.auth-form-shell .form-check-input:checked {
  background-color: var(--brand);
  border-color: var(--brand);
}

.auth-form-shell__label-row {
  margin-bottom: 0.7rem;
}

.auth-check-row {
  margin-top: 0.2rem;
}

.auth-submit-btn {
  min-height: 58px;
  font-size: 1rem;
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(39, 207, 226, 0.24);
}

.auth-field-error {
  margin-top: 0.45rem;
  color: #d85b73;
  font-size: 0.82rem;
  font-weight: 600;
}

.auth-otp-modal__content {
  border: 0;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(16, 43, 69, 0.18);
}

.auth-otp-modal__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.auth-otp-modal__title {
  margin: 1rem 0 0.5rem;
  font-size: 1.7rem;
  font-weight: 800;
}

.auth-otp-modal__copy {
  margin-bottom: 0.9rem;
  color: var(--ink-soft);
}

.auth-otp-modal__hint {
  margin-bottom: 1rem;
  padding: 0.75rem 0.95rem;
  border-radius: 16px;
  background: rgba(39, 207, 226, 0.08);
  color: var(--ink);
  font-size: 0.92rem;
}

.auth-otp-modal__input {
  letter-spacing: 0.35em;
  font-weight: 700;
}

.auth-otp-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.auth-otp-modal__ghost {
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink-soft);
  padding: 0.75rem 1.1rem;
  font-weight: 700;
}

.auth-otp-modal__submit {
  min-width: 180px;
  border-radius: 14px;
}

.auth-layout-form-col {
  position: relative;
}

.auth-layout-showcase {
  min-height: 100vh;
}

@media (min-width: 992px) {
  .auth-layout-form-col::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #eef3f7;
  }
}

.summary-card__section-title {
  margin-bottom: 1rem;
  font-size: 1.15rem;
  font-weight: 800;
}

.profile-breadcrumb {
  margin-bottom: 1rem;
  color: #8ea0b5;
  font-size: 0.95rem;
  font-weight: 700;
}

@media (max-width: 1199.98px) {
  .sidebar {
    width: 220px;
  }

  .showcase-figure {
    width: min(76%, 420px);
    left: 3%;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-benefits__grid {
    grid-template-columns: 1fr;
  }

  .faq-benefits__item:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 991.98px) {

  .about-page__mission-grid,
  .audience-page__hero-grid,
  .audience-feature,
  .landing-hero,
  .impact-panel,
  .story-section,
  .women-panel {
    grid-template-columns: 1fr;
  }

  .audience-steps-grid,
  .how-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-page__title {
    max-width: none;
  }

  .auth-form-wrap {
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .auth-panel {
    max-width: 520px;
  }


  .search-pill {
    min-width: 100%;
  }

  .profile-summary-card__body,
  .profile-summary-card__meta,
  .location-strip__grid,
  .site-footer__bottom,
  .public-header__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .chat-bubble {
    max-width: 100%;
  }

  .chat-bubble-audio {
    min-width: 0;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .public-nav {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .auth-form-wrap {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .auth-title {
    font-size: 2.4rem;
  }

  .marketing-hero,
  .marketing-section {
    padding: 2.5rem 0;
  }

  .faq-page__hero {
    padding: 2.5rem 0 1.8rem;
  }

  .faq-benefits,
  .faq-support {
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 16px;
  }

  .about-page__hero,
  .about-page__mission,
  .audience-page__hero,
  .audience-page__section {
    padding: 2rem 0;
  }

  .about-page__title {
    max-width: 11.5ch;
    font-size: clamp(2.5rem, 11vw, 3.8rem);
  }

  .about-page__subtitle {
    max-width: 34ch;
  }

  .audience-steps-grid,
  .how-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .about-page__mission-image,
  .audience-photo,
  .audience-photo--hero {
    min-height: 250px;
  }

  .landing-shell {
    padding-top: 0.5rem;
  }

  .landing-hero__title {
    font-size: 2rem;
    max-width: none;
  }

  .how-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .impact-panel,
  .women-panel,
  .cta-panel {
    border-radius: 14px;
  }
}

.landing-home-body {
  margin: 0;
  background: #ffffff;
  color: #1e2b32;
}

.landing-home {
  background: #fff;
}

.landing-home__container {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 992px) {
  .landing-home__container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.landing-home__hero,
.landing-home__impact,
.landing-home__about,
.landing-home__how,
.landing-home__benefits,
.landing-home__women,
.landing-home__security,
.landing-home__cta {
  margin-top: 1.2rem;
}

.landing-home__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: center;
  padding: 1rem 0 0.4rem;
}

.landing-home__title {
  max-width: 9ch;
  margin: 0 0 1rem;
  color: #11242d;
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.landing-home__subtitle {
  max-width: 500px;
  margin: 0 0 1.4rem;
  color: #637987;
  font-size: 1.03rem;
  line-height: 1.72;
}

.landing-home__primary-btn {
  min-height: 58px;
  padding-inline: 2rem;
  border-radius: 18px;
  font-size: 1rem;
}

.landing-home__hero-art {
  position: relative;
  padding: 0.8rem 0 2.2rem;
}

.landing-home__hero-card {
  position: relative;
  min-height: 430px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #158c99 0%, #156c7f 100%);
  box-shadow: 0 34px 52px rgba(14, 42, 59, 0.26);
}

.landing-home__skyline {
  position: absolute;
  left: 18%;
  right: 8%;
  top: 12%;
  height: 28%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0 4%, transparent 4% 7%, rgba(255, 255, 255, 0.22) 7% 12%, transparent 12% 16%, rgba(255, 255, 255, 0.24) 16% 21%, transparent 21% 24%, rgba(255, 255, 255, 0.3) 24% 30%, transparent 30% 34%, rgba(255, 255, 255, 0.24) 34% 41%, transparent 41% 46%, rgba(255, 255, 255, 0.2) 46% 52%, transparent 52% 56%, rgba(255, 255, 255, 0.26) 56% 62%, transparent 62% 67%, rgba(255, 255, 255, 0.2) 67% 73%, transparent 73% 100%);
  border-radius: 22px;
  opacity: 0.95;
}

.landing-home__skyline::before,
.landing-home__skyline::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.landing-home__skyline::before {
  left: -18%;
  top: 22%;
  width: 42%;
  height: 52%;
}

.landing-home__skyline::after {
  right: 6%;
  top: -4%;
  width: 34%;
  height: 74%;
}

.landing-home__bridge {
  position: absolute;
  left: 10%;
  top: 17%;
  width: 42%;
  height: 26%;
  border-bottom: 8px solid rgba(255, 255, 255, 0.62);
  transform: skewX(-22deg);
}

.landing-home__bridge::before,
.landing-home__bridge::after {
  content: "";
  position: absolute;
  top: -16%;
  width: 10px;
  height: 128%;
  background: rgba(255, 255, 255, 0.74);
}

.landing-home__bridge::before {
  left: 24%;
}

.landing-home__bridge::after {
  left: 66%;
}

.landing-home__map {
  position: absolute;
  left: 17%;
  right: 10%;
  bottom: 7%;
  height: 39%;
  border-radius: 20px;
  transform: perspective(900px) rotateX(66deg) rotateZ(-16deg);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0 8%, transparent 8% 18%, rgba(255, 255, 255, 0.92) 18% 24%, transparent 24% 38%, rgba(255, 255, 255, 0.92) 38% 44%, transparent 44% 62%, rgba(255, 255, 255, 0.92) 62% 68%, transparent 68% 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.95) 0 8%, transparent 8% 20%, rgba(255, 255, 255, 0.92) 20% 28%, transparent 28% 46%, rgba(255, 255, 255, 0.92) 46% 54%, transparent 54% 72%, rgba(255, 255, 255, 0.92) 72% 80%, transparent 80% 100%),
    linear-gradient(180deg, #dff0d8 0%, #e7e3d6 100%);
  box-shadow: 0 24px 34px rgba(0, 0, 0, 0.18);
}

.landing-home__map::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 26%;
  bottom: 26%;
  border: 8px solid rgba(132, 208, 107, 0.78);
  border-left-color: transparent;
  border-top-color: transparent;
  border-radius: 999px;
  transform: rotate(18deg);
}

.landing-home__leaf {
  position: absolute;
  bottom: 18%;
  width: 62px;
  height: 104px;
  border-radius: 60px 0 60px 0;
  background: linear-gradient(180deg, #8fd144 0%, #4fa336 100%);
}

.landing-home__leaf--left {
  left: 8%;
  transform: rotate(-24deg);
}

.landing-home__leaf--right {
  right: 8%;
  transform: rotate(24deg);
}

.landing-home__agent {
  position: absolute;
  bottom: 24%;
  width: 86px;
  height: 168px;
  border-radius: 34px 34px 16px 16px;
  background: linear-gradient(180deg, #263b4a 0%, #152634 100%);
}

.landing-home__agent::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  width: 40px;
  height: 40px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #f1c1a1;
}

.landing-home__agent--left {
  left: 38%;
}

.landing-home__agent--right {
  right: 22%;
  background: linear-gradient(180deg, #2a4356 0%, #1e2f42 100%);
}

.landing-home__agent--right::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: 18px;
  width: 30px;
  height: 42px;
  border-radius: 4px;
  background: #8e5a33;
}

.landing-home__handshake {
  position: absolute;
  left: 49%;
  bottom: 49%;
  width: 56px;
  height: 14px;
  border-radius: 999px;
  transform: translateX(-50%) rotate(10deg);
  background: #f0c2a0;
}

.landing-home__stat-card {
  position: absolute;
  left: -2%;
  bottom: 1%;
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 22px 34px rgba(13, 35, 49, 0.2);
}

.landing-home__stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #ebfbff;
  position: relative;
}

.landing-home__stat-icon::before,
.landing-home__stat-icon::after {
  content: "";
  position: absolute;
  background: #2acbe0;
  border-radius: 999px;
}

.landing-home__stat-icon::before {
  left: 10px;
  top: 12px;
  width: 10px;
  height: 10px;
  box-shadow: 12px 0 0 #2acbe0, 6px 8px 0 2px #2acbe0;
}

.landing-home__stat-icon::after {
  left: 8px;
  bottom: 11px;
  width: 28px;
  height: 4px;
}

.landing-home__stat-label {
  color: #49a7b6;
  font-size: 0.88rem;
  font-weight: 800;
}

.landing-home__stat-value {
  color: #24333d;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.1;
}

.landing-home__impact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2.2rem;
  align-items: center;
  padding: 2rem 3rem;
  border-radius: 26px;
  background: #102024;
  box-shadow: 0 28px 40px rgba(11, 24, 28, 0.12);
}

.landing-home__illustration {
  position: relative;
  min-height: 380px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #5e9898 0%, #6ca7a4 100%);
  box-shadow: 0 0 42px rgba(28, 199, 221, 0.18);
}

.landing-home__illustration--large {
  min-height: 400px;
}

.landing-home__plant {
  position: absolute;
  left: 9%;
  bottom: 12%;
  width: 52px;
  height: 84px;
  border-radius: 10px;
  background: #5b3826;
}

.landing-home__plant::before,
.landing-home__plant::after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, #8dc56a 0%, #4a8d46 100%);
  border-radius: 60px 0 60px 0;
}

.landing-home__plant::before {
  left: -2px;
  top: -30px;
  width: 28px;
  height: 56px;
  transform: rotate(-18deg);
}

.landing-home__plant::after {
  left: 18px;
  top: -46px;
  width: 30px;
  height: 68px;
  transform: rotate(22deg);
}

.landing-home__desk {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 6%;
  height: 18px;
  border-radius: 999px;
  background: #f7f8f6;
}

.landing-home__screen {
  position: absolute;
  left: 31%;
  bottom: 13%;
  width: 34%;
  height: 32%;
  border-radius: 16px;
  background: linear-gradient(180deg, #fefefe 0%, #d8d8e2 100%);
}

.landing-home__lamp {
  position: absolute;
  right: 13%;
  top: 17%;
  width: 104px;
  height: 182px;
}

.landing-home__lamp::before,
.landing-home__lamp::after {
  content: "";
  position: absolute;
  background: #eff8f7;
}

.landing-home__lamp::before {
  right: 18px;
  top: 0;
  width: 48px;
  height: 20px;
  border-radius: 16px 16px 10px 10px;
  transform: rotate(18deg);
}

.landing-home__lamp::after {
  right: 32px;
  top: 22px;
  width: 6px;
  height: 152px;
  border-radius: 999px;
  transform: rotate(18deg);
  box-shadow: -34px 78px 0 0 #eff8f7;
}

.landing-home__figure {
  position: absolute;
  left: 26%;
  bottom: 10%;
  width: 30%;
  height: 66%;
  border-radius: 70px 70px 18px 18px;
  background: linear-gradient(180deg, #87bece 0%, #76b0c0 100%);
}

.landing-home__figure::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 7%;
  width: 42%;
  height: 20%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #f5c4a2;
  box-shadow: 0 -16px 0 12px #2a2940;
}

.landing-home__figure::after {
  content: "";
  position: absolute;
  left: 34%;
  bottom: 9%;
  width: 42%;
  height: 12%;
  border-radius: 999px;
  background: #f5c4a2;
}

.landing-home__impact-copy h2,
.landing-home__about-copy h2,
.landing-home__section-head h2,
.landing-home__women-copy h2,
.landing-home__cta h2 {
  margin: 0.9rem 0 1rem;
  color: #15242e;
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.landing-home__pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  background: #19cbe1;
  color: #102024;
  font-size: 1rem;
  font-weight: 800;
}

.landing-home__impact-copy h2,
.landing-home__impact-copy p,
.landing-home__impact-item,
.landing-home__women-copy h2,
.landing-home__women-copy p,
.landing-home__women-point {
  color: #fff;
}

.landing-home__impact-copy p,
.landing-home__about-copy p,
.landing-home__section-head p,
.landing-home__women-copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
}

.landing-home__impact-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.landing-home__impact-list {
  display: grid;
  gap: 1.35rem;
  margin-top: 1.8rem;
}

.landing-home__impact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  font-size: 1rem;
  line-height: 1.55;
}

.landing-home__impact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0f4753;
  position: relative;
}

.landing-home__impact-icon::before,
.landing-home__impact-icon::after {
  content: "";
  position: absolute;
  background: #18c9df;
  border-radius: 999px;
}

.landing-home__impact-icon--bus::before {
  left: 10px;
  top: 11px;
  width: 20px;
  height: 13px;
  border-radius: 4px;
}

.landing-home__impact-icon--bus::after {
  left: 12px;
  bottom: 9px;
  width: 16px;
  height: 3px;
}

.landing-home__impact-icon--traffic::before,
.landing-home__impact-icon--shield::before,
.landing-home__impact-icon--fuel::before,
.landing-home__impact-icon--leaf::before {
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  border: 2px solid #18c9df;
  background: transparent;
}

.landing-home__impact-icon--traffic::before {
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.landing-home__impact-icon--shield::before {
  border-radius: 8px 8px 12px 12px;
}

.landing-home__impact-icon--fuel::before {
  border-radius: 4px;
}

.landing-home__impact-icon--leaf::before {
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -50%) rotate(-25deg);
}

.landing-home__about {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.landing-home__about-copy p {
  color: #5f7482;
}

.landing-home__about-points {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.landing-home__about-point,
.landing-home__women-point {
  position: relative;
  padding-left: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.landing-home__about-point::before,
.landing-home__women-point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #11c9de;
}

.landing-home__about-point::after,
.landing-home__women-point::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.67rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #11c9de;
}

.landing-home__about-photo-card {
  min-height: 360px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #dce9b9 0%, #cfdba4 18%, #e8ddd0 58%, #c5d7e3 100%);
  box-shadow: 0 20px 40px rgba(17, 36, 45, 0.12);
  position: relative;
}

.landing-home__about-photo-person {
  position: absolute;
  bottom: 0;
  border-radius: 40px 40px 0 0;
}

.landing-home__about-photo-person::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 50%;
  width: 42px;
  height: 42px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #f0c2a2;
}

.landing-home__about-photo-person--left {
  left: 6%;
  width: 26%;
  height: 60%;
  background: #4b6a57;
}

.landing-home__about-photo-person--center {
  left: 35%;
  width: 28%;
  height: 72%;
  background: #78858e;
}

.landing-home__about-photo-person--right {
  right: 7%;
  width: 24%;
  height: 58%;
  background: #7ea0b5;
}

.landing-home__how {
  padding-top: 0.6rem;
}

.how-works-section {
  padding: 4.5rem 0 2.5rem;
}

.landing-home__section-head {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.landing-home__section-head--how {
  margin-bottom: 3rem;
}

.landing-home__section-head--tight {
  margin-bottom: 1.6rem;
}

.landing-home__section-head p {
  color: #5497a8;
}

.landing-home__steps-grid,
.landing-home__benefits-grid {
  display: grid;
  gap: 1.3rem;
}

.landing-home__steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-home__steps-grid--home {
  gap: 1.55rem;
}

.landing-home__benefits-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-home__step-card,
.landing-home__benefit-card {
  min-height: 220px;
  padding: 1.55rem;
  border: 1px solid #d9edf1;
  border-radius: 16px;
  background: #fff;
}

.landing-home__step-card h3,
.landing-home__benefit-card h3 {
  margin: 1rem 0 0.85rem;
  color: #172736;
  font-size: 1.1rem;
  font-weight: 800;
}

.landing-home__step-card--home {
  min-height: 188px;
  padding: 1.45rem 1.5rem 1.3rem;
  border-color: #cfe7ee;
  border-radius: 14px;
  box-shadow: none;
  background: #fff;
}

.landing-home__step-card--home h3 {
  margin: 1.1rem 0 0.65rem;
  font-size: 1rem;
  line-height: 1.35;
}

.landing-home__step-card--home p {
  max-width: 32ch;
  color: #465966;
  font-size: 0.98rem;
  line-height: 1.55;
}

.landing-home__step-card p,
.landing-home__benefit-card li {
  margin: 0;
  color: #506672;
  font-size: 0.98rem;
  line-height: 1.65;
}

.landing-home__step-icon,
.landing-home__benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #d6f7fb;
  position: relative;
}

.landing-home__step-icon--home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #c9f2f8;
  color: #0ec7dc;
}

.landing-home__step-icon--home svg {
  width: 26px;
  height: 26px;
  display: block;
}

.landing-home__step-icon--home::before,
.landing-home__step-icon--home::after {
  display: none;
}

.landing-home__step-icon::before,
.landing-home__step-icon::after,
.landing-home__benefit-icon::before,
.landing-home__benefit-icon::after {
  content: "";
  position: absolute;
  background: #11c9de;
}

.landing-home__step-icon--user::before {
  left: 17px;
  top: 11px;
  width: 14px;
  height: 14px;
  border: 2px solid #11c9de;
  background: transparent;
  border-radius: 50%;
}

.landing-home__step-icon--user::after {
  left: 12px;
  bottom: 12px;
  width: 24px;
  height: 3px;
  border-radius: 999px;
}

.landing-home__step-icon--id::before,
.landing-home__step-icon--approval::before {
  left: 14px;
  top: 11px;
  width: 20px;
  height: 24px;
  border: 2px solid #11c9de;
  background: transparent;
  border-radius: 4px;
}

.landing-home__step-icon--search::before {
  left: 14px;
  top: 13px;
  width: 14px;
  height: 14px;
  border: 2px solid #11c9de;
  background: transparent;
  border-radius: 50%;
}

.landing-home__step-icon--search::after {
  right: 12px;
  bottom: 12px;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  transform: rotate(45deg);
}

.landing-home__step-icon--chat::before {
  left: 12px;
  top: 13px;
  width: 24px;
  height: 16px;
  border: 2px solid #11c9de;
  background: transparent;
  border-radius: 6px;
}

.landing-home__step-icon--pin::before {
  left: 18px;
  top: 10px;
  width: 12px;
  height: 18px;
  border: 2px solid #11c9de;
  background: transparent;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.landing-home__benefit-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.landing-home__benefit-card li {
  position: relative;
  padding-left: 1.4rem;
}

.landing-home__benefit-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #11c9de;
  font-weight: 800;
}

.landing-home__benefit-icon {
  border-radius: 10px;
}

.landing-home__women {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2.4rem;
  align-items: center;
  padding: 2.2rem 3rem;
  border-radius: 26px;
  background:
    linear-gradient(77deg, #102024 0 68%, #12363a 68% 100%);
}

.landing-home__women-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.landing-home__women-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem 1rem;
  margin-top: 1.8rem;
}

.landing-home__security {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
  padding: 1rem 0 0.4rem;
}

.landing-home__security-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: #5f97a7;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.landing-home__security-item::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #5f97a7;
  border-radius: 50%;
}

.landing-home__cta {
  padding: 3rem 1.5rem;
  border-radius: 30px;
  background: linear-gradient(135deg, #22c9e1 0%, #1878c8 100%);
  text-align: center;
}

.landing-home__cta h2,
.landing-home__cta p {
  color: #fff;
}

.landing-home__cta p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.7;
}

.landing-home__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 206px;
  min-height: 54px;
  margin-top: 2rem;
  border-radius: 16px;
  background: #fff;
  color: #16c5df;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 18px 28px rgba(8, 50, 109, 0.18);
}

@media (max-width: 991.98px) {

  .landing-home__hero,
  .landing-home__impact,
  .landing-home__about,
  .landing-home__women {
    grid-template-columns: 1fr;
  }

  .landing-home__steps-grid,
  .landing-home__benefits-grid,
  .landing-home__security {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-home__hero-art {
    max-width: 760px;
    margin: 0 auto;
  }

  .landing-home__impact,
  .landing-home__women {
    padding: 2rem;
  }

  .landing-home__container {
    width: min(100%, calc(100% - 1.1rem));
  }
}

@media (max-width: 767.98px) {

  .public-header .container-fluid,
  .public-main .container-fluid,
  .site-footer__rich .container-fluid {
    padding-left: 0.85rem !important;
    padding-right: 0.85rem !important;
  }

  .landing-home__container {
    width: min(100%, calc(100% - 0.85rem));
  }

  .landing-home__hero {
    gap: 1.1rem;
  }

  .landing-home__hero-card {
    min-height: 320px;
  }

  .landing-home__stat-card {
    position: static;
    margin-top: 1rem;
  }

  .landing-home__impact,
  .landing-home__women,
  .landing-home__cta {
    padding: 1.35rem;
    border-radius: 20px;
  }

  .landing-home__steps-grid,
  .landing-home__benefits-grid,
  .landing-home__security,
  .landing-home__women-points {
    grid-template-columns: 1fr;
  }

  .landing-home__step-card,
  .landing-home__benefit-card {
    min-height: auto;
  }

  .landing-home__illustration,
  .landing-home__about-photo-card {
    min-height: 290px;
  }
}


:root {
  --je-cyan: #00d9e9;
  --je-dark: #1a1f2c;
  --je-text-muted: #6c757d;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.custom-container {
  width: 94%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Top Bar */
.top-bar {
  background-color: var(--je-cyan);
  color: white;
  font-size: 13px;
  padding: 10px 0;
  font-weight: 500;
}

.top-bar a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  transition: opacity 0.2s;
}

.top-bar a:hover {
  opacity: 0.8;
}

.top-bar-divider {
  opacity: 0.5;
}

/* Header / Navbar */
.header-main {
  background-color: var(--white);
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 1050;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Public landing refresh */
.public-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 15px rgba(21, 34, 53, 0.04);
}

.public-topbar {
  background: var(--brand);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.public-topbar__row,
.public-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.public-topbar__row {
  min-height: 46px;
  font-size: 0.92rem;
  font-weight: 600;
}

.public-topbar__meta {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.public-topbar__meta--end {
  justify-content: flex-end;
}

.public-topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff;
  transition: opacity 0.2s ease;
}

.public-topbar__link:hover {
  opacity: 0.8;
  color: #fff;
}

.public-header__row {
  min-height: 88px;
  padding: 0.45rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 991px) {
  .public-header__row {
    min-height: 54px !important;
    flex-wrap: wrap !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0.5rem 0;
  }
}

.public-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .public-header__brand {
    gap: 0.4rem;
    max-width: 80%;
  }
  .public-header__logo {
    height: 30px !important;
    width: auto;
    flex-shrink: 0;
  }
  .public-header__brand-name {
    font-size: 1.05rem !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
  }
}

.public-header__toggle {
  width: 44px;
  height: 44px;
  display: none;
  flex: 0 0 auto;
  margin-left: 1rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(21, 34, 53, 0.06);
}

.public-header__toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.public-header__toggle:not(.collapsed) span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.public-header__toggle:not(.collapsed) span:nth-child(2) {
  opacity: 0;
}

.public-header__toggle:not(.collapsed) span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.public-header__collapse {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex: 1 1 auto;
}

@media (min-width: 992px) {
  .public-header__collapse.collapse {
    display: flex !important;
    visibility: visible;
  }
}

.public-header__brand-mark,
.site-footer__brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--brand);
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(39, 207, 226, 0.3);
}

.public-header__brand-mark img,
.site-footer__brand-mark img {
  width: 36px;
  height: 36px;
}

.public-nav {
  gap: 1.8rem;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 700;
}

.public-nav a {
  position: relative;
  padding: 0.2rem 0;
  color: var(--ink);
  opacity: 0.82;
}

.public-nav a.active,
.public-nav a:hover {
  color: var(--ink);
  opacity: 1;
}

.public-nav a.active::after,
.public-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 3px;
  border-radius: 999px;
  background: var(--brand);
}

.public-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.public-header__login-btn {
  min-height: 48px;
  padding: 0.72rem 1.1rem;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

.public-header__cta {
  min-height: 48px;
  padding-inline: 1.5rem;
  border-radius: 14px;
}

.public-header__profile-btn {
  min-height: 48px;
  padding: 0.4rem 0.8rem 0.4rem 0.45rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

.public-header__avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(39, 207, 226, 0.14);
}

.public-header__menu {
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(22, 44, 71, 0.12);
}

.public-header__menu .dropdown-item {
  padding: 0.8rem 1rem;
  font-weight: 600;
}

.public-header__menu .dropdown-item:hover {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.public-header__lang {
  min-height: 48px;
  padding: 0.72rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

.site-footer__rich {
  margin-top: 3rem;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer__grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(180px, 0.75fr) minmax(240px, 1fr);
  gap: 2rem;
  align-items: start;
}

.site-footer__intro p {
  max-width: 460px;
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.site-footer__brand {
  gap: 0.9rem;
  font-size: 1.45rem;
  color: var(--ink);
}

.site-footer__heading {
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.site-footer__links {
  gap: 0.8rem;
}

.site-footer__links a {
  color: var(--ink-soft);
  font-size: 0.98rem;
  font-weight: 600;
}

.site-footer__support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.site-footer__bottom {
  padding-top: 1.5rem;
  margin-top: 2rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.site-footer__socials {
  gap: 1.25rem;
}

/* Consolidated landing-home__container alignment above */

.landing-home__hero,
.landing-home__impact,
.landing-home__about,
.landing-home__how,
.landing-home__security,
.landing-home__cta {
  margin-top: 2rem;
}

.landing-home__hero {
  padding: 2rem 0 0.75rem;
}

.landing-home__title {
  max-width: 10ch;
  color: var(--ink);
}

.landing-home__subtitle {
  max-width: 560px;
  color: var(--ink-soft);
}

.landing-home__hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.landing-home__primary-btn {
  min-height: 56px;
  border-radius: 16px;
}

.landing-home__secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.9rem 1.5rem;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(21, 34, 53, 0.05);
}

.landing-home__hero-card {
  background: linear-gradient(180deg, #1e7b84 0%, #144d58 100%);
}

.landing-home__impact {
  background: #102126;
}

.landing-home__impact-copy h2,
.landing-home__about-copy h2,
.landing-home__section-head h2,
.landing-home__cta h2 {
  color: var(--ink);
}

.landing-home__impact-copy h2 {
  color: var(--white);
}

.landing-home__pill {
  background: var(--brand);
  color: #082129;
  box-shadow: 0 14px 28px rgba(39, 207, 226, 0.24);
}

.landing-home__impact-icon {
  background: rgba(39, 207, 226, 0.14);
}

.landing-home__about {
  padding: 1.5rem 0;
}

.landing-home__about-point::before,
.landing-home__about-point::after {
  border-color: var(--brand);
  background: var(--brand);
}

.landing-home__section-head p {
  color: var(--ink-soft);
}

.landing-home__steps-grid {
  gap: 1.5rem;
}

.landing-home__step-card {
  min-height: 240px;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--card-shadow);
}

.landing-home__step-card--home {
  min-height: 188px;
  padding: 1.45rem 1.5rem 1.3rem;
  border-color: #cfe7ee;
  border-radius: 14px;
  box-shadow: none;
}

.landing-home__step-icon {
  background: var(--brand-soft);
}

.landing-home__step-icon--home {
  background: #c9f2f8;
  color: #0ec7dc;
}

.landing-home__step-card p {
  color: var(--ink-soft);
}

.landing-home__step-card--home h3 {
  margin: 1.1rem 0 0.65rem;
  font-size: 1rem;
  line-height: 1.35;
}

.landing-home__step-card--home p {
  color: #465966;
  font-size: 0.98rem;
  line-height: 1.55;
}

.landing-home__security {
  padding: 2rem 0 0.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.landing-home__security-item {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.landing-home__security-item::before {
  border-color: var(--brand);
}

.landing-home__cta {
  margin-top: 3rem;
  padding: 4rem 1.75rem;
  background: linear-gradient(135deg, var(--brand) 0%, #0e8fd3 100%);
  box-shadow: 0 26px 44px rgba(22, 115, 165, 0.2);
}

.landing-home__cta-btn {
  color: #0f88ca;
}

@media (max-width: 991.98px) {
  .public-topbar__row {
    align-items: flex-start;
    flex-direction: column;
  }

  .public-header__row {
    min-height: 68px;
    padding: 0.65rem 0;
    flex-wrap: wrap;
    align-items: center;
  }

  /* Brand takes remaining space and pushes toggle to the right */
  .public-header__brand {
    flex: 1 1 auto;
    order: 0;
  }

  .public-header__toggle {
    display: inline-flex;
    flex: 0 0 auto;
    order: 1;
    margin-left: 0.5rem;
  }

  /* Collapse panel always takes a full new row below brand+toggle */
  .public-header__collapse {
    order: 2;
    width: 100%;
    flex-basis: 100%;
  }

  .public-header__collapse:not(.show) {
    display: none;
  }

  .public-header__collapse.show,
  .public-header__collapse.collapsing {
    display: block;
    margin-top: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(21, 34, 53, 0.08);
  }

  .public-nav,
  .public-header__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .public-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: 0.75rem;
  }

  .public-nav a {
    width: 100%;
    padding: 0.25rem 0;
    font-size: 0.98rem;
  }

  .public-nav a.active::after,
  .public-nav a:hover::after {
    left: 0;
    right: auto;
    width: 42px;
    bottom: -0.25rem;
  }

  .public-header__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .public-header__cta,
  .public-header__lang,
  .public-header__login-btn,
  .public-header__actions .dropdown {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767.98px) {

  .public-topbar__row,
  .public-header__actions,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .public-topbar {
    padding: 0.55rem 0;
  }

  .public-topbar__row {
    gap: 0.45rem;
    align-items: stretch;
  }

  .public-topbar__meta,
  .public-topbar__meta--end {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0.75rem;
  }

  .public-topbar__meta:first-child {
    padding-bottom: 0.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .public-topbar__meta--end {
    justify-content: flex-start;
    gap: 1rem;
  }

  .public-topbar__link {
    min-width: 0;
    font-size: 0.82rem;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .public-topbar__link .ui-icon {
    width: 14px;
    height: 14px;
  }

  .public-header__brand {
    min-width: 0;
    flex: 1 1 auto;
    font-size: 1.15rem;
  }

  .public-header__brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .public-header__row {
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .public-header__toggle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .public-nav {
    gap: 1rem;
  }

  .public-nav a.active::after,
  .public-nav a:hover::after {
    bottom: -0.25rem;
  }

  .site-footer__grid,
  .site-footer__support-grid,
  .landing-home__steps-grid,
  .landing-home__security {
    grid-template-columns: 1fr;
  }

  .landing-home__container {
    width: min(100%, calc(100% - 1rem));
  }

  .landing-home__title {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .landing-home__subtitle,
  .landing-home__impact-copy p,
  .landing-home__about-copy p,
  .landing-home__section-head p,
  .landing-home__step-card p,
  .site-footer__intro p {
    font-size: 0.96rem;
  }
}

.landing-home .hero-section,
.landing-home .impact-section,
.landing-home .revolution-section,
.landing-home .how-works-section,
.landing-home .benefits-section,
.landing-home .women-focus-section {
  padding: 100px 0;
}

.landing-home,
.public-header,
.site-footer {
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.landing-home h1,
.landing-home h2,
.landing-home h3,
.landing-home h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.landing-home .container,
/* Consolidate alignment in public-main section above */

.landing-home .hero-section,
.landing-home .revolution-section,
.landing-home .trust-bar {
  background: var(--white);
}

.landing-home__hero-row {
  --bs-gutter-x: 3.25rem;
  --bs-gutter-y: 1.5rem;
}

.landing-home__hero-copy {
  max-width: 500px;
  padding-top: 0.4rem;
}

.landing-home .hero-title {
  color: #111111;
  font-size: clamp(3.15rem, 4.75vw, 4.85rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: none;
  margin-bottom: 1.55rem;
}

.landing-home .hero-section .text-muted {
  color: #64748b !important;
  max-width: 29ch;
  font-size: 1.01rem;
  line-height: 1.62;
}

.landing-home .landing-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  min-width: 190px;
  padding: 0.95rem 2.2rem;
  border-radius: 16px;
  background: var(--brand);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(39, 207, 226, 0.24);
}

.landing-home .hero-illustration {
  position: relative;
  width: 100%;
  max-width: 610px;
  min-height: 0;
  border-radius: 24px;
  overflow: visible;
  margin-left: auto;
  background: transparent;
  box-shadow: none;
}

.landing-home__hero-image {
  width: 100%;
  display: block;
  border-radius: 24px;
}
/* Authentication Styles Updated */
.auth-layout-showcase {
    position: sticky;
    top: 0;
    height: 100vh;
}

.auth-showcase__overlay {
    transition: all 0.4s ease;
}

.showcase-content-box {
    transform: translateY(0);
    animation: fadeInUp 0.8s ease-out;
}

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

.auth-form-shell {
    max-width: 480px;
}

.auth-card-inner {
    width: 100%;
    max-width: 450px;
}

.auth-panel {
    border-radius: 20px;
}

.btn-brand-cyan {
    background-color: #13c5d6;
    color: white;
}
.btn-brand-cyan:hover {
    background-color: #11abbb;
    color: white;
}

.auth-field-error {
    color: #ef4444;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
}.landing-home .active-users-card {
  position: absolute;
  left: -82px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.landing-home .active-users-card .fw-bold.fs-5 {
  color: #111111;
  font-size: 0.98rem !important;
  line-height: 1.15;
}

.landing-home__stat-card-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(31, 200, 220, 0.12);
  color: #1fc8dc;
  flex: 0 0 auto;
}

.landing-home__stat-card-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.landing-home__mini-label {
  color: #6f9baa !important;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

@media (max-width: 1199.98px) {
  .landing-home .hero-title {
    font-size: clamp(2.8rem, 4.15vw, 4.1rem);
  }

  .landing-home .hero-illustration {
    max-width: 560px;
  }

  .landing-home .active-users-card {
    left: -42px;
  }
}

@media (max-width: 991.98px) {
  .landing-home__hero-copy {
    max-width: none;
    padding-top: 0;
  }

  .landing-home .hero-title {
    font-size: clamp(2.6rem, 7.8vw, 4rem);
  }

  .landing-home .hero-section .text-muted {
    max-width: 40ch;
  }

  .landing-home .hero-illustration {
    max-width: 620px;
    margin: 0 auto;
  }

  .landing-home .active-users-card {
    left: 18px;
    bottom: 18px;
  }
}

@media (max-width: 575.98px) {
  .landing-home .hero-title {
    font-size: clamp(2.25rem, 10vw, 3rem);
    line-height: 1.04;
  }

  .landing-home .landing-cta-button {
    min-width: 170px;
    min-height: 58px;
    padding: 0.85rem 1.6rem;
  }

  .landing-home .active-users-card {
    position: static;
    margin-top: 1rem;
    width: 100%;
    justify-content: flex-start;
  }
}

.landing-home .impact-section {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background: var(--white);
  color: var(--white);
}

.landing-home .impact-section>.container {
  padding: 3.6rem 2.8rem;
  border-radius: 30px;
  background: #0f1f1f;
  box-shadow: 0 28px 40px rgba(11, 24, 28, 0.12);
}

.landing-home__impact-row {
  --bs-gutter-x: 2.7rem;
}

.landing-home .impact-section .landing-home__impact-copy-col {
  padding-left: 2.4rem !important;
}

.landing-home .impact-section h2 {
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3.05rem);
  line-height: 1.08;
  margin-bottom: 1.5rem !important;
}

.landing-home .impact-section p {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.9rem !important;
}

.landing-home .impact-section .badge-pill {
  margin-bottom: 1.25rem;
}

.landing-home__impact-pill {
  background: #1fc8dc;
  color: #062b31;
  font-size: 0.82rem;
  margin-bottom: 1.35rem;
}

.landing-home__impact-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.landing-home__impact-visual::before {
  content: "";
  position: absolute;
  width: 84%;
  height: 84%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 224, 241, 0.55) 0%, rgba(35, 224, 241, 0.28) 36%, rgba(35, 224, 241, 0) 74%);
  filter: blur(22px);
  z-index: 0;
}

.landing-home__impact-image {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  display: block;
}

.landing-home__impact-list {
  display: grid;
  gap: 1.55rem;
}

.landing-home__impact-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.landing-home__impact-item-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(17, 201, 222, 0.14);
  color: #12d0e5;
}

.landing-home__impact-item-icon svg {
  width: 21px;
  height: 21px;
  display: block;
}

.landing-home__impact-item-copy {
  color: #ffffff;
  font-size: 0.99rem;
  line-height: 1.45;
}

.landing-home .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 20px;
  background: var(--brand);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.landing-home .check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.55;
}

.landing-home .check-circle {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--brand);
  border-radius: 50%;
  color: var(--brand);
  font-size: 10px;
  font-weight: 700;
  flex: 0 0 auto;
}

.landing-home__placeholder-card {
  background: #e2e8f0;
  border-radius: 24px;
  aspect-ratio: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.landing-home__placeholder-card--dark {
  background: #2a4b4d;
  aspect-ratio: 1;
  color: rgba(255, 255, 255, 0.65);
  box-shadow: none;
}

.landing-home .how-works-section {
  background: var(--white);
}

.landing-home .benefits-section {
  background: var(--white);
}

.landing-home__section-heading {
  margin-bottom: 3rem;
}

.landing-home__benefits-head {
  margin-bottom: 2.8rem;
}

.landing-home__benefits-row {
  --bs-gutter-y: 1.5rem;
}

.landing-home .benefits-section h2,
.landing-home .women-focus-section h2 {
  color: #111111;
}

.landing-home .benefit-card {
  height: 100%;
  padding: 2rem 1.7rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--card-shadow);
}

.landing-home .benefit-card--home {
  min-height: 316px;
  padding: 1.9rem 2rem 1.8rem;
  border: 1px solid #d7e9ef;
  border-radius: 16px;
  box-shadow: none;
}

.landing-home .benefit-card__icon--home {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.55rem;
  color: #14cde3;
  border-radius: 10px;
  background: #c9f2f8;
}

.landing-home .benefit-card__icon--home svg {
  width: 26px;
  height: 26px;
  display: block;
}

.landing-home .benefit-card__title {
  margin-bottom: 1rem;
  color: #111111;
  font-size: 1rem;
  font-weight: 800;
}

.landing-home .benefit-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.95rem;
}

.landing-home .benefit-card__list li {
  position: relative;
  padding-left: 1.2rem;
  color: #495a66;
  font-size: 0.98rem;
  line-height: 1.55;
}

.landing-home .benefit-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.02rem;
  color: #14cde3;
  font-size: 0.95rem;
  font-weight: 800;
}

.landing-home .women-focus-section {
  background: var(--white);
}

.landing-home .women-focus-panel {
  position: relative;
  padding: 3rem;
  border-radius: 30px;
  background: #0d1b1b;
  color: var(--white);
  box-shadow: 0 28px 40px rgba(11, 24, 28, 0.12);
  overflow: hidden;
}

.landing-home .women-focus-panel::after {
  content: "";
  position: absolute;
  top: -8%;
  right: 18%;
  width: 220px;
  height: 140%;
  background: rgba(27, 206, 224, 0.08);
  transform: rotate(-12deg);
  pointer-events: none;
}

.landing-home .women-focus-panel h2,
.landing-home .women-focus-panel p,
.landing-home .women-focus-panel .check-item {
  color: var(--white);
}

.landing-home .women-focus-panel p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.7;
}

.landing-home .women-focus-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.05rem 1.6rem;
}

.landing-home__women-row {
  position: relative;
  z-index: 1;
}

.landing-home__women-pill {
  background: #1fc8dc;
  color: #062b31;
  font-size: 0.82rem;
}

.landing-home__women-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.landing-home__women-visual::before {
  content: "";
  position: absolute;
  width: 86%;
  height: 86%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 200, 220, 0.36) 0%, rgba(31, 200, 220, 0.18) 42%, rgba(31, 200, 220, 0) 74%);
  filter: blur(22px);
  z-index: 0;
}

.landing-home__women-image {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  display: block;
}

.landing-home .women-focus-panel .check-item {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 0.98rem;
}

.landing-home .revolution-section h2,
.landing-home .how-works-section h2,
.landing-home .cta-gradient h2 {
  color: #111111;
}

.landing-home .revolution-section h2 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 1.08;
  margin-bottom: 1.6rem !important;
}

.landing-home .revolution-section .text-muted {
  color: #64748b !important;
  font-size: 1.02rem !important;
  line-height: 1.72;
}

.landing-home__about-row {
  --bs-gutter-x: 2.4rem;
}

.landing-home__about-copy-wrap {
  max-width: 530px;
}

.landing-home__about-points {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.landing-home .revolution-section .check-item {
  margin-bottom: 0;
  color: #1f3440;
  font-size: 0.99rem;
}

.landing-home__about-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.landing-home__about-image-wrap {
  position: relative;
  width: min(100%, 610px);
  border-radius: 18px;
}

.landing-home__about-image-wrap::before {
  content: "";
  position: absolute;
  inset: 18px -10px -20px 20px;
  border-radius: 22px;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.16) 38%, rgba(0, 0, 0, 0) 74%);
  filter: blur(18px);
  z-index: 0;
}

.landing-home__about-image {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  border-radius: 18px;
}

.landing-home__about-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: 0 28px 46px rgba(0, 0, 0, 0.22);
  pointer-events: none;
  z-index: 2;
}

.landing-home .how-works-section .custom-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 35px;
  height: 100%;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease;
}

.landing-home .how-works-section .custom-card:hover {
  transform: translateY(-8px);
}

.landing-home .how-works-section .icon-square {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.landing-home .how-works-section h2 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
}

.landing-home,
.hero-section {
}

/* ── Hero Section ─────────────────────────────────────────── */
.hero-headline {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #1a1f36;
  font-family: 'Inter', system-ui, sans-serif;
}

.hero-subtext {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #4f566b;
  max-width: 440px;
}

.hero-btn-primary {
  display: inline-block;
  background: #23c7da;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(35, 199, 218, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(35, 199, 218, 0.45);
  color: #fff;
}

.landing-home__hero-widget {
  position: absolute;
  bottom: 22px;
  left: 16px;
  z-index: 10;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid #f1f5f9;
  border-left: 4px solid #23c7da;
  min-width: 0;
  max-width: calc(100% - 32px);
}

.hero-widget__icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #eaf8fa;
  color: #23c7da;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-widget__label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6a9b9e;
  margin-bottom: 2px;
}

.hero-widget__value {
  font-size: 1rem;
  font-weight: 800;
  color: #1a1f36;
  font-family: 'Inter', system-ui, sans-serif;
}

.landing-home__hero-row {
  padding: 0 0 4rem 0 !important;
}

.hero-section {
  padding-top: 5rem;
}

@media (max-width: 991px) {
  .landing-home .hero-section {
    padding-top: 2.5rem !important;
    text-align: left;
  }
  
  .hero-copy-col {
    order: 1;
  }
  
  .hero-art-col {
    order: 2;
    margin-top: 1.5rem;
  }
}

@media (max-width: 767px) {
  .landing-home .hero-section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .hero-headline {
    font-size: clamp(1.85rem, 8vw, 2.15rem);
    line-height: 1.12;
  }
  
  .hero-subtext {
    max-width: 100%;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
  }
  
  .hero-btn-primary {
    display: block !important;
    width: 100% !important;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 0.85rem !important;
  }
  
  .landing-home__hero-widget {
    position: relative;
    top: -45px;
    margin-bottom: -20px;
    margin-left: auto;
    margin-right: auto;
    z-index: 20;
    width: fit-content;
    min-width: 200px;
    padding: 0.65rem 1rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  }

  .hero-art-col {
    margin-top: 1rem;
  }
}

.landing-home .how-works-section h4 {
  color: #111111;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.landing-home .how-works-section .custom-card p {
  color: #64748b !important;
  font-size: 0.95rem;
  line-height: 1.7;
}

.landing-home__how-copy {
  max-width: 500px;
  color: var(--brand-dark);
  font-size: 1rem;
}

.landing-home .trust-bar {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.landing-home .trust-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.landing-home .cta-gradient {
  padding: 80px clamp(1rem, 5vw, 40px);
  border-radius: 30px;
  background: linear-gradient(135deg, var(--brand) 0%, #0e8fd3 100%);
  color: var(--white);
  text-align: center;
  box-shadow: 0 26px 44px rgba(22, 115, 165, 0.2);
}

.landing-home .cta-gradient h2,
.landing-home .cta-gradient p {
  color: #ffffff;
}

.landing-home .cta-gradient p {
  font-size: 1.25rem;
  line-height: 1.6;
}

.landing-home__cta-link {
  border-radius: 12px;
  color: var(--brand-dark);
}

.landing-home__cta-link:hover,
.landing-home .landing-cta-button:hover {
  color: var(--white);
}

@media (max-width: 991.98px) {
  /* Offset handled in hero section specific padding */
  .landing-home .impact-section > .container-fluid {
    padding: 2rem;
  }

  .landing-home .impact-section .col-lg-7 {
    padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
  }

  .landing-home .active-users-card {
    left: 18px;
    bottom: 18px;
    transform: none;
  }

  .landing-home .impact-section,
  .landing-home .revolution-section {
    text-align: left;
  }

  /* Reduce the 100px base padding on tablet/mobile */
  .landing-home .impact-section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}

@media (max-width: 767.98px) {
  /* Offset handled in hero section specific padding */
  .landing-home .hero-section {
    padding-bottom: 2rem;
  }

  .landing-home .hero-section,
  .landing-home .impact-section,
  .landing-home .revolution-section,
  .landing-home .how-works-section,
  .landing-home .benefits-section,
  .landing-home .women-focus-section {
    padding: 72px 0;
  }

  .landing-home .impact-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  /* Prevent tall portrait image from filling the full screen */
  .landing-home .impact-section .img-fluid[style*="aspect-ratio"] {
    aspect-ratio: 16/9 !important;
    max-height: 280px;
    width: 100%;
    object-fit: cover;
  }

  .landing-home .hero-illustration,
  .landing-home .hero-illustration svg {
    min-height: 320px;
  }

  .landing-home .cta-gradient {
    padding: 56px 24px;
  }

  .landing-home .trust-label {
    justify-content: center;
    text-align: center;
  }

  .landing-home .women-focus-panel {
    padding: 1.5rem;
    border-radius: 20px;
  }

  .landing-home .women-focus-list {
    grid-template-columns: 1fr;
  }

  .landing-home .hero-section .text-muted,
  .landing-home .revolution-section .text-muted,
  .landing-home .impact-section p,
  .landing-home .women-focus-panel p,
  .landing-home .how-works-section .custom-card p,
  .landing-home .cta-gradient p {
    font-size: 1rem;
  }

  .landing-home .how-works-section h4 {
    font-size: 1.25rem;
  }
}

.brand-group {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--je-dark);
  font-weight: 800;
  font-size: 22px;
  gap: 12px;
}

.brand-icon {
  background-color: var(--je-cyan);
  color: white;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.nav-links-group {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 40px;
  flex-grow: 1;
}

.nav-links-group li a {
  text-decoration: none;
  color: var(--je-dark);
  font-weight: 600;
  font-size: 15px;
  margin: 0 18px;
  transition: color 0.2s;
}

.nav-links-group li a:hover {
  color: var(--je-cyan);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-register {
  background-color: var(--je-cyan);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  transition: all 0.2s;
}

.btn-register:hover {
  transform: translateY(-2px);
  background-color: #00c5d4;
  box-shadow: 0 4px 12px rgba(0, 217, 233, 0.2);
  color: white;
}

/* Language Dropdown */
.lang-dropdown .dropdown-toggle {
  border: 1px solid #eeeeee;
  padding: 8px 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  background: white;
  color: var(--je-dark);
  text-decoration: none;
}

.lang-dropdown .dropdown-toggle::after {
  display: none;
}

.lang-dropdown .dropdown-menu {
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 8px;
  min-width: 140px;
}

.lang-dropdown .dropdown-item {
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 12px;
}

.lang-dropdown .dropdown-item:hover {
  background-color: #f0fdfe;
  color: var(--je-cyan);
}

/* Footer */
footer {
  background-color: white;
  padding: 70px 0 30px 0;
  margin-top: 80px;
  border-top: 1px solid #f5f5f5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 40px;
}

.footer-brand-desc {
  color: var(--je-text-muted);
  margin-top: 20px;
  max-width: 320px;
  line-height: 1.6;
  font-size: 15px;
}

.footer-col h5 {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 25px;
  color: var(--je-dark);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: #7a869a;
  font-size: 15px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--je-cyan);
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9aaaba;
  font-size: 14px;
}

.social-group a {
  color: #9aaaba;
  text-decoration: none;
  margin-left: 20px;
  font-size: 18px;
  transition: color 0.2s;
}

.social-group a:hover {
  color: var(--je-cyan);
}

/* Mobile Adjustments */
@media (max-width: 991px) {

  .nav-links-group,
  .header-actions {
    display: none;
  }

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

/* ==========================================================================
   Profile Completion — Multi-Step Wizard
   ========================================================================== */

/* ── Wizard wrapper ─────────────────────────────────────────────────── */
.profile-wizard {
  width: 100%;
}

/* ── Step Indicator ─────────────────────────────────────────────────── */
.profile-wizard__indicator {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  position: relative;
}

.profile-wizard__indicator-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  max-width: 200px;
}

/* connector line between steps */
.profile-wizard__indicator-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(50% + 20px);
  right: calc(-50% + 20px);
  height: 2px;
  background: var(--line);
  transition: background 0.4s ease;
  z-index: 0;
}

.profile-wizard__indicator-item.completed:not(:last-child)::after {
  background: var(--brand);
}

.profile-wizard__step-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  border: 2px solid var(--line);
  background: var(--white);
  color: var(--ink-muted);
  position: relative;
  z-index: 1;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.profile-wizard__indicator-item.active .profile-wizard__step-circle {
  background: linear-gradient(180deg, #31d6e8 0%, #1ac8dd 100%);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 6px 20px rgba(39, 207, 226, 0.35);
  transform: scale(1.08);
}

.profile-wizard__indicator-item.completed .profile-wizard__step-circle {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.profile-wizard__step-label {
  margin-top: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-muted);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  line-height: 1.25;
}

.profile-wizard__indicator-item.active .profile-wizard__step-label {
  color: var(--brand-dark);
}

.profile-wizard__indicator-item.completed .profile-wizard__step-label {
  color: var(--brand-dark);
}

/* ── Step Panels ────────────────────────────────────────────────────── */
.profile-wizard__step {
  display: none;
  animation: wizardStepIn 0.38s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.profile-wizard__step.active {
  display: block;
}

@keyframes wizardStepIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

/* ── Step Section Header ────────────────────────────────────────────── */
.profile-wizard__step-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.profile-wizard__step-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-dark);
}

.profile-wizard__step-icon svg {
  width: 22px;
  height: 22px;
}

.profile-wizard__step-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 0.1rem;
  color: var(--ink);
}

.profile-wizard__step-desc {
  font-size: 0.83rem;
  color: var(--ink-muted);
  margin: 0;
}

/* ── Navigation Buttons ─────────────────────────────────────────────── */
.profile-wizard__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.profile-wizard__nav-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-wizard-back {
  min-height: 46px;
  padding: 0.72rem 1.4rem;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-wizard-back:hover {
  background: var(--surface);
  border-color: var(--ink-muted);
  color: var(--ink);
}

.btn-wizard-next {
  min-height: 46px;
  padding: 0.72rem 1.75rem;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #31d6e8 0%, #1ac8dd 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(39, 207, 226, 0.28);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-wizard-next:hover {
  background: linear-gradient(180deg, #22c9de 0%, #11bdd1 100%);
  box-shadow: 0 10px 28px rgba(39, 207, 226, 0.38);
  transform: translateY(-1px);
}

.btn-wizard-submit {
  min-height: 46px;
  padding: 0.72rem 2rem;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #31d6e8 0%, #1ac8dd 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(39, 207, 226, 0.3);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-wizard-submit:hover {
  box-shadow: 0 12px 34px rgba(39, 207, 226, 0.42);
  transform: translateY(-2px);
}

/* ── Step progress text ─────────────────────────────────────────────── */
.profile-wizard__progress-text {
  font-size: 0.8rem;
  color: var(--ink-muted);
  font-weight: 600;
}

/* ── Pre-filled info row ────────────────────────────────────────────── */
.profile-wizard__info-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  margin-bottom: 0.25rem;
}

.profile-wizard__info-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}

.profile-wizard__info-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

.profile-wizard__info-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-dark);
}

.profile-wizard__info-icon svg {
  width: 16px;
  height: 16px;
}

/* ── Error styling per field ────────────────────────────────────────── */
.wizard-field-error {
  color: var(--danger-text);
  font-size: 0.78rem;
  margin-top: 0.35rem;
  display: none;
  font-weight: 600;
}

.wizard-field-error.show {
  display: block;
}

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 576px) {
  .profile-wizard__step-label {
    display: none;
  }

  .profile-wizard__indicator-item {
    max-width: 80px;
  }

  .profile-wizard__nav {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .profile-wizard__nav-left,
  .btn-wizard-next,
  .btn-wizard-submit,
  .btn-wizard-back {
    width: 100%;
    justify-content: center;
  }
}
/* ──────────────────────────────────────────────────────────────
   Messages & Chat Thread UI (High Fidelity)
   ────────────────────────────────────────────────────────────── */

.chat-thread {
    background-color: #fff;
    overflow-y: auto;
}

.chat-message {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-message.incoming img {
    border: 2px solid #fff;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.message-bubble {
    line-height: 1.5;
    font-size: 0.95rem;
    position: relative;
    box-shadow: 0 4px 15px -10px rgba(0,0,0,0.2) !important;
}

.chat-message.outgoing .message-bubble {
    background: linear-gradient(135deg, #13c5d6 0%, #0eabbc 100%);
    color: white !important;
}

.chat-message.incoming .message-bubble {
    background: #f1f5f9;
    color: #1a202c !important;
    border-top-left-radius: 4px !important;
}

.chat-message.outgoing .message-bubble {
    border-bottom-right-radius: 4px !important;
}

.chat-input-bar {
    padding: 1.5rem;
    background: #fff;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-input {
    flex-grow: 1;
    border: none;
    background: #f8fafc;
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.95rem;
    color: #1a2b3c;
    transition: all 0.2s;
}

.chat-input:focus {
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(19, 197, 214, 0.2);
}

.chat-input-send {
    background: #13c5d6;
    color: #fff;
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(19, 197, 214, 0.3);
}

.chat-input-send:hover {
    transform: scale(1.05) rotate(-10deg);
    background: #0eabbc;
}

.chat-input-icon {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.25rem;
    cursor: pointer;
    transition: color 0.2s;
}

.chat-input-icon:hover {
    color: #13c5d6;
}

.conversation-panel {
    border-right: 1px solid #f1f5f9;
}

.conversation-item {
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #f8fafc;
    transition: all 0.2s;
    cursor: pointer;
}

.conversation-item:hover {
    background-color: #f8fafc;
}

.conversation-item.active {
    background-color: #f0fbfc;
    border-left: 4px solid #13c5d6;
}

.conversation-item .avatar {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.conversation-search {
    padding: 1.5rem;
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
}


/* ──────────────────────────────────────────────────────────────
   Refined Chat UI (Mockup Fidelity)
   ────────────────────────────────────────────────────────────── */

.app-shell.chat-mode {
    background: #fff;
}

.conversation-panel {
    background: #fff;
    border-right: 1px solid #edf2f7;
    height: calc(100vh - 80px); /* Adjust based on header height */
}

.conversation-search-wrap {
    padding: 20px;
}

.conversation-search-input {
    background: #f1f3f4;
    border: none;
    border-radius: 8px;
    padding: 10px 15px 10px 40px;
    font-size: 0.9rem;
    width: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235f6368' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 12px center;
}

.conversation-item {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: none;
    background: transparent;
    transition: background 0.2s;
    position: relative;
    text-decoration: none !important;
}

.conversation-item:hover {
    background: #f8f9fa;
}

.conversation-item.active {
    background: #fff;
}

.conversation-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #13c5d6;
}

.conversation-item .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.conversation-item .name {
    font-weight: 600;
    color: #1a1f36;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.conversation-item .preview {
    color: #697386;
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.conversation-item .meta-time {
    font-size: 0.75rem;
    color: #a3acb9;
    white-space: nowrap;
}

/* Chat Thread */
.chat-thread-container {
    background: #fcfdfe;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 80px);
}

.chat-date-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

.chat-date-label {
    background: #e8eaed;
    color: #5f6368;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chat-bubble-wrap {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.chat-bubble-wrap.incoming {
    align-items: flex-start;
}

.chat-bubble-wrap.outgoing {
    align-items: flex-end;
}

.chat-bubble {
    max-width: 70%;
    padding: 14px 18px;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
}

.chat-bubble-wrap.incoming .chat-bubble {
    background: #fff;
    color: #1a1f36;
    border-radius: 18px 18px 18px 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.chat-bubble-wrap.outgoing .chat-bubble {
    background: #13c5d6;
    color: #fff;
    border-radius: 18px 18px 4px 18px;
}

.chat-bubble-meta {
    font-size: 0.7rem;
    color: #a3acb9;
    margin-top: 6px;
}

/* System Messages */
.chat-system-msg {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.chat-system-msg::before {
    content: '';
    position: absolute;
    left: 10%;
    top: 50%;
    width: 80%;
    height: 1px;
    background: #edf2f7;
    z-index: 0;
}

.chat-system-msg span {
    background: #fcfdfe;
    padding: 0 15px;
    color: #a3acb9;
    font-size: 0.8rem;
    position: relative;
    z-index: 1;
}

/* Combined Input Area */
.chat-footer-v2 {
    padding: 20px;
    background: #fcfdfe;
}

.chat-input-row {
    display: flex;
    gap: 15px;
    align-items: center;
}

.chat-input-container {
    flex-grow: 1;
    background: #f1f3f4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 5px 15px;
}

.chat-input-v2 {
    flex-grow: 1;
    border: none;
    background: transparent;
    padding: 10px;
    font-size: 0.95rem;
}

.chat-input-v2:focus {
    outline: none;
}

.chat-icon-btn {
    background: transparent;
    border: none;
    color: #5f6368;
    font-size: 1.2rem;
    padding: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.chat-icon-btn:hover {
    color: #13c5d6;
}

.chat-send-circular {
    background: #13c5d6;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(19, 197, 214, 0.2);
    transition: transform 0.2s;
}

.chat-send-circular:hover {
    transform: translateY(-2px);
    background: #0eabbc;
}


/* ──────────────────────────────────────────────────────────────

.conversation-panel {
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.conversation-search-wrap {
    padding: 24px 20px;
}

.conversation-search-input {
    background-color: #f1f3f4 !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 12px 16px 12px 42px !important;
    font-size: 0.95rem !important;
    color: #5f6368 !important;
}

.conversation-item {
    padding: 20px 24px !important;
    border-bottom: 1px solid #f8f9fa !important;
    gap: 16px !important;
}

.conversation-item.active {
    background-color: #fff !important;
    border-left: 5px solid #13c5d6 !important;
}

.conversation-item .avatar {
    width: 54px !important;
    height: 54px !important;
}

.conversation-item .name {
    font-size: 1rem !important;
    margin-bottom: 4px !important;
    color: #1a1f36 !important;
}

.conversation-item .meta-time {
    color: #94a3b8 !important;
}

.chat-thread-container {
    height: 100vh !important;
    border: none !important;
    border-radius: 0 !important;
    background: #fff !important;
}

#chat-messages-container {
    background: #fff !important;
    padding: 40px 60px !important;
}

.chat-date-label {
    background: #e8eaed !important;
    color: #5f6368 !important;
}

.chat-bubble {
    padding: 18px 24px !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
}

.chat-bubble-wrap.incoming .chat-bubble {
    background: #f1f3f4 !important;
    color: #1a1f36 !important;
}

.chat-bubble-wrap.outgoing .chat-bubble {
    background: #13c5d6 !important;
    color: #fff !important;
}

.chat-bubble-meta {
    font-size: 0.8rem !important;
    margin-top: 8px !important;
}

/* Voice Message Component */
.voice-message-card {
    background: #13c5d6;
    border-radius: 12px;
    padding: 15px 20px;
    width: 380px;
    color: #fff;
    position: relative;
    margin-bottom: 20px;
}

.voice-wave {
    display: flex;
    gap: 3px;
    align-items: center;
    height: 30px;
    margin: 0 15px;
}

.voice-bar {
    width: 3px;
    background: #fff;
    border-radius: 2px;
}

.voice-transcription {
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 10px 15px;
    margin-top: 15px;
    font-size: 0.85rem;
    font-style: italic;
    border-left: 3px solid #fff;
}

/* Footers */
.chat-footer-v2 {
    background: #fff !important;
    padding: 24px 40px !important;
}

.chat-input-container {
    background: #f1f3f4 !important;
    border: none !important;
    padding: 8px 20px !important;
    border-radius: 12px !important;
}

.chat-send-circular {
    width: 52px !important;
    height: 52px !important;
    border-radius: 12px !important;
    color: white !important;
    background-color: #13c5d6 !important;
}


/* ──────────────────────────────────────────────────────────────

.chat-app-wrapper {
    height: 100vh !important;
    width: 100vw !important;
}


/* ──────────────────────────────────────────────────────────────
   RESTORED INTEGRATED MOCKUP LOOK
   ────────────────────────────────────────────────────────────── */

.conversation-panel {
    background: #fff;
    display: flex;
    flex-direction: column;
}

.conversation-item.active {
    background-color: #f8f9fa !important;
    border-left: 5px solid #13c5d6 !important;
}

#chat-messages-container {
    background: #fdfdfd !important;
}

.chat-bubble-wrap.incoming .chat-bubble {
    background: #f1f3f4 !important;
    color: #1a1f36 !important;
    border-radius: 18px 18px 18px 4px !important;
}

.chat-bubble-wrap.outgoing .chat-bubble {
    background: #13c5d6 !important;
    color: #fff !important;
    border-radius: 18px 18px 4px 18px !important;
}


/* ──────────────────────────────────────────────────────────────
   VIBRANT SEND BUTTON STYLES
   ────────────────────────────────────────────────────────────── */

.chat-send-circular {
    background: linear-gradient(135deg, #13c5d6 0%, #0eabbc 100%) !important;
    color: #fff !important;
    width: 52px !important;
    height: 52px !important;
    border-radius: 12px !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.3rem !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(19, 197, 214, 0.45) !important;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.chat-send-circular:hover {
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 6px 20px rgba(19, 197, 214, 0.55) !important;
}

.chat-send-circular:active {
    transform: translateY(0) scale(0.95) !important;
}

.shadow-brand {
    box-shadow: 0 4px 15px rgba(19, 197, 214, 0.3);
}


/* ──────────────────────────────────────────────────────────────
   CHAT FOOTER VISIBILITY & LAYOUT FIXES
   ────────────────────────────────────────────────────────────── */

.chat-app-card {
    display: flex !important;
    flex-direction: row !important;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 75vh;
    min-height: 650px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.chat-thread-container {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

#chat-messages-container {
    flex-grow: 1 !important;
    overflow-y: auto !important;
    padding-bottom: 20px !important;
}

.chat-footer-v2 {
    flex-shrink: 0 !important;
    padding: 24px 40px !important;
    border-top: 1px solid #f1f5f9 !important;
    background: #fff !important;
    position: relative !important;
    z-index: 10 !important;
}

.chat-send-circular {
    position: relative !important;
    z-index: 11 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* ── Dashboard Responsive Refinements (v3 - Final) ──────────────── */

@media (max-width: 991.98px) {
  .sidebar {
    position: fixed !important;
    top: 0 !important;
    left: -320px !important; /* Safely off-screen */
    width: 280px !important;
    height: 100vh !important;
    z-index: 2000 !important; /* High enough to be over top-strip */
    display: flex !important;
    flex-direction: column !important;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 20px 0 40px rgba(15, 23, 42, 0.15) !important;
  }

  body.sidebar-open .sidebar {
    left: 0 !important;
  }

  /* Sidebar Branding Logic: Only show name when open */
  .sidebar-brand__name {
    display: none;
  }

  body.sidebar-open .sidebar-brand__name {
    display: inline-block !important;
  }

  /* Ensure sidebar inner nav stays vertical */
  .sidebar-nav {
    display: flex !important;
    flex-direction: column !important;
    padding: 1rem 0 !important;
  }

  .sidebar-link {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    padding: 0.75rem 1rem !important;
    width: 100% !important;
    gap: 0.75rem !important;
  }

  .sidebar-link__icon {
    width: 24px !important;
    height: 24px !important;
    margin-right: 0 !important;
  }

  .sidebar-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(15, 23, 42, 0.5) !important;
    z-index: 1045 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(3px) !important;
  }

  body.sidebar-open .sidebar-overlay {
    opacity: 1 !important;
    visibility: visible !important;
  }

  body.sidebar-open {
    overflow: hidden !important;
  }

  .app-main {
    margin-bottom: 0 !important;
    width: 100% !important;
  }

  /* One-Liner Header Fixes */
  .header-main .container-fluid > .d-flex {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .header-main {
    padding: 0.5rem 0 !important;
    border-bottom: 1px solid var(--line);
    min-height: 60px;
  }

  .header-user-btn__name,
  .header-user-meta,
  .header-user-role {
    display: none !important;
  }
  
  .header-user-name--mobile {
    display: inline-block !important;
    font-size: 0.82rem !important;
  }
  
  .header-avatar-container img, 
  .avatar-letter-small {
    width: 34px !important;
    height: 34px !important;
  }
  
  .header-user-btn {
    padding: 0.25rem 0.25rem 0.25rem 0.25rem !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    gap: 6px !important;
  }
  
  .header-copy {
    flex: 1;
  }
}

@media (max-width: 575.98px) {
  .app-header .top-strip {
    display: none !important;
  }
  
  .header-title {
    font-size: 1.1rem !important;
  }
  
  .app-content {
    padding: 1rem 0 !important;
  }
  
  .app-content .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* ── Impact Section (Standardized Fidelity) ───────────── */
.impact-section {
    overflow: hidden;
}

.impact-visual-wrap {
    z-index: 1;
}

.visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(35, 199, 218, 0.06) 0%, rgba(35, 199, 218, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.impact-benefit-icon svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 991.98px) {
    .impact-section {
        text-align: center;
    }
    .impact-benefit-item {
        justify-content: center;
    }
    .visual-glow {
        width: 100%;
        height: 100%;
    }
}





