:root {
    --ukb-maroon-950: #4b0f16;
    --ukb-maroon-900: #60151d;
    --ukb-maroon-800: #7a212a;
    --ukb-beige-500: #c7b29e;
    --ukb-beige-300: #e3d6ca;
    --ukb-sand-50: #f8f1e9;
    --ukb-sand-25: #fffaf5;
    --ukb-ink-900: #221d1d;
    --ukb-ink-700: #6a5f5c;
    --ukb-border: rgba(96, 21, 29, 0.15);
    --ukb-shadow: 0 24px 60px rgba(39, 10, 15, 0.12);
    --ukb-radius-lg: 28px;
    --ukb-radius-md: 18px;
    --ukb-transition: 0.35s ease;
}

* {
    box-sizing: border-box;
}

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

body.ukb-landing-page {
    margin: 0;
    font-family: "Outfit", sans-serif;
    color: var(--ukb-ink-900);
    background:
        radial-gradient(circle at top left, rgba(199, 178, 158, 0.18), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, var(--ukb-sand-50) 45%, #ffffff 100%);
    overflow-x: hidden;
}

.ukb-landing-page a,
.ukb-landing-page a:hover,
.ukb-landing-page a:focus {
    color: inherit;
    text-decoration: none;
}

.ukb-landing-shell {
    min-height: 100vh;
}

.ukb-container {
    width: min(1400px, calc(100% - 40px));
    margin: 0 auto;
}

.ukb-landing-topbar {
    background: var(--ukb-maroon-950);
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ukb-landing-topbar .ukb-container,
.ukb-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ukb-topbar-copy a,
.ukb-topbar-links a {
    color: rgba(255, 255, 255, 0.92);
}

.ukb-topbar-links {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.ukb-topbar-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.ukb-landing-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 252, 248, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(96, 21, 29, 0.08);
    box-shadow: 0 10px 30px rgba(29, 16, 17, 0.04);
    transition: box-shadow .2s ease, background-color .2s ease;
}

.ukb-landing-header.is-scrolled {
    box-shadow: 0 18px 36px rgba(29, 16, 17, 0.08);
}

.ukb-header-row {
    min-height: 92px;
}

.ukb-brand img {
    width: 90px;
    height: auto;
    display: block;
}

.ukb-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    font-weight: 600;
}

.ukb-nav a {
    position: relative;
    padding: 34px 0;
    color: var(--ukb-ink-900);
}

.ukb-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 24px;
    width: 0;
    height: 2px;
    background: var(--ukb-maroon-900);
    transition: var(--ukb-transition);
}

.ukb-nav a:hover::after,
.ukb-nav a.is-active::after {
    width: 100%;
}

.ukb-nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.ukb-nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.ukb-nav-dropdown-toggle i {
    font-size: 10px;
}

.ukb-nav-dropdown-panel {
    position: absolute;
    top: calc(100% - 14px);
    left: 50%;
    z-index: 40;
    min-width: 190px;
    padding: .55rem;
    border: 1px solid rgba(96, 21, 29, .1);
    border-radius: 1rem;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 18px 42px rgba(47, 15, 21, .14);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: var(--ukb-transition);
}

.ukb-nav-dropdown:hover .ukb-nav-dropdown-panel,
.ukb-nav-dropdown:focus-within .ukb-nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.ukb-nav .ukb-nav-dropdown-panel a {
    display: block;
    padding: .7rem .85rem;
    border-radius: .75rem;
    color: var(--ukb-ink-900);
    white-space: nowrap;
}

.ukb-nav .ukb-nav-dropdown-panel a::after {
    display: none;
}

.ukb-nav .ukb-nav-dropdown-panel a:hover,
.ukb-nav .ukb-nav-dropdown-panel a.is-active {
    background: rgba(96, 21, 29, .08);
    color: var(--ukb-maroon-900);
}

.ukb-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ukb-header-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ukb-maroon-900);
    font-size: 14px;
    font-weight: 600;
}

.ukb-header-link-logout {
    color: var(--ukb-ink-700);
}

