:root {
    --kb-primary: #16205f;
    --kb-secondary: #13736d;
    --kb-gold: #c99a3d;
    --kb-gold-soft: #e8c46f;
    --kb-ink: #111827;
    --kb-muted: #64748b;
    --kb-soft: #f8fafc;
    --kb-line: #e5e7eb;
}

body {
    font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
    color: var(--kb-ink);
    background: #fff;
}

a {
    text-decoration: none;
}

.site-masthead {
    z-index: 1030;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .14);
}

.empire-strip {
    position: relative;
    overflow: visible;
    background:
        linear-gradient(100deg, rgba(22, 32, 95, .18), rgba(19, 115, 109, .08)),
        linear-gradient(90deg, #bf6722 0%, #c98526 48%, #c39a4a 100%);
    color: white;
}

.empire-strip > .container {
    max-width: none;
    padding-left: clamp(24px, 2vw, 38px);
    padding-right: clamp(24px, 2vw, 38px);
}

.brand-row {
    height: 78px;
    display: grid;
    grid-template-columns: minmax(198px, 228px) 1fr minmax(198px, 228px);
    align-items: start;
    gap: 28px;
    padding-top: 0;
}

.brand-logo-card {
    width: 100%;
    max-width: 228px;
    display: grid;
    grid-template-rows: 62px 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .82);
    border-top: 0;
    border-radius: 0 0 8px 8px;
    background: #fff3e8;
    box-shadow: 0 12px 24px rgba(15, 23, 42, .16);
    color: #101a55;
    position: relative;
    z-index: 2;
    transform: none;
}

.project-logo-panel {
    justify-self: start;
}

.project-logo-panel:hover {
    color: #101a55;
}

.brand-logo-face {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px 5px;
    background: #fff3e8;
}

.brand-logo-title {
    display: block;
    font-family: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
    font-weight: 900;
    text-align: center;
    letter-spacing: 0;
}

.brand-logo-title span {
    display: block;
    line-height: .9;
}

.brand-logo-orange {
    color: #ea5f0c;
    font-size: 1.9rem;
}

.brand-logo-blue {
    color: #101a55;
    font-size: 1.22rem;
}

.brand-logo-card small {
    display: grid;
    place-items: center;
    min-width: 0;
    padding: 6px 9px;
    background: #101a55;
    color: white;
    font-size: .63rem;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.brand-logo-slogans span {
    grid-area: 1 / 1;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0;
    transform: translateY(10px);
    animation: brandSloganSwap 9s infinite;
}

.brand-logo-slogans span:nth-child(2) {
    animation-delay: 3s;
}

.brand-logo-slogans span:nth-child(3) {
    animation-delay: 6s;
}

@keyframes brandSloganSwap {
    0%,
    8% {
        opacity: 0;
        transform: translateY(10px);
    }

    13%,
    30% {
        opacity: 1;
        transform: translateY(0);
    }

    36%,
    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .brand-logo-slogans span {
        animation: none;
    }

    .brand-logo-slogans span:first-child {
        opacity: 1;
        transform: none;
    }
}

.empire-slogan {
    align-self: center;
    padding-bottom: 0;
    text-align: center;
    font-family: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(1.65rem, 2.75vw, 2.45rem);
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 0 3px 18px rgba(15, 23, 42, .24);
}

.empire-logo-panel {
    justify-self: end;
}

.main-navbar {
    min-height: 62px;
    padding-top: 0;
    background: #101a55;
    --bs-navbar-color: rgba(255, 255, 255, .9);
    --bs-navbar-hover-color: var(--kb-gold-soft);
    --bs-navbar-active-color: var(--kb-gold-soft);
    --bs-navbar-toggler-border-color: rgba(255, 255, 255, .55);
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.main-navbar .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .94);
    padding: 8px 10px;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    white-space: nowrap;
}

.main-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 2px;
    height: 2px;
    border-radius: 999px;
    background: var(--kb-gold-soft);
    opacity: 0;
    transform: scaleX(.35);
    transition: opacity .18s ease, transform .18s ease;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link:focus {
    color: var(--kb-gold-soft);
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link:focus::after {
    opacity: 1;
    transform: scaleX(1);
}

.main-navbar .nav-cta {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
}

.mobile-nav-brand {
    display: none;
    align-items: center;
    gap: 9px;
    color: white;
    font-weight: 900;
}

.mobile-nav-brand:hover {
    color: var(--kb-gold-soft);
}

.navbar-brand {
    color: var(--kb-primary);
    display: flex;
    gap: 10px;
    align-items: center;
    line-height: 1.1;
}

.brand-mark {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border: 1px solid var(--kb-line);
    border-radius: 8px;
    color: var(--kb-secondary);
}

.navbar-brand small {
    font-size: 12px;
    font-weight: 500;
}

.btn {
    border-radius: 8px;
    font-weight: 700;
}

.btn-primary {
    background: var(--kb-primary);
    border-color: var(--kb-primary);
}

.btn-primary:hover {
    background: var(--kb-secondary);
    border-color: var(--kb-secondary);
}

.btn-outline-primary {
    color: var(--kb-primary);
    border-color: var(--kb-primary);
}

.btn-outline-primary:hover {
    background: var(--kb-primary);
    border-color: var(--kb-primary);
}

.btn-gold {
    background: var(--kb-gold);
    color: #1f2937;
    border: none;
}

.btn-gold:hover,
.btn-gold:focus {
    background: #b98631;
    color: #111827;
}

.badge.text-bg-warning {
    background-color: var(--kb-gold-soft) !important;
    color: #101a55 !important;
}

.badge.text-bg-primary {
    background-color: var(--kb-primary) !important;
}

.hero-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(22, 32, 95, .93), rgba(19, 115, 109, .78)),
        url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&w=1800&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 110px 0;
}

.hero-carousel-section {
    background: #111827;
    padding: 0;
}

.hero-carousel-section .carousel,
.hero-carousel-section .carousel-inner,
.hero-carousel-section .carousel-item {
    height: clamp(520px, 58vh, 620px);
    min-height: 520px;
}

