/* /Pages/Maintenance.razor.rz.scp.css */
/* Maintenance Page Styles */

.maintenance-container[b-nku1hw832u] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0a1628 0%, #1a365d 50%, #0d2847 100%);
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
}

.maintenance-content[b-nku1hw832u] {
    text-align: center;
    max-width: 600px;
    position: relative;
    z-index: 10;
}

.logo-wrapper[b-nku1hw832u] {
    margin-bottom: 32px;
}

.logo[b-nku1hw832u] {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.icon-wrapper[b-nku1hw832u] {
    margin-bottom: 28px;
}

.gear-icon[b-nku1hw832u] {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    color: #60a5fa;
    animation: rotate-b-nku1hw832u 8s linear infinite;
}

.gear-icon svg[b-nku1hw832u] {
    width: 100%;
    height: 100%;
}

@keyframes rotate-b-nku1hw832u {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.title[b-nku1hw832u] {
    font-size: clamp(28px, 6vw, 42px);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.title-en[b-nku1hw832u] {
    font-size: clamp(18px, 4vw, 24px);
    font-weight: 600;
    color: #94a3b8;
    margin: 0 0 32px 0;
    line-height: 1.3;
}

.message-box[b-nku1hw832u] {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 28px 32px;
    margin-bottom: 32px;
}

.message[b-nku1hw832u] {
    font-size: 18px;
    color: #e2e8f0;
    margin: 0 0 12px 0;
    line-height: 1.6;
}

.message-en[b-nku1hw832u] {
    font-size: 15px;
    color: #94a3b8;
    margin: 0;
    line-height: 1.6;
}

.status-badges[b-nku1hw832u] {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
}

.badge[b-nku1hw832u] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

.badge.working[b-nku1hw832u] {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.pulse[b-nku1hw832u] {
    width: 10px;
    height: 10px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse-b-nku1hw832u 2s ease-in-out infinite;
}

@keyframes pulse-b-nku1hw832u {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.info-section[b-nku1hw832u] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.info-item[b-nku1hw832u] {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #94a3b8;
    font-size: 15px;
}

.info-item svg[b-nku1hw832u] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.info-item a[b-nku1hw832u] {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-item a:hover[b-nku1hw832u] {
    color: #93c5fd;
    text-decoration: underline;
}

/* Decorative floating circles */
.decorative-elements[b-nku1hw832u] {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.circle[b-nku1hw832u] {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.circle-1[b-nku1hw832u] {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    top: -100px;
    right: -100px;
    animation: float-b-nku1hw832u 20s ease-in-out infinite;
}

.circle-2[b-nku1hw832u] {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #06b6d4, #0284c7);
    bottom: -80px;
    left: -80px;
    animation: float-b-nku1hw832u 25s ease-in-out infinite reverse;
}

.circle-3[b-nku1hw832u] {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    top: 40%;
    left: 10%;
    animation: float-b-nku1hw832u 18s ease-in-out infinite;
}

@keyframes float-b-nku1hw832u {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -30px) rotate(5deg);
    }

    50% {
        transform: translate(-10px, 20px) rotate(-5deg);
    }

    75% {
        transform: translate(30px, 10px) rotate(3deg);
    }
}

.maintenance-footer[b-nku1hw832u] {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.maintenance-footer p[b-nku1hw832u] {
    color: #64748b;
    font-size: 13px;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .maintenance-container[b-nku1hw832u] {
        padding: 32px 16px;
    }

    .message-box[b-nku1hw832u] {
        padding: 20px 24px;
    }

    .gear-icon[b-nku1hw832u] {
        width: 80px;
        height: 80px;
    }

    .info-section[b-nku1hw832u] {
        gap: 12px;
    }

    .badge[b-nku1hw832u] {
        padding: 10px 20px;
        font-size: 13px;
    }
}
/* /Pages/Register.razor.rz.scp.css */
.container[b-cza4gc33jn] {
	width: min(1120px, 100% - clamp(32px, 8vw, 120px));
	margin-inline: auto;
}

.hk-hero[b-cza4gc33jn] {
	background-image: linear-gradient(to right, #020024, #c3ddff 0, rgba(9, 9, 121, 0)), url('./images/register-banner.png');
	background-size: 100%, cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid #e2e8f0;
}

.hk-hero__inner[b-cza4gc33jn] {
	width: min(1120px, 100% - clamp(32px, 10vw, 140px));
	margin: 0 auto;
	padding: clamp(24px, 5vw, 48px) clamp(20px, 6vw, 60px) clamp(96px, 12vw, 140px);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	align-items: center;
	gap: clamp(20px, 6vw, 48px);
	position: relative;
	z-index: 1;
}

.hk-hero__content[b-cza4gc33jn] {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.hk-hero__badge[b-cza4gc33jn] {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	color: #0055d4;
	border-radius: 999px;
	padding: 6px 18px;
	font-weight: 600;
	font-size: 14px;
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
	width: max-content;
}

.hk-hero__title[b-cza4gc33jn] {
	color: #273f95;
	font-weight: 800;
	font-size: clamp(34px, 6vw, 52px);
	margin: 0;
	line-height: 1.15;
}

.hk-hero__subtitle[b-cza4gc33jn] {
	color: #4c5d7a;
	margin: 0;
	font-size: clamp(16px, 3.3vw, 18px);
	max-width: 48ch;
	line-height: 1.6;
}

.hk-hero__art[b-cza4gc33jn] {
	text-align: right;
}

.hk-hero__art img[b-cza4gc33jn] {
	max-width: 420px;
	width: 100%;
	height: auto;
	filter: drop-shadow(0 20px 45px rgba(15, 23, 42, 0.18));
}

.hk-card[b-cza4gc33jn] {
	width: min(1120px, 100% - clamp(32px, 8vw, 120px));
	margin: clamp(-104px, -12vw, -64px) auto clamp(48px, 8vw, 120px);
	background: #fff;
	border: none;
	border-radius: 24px;
	padding: clamp(24px, 6vw, 52px);
	box-shadow: 0 30px 60px rgba(15, 23, 42, 0.14);
	position: relative;
	z-index: 2;
}

.hk-card__title[b-cza4gc33jn] {
	color: #1e293b;
	margin: 0 0 24px 0;
	font-size: 24px;
	font-weight: 700;
	padding-bottom: 12px;
	border-bottom: 2px solid #e2e8f0;
}

.form-row[b-cza4gc33jn] {
	margin-bottom: 0px;
}

.form-label[b-cza4gc33jn] {
	display: block;
	color: #334155;
	margin-bottom: 8px;
	font-weight: 600;
	font-size: 16px;
}

.req[b-cza4gc33jn] {
	color: #dc2626;
	margin-left: 2px;
}

.serial-inputs[b-cza4gc33jn] {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 12px;
	background: #f5f7ff;
	border-radius: 18px;
	padding: 16px;
	flex-wrap: wrap;
}

.serial-box[b-cza4gc33jn] {
	width: clamp(40px, 9vw, 56px);
	height: clamp(42px, 9vw, 56px);
	border: 2px solid #e2e8f0;
	border-radius: 12px;
	text-align: center;
	font-size: clamp(18px, 4.8vw, 20px);
	font-weight: 600;
	transition: all 0.2s ease;
	background: #f8fafc;
}

.serial-box:focus[b-cza4gc33jn] {
	border-color: #3b82f6;
	background: #fff;
	outline: none;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.serial-box[b-cza4gc33jn] {
	ime-mode: disabled;
	-webkit-text-security: none;
}

.serial-dash[b-cza4gc33jn] {
	margin: 0 8px;
	color: #64748b;
	font-weight: 600;
	font-size: clamp(18px, 4.5vw, 20px);
}

.actions[b-cza4gc33jn] {
	margin-top: 20px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.btn[b-cza4gc33jn] {
	border-radius: 12px;
	padding: 12px 28px;
	border: none;
	background: linear-gradient(120deg, #273f95, #0055d4);
	color: #fff;
	cursor: pointer;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.2s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	box-shadow: 0 10px 30px rgba(13, 61, 145, 0.25);
}

.btn:hover[b-cza4gc33jn] {
	transform: translateY(-2px);
	box-shadow: 0 18px 35px rgba(13, 61, 145, 0.35);
}

.btn.secondary[b-cza4gc33jn] {
	background: #fff;
	color: #273f95;
	border: 2px solid #273f95;
	box-shadow: none;
}

.btn.secondary:hover[b-cza4gc33jn] {
	background: #eef3ff;
	color: #002e7a;
}

.btn.ghost[b-cza4gc33jn] {
	background: transparent;
	color: #64748b;
	border: 2px solid #cbd5e1;
	box-shadow: none;
}

.btn.ghost:hover[b-cza4gc33jn] {
	background: #f8fafc;
	color: #1f325a;
}

.btn.ghost:hover[b-cza4gc33jn] {
	background: #f8fafc;
	color: #475569;
}

.btn.lg[b-cza4gc33jn] {
	padding: 16px 32px;
	font-weight: 700;
	font-size: 18px;
}

.footer-actions[b-cza4gc33jn] {
	display: flex;
	justify-content: flex-end;
	margin-top: 12px;
}

.msg[b-cza4gc33jn] {
	margin-top: 8px;
	font-size: 14px
}

.msg.error[b-cza4gc33jn] {
	color: #b91c1c
}

.msg.success[b-cza4gc33jn] {
	color: #16a34a
}

/* Inline lookup status next to inputs */
.inline-status[b-cza4gc33jn] {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-left: 16px;
	font-weight: 600
}

.inline-status .icon[b-cza4gc33jn] {
	display: inline-grid;
	place-items: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	font-size: 12px
}

.inline-status.warn[b-cza4gc33jn] {
	color: #ea580c
}

.inline-status.warn .icon[b-cza4gc33jn] {
	background: #ea580c;
	color: #fff
}

.inline-status.ok[b-cza4gc33jn] {
	color: #16a34a
}

.inline-status.ok .icon[b-cza4gc33jn] {
	background: #16a34a;
	color: #fff
}

/* Registration form grid */
.form-wrapper .row>[class*="col-"][b-cza4gc33jn] {
	display: flex;
	flex-direction: column;
	position: relative;
}

.form-wrapper label[b-cza4gc33jn] {
	font-weight: 600;
	color: #374151;
	margin-bottom: 8px;
	font-size: 15px;
	display: block;
	text-align: left;
}

[b-cza4gc33jn] .input {
	border: 1.5px solid #d0d8e5;
	border-radius: 14px;
	padding: 14px 16px;
	font-size: 16px;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
	background: #f8fafc;
	color: #1f2937;
	box-shadow: 0 8px 16px rgba(15, 23, 42, 0.04);
	appearance: none;
}

[b-cza4gc33jn] .input:hover {
	border-color: #9cb5dc;
}

[b-cza4gc33jn] .input:focus {
	border-color: #3b82f6;
	background: #fff;
	outline: none;
	box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.08);
}

[b-cza4gc33jn] .input:disabled {
	background: #eef2f8;
	color: #94a3b8;
	cursor: not-allowed;
	box-shadow: none;
}

[b-cza4gc33jn] select.input {
	padding-right: 48px;
	background-image: linear-gradient(135deg, rgba(248, 250, 252, 0.9), rgba(255, 255, 255, 0.9)), url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 8L10 13L15 8' stroke='%2362748b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat, no-repeat;
	background-position: left top, right 16px center;
	background-size: auto, 16px;
}

[b-cza4gc33jn] .input::placeholder {
	color: #94a3b8;
}

.radio-row[b-cza4gc33jn] {
	display: flex;
	gap: 16px;
}

.radio-group[b-cza4gc33jn] {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.radio[b-cza4gc33jn] {
	position: relative;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	font-weight: 600;
	color: #1f2937;
	min-width: 132px;
	justify-content: center;
}

.radio[b-cza4gc33jn]  input[type="radio"] {
	display: none;
	position: absolute;
	inset: 0;
	width: 1px;
	height: 1px;
	margin: 0;
	opacity: 0;
	pointer-events: none;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	appearance: none;
	-webkit-appearance: none;
}

.radio span[b-cza4gc33jn] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	position: relative;
	padding: 14px;
	height: 54px;
	width: 100%;
	border-radius: 14px;
	border: 1.5px solid #d0d8e5;
	background: #f8fafc;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
	box-shadow: 0 8px 16px rgba(15, 23, 42, 0.04);
}

.radio[b-cza4gc33jn]  input[type="radio"]:focus-visible+span {
	outline: none;
}

.radio[b-cza4gc33jn]  input[type="radio"]:checked+span::before {
	border-color: #3b82f6;
}

.radio[b-cza4gc33jn]  input[type="radio"]:checked+span,
.radio:hover span[b-cza4gc33jn] {
	color: #0f172a;
	border-color: #3b82f6;
	background: #f0f7ff;
	box-shadow: 0 10px 22px rgba(59, 130, 246, 0.12);
}

.checkbox-row[b-cza4gc33jn] {
	display: flex;
	gap: 20px;
	align-items: center;
	margin-top: 8px;
	flex-wrap: wrap;
}

.checkbox[b-cza4gc33jn] {
	display: flex;
	gap: 8px;
	align-items: center;
	cursor: pointer;
	padding: 10px 16px;
	border-radius: 8px;
	transition: background 0.2s ease;
	border: 1px solid #e5e7eb;
	background: #f9fafb;
	min-width: fit-content;
}

.checkbox:hover[b-cza4gc33jn] {
	background: #f1f5f9;
}

.checkbox[b-cza4gc33jn]  input[type="checkbox"] {
	margin: 0;
	flex-shrink: 0;
}

/* Special styling for consent checkbox */
.field.col-2 .checkbox[b-cza4gc33jn] {
	background: #f0f9ff;
	border-color: #3b82f6;
	padding: 16px;
	text-align: left;
	align-items: center;
}

.field.col-2 .checkbox span[b-cza4gc33jn] {
	line-height: 1.5;
	color: #334155;
}

.form-actions[b-cza4gc33jn] {
	display: flex;
	justify-content: flex-end;
	gap: 16px;
	margin-top: clamp(24px, 5vw, 48px);
	padding-top: clamp(20px, 4vw, 32px);
	border-top: 1px solid #e5e7eb;
	flex-wrap: wrap;
}

.mt-20[b-cza4gc33jn] {
	margin-top: 32px;
}

/* Submit loading overlay */
.form-wrapper[b-cza4gc33jn] {
	position: relative;
}

.submitting-overlay[b-cza4gc33jn] {
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.7);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 20;
	color: #273f95;
	font-weight: 700;
	gap: 10px;
}

.spinner[b-cza4gc33jn] {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 3px solid #c7d2fe;
	border-top-color: #273f95;
	animation: spin-b-cza4gc33jn 1s linear infinite;
}

.spinner.sm[b-cza4gc33jn] {
	width: 18px;
	height: 18px;
	border-width: 2px
}

.spinner.lg[b-cza4gc33jn] {
	width: 44px;
	height: 44px;
	border-width: 4px
}

@keyframes spin-b-cza4gc33jn {
	to {
		transform: rotate(360deg)
	}
}

/* Full-screen modal loading */
.modal-backdrop[b-cza4gc33jn] {
	position: fixed;
	inset: 0;
	z-index: 50;
	background: rgba(15, 23, 42, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-card[b-cza4gc33jn] {
	background: #fff;
	border-radius: 16px;
	padding: 24px 28px;
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.35);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	min-width: 240px;
}

.modal-text[b-cza4gc33jn] {
	font-weight: 700;
	color: #273f95
}

/* Upload styling */
.form-wrapper label.upload-box[b-cza4gc33jn] {
	border: 2px dashed #cbd5e1;
	border-radius: 12px;
	padding: 20px;
	text-align: center;
	background: #f8fafc;
	transition: all 0.2s ease;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	min-height: 200px;
}

.form-wrapper label.upload-box.has-preview[b-cza4gc33jn] {
	border-style: solid;
	border-color: #3b82f6;
	background: #f0f7ff;
}

.form-wrapper label.upload-box:hover[b-cza4gc33jn] {
	border-color: #3b82f6;
	background: #f1f5f9;
}

.form-wrapper label.upload-box[b-cza4gc33jn]  input[type="file"] {
	padding: 12px 24px;
	border: 2px solid #3b82f6;
	border-radius: 8px;
	background: #3b82f6;
	color: #fff;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	border: none;
}

.form-wrapper label.upload-box[b-cza4gc33jn]  input[type="file"]:hover {
	background: #2563eb;
	transform: translateY(-1px);
}

.form-wrapper label.upload-box .help[b-cza4gc33jn] {
	font-size: 14px;
	color: #64748b;
	line-height: 1.4;
	text-align: center;
	cursor: pointer;
}

/* Upload preview styling */
.upload-preview[b-cza4gc33jn] {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 8px;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	border: 1px solid #e2e8f0;
}

.upload-preview img[b-cza4gc33jn] {
	max-width: 100%;
	max-height: 280px;
	border-radius: 8px;
	object-fit: contain;
	display: block;
}

.upload-preview-overlay[b-cza4gc33jn] {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.upload-preview:hover .upload-preview-overlay[b-cza4gc33jn] {
	opacity: 1;
}

.upload-preview-change[b-cza4gc33jn] {
	background: #fff;
	color: #273f95;
	padding: 10px 20px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.upload-success-badge[b-cza4gc33jn] {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #dcfce7;
	color: #16a34a;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
}

.upload-file-info[b-cza4gc33jn] {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 8px;
}

.upload-remove-btn[b-cza4gc33jn] {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: none;
	background: #fee2e2;
	color: #dc2626;
	cursor: pointer;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.upload-remove-btn:hover[b-cza4gc33jn] {
	background: #dc2626;
	color: #fff;
	transform: scale(1.1);
}

.upload-remove-btn:active[b-cza4gc33jn] {
	transform: scale(0.95);
}

.link-button[b-cza4gc33jn] {
	background: none;
	border: none;
	color: #2563eb;
	font-weight: 600;
	padding: 0;
	cursor: pointer;
	text-decoration: underline;
}

.link-button:hover[b-cza4gc33jn],
.link-button:focus[b-cza4gc33jn] {
	color: #1d4ed8;
}

.policy-backdrop[b-cza4gc33jn] {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1100;
	padding: 24px;
}

.policy-modal[b-cza4gc33jn] {
	background: #ffffff;
	border-radius: 16px;
	width: min(640px, 100%);
	max-height: 80vh;
	display: flex;
	flex-direction: column;
	box-shadow: 0 30px 60px rgba(15, 23, 42, 0.35);
	border: 1px solid #e2e8f0;
}

.policy-modal__header[b-cza4gc33jn] {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding: 20px 24px 12px;
	border-bottom: 1px solid #e2e8f0;
}

.policy-modal__header h2[b-cza4gc33jn] {
	font-size: clamp(18px, 1.6vw, 20px);
	margin: 0;
	color: #0f172a;
}

.policy-close[b-cza4gc33jn] {
	border: none;
	background: none;
	font-size: 24px;
	line-height: 1;
	padding: 4px;
	cursor: pointer;
	color: #475569;
}

.policy-close:hover[b-cza4gc33jn],
.policy-close:focus[b-cza4gc33jn] {
	color: #1e293b;
}

.policy-tabs[b-cza4gc33jn] {
	display: flex;
	gap: 12px;
	padding: 12px 24px;
	border-bottom: 1px solid #e2e8f0;
}

.policy-tab[b-cza4gc33jn] {
	border: none;
	background: #f1f5f9;
	padding: 8px 18px;
	border-radius: 999px;
	font-weight: 600;
	color: #475569;
	cursor: pointer;
}

.policy-tab.active[b-cza4gc33jn] {
	background: #273f95;
	color: #ffffff;
}

.policy-body[b-cza4gc33jn] {
	padding: 20px 24px;
	overflow-y: auto;
	flex: 1;
	color: #334155;
	font-size: 15px;
	line-height: 1.65;
}

.policy-body p[b-cza4gc33jn] {
	margin-bottom: 12px;
}

.policy-body p:last-child[b-cza4gc33jn] {
	margin-bottom: 0;
}

.policy-footer[b-cza4gc33jn] {
	padding: 16px 24px 24px;
	display: flex;
	justify-content: flex-end;
	border-top: 1px solid #e2e8f0;
}

/* Validation styling */
[b-cza4gc33jn] .validation-message {
	color: #dc2626;
	font-size: 14px;
	margin-top: 4px;
	font-weight: 500;
}

.form-wrapper .invalid[b-cza4gc33jn]  .input,
.form-wrapper[b-cza4gc33jn]  .input.invalid {
	border-color: #dc2626;
	background: #fef2f2;
}

/* Responsive */
@media (max-width: 1024px) {
	.hk-hero__inner[b-cza4gc33jn] {
		padding: clamp(24px, 6vw, 40px) clamp(20px, 8vw, 48px) clamp(72px, 10vw, 112px);
	}

	.hk-card[b-cza4gc33jn] {
		margin: clamp(-88px, -12vw, -48px) auto clamp(40px, 7vw, 96px);
	}
}

@media (max-width: 768px) {
	.hk-hero[b-cza4gc33jn] {
		background-position: 60% center;
	}

	.hk-hero__inner[b-cza4gc33jn] {
		grid-template-columns: 1fr;
		text-align: center;
		padding: clamp(24px, 8vw, 40px) clamp(20px, 8vw, 40px) clamp(72px, 12vw, 120px);
	}

	.hk-hero__content[b-cza4gc33jn] {
		align-items: center;
	}

	.hk-hero__badge[b-cza4gc33jn] {
		margin: 0 auto;
	}

	.hk-card[b-cza4gc33jn] {
		width: calc(100% - 32px);
		margin: clamp(-72px, -14vw, -36px) auto clamp(32px, 10vw, 72px);
		padding: clamp(24px, 10vw, 40px);
	}

	.actions[b-cza4gc33jn],
	.form-actions[b-cza4gc33jn] {
		justify-content: center;
	}

	.form-actions .btn[b-cza4gc33jn],
	.actions .btn[b-cza4gc33jn] {
		width: 100%;
	}

	.checkbox-row[b-cza4gc33jn],
	.radio-row[b-cza4gc33jn] {
		flex-direction: row;
		gap: 12px;
		align-items: flex-start;
		text-align: center;
	}

	.btn[b-cza4gc33jn],
	.btn.lg[b-cza4gc33jn] {
		font-size: 14px;
	}
}

@media (max-width: 560px) {
	.serial-inputs[b-cza4gc33jn] {
		justify-content: center;
		gap: 10px;
	}

	.serial-dash[b-cza4gc33jn] {
		margin: 0 4px;
	}

	.form-label[b-cza4gc33jn] {
		font-size: 15px;
	}
}
/* /Pages/RegisterSuper.razor.rz.scp.css */
.container[b-ulsv04ntpb] {
	width: min(1120px, 100% - clamp(32px, 8vw, 120px));
	margin-inline: auto;
}

.hk-hero[b-ulsv04ntpb] {
	background-image: url('./images/super-register-banner.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
}

.hk-hero__inner[b-ulsv04ntpb] {
	width: min(1120px, 100% - clamp(32px, 10vw, 140px));
	margin: 0 auto;
	padding: clamp(24px, 5vw, 48px) clamp(20px, 6vw, 60px) clamp(96px, 12vw, 140px);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	align-items: center;
	gap: clamp(20px, 6vw, 48px);
	position: relative;
	z-index: 1;
}

.hk-hero__content[b-ulsv04ntpb] {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.hk-hero__badge[b-ulsv04ntpb] {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #e5e7e6;
	color: #000;
	border-radius: 999px;
	padding: 6px 18px;
	font-weight: 600;
	font-size: 14px;
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
	width: max-content;
}

.hk-hero__title[b-ulsv04ntpb] {
	color: #e5e7e6;
	font-weight: 800;
	font-size: clamp(34px, 6vw, 52px);
	margin: 0;
	line-height: 1.15;
}

.hk-hero__subtitle[b-ulsv04ntpb] {
	color: #fff;
	margin: 0;
	font-size: clamp(16px, 3.3vw, 18px);
	max-width: 48ch;
	line-height: 1.6;
}

.hk-hero__art[b-ulsv04ntpb] {
	text-align: right;
}

.hk-hero__art img[b-ulsv04ntpb] {
	max-width: 420px;
	width: 100%;
	height: auto;
	filter: drop-shadow(0 20px 45px rgba(15, 23, 42, 0.18));
}

.hk-card[b-ulsv04ntpb] {
	width: min(1120px, 100% - clamp(32px, 8vw, 120px));
	margin: clamp(-104px, -12vw, -64px) auto clamp(48px, 8vw, 120px);
	background: #fff;
	border: none;
	border-radius: 24px;
	padding: clamp(24px, 6vw, 52px);
	box-shadow: 0 30px 60px rgba(15, 23, 42, 0.14);
	position: relative;
	z-index: 2;
}

.hk-card__title[b-ulsv04ntpb] {
	color: #1e293b;
	margin: 0 0 24px 0;
	font-size: 24px;
	font-weight: 700;
	padding-bottom: 12px;
	border-bottom: 2px solid #e2e8f0;
}

.form-row[b-ulsv04ntpb] {
	margin-bottom: 0px;
}

.form-label[b-ulsv04ntpb] {
	display: block;
	color: black;
	margin-bottom: 8px;
	font-weight: 600;
	font-size: 16px;
}

.req[b-ulsv04ntpb] {
	color: #dc2626;
	margin-left: 2px;
}

.serial-inputs[b-ulsv04ntpb] {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 12px;
	background: #e5e7e6;
	border-radius: 18px;
	padding: 16px;
	flex-wrap: wrap;
}

.serial-box[b-ulsv04ntpb] {
	width: clamp(40px, 9vw, 56px);
	height: clamp(42px, 9vw, 56px);
	border: 2px solid #e2e8f0;
	border-radius: 12px;
	text-align: center;
	font-size: clamp(18px, 4.8vw, 20px);
	font-weight: 600;
	transition: all 0.2s ease;
	background: #f8fafc;
}

.serial-box:focus[b-ulsv04ntpb] {
	border-color: #3b82f6;
	background: #fff;
	outline: none;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.serial-box[b-ulsv04ntpb] {
	ime-mode: disabled;
	-webkit-text-security: none;
}

.serial-dash[b-ulsv04ntpb] {
	margin: 0 8px;
	color: #64748b;
	font-weight: 600;
	font-size: clamp(18px, 4.5vw, 20px);
}

.actions[b-ulsv04ntpb] {
	margin-top: 20px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.btn[b-ulsv04ntpb] {
	border-radius: 12px;
	padding: 12px 28px;
	border: none;
	background: #000;
	color: #fff;
	cursor: pointer;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.2s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	box-shadow: 0 10px 30px rgba(13, 61, 145, 0.25);
}

.btn:hover[b-ulsv04ntpb] {
	transform: translateY(-2px);
	box-shadow: 0 18px 35px rgba(13, 61, 145, 0.35);
}

.btn.secondary[b-ulsv04ntpb] {
	background: #fff;
	color: #D0A435;
	border: 2px solid #D0A435;
	box-shadow: none;
}

.btn.secondary:hover[b-ulsv04ntpb] {
	background: #eef3ff;
	color: #D0A435;
}

.btn.ghost[b-ulsv04ntpb] {
	background: transparent;
	color: #64748b;
	border: 2px solid #cbd5e1;
	box-shadow: none;
}

.btn.ghost:hover[b-ulsv04ntpb] {
	background: #f8fafc;
	color: #1f325a;
}

.btn.ghost:hover[b-ulsv04ntpb] {
	background: #f8fafc;
	color: #475569;
}

.btn.lg[b-ulsv04ntpb] {
	padding: 16px 32px;
	font-weight: 700;
	font-size: 18px;
}

.footer-actions[b-ulsv04ntpb] {
	display: flex;
	justify-content: flex-end;
	margin-top: 12px;
}

.msg[b-ulsv04ntpb] {
	margin-top: 8px;
	font-size: 14px
}

.msg.error[b-ulsv04ntpb] {
	color: #b91c1c
}

.msg.success[b-ulsv04ntpb] {
	color: #16a34a
}

/* Inline lookup status next to inputs */
.inline-status[b-ulsv04ntpb] {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-left: 16px;
	font-weight: 600
}

.inline-status .icon[b-ulsv04ntpb] {
	display: inline-grid;
	place-items: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	font-size: 12px
}

.inline-status.warn[b-ulsv04ntpb] {
	color: #ea580c
}

.inline-status.warn .icon[b-ulsv04ntpb] {
	background: #ea580c;
	color: #fff
}

.inline-status.ok[b-ulsv04ntpb] {
	color: #16a34a
}

.inline-status.ok .icon[b-ulsv04ntpb] {
	background: #16a34a;
	color: #fff
}

/* Registration form grid */
.form-wrapper .row>[class*="col-"][b-ulsv04ntpb] {
	display: flex;
	flex-direction: column;
	position: relative;
}

.form-wrapper label[b-ulsv04ntpb] {
	font-weight: 600;
	color: #374151;
	margin-bottom: 8px;
	font-size: 15px;
	display: block;
	text-align: left;
}

[b-ulsv04ntpb] .input {
	border: 1.5px solid #d0d8e5;
	border-radius: 14px;
	padding: 14px 16px;
	font-size: 16px;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
	background: #f8fafc;
	color: #1f2937;
	box-shadow: 0 8px 16px rgba(15, 23, 42, 0.04);
	appearance: none;
}

[b-ulsv04ntpb] .input:hover {
	border-color: #9cb5dc;
}

[b-ulsv04ntpb] .input:focus {
	border-color: #3b82f6;
	background: #fff;
	outline: none;
	box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.08);
}

[b-ulsv04ntpb] .input:disabled {
	background: #eef2f8;
	color: #94a3b8;
	cursor: not-allowed;
	box-shadow: none;
}

[b-ulsv04ntpb] select.input {
	padding-right: 48px;
	background-image: linear-gradient(135deg, rgba(248, 250, 252, 0.9), rgba(255, 255, 255, 0.9)), url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 8L10 13L15 8' stroke='%2362748b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat, no-repeat;
	background-position: left top, right 16px center;
	background-size: auto, 16px;
}

[b-ulsv04ntpb] .input::placeholder {
	color: #94a3b8;
}

.radio-row[b-ulsv04ntpb] {
	display: flex;
	gap: 16px;
}

.radio-group[b-ulsv04ntpb] {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.radio[b-ulsv04ntpb] {
	position: relative;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	font-weight: 600;
	color: #1f2937;
	min-width: 132px;
	justify-content: center;
}

.radio[b-ulsv04ntpb]  input[type="radio"] {
	display: none;
	position: absolute;
	inset: 0;
	width: 1px;
	height: 1px;
	margin: 0;
	opacity: 0;
	pointer-events: none;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	appearance: none;
	-webkit-appearance: none;
}

.radio span[b-ulsv04ntpb] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	position: relative;
	padding: 14px;
	height: 54px;
	width: 100%;
	border-radius: 14px;
	border: 1.5px solid #d0d8e5;
	background: #f8fafc;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
	box-shadow: 0 8px 16px rgba(15, 23, 42, 0.04);
}

.radio[b-ulsv04ntpb]  input[type="radio"]:focus-visible+span {
	outline: none;
}

.radio[b-ulsv04ntpb]  input[type="radio"]:checked+span::before {
	border-color: #3b82f6;
}

.radio[b-ulsv04ntpb]  input[type="radio"]:checked+span,
.radio:hover span[b-ulsv04ntpb] {
	color: #0f172a;
	border-color: #3b82f6;
	background: #f0f7ff;
	box-shadow: 0 10px 22px rgba(59, 130, 246, 0.12);
}

.checkbox-row[b-ulsv04ntpb] {
	display: flex;
	gap: 20px;
	align-items: center;
	margin-top: 8px;
	flex-wrap: wrap;
}

.checkbox[b-ulsv04ntpb] {
	display: flex;
	gap: 8px;
	align-items: center;
	cursor: pointer;
	padding: 10px 16px;
	border-radius: 8px;
	transition: background 0.2s ease;
	border: 1px solid #e5e7eb;
	background: #f9fafb;
	min-width: fit-content;
}

.checkbox:hover[b-ulsv04ntpb] {
	background: #f1f5f9;
}

.checkbox[b-ulsv04ntpb]  input[type="checkbox"] {
	margin: 0;
	flex-shrink: 0;
}

/* Special styling for consent checkbox */
.field.col-2 .checkbox[b-ulsv04ntpb] {
	background: #f0f9ff;
	border-color: #3b82f6;
	padding: 16px;
	text-align: left;
	align-items: center;
}

.field.col-2 .checkbox span[b-ulsv04ntpb] {
	line-height: 1.5;
	color: #334155;
}

.form-actions[b-ulsv04ntpb] {
	display: flex;
	justify-content: flex-end;
	gap: 16px;
	margin-top: clamp(24px, 5vw, 48px);
	padding-top: clamp(20px, 4vw, 32px);
	border-top: 1px solid #e5e7eb;
	flex-wrap: wrap;
}

.mt-20[b-ulsv04ntpb] {
	margin-top: 32px;
}

/* Submit loading overlay */
.form-wrapper[b-ulsv04ntpb] {
	position: relative;
}

.submitting-overlay[b-ulsv04ntpb] {
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.7);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 20;
	color: #273f95;
	font-weight: 700;
	gap: 10px;
}

.spinner[b-ulsv04ntpb] {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 3px solid #c7d2fe;
	border-top-color: #273f95;
	animation: spin-b-ulsv04ntpb 1s linear infinite;
}

.spinner.sm[b-ulsv04ntpb] {
	width: 18px;
	height: 18px;
	border-width: 2px
}

.spinner.lg[b-ulsv04ntpb] {
	width: 44px;
	height: 44px;
	border-width: 4px
}

@keyframes spin-b-ulsv04ntpb {
	to {
		transform: rotate(360deg)
	}
}

/* Full-screen modal loading */
.modal-backdrop[b-ulsv04ntpb] {
	position: fixed;
	inset: 0;
	z-index: 50;
	background: rgba(15, 23, 42, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal-card[b-ulsv04ntpb] {
	background: #fff;
	border-radius: 16px;
	padding: 24px 28px;
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.35);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	min-width: 240px;
}

.modal-text[b-ulsv04ntpb] {
	font-weight: 700;
	color: #273f95
}

/* Upload styling */
.form-wrapper label.upload-box[b-ulsv04ntpb] {
	border: 2px dashed #cbd5e1;
	border-radius: 12px;
	padding: 20px;
	text-align: center;
	background: #f8fafc;
	transition: all 0.2s ease;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	min-height: 200px;
}

.form-wrapper label.upload-box.has-preview[b-ulsv04ntpb] {
	border-style: solid;
	border-color: #3b82f6;
	background: #f0f7ff;
}

.form-wrapper label.upload-box:hover[b-ulsv04ntpb] {
	border-color: #3b82f6;
	background: #f1f5f9;
}

.form-wrapper label.upload-box[b-ulsv04ntpb]  input[type="file"] {
	padding: 12px 24px;
	border: 2px solid #3b82f6;
	border-radius: 8px;
	background: #3b82f6;
	color: #fff;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	border: none;
}

.form-wrapper label.upload-box[b-ulsv04ntpb]  input[type="file"]:hover {
	background: #2563eb;
	transform: translateY(-1px);
}

.form-wrapper label.upload-box .help[b-ulsv04ntpb] {
	font-size: 14px;
	color: #64748b;
	line-height: 1.4;
	text-align: center;
	cursor: pointer;
}

/* Upload preview styling */
.upload-preview[b-ulsv04ntpb] {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 8px;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	border: 1px solid #e2e8f0;
}

.upload-preview img[b-ulsv04ntpb] {
	max-width: 100%;
	max-height: 280px;
	border-radius: 8px;
	object-fit: contain;
	display: block;
}

.upload-preview-overlay[b-ulsv04ntpb] {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.upload-preview:hover .upload-preview-overlay[b-ulsv04ntpb] {
	opacity: 1;
}

.upload-preview-change[b-ulsv04ntpb] {
	background: #fff;
	color: #273f95;
	padding: 10px 20px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.upload-success-badge[b-ulsv04ntpb] {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #dcfce7;
	color: #16a34a;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
}

.upload-file-info[b-ulsv04ntpb] {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 8px;
}

.upload-remove-btn[b-ulsv04ntpb] {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: none;
	background: #fee2e2;
	color: #dc2626;
	cursor: pointer;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.upload-remove-btn:hover[b-ulsv04ntpb] {
	background: #dc2626;
	color: #fff;
	transform: scale(1.1);
}

.upload-remove-btn:active[b-ulsv04ntpb] {
	transform: scale(0.95);
}

.link-button[b-ulsv04ntpb] {
	background: none;
	border: none;
	color: #2563eb;
	font-weight: 600;
	padding: 0;
	cursor: pointer;
	text-decoration: underline;
}

.link-button:hover[b-ulsv04ntpb],
.link-button:focus[b-ulsv04ntpb] {
	color: #1d4ed8;
}

.policy-backdrop[b-ulsv04ntpb] {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1100;
	padding: 24px;
}

.policy-modal[b-ulsv04ntpb] {
	background: #ffffff;
	border-radius: 16px;
	width: min(640px, 100%);
	max-height: 80vh;
	display: flex;
	flex-direction: column;
	box-shadow: 0 30px 60px rgba(15, 23, 42, 0.35);
	border: 1px solid #e2e8f0;
}

.policy-modal__header[b-ulsv04ntpb] {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding: 20px 24px 12px;
	border-bottom: 1px solid #e2e8f0;
}

.policy-modal__header h2[b-ulsv04ntpb] {
	font-size: clamp(18px, 1.6vw, 20px);
	margin: 0;
	color: #0f172a;
}

.policy-close[b-ulsv04ntpb] {
	border: none;
	background: none;
	font-size: 24px;
	line-height: 1;
	padding: 4px;
	cursor: pointer;
	color: #475569;
}

.policy-close:hover[b-ulsv04ntpb],
.policy-close:focus[b-ulsv04ntpb] {
	color: #1e293b;
}

.policy-tabs[b-ulsv04ntpb] {
	display: flex;
	gap: 12px;
	padding: 12px 24px;
	border-bottom: 1px solid #e2e8f0;
}

.policy-tab[b-ulsv04ntpb] {
	border: none;
	background: #f1f5f9;
	padding: 8px 18px;
	border-radius: 999px;
	font-weight: 600;
	color: #475569;
	cursor: pointer;
}

.policy-tab.active[b-ulsv04ntpb] {
	background: #273f95;
	color: #ffffff;
}

.policy-body[b-ulsv04ntpb] {
	padding: 20px 24px;
	overflow-y: auto;
	flex: 1;
	color: #334155;
	font-size: 15px;
	line-height: 1.65;
}

.policy-body p[b-ulsv04ntpb] {
	margin-bottom: 12px;
}

.policy-body p:last-child[b-ulsv04ntpb] {
	margin-bottom: 0;
}

.policy-footer[b-ulsv04ntpb] {
	padding: 16px 24px 24px;
	display: flex;
	justify-content: flex-end;
	border-top: 1px solid #e2e8f0;
}

/* Validation styling */
[b-ulsv04ntpb] .validation-message {
	color: #dc2626;
	font-size: 14px;
	margin-top: 4px;
	font-weight: 500;
}

.form-wrapper .invalid[b-ulsv04ntpb]  .input,
.form-wrapper[b-ulsv04ntpb]  .input.invalid {
	border-color: #dc2626;
	background: #fef2f2;
}

/* Responsive */
@media (max-width: 1024px) {
	.hk-hero__inner[b-ulsv04ntpb] {
		padding: clamp(24px, 6vw, 40px) clamp(20px, 8vw, 48px) clamp(72px, 10vw, 112px);
	}

	.hk-card[b-ulsv04ntpb] {
		margin: clamp(-88px, -12vw, -48px) auto clamp(40px, 7vw, 96px);
	}
}

@media (max-width: 768px) {
	.hk-hero__inner[b-ulsv04ntpb] {
		grid-template-columns: 1fr;
		text-align: center;
		padding: clamp(24px, 8vw, 40px) clamp(20px, 8vw, 40px) clamp(72px, 12vw, 120px);
	}

	.hk-hero__content[b-ulsv04ntpb] {
		align-items: center;
	}

	.hk-hero__badge[b-ulsv04ntpb] {
		margin: 0 auto;
	}

	.hk-card[b-ulsv04ntpb] {
		width: calc(100% - 32px);
		margin: clamp(-72px, -14vw, -36px) auto clamp(32px, 10vw, 72px);
		padding: clamp(24px, 10vw, 40px);
	}

	.actions[b-ulsv04ntpb],
	.form-actions[b-ulsv04ntpb] {
		justify-content: center;
	}

	.form-actions .btn[b-ulsv04ntpb],
	.actions .btn[b-ulsv04ntpb] {
		width: 100%;
	}

	.checkbox-row[b-ulsv04ntpb],
	.radio-row[b-ulsv04ntpb] {
		flex-direction: row;
		gap: 12px;
		align-items: flex-start;
		text-align: center;
	}

	.btn[b-ulsv04ntpb],
	.btn.lg[b-ulsv04ntpb] {
		font-size: 14px;
	}
}

@media (max-width: 560px) {
	.serial-inputs[b-ulsv04ntpb] {
		justify-content: center;
		gap: 10px;
	}

	.serial-dash[b-ulsv04ntpb] {
		margin: 0 4px;
	}

	.form-label[b-ulsv04ntpb] {
		font-size: 15px;
	}
}
/* /Pages/Status.razor.rz.scp.css */
/* Status page specific styles */

.hk-hero[b-k4su5hqfd2] {
    background-image: linear-gradient(to right, #020024, #c3ddff 0, rgba(9, 9, 121, 0)), url('./images/warranty-search.png');
    background-size: 100%, cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e2e8f0;
}

.hk-hero__inner[b-k4su5hqfd2] {
    width: min(1120px, 100% - clamp(32px, 10vw, 140px));
    margin: 0 auto;
    padding: clamp(24px, 5vw, 48px) clamp(20px, 6vw, 60px) clamp(96px, 12vw, 140px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: center;
    gap: clamp(20px, 6vw, 48px);
    position: relative;
    z-index: 1;
}

.hk-hero__content[b-k4su5hqfd2] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hk-hero__badge[b-k4su5hqfd2] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #0055d4;
    border-radius: 999px;
    padding: 6px 18px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    width: max-content;
}

.hk-hero__title[b-k4su5hqfd2] {
    color: #273f95;
    font-weight: 800;
    font-size: clamp(34px, 6vw, 52px);
    margin: 0;
    line-height: 1.15;
}

.hk-hero__subtitle[b-k4su5hqfd2] {
    color: #4c5d7a;
    margin: 0;
    font-size: clamp(16px, 3.3vw, 18px);
    max-width: 48ch;
    line-height: 1.6;
}


.hk-card[b-k4su5hqfd2] {
    width: min(1120px, 100% - clamp(32px, 8vw, 120px));
    margin: clamp(-48px, -6vw, 24px) auto clamp(40px, 8vw, 100px);
    background: #fff;
    border: none;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
    overflow: hidden;
}

/* Main container layout */

.status-container[b-k4su5hqfd2] {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    min-height: 500px;
}

/* Left sidebar with icon and title */

.status-sidebar[b-k4su5hqfd2] {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: clamp(36px, 6vw, 64px) clamp(24px, 5vw, 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-right: 1px solid #e2e8f0;
}

.status-icon[b-k4su5hqfd2] {
    margin-bottom: 32px;
}

.icon-circle[b-k4su5hqfd2] {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.search-icon[b-k4su5hqfd2] {
    width: 48px;
    height: 48px;
    color: #3b82f6;
}

.status-title[b-k4su5hqfd2] {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
}

/* Right form area */

.status-form[b-k4su5hqfd2] {
    padding: clamp(36px, 6vw, 64px) clamp(24px, 6vw, 56px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.form-grid[b-k4su5hqfd2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(16px, 4vw, 28px);
    margin-bottom: clamp(28px, 5vw, 44px);
}

.field[b-k4su5hqfd2] {
    display: flex;
    flex-direction: column;
}

.field label[b-k4su5hqfd2] {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 16px;
}

[b-k4su5hqfd2] .input {
    border: 1.5px solid #d0d8e5;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 16px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    background: #f8fafc;
    color: #1f2937;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.04);
}

[b-k4su5hqfd2] .input:hover {
    border-color: #9cb5dc;
}

[b-k4su5hqfd2] .input:focus {
    border-color: #3b82f6;
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.08);
}

[b-k4su5hqfd2] .input::placeholder {
    color: #94a3b8;
}

/* Form actions */

.form-actions[b-k4su5hqfd2] {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.consent-note[b-k4su5hqfd2] {
    margin-top: 16px;
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

.consent-note p[b-k4su5hqfd2] {
    margin: 0 0 8px 0;
}

.consent-note p:last-child[b-k4su5hqfd2] {
    margin-bottom: 0;
}

.btn[b-k4su5hqfd2] {
    border-radius: 12px;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn.primary[b-k4su5hqfd2] {
    background: #3b82f6;
    color: #ffffff;
    border-color: #3b82f6;
}

.btn.primary:hover[b-k4su5hqfd2] {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn.secondary[b-k4su5hqfd2] {
    background: transparent;
    color: #64748b;
    border-color: #cbd5e1;
}

.btn.secondary:hover[b-k4su5hqfd2] {
    background: #f8fafc;
    color: #475569;
}

.btn:disabled[b-k4su5hqfd2],
.btn.is-loading[b-k4su5hqfd2] {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn.is-loading[b-k4su5hqfd2] {
    pointer-events: none;
}

.btn-spinner[b-k4su5hqfd2] {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #ffffff;
    animation: btn-spin-b-k4su5hqfd2 0.8s linear infinite;
}

@keyframes btn-spin-b-k4su5hqfd2 {
    to {
        transform: rotate(360deg);
    }
}

.link-button[b-k4su5hqfd2] {
    background: none;
    border: none;
    color: #2563eb;
    font-weight: 600;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
}

.link-button:hover[b-k4su5hqfd2],
.link-button:focus[b-k4su5hqfd2] {
    color: #1d4ed8;
}

.policy-backdrop[b-k4su5hqfd2] {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    padding: 24px;
}

.policy-modal[b-k4su5hqfd2] {
    background: #ffffff;
    border-radius: 16px;
    width: min(640px, 100%);
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.35);
    border: 1px solid #e2e8f0;
}

.policy-modal__header[b-k4su5hqfd2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 20px 24px 12px;
    border-bottom: 1px solid #e2e8f0;
}

.policy-modal__header h2[b-k4su5hqfd2] {
    font-size: clamp(18px, 1.6vw, 20px);
    margin: 0;
    color: #0f172a;
}

.policy-close[b-k4su5hqfd2] {
    border: none;
    background: none;
    font-size: 24px;
    line-height: 1;
    padding: 4px;
    cursor: pointer;
    color: #475569;
}

.policy-close:hover[b-k4su5hqfd2],
.policy-close:focus[b-k4su5hqfd2] {
    color: #1e293b;
}

.policy-tabs[b-k4su5hqfd2] {
    display: flex;
    gap: 12px;
    padding: 12px 24px;
    border-bottom: 1px solid #e2e8f0;
}

.policy-tab[b-k4su5hqfd2] {
    border: none;
    background: #f1f5f9;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
}

.policy-tab.active[b-k4su5hqfd2] {
    background: #273f95;
    color: #ffffff;
}

.policy-body[b-k4su5hqfd2] {
    padding: 20px 24px;
    overflow-y: auto;
    flex: 1;
    color: #334155;
    font-size: 15px;
    line-height: 1.65;
}

.policy-body p[b-k4su5hqfd2] {
    margin-bottom: 12px;
}

.policy-body p:last-child[b-k4su5hqfd2] {
    margin-bottom: 0;
}

.policy-footer[b-k4su5hqfd2] {
    padding: 16px 24px 24px;
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #e2e8f0;
}

/* Warranty Details */
.warranty-details[b-k4su5hqfd2] {
    margin-top: 32px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
}

.warranty-header[b-k4su5hqfd2] {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.warranty-header h3[b-k4su5hqfd2] {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.serial-badge[b-k4su5hqfd2] {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.warranty-info-grid[b-k4su5hqfd2] {
    padding: 24px;
    display: grid;
    gap: 32px;
}

.info-section h4[b-k4su5hqfd2] {
    color: #1e293b;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
}

.info-grid[b-k4su5hqfd2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px 24px;
}

.info-item[b-k4su5hqfd2] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-item label[b-k4su5hqfd2] {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.info-item span[b-k4su5hqfd2] {
    font-size: 16px;
    color: #1e293b;
    font-weight: 600;
    padding: 8px 0;
}

/* Warranty Certificate */
.warranty-certificate[b-k4su5hqfd2] {
    margin-top: 32px;
    background: #ffffff;
    border: 2px solid #fbbf24;
    border-radius: 12px;
    overflow: hidden;
}

.certificate-content[b-k4su5hqfd2] {
    background: linear-gradient(135deg, #fef3c7 0%, #fcd34d 100%);
    padding: 24px;
}

.certificate-header[b-k4su5hqfd2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.kool-logo[b-k4su5hqfd2] {
    font-size: 48px;
    font-weight: 900;
    color: #1e293b;
    font-family: 'Arial Black', sans-serif;
}

.warranty-badge[b-k4su5hqfd2] {
    background: #1e293b;
    color: #fbbf24;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 900;
}

.warranty-years[b-k4su5hqfd2] {
    display: block;
    font-size: 32px;
    line-height: 1;
}

.warranty-text[b-k4su5hqfd2] {
    display: block;
    font-size: 16px;
    letter-spacing: 2px;
}

.certificate-body h3[b-k4su5hqfd2] {
    color: #1e293b;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-align: center;
}

.warranty-note[b-k4su5hqfd2] {
    color: #dc2626;
    font-weight: 600;
    text-align: center;
    margin: 0 0 24px 0;
    font-size: 16px;
}

.certificate-details[b-k4su5hqfd2] {
    background: rgba(255,255,255,0.7);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.detail-row[b-k4su5hqfd2] {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr;
    gap: 8px 16px;
    margin-bottom: 8px;
    align-items: center;
    font-size: 14px;
}

.detail-row span:nth-child(odd)[b-k4su5hqfd2] {
    font-weight: 600;
    color: #374151;
}

.detail-row span:nth-child(even)[b-k4su5hqfd2] {
    color: #1e293b;
    font-weight: 700;
}

.qr-section[b-k4su5hqfd2] {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: start;
}

.qr-info h4[b-k4su5hqfd2] {
    color: #1e293b;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.qr-info ul[b-k4su5hqfd2] {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.qr-info li[b-k4su5hqfd2] {
    color: #374151;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.qr-code[b-k4su5hqfd2] {
    text-align: center;
}

.qr-placeholder[b-k4su5hqfd2] {
    width: 120px;
    height: 120px;
    background: #ffffff;
    border: 2px solid #1e293b;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 12px;
}

.serial-number[b-k4su5hqfd2] {
    text-align: center;
}

.serial-number strong[b-k4su5hqfd2] {
    display: block;
    font-size: 12px;
    color: #374151;
    margin-bottom: 4px;
}

.serial-code[b-k4su5hqfd2] {
    background: #ffffff;
    border: 1px solid #1e293b;
    padding: 8px 12px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: #1e293b;
    font-size: 14px;
}

/* Search Error */
.search-error[b-k4su5hqfd2] {
    margin-top: 24px;
    padding: 16px;
    background: #fef2f2;
    border: 1px solid #dc2626;
    border-radius: 8px;
    color: #dc2626;
    font-weight: 500;
}

/* Validation messages */
.validation-message[b-k4su5hqfd2] {
    color: #dc2626;
    font-size: 14px;
    margin-top: 4px;
    font-weight: 500;
}

/* Responsive design */
@media (max-width: 1024px) {
    .status-container[b-k4su5hqfd2] {
        grid-template-columns: 1fr;
    }
    
    .status-sidebar[b-k4su5hqfd2] {
        padding: clamp(32px, 8vw, 48px) clamp(20px, 8vw, 36px);
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .status-form[b-k4su5hqfd2] {
        padding: clamp(32px, 8vw, 48px) clamp(20px, 8vw, 36px);
    }
    
    .form-grid[b-k4su5hqfd2] {
        grid-template-columns: 1fr;
    }
    
    .info-grid[b-k4su5hqfd2] {
        grid-template-columns: 1fr;
    }
    
    .qr-section[b-k4su5hqfd2] {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .detail-row[b-k4su5hqfd2] {
        grid-template-columns: 1fr 1fr;
        gap: 4px 16px;
    }
}

@media (max-width: 768px) {
    .hk-hero__title[b-k4su5hqfd2] {
        font-size: 36px;
    }
    
    .status-title[b-k4su5hqfd2] {
        font-size: 24px;
    }
    
    .icon-circle[b-k4su5hqfd2] {
        width: 80px;
        height: 80px;
    }
    
    .search-icon[b-k4su5hqfd2] {
        width: 32px;
        height: 32px;
    }
    
    .status-sidebar[b-k4su5hqfd2] {
        padding: 32px 16px;
    }
    
    .status-form[b-k4su5hqfd2] {
        padding: 32px 16px;
    }
    
    .form-actions[b-k4su5hqfd2] {
        justify-content: center;
        gap: 12px;
    }
    
    .form-actions .btn[b-k4su5hqfd2],
    .btn[b-k4su5hqfd2] {
        text-align: center;
    }
    
    .warranty-header[b-k4su5hqfd2] {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .certificate-header[b-k4su5hqfd2] {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .kool-logo[b-k4su5hqfd2] {
        font-size: 36px;
    }
    
    .detail-row[b-k4su5hqfd2] {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .qr-section[b-k4su5hqfd2] {
        gap: 16px;
    }
}

@media (max-width: 600px) {
    .form-actions .btn[b-k4su5hqfd2],
    .btn.primary[b-k4su5hqfd2],
    .btn.secondary[b-k4su5hqfd2] {
        width: 100%;
    }

    .status-form[b-k4su5hqfd2] {
        padding: 28px 16px;
    }
}
/* /Pages/StatusSuper.razor.rz.scp.css */
/* Status page specific styles */

.hk-hero[b-it63rbykap] {
    background-image: url('./images/warranty-search-super.jpg');
    background-size: 100%, cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #000000;
}

.hk-hero__inner[b-it63rbykap] {
    width: min(1120px, 100% - clamp(32px, 10vw, 140px));
    margin: 0 auto;
    padding: clamp(24px, 5vw, 48px) clamp(20px, 6vw, 60px) clamp(96px, 12vw, 140px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: center;
    gap: clamp(20px, 6vw, 48px);
    position: relative;
    z-index: 1;
}

.hk-hero__content[b-it63rbykap] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hk-hero__badge[b-it63rbykap] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #000;
    border-radius: 999px;
    padding: 6px 18px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    width: max-content;
}

.hk-hero__title[b-it63rbykap] {
    color: #ffffff;
    font-weight: 800;
    font-size: clamp(34px, 6vw, 52px);
    margin: 0;
    line-height: 1.15;
}   

.hk-hero__subtitle[b-it63rbykap] {
    color: #ffffff;
    margin: 0;
    font-size: clamp(16px, 3.3vw, 18px);
    max-width: 48ch;
    line-height: 1.6;
}


.hk-card[b-it63rbykap] {
    width: min(1120px, 100% - clamp(32px, 8vw, 120px));
    margin: 0 auto;
    margin-bottom: 3rem;
    background: #fff;
    border: none;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
    overflow: hidden;
}

/* Main container layout */

.status-container[b-it63rbykap] {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    min-height: 500px;
}

/* Left sidebar with icon and title */

.status-sidebar[b-it63rbykap] {
    background: linear-gradient(135deg, #fcfbf8 0%, #f0ece2 100%);
    padding: clamp(36px, 6vw, 64px) clamp(24px, 5vw, 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-right: 1px solid #f0ede2;
}

.status-icon[b-it63rbykap] {
    margin-bottom: 32px;
}

.icon-circle[b-it63rbykap] {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid #d2a637;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.search-icon[b-it63rbykap] {
    width: 48px;
    height: 48px;
    color: #d2a637;
}

.status-title[b-it63rbykap] {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
}

/* Right form area */
.status-form[b-it63rbykap] {
    padding: clamp(36px, 6vw, 64px) clamp(24px, 6vw, 56px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.form-grid[b-it63rbykap] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(16px, 4vw, 28px);
    margin-bottom: clamp(28px, 5vw, 44px);
}

.field[b-it63rbykap] {
    display: flex;
    flex-direction: column;
}

.field label[b-it63rbykap] {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 16px;
}

[b-it63rbykap] .input {
    border: 1.5px solid #d0d8e5;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 16px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    background: #f8fafc;
    color: #1f2937;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.04);
}

[b-it63rbykap] .input:hover {
    border-color: #9cb5dc;
}

[b-it63rbykap] .input:focus {
    border-color: #d2a637;
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(210, 166, 55, 0.08);
}

[b-it63rbykap] .input::placeholder {
    color: #94a3b8;
}

/* Form actions */

.form-actions[b-it63rbykap] {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.consent-note[b-it63rbykap] {
    margin-top: 16px;
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

.consent-note p[b-it63rbykap] {
    margin: 0 0 8px 0;
}

.consent-note p:last-child[b-it63rbykap] {
    margin-bottom: 0;
}

.btn[b-it63rbykap] {
    border-radius: 12px;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn.primary[b-it63rbykap] {
    background: #d2a637;
    color: #ffffff;
    border-color: #d2a637;
}

.btn.primary:hover[b-it63rbykap] {
    background: #b38f1f;
    border-color: #b38f1f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn.secondary[b-it63rbykap] {
    background: transparent;
    color: #64748b;
    border-color: #cbd5e1;
}

.btn.secondary:hover[b-it63rbykap] {
    background: #f8fafc;
    color: #475569;
}

.btn:disabled[b-it63rbykap],
.btn.is-loading[b-it63rbykap] {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn.is-loading[b-it63rbykap] {
    pointer-events: none;
}

.btn-spinner[b-it63rbykap] {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #ffffff;
    animation: btn-spin-b-it63rbykap 0.8s linear infinite;
}

@keyframes btn-spin-b-it63rbykap {
    to {
        transform: rotate(360deg);
    }
}

.link-button[b-it63rbykap] {
    background: none;
    border: none;
    color: #d2a637;
    font-weight: 600;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
}

.link-button:hover[b-it63rbykap],
.link-button:focus[b-it63rbykap] {
    color: #1d4ed8;
}

.policy-backdrop[b-it63rbykap] {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    padding: 24px;
}

.policy-modal[b-it63rbykap] {
    background: #ffffff;
    border-radius: 16px;
    width: min(640px, 100%);
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.35);
    border: 1px solid #e2e8f0;
}

.policy-modal__header[b-it63rbykap] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 20px 24px 12px;
    border-bottom: 1px solid #e2e8f0;
}

.policy-modal__header h2[b-it63rbykap] {
    font-size: clamp(18px, 1.6vw, 20px);
    margin: 0;
    color: #0f172a;
}

.policy-close[b-it63rbykap] {
    border: none;
    background: none;
    font-size: 24px;
    line-height: 1;
    padding: 4px;
    cursor: pointer;
    color: #475569;
}

.policy-close:hover[b-it63rbykap],
.policy-close:focus[b-it63rbykap] {
    color: #1e293b;
}

.policy-tabs[b-it63rbykap] {
    display: flex;
    gap: 12px;
    padding: 12px 24px;
    border-bottom: 1px solid #e2e8f0;
}

.policy-tab[b-it63rbykap] {
    border: none;
    background: #f1f5f9;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
}

.policy-tab.active[b-it63rbykap] {
    background: #273f95;
    color: #ffffff;
}

.policy-body[b-it63rbykap] {
    padding: 20px 24px;
    overflow-y: auto;
    flex: 1;
    color: #334155;
    font-size: 15px;
    line-height: 1.65;
}

.policy-body p[b-it63rbykap] {
    margin-bottom: 12px;
}

.policy-body p:last-child[b-it63rbykap] {
    margin-bottom: 0;
}

.policy-footer[b-it63rbykap] {
    padding: 16px 24px 24px;
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #e2e8f0;
}

/* Warranty Details */
.warranty-details[b-it63rbykap] {
    margin-top: 32px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
}

.warranty-header[b-it63rbykap] {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.warranty-header h3[b-it63rbykap] {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.serial-badge[b-it63rbykap] {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.warranty-info-grid[b-it63rbykap] {
    padding: 24px;
    display: grid;
    gap: 32px;
}

.info-section h4[b-it63rbykap] {
    color: #1e293b;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
}

.info-grid[b-it63rbykap] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px 24px;
}

.info-item[b-it63rbykap] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-item label[b-it63rbykap] {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.info-item span[b-it63rbykap] {
    font-size: 16px;
    color: #1e293b;
    font-weight: 600;
    padding: 8px 0;
}

/* Warranty Certificate */
.warranty-certificate[b-it63rbykap] {
    margin-top: 32px;
    background: #ffffff;
    border: 2px solid #fbbf24;
    border-radius: 12px;
    overflow: hidden;
}

.certificate-content[b-it63rbykap] {
    background: linear-gradient(135deg, #fef3c7 0%, #fcd34d 100%);
    padding: 24px;
}

.certificate-header[b-it63rbykap] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.kool-logo[b-it63rbykap] {
    font-size: 48px;
    font-weight: 900;
    color: #1e293b;
    font-family: 'Arial Black', sans-serif;
}

.warranty-badge[b-it63rbykap] {
    background: #1e293b;
    color: #fbbf24;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 900;
}

.warranty-years[b-it63rbykap] {
    display: block;
    font-size: 32px;
    line-height: 1;
}

.warranty-text[b-it63rbykap] {
    display: block;
    font-size: 16px;
    letter-spacing: 2px;
}

.certificate-body h3[b-it63rbykap] {
    color: #1e293b;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-align: center;
}

.warranty-note[b-it63rbykap] {
    color: #dc2626;
    font-weight: 600;
    text-align: center;
    margin: 0 0 24px 0;
    font-size: 16px;
}

.certificate-details[b-it63rbykap] {
    background: rgba(255, 255, 255, 0.7);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.detail-row[b-it63rbykap] {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr;
    gap: 8px 16px;
    margin-bottom: 8px;
    align-items: center;
    font-size: 14px;
}

.detail-row span:nth-child(odd)[b-it63rbykap] {
    font-weight: 600;
    color: #374151;
}

.detail-row span:nth-child(even)[b-it63rbykap] {
    color: #1e293b;
    font-weight: 700;
}

.qr-section[b-it63rbykap] {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: start;
}

.qr-info h4[b-it63rbykap] {
    color: #1e293b;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.qr-info ul[b-it63rbykap] {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.qr-info li[b-it63rbykap] {
    color: #374151;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.qr-code[b-it63rbykap] {
    text-align: center;
}

.qr-placeholder[b-it63rbykap] {
    width: 120px;
    height: 120px;
    background: #ffffff;
    border: 2px solid #1e293b;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 12px;
}

.serial-number[b-it63rbykap] {
    text-align: center;
}

.serial-number strong[b-it63rbykap] {
    display: block;
    font-size: 12px;
    color: #374151;
    margin-bottom: 4px;
}

.serial-code[b-it63rbykap] {
    background: #ffffff;
    border: 1px solid #1e293b;
    padding: 8px 12px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: #1e293b;
    font-size: 14px;
}

/* Search Error */
.search-error[b-it63rbykap] {
    margin-top: 24px;
    padding: 16px;
    background: #fef2f2;
    border: 1px solid #dc2626;
    border-radius: 8px;
    color: #dc2626;
    font-weight: 500;
}

/* Validation messages */
.validation-message[b-it63rbykap] {
    color: #dc2626;
    font-size: 14px;
    margin-top: 4px;
    font-weight: 500;
}

/* Responsive design */
@media (max-width: 1024px) {
    .status-container[b-it63rbykap] {
        grid-template-columns: 1fr;
    }

    .status-sidebar[b-it63rbykap] {
        padding: clamp(32px, 8vw, 48px) clamp(20px, 8vw, 36px);
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }

    .status-form[b-it63rbykap] {
        padding: clamp(32px, 8vw, 48px) clamp(20px, 8vw, 36px);
    }

    .form-grid[b-it63rbykap] {
        grid-template-columns: 1fr;
    }

    .info-grid[b-it63rbykap] {
        grid-template-columns: 1fr;
    }

    .qr-section[b-it63rbykap] {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .detail-row[b-it63rbykap] {
        grid-template-columns: 1fr 1fr;
        gap: 4px 16px;
    }
}

@media (max-width: 768px) {
    .hk-hero__title[b-it63rbykap] {
        font-size: 36px;
    }

    .status-title[b-it63rbykap] {
        font-size: 24px;
    }

    .icon-circle[b-it63rbykap] {
        width: 80px;
        height: 80px;
    }

    .search-icon[b-it63rbykap] {
        width: 32px;
        height: 32px;
    }

    .status-sidebar[b-it63rbykap] {
        padding: 32px 16px;
    }

    .status-form[b-it63rbykap] {
        padding: 32px 16px;
    }

    .form-actions[b-it63rbykap] {
        justify-content: center;
        gap: 12px;
    }

    .form-actions .btn[b-it63rbykap],
    .btn[b-it63rbykap] {
        text-align: center;
    }

    .warranty-header[b-it63rbykap] {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .certificate-header[b-it63rbykap] {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .kool-logo[b-it63rbykap] {
        font-size: 36px;
    }

    .detail-row[b-it63rbykap] {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .qr-section[b-it63rbykap] {
        gap: 16px;
    }
}

@media (max-width: 600px) {

    .form-actions .btn[b-it63rbykap],
    .btn.primary[b-it63rbykap],
    .btn.secondary[b-it63rbykap] {
        width: 100%;
    }

    .status-form[b-it63rbykap] {
        padding: 28px 16px;
    }
}
/* /Pages/WarrantyDetails.razor.rz.scp.css */
.hk-hero[b-n6iezye1le] {
    background-image: linear-gradient(to right, #020024, #c3ddff 0, rgba(9, 9, 121, 0)), url('./images/warranty-detail-banner.png');
    background-size: 100%, cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e2e8f0;
}

.hk-hero__inner[b-n6iezye1le] {
    width: min(1120px, 100% - clamp(32px, 10vw, 140px));
    margin: 0 auto;
    padding: clamp(24px, 5vw, 48px) clamp(20px, 6vw, 60px) clamp(96px, 12vw, 140px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: center;
    gap: clamp(20px, 6vw, 48px);
    position: relative;
    z-index: 1;
}

.hk-hero__content[b-n6iezye1le] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hk-hero__badge[b-n6iezye1le] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #0055d4;
    border-radius: 999px;
    padding: 6px 18px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    width: max-content;
}

.hk-hero__title[b-n6iezye1le] {
    color: #273f95;
    font-weight: 800;
    font-size: clamp(34px, 6vw, 52px);
    margin: 0;
    line-height: 1.15;
}

.hk-hero__subtitle[b-n6iezye1le] {
    color: #4c5d7a;
    margin: 0;
    font-size: clamp(16px, 3.3vw, 18px);
    max-width: 48ch;
    line-height: 1.6;
}

.hk-card[b-n6iezye1le] {
    width: min(1120px, 100% - clamp(32px, 8vw, 120px));
    margin: clamp(-104px, -12vw, -64px) auto clamp(48px, 8vw, 120px);
    background: #fff;
    border: none;
    border-radius: 24px;
    padding: clamp(24px, 6vw, 52px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.14);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 4vw, 28px);
}

.card-top[b-n6iezye1le] {
    display: flex;
    justify-content: flex-end;
}

.btn[b-n6iezye1le] {
    border-radius: 12px;
    padding: 12px 28px;
    border: none;
    background: linear-gradient(120deg, #273f95, #0055d4);
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(13, 61, 145, 0.25);
}

.btn:hover[b-n6iezye1le] {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(13, 61, 145, 0.35);
}

.btn.primary[b-n6iezye1le] {
    background: linear-gradient(120deg, #0f5acb, #1e8bff);
}

.btn.ghost[b-n6iezye1le] {
    background: transparent;
    color: #64748b;
    border: 2px solid #cbd5e1;
    box-shadow: none;
}

.btn.ghost:hover[b-n6iezye1le] {
    background: #f8fafc;
    color: #1f325a;
}

.placeholder[b-n6iezye1le],
.empty-state[b-n6iezye1le],
.msg.error[b-n6iezye1le] {
    background: #f8fafc;
    border-radius: 18px;
    padding: clamp(28px, 6vw, 44px);
    text-align: center;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.placeholder h2[b-n6iezye1le],
.empty-state h2[b-n6iezye1le] {
    margin: 0 0 12px 0;
    color: #1e293b;
    font-size: clamp(20px, 4vw, 24px);
}

.loading-panel[b-n6iezye1le] {
    display: inline-flex;
    margin: clamp(24px, 6vw, 40px) auto;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    border-radius: 16px;
    background: rgba(39, 63, 149, 0.08);
    color: #273f95;
    font-weight: 600;
}

.spinner[b-n6iezye1le] {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid rgba(39, 63, 149, 0.2);
    border-top-color: #273f95;
    animation: spin-b-n6iezye1le 0.8s linear infinite;
}

@keyframes spin-b-n6iezye1le {
    to {
        transform: rotate(360deg);
    }
}

.tab-shell[b-n6iezye1le] {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 5vw, 32px);
}

.hk-tabs[b-n6iezye1le] {
    display: flex;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
    border-bottom: 1px solid #e2e8f0;
    overflow-x: auto;
    position: relative;
    z-index: 10;
    touch-action: pan-y;
}

.hk-tabs__item[b-n6iezye1le] {
    flex-shrink: 0;
}

.hk-tabs__link[b-n6iezye1le] {
    position: relative;
    z-index: 11;
    border: none;
    background: #f1f5f9;
    color: #475569;
    border-radius: 14px 14px 0 0;
    padding: 14px 20px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    border-bottom: 3px solid transparent;
}

.hk-tabs__link:hover[b-n6iezye1le],
.hk-tabs__link:focus[b-n6iezye1le] {
    color: #1e293b;
}

.hk-tabs__link.active[b-n6iezye1le] {
    background: #ffffff;
    color: #0f172a;
    border-bottom-color: #273f95;
    box-shadow: 0 12px 30px rgba(39, 63, 149, 0.14);
}

.tab-title[b-n6iezye1le] {
    font-size: 15px;
}

.tab-subtitle[b-n6iezye1le] {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.tab-panel[b-n6iezye1le] {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    padding: clamp(24px, 6vw, 40px);
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 5vw, 36px);
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.08);
}

.summary-card[b-n6iezye1le] {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.summary-header[b-n6iezye1le] {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.summary-header h3[b-n6iezye1le] {
    margin: 0;
    color: #0f172a;
    font-size: clamp(22px, 4vw, 26px);
}

.summary-header p[b-n6iezye1le] {
    margin: 4px 0 0 0;
    color: #475569;
    font-size: 14px;
}

.summary-chips[b-n6iezye1le] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip[b-n6iezye1le] {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    background: #f1f5f9;
    color: #475569;
}

.chip.accent[b-n6iezye1le] {
    background: #ecf3ff;
    color: #1e40af;
}

.timeline[b-n6iezye1le] {
    display: grid;
    grid-template-columns: repeat(3, auto);
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.timeline-node[b-n6iezye1le] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 160px;
}

.timeline-label[b-n6iezye1le] {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

.timeline-date[b-n6iezye1le] {
    font-size: 16px;
    color: #0f172a;
    font-weight: 700;
}

.timeline-divider[b-n6iezye1le] {
    height: 32px;
    width: 1px;
    background: linear-gradient(to bottom, rgba(148, 163, 184, 0), rgba(148, 163, 184, 0.8), rgba(148, 163, 184, 0));
}

.info-sections[b-n6iezye1le] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(16px, 4vw, 28px);
}

.info-card[b-n6iezye1le] {
    background: #f8fafc;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    padding: clamp(20px, 5vw, 28px);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-card h4[b-n6iezye1le] {
    margin: 0;
    color: #0f172a;
    font-size: 18px;
}

.info-grid[b-n6iezye1le] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.info-item[b-n6iezye1le] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-item.wide[b-n6iezye1le] {
    grid-column: 1 / -1;
}

.info-item label[b-n6iezye1le] {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

.info-item span[b-n6iezye1le] {
    font-size: 15px;
    color: #1e293b;
    font-weight: 600;
}

.support-card[b-n6iezye1le] {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    background: linear-gradient(120deg, rgba(39, 63, 149, 0.1), rgba(0, 85, 212, 0.15));
    border: 1px solid rgba(39, 63, 149, 0.18);
    border-radius: 18px;
    padding: clamp(20px, 5vw, 28px);
}

.support-card h4[b-n6iezye1le] {
    margin: 0 0 6px 0;
    color: #0f172a;
    font-size: 18px;
}

.support-card p[b-n6iezye1le] {
    margin: 0;
    color: #475569;
    font-size: 15px;
    max-width: 56ch;
}

.proof-card[b-n6iezye1le] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 18px;
    padding: clamp(20px, 5vw, 28px);
}

.proof-header[b-n6iezye1le] {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: baseline;
}

.proof-header h4[b-n6iezye1le] {
    margin: 0;
    color: #0f172a;
    font-size: 18px;
}

.proof-preview[b-n6iezye1le] {
    position: relative;
    display: inline-flex;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    max-width: 520px;
    padding: 0;
    cursor: pointer;
    border-width: 1px;
}

.proof-preview[b-n6iezye1le],
.proof-preview:focus[b-n6iezye1le] {
    border: 1px solid #e2e8f0;
}

.proof-preview:focus-visible[b-n6iezye1le] {
    outline: 2px solid #2563eb;
    outline-offset: 4px;
}

.proof-preview img[b-n6iezye1le] {
    display: block;
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: contain;
    background: #f1f5f9;
}

.proof-overlay[b-n6iezye1le] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.45);
    color: #ffffff;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.proof-preview:hover .proof-overlay[b-n6iezye1le],
.proof-preview:focus-visible .proof-overlay[b-n6iezye1le] {
    opacity: 1;
}

.proof-backdrop[b-n6iezye1le] {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    padding: 24px;
}

.proof-modal[b-n6iezye1le] {
    background: #ffffff;
    border-radius: 18px;
    width: min(800px, 100%);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.35);
}

.proof-modal__header[b-n6iezye1le] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
}

.proof-modal__header h3[b-n6iezye1le] {
    margin: 0;
    font-size: clamp(18px, 2vw, 20px);
    color: #0f172a;
}

.proof-modal__close[b-n6iezye1le] {
    border: none;
    background: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #475569;
}

.proof-modal__close:hover[b-n6iezye1le],
.proof-modal__close:focus-visible[b-n6iezye1le] {
    color: #1f2937;
}

.proof-modal__body[b-n6iezye1le] {
    padding: clamp(16px, 4vw, 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
}

.proof-modal__body img[b-n6iezye1le] {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.22);
    background: #ffffff;
}

.msg.error[b-n6iezye1le] {
    color: #b91c1c;
}

@media (max-width: 768px) {
    .support-card .btn[b-n6iezye1le] {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .hk-card[b-n6iezye1le] {
        width: calc(100% - 32px);
        margin: clamp(-88px, -14vw, -48px) auto clamp(40px, 10vw, 88px);
    }

    .hk-tabs__link[b-n6iezye1le] {
        min-width: 180px;
    }

    .timeline[b-n6iezye1le] {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .timeline-divider[b-n6iezye1le] {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, rgba(148, 163, 184, 0), rgba(148, 163, 184, 0.8), rgba(148, 163, 184, 0));
    }

    .summary-header[b-n6iezye1le] {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .hk-hero__inner[b-n6iezye1le] {
        padding: clamp(24px, 8vw, 40px) clamp(20px, 8vw, 40px) clamp(72px, 12vw, 120px);
        text-align: center;
    }

    .hk-hero__content[b-n6iezye1le] {
        align-items: center;
    }

    .card-top[b-n6iezye1le] {
        justify-content: center;
    }
}
/* /Pages/WarrantyDetailsSuper.razor.rz.scp.css */
.hk-hero[b-s9itywaf9x] {
    background-image: linear-gradient(to right, rgba(0,0,0,1), rgba(0, 0, 0, 0)), url('./images/warranty-detail-banner-super.png');
    background-size: 100%, cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hk-hero__inner[b-s9itywaf9x] {
    width: min(1120px, 100% - clamp(32px, 10vw, 140px));
    margin: 0 auto;
    padding: clamp(24px, 5vw, 48px) clamp(20px, 6vw, 60px) clamp(96px, 12vw, 140px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: center;
    gap: clamp(20px, 6vw, 48px);
    position: relative;
    z-index: 1;
}

.hk-hero__content[b-s9itywaf9x] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hk-hero__badge[b-s9itywaf9x] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #000;
    border-radius: 999px;
    padding: 6px 18px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    width: max-content;
}

.hk-hero__title[b-s9itywaf9x] {
    color: #d2a637;
    font-weight: 800;
    font-size: clamp(34px, 6vw, 52px);
    margin: 0;
    line-height: 1.15;
}

.hk-hero__subtitle[b-s9itywaf9x] {
    color: #d2a637;
    margin: 0;
    font-size: clamp(16px, 3.3vw, 18px);
    max-width: 48ch;
    line-height: 1.6;
}

.hk-card[b-s9itywaf9x] {
    width: min(1120px, 100% - clamp(32px, 8vw, 120px));
    margin: clamp(-104px, -12vw, -64px) auto clamp(48px, 8vw, 120px);
    background: #fff;
    border: none;
    border-radius: 24px;
    padding: clamp(24px, 6vw, 52px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.14);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 4vw, 28px);
}

.card-top[b-s9itywaf9x] {
    display: flex;
    justify-content: flex-end;
}

.btn[b-s9itywaf9x] {
    border-radius: 12px;
    padding: 12px 28px;
    border: none;
    background: linear-gradient(120deg, #273f95, #0055d4);
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(13, 61, 145, 0.25);
}

.btn:hover[b-s9itywaf9x] {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(13, 61, 145, 0.35);
}

.btn.primary[b-s9itywaf9x] {
    background: linear-gradient(120deg, #bd8f1b, #d2a637);
}

.btn.ghost[b-s9itywaf9x] {
    background: transparent;
    color: #8b8464;
    border: 2px solid #e1dbcb;
    box-shadow: none;
}

.btn.ghost:hover[b-s9itywaf9x] {
    background: #fcfbf8;
    color: #d2a637;
}

.placeholder[b-s9itywaf9x],
.empty-state[b-s9itywaf9x],
.msg.error[b-s9itywaf9x] {
    background: #fcfbf8;
    border-radius: 18px;
    padding: clamp(28px, 6vw, 44px);
    text-align: center;
    color: #696047;
    border: 1px solid #f0ede2;
}

.placeholder h2[b-s9itywaf9x],
.empty-state h2[b-s9itywaf9x] {
    margin: 0 0 12px 0;
    color: #3b331e;
    font-size: clamp(20px, 4vw, 24px);
}

.loading-panel[b-s9itywaf9x] {
    display: inline-flex;
    margin: clamp(24px, 6vw, 40px) auto;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    border-radius: 16px;
    background: rgba(149, 129, 39, 0.08);
    color: #273f95;
    font-weight: 600;
}

.spinner[b-s9itywaf9x] {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid rgba(149, 129, 39, 0.2);
    border-top-color: #d2a637;
    animation: spin-b-s9itywaf9x 0.8s linear infinite;
}

@keyframes spin-b-s9itywaf9x {
    to {
        transform: rotate(360deg);
    }
}

.tab-shell[b-s9itywaf9x] {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 5vw, 32px);
}

.hk-tabs[b-s9itywaf9x] {
    display: flex;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
    border-bottom: 1px solid #f0ede2;
    overflow-x: auto;
    position: relative;
    z-index: 10;
    touch-action: pan-y;
}

.hk-tabs__item[b-s9itywaf9x] {
    flex-shrink: 0;
}

.hk-tabs__link[b-s9itywaf9x] {
    position: relative;
    z-index: 11;
    border: none;
    background: #f1f5f9;
    color: #696347;
    border-radius: 14px 14px 0 0;
    padding: 14px 20px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    border-bottom: 3px solid transparent;
}

.hk-tabs__link:hover[b-s9itywaf9x],
.hk-tabs__link:focus[b-s9itywaf9x] {
    color: #3b371e;
}

.hk-tabs__link.active[b-s9itywaf9x] {
    background: #ffffff;
    color: #3b371e;
    border-bottom-color: #bd8f1b;
    box-shadow: 0 12px 30px rgba(189, 143, 27, 0.14);
}

.tab-title[b-s9itywaf9x] {
    font-size: 15px;
}

.tab-subtitle[b-s9itywaf9x] {
    font-size: 13px;
    color: #8b8264;
    font-weight: 500;
}

.tab-panel[b-s9itywaf9x] {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #f0ede2;
    padding: clamp(24px, 6vw, 40px);
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 5vw, 36px);
    box-shadow: 0 22px 45px rgba(42, 37, 15, 0.08);
}

.summary-card[b-s9itywaf9x] {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.summary-header[b-s9itywaf9x] {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.summary-header h3[b-s9itywaf9x] {
    margin: 0;
    color: #2a250f;
    font-size: clamp(22px, 4vw, 26px);
}

.summary-header p[b-s9itywaf9x] {
    margin: 4px 0 0 0;
    color: #696047;
    font-size: 14px;
}

.summary-chips[b-s9itywaf9x] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip[b-s9itywaf9x] {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    background: #f1f5f9;
    color: #696147;
}

.chip.accent[b-s9itywaf9x] {
    background: #fffbec;
    color: #af8d1e;
}

.timeline[b-s9itywaf9x] {
    display: grid;
    grid-template-columns: repeat(3, auto);
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-radius: 16px;
    background: #fcfbf8;
    border: 1px solid #f0ede2;
}

.timeline-node[b-s9itywaf9x] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 160px;
}

.timeline-label[b-s9itywaf9x] {
    font-size: 13px;
    color: #8b8464;
    font-weight: 600;
}

.timeline-date[b-s9itywaf9x] {
    font-size: 16px;
    color: #2a240f;
    font-weight: 700;
}

.timeline-divider[b-s9itywaf9x] {
    height: 32px;
    width: 1px;
    background: linear-gradient(to bottom, rgba(184, 177, 148, 0), rgba(184, 173, 148, 0.8), rgba(184, 176, 148, 0));
}

.info-sections[b-s9itywaf9x] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(16px, 4vw, 28px);
}

.info-card[b-s9itywaf9x] {
    background: #f8fafc;
    border-radius: 18px;
    border: 1px solid #f0ede2;
    padding: clamp(20px, 5vw, 28px);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-card h4[b-s9itywaf9x] {
    margin: 0;
    color: #2a240f;
    font-size: 18px;
}

.info-grid[b-s9itywaf9x] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.info-item[b-s9itywaf9x] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-item.wide[b-s9itywaf9x] {
    grid-column: 1 / -1;
}

.info-item label[b-s9itywaf9x] {
    font-size: 13px;
    color: #8b7f64;
    font-weight: 600;
}

.info-item span[b-s9itywaf9x] {
    font-size: 15px;
    color: #3b341e;
    font-weight: 600;
}

.support-card[b-s9itywaf9x] {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    background: linear-gradient(120deg, rgba(149, 123, 39, 0.1), rgba(175, 141, 30, 0.15));
    border: 1px solid rgba(175, 141, 30, 0.18);
    border-radius: 18px;
    padding: clamp(20px, 5vw, 28px);
}

.support-card h4[b-s9itywaf9x] {
    margin: 0 0 6px 0;
    color: #2a240f;
    font-size: 18px;
}

.support-card p[b-s9itywaf9x] {
    margin: 0;
    color: #8b8464;
    font-size: 15px;
    max-width: 56ch;
}

.proof-card[b-s9itywaf9x] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fcfbf8;
    border: 1px dashed #e1d9cb;
    border-radius: 18px;
    padding: clamp(20px, 5vw, 28px);
}

.proof-header[b-s9itywaf9x] {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: baseline;
}

.proof-header h4[b-s9itywaf9x] {
    margin: 0;
    color: #2a250f;
    font-size: 18px;
}

.proof-preview[b-s9itywaf9x] {
    position: relative;
    display: inline-flex;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f0ece2;
    background: #ffffff;
    max-width: 520px;
    padding: 0;
    cursor: pointer;
    border-width: 1px;
}

.proof-preview[b-s9itywaf9x],
.proof-preview:focus[b-s9itywaf9x] {
    border: 1px solid #f0ede2;
}

.proof-preview:focus-visible[b-s9itywaf9x] {
    outline: 2px solid #af8d1e;
    outline-offset: 4px;
}

.proof-preview img[b-s9itywaf9x] {
    display: block;
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: contain;
    background: #f1f5f0;
}

.proof-overlay[b-s9itywaf9x] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(42, 36, 15, 0.45);
    color: #ffffff;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.proof-preview:hover .proof-overlay[b-s9itywaf9x],
.proof-preview:focus-visible .proof-overlay[b-s9itywaf9x] {
    opacity: 1;
}

.proof-backdrop[b-s9itywaf9x] {
    position: fixed;
    inset: 0;
    background: rgba(42, 36, 15, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    padding: 24px;
}

.proof-modal[b-s9itywaf9x] {
    background: #ffffff;
    border-radius: 18px;
    width: min(800px, 100%);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 60px rgba(42, 36, 15, 0.35);
}

.proof-modal__header[b-s9itywaf9x] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid #f0ede2;
}

.proof-modal__header h3[b-s9itywaf9x] {
    margin: 0;
    font-size: clamp(18px, 2vw, 20px);
    color: #2a240f;
}

.proof-modal__close[b-s9itywaf9x] {
    border: none;
    background: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #8b8464;
}

.proof-modal__close:hover[b-s9itywaf9x],
.proof-modal__close:focus-visible[b-s9itywaf9x] {
    color: #2a240f;
}

.proof-modal__body[b-s9itywaf9x] {
    padding: clamp(16px, 4vw, 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fcfbf8;
}

.proof-modal__body img[b-s9itywaf9x] {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(42, 36, 15, 0.22);
    background: #ffffff;
}

.msg.error[b-s9itywaf9x] {
    color: #b91c1c;
}

@media (max-width: 768px) {
    .support-card .btn[b-s9itywaf9x] {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .hk-card[b-s9itywaf9x] {
        width: calc(100% - 32px);
        margin: clamp(-88px, -14vw, -48px) auto clamp(40px, 10vw, 88px);
    }

    .hk-tabs__link[b-s9itywaf9x] {
        min-width: 180px;
    }

    .timeline[b-s9itywaf9x] {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .timeline-divider[b-s9itywaf9x] {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, rgba(148, 163, 184, 0), rgba(148, 163, 184, 0.8), rgba(148, 163, 184, 0));
    }

    .summary-header[b-s9itywaf9x] {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .hk-hero__inner[b-s9itywaf9x] {
        padding: clamp(24px, 8vw, 40px) clamp(20px, 8vw, 40px) clamp(72px, 12vw, 120px);
        text-align: center;
    }

    .hk-hero__content[b-s9itywaf9x] {
        align-items: center;
    }

    .card-top[b-s9itywaf9x] {
        justify-content: center;
    }
}
/* /Shared/MainLayout.razor.rz.scp.css */
:root[b-83vyk7id9v] {
    --main-color: #0055d4;
    --sub-color: #ffde00;
}

/* Modern chromed header */
.layout-root[b-83vyk7id9v] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hk-header[b-83vyk7id9v] {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: saturate(180%) blur(18px);
}

.hk-header__inner[b-83vyk7id9v] {
    width: min(1180px, 100% - clamp(32px, 8vw, 96px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px clamp(12px, 4vw, 24px);
    position: relative;
    gap: 24px;
}

.hk-logo[b-83vyk7id9v] {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.hk-logo img[b-83vyk7id9v] {
    height: clamp(38px, 4.4vw, 48px);
    width: auto;
    display: block;
}

.hk-nav[b-83vyk7id9v] {
    display: flex;
    gap: 28px;
    align-items: center;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hk-nav__link[b-83vyk7id9v] {
    color: #13234a;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.hk-nav__link:hover[b-83vyk7id9v],
.hk-nav__link:focus-visible[b-83vyk7id9v] {
    color: #0055d4;
    border-bottom-color: #0055d4;
}

/* Dropdown styles */
.hk-nav__dropdown[b-83vyk7id9v] {
    position: relative;
}

.hk-nav__dropdown-toggle[b-83vyk7id9v] {
    background: transparent;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.hk-nav__dropdown-menu[b-83vyk7id9v] {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.15);
    min-width: 200px;
    padding: 8px 0;
    z-index: 100;
    margin-top: 8px;
}

.hk-nav__dropdown-item[b-83vyk7id9v] {
    display: block;
    padding: 12px 20px;
    color: #13234a;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: background 0.15s ease, color 0.15s ease;
}

.hk-nav__dropdown-item:hover[b-83vyk7id9v] {
    background: #f0f7ff;
    color: #0055d4;
}

.hk-nav-toggle[b-83vyk7id9v] {
    display: none;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    background: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.2s ease, border 0.2s ease;
}

.hk-nav-toggle:focus-visible[b-83vyk7id9v],
.hk-nav-toggle:hover[b-83vyk7id9v] {
    background: #f8fafc;
    border-color: #94a3b8;
}

.hk-nav-toggle__bar[b-83vyk7id9v] {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #1f2937;
    display: block;
    transition: transform 0.2s ease;
}

.hk-main[b-83vyk7id9v] {
    flex: 1;
}

@media (max-width: 900px) {
    .hk-header__inner[b-83vyk7id9v] {
        gap: 12px;
    }

    .hk-nav-toggle[b-83vyk7id9v] {
        display: flex;
        flex-direction: column;
        width: 60px;
        padding: 0;
        aspect-ratio: 4/3;
    }

    .hk-nav[b-83vyk7id9v] {
        position: absolute;
        inset: calc(100% + 12px) clamp(16px, 6vw, 32px) auto clamp(16px, 6vw, 32px);
        flex-direction: column;
        align-items: stretch;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 12px;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        visibility: hidden;
    }

    .hk-nav.is-open[b-83vyk7id9v] {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        visibility: visible;
    }

    .hk-nav__link[b-83vyk7id9v] {
        padding: 12px 16px;
        border-bottom: 1px solid #e2e8f0;
    }

    .hk-nav__link:last-child[b-83vyk7id9v] {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .hk-header__inner[b-83vyk7id9v] {
        padding: 12px 16px;
    }

    .hk-nav[b-83vyk7id9v] {
        inset: calc(100% + 8px) 16px auto 16px;
    }

    .hk-nav-toggle__bar[b-83vyk7id9v] {
        width: 16px;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-9gqiz2wo8l] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-9gqiz2wo8l] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-9gqiz2wo8l] {
    font-size: 1.1rem;
}

.oi[b-9gqiz2wo8l] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-9gqiz2wo8l] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-9gqiz2wo8l] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-9gqiz2wo8l] {
        padding-bottom: 1rem;
    }

    .nav-item[b-9gqiz2wo8l]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-9gqiz2wo8l]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-9gqiz2wo8l]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-9gqiz2wo8l] {
        display: none;
    }

    .collapse[b-9gqiz2wo8l] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-9gqiz2wo8l] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Shared/SuperLayout.razor.rz.scp.css */
:root[b-orfqmdq8cz] {
    --main-color: #0055d4;
    --sub-color: #d2a637;
}

footer[b-orfqmdq8cz] {
    background-color: #1d1d1d;
    color: white;
}

/* Modern chromed header */
.layout-root[b-orfqmdq8cz] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hk-header[b-orfqmdq8cz] {
    background: black;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: saturate(180%) blur(18px);
}

.hk-header__inner[b-orfqmdq8cz] {
    width: min(1180px, 100% - clamp(32px, 8vw, 96px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px clamp(12px, 4vw, 24px);
    position: relative;
    gap: 24px;
}

.hk-logo[b-orfqmdq8cz] {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.hk-logo img[b-orfqmdq8cz] {
    height: 100px;
    width: auto;
    display: block;
}

.hk-nav[b-orfqmdq8cz] {
    display: flex;
    gap: 28px;
    align-items: center;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hk-nav__link[b-orfqmdq8cz] {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.hk-nav__link:hover[b-orfqmdq8cz],
.hk-nav__link:focus-visible[b-orfqmdq8cz] {
    color: #d2a637;
    border-bottom-color: #d2a637;
}

/* Dropdown styles */
.hk-nav__dropdown[b-orfqmdq8cz] {
    position: relative;
}

.hk-nav__dropdown-toggle[b-orfqmdq8cz] {
    background: transparent;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.hk-nav__dropdown-menu[b-orfqmdq8cz] {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.15);
    min-width: 200px;
    padding: 8px 0;
    z-index: 100;
    margin-top: 8px;
}

.hk-nav__dropdown-item[b-orfqmdq8cz] {
    display: block;
    padding: 12px 20px;
    color: #13234a;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: background 0.15s ease, color 0.15s ease;
}

.hk-nav__dropdown-item:hover[b-orfqmdq8cz] {
    background: #f0f7ff;
    color: #0055d4;
}

.hk-nav-toggle[b-orfqmdq8cz] {
    display: none;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    background: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.2s ease, border 0.2s ease;
}

.hk-nav-toggle:focus-visible[b-orfqmdq8cz],
.hk-nav-toggle:hover[b-orfqmdq8cz] {
    background: #f8fafc;
    border-color: #94a3b8;
}

.hk-nav-toggle__bar[b-orfqmdq8cz] {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #1f2937;
    display: block;
    transition: transform 0.2s ease;
}

.hk-main[b-orfqmdq8cz] {
    flex: 1;
    background-color: black;
}

@media (max-width: 900px) {
    .hk-logo img[b-orfqmdq8cz] {
        height: 75px;
    }

    .hk-header__inner[b-orfqmdq8cz] {
        gap: 12px;
    }

    .hk-nav-toggle[b-orfqmdq8cz] {
        display: flex;
        flex-direction: column;
        width: 60px;
        padding: 0;
        aspect-ratio: 4/3;
    }

    .hk-nav[b-orfqmdq8cz] {
        position: absolute;
        inset: calc(100% + 12px) clamp(16px, 6vw, 32px) auto clamp(16px, 6vw, 32px);
        flex-direction: column;
        align-items: stretch;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 12px;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        visibility: hidden;
    }

    .hk-nav.is-open[b-orfqmdq8cz] {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        visibility: visible;
    }

    .hk-nav__link[b-orfqmdq8cz] {
        color: black;
        padding: 12px 16px;
        border-bottom: 1px solid #e2e8f0;
    }

    .hk-nav__link:last-child[b-orfqmdq8cz] {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .hk-header__inner[b-orfqmdq8cz] {
        padding: 0px 16px;
    }

    .hk-nav[b-orfqmdq8cz] {
        inset: calc(100% + 8px) 16px auto 16px;
    }

    .hk-nav-toggle__bar[b-orfqmdq8cz] {
        width: 16px;
    }
}