.ukb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    font-weight: 700;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition: var(--ukb-transition);
}

.ukb-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.34), transparent);
    transform: translateX(-120%);
    transition: 0.7s ease;
}

.ukb-btn:hover::before {
    transform: translateX(120%);
}

.ukb-btn-primary {
    color: #fff !important;
    background: linear-gradient(135deg, var(--ukb-maroon-900), var(--ukb-maroon-950));
    box-shadow: 0 14px 28px rgba(96, 21, 29, 0.26);
}

.ukb-btn-primary:hover,
.ukb-btn-primary:focus,
.ukb-btn-primary:active,
.ukb-btn-primary:visited {
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(96, 21, 29, 0.34);
}

.ukb-btn-outline,
.ukb-btn-soft {
    border: 1px solid var(--ukb-maroon-900);
    color: var(--ukb-maroon-900);
    background: rgba(255, 255, 255, 0.84);
}

.ukb-btn-outline:hover,
.ukb-btn-soft:hover {
    color: #fff !important;
    background: var(--ukb-maroon-900);
    transform: translateY(-3px);
}

.ukb-profile-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px 8px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--ukb-border);
    box-shadow: 0 12px 30px rgba(96, 21, 29, 0.08);
    color: var(--ukb-ink-900);
    font-size: 14px;
    font-weight: 600;
}

button.ukb-profile-chip {
    border: 1px solid var(--ukb-border);
    cursor: pointer;
}

.ukb-profile-chip img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    background: var(--ukb-beige-300);
    border: 1px solid rgba(96, 21, 29, 0.08);
    display: block;
}

.ukb-profile-chip > i {
    color: var(--ukb-maroon-900);
    font-size: 11px;
}

.ukb-profile-menu {
    position: relative;
}

.ukb-profile-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 55;
    display: none;
    min-width: 230px;
    overflow: hidden;
    border: 1px solid var(--ukb-border);
    border-radius: 18px;
    background: #fffaf5;
    box-shadow: 0 24px 60px rgba(47, 15, 21, 0.18);
}

.ukb-profile-menu.is-open .ukb-profile-panel {
    display: block;
}

.ukb-profile-panel a {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem 1rem;
    border-bottom: 1px solid rgba(96, 21, 29, 0.06);
    color: var(--ukb-ink-900);
    font-size: .9rem;
    font-weight: 700;
}

.ukb-profile-panel a:last-child {
    border-bottom: 0;
}

.ukb-profile-panel a:hover {
    background: rgba(96, 21, 29, 0.05);
    color: var(--ukb-maroon-900);
}

.ukb-profile-panel a i {
    width: 1.1rem;
    color: var(--ukb-maroon-900);
    text-align: center;
}

.ukb-profile-panel a.is-danger {
    color: #8f1f2a;
}

.ukb-profile-panel a.is-danger i {
    color: #8f1f2a;
}

.ukb-notification-menu {
    position: relative;
}

.ukb-notification-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--ukb-border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ukb-maroon-900);
    box-shadow: 0 12px 28px rgba(96, 21, 29, 0.08);
    cursor: pointer;
}

.ukb-notification-toggle span {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: #f04438;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 20px;
    text-align: center;
}

.ukb-notification-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 50;
    display: none;
    width: min(360px, calc(100vw - 32px));
    overflow: hidden;
    border: 1px solid var(--ukb-border);
    border-radius: 18px;
    background: #fffaf5;
    box-shadow: 0 24px 60px rgba(47, 15, 21, 0.18);
}

.ukb-notification-menu.is-open .ukb-notification-panel {
    display: block;
}

.ukb-notification-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px 12px;
    border-bottom: 1px solid rgba(96, 21, 29, 0.08);
}

.ukb-notification-head strong {
    color: var(--ukb-ink-900);
    font-size: 16px;
}