.hero-slide {
    height: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: var(--hero-image, url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&w=1800&q=80'));
    background-size: cover;
    background-position: center;
    color: white;
    padding: 72px 0 82px;
}

.hero-copy {
    max-width: 760px;
}

.hero-carousel-section .carousel-control-prev,
.hero-carousel-section .carousel-control-next {
    width: 6%;
}

.hero-carousel-section .carousel-indicators {
    margin-bottom: 22px;
}

.hero-symbol {
    width: 150px;
    height: 150px;
    font-size: 64px;
}

.hero-badge {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 8px 14px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: .88rem;
    font-weight: 600;
}

.hero-title {
    max-width: 780px;
    min-height: 3.21em;
    margin: 0;
    font-family: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(48px, 4vw, 58px);
    font-weight: 800;
    line-height: 1.07;
}

.hero-lead {
    max-width: 600px;
    min-height: 3.3em;
    margin: 24px 0 18px;
    color: rgba(255, 255, 255, .92);
    font-size: 1.18rem;
    font-weight: 500;
    line-height: 1.65;
}

.hero-slogan {
    max-width: 560px;
    min-height: 1.6em;
    margin: 0 0 38px;
    color: rgba(255, 255, 255, .86);
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-actions .btn-lg {
    min-height: 52px;
    padding: 12px 24px;
    font-size: 1rem;
}

.page-hero {
    background:
        linear-gradient(120deg, rgba(22, 32, 95, .9), rgba(17, 24, 39, .84)),
        url('https://images.unsplash.com/photo-1559136555-9303baea8ebd?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 72px 0;
}

.page-hero h1 {
    font-weight: 900;
    margin-bottom: 12px;
}

.page-hero p {
    max-width: 720px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .86);
    font-size: 1.15rem;
}

.section-padding {
    padding: 80px 0;
}

.site-feedback-stack {
    position: fixed;
    top: clamp(86px, 12vh, 148px);
    right: 24px;
    z-index: 1080;
    width: min(520px, calc(100vw - 32px));
    display: grid;
    gap: 10px;
    pointer-events: none;
}

.site-feedback-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border: 1px solid rgba(201, 154, 61, .42);
    border-left: 6px solid var(--kb-gold);
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(255, 247, 237, .98), rgba(239, 246, 255, .96));
    color: var(--kb-primary);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .18);
    font-weight: 750;
    pointer-events: auto;
}

.site-feedback-alert i {
    color: var(--kb-gold);
    font-size: 1.22rem;
    flex: 0 0 auto;
}

.site-feedback-alert .btn-close {
    flex: 0 0 auto;
    margin-left: auto;
}

.site-feedback-alert-danger {
    border-color: rgba(220, 38, 38, .24);
    border-left-color: #dc2626;
    background: linear-gradient(135deg, rgba(254, 242, 242, .98), rgba(255, 247, 237, .96));
    color: #7f1d1d;
}

.site-feedback-alert-danger i {
    color: #dc2626;
}

.section-title {
    font-weight: 900;
    color: var(--kb-primary);
}

.content-narrow {
    max-width: 900px;
}

.icon-card,
.category-card,
.expert-card,
.stk-card,
.info-card,
.price-card,
.form-panel,
.filter-panel,
.profile-panel {
    border: 1px solid var(--kb-line);
    border-radius: 8px;
    background: white;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.icon-card {
    padding: 24px;
    height: 100%;
    transition: .2s ease;
}

.icon-card:hover,
.category-card:hover {
    transform: translateY(-4px);
}

.icon-card .icon,
.category-card .cat-icon,
.info-card > i {
    font-size: 36px;
    color: var(--kb-secondary);
    margin-bottom: 12px;
}

.meeting-formats-section {
    background:
        linear-gradient(135deg, rgba(238, 242, 255, .98), rgba(232, 244, 243, .98)),
        url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
}

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

.meeting-format-card {
    position: relative;
    min-height: 100%;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(22, 32, 95, .12);
    border-radius: 10px;
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(135deg, rgba(201, 154, 61, .72), rgba(19, 115, 109, .42), rgba(22, 32, 95, .5)) border-box;
    box-shadow: 0 18px 38px rgba(15, 23, 42, .08);
    overflow: hidden;
}

.meeting-format-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--kb-gold), var(--kb-secondary));
}

.meeting-format-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--kb-primary), var(--kb-secondary));
    color: white;
    font-size: 1.55rem;
    box-shadow: 0 12px 24px rgba(22, 32, 95, .18);
}

.meeting-format-card h3 {
    color: var(--kb-primary);
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.meeting-format-card p {
    color: var(--kb-muted);
    line-height: 1.72;
    margin-bottom: 0;
}

.category-card {
    display: block;
    padding: 24px;
    color: var(--kb-ink);
    height: 100%;
    transition: .2s ease;
}

.slogan-banner {
    background:
        linear-gradient(120deg, rgba(17, 24, 39, .92), rgba(22, 32, 95, .82)),
        url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    border-radius: 8px;
    padding: 40px;
}

.banner-kicker {
    display: inline-block;
    color: var(--kb-gold-soft);
    font-size: .92rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.banner-slogan {
    display: inline-block;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    padding: 8px 12px;
    font-weight: 700;
}

.banner-symbol {
    width: 132px;
    height: 132px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .22);
    font-size: 58px;
    color: var(--kb-gold-soft);
}

.home-experts-strip {
    padding: 46px 0 62px;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, .34), transparent 24%),
        linear-gradient(135deg, #ff6000 0%, #ff8a3d 100%);
}

.expert-mini-card {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 16px;
    height: 100%;
    padding: 14px;
    border: 2px solid rgba(201, 154, 61, .58);
    border-radius: 8px;
    background:
        linear-gradient(135deg, #fff7ed, #fff1d6) padding-box,
        linear-gradient(135deg, var(--kb-gold), #5aa6bf, #2f7f96) border-box;
    color: var(--kb-ink);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
    transition: .2s ease;
}

.expert-mini-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, .12);
}

.experts-strip-slogan {
    color: var(--kb-secondary);
    font-weight: 900;
}

