:root {
  --bg: #fdfcf0;
  --surface: #f8f5ea;
  --surface-muted: #efe8db;
  --surface-strong: #dee6df;
  --text: #1c2b2f;
  --text-soft: #66767a;
  --line: #d2cbc0;
  --blue: #184e77;
  --blue-deep: #102f44;
  --green: #3f7a5b;
  --green-deep: #305944;
  --gold: #c28d2c;
  --danger: #b4494f;
  --warning: #9f6d16;
  --success: #2f6e4f;
  --ink-panel: #16262f;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --shadow-lg: 0 28px 70px rgba(19, 34, 40, 0.18);
  --shadow-md: 0 18px 38px rgba(19, 34, 40, 0.12);
  --shadow-sm: 0 10px 22px rgba(19, 34, 40, 0.08);
  --font-ui: "Segoe UI", "Aptos", "Trebuchet MS", sans-serif;
  --font-display: "Franklin Gothic Demi", "Bahnschrift", "Aptos Display", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(194, 141, 44, 0.08), transparent 32%),
    radial-gradient(circle at top right, rgba(24, 78, 119, 0.05), transparent 28%),
    linear-gradient(180deg, #fefdf4 0%, #fdfcf0 52%, #f6f2e6 100%);
  color: var(--text);
  font-family: var(--font-ui);
}

body {
  min-height: 100vh;
}

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

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

button {
  cursor: pointer;
  border: 0;
}

.app-shell {
  min-height: 100vh;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(320px, 1fr);
}

.landing-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.landing-topbar {
  margin: 0;
  padding: 18px 24px;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(253, 252, 240, 0.98), rgba(248, 245, 234, 0.96));
  border: 0;
  border-bottom: 1px solid rgba(210, 203, 192, 0.72);
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.landing-main {
  padding: 28px 24px 24px;
  display: grid;
  gap: 0;
}

.landing-hero {
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 22px;
  border-radius: 28px;
  border: 1px solid rgba(210, 203, 192, 0.78);
  box-shadow:
    0 18px 48px rgba(19, 34, 40, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  background:
    linear-gradient(180deg, rgba(255, 253, 246, 0.96), rgba(248, 244, 234, 0.96)),
    radial-gradient(circle at top, rgba(194, 141, 44, 0.04), transparent 28%);
}

.landing-copy {
  max-width: 680px;
  padding: 18px 18px 18px 6px;
}

.landing-title {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.98;
  max-width: 11ch;
  letter-spacing: -0.04em;
}

.landing-text {
  margin-top: 18px;
  max-width: 60ch;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.landing-featured {
  display: grid;
  gap: 0;
}

.landing-panel {
  padding: 20px 20px 18px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(23, 49, 67, 0.98), rgba(29, 54, 69, 0.96)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  color: #f6f1e9;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 12px 30px rgba(16, 47, 68, 0.12);
  position: relative;
}

.landing-panel h3 {
  margin-top: 10px;
  font-size: 1.45rem;
  line-height: 1.12;
}

.landing-panel p {
  margin-top: 10px;
  color: rgba(246, 241, 233, 0.78);
}

.landing-dashboard-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 252px repeat(2, minmax(126px, 1fr));
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 253, 246, 0.82), rgba(248, 244, 234, 0.72));
  border: 1px solid rgba(210, 203, 192, 0.72);
  position: relative;
}

.landing-grid-hero {
  grid-column: 1 / -1;
  border-radius: 0;
  min-height: 100%;
}

