:root {
    --sihaki-primary: #0b6b4f;
    --sihaki-primary-dark: #07513d;
    --sihaki-primary-deep: #06392e;
    --sihaki-primary-soft: #e9f5f0;
    --sihaki-accent: #e0b52f;
    --sihaki-accent-soft: #fff5cf;
    --sihaki-ink: #15221e;
    --sihaki-muted: #6e7c77;
    --sihaki-soft: #f7faf9;
    --sihaki-soft-2: #f1f6f4;
    --sihaki-border: #e1e9e6;
    --sihaki-shadow: 0 16px 45px rgba(21, 34, 30, 0.07);
    --sihaki-shadow-soft: 0 10px 30px rgba(21, 34, 30, 0.045);
    --bs-primary: #0b6b4f;
    --bs-primary-rgb: 11, 107, 79;
    --bs-success: #0b6b4f;
    --bs-success-rgb: 11, 107, 79;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--sihaki-ink);
    background: #ffffff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
}

a {
    color: var(--sihaki-primary);
    text-decoration: none;
    transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

a:hover {
    color: var(--sihaki-primary-dark);
}

/* =========================================================
   NAVBAR
   ========================================================= */
.sihaki-navbar {
    min-height: 76px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(225, 233, 230, 0.95);
    box-shadow: 0 8px 30px rgba(18, 32, 27, 0.04);
    backdrop-filter: blur(16px);
}

.sihaki-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--sihaki-ink) !important;
    line-height: 1.05;
}

.sihaki-brand-symbol,
.footer-brand-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--sihaki-border);
    border-radius: 12px;
}

.sihaki-brand-symbol img,
.footer-brand-symbol img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.sihaki-brand-copy {
    display: flex;
    flex-direction: column;
}

.sihaki-brand-copy strong {
    font-size: 1rem;
    font-weight: 850;
    letter-spacing: -0.02em;
}

.sihaki-brand-copy small {
    margin-top: 3px;
    color: var(--sihaki-muted);
    font-size: 0.63rem;
    font-weight: 650;
}

.sihaki-navbar .nav-link {
    position: relative;
    padding: 0.58rem 0.72rem !important;
    color: #2a3733;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 650;
}

.sihaki-navbar .nav-link:hover,
.sihaki-navbar .nav-link.active {
    color: var(--sihaki-primary-dark);
    background: var(--sihaki-primary-soft);
}

.sihaki-navbar .dropdown-menu {
    padding: 8px;
    border: 1px solid var(--sihaki-border);
    border-radius: 16px;
    box-shadow: var(--sihaki-shadow);
}

.sihaki-navbar .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.86rem;
    font-weight: 600;
}

.sihaki-navbar .dropdown-item i {
    color: var(--sihaki-primary);
}