.home-flow-section {
    background:
        radial-gradient(circle at 88% 8%, rgba(255, 255, 255, .34), transparent 24%),
        linear-gradient(135deg, #ff44ee 0%, #ff8cf4 100%);
}

.flow-card {
    position: relative;
    height: 100%;
    min-height: 260px;
    padding: 28px;
    border: 1px solid var(--kb-line);
    border-radius: 8px;
    background: #fffbe6;
    box-shadow: 0 14px 30px rgba(15, 23, 42, .07);
    overflow: hidden;
}

.flow-card span {
    position: absolute;
    top: 18px;
    right: 20px;
    color: rgba(22, 32, 95, .12);
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
}

.flow-card i {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--kb-primary), var(--kb-secondary));
    color: white;
    font-size: 26px;
}

.flow-card h3 {
    color: var(--kb-primary);
    font-size: 1.3rem;
    font-weight: 900;
}

.flow-card p {
    color: var(--kb-muted);
    margin-bottom: 0;
    line-height: 1.65;
}

.home-split-section {
    padding: 18px 0 78px;
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 255, 255, .36), transparent 22%),
        linear-gradient(135deg, #06c6c0 0%, #65ded9 100%);
}

.home-feature-panel {
    min-height: 100%;
    padding: 36px;
    border-radius: 8px;
    color: white;
    background-size: cover;
    background-position: center;
}

.home-feature-panel h2 {
    max-width: 540px;
    margin-bottom: 16px;
    font-weight: 900;
}

.home-feature-panel p {
    max-width: 600px;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, .9);
    line-height: 1.7;
}

.pool-panel {
    background:
        linear-gradient(120deg, rgba(22, 32, 95, .92), rgba(19, 115, 109, .72)),
        url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1200&q=80');
}

.stk-panel {
    background:
        linear-gradient(120deg, rgba(16, 26, 85, .9), rgba(201, 154, 61, .62)),
        url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1200&q=80');
}

.home-stk-section {
    background:
        radial-gradient(circle at 88% 18%, rgba(255, 255, 255, .34), transparent 24%),
        linear-gradient(135deg, #c62034 0%, #e05263 100%);
}

.home-stk-card {
    height: 100%;
    border-top: 4px solid var(--kb-gold);
    background: #f8f3ff;
}

.home-impact-section {
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, .35), transparent 24%),
        linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.impact-band {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 42px;
    border-radius: 8px;
    background:
        linear-gradient(120deg, rgba(15, 23, 42, .94), rgba(22, 32, 95, .82)),
        url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1400&q=80');
    background-size: cover;
    background-position: center;
    color: white;
}

.impact-band h2 {
    margin-bottom: 12px;
    font-weight: 900;
}

.impact-band p {
    max-width: 780px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .86);
    line-height: 1.7;
}

.impact-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.expert-mini-avatar {
    width: 76px;
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, #e0f2fe, #fef3c7);
    color: var(--kb-primary);
    font-size: 34px;
    overflow: hidden;
}

.expert-mini-avatar img,
.expert-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-mini-content {
    min-width: 0;
}

.expert-mini-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: var(--kb-muted);
    font-size: 12px;
    margin-bottom: 6px;
}

.expert-mini-topline span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.expert-mini-topline strong {
    color: var(--kb-primary);
    background: #fef3c7;
    border-radius: 8px;
    padding: 2px 6px;
}

.expert-mini-card h3 {
    font-size: 1.08rem;
    font-weight: 900;
    margin-bottom: 4px;
}

.expert-mini-card p {
    color: var(--kb-muted);
    margin-bottom: 10px;
    font-size: .95rem;
}

.expert-mini-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.expert-mini-prices span {
    background: #f1f5f9;
    border-radius: 8px;
    color: var(--kb-ink);
    font-size: 12px;
    padding: 4px 7px;
}

.expert-card {
    overflow: hidden;
    height: 100%;
}

.expert-photo {
    height: 210px;
    background: linear-gradient(135deg, #e0f2fe, #fef3c7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: var(--kb-primary);
    overflow: hidden;
}

.profile-panel {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 248, 237, .96), rgba(238, 242, 255, .96)),
        radial-gradient(circle at top right, rgba(201, 154, 61, .18), transparent 38%);
}

.profile-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 92px;
    background: linear-gradient(90deg, var(--kb-primary), #123f6e 48%, var(--kb-teal));
}

.profile-panel .expert-photo {
    position: relative;
    z-index: 1;
    width: 154px;
    height: 174px;
    margin: 28px auto 0;
    border: 4px solid rgba(255, 255, 255, .92);
    border-radius: 14px;
    background: #f8fafc;
    box-shadow: 0 18px 35px rgba(15, 23, 42, .22);
    font-size: 54px;
}

.profile-panel .expert-photo img {
    object-fit: cover;
    object-position: center top;
}

.profile-panel .p-4 {
    position: relative;
    z-index: 1;
    padding-top: 20px !important;
    text-align: center;
}

.profile-panel .selected-stk-card {
    text-align: left;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(8px);
}

.expert-body,
.stk-card,
.info-card,
.price-card,
.form-panel,
.filter-panel {
    padding: 24px;
}

.amount-tag {
    display: inline-block;
    background: #f3f4f6;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 13px;
    margin: 2px;
}

.price-card {
    height: 100%;
}

.price-card strong {
    display: block;
    color: var(--kb-secondary);
    font-size: 1.3rem;
}

.donation-box {
    display: grid;
    gap: 4px;
    background: var(--kb-soft);
    border-radius: 8px;
    padding: 12px;
}

.stk-logo-wrap {
    width: 88px;
    height: 88px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border: 1px solid var(--kb-line);
    border-radius: 8px;
    background: color-mix(in srgb, var(--brand-color) 12%, white);
    color: var(--brand-color);
    font-size: 24px;
    font-weight: 900;
    padding: 10px;
    overflow: hidden;
}

.stk-logo-wrap span {
    line-height: 1;
}

.stk-logo {
    position: absolute;
    inset: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    object-fit: contain;
    background: white;
}

.selected-stk-card,
.form-selected-stk {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--kb-line);
    border-radius: 8px;
    background: var(--kb-soft);
}

.selected-stk-card {
    padding: 12px;
    margin-bottom: 18px;
}

.form-selected-stk {
    min-height: 100%;
    padding: 10px 12px;
}

.selected-stk-logo {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    margin-bottom: 0;
    font-size: 16px;
}

.selected-stk-logo .stk-logo {
    inset: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
}