.landing-grid-cell {
  padding: 18px 16px 20px;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: rgba(255, 253, 247, 0.34);
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.landing-grid-cell strong {
  display: block;
  font-size: 1.05rem;
  font-family: var(--font-display);
}

.landing-grid-cell span {
  display: block;
  margin-top: 10px;
  color: var(--text-soft);
  line-height: 1.55;
}

.landing-grid-cell:hover {
  background: rgba(255, 253, 247, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.landing-grid-cell:nth-child(2),
.landing-grid-cell:nth-child(3),
.landing-grid-cell:nth-child(4),
.landing-grid-cell:nth-child(5) {
  border-top: 1px solid rgba(210, 203, 192, 0.56);
}

.landing-grid-cell:nth-child(3),
.landing-grid-cell:nth-child(5) {
  border-left: 1px solid rgba(210, 203, 192, 0.56);
}

.landing-nav-link {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-soft);
  padding: 8px 12px;
  border-radius: 999px;
  box-shadow: none;
}

.landing-nav-link.active,
.landing-nav-link:hover {
  background: rgba(255, 252, 246, 0.72);
  border-color: rgba(210, 203, 192, 0.7);
  color: var(--blue-deep);
}

.landing-btn-primary,
.landing-btn-secondary {
  padding: 12px 18px;
  border-radius: 999px;
}

.landing-btn-primary {
  background: linear-gradient(135deg, rgba(24, 78, 119, 0.92), rgba(63, 122, 91, 0.88));
  color: white;
  box-shadow: 0 8px 20px rgba(24, 78, 119, 0.14);
}

.landing-btn-secondary {
  background: rgba(255, 252, 246, 0.86);
  color: var(--blue-deep);
  border: 1px solid rgba(210, 203, 192, 0.88);
}

.landing-btn-primary:hover,
.landing-btn-secondary:hover {
  transform: translateY(-1px);
}

.login-panel {
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-card,
.content-card,
.metric-card,
.panel-card,
.table-card,
.hero-card,
.preview-card,
.step-card {
  background: linear-gradient(180deg, rgba(251, 248, 242, 0.98), rgba(245, 239, 230, 0.96));
  border: 1px solid rgba(210, 203, 192, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.login-card {
  width: 100%;
  max-width: 440px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.login-card-minimal {
  max-width: 430px;
  background: rgba(251, 248, 242, 0.96);
}

.login-card::after,
.panel-card::after,
.metric-card::after,
.table-card::after,
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.32), transparent 24%),
    linear-gradient(0deg, transparent, transparent);
}

.login-card::before,
.panel-card::before,
.metric-card::before,
.table-card::before,
.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(194, 141, 44, 0.6), transparent);
  pointer-events: none;
}

.login-side {
  position: relative;
  overflow: hidden;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(135deg, rgba(16, 47, 68, 0.96), rgba(22, 38, 47, 0.94)),
    linear-gradient(135deg, rgba(63, 122, 91, 0.3), rgba(194, 141, 44, 0.18));
  color: #f6f1e9;
}

.login-side-minimal {
  justify-content: center;
  gap: 28px;
  padding: 54px;
}

.login-side::before,
.login-side::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
}

.login-side::before {
  width: 420px;
  height: 420px;
  top: -90px;
  right: -130px;
  clip-path: polygon(18% 0, 100% 0, 100% 84%, 62% 100%, 0 74%, 0 18%);
}

.login-side::after {
  width: 320px;
  height: 320px;
  bottom: -120px;
  left: -70px;
  clip-path: polygon(24% 0, 100% 0, 76% 100%, 0 100%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px 14px 22px 14px;
  background: linear-gradient(135deg, var(--green), var(--gold));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 10px 22px rgba(22, 38, 47, 0.22);
}

.brand-copy strong {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.brand-copy span {
  display: block;
  color: rgba(249, 252, 255, 0.72);
  font-size: 0.9rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--green-deep);
}

.login-card .eyebrow {
  color: var(--blue);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.08;
}

.login-title {
  margin-top: 16px;
  font-size: clamp(2rem, 4vw, 2.5rem);
  max-width: 10ch;
}

.section-title {
  font-size: 1.5rem;
}

.section-copy,
.muted {
  color: var(--text-soft);
}

.field-grid {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.field-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field label,
.checkbox-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.94rem;
  color: var(--text);
}

.field input,
.field select,
.field textarea,
.search-input {
  width: 100%;
  border: 1px solid #d4ccbf;
  background: rgba(255, 252, 247, 0.95);
  padding: 13px 14px;
  border-radius: 12px 12px 18px 12px;
  color: var(--text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus,
.search-input:focus {
  outline: 0;
  border-color: rgba(24, 78, 119, 0.48);
  box-shadow: 0 0 0 4px rgba(24, 78, 119, 0.1);
}

.helper,
.info-inline {
  font-size: 0.84rem;
  color: var(--text-soft);
}

.button-row,
.inline-actions,
.chip-row,
.summary-row,
.menu-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px 12px 18px 12px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: white;
  box-shadow: 0 12px 24px rgba(24, 78, 119, 0.22);
}

.btn-secondary {
  background: #f3efe7;
  color: var(--blue-deep);
  border: 1px solid #d8cfc1;
}

.btn-tertiary {
  background: #edf2ea;
  color: var(--green-deep);
  border: 1px solid #cfdbd1;
}

.btn-ghost {
  background: rgba(255, 251, 246, 0.72);
  color: var(--text-soft);
  border: 1px solid var(--line);
}

.btn-danger {
  background: #fcecee;
  color: var(--danger);
  border: 1px solid #f2c4cc;
}

.link-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  color: var(--blue);
  font-size: 0.92rem;
}

.state-banner {
  margin-top: 18px;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 0.92rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.state-banner.error {
  background: #fdeff2;
  color: #8a2438;
  border: 1px solid #f3c3ce;
}

.state-banner.warning {
  background: #fff5e5;
  color: #8f6107;
  border: 1px solid #f2ddb0;
}

.state-banner.success {
  background: #ecf8f0;
  color: #256a43;
  border: 1px solid #c8e7d2;
}

.showcase-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  z-index: 1;
}

.showcase-card {
  padding: 18px;
  border-radius: 18px 18px 24px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-card strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.shell-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 24px 20px;
  background:
    linear-gradient(180deg, rgba(17, 31, 39, 0.98), rgba(22, 38, 47, 0.97)),
    linear-gradient(180deg, rgba(63, 122, 91, 0.08), transparent);
  color: #f5efe6;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar .brand-copy span,
.sidebar-foot,
.menu-section small {
  color: rgba(255, 255, 255, 0.68);
}

.menu-section {
  display: grid;
  gap: 8px;
}

.menu-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.55);
}