.ukb-notification-mark-read {
    border: 0;
    background: transparent;
    color: var(--ukb-maroon-900);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.ukb-notification-list {
    max-height: 330px;
    overflow-y: auto;
}

.ukb-notification-item {
    display: grid;
    grid-template-columns: 10px minmax(0, 1fr);
    gap: 10px;
    padding: 13px 18px;
    border-bottom: 1px solid rgba(96, 21, 29, 0.06);
    color: var(--ukb-ink-900);
}

.ukb-notification-item:hover {
    background: rgba(96, 21, 29, 0.04);
}

.ukb-notification-dot {
    width: 8px;
    height: 8px;
    margin-top: 7px;
    border-radius: 50%;
    background: rgba(96, 21, 29, 0.18);
}

.ukb-notification-item.is-unread .ukb-notification-dot {
    background: var(--ukb-maroon-900);
}

.ukb-notification-item strong,
.ukb-notification-item small,
.ukb-notification-item em {
    display: block;
}

.ukb-notification-item strong {
    margin-bottom: 3px;
    font-size: 14px;
    font-weight: 800;
}

.ukb-notification-item small {
    color: var(--ukb-ink-700);
    font-size: 12px;
    line-height: 1.45;
}

.ukb-notification-item em {
    margin-top: 5px;
    color: #9a8177;
    font-size: 11px;
    font-style: normal;
}

.ukb-notification-empty {
    padding: 24px 18px;
    color: var(--ukb-ink-700);
    text-align: center;
}

.ukb-notification-all {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 18px;
    background: #fff;
    color: var(--ukb-maroon-900);
    font-size: 13px;
    font-weight: 800;
}

.ukb-notification-page {
    display: grid;
    gap: 1.45rem;
}

.ukb-notification-hero {
    margin-bottom: 0;
}

.ukb-notification-card {
    padding: 1.7rem 1.8rem;
}

.ukb-notification-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.05rem;
    border-bottom: 1px solid rgba(96, 21, 29, 0.08);
}

.ukb-notification-card-head h2 {
    margin: .35rem 0 0;
    color: var(--ukb-ink-900);
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.2;
}

.ukb-notification-total {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.7rem;
    padding: 0 1rem;
    border-radius: 999px;
    background: rgba(96, 21, 29, 0.06);
    color: var(--ukb-maroon-900);
    font-size: .9rem;
    font-weight: 800;
    white-space: nowrap;
}

.ukb-notification-page-list {
    display: grid;
    gap: .8rem;
}

.ukb-notification-page-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(96, 21, 29, 0.08);
    border-radius: 1.1rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,250,245,0.92));
    box-shadow: 0 12px 30px rgba(47, 15, 21, 0.05);
    color: var(--ukb-ink-900);
}

.ukb-notification-page-item:hover {
    transform: translateY(-2px);
    border-color: rgba(96, 21, 29, 0.18);
    box-shadow: 0 16px 36px rgba(47, 15, 21, 0.09);
}

.ukb-notification-page-item.is-unread {
    border-color: rgba(96, 21, 29, 0.20);
    background: linear-gradient(180deg, #fff, rgba(248,241,233,0.96));
}

.ukb-notification-page-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(96, 21, 29, 0.08);
    color: var(--ukb-maroon-900);
}

.ukb-notification-page-item.is-unread .ukb-notification-page-icon {
    background: var(--ukb-maroon-900);
    color: #fff;
}

.ukb-notification-page-copy strong,
.ukb-notification-page-copy small {
    display: block;
}

.ukb-notification-page-copy strong {
    margin-bottom: .22rem;
    font-size: 1rem;
    font-weight: 800;
}

.ukb-notification-page-copy small {
    color: var(--ukb-ink-700);
    font-size: .92rem;
    line-height: 1.55;
}

.ukb-notification-page-item time {
    color: #9a8177;
    font-size: .82rem;
    font-weight: 700;
    white-space: nowrap;
}

.ukb-notification-empty-state {
    display: flex;
    min-height: 260px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1rem;
    border-radius: 1.15rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.75), rgba(248,241,233,0.45));
    text-align: center;
}

.ukb-notification-empty-state i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: rgba(96, 21, 29, 0.08);
    color: var(--ukb-maroon-900);
    font-size: 1.55rem;
}