.selected-stk-card span,
.form-selected-stk span {
    display: block;
    color: var(--kb-muted);
    font-size: 12px;
    font-weight: 700;
}

.selected-stk-card strong,
.form-selected-stk strong {
    display: block;
    color: var(--kb-ink);
    font-size: .98rem;
    line-height: 1.25;
}

.donation-box code {
    color: var(--kb-primary);
    white-space: normal;
}

.empty-state {
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    padding: 28px;
    text-align: center;
    color: var(--kb-muted);
    background: var(--kb-soft);
}

.form-control,
.form-select {
    border-radius: 8px;
    min-height: 44px;
}

.meeting-type-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.meeting-type-option {
    display: grid;
    gap: 10px;
    min-height: 118px;
    padding: 14px;
    border: 1px solid var(--kb-line);
    border-radius: 8px;
    background: #fff;
}

.meeting-type-option span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--kb-primary);
}

.meeting-type-option strong {
    font-size: .95rem;
}

.meeting-choice-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.meeting-choice-option {
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border: 1px solid var(--kb-line);
    border-radius: 8px;
    background: #f8fffd;
    color: var(--kb-primary);
    cursor: pointer;
}

.meeting-choice-option strong {
    font-size: .95rem;
}

.details-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.optional-details-panel {
    margin-top: 12px;
    padding: 22px;
    border: 1px dashed rgba(22, 32, 95, .25);
    border-radius: 10px;
    background: linear-gradient(135deg, #f8fffd, #f4f6ff);
}

.optional-amount-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.expert-experience-card h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--kb-primary);
}

.application-required-panel {
    padding: 22px;
    border: 2px solid rgba(201, 154, 61, .58);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(255, 247, 237, .96), rgba(255, 251, 235, .94)),
        radial-gradient(circle at 90% 10%, rgba(255, 189, 115, .28), transparent 26%);
    box-shadow: 0 16px 34px rgba(15, 23, 42, .07);
}

.application-required-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #101a55;
    color: white;
    font-weight: 800;
    line-height: 1.45;
}

.application-required-note i {
    color: var(--kb-gold-soft);
    font-size: 1.15rem;
    line-height: 1.4;
}

.terms-info-box {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 2px solid rgba(19, 115, 109, .28);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(239, 246, 255, .98), rgba(236, 253, 245, .96)),
        radial-gradient(circle at 92% 10%, rgba(201, 154, 61, .22), transparent 28%);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
}

.terms-info-box::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 7px;
    background: linear-gradient(180deg, var(--kb-gold), var(--kb-secondary), var(--kb-primary));
}

.terms-info-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.terms-info-heading i {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    border-radius: 10px;
    background: #101a55;
    color: var(--kb-gold-soft);
    font-size: 1.35rem;
}

.terms-info-heading h2 {
    margin: 0;
    color: var(--kb-primary);
    font-size: clamp(1.35rem, 2.3vw, 1.85rem);
    font-weight: 900;
}

.terms-info-box p,
.terms-info-list {
    color: #475569;
    line-height: 1.75;
}

.terms-info-list {
    display: grid;
    gap: 11px;
    margin: 16px 0 0;
    padding-left: 20px;
}

.terms-info-list li::marker {
    color: var(--kb-secondary);
}

.terms-info-box-compact {
    padding: 22px;
}

.terms-info-box-compact .terms-info-heading h2 {
    font-size: 1.24rem;
}

.terms-info-box-compact p {
    margin-bottom: 12px;
}

.terms-acceptance {
    margin-top: 16px;
    padding: 14px;
    border: 1px solid rgba(22, 32, 95, .14);
    border-radius: 10px;
    background: rgba(255, 255, 255, .7);
    font-weight: 800;
}

.welcome-modal .modal-dialog {
    max-width: 560px;
}

.welcome-modal .modal-content {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    background:
        radial-gradient(circle at 16% 12%, rgba(255, 226, 153, .78), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(255, 136, 68, .32), transparent 30%),
        linear-gradient(145deg, #e8b34d 0%, #d98732 46%, #c07a2a 100%);
    box-shadow: 0 30px 80px rgba(15, 23, 42, .34);
}

.welcome-modal .modal-content::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 2px solid rgba(201, 154, 61, .7);
    border-radius: 14px;
    pointer-events: none;
}

.welcome-modal .modal-content::after {
    content: "";
    position: absolute;
    inset: auto -20% -42% -20%;
    height: 210px;
    background: linear-gradient(90deg, rgba(16, 26, 85, .98), rgba(22, 32, 95, .94));
    transform: rotate(-4deg);
}

.welcome-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 4;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, .8);
    opacity: 1;
}

.welcome-modal-frame {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 34px 30px 8px;
}

.welcome-empire-logo {
    width: min(275px, 78vw);
    display: grid;
    grid-template-rows: 82px 34px;
    overflow: hidden;
    border: 1px solid rgba(16, 26, 85, .22);
    border-radius: 10px;
    background: #fff3e8;
    box-shadow: 0 16px 34px rgba(15, 23, 42, .16);
}

.welcome-empire-logo .brand-logo-face {
    padding: 9px 16px 7px;
}

.welcome-empire-logo .brand-logo-orange {
    font-size: 2.3rem;
}

.welcome-empire-logo .brand-logo-blue {
    font-size: 1.42rem;
}

.welcome-empire-logo small {
    display: grid;
    place-items: center;
    background: #101a55;
    color: white;
    font-size: .76rem;
    font-weight: 900;
}

.welcome-modal .modal-body {
    position: relative;
    z-index: 2;
    padding: 18px 44px 42px;
    text-align: center;
}

.welcome-modal-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(16, 26, 85, .92);
    color: white;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.welcome-modal h2 {
    max-width: 440px;
    margin: 0 auto 14px;
    color: #101a55;
    font-family: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.45rem);
    font-weight: 900;
    line-height: 1.08;
}

.welcome-modal p {
    max-width: 440px;
    margin: 0 auto 26px;
    color: #1f2937;
    font-size: 1rem;
    line-height: 1.7;
}

.welcome-modal-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.welcome-modal-actions .btn {
    min-height: 44px;
    padding: 10px 18px;
}

.site-footer {
    background: #0f172a;
    color: white;
}

.site-footer a {
    color: #cbd5e1;
}