.menu-link {
  padding: 12px 14px;
  border-radius: 12px 12px 18px 12px;
  color: rgba(245, 239, 230, 0.82);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.18s ease, color 0.18s ease;
}

.menu-link.active,
.menu-link:hover {
  background: linear-gradient(90deg, rgba(194, 141, 44, 0.16), rgba(255, 255, 255, 0.04));
  color: white;
}

.menu-badge,
.status-badge,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.menu-badge {
  background: rgba(194, 141, 44, 0.24);
  color: #f3d58a;
}

.content-shell {
  padding: 24px;
}

.topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 14px 18px;
  border-radius: 18px 18px 24px 18px;
  background: linear-gradient(180deg, rgba(251, 248, 242, 0.92), rgba(243, 237, 228, 0.82));
  border: 1px solid rgba(210, 203, 192, 0.95);
  box-shadow: var(--shadow-sm);
}

.topnav-links,
.topnav-meta,
.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.topnav-link {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.92);
  border: 1px solid #d8cfc1;
  color: var(--blue-deep);
  font-weight: 700;
  font-size: 0.88rem;
}

.topnav-link.active {
  background: linear-gradient(135deg, rgba(24, 78, 119, 0.14), rgba(63, 122, 91, 0.12));
  border-color: rgba(24, 78, 119, 0.18);
}