.ukb-notification-empty-state h3 {
    margin: 0 0 .45rem;
    color: var(--ukb-ink-900);
    font-size: 1.25rem;
    font-weight: 800;
}

.ukb-notification-empty-state p {
    margin: 0;
    color: var(--ukb-ink-700);
}

.ukb-notification-pagination {
    justify-content: center;
    margin-top: 1.25rem;
}

[dir="rtl"] .ukb-notification-panel {
    right: auto;
    left: 0;
}

[dir="rtl"] .ukb-profile-panel {
    right: auto;
    left: 0;
}

[dir="rtl"] .ukb-notification-toggle span {
    right: auto;
    left: -4px;
}

.ukb-mobile-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--ukb-maroon-900);
    font-size: 24px;
    cursor: pointer;
}

.ukb-mobile-menu {
    display: none;
    padding: 0 0 18px;
}

.ukb-mobile-menu.open {
    display: block;
}

.ukb-mobile-panel {
    border: 1px solid var(--ukb-border);
    border-radius: var(--ukb-radius-md);
    padding: 16px;
    background: rgba(255, 250, 245, 0.97);
    box-shadow: var(--ukb-shadow);
}

.ukb-mobile-panel nav {
    display: grid;
    gap: 14px;
}

.ukb-mobile-panel nav a {
    font-weight: 600;
    color: var(--ukb-ink-900);
}

.ukb-mobile-panel nav a.ukb-mobile-sub-link {
    margin-top: -6px;
    padding-inline-start: 1rem;
    color: var(--ukb-maroon-900);
    font-size: .9rem;
}

.ukb-landing-main {
    display: block;
}

.ukb-inner-page-shell {
    padding: 42px 0 72px;
    position: relative;
}

.ukb-inner-page-shell::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 220px;
    background:
        radial-gradient(circle at top left, rgba(199, 178, 158, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(96, 21, 29, 0.04), rgba(96, 21, 29, 0));
    pointer-events: none;
}

.ukb-inner-page-shell > .ukb-container {
    position: relative;
    z-index: 1;
}

.ukb-inner-page-shell .breadcrumb {
    display: none;
}

.ukb-hero-section {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #fffaf5;
}

.ukb-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--landing-hero-image) center right / cover no-repeat;
    pointer-events: none;
    z-index: 0;
}

html[dir="rtl"] .ukb-hero-section::before {
    transform: scaleX(-1);
    transform-origin: center;
}

.ukb-hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 18%, rgba(199, 178, 158, 0.18), transparent 24%),
        linear-gradient(90deg, rgba(255, 250, 245, 0.98) 0%, rgba(255, 250, 245, 0.9) 38%, rgba(255, 250, 245, 0.35) 72%),
        linear-gradient(180deg, rgba(96, 21, 29, 0.02), rgba(96, 21, 29, 0)),
        linear-gradient(180deg, transparent 74%, #fff 100%);
    pointer-events: none;
    z-index: 1;
}

html[dir="rtl"] .ukb-hero-section::after {
    background:
        radial-gradient(circle at 86% 18%, rgba(199, 178, 158, 0.18), transparent 24%),
        linear-gradient(270deg, rgba(255, 250, 245, 0.98) 0%, rgba(255, 250, 245, 0.9) 38%, rgba(255, 250, 245, 0.35) 72%),
        linear-gradient(180deg, rgba(96, 21, 29, 0.02), rgba(96, 21, 29, 0)),
        linear-gradient(180deg, transparent 74%, #fff 100%);
}

.ukb-hero-content {
    position: relative;
    z-index: 2;
    width: min(620px, 100%);
    padding: 90px 0 170px;
}

.ukb-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(199, 178, 158, 0.2);
    color: var(--ukb-maroon-900);
    font-weight: 700;
    font-size: 13px;
    border: 1px solid rgba(96, 21, 29, 0.14);
    animation: ukbFadeUp 0.9s ease both;
}