.site-footer .text-muted {
    color: #94a3b8 !important;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
}

.footer-legal-links a {
    color: var(--kb-gold-soft);
    font-weight: 700;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .8);
    font-size: 1.08rem;
    transition: background .18s ease, color .18s ease;
    border: 1px solid rgba(255, 255, 255, .15);
}

.footer-social a:hover {
    background: var(--kb-gold);
    color: #101a55;
    border-color: var(--kb-gold);
}

.legal-list {
    display: grid;
    gap: 12px;
    margin: 24px 0;
    padding-left: 20px;
}

.important-note {
    border-left: 5px solid var(--kb-gold);
    background: #fffbeb;
}

.important-note strong {
    display: block;
    color: var(--kb-primary);
    margin-bottom: 8px;
}

.highlight-box {
    border-left: 4px solid var(--kb-gold);
    background: linear-gradient(135deg, #fef9ef, #fff7ed);
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin: 28px 0;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

.highlight-box p {
    line-height: 1.75;
}

.mission-highlight {
    position: relative;
    border: 7px solid var(--kb-gold);
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(255, 247, 237, .96), rgba(232, 244, 243, .94)),
        radial-gradient(circle at 92% 12%, rgba(201, 154, 61, .24), transparent 24%);
    box-shadow: 0 18px 38px rgba(15, 23, 42, .08);
}

.mission-highlight-title {
    display: flex;
    width: max-content;
    margin: 0 auto 12px auto;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    background: #101a55;
    color: white;
    font-weight: 900;
}

.mission-highlight-title i {
    color: var(--kb-gold-soft);
    font-size: 1.15rem;
}

.mission-highlight strong {
    color: var(--kb-primary);
}

.expert-id-card {
    position: relative;
    border-radius: 12px;
    background:
        radial-gradient(circle at 84% 20%, rgba(255, 255, 255, .2), transparent 28%),
        linear-gradient(135deg, #2f7f96 0%, #3b8fb6 54%, #6aa6c8 100%);
    color: white;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(22, 32, 95, .22);
    transition: transform .2s ease, box-shadow .2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.expert-id-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #c99a3d, #e8c46f, #c99a3d);
    z-index: 2;
}

.expert-id-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(35, 100, 123, .82), rgba(44, 134, 161, .44) 46%, rgba(47, 127, 150, .72)),
        url('/assets/img/expert-card-bg.png');
    background-size: cover;
    background-position: center right;
    opacity: .28;
    filter: saturate(.7) contrast(.9);
    pointer-events: none;
    z-index: 0;
}

.expert-id-card > * {
    position: relative;
    z-index: 1;
}

.expert-id-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 42px rgba(22, 32, 95, .32);
}

.expert-id-header {
    display: flex;
    gap: 16px;
    padding: 22px 18px 14px;
    align-items: flex-start;
}

.expert-id-photo {
    width: 82px;
    height: 82px;
    flex: 0 0 82px;
    border-radius: 8px;
    border: 2px solid rgba(201, 154, 61, .65);
    overflow: hidden;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: rgba(255, 255, 255, .7);
}

.expert-id-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-id-info {
    flex: 1;
    min-width: 0;
}

.expert-id-info h4 {
    font-size: 1.05rem;
    font-weight: 900;
    margin-bottom: 3px;
    color: white;
    line-height: 1.2;
}

.expert-id-info .expert-profession {
    color: rgba(255, 255, 255, .75);
    font-size: .88rem;
    margin-bottom: 9px;
    line-height: 1.35;
}

.expert-id-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 7px;
}

.expert-id-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    max-width: 100%;
    padding: 4px 8px;
    border: 1px solid rgba(201, 154, 61, .34);
    border-radius: 6px;
    background: rgba(255, 255, 255, .11);
    color: rgba(255, 255, 255, .88);
    font-size: .78rem;
    font-weight: 800;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.expert-id-meta span i {
    color: var(--kb-gold-soft);
}

.expert-id-category-line {
    margin-top: 6px;
}

.expert-id-category-line span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    max-width: 100%;
    padding: 3px 8px;
    border: 1px solid rgba(201, 154, 61, .38);
    border-radius: 6px;
    background: rgba(201, 154, 61, .18);
    color: var(--kb-gold-soft);
    font-size: .74rem;
    font-weight: 800;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.expert-id-category-line i {
    color: var(--kb-gold-soft);
}

.expert-id-stk-line {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    margin-top: 8px;
    padding: 6px 8px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .12);
}

.expert-id-stk-mark {
    position: relative;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 7px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-color, #101a55);
    color: white;
    font-size: .62rem;
    font-weight: 900;
    line-height: 1;
}

.expert-id-stk-mark img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3px;
    background: white;
}

.expert-id-stk-name {
    min-width: 0;
    color: rgba(255, 255, 255, .92);
    font-size: .76rem;
    font-weight: 800;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.expert-id-category {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(201, 154, 61, .4);
    border-radius: 6px;
    padding: 3px 8px;
    font-size: .74rem;
    font-weight: 700;
    color: #e8c46f;
}

.expert-id-body {
    padding: 0 18px 18px;
    flex: 1;
}

.expert-id-bio {
    color: rgba(255, 255, 255, .78);
    font-size: .875rem;
    line-height: 1.55;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.expert-id-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 18px;
    background: rgba(0, 0, 0, .18);
    border-top: 1px solid rgba(255, 255, 255, .1);
    gap: 10px;
}

.expert-id-serial {
    font-size: .7rem;
    color: rgba(255, 255, 255, .45);
    font-family: monospace;
    letter-spacing: .06em;
    white-space: nowrap;
}

.expert-id-card .btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--kb-gold);
    color: #101a55;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: .82rem;
    font-weight: 900;
    white-space: nowrap;
    transition: background .18s ease;
}

.expert-id-card .btn-detail:hover {
    background: #b98631;
    color: #0f172a;
}

.expert-id-stripe {
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255,255,255,.08) 0,
        rgba(255,255,255,.08) 8px,
        transparent 8px,
        transparent 16px
    );
    margin: 0 18px 14px;
}

.nav-cta-register {
    font-size: .72rem !important;
    letter-spacing: .03em;
}

.expert-id-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
}