.sihaki-navbar .dropdown-item:hover,
.sihaki-navbar .dropdown-item:focus {
    color: var(--sihaki-primary-dark);
    background: var(--sihaki-primary-soft);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-search-shortcut {
    align-items: center;
    gap: 9px;
    min-width: 180px;
    padding: 8px 13px;
    color: #77847f;
    background: #f4f7f6;
    border: 1px solid #edf2f0;
    border-radius: 999px;
    font-size: 0.78rem;
}

.navbar-search-shortcut:hover {
    color: var(--sihaki-primary-dark);
    background: #eef5f2;
}

.navbar-toggler {
    padding: 8px 10px;
    border: 1px solid var(--sihaki-border);
    border-radius: 11px;
    box-shadow: none !important;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 42px;
    padding: 0.63rem 1rem;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 750;
    letter-spacing: -0.01em;
    box-shadow: none;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

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

.btn:active {
    transform: translateY(0);
}

.btn-sm {
    min-height: 36px;
    padding: 0.45rem 0.78rem;
    border-radius: 10px;
    font-size: 0.78rem;
}

.btn-lg {
    min-height: 50px;
    padding: 0.78rem 1.25rem;
    border-radius: 14px;
}

.btn-primary,
.btn-success {
    color: #ffffff;
    background: linear-gradient(135deg, #0b6b4f, #0a7958);
    border-color: #0b6b4f;
    box-shadow: 0 7px 18px rgba(11, 107, 79, 0.16);
}

.btn-primary:hover,
.btn-success:hover,
.btn-primary:focus,
.btn-success:focus {
    color: #ffffff;
    background: linear-gradient(135deg, #07513d, #0b6b4f);
    border-color: #07513d;
    box-shadow: 0 10px 24px rgba(11, 107, 79, 0.22);
}

.btn-dark {
    background: #19211f;
    border-color: #19211f;
    box-shadow: 0 7px 18px rgba(25, 33, 31, 0.12);
}

.btn-dark:hover {
    background: #0f1513;
    border-color: #0f1513;
}

.btn-light {
    color: var(--sihaki-ink);
    background: #ffffff;
    border-color: #e1e7e5;
    box-shadow: 0 7px 18px rgba(21, 34, 30, 0.06);
}

.btn-light:hover {
    color: var(--sihaki-primary-dark);
    background: #f8fbfa;
    border-color: #cddbd6;
}

.btn-outline-dark,
.btn-outline-success,
.btn-outline-primary {
    color: var(--sihaki-ink);
    background: #ffffff;
    border-color: #cfd9d5;
}

.btn-outline-dark:hover,
.btn-outline-success:hover,
.btn-outline-primary:hover {
    color: #ffffff;
    background: var(--sihaki-primary-dark);
    border-color: var(--sihaki-primary-dark);
}

/* =========================================================
   HOME HERO
   ========================================================= */
.home-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(135deg, #0b6b4f 0%, #0b6b4f 48%, #667b26 100%);
}

.home-hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.home-hero-orb-one {
    top: -260px;
    right: -110px;
    width: 620px;
    height: 620px;
    background: rgba(255, 255, 255, 0.055);
}

.home-hero-orb-two {
    bottom: -260px;
    left: -260px;
    width: 480px;
    height: 480px;
    background: rgba(0, 0, 0, 0.09);
}

.py-lg-6 {
    padding-top: 5.4rem !important;
    padding-bottom: 5.4rem !important;
}

.hero-kicker,
.section-eyebrow,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-kicker {
    color: rgba(255, 255, 255, 0.92);
}

.home-hero h1 {
    max-width: 760px;
    margin: 14px 0 18px;
    font-size: clamp(2.6rem, 5.8vw, 5.15rem);
    font-weight: 900;
    line-height: 0.99;
    letter-spacing: -0.055em;
}

.home-hero h1 span {
    color: #f2ce56;
}

.hero-lead {
    max-width: 680px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.75;
}

.hero-search {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 650px;
    padding: 6px 6px 6px 16px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 14px;
    box-shadow: 0 18px 35px rgba(4, 38, 28, 0.14);
}

.hero-search > i {
    color: #73817c;
    font-size: 1rem;
}

.hero-search input {
    flex: 1;
    min-width: 0;
    padding: 8px 0;
    color: var(--sihaki-ink);
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 0.88rem;
}

.hero-search input::placeholder {
    color: #9aa5a1;
}

.hero-search .btn {
    min-width: 118px;
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.72rem;
    font-weight: 650;
}

.hero-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-trust-row i {
    color: #f2ce56;
}

.hero-visual {
    position: relative;
    width: min(100%, 470px);
    min-height: 340px;
    margin-left: auto;
}

.hero-visual-sheet {
    position: absolute;
    top: 48px;
    right: 15px;
    width: 84%;
    padding: 22px;
    background: rgba(255, 255, 255, 0.94);
    border: 7px solid rgba(255, 255, 255, 0.22);
    border-radius: 24px;
    box-shadow: 0 28px 55px rgba(2, 44, 31, 0.22);
    transform: rotate(-0.7deg);
}

.sheet-head {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
}

.sheet-dot {
    width: 13px;
    height: 13px;
    background: var(--sihaki-primary);
    border-radius: 50%;
}

.sheet-line {
    width: 60px;
    height: 7px;
    background: #dce8e3;
    border-radius: 999px;
}

.sheet-line-wide {
    width: 105px;
    background: #bbd2c9;
}

.sheet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.sheet-block {
    min-height: 98px;
    border-radius: 14px;
}

.sheet-block-a,
.sheet-block-b {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
}

.sheet-block-a {
    color: #9e8922;
    background: #fff3c8;
}

.sheet-block-b {
    color: #19664f;
    background: #eaf4f1;
}

.sheet-block-c {
    grid-column: 2;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    min-height: 82px;
    margin-top: -4px;
    padding: 18px;
    background: #eef0fa;
}

.sheet-block-c span {
    display: block;
    height: 7px;
    background: #a9b2d8;
    border-radius: 999px;
}

.sheet-block-c span:nth-child(2) {
    width: 75%;
}

.sheet-block-c span:nth-child(3) {
    width: 55%;
}

.hero-float {
    position: absolute;
    z-index: 2;
    min-width: 92px;
    padding: 12px 14px;
    color: var(--sihaki-ink);
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(3, 48, 34, 0.14);
}

.hero-float strong,
.hero-float span {
    display: block;
}

.hero-float strong {
    color: var(--sihaki-primary-dark);
    font-size: 1.08rem;
    font-weight: 850;
}

.hero-float span {
    margin-top: 1px;
    color: #7e8a86;
    font-size: 0.62rem;
}

.hero-float-left {
    bottom: 45px;
    left: 4px;
}

.hero-float-right {
    top: 58px;
    right: -10px;
}

.hero-visual-badge {
    position: absolute;
    right: 112px;
    bottom: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 48px;
    color: #ffffff;
    background: #0d7053;
    border: 5px solid rgba(255, 255, 255, 0.86);
    border-radius: 14px;
    font-size: 1.25rem;
    box-shadow: 0 12px 28px rgba(2, 43, 31, 0.18);
}

/* =========================================================
   HOME SECTIONS
   ========================================================= */
.home-section {
    padding: 64px 0;
}

.bg-soft {
    background: #fbfcfc;
}

.section-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.section-eyebrow {
    color: var(--sihaki-primary);
}

.section-title-row h2,
.process-title,
.home-cta h2 {
    margin: 7px 0 3px;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    font-weight: 880;
    letter-spacing: -0.04em;
}

.section-title-row p,
.process-description {
    max-width: 680px;
    margin: 0;
    color: var(--sihaki-muted);
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--sihaki-primary-dark);
    font-size: 0.82rem;
    font-weight: 800;
    white-space: nowrap;
}

.section-link:hover {
    gap: 10px;
}

.category-tile {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 92px;
    padding: 16px;
    color: var(--sihaki-ink);
    background: #ffffff;
    border: 1px solid var(--sihaki-border);
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(21, 34, 30, 0.025);
}

.category-tile:hover {
    color: var(--sihaki-ink);
    border-color: #bdd2ca;
    box-shadow: var(--sihaki-shadow-soft);
    transform: translateY(-2px);
}

.category-icon,
.category-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.category-icon {
    width: 44px;
    height: 44px;
    color: var(--sihaki-primary);
    background: var(--sihaki-primary-soft);
    border-radius: 13px;
    font-size: 1.08rem;
}

.category-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.category-copy strong {
    font-size: 0.9rem;
    font-weight: 800;
}

.category-copy small {
    margin-top: 3px;
    color: var(--sihaki-muted);
    font-size: 0.69rem;
}

.category-arrow {
    width: 31px;
    height: 31px;
    margin-left: auto;
    color: var(--sihaki-ink);
    background: #f7faf9;
    border-radius: 50%;
}

.record-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--sihaki-border);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(21, 34, 30, 0.035);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.record-card:hover {
    border-color: #cad9d3;
    box-shadow: var(--sihaki-shadow);
    transform: translateY(-3px);
}

.record-illustration {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 155px;
    overflow: hidden;
}

.record-illustration::before,
.record-illustration::after {
    position: absolute;
    content: "";
    border-radius: 50%;
}

.record-illustration::before {
    top: -45px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.4);
}

.record-illustration::after {
    bottom: -50px;
    left: -40px;
    width: 170px;
    height: 120px;
    background: rgba(255, 255, 255, 0.28);
}

.tone-green .record-illustration { background: #dff1eb; }
.tone-purple .record-illustration { background: #eee8fb; }
.tone-orange .record-illustration { background: #f8e8db; }
.tone-blue .record-illustration { background: #e3f0f7; }

.record-badge {
    position: absolute;
    top: 11px;
    left: 11px;
    z-index: 2;
    padding: 5px 8px;
    color: #34423d;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    font-size: 0.58rem;
    font-weight: 800;
}

.record-paper {
    position: relative;
    z-index: 1;
    width: 68%;
    min-height: 94px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 13px;
    box-shadow: 0 10px 25px rgba(32, 48, 43, 0.055);
}

.record-paper-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
    color: #ffffff;
    background: var(--sihaki-primary);
    border-radius: 8px;
}

.tone-purple .record-paper-icon { background: #7353be; }
.tone-orange .record-paper-icon { background: #c26a2d; }
.tone-blue .record-paper-icon { background: #2a80a9; }

.paper-line {
    display: block;
    height: 5px;
    margin-top: 6px;
    background: #c9d9d3;
    border-radius: 999px;
}

.paper-line-1 { width: 76%; }
.paper-line-2 { width: 92%; opacity: 0.78; }
.paper-line-3 { width: 55%; opacity: 0.6; }

.record-content {
    padding: 18px;
}

.record-owner {
    display: flex;
    align-items: center;
    gap: 5px;
    overflow: hidden;
    color: #7a8782;
    font-size: 0.65rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.record-content h3 {
    display: -webkit-box;
    min-height: 43px;
    margin: 8px 0 7px;
    overflow: hidden;
    font-size: 0.93rem;
    font-weight: 800;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.record-content p {
    display: -webkit-box;
    min-height: 45px;
    margin: 0;
    overflow: hidden;
    color: var(--sihaki-muted);
    font-size: 0.72rem;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.record-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #edf2f0;
}

.record-footer div span,
.record-footer div strong {
    display: block;
}

.record-footer div span {
    color: #8e9995;
    font-size: 0.58rem;
}

.record-footer div strong {
    margin-top: 1px;
    color: var(--sihaki-ink);
    font-size: 0.82rem;
}

.record-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--sihaki-primary-dark);
    background: var(--sihaki-primary-soft);
    border-radius: 50%;
}

.record-footer a:hover {
    color: #ffffff;
    background: var(--sihaki-primary);
}

.process-description {
    margin: 14px 0 22px;
}

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

.process-card {
    position: relative;
    min-height: 180px;
    padding: 22px;
    background: #ffffff;
    border: 1px solid var(--sihaki-border);
    border-radius: 18px;
}

.process-card:hover {
    border-color: #c6d9d1;
    box-shadow: var(--sihaki-shadow-soft);
}

.process-number {
    position: absolute;
    top: 16px;
    right: 17px;
    color: #c2cfca;
    font-size: 0.74rem;
    font-weight: 850;
}

.process-icon {
    color: var(--sihaki-primary);
    font-size: 1.35rem;
}

.process-card h3 {
    margin: 28px 0 5px;
    font-size: 0.88rem;
    font-weight: 800;
}

.process-card p {
    margin: 0;
    color: var(--sihaki-muted);
    font-size: 0.71rem;
    line-height: 1.55;
}

.home-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 36px 40px;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 80% 30%, rgba(245, 210, 79, 0.2), transparent 25%),
        linear-gradient(125deg, #0a654c, #0b7455 65%, #6d7922);
    border-radius: 22px;
}

.home-cta h2 {
    margin-top: 8px;
}

.home-cta p {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
}

.home-cta .btn {
    flex: 0 0 auto;
}

/* =========================================================
   GENERIC CONTENT PAGES
   ========================================================= */
.page-header {
    color: #ffffff;
    background:
        radial-gradient(circle at 88% 15%, rgba(226, 181, 47, 0.22), transparent 24%),
        linear-gradient(130deg, #07513d, #0b6b4f 66%, #546d2a);
}

.page-header .hero-kicker {
    color: #f4d56f;
}

.page-header p {
    color: rgba(255, 255, 255, 0.74);
}

.catalog-toolbar,
.content-card,
.guide-menu,
.auth-card {
    background: #ffffff;
    border: 1px solid var(--sihaki-border);
    border-radius: 20px;
    box-shadow: var(--sihaki-shadow-soft);
}

.catalog-toolbar {
    padding: 20px;
}

.form-label {
    margin-bottom: 7px;
    color: #4b5a55;
    font-size: 0.78rem;
    font-weight: 750;
}

.form-control,
.form-select {
    min-height: 47px;
    color: var(--sihaki-ink);
    background-color: #ffffff;
    border-color: #d8e2de;
    border-radius: 12px;
    font-size: 0.88rem;
}

textarea.form-control {
    min-height: 96px;
}

.form-control:focus,
.form-select:focus {
    border-color: #7eb09d;
    box-shadow: 0 0 0 0.22rem rgba(11, 107, 79, 0.1);
}

.table-responsive.bg-white,
.table-responsive.border {
    overflow: hidden;
    border-color: var(--sihaki-border) !important;
    border-radius: 18px !important;
    box-shadow: var(--sihaki-shadow-soft);
}

.table {
    --bs-table-bg: transparent;
}

.table thead th {
    padding: 15px 18px;
    color: #66736f;
    background: #f7faf9;
    border-bottom: 1px solid var(--sihaki-border);
    font-size: 0.69rem;
    font-weight: 850;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.table tbody td {
    padding: 16px 18px;
    border-color: #edf2f0;
    vertical-align: middle;
}

.table tbody tr:hover {
    background: #fbfdfc;
}

.badge {
    padding: 0.48em 0.72em;
    border-radius: 999px;
    font-weight: 750;
}

.guide-menu {
    padding: 10px;
}

.guide-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    color: var(--sihaki-ink);
    border-radius: 11px;
    font-size: 0.86rem;
    font-weight: 700;
}

.guide-link:hover,
.guide-link.active {
    color: var(--sihaki-primary-dark);
    background: var(--sihaki-primary-soft);
}

.content-card {
    padding: 28px;
}

.content-card hr {
    border-color: var(--sihaki-border);
}

.guide-body li {
    margin-bottom: 8px;
}

.auth-section {
    min-height: calc(100vh - 360px);
    background:
        radial-gradient(circle at 12% 18%, rgba(11, 107, 79, 0.07), transparent 24%),
        var(--sihaki-soft);
}

.auth-card {
    max-width: 470px;
    padding: 32px;
}

.auth-card-wide {
    max-width: 830px;
}

.auth-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sihaki-primary), #11815f);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(11, 107, 79, 0.18);
    font-size: 1.5rem;
}

.choice-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    height: 100%;
    padding: 16px;
    cursor: pointer;
    background: #ffffff;
    border: 1px solid var(--sihaki-border);
    border-radius: 14px;
    transition: border-color 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}

.choice-card:has(input:checked) {
    background: var(--sihaki-primary-soft);
    border-color: #8ebaa9;
    box-shadow: 0 8px 20px rgba(11, 107, 79, 0.06);
}

.choice-card span {
    display: flex;
    flex-direction: column;
}

.choice-card small {
    margin-top: 3px;
    color: var(--sihaki-muted);
}

/* =========================================================
   FOOTER
   ========================================================= */
.sihaki-footer {
    margin-top: 48px;
    color: #ffffff;
    background: #071d17;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

.footer-brand-symbol {
    width: 40px;
    height: 40px;
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-brand div {
    display: flex;
    flex-direction: column;
}

.footer-brand strong {
    font-size: 1rem;
    font-weight: 850;
}

.footer-brand small {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.66rem;
}

.footer-description {
    max-width: 460px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.83rem;
}

.sihaki-footer h6 {
    margin-bottom: 14px;
    font-size: 0.78rem;
    font-weight: 800;
}

.sihaki-footer a:not(.btn) {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
}

.sihaki-footer a:not(.btn):hover {
    color: #ffffff;
}

.btn-footer-outline {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-footer-outline:hover {
    color: #071d17;
    background: #ffffff;
    border-color: #ffffff;
}

.footer-bottom {
    color: rgba(255, 255, 255, 0.46);
    background: rgba(0, 0, 0, 0.11);
    border-top: 1px solid rgba(255, 255, 255, 0.055);
    font-size: 0.72rem;
}

/* =========================================================
   SWEETALERT
   ========================================================= */
.swal2-popup {
    border-radius: 20px !important;
    font-family: inherit !important;
}

.swal2-title {
    color: var(--sihaki-ink) !important;
    font-size: 1.35rem !important;
    font-weight: 850 !important;
}

.swal2-html-container {
    color: var(--sihaki-muted) !important;
    font-size: 0.9rem !important;
}

.swal2-confirm,
.swal2-cancel {
    min-width: 92px;
    border-radius: 11px !important;
    font-weight: 750 !important;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1199.98px) {
    .home-hero h1 {
        font-size: clamp(2.6rem, 5.4vw, 4.3rem);
    }
}

@media (max-width: 991.98px) {
    .sihaki-navbar {
        min-height: 68px;
    }

    .navbar-collapse {
        margin-top: 14px;
        padding: 14px;
        background: #ffffff;
        border: 1px solid var(--sihaki-border);
        border-radius: 16px;
        box-shadow: var(--sihaki-shadow);
    }

    .navbar-actions {
        align-items: stretch;
        flex-direction: column;
        margin-top: 10px;
    }

    .hero-visual {
        min-height: 310px;
        margin: 0 auto;
    }

    .home-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .py-lg-6 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    .home-section {
        padding: 52px 0;
    }

    .home-hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .hero-search {
        align-items: stretch;
        flex-wrap: wrap;
        padding: 10px;
    }

    .hero-search > i {
        display: none;
    }

    .hero-search input {
        flex: 1 1 100%;
        padding: 9px 8px;
    }

    .hero-search .btn {
        width: 100%;
    }

    .section-title-row {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .home-cta {
        padding: 28px;
    }

    .auth-card {
        padding: 24px;
    }
}

@media (max-width: 575.98px) {
    .sihaki-brand-copy small {
        display: none;
    }

    .hero-visual {
        min-height: 260px;
    }

    .hero-visual-sheet {
        top: 38px;
        right: 4%;
        width: 88%;
    }

    .hero-float-right {
        right: 0;
    }

    .hero-visual-badge {
        right: 75px;
    }
}