.ukb-hero-content h1 {
    margin: 24px 0 0;
    font-size: clamp(38px, 5.2vw, 62px);
    line-height: 1.06;
    letter-spacing: -1.8px;
    font-weight: 800;
    animation: ukbFadeUp 0.9s ease 0.12s both;
}

.ukb-hero-content h1 span {
    color: var(--ukb-maroon-900);
}

.ukb-hero-content p {
    margin: 20px 0 0;
    max-width: 520px;
    color: #524948;
    font-size: 16px;
    line-height: 1.75;
    animation: ukbFadeUp 0.9s ease 0.24s both;
}

.ukb-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 36px;
    animation: ukbFadeUp 0.9s ease 0.36s both;
}

.ukb-floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(199, 178, 158, 0.28);
    filter: blur(1px);
    animation: ukbFloatShape 7s ease-in-out infinite;
    z-index: 1;
}

.ukb-shape-1 { width: 90px; height: 90px; right: 14%; top: 16%; }
.ukb-shape-2 { width: 55px; height: 55px; right: 38%; bottom: 22%; animation-delay: 1.2s; }
.ukb-shape-3 { width: 35px; height: 35px; left: 8%; bottom: 25%; animation-delay: 2s; }

.ukb-features-section {
    position: relative;
    z-index: 5;
    margin-top: -95px;
}

.ukb-feature-panel,
.ukb-section-panel-soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 243, 0.92));
    backdrop-filter: blur(18px);
    border: 1px solid var(--ukb-border);
    border-radius: var(--ukb-radius-lg);
    box-shadow: var(--ukb-shadow);
}

.ukb-feature-panel {
    padding: 34px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ukb-feature-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding-right: 24px;
    border-right: 1px solid rgba(96, 21, 29, 0.10);
}

.ukb-feature-item:last-child {
    border-right: 0;
    padding-right: 0;
}

.ukb-icon-circle {
    width: 66px;
    height: 66px;
    min-width: 66px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ukb-maroon-900);
    background: linear-gradient(145deg, #fff, #f1e5d8);
    border: 1px solid rgba(96, 21, 29, 0.14);
    font-size: 26px;
    transition: var(--ukb-transition);
}

.ukb-feature-item:hover .ukb-icon-circle,
.ukb-step:hover .ukb-icon-circle {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 16px 30px rgba(96, 21, 29, 0.16);
}

.ukb-icon-circle-solid {
    background: var(--ukb-maroon-900);
    color: #fff;
}

.ukb-feature-item h3 {
    margin: 0 0 8px;
    font-size: 16px;
}

.ukb-feature-item p {
    margin: 0;
    color: var(--ukb-ink-700);
    font-size: 14px;
    line-height: 1.75;
}

.ukb-section {
    padding: 72px 0;
}

.ukb-section-tight {
    padding-top: 0;
}

.ukb-section-panel {
    border-radius: var(--ukb-radius-lg);
    box-shadow: var(--ukb-shadow);
    position: relative;
    overflow: hidden;
    padding: 46px;
}

.ukb-section-panel-maroon {
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.16), transparent 28%),
        radial-gradient(circle at bottom right, rgba(199,178,158,0.14), transparent 24%),
        linear-gradient(135deg, var(--ukb-maroon-950), var(--ukb-maroon-900));
    color: #fff;
}

.ukb-section-panel-soft::after {
    content: "";
    position: absolute;
    inset: auto -3rem -4rem auto;
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    background: rgba(199, 178, 158, 0.12);
    filter: blur(10px);
}

.ukb-section-title {
    text-align: center;
    margin-bottom: 38px;
    position: relative;
    z-index: 2;
}

.ukb-section-title h2 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 42px);
    letter-spacing: -1px;
}

.ukb-section-title p {
    margin: 0;
    color: var(--ukb-ink-700);
    font-size: 17px;
}

.ukb-section-title-light p {
    color: rgba(255, 255, 255, 0.85);
}

.ukb-underline {
    width: 76px;
    height: 4px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--ukb-maroon-900), var(--ukb-beige-500));
    margin: 0 auto 16px;
}