.expert-id-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.expert-id-prices span {
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(201, 154, 61, .3);
    border-radius: 6px;
    color: rgba(255, 255, 255, .88);
    font-size: .78rem;
    font-weight: 700;
    padding: 4px 9px;
}

.expert-id-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(201, 154, 61, .22);
    border: 1px solid rgba(201, 154, 61, .45);
    border-radius: 6px;
    color: #e8c46f;
    font-size: .75rem;
    font-weight: 700;
    padding: 3px 8px;
}

.expert-id-cta {
    color: #e8c46f;
    font-size: .82rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.tracking-panel {
    border: 1px solid rgba(22, 32, 95, .14);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(255, 247, 237, .98), rgba(239, 246, 255, .98)),
        radial-gradient(circle at 90% 10%, rgba(201, 154, 61, .18), transparent 28%);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
}

.tracking-status-card {
    display: grid;
    gap: 10px;
    padding: 22px;
    border: 1px solid rgba(201, 154, 61, .35);
    border-radius: 12px;
    background: rgba(255, 255, 255, .76);
}

.tracking-status-card strong {
    color: var(--kb-primary);
    font-size: 1.08rem;
}

.tracking-link-code {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(22, 32, 95, .16);
    border-radius: 10px;
    background: #f8fafc;
    color: var(--kb-primary);
    font-size: .92rem;
    overflow-wrap: anywhere;
}

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

.tracking-detail-item {
    padding: 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(22, 32, 95, .1);
}

.tracking-detail-item span {
    display: block;
    color: var(--kb-muted);
    font-size: .78rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.tracking-detail-item strong {
    color: var(--kb-primary);
}

.admin-reservation-card {
    overflow: hidden;
}

.admin-reservation-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--kb-line);
}

.admin-reservation-kicker {
    color: var(--kb-muted);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-reservation-header h2 {
    margin: 3px 0 8px;
    color: var(--kb-primary);
    font-size: 1.35rem;
    font-weight: 900;
}

.admin-reservation-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    color: var(--kb-muted);
    font-size: .88rem;
    font-weight: 700;
}

.admin-reservation-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.admin-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #e0f2fe;
    color: #075985;
    font-size: .8rem;
    font-weight: 900;
    white-space: nowrap;
}

.admin-status-waiting_receipt {
    background: #fff7ed;
    color: #9a3412;
}

.admin-status-receipt_received {
    background: #fef9c3;
    color: #854d0e;
}

.admin-status-scheduled {
    background: #dcfce7;
    color: #166534;
}

.admin-status-completed {
    background: #e0e7ff;
    color: #3730a3;
}

.admin-status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.admin-reservation-block {
    padding: 18px;
    border: 1px solid var(--kb-line);
    border-radius: 12px;
    background: #f8fafc;
}

.admin-reservation-block h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--kb-primary);
    font-size: 1rem;
    font-weight: 900;
}

.admin-reservation-list {
    display: grid;
    gap: 10px;
    margin: 0;
}

.admin-reservation-list div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 9px;
    border-bottom: 1px solid rgba(203, 213, 225, .72);
}

.admin-reservation-list dt {
    color: var(--kb-muted);
    font-size: .82rem;
}

.admin-reservation-list dd {
    margin: 0;
    color: var(--kb-ink);
    font-weight: 800;
    text-align: right;
}

.admin-reservation-note {
    padding: 12px;
    border-radius: 10px;
    background: white;
    border: 1px solid rgba(22, 32, 95, .1);
}

.admin-reservation-note strong {
    display: block;
    color: var(--kb-primary);
    margin-bottom: 5px;
}

.admin-reservation-note p {
    margin-bottom: 0;
    color: #475569;
    line-height: 1.6;
}

.admin-reservation-note span {
    display: block;
    margin-top: 8px;
    color: var(--kb-muted);
    font-size: .82rem;
}

.admin-reservation-note-warning {
    border-color: rgba(201, 154, 61, .42);
    background: #fffbeb;
}

.admin-tracking-code {
    padding: 10px 12px;
    border: 1px solid rgba(22, 32, 95, .14);
    border-radius: 10px;
    background: white;
    color: var(--kb-primary);
    font-size: .84rem;
    overflow-wrap: anywhere;
}

.admin-inline-actions {
    display: grid;
    gap: 10px;
}

.admin-receipt-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 10px;
    background: white;
    border: 1px solid rgba(19, 115, 109, .18);
}

.admin-receipt-summary > i {
    color: var(--kb-secondary);
    font-size: 1.65rem;
}

.admin-receipt-summary strong,
.admin-receipt-summary span {
    display: block;
}

.admin-receipt-summary strong {
    color: var(--kb-primary);
}

.admin-receipt-summary span {
    color: var(--kb-muted);
    font-size: .84rem;
}

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

.admin-schedule-wide {
    grid-column: span 3;
}

.admin-reservation-page-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.admin-reservation-page-head h1 {
    margin: 4px 0 6px;
    color: var(--kb-primary);
    font-size: clamp(1.7rem, 2.5vw, 2.25rem);
    font-weight: 900;
}

.admin-reservation-page-head p {
    margin: 0;
    color: var(--kb-muted);
}

.admin-reservation-eyebrow {
    color: var(--kb-secondary);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.admin-reservation-count {
    min-width: 112px;
    padding: 14px 16px;
    border: 1px solid var(--kb-line);
    border-radius: 10px;
    background: white;
    text-align: right;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
}

.admin-reservation-count span {
    display: block;
    color: var(--kb-muted);
    font-size: .78rem;
    font-weight: 800;
}

.admin-reservation-count strong {
    display: block;
    color: var(--kb-primary);
    font-size: 1.8rem;
    line-height: 1;
}

.admin-reservation-stack {
    display: grid;
    gap: 18px;
}

.admin-reservation-item {
    border: 1px solid #dbe3ef;
    border-radius: 12px;
    background: white;
    box-shadow: 0 16px 34px rgba(15, 23, 42, .07);
    overflow: hidden;
}

.admin-reservation-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    background: linear-gradient(135deg, #f8fafc, #eef6ff);
    border-bottom: 1px solid #dbe3ef;
}

.admin-reservation-title span,
.admin-reservation-date {
    color: var(--kb-muted);
    font-size: .78rem;
    font-weight: 800;
}

.admin-reservation-title h2 {
    margin: 4px 0 7px;
    color: var(--kb-primary);
    font-size: 1.32rem;
    font-weight: 900;
}

.admin-reservation-title p {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    color: #334155;
    font-weight: 750;
}

.admin-reservation-title p span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(16, 26, 85, .08);
    color: var(--kb-primary);
}