.topnav-meta {
  color: var(--text-soft);
  font-size: 0.86rem;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.topbar h1 {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
}

.topbar p {
  margin: 8px 0 0;
  color: var(--text-soft);
}

.profile-chip {
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(251, 248, 242, 0.88);
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 14px 14px 20px 14px;
  box-shadow: var(--shadow-sm);
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px 12px 18px 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: white;
  font-weight: 700;
}

.hero-card {
  padding: 24px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 20px;
  background:
    linear-gradient(135deg, rgba(24, 78, 119, 0.08), rgba(194, 141, 44, 0.08)),
    rgba(251, 248, 242, 0.92);
}

.hero-stats,
.metrics-grid,
.quick-grid,
.two-column,
.three-column,
.request-cards {
  display: grid;
  gap: 18px;
}

.metrics-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quick-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.two-column {
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
}

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

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

.metric-card,
.panel-card,
.table-card,
.preview-card,
.step-card,
.content-card {
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.metric-card {
  position: relative;
  overflow: hidden;
}

.metric-card::after {
  width: 110px;
  height: 110px;
  inset: auto -30px -34px auto;
  background:
    radial-gradient(circle at center, rgba(24, 78, 119, 0.12), rgba(24, 78, 119, 0.02) 60%, transparent 62%);
  border-radius: 999px;
}

.metric-label {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.metric-value {
  margin-top: 8px;
  font-size: 2rem;
  font-family: var(--font-display);
}

.metric-meta {
  margin-top: 6px;
  font-size: 0.84rem;
  color: var(--green-deep);
}

.quick-link {
  padding: 18px;
  border-radius: 18px 18px 24px 18px;
  background: linear-gradient(180deg, rgba(251, 248, 242, 0.92), rgba(243, 237, 228, 0.88));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.quick-link strong {
  display: block;
  margin-bottom: 8px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  text-align: left;
  padding: 14px 10px;
  border-bottom: 1px solid #e2d9cb;
  vertical-align: top;
  font-size: 0.94rem;
}

th {
  color: var(--text-soft);
  font-weight: 700;
}

.status-badge.pending {
  background: #fff2d9;
  color: var(--warning);
}

.status-badge.review {
  background: #eaf4fb;
  color: var(--blue);
}

.status-badge.routed {
  background: #eef3fb;
  color: #566cb4;
}

.status-badge.resolved {
  background: #e9f7ef;
  color: var(--success);
}

.status-badge.closed {
  background: #edf1f4;
  color: #596d7b;
}

.status-badge.active {
  background: #e9f7ef;
  color: var(--success);
}

.status-badge.inactive {
  background: #fff1f1;
  color: var(--danger);
}

.status-badge.draft {
  background: #f6f0de;
  color: #866500;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.preview-canvas {
  min-height: 420px;
  border-radius: 18px 18px 26px 18px;
  border: 1px solid #d8cfc1;
  background:
    linear-gradient(180deg, rgba(194, 141, 44, 0.04), rgba(24, 78, 119, 0.02)),
    repeating-linear-gradient(180deg, #fffdf8, #fffdf8 36px, #f2ece2 36px, #f2ece2 37px);
  padding: 24px;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.preview-lines {
  display: grid;
  gap: 12px;
}

.line {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(47, 139, 87, 0.18), rgba(15, 95, 143, 0.12));
}

.line.sm {
  width: 36%;
}

.line.md {
  width: 58%;
}

.line.lg {
  width: 88%;
}

.tabs {
  display: inline-flex;
  gap: 10px;
  padding: 8px;
  background: #ebe4d7;
  border-radius: 16px 16px 22px 16px;
}

.tab {
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--text-soft);
  font-weight: 700;
}

.tab.active {
  background: #fffaf2;
  color: var(--blue-deep);
  box-shadow: var(--shadow-sm);
}

.result-box,
.note-box,
.upload-drop,
.timeline,
.faq-item,
.summary-box {
  border: 1px solid var(--line);
  border-radius: 18px 18px 24px 18px;
  background: rgba(255, 251, 246, 0.94);
}

.result-box,
.note-box,
.summary-box {
  padding: 18px;
}

.upload-drop {
  min-height: 220px;
  padding: 22px;
  border-style: dashed;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(24, 78, 119, 0.05), rgba(194, 141, 44, 0.06)),
    rgba(255, 251, 246, 0.86);
}

.timeline {
  padding: 18px;
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 12px;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--green));
  box-shadow: 0 0 0 5px rgba(194, 141, 44, 0.09);
}

.wizard-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.step-pill {
  padding: 14px 16px;
  border-radius: 14px 14px 20px 14px;
  background: rgba(255, 251, 246, 0.9);
  border: 1px solid var(--line);
  font-weight: 700;
  color: var(--text-soft);
}

.step-pill.active {
  color: var(--blue-deep);
  border-color: rgba(15, 95, 143, 0.2);
  box-shadow: var(--shadow-sm);
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.select-card {
  padding: 18px;
  border-radius: 18px 18px 24px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 251, 246, 0.94);
  text-align: left;
}

.select-card.active {
  border-color: rgba(24, 78, 119, 0.24);
  box-shadow: 0 12px 24px rgba(24, 78, 119, 0.08);
  background: linear-gradient(135deg, rgba(24, 78, 119, 0.06), rgba(194, 141, 44, 0.05));
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 18px;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 700;
}

.chart {
  display: grid;
  gap: 12px;
}

.chart-bar {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 38px;
  gap: 12px;
  align-items: center;
}

.bar-track {
  height: 12px;
  border-radius: 999px;
  background: #e4ddd0;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}

.footer-note {
  margin-top: 24px;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.app-footer {
  margin-top: 26px;
  padding: 18px 20px;
  border-radius: 18px 18px 24px 18px;
  background: linear-gradient(180deg, rgba(251, 248, 242, 0.88), rgba(243, 237, 228, 0.82));
  border: 1px solid rgba(210, 203, 192, 0.95);
  box-shadow: var(--shadow-sm);
}

.app-footer strong {
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 1180px) {
  .metrics-grid,
  .quick-grid,
  .three-column,
  .request-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column,
  .hero-card {
    grid-template-columns: 1fr;
  }

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

}

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

  .sidebar {
    position: relative;
    height: auto;
  }

  .login-shell {
    grid-template-columns: 1fr;
  }

  .login-side {
    min-height: 360px;
  }

  .landing-hero {
    grid-template-columns: 1fr;
  }

  .landing-dashboard-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .content-shell,
  .login-panel,
  .login-side {
    padding: 18px;
  }

  .metrics-grid,
  .quick-grid,
  .three-column,
  .request-cards,
  .field-row,
  .wizard-steps,
  .option-grid,
  .filter-grid {
    grid-template-columns: 1fr;
  }

  .topbar,
  .summary-row,
  .topnav,
  .landing-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .link-row {
    flex-direction: column;
  }

  .landing-main,
  .landing-topbar {
    padding-left: 18px;
    padding-right: 18px;
  }

  .landing-main {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .landing-dashboard-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .landing-grid-cell:nth-child(3),
  .landing-grid-cell:nth-child(5) {
    border-left: 0;
  }

  .landing-grid-cell:nth-child(2),
  .landing-grid-cell:nth-child(3),
  .landing-grid-cell:nth-child(4),
  .landing-grid-cell:nth-child(5) {
    border-top: 1px solid rgba(210, 203, 192, 0.56);
  }

  .landing-mini-grid,
  .landing-services-grid {
    grid-template-columns: 1fr;
  }
}

/* Bootstrap-first refresh */

.bootstrap-landing .navbar-toggler:focus,
.bootstrap-landing .btn:focus,
.login-shell-bootstrap .btn:focus,
.intranet-input:focus {
  box-shadow: none;
}

.landing-navbar {
  background: rgba(253, 252, 240, 0.94);
  backdrop-filter: blur(10px);
}

.landing-simple-link {
  color: var(--text-soft);
  font-weight: 600;
  padding: 0.55rem 0.95rem !important;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.landing-simple-link.active,
.landing-simple-link:hover {
  color: var(--blue-deep);
  background: rgba(24, 78, 119, 0.06);
}

.landing-hero-clean {
  border-radius: 32px;
  border: 1px solid rgba(210, 203, 192, 0.8);
  background:
    radial-gradient(circle at top left, rgba(194, 141, 44, 0.06), transparent 28%),
    linear-gradient(180deg, rgba(255, 253, 246, 0.98), rgba(248, 244, 234, 0.96));
  box-shadow: 0 20px 50px rgba(16, 47, 68, 0.08);
  padding: 1.35rem;
}

.landing-copy-clean {
  padding: 1rem 1rem 1rem 0.5rem;
}

.landing-feature-surface {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(210, 203, 192, 0.72);
  background: rgba(255, 252, 246, 0.62);
}

.landing-divider-grid > [class*="col-"] {
  border-top: 1px solid rgba(210, 203, 192, 0.56);
}

.landing-divider-grid > [class*="col-"]:nth-child(even) {
  border-left: 1px solid rgba(210, 203, 192, 0.56);
}

.landing-grid-cell {
  min-height: 152px;
}

.landing-grid-cell strong {
  font-size: 1.08rem;
}

.landing-grid-cell span {
  font-size: 0.96rem;
}

.landing-btn-primary,
.landing-btn-secondary,
.intranet-cta,
.intranet-ghost {
  min-height: 50px;
  padding-inline: 1.35rem;
  border-radius: 999px;
  font-weight: 700;
}

.intranet-cta {
  background: linear-gradient(135deg, #2b8df4, #2577d1);
  border-color: transparent;
}

.intranet-ghost {
  border-color: rgba(108, 117, 125, 0.3);
}

.login-bootstrap-frame {
  max-width: 1120px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 36px;
  border: 1px solid rgba(210, 203, 192, 0.78);
  box-shadow: 0 24px 70px rgba(16, 47, 68, 0.1);
}

.login-visual-panel {
  background:
    radial-gradient(circle at top left, rgba(127, 169, 246, 0.26), transparent 24%),
    radial-gradient(circle at bottom right, rgba(177, 165, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #ebe8ff, #e2dff8);
}

.phone-mockup {
  width: 230px;
  height: 470px;
  border-radius: 36px;
  padding: 12px;
  background: #1f262a;
  box-shadow: 0 18px 40px rgba(16, 47, 68, 0.18);
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  background:
    radial-gradient(circle at top center, rgba(91, 196, 255, 0.22), transparent 22%),
    linear-gradient(180deg, #ffffff, #f2f6fb);
  position: relative;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.phone-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4ca7ff, #80d9ff);
  box-shadow: 0 0 0 18px rgba(76, 167, 255, 0.12);
  margin-top: 1rem;
}

.phone-circle {
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: linear-gradient(180deg, #b8dcff, #8ec4ff);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  color: #163248;
  font-weight: 700;
}

.phone-circle i {
  font-size: 1.25rem;
}

.phone-actions {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.phone-actions div {
  border-radius: 18px;
  background: white;
  border: 1px solid rgba(16, 47, 68, 0.08);
  padding: 0.9rem 0.7rem;
  text-align: center;
  color: #4d5f6d;
  font-size: 0.78rem;
}

.phone-actions i {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
  color: #2b8df4;
}

.intranet-input {
  min-height: 58px;
  border-radius: 18px;
  border: 1px solid rgba(210, 203, 192, 0.85);
  background: #fffdfa;
}

.payroll-sheet {
  background: white;
  border: 1px solid #d9d9d9;
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 18px 40px rgba(16, 47, 68, 0.08);
}

.payroll-sheet__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.payroll-logo {
  font-size: 2rem;
  font-family: var(--font-display);
  color: #0f5f8f;
  letter-spacing: 0.04em;
}

.payroll-meta {
  text-align: right;
  font-size: 0.92rem;
  color: #46545e;
}

.payroll-table {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.payroll-table th,
.payroll-table td {
  border: 1px solid #bfc8cf;
  padding: 0.6rem 0.7rem;
}

.payroll-table th {
  background: #f4f6f8;
  font-weight: 700;
  width: 18%;
}

.payroll-table--detail thead th {
  background: #eef2f5;
}

.payroll-total-box {
  border: 1px solid #bcc7cf;
  border-radius: 14px;
  padding: 1rem;
  background: #f7f9fb;
}

.payroll-signature {
  border-top: 1px solid #cdd6dc;
  padding-top: 0.85rem;
}

.signature-line {
  margin-top: 1rem;
  min-height: 48px;
  font-family: "Brush Script MT", cursive;
  font-size: 2rem;
  color: #1d6fbb;
}

@media print {
  body {
    background: white !important;
  }

  .sidebar,
  .topnav,
  .topbar,
  .footer-note,
  .app-footer,
  .d-print-none {
    display: none !important;
  }

  .shell-layout {
    display: block;
  }

  .content-shell {
    padding: 0 !important;
  }

  .payroll-sheet {
    box-shadow: none;
    border: 0;
    border-radius: 0;
    padding: 0.5rem;
  }
}

@media (max-width: 991px) {
  .landing-divider-grid > [class*="col-"]:nth-child(even) {
    border-left: 0;
  }

  .landing-copy-clean {
    padding: 0.25rem;
  }

  .payroll-sheet__header {
    flex-direction: column;
  }

  .payroll-meta {
    text-align: left;
  }
}

/* Enterprise cleanup overrides */

:root {
  --bg: #f4f6f8;
  --surface: #ffffff;
  --surface-muted: #f8fafc;
  --text: #152535;
  --text-soft: #5f7287;
  --line: #d9e1e8;
  --blue: #1f6fb2;
  --blue-deep: #163a59;
  --green: #2e7d5b;
  --gold: #bf9b30;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-lg: 0 24px 54px rgba(15, 37, 53, 0.08);
  --shadow-md: 0 14px 30px rgba(15, 37, 53, 0.07);
  --shadow-sm: 0 8px 18px rgba(15, 37, 53, 0.05);
  --font-ui: "Inter", "Segoe UI", Arial, sans-serif;
  --font-display: "Inter", "Segoe UI", Arial, sans-serif;
}

html,
body {
  background:
    radial-gradient(circle at top left, rgba(31, 111, 178, 0.05), transparent 24%),
    linear-gradient(180deg, #f8fafc 0%, #f4f6f8 100%);
  color: var(--text);
}

h1,
h2,
h3,
h4,
.brand,
.brand-copy strong,
.landing-title,
.login-title,
.section-title,
.metric-value {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.btn,
.field input,
.field select,
.field textarea,
.search-input,
.intranet-input,
.topnav-link,
.menu-link,
.profile-chip,
.landing-simple-link {
  border-radius: 12px !important;
}

.btn {
  font-weight: 600;
}

.btn-primary,
.landing-btn-primary,
.intranet-cta {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  color: #fff !important;
  box-shadow: none !important;
}

.btn-secondary,
.landing-btn-secondary {
  background: #ffffff !important;
  color: var(--blue-deep) !important;
  border: 1px solid var(--line) !important;
  box-shadow: none !important;
}

.btn-tertiary,
.btn-ghost,
.intranet-ghost {
  background: #f8fafc !important;
  color: var(--text-soft) !important;
  border: 1px solid var(--line) !important;
}

.landing-navbar {
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom: 1px solid var(--line);
  backdrop-filter: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px !important;
  background: linear-gradient(135deg, var(--green), var(--gold));
  box-shadow: none;
}

.brand-copy strong {
  font-size: 1rem;
  color: var(--text);
}

.brand-copy span {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.landing-shell,
.bootstrap-landing {
  background: transparent;
}

.landing-hero-clean {
  background: #ffffff !important;
  border: 1px solid var(--line) !important;
  border-radius: 22px !important;
  box-shadow: var(--shadow-md) !important;
  padding: 2rem !important;
}

.landing-copy-clean {
  padding: 1rem !important;
}

.landing-title {
  max-width: 12ch;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 1.02;
  color: var(--text);
}

.landing-text {
  max-width: 58ch;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.landing-feature-surface {
  border: 1px solid var(--line) !important;
  border-radius: 20px !important;
  background: #fbfcfd !important;
  overflow: hidden;
}

.landing-panel {
  background: linear-gradient(135deg, #18364d, #1f425f) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 1.5rem !important;
}

.landing-panel .eyebrow {
  color: rgba(191, 155, 48, 0.9) !important;
}

.landing-panel h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
}

.landing-panel p {
  color: rgba(255, 255, 255, 0.8) !important;
}

.landing-divider-grid > [class*="col-"] {
  border-top: 1px solid var(--line) !important;
}

.landing-divider-grid > [class*="col-"]:nth-child(even) {
  border-left: 1px solid var(--line) !important;
}

.landing-grid-cell {
  min-height: 128px;
  padding: 1.25rem !important;
  background: #ffffff !important;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.landing-grid-cell:hover {
  background: #f8fafc !important;
  transform: translateY(-1px);
  box-shadow: none !important;
}

.landing-grid-cell strong {
  font-size: 1rem;
  color: var(--text);
}

.landing-grid-cell span {
  color: var(--text-soft);
  font-size: 0.94rem;
}

.landing-simple-link {
  color: var(--text-soft) !important;
  background: transparent !important;
}

.landing-simple-link.active,
.landing-simple-link:hover {
  color: var(--blue-deep) !important;
  background: #f3f7fb !important;
}

.login-shell-bootstrap {
  display: block;
}

.login-bootstrap-frame {
  background: #ffffff !important;
  border: 1px solid var(--line) !important;
  border-radius: 24px !important;
  box-shadow: var(--shadow-lg) !important;
  overflow: hidden;
}

.login-visual-panel {
  background:
    linear-gradient(180deg, #eef4fb 0%, #e8f0f8 100%) !important;
  border-right: 1px solid var(--line);
}

.phone-mockup {
  width: 220px;
  height: 450px;
  border-radius: 30px;
  background: #1e2933;
  box-shadow: 0 12px 28px rgba(15, 37, 53, 0.14);
}

.phone-screen {
  border-radius: 22px;
}

.phone-circle {
  width: 124px;
  height: 124px;
  background: linear-gradient(180deg, #d8ecff, #b8dbff);
}

.intranet-input {
  background: #ffffff !important;
  border: 1px solid var(--line) !important;
  color: var(--text);
}

.intranet-input:focus,
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(31, 111, 178, 0.45) !important;
  box-shadow: 0 0 0 3px rgba(31, 111, 178, 0.12) !important;
}

.login-title {
  max-width: none;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.sidebar {
  background: #172b3a !important;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.sidebar {
  display: flex;
  flex-direction: column;
}

.sidebar-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
}

.sidebar-scroll::-webkit-scrollbar {
  width: 8px;
}

.sidebar-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.sidebar-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.28);
}

.sidebar nav.menu-section {
  flex: 0 0 auto;
}

.sidebar-quick {
  margin-top: 16px;
}

.sidebar-foot-bottom {
  margin-top: 14px;
  padding-bottom: 8px;
}

.sidebar .panel-card {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: none !important;
}

.sidebar .menu-label {
  color: rgba(255, 255, 255, 0.58) !important;
}

.sidebar .form-select,
.sidebar select,
.landing-profile-menu .form-select {
  min-height: 44px;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background-color: #ffffff !important;
  color: #173043 !important;
  font-size: 0.92rem;
  box-shadow: none !important;
}

.sidebar .form-select:focus,
.sidebar select:focus,
.landing-profile-menu .form-select:focus,
textarea:focus,
.field textarea:focus {
  border-color: rgba(43, 141, 244, 0.55) !important;
  box-shadow: 0 0 0 3px rgba(43, 141, 244, 0.14) !important;
}

.sidebar .form-select option,
.sidebar select option {
  color: #173043;
  background: #ffffff;
}

.menu-link.active,
.menu-link:hover {
  background: rgba(255, 255, 255, 0.08) !important;
}

.menu-section {
  gap: 10px;
}

.menu-link {
  min-height: 46px;
  padding: 0.75rem 0.95rem !important;
  border-radius: 12px !important;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 0.96rem;
  font-weight: 500;
}

.menu-link.active {
  background: linear-gradient(180deg, rgba(43, 141, 244, 0.26), rgba(43, 141, 244, 0.18)) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
}

.menu-link:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
}

.menu-badge {
  background: rgba(191, 155, 48, 0.22) !important;
  color: #f4d37d !important;
  min-width: 30px;
  padding: 4px 8px;
}

.sidebar .btn {
  min-height: 40px;
  border-radius: 10px !important;
  font-size: 0.9rem;
}

.sidebar .btn-secondary,
.sidebar .btn-tertiary {
  background: rgba(255, 255, 255, 0.92) !important;
  color: #173043 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.sidebar .sidebar-foot {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.85rem;
  line-height: 1.55;
}

.field textarea,
textarea,
.form-control,
.form-select {
  color: var(--text) !important;
}

.field textarea::placeholder,
textarea::placeholder,
.form-control::placeholder {
  color: #7c8c9b !important;
}

.topnav,
.panel-card,
.metric-card,
.table-card,
.hero-card,
.content-card,
.preview-card,
.step-card,
.quick-link,
.app-footer,
.profile-chip,
.summary-box,
.note-box,
.result-box,
.faq-item {
  background: #ffffff !important;
  border: 1px solid var(--line) !important;
  box-shadow: var(--shadow-sm) !important;
}

.topnav,
.app-footer {
  border-radius: 16px !important;
}

.metric-card::after,
.panel-card::after,
.table-card::after,
.hero-card::after,
.login-card::after,
.panel-card::before,
.table-card::before,
.hero-card::before,
.login-card::before {
  display: none !important;
}

.hero-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfc 100%) !important;
}

.eyebrow {
  color: var(--blue) !important;
  font-size: 0.72rem;
}

.metric-label,
.muted,
.section-copy,
.topbar p,
.topnav-meta,
.footer-note {
  color: var(--text-soft) !important;
}

.metric-value,
.topbar h1,
.section-title {
  color: var(--text);
}

.payroll-sheet {
  border-radius: 16px !important;
  border: 1px solid #cfd7de !important;
  box-shadow: var(--shadow-md) !important;
}

.payroll-table th {
  background: #f4f7fa !important;
}

@media (max-width: 991px) {
  .landing-divider-grid > [class*="col-"]:nth-child(even) {
    border-left: 0 !important;
  }
}

/* Landing aligned to login */

.landing-hero-loginlike {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.landing-home-frame {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.landing-home-side {
  background:
    radial-gradient(circle at top left, rgba(127, 169, 246, 0.22), transparent 22%),
    radial-gradient(circle at bottom right, rgba(177, 165, 255, 0.16), transparent 26%),
    linear-gradient(180deg, #eef4fb 0%, #e8f0f8 100%);
  border-right: 1px solid var(--line);
}

.landing-home-side .landing-title {
  max-width: 10ch;
  font-size: clamp(2.3rem, 4.8vw, 4.2rem);
}

.landing-inline-note {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.landing-profile-menu {
  max-width: 320px;
}

.landing-profile-menu .form-select {
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.app-footer-traditional {
  padding: 2rem 2rem 1.25rem !important;
}

.app-footer-title {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  color: var(--text);
}

.app-footer-heading {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-deep);
}

.app-footer-copy {
  color: var(--text-soft);
  line-height: 1.7;
}

.app-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.app-footer-list li {
  color: var(--text-soft);
  line-height: 1.55;
}

.app-footer-divider {
  height: 1px;
  background: var(--line);
  margin: 1.5rem 0;
}

.app-footer-cta {
  color: var(--text-soft);
  font-size: 0.96rem;
}

.landing-section-intro {
  max-width: 46rem;
}

.landing-feature-surface-loginlike {
  background: #ffffff !important;
  border-radius: 20px !important;
  overflow: hidden;
}

.landing-feature-surface-loginlike .landing-panel {
  border-radius: 0 !important;
  min-height: 140px;
}

.landing-feature-surface-loginlike .landing-grid-cell {
  min-height: 118px;
}

.landing-feature-surface-loginlike .landing-grid-cell strong {
  font-size: 1rem;
}

.landing-feature-surface-loginlike .landing-grid-cell span {
  font-size: 0.92rem;
}

@media (max-width: 1199px) {
  .landing-home-side {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