.ukb-section-title-light .ukb-underline {
    background: rgba(255, 255, 255, 0.95);
}

.ukb-glance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    position: relative;
    z-index: 2;
}

.ukb-glance-card {
    padding: 10px 26px;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.ukb-glance-card:last-child {
    border-right: 0;
}

.ukb-glance-card i {
    font-size: 34px;
    margin-bottom: 20px;
}

.ukb-glance-card h3 {
    margin: 0 0 15px;
    font-size: 18px;
}

.ukb-glance-card p,
.ukb-glance-card li,
.ukb-glance-card a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.8;
}

.ukb-glance-card ul {
    margin: 0;
    padding-left: 18px;
}

.ukb-steps-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 38px;
    text-align: center;
}

.ukb-steps-grid-logged-in {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.ukb-section-panel-soft::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 130px;
    height: 1px;
    width: 78%;
    margin: 0 auto;
    border-top: 2px dashed rgba(96, 21, 29, 0.18);
}

.ukb-step {
    position: relative;
    z-index: 2;
}

.ukb-step-icon {
    margin: 0 auto 18px;
    width: 82px;
    height: 82px;
    font-size: 30px;
    position: relative;
}

.ukb-step-number {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ukb-maroon-900);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.ukb-step h3 {
    margin: 0 0 10px;
    font-size: 16px;
}

.ukb-step p {
    margin: 0;
    color: var(--ukb-ink-700);
    font-size: 14px;
    line-height: 1.75;
}

.ukb-section-cta {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 42px;
}

.ukb-scholarship-banner {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    align-items: center;
    gap: 26px;
    min-height: 160px;
    padding: 34px 40px;
    border-radius: var(--ukb-radius-lg);
    border: 1px solid var(--ukb-border);
    box-shadow: var(--ukb-shadow);
    background:
        linear-gradient(90deg, rgba(255, 250, 245, 0.98) 0%, rgba(255, 250, 245, 0.92) 34%, rgba(255, 250, 245, 0.46) 68%, rgba(255, 250, 245, 0.12) 100%),
        var(--landing-scholarship-image) right center / cover no-repeat;
}

[dir="rtl"] .ukb-scholarship-banner {
    background:
        linear-gradient(270deg, rgba(255, 250, 245, 0.98) 0%, rgba(255, 250, 245, 0.92) 34%, rgba(255, 250, 245, 0.46) 68%, rgba(255, 250, 245, 0.12) 100%),
        var(--landing-scholarship-image) left center / cover no-repeat;
}

.ukb-scholarship-banner h2 {
    margin: 0 0 8px;
    font-size: 28px;
}

.ukb-scholarship-banner p {
    margin: 0;
    color: var(--ukb-ink-700);
    line-height: 1.7;
}

.ukb-landing-footer {
    margin-top: 40px;
    padding: 58px 0 22px;
    color: #fff;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 32%),
        radial-gradient(circle at bottom right, rgba(199,178,158,0.12), transparent 26%),
        linear-gradient(135deg, var(--ukb-maroon-950), var(--ukb-maroon-900));
}

.ukb-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 38px;
    border-bottom: 1px solid rgba(255,255,255,0.18);
}

.ukb-footer-logo img {
    width: 145px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.ukb-landing-footer h3 {
    margin: 0 0 16px;
    font-size: 17px;
    color: #fff !important;
}

.ukb-landing-footer .ukb-footer-grid h3,
.ukb-landing-footer .ukb-footer-grid > div > h3,
.ukb-admission-footer .ukb-footer-grid h3,
.ukb-admission-footer .ukb-footer-grid > div > h3 {
    color: #fff !important;
}

.ukb-landing-footer p,
.ukb-landing-footer a {
    display: block;
    color: rgba(255,255,255,0.84);
    font-size: 14px;
    line-height: 1.9;
}

.ukb-footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.ukb-footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--ukb-transition);
}

.ukb-footer-socials a:hover {
    background: #fff;
    color: var(--ukb-maroon-900);
    transform: translateY(-5px);
}