.admin-reservation-top-actions {
    display: grid;
    justify-items: end;
    gap: 8px;
}

.admin-reservation-quick {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
    gap: 12px;
    align-items: center;
    padding: 16px 22px;
    background: #fff;
}

.admin-reservation-quick > div {
    min-width: 0;
}

.admin-reservation-quick span {
    display: block;
    margin-bottom: 3px;
    color: var(--kb-muted);
    font-size: .74rem;
    font-weight: 850;
}

.admin-reservation-quick strong {
    display: block;
    color: #1f2937;
    font-size: .92rem;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.admin-reservation-quick-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.admin-reservation-quick-actions form {
    margin: 0;
}

.admin-reservation-detail-collapse {
    border-top: 1px solid #e2e8f0;
}

.admin-reservation-main {
    display: grid;
    grid-template-columns: minmax(280px, .82fr) minmax(360px, 1.18fr);
    gap: 0;
}

.admin-reservation-section {
    padding: 22px;
}

.admin-reservation-summary {
    border-right: 1px solid #e2e8f0;
    background: #ffffff;
}

.admin-reservation-workflow {
    background: #fbfdff;
}

.admin-reservation-section h3,
.admin-reservation-schedule h3 {
    margin: 0;
    color: var(--kb-primary);
    font-size: 1rem;
    font-weight: 900;
}

.admin-reservation-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.admin-reservation-section-head span {
    color: var(--kb-muted);
    font-size: .8rem;
    font-weight: 800;
    white-space: nowrap;
}

.admin-reservation-section-head p {
    margin: 5px 0 0;
    color: var(--kb-muted);
    font-size: .9rem;
}

.admin-reservation-kv {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #edf2f7;
}

.admin-reservation-kv span,
.admin-reservation-message span,
.admin-reservation-linkbox span {
    color: var(--kb-muted);
    font-size: .78rem;
    font-weight: 850;
}

.admin-reservation-kv strong {
    min-width: 0;
    color: #1f2937;
    font-weight: 850;
    overflow-wrap: anywhere;
}

.admin-reservation-message,
.admin-reservation-linkbox,
.admin-reservation-muted,
.admin-reservation-warning,
.admin-reservation-success {
    margin-top: 14px;
    padding: 13px 14px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: white;
}

.admin-reservation-message p,
.admin-reservation-warning p {
    margin: 5px 0 0;
    color: #475569;
    line-height: 1.55;
}

.admin-reservation-linkbox code {
    display: block;
    margin-top: 6px;
    color: var(--kb-primary);
    font-size: .82rem;
    white-space: normal;
    overflow-wrap: anywhere;
}

.admin-reservation-muted {
    color: var(--kb-muted);
    background: #f8fafc;
    font-size: .9rem;
}

.admin-reservation-warning {
    border-color: rgba(201, 154, 61, .35);
    background: #fffbeb;
}

.admin-reservation-warning strong {
    color: #92400e;
}

.admin-reservation-success {
    color: #166534;
    background: #f0fdf4;
    border-color: #bbf7d0;
    font-weight: 800;
}

.admin-status-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    margin-bottom: 10px;
}

.admin-reservation-divider {
    height: 1px;
    margin: 18px 0;
    background: #e2e8f0;
}

.admin-receipt-file {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: center;
    padding: 13px;
    border: 1px solid rgba(19, 115, 109, .18);
    border-radius: 10px;
    background: white;
}

.admin-receipt-file i {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 9px;
    background: #e6fffb;
    color: var(--kb-secondary);
    font-size: 1.25rem;
}

.admin-receipt-file strong,
.admin-receipt-file a {
    display: block;
}

.admin-receipt-file strong {
    color: var(--kb-primary);
}

.admin-receipt-file a {
    width: max-content;
    margin-top: 2px;
    color: var(--kb-secondary);
    font-weight: 900;
}

.admin-reject-form {
    display: grid;
    gap: 9px;
    margin-top: 12px;
}

.admin-reservation-schedule {
    padding: 22px;
    border-top: 1px solid #e2e8f0;
    background: #fffaf0;
}

.admin-body {
    background: #f8fafc;
}

.admin-sidebar,
.admin-card,
.admin-stat {
    border: 1px solid var(--kb-line);
    border-radius: 8px;
    background: white;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
}

.admin-sidebar {
    display: grid;
    gap: 4px;
    padding: 12px;
    position: sticky;
    top: 88px;
}

.admin-sidebar a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--kb-ink);
    padding: 10px 12px;
    border-radius: 8px;
    font-weight: 700;
}

.admin-sidebar a:hover {
    background: #f1f5f9;
    color: var(--kb-primary);
}

.admin-card {
    padding: 20px;
}

.admin-stat {
    display: grid;
    gap: 8px;
    padding: 18px;
    color: var(--kb-ink);
    min-height: 105px;
}

.admin-stat span {
    color: var(--kb-muted);
    font-size: 14px;
    font-weight: 700;
}

.admin-stat strong {
    font-size: 32px;
    line-height: 1;
    color: var(--kb-primary);
}

.admin-login {
    max-width: 460px;
    margin: 48px auto;
}

.admin-note {
    max-width: 280px;
    white-space: normal;
}

.admin-thumb {
    width: 96px;
    height: 54px;
    object-fit: cover;
    border: 1px solid var(--kb-line);
    border-radius: 8px;
    background: #f8fafc;
}

.admin-thumb-empty {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--kb-muted);
}

.admin-banner-preview {
    width: min(520px, 100%);
    aspect-ratio: 16 / 7;
    object-fit: cover;
    border: 1px solid var(--kb-line);
    border-radius: 8px;
    background: #f8fafc;
}

.admin-sortable-table tbody tr {
    transition: background-color .16s ease, opacity .16s ease;
}

.admin-sortable-table tbody tr.is-dragging {
    opacity: .55;
    background: #fff7ed;
}

.banner-drag-handle {
    cursor: grab;
}

.banner-drag-handle:active {
    cursor: grabbing;
}

.admin-logo-thumb {
    width: 56px;
    height: 56px;
    border: 1px solid var(--kb-line);
    border-radius: 8px;
}

.logo-thumb-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: color-mix(in srgb, var(--brand-color) 12%, white);
    color: var(--brand-color);
    font-size: 16px;
    font-weight: 900;
}

.logo-thumb-wrap img {
    position: absolute;
    inset: 6px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    object-fit: contain;
    background: white;
}

@media (max-width: 991.98px) {
    .brand-row {
        height: auto;
        min-height: 82px;
        grid-template-columns: minmax(190px, 220px) minmax(190px, 220px);
        justify-content: space-between;
        gap: 16px;
        padding: 0;
    }

    .empire-slogan {
        grid-column: 1 / -1;
        grid-row: 1;
        padding-top: 10px;
        font-size: 1.38rem;
    }

    .brand-logo-card {
        grid-row: 2;
        grid-template-rows: 60px 28px;
        transform: translateY(8px);
    }

    .mobile-nav-brand {
        display: inline-flex;
    }

    .main-navbar .navbar-nav {
        align-items: stretch !important;
        padding: 12px 0;
    }

    .main-navbar .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 11px 0;
    }

    .hero-title {
        max-width: 620px;
        font-size: 54px;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .impact-band {
        grid-template-columns: 1fr;
    }

    .impact-actions {
        justify-content: flex-start;
    }

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

    .meeting-choice-grid,
    .optional-amount-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .meeting-format-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .site-masthead {
        position: static !important;
    }

    .site-feedback-stack {
        top: 12px;
        right: 12px;
        left: 12px;
        width: auto;
    }

    .site-feedback-alert {
        padding: 13px 14px;
        font-size: .92rem;
    }

    .empire-strip > .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .brand-row {
        grid-template-columns: repeat(2, minmax(0, 168px));
        justify-content: center;
        align-items: start;
        gap: 10px 12px;
        padding: 8px 0 12px;
    }

    .empire-slogan {
        grid-column: 1 / -1;
        grid-row: 1;
        padding: 0 6px 2px;
        font-size: clamp(1.18rem, 5vw, 1.52rem);
        line-height: 1.12;
    }

    .project-logo-panel,
    .empire-logo-panel {
        grid-row: 2;
        justify-self: stretch;
    }

    .brand-logo-card {
        max-width: none;
        grid-template-rows: 48px 22px;
        border-top: 1px solid rgba(255, 255, 255, .82);
        border-radius: 8px;
        box-shadow: 0 8px 18px rgba(15, 23, 42, .16);
        transform: none;
    }

    .brand-logo-face {
        padding: 5px 8px 4px;
    }

    .brand-logo-orange {
        font-size: 1.42rem;
    }

    .brand-logo-blue {
        font-size: .94rem;
    }

    .brand-logo-card small {
        padding: 4px 6px;
        font-size: .48rem;
        line-height: 1.05;
    }

    .brand-logo-slogans span {
        animation: none;
        opacity: 0;
        transform: none;
    }

    .brand-logo-slogans span:first-child {
        opacity: 1;
    }

    .main-navbar {
        min-height: 62px;
        padding-top: 0;
    }

    .hero-section,
    .page-hero {
        padding: 64px 0;
    }

    .hero-carousel-section {
        padding: 0;
    }

    .hero-carousel-section .carousel,
    .hero-carousel-section .carousel-inner,
    .hero-carousel-section .carousel-item,
    .hero-slide {
        height: auto;
        min-height: 560px;
    }

    .hero-slide {
        padding: 72px 0;
    }

    .section-padding {
        padding: 56px 0;
    }

    .hero-title {
        max-width: 100%;
        min-height: auto;
        font-size: 38px;
        line-height: 1.12;
    }

    .hero-lead,
    .hero-slogan {
        min-height: auto;
    }

    .hero-badge {
        margin-bottom: 16px;
        font-size: .82rem;
    }

    .banner-kicker {
        margin-bottom: 10px;
        font-size: .86rem;
    }

    .hero-lead {
        margin: 18px 0 14px;
        font-size: 1rem;
        line-height: 1.55;
    }

    .hero-slogan {
        margin-bottom: 30px;
        font-size: .98rem;
        line-height: 1.55;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-actions .btn-lg {
        min-height: 48px;
        padding: 11px 18px;
        font-size: .95rem;
    }

    .slogan-banner {
        padding: 28px;
    }

    .flow-card,
    .home-feature-panel,
    .impact-band {
        padding: 26px;
    }

    .home-split-section {
        padding-bottom: 56px;
    }

    .meeting-type-grid {
        grid-template-columns: 1fr;
    }

    .meeting-choice-grid,
    .optional-amount-grid {
        grid-template-columns: 1fr;
    }

    .meeting-format-card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 22px;
    }

    .application-required-panel,
    .terms-info-box {
        padding: 20px;
    }

    .tracking-detail-grid,
    .admin-schedule-grid {
        grid-template-columns: 1fr;
    }

    .admin-reservation-page-head,
    .admin-reservation-top,
    .admin-reservation-section-head {
        display: grid;
        justify-items: start;
    }

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

    .admin-reservation-quick-actions {
        grid-column: 1 / -1;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .admin-reservation-count,
    .admin-reservation-top-actions {
        justify-items: start;
        text-align: left;
    }

    .admin-reservation-main {
        grid-template-columns: 1fr;
    }

    .admin-reservation-summary {
        border-right: 0;
        border-bottom: 1px solid #e2e8f0;
    }

    .admin-status-form {
        grid-template-columns: 1fr;
    }

    .admin-reservation-kv {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .admin-schedule-wide {
        grid-column: auto;
    }

    .admin-reservation-header {
        flex-direction: column;
    }

    .admin-reservation-list div {
        display: grid;
        gap: 3px;
    }

    .admin-reservation-list dd {
        text-align: left;
    }

    .terms-info-heading {
        align-items: flex-start;
    }

    .terms-info-heading i {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        font-size: 1.15rem;
    }

    .expert-mini-card {
        grid-template-columns: 64px 1fr;
    }

    .expert-mini-avatar {
        width: 64px;
        min-height: 88px;
    }
}