.ukb-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    color: rgba(255,255,255,0.72);
    font-size: 13px;
}

.ukb-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.ukb-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

@keyframes ukbFloatShape {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-24px) translateX(12px); }
}

@media (max-width: 1180px) {
    .ukb-nav {
        gap: 18px;
        font-size: 13px;
    }

    .ukb-header-actions {
        gap: 8px;
    }

    .ukb-btn,
    .ukb-profile-chip,
    .ukb-header-link {
        font-size: 13px;
    }
}

@media (max-width: 1024px) {
    .ukb-nav,
    .ukb-header-actions > .ukb-btn,
    .ukb-header-actions > .ukb-profile-chip,
    .ukb-header-actions > .ukb-profile-menu,
    .ukb-header-actions > .ukb-header-link,
    .ukb-landing-topbar {
        display: none;
    }

    .ukb-mobile-toggle {
        display: inline-flex;
    }

    .ukb-header-row {
        min-height: 78px;
    }

    .ukb-notification-card-head,
    .ukb-notification-page-item {
        grid-template-columns: 1fr;
    }

    .ukb-notification-card-head {
        flex-direction: column;
    }

    .ukb-notification-page-item {
        align-items: flex-start;
    }

    .ukb-notification-page-item time {
        white-space: normal;
    }

    .ukb-hero-section {
        min-height: 640px;
        background:
            linear-gradient(180deg, rgba(255,250,245,0.98) 0%, rgba(255,250,245,0.84) 52%, rgba(255,250,245,0.60) 100%),
            var(--landing-hero-image) center / cover no-repeat;
    }

    .ukb-feature-panel,
    .ukb-glance-grid,
    .ukb-steps-grid,
    .ukb-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ukb-feature-item:nth-child(2),
    .ukb-glance-card:nth-child(2) {
        border-right: 0;
    }

    .ukb-section-panel-soft::before {
        display: none;
    }

    .ukb-scholarship-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ukb-scholarship-banner .ukb-icon-circle {
        margin: 0 auto;
    }
}

@media (max-width: 680px) {
    .ukb-container {
        width: min(100% - 26px, 1180px);
    }

    .ukb-hero-content {
        padding: 60px 0 140px;
    }

    .ukb-inner-page-shell {
        padding: 28px 0 56px;
    }

    .ukb-hero-content h1 {
        letter-spacing: -1.2px;
    }

    .ukb-hero-actions,
    .ukb-footer-bottom {
        flex-direction: column;
    }

    .ukb-btn {
        width: 100%;
    }

    .ukb-feature-panel,
    .ukb-glance-grid,
    .ukb-steps-grid,
    .ukb-footer-grid {
        grid-template-columns: 1fr;
    }

    .ukb-feature-item,
    .ukb-glance-card {
        border-right: 0;
        border-bottom: 1px solid rgba(96, 21, 29, 0.12);
        padding-right: 0;
        padding-bottom: 22px;
    }

    .ukb-feature-item:last-child,
    .ukb-glance-card:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .ukb-section-panel,
    .ukb-feature-panel,
    .ukb-scholarship-banner {
        padding: 28px;
    }

    .ukb-footer-logo img {
        width: 145px;
    }
}

[dir="rtl"] .ukb-feature-item,
[dir="rtl"] .ukb-glance-card {
    border-right: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.28);
    padding-right: 0;
    padding-left: 24px;
}

[dir="rtl"] .ukb-feature-item:last-child,
[dir="rtl"] .ukb-glance-card:last-child {
    border-left: 0;
    padding-left: 0;
}

[dir="rtl"] .ukb-glance-card ul {
    padding-left: 0;
    padding-right: 18px;
}

[dir="rtl"] .ukb-hero-content,
[dir="rtl"] .ukb-topbar-copy,
[dir="rtl"] .ukb-topbar-links,
[dir="rtl"] .ukb-landing-footer,
[dir="rtl"] .ukb-mobile-panel {
    text-align: right;
}
