/* ============================================================
   HUNIAN KAMI - Public (Tenant/Owner-facing) CSS
   Palette: Teal/Blue (design-system/MASTER.md)
   Fonts: Outfit (heading), Work Sans (body)
   ============================================================ */

:root {
    --hk-primary: #0F766E;       /* Trust Teal */
    --hk-secondary: #14B8A6;     /* Light Teal */
    --hk-accent: #0369A1;        /* Blue */
    --hk-bg: #F0FDFA;            /* Mint Light */
    --hk-fg: #134E4A;            /* Dark Teal */
    --hk-danger: #DC2626;
    --hk-warning: #F59E0B;
    --hk-success: #10B981;
    --hk-gray-50: #F9FAFB;
    --hk-gray-100: #F3F4F6;
    --hk-gray-200: #E5E7EB;
    --hk-gray-400: #9CA3AF;
    --hk-gray-600: #4B5563;
    --hk-gray-800: #1F2937;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body.hk-public {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--hk-gray-800);
    background: #fff;
}

body.hk-public h1, body.hk-public h2, body.hk-public h3, body.hk-public h4, body.hk-public h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    line-height: 1.25;
    color: var(--hk-fg);
}

body.hk-public a { color: var(--hk-primary); text-decoration: none; }
body.hk-public a:hover { color: var(--hk-accent); }

.hk-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.hk-header {
    background: #fff;
    border-bottom: 1px solid var(--hk-gray-200);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.hk-header-inner { display: flex; align-items: center; justify-content: space-between; }
.hk-logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.hk-logo-link:hover { opacity: 0.85; }
.hk-logo { display: flex; align-items: center; gap: 10px; font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 700; color: var(--hk-fg); }
.hk-logo-badge {
    background: linear-gradient(135deg, var(--hk-primary), var(--hk-secondary));
    color: #fff;
    width: 36px; height: 36px; border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 18px;
}
.hk-nav { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.hk-nav > a { color: var(--hk-gray-600); font-weight: 500; }
.hk-nav > a:hover { color: var(--hk-primary); }
.hk-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 20px; border-radius: 8px; font-weight: 600;
    border: none; cursor: pointer; font-size: 14px;
    transition: all 0.15s;
    text-decoration: none;
}
/* Scoped to .hk-nav .hk-btn to beat .hk-nav a specificity (0,1,1) */
.hk-nav .hk-btn-primary,
.hk-btn-primary { background: var(--hk-primary); color: #fff; }
.hk-nav .hk-btn-primary:hover,
.hk-btn-primary:hover { background: var(--hk-accent); color: #fff; }
.hk-nav .hk-btn-outline,
.hk-btn-outline { background: #fff; color: var(--hk-primary); border: 1.5px solid var(--hk-primary); }
.hk-nav .hk-btn-outline:hover,
.hk-btn-outline:hover { background: var(--hk-primary); color: #fff; }

/* ===== HEADER RESPONSIVE (tablet/mobile) ===== */
@media (max-width: 1024px) {
    .hk-nav { gap: 16px; }
    .hk-nav .hk-btn { padding: 8px 14px; font-size: 13px; }
}
@media (max-width: 860px) {
    .hk-header-inner { flex-wrap: wrap; row-gap: 12px; }
    .hk-nav { gap: 10px; justify-content: flex-end; flex: 1 1 100%; }
    .hk-nav > a { font-size: 14px; }
}
@media (max-width: 520px) {
    .hk-nav { gap: 8px; }
    .hk-nav > a { display: none; }
    .hk-nav .hk-nav-dropdown { margin-right: auto; }
    .hk-nav .hk-btn { padding: 8px 12px; font-size: 13px; }
}

/* ===== HERO ===== */
.hk-hero {
    background: linear-gradient(135deg, var(--hk-bg) 0%, #DCFCE7 100%);
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hk-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 16px;
}
.hk-hero p {
    font-size: 18px;
    color: var(--hk-gray-600);
    margin-bottom: 40px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.hk-search-box {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 30px rgba(15, 118, 110, 0.12);
    display: flex;
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.hk-search-box input {
    flex: 1 1 150px;
    padding: 14px 16px;
    border: 1.5px solid var(--hk-gray-200);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--hk-gray-800);
    background: var(--hk-gray-50);
}
.hk-search-box input:focus {
    outline: none;
    border-color: var(--hk-primary);
    background: #fff;
}

/* ===== UNIFIED SELECT (native + custom chevron) =====
   Apply class="hk-select" to every <select> in public pages.
   Variants: .hk-select-lg (hero), .hk-select-sm (compact).
   RTL: chevron auto-flip via body.hk-rtl / [dir=rtl]. */
.hk-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    padding: 10px 36px 10px 12px;
    border: 1.5px solid var(--hk-gray-200);
    border-radius: 8px;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23134E4A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    font-family: inherit;
    font-size: 14px;
    color: var(--hk-gray-800);
    cursor: pointer;
    line-height: 1.4;
}
.hk-select:focus {
    outline: none;
    border-color: var(--hk-primary);
}
.hk-select:disabled {
    background-color: var(--hk-gray-50);
    color: var(--hk-gray-600);
    cursor: not-allowed;
}
.hk-select-lg {
    flex: 1 1 150px;
    padding: 14px 44px 14px 16px;
    border-radius: 10px;
    font-size: 15px;
    background-color: var(--hk-gray-50);
    background-position: right 16px center;
}
.hk-select-lg:focus { background-color: #fff; }
.hk-select-sm {
    padding: 8px 32px 8px 12px;
    font-size: 13px;
    border-radius: 8px;
    width: auto;
}
/* RTL: chevron flip to the left */
html[dir="rtl"] .hk-select,
body.hk-rtl .hk-select {
    padding: 10px 12px 10px 36px;
    background-position: left 12px center;
}
html[dir="rtl"] .hk-select-lg,
body.hk-rtl .hk-select-lg {
    padding: 14px 16px 14px 44px;
    background-position: left 16px center;
}
html[dir="rtl"] .hk-select-sm,
body.hk-rtl .hk-select-sm {
    padding: 8px 12px 8px 32px;
}
.hk-search-box button {
    padding: 14px 28px;
    background: var(--hk-primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    transition: background 0.15s;
}
.hk-search-box button:hover { background: var(--hk-accent); }

/* ===== SECTION ===== */
.hk-section { padding: 60px 0; }
.hk-section-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 32px; gap: 20px; flex-wrap: wrap;
}
.hk-section-head h2 { font-size: 30px; margin-bottom: 4px; }
.hk-section-head p { color: var(--hk-gray-600); }

/* ===== LISTING GRID ===== */
.hk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.hk-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.hk-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.15);
    color: inherit;
}
.hk-card-photo {
    aspect-ratio: 4/3;
    background: var(--hk-gray-100) center/cover no-repeat;
    position: relative;
}
.hk-card-badge {
    position: absolute; top: 12px; left: 12px;
    padding: 4px 10px;
    background: rgba(15, 118, 110, 0.95);
    color: #fff;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hk-card-body { padding: 16px; }
.hk-card-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: var(--hk-fg);
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hk-card-location { color: var(--hk-gray-600); font-size: 13px; margin-bottom: 8px; }
.hk-card-specs { display: flex; gap: 14px; font-size: 13px; color: var(--hk-gray-600); margin-bottom: 12px; }
.hk-card-price {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--hk-primary);
}
.hk-card-price span { font-size: 13px; color: var(--hk-gray-600); font-weight: 400; }

/* ===== AREA GRID ===== */
.hk-area-card {
    background: linear-gradient(135deg, var(--hk-bg), #fff);
    border: 1.5px solid var(--hk-gray-200);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.2s;
}
.hk-area-card:hover {
    border-color: var(--hk-primary);
    background: linear-gradient(135deg, #fff, var(--hk-bg));
    transform: translateY(-2px);
}
.hk-area-card h3 { font-size: 18px; margin-bottom: 4px; }
.hk-area-card p { color: var(--hk-gray-600); font-size: 13px; }

/* ===== DETAIL PAGE ===== */
.hk-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 32px;
}
.hk-gallery-main {
    grid-row: 1 / 3;
    background: var(--hk-gray-100) center/cover no-repeat;
}
.hk-gallery-thumb {
    background: var(--hk-gray-100) center/cover no-repeat;
}
.hk-gallery-empty {
    display: flex; align-items: center; justify-content: center;
    background: var(--hk-gray-100);
    color: var(--hk-gray-400);
    font-size: 14px;
}

.hk-detail-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; }
@media (max-width: 900px) { .hk-detail-layout { grid-template-columns: 1fr; } }

.hk-detail-title { font-size: 32px; margin-bottom: 8px; }
.hk-detail-meta { color: var(--hk-gray-600); margin-bottom: 24px; }
.hk-detail-section {
    padding: 24px 0;
    border-bottom: 1px solid var(--hk-gray-200);
}
.hk-detail-section h3 { font-size: 22px; margin-bottom: 16px; }

.hk-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}
.hk-spec-item {
    background: var(--hk-gray-50);
    padding: 14px;
    border-radius: 10px;
    text-align: center;
}
.hk-spec-item-value { font-size: 22px; font-weight: 700; color: var(--hk-fg); font-family: 'Outfit', sans-serif; }
.hk-spec-item-label { color: var(--hk-gray-600); font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }

.hk-amenities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}
.hk-amenity {
    display: flex; align-items: center; gap: 10px;
    padding: 10px;
    background: var(--hk-gray-50);
    border-radius: 8px;
    font-size: 14px;
}

/* ===== BOOKING SIDEBAR ===== */
.hk-booking-box {
    position: sticky; top: 90px;
    background: #fff;
    border: 1.5px solid var(--hk-gray-200);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.hk-booking-price {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--hk-fg);
    margin-bottom: 4px;
}
.hk-booking-price-label { color: var(--hk-gray-600); font-size: 14px; }

.hk-breakdown { margin: 20px 0; }
.hk-breakdown-row {
    display: flex; justify-content: space-between;
    padding: 10px 0;
    color: var(--hk-gray-600);
    font-size: 14px;
}
.hk-breakdown-row.total {
    border-top: 1px solid var(--hk-gray-200);
    margin-top: 8px;
    padding-top: 14px;
    color: var(--hk-fg);
    font-weight: 700;
    font-size: 16px;
}

/* ===== FOOTER ===== */
.hk-footer {
    background: var(--hk-fg);
    color: #fff;
    padding: 50px 0 30px;
    margin-top: 60px;
}
.hk-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 30px; }
@media (max-width: 768px) { .hk-footer-grid { grid-template-columns: 1fr 1fr; } }
.hk-footer h4 { color: #fff; font-size: 15px; margin-bottom: 16px; font-weight: 600; }
.hk-footer ul { list-style: none; }
.hk-footer li { margin-bottom: 8px; }
.hk-footer a { color: rgba(255, 255, 255, 0.7); font-size: 14px; }
.hk-footer a:hover { color: #fff; }
.hk-footer-copyright { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 20px; text-align: center; color: rgba(255, 255, 255, 0.5); font-size: 13px; }

/* ===== AREA GUIDE ===== */
.hk-area-hero {
    background: linear-gradient(135deg, var(--hk-primary), var(--hk-secondary));
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.hk-area-hero h1 { color: #fff; font-size: 42px; margin-bottom: 10px; }
.hk-area-hero p { color: rgba(255, 255, 255, 0.9); max-width: 700px; margin: 0 auto; }

.hk-stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(15, 118, 110, 0.1);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}
.hk-stat { text-align: center; }
.hk-stat-value { font-family: 'Outfit', sans-serif; font-size: 26px; font-weight: 700; color: var(--hk-primary); }
.hk-stat-label { color: var(--hk-gray-600); font-size: 13px; margin-top: 4px; }

/* ===== REVIEWS ===== */
.hk-rating-overall {
    display: flex; align-items: center; gap: 16px;
    padding: 20px;
    background: var(--hk-bg);
    border-radius: 12px;
    margin-bottom: 20px;
}
.hk-rating-score { font-family: 'Outfit', sans-serif; font-size: 48px; font-weight: 700; color: var(--hk-primary); line-height: 1; }
.hk-rating-details { flex: 1; }

.hk-review { padding: 16px 0; border-bottom: 1px solid var(--hk-gray-200); }
.hk-review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.hk-review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--hk-gray-200) center/cover no-repeat; }
.hk-review-author { font-weight: 600; color: var(--hk-fg); }
.hk-review-meta { font-size: 12px; color: var(--hk-gray-600); }

/* ===== UTILS ===== */
.hk-empty { text-align: center; padding: 60px 20px; color: var(--hk-gray-400); }
.hk-badge { display: inline-block; padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.hk-badge-verified { background: rgba(16, 185, 129, 0.15); color: var(--hk-success); }

/* ===== CONTENT PAGES (TOS, Privacy, FAQ, About, How It Works) ===== */
.hk-page-hero {
    background: linear-gradient(135deg, var(--hk-primary), var(--hk-secondary));
    color: #fff;
    padding: 70px 0 60px;
    text-align: center;
}
.hk-page-hero h1 { color: #fff; font-size: 40px; margin-bottom: 10px; }
.hk-page-hero p { color: rgba(255,255,255,0.9); max-width: 720px; margin: 0 auto; font-size: 16px; }
.hk-page-hero .hk-meta-note { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.75); }

.hk-content-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    padding: 50px 0 70px;
}
@media (max-width: 900px) { .hk-content-layout { grid-template-columns: 1fr; } }

.hk-toc {
    position: sticky;
    top: 90px;
    align-self: start;
    background: var(--hk-gray-50);
    border: 1px solid var(--hk-gray-200);
    border-radius: 12px;
    padding: 20px;
}
.hk-toc h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--hk-gray-600);
    margin-bottom: 12px;
}
.hk-toc ol { list-style: none; counter-reset: toc; padding: 0; }
.hk-toc li { counter-increment: toc; margin-bottom: 8px; font-size: 14px; }
.hk-toc li::before { content: counter(toc) ". "; color: var(--hk-gray-400); }
.hk-toc a { color: var(--hk-gray-800); }
.hk-toc a:hover { color: var(--hk-primary); }

.hk-prose { max-width: 760px; }
.hk-prose h2 {
    font-size: 26px;
    margin: 36px 0 14px;
    padding-top: 10px;
    color: var(--hk-fg);
}
.hk-prose h2:first-child { margin-top: 0; }
.hk-prose h3 { font-size: 18px; margin: 22px 0 10px; color: var(--hk-fg); }
.hk-prose p { margin-bottom: 14px; color: var(--hk-gray-800); }
.hk-prose ul, .hk-prose ol { margin: 0 0 14px 22px; }
.hk-prose li { margin-bottom: 8px; }
.hk-prose strong { color: var(--hk-fg); font-weight: 600; }
.hk-prose .hk-callout {
    background: var(--hk-bg);
    border-left: 4px solid var(--hk-primary);
    padding: 16px 18px;
    border-radius: 8px;
    margin: 18px 0;
    font-size: 14px;
    color: var(--hk-fg);
}
.hk-prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 14px;
}
.hk-prose table th, .hk-prose table td {
    padding: 10px 12px;
    border: 1px solid var(--hk-gray-200);
    text-align: left;
}
.hk-prose table th { background: var(--hk-gray-50); font-weight: 600; color: var(--hk-fg); }

/* ===== FAQ ===== */
.hk-faq-group { margin-bottom: 36px; }
.hk-faq-group h2 { font-size: 22px; margin-bottom: 16px; color: var(--hk-fg); }
.hk-faq-item {
    border: 1px solid var(--hk-gray-200);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
}
.hk-faq-item summary {
    cursor: pointer;
    padding: 16px 18px;
    font-weight: 600;
    color: var(--hk-fg);
    font-family: 'Outfit', sans-serif;
    list-style: none;
    position: relative;
    padding-right: 44px;
}
.hk-faq-item summary::-webkit-details-marker { display: none; }
.hk-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: var(--hk-primary);
    line-height: 1;
}
.hk-faq-item[open] summary::after { content: "\2212"; }
.hk-faq-item[open] summary { border-bottom: 1px solid var(--hk-gray-200); }
.hk-faq-item .hk-faq-body { padding: 16px 18px; color: var(--hk-gray-800); font-size: 14px; line-height: 1.7; }
.hk-faq-item .hk-faq-body p { margin-bottom: 10px; }
.hk-faq-item .hk-faq-body ul { margin-left: 20px; }

/* ===== HOW IT WORKS ===== */
.hk-how-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--hk-gray-200);
}
.hk-how-section:last-child { border-bottom: none; }
.hk-how-section .hk-how-label {
    display: inline-block;
    padding: 4px 12px;
    background: var(--hk-bg);
    color: var(--hk-primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.hk-how-section h2 { font-size: 32px; margin-bottom: 12px; }
.hk-how-section > .hk-container > p { color: var(--hk-gray-600); max-width: 620px; margin-bottom: 36px; }

.hk-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.hk-step {
    background: #fff;
    border: 1px solid var(--hk-gray-200);
    border-radius: 14px;
    padding: 24px;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}
.hk-step:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(15, 118, 110, 0.1); }
.hk-step-num {
    position: absolute;
    top: -14px; left: 20px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--hk-primary);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
}
.hk-step-icon { font-size: 32px; margin-bottom: 10px; margin-top: 8px; }
.hk-step h3 { font-size: 17px; margin-bottom: 8px; color: var(--hk-fg); }
.hk-step p { color: var(--hk-gray-600); font-size: 14px; line-height: 1.6; }

/* ===== ABOUT ===== */
.hk-about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 0;
    align-items: center;
}
@media (max-width: 900px) { .hk-about-split { grid-template-columns: 1fr; } }
.hk-about-split h2 { font-size: 30px; margin-bottom: 16px; }
.hk-about-split p { color: var(--hk-gray-600); margin-bottom: 12px; }

.hk-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 40px 0 60px;
}
.hk-value-card {
    background: #fff;
    border: 1px solid var(--hk-gray-200);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}
.hk-value-card-icon { font-size: 34px; margin-bottom: 10px; }
.hk-value-card h3 { font-size: 17px; margin-bottom: 8px; }
.hk-value-card p { color: var(--hk-gray-600); font-size: 14px; }

.hk-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    padding: 20px 0 40px;
}
.hk-team-card { text-align: center; }
.hk-team-avatar {
    width: 96px; height: 96px;
    border-radius: 50%;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, var(--hk-primary), var(--hk-secondary));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
}
.hk-team-card h4 { font-size: 16px; margin-bottom: 4px; }
.hk-team-card p { color: var(--hk-gray-600); font-size: 13px; }

.hk-contact-card {
    background: var(--hk-bg);
    border-radius: 16px;
    padding: 36px;
    text-align: center;
    margin: 40px 0;
}
.hk-contact-card h3 { font-size: 22px; margin-bottom: 12px; }
.hk-contact-card p { color: var(--hk-gray-600); margin-bottom: 6px; }
.hk-contact-card a { font-weight: 600; }

/* ===== CTA BLOCK ===== */
.hk-cta-block {
    background: linear-gradient(135deg, var(--hk-primary), var(--hk-accent));
    color: #fff;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
}
.hk-cta-block h3 { color: #fff; font-size: 24px; margin-bottom: 10px; }
.hk-cta-block p { color: rgba(255,255,255,0.9); margin-bottom: 20px; }
.hk-cta-block .hk-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #fff;
    color: var(--hk-primary);
    border-radius: 10px;
    font-weight: 600;
    border: none;
}
.hk-cta-block .hk-btn:hover { background: var(--hk-bg); color: var(--hk-primary); }

/* ============================================================
 * HOME V2 - Sync Mobile (Plan 2)
 * ============================================================ */

/* ============================================================
 * UTILITY CLASSES (Plan 5) - reusable across public pages
 * ============================================================ */

/* Glassmorphism - translucent card with backdrop blur */
.hk-glass {
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.hk-glass-dark {
    background: rgba(19, 78, 74, 0.3);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.hk-glass-light {
    background: rgba(240, 253, 250, 0.6);
    border: 1.5px solid rgba(15, 118, 110, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
}

/* Gradient borders (frames teal → blue) */
.hk-gradient-border {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
}
.hk-gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0F766E 0%, #0369A1 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Section spacing utilities */
.hk-spacer-sm { height: 32px; }
.hk-spacer-md { height: 56px; }
.hk-spacer-lg { height: 80px; }

/* Screen-reader-only utility */
.hk-visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

/* Hero eyebrow */
.hk-hero-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.95);
    color: var(--hk-primary);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* Search button with icon */
.hk-search-box button svg { display: inline-block; vertical-align: -3px; margin-right: 6px; }

/* Popular searches chips */
.hk-popular-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.hk-popular-chips-label {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 600;
}
.hk-chip {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.5);
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.2s;
    text-decoration: none;
}
.hk-chip:hover {
    background: rgba(255,255,255,0.95);
    color: var(--hk-primary);
    transform: translateY(-1px);
}

/* Stats counter strip */
.hk-stats {
    background: #fff;
    padding: 48px 0;
    border-bottom: 1px solid var(--hk-gray-100);
}
.hk-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.hk-stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--hk-primary);
    line-height: 1.1;
    margin-bottom: 6px;
}
.hk-stat-label {
    color: var(--hk-gray-600);
    font-size: 14px;
    font-weight: 500;
}
@media (max-width: 640px) {
    .hk-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .hk-stats { padding: 32px 0; }
}

/* Categories slider (sync mobile) */
.hk-categories-section { padding: 56px 0 40px; }
.hk-categories {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 4px 0 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.hk-categories::-webkit-scrollbar { height: 6px; }
.hk-categories::-webkit-scrollbar-thumb { background: var(--hk-gray-200); border-radius: 3px; }
.hk-category {
    flex: 0 0 auto;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 12px;
    background: #fff;
    border: 1.5px solid var(--hk-gray-100);
    border-radius: 16px;
    text-decoration: none;
    color: var(--hk-fg);
    transition: all 0.2s;
    scroll-snap-align: start;
}
.hk-category:hover {
    border-color: var(--hk-primary);
    color: var(--hk-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(15, 118, 110, 0.12);
}
.hk-category-icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    background: var(--hk-bg);
    color: var(--hk-primary);
    border-radius: 14px;
    transition: all 0.2s;
}
.hk-category:hover .hk-category-icon { background: var(--hk-primary); color: #fff; }
.hk-category-label {
    font-size: 13px;
    font-weight: 600;
}

/* Trust Banner (sync mobile) */
.hk-trust-banner-section { padding: 32px 0; }
.hk-trust-banner {
    background: linear-gradient(135deg, var(--hk-primary) 0%, var(--hk-secondary, #14B8A6) 100%);
    border-radius: 20px;
    padding: 32px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    box-shadow: 0 12px 30px rgba(15, 118, 110, 0.25);
}
.hk-trust-banner-icon {
    flex: 0 0 auto;
    width: 80px; height: 80px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    color: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hk-trust-banner-body { flex: 1 1 320px; }
.hk-trust-banner-body h3 {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}
.hk-trust-banner-body p {
    color: rgba(255,255,255,0.92);
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}
.hk-trust-banner-cta {
    flex: 0 0 auto;
    background: rgba(255,255,255,0.95);
    color: var(--hk-primary);
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.hk-trust-banner-cta:hover {
    background: #fff;
    color: var(--hk-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
@media (max-width: 640px) {
    .hk-trust-banner { padding: 24px; gap: 18px; }
    .hk-trust-banner-icon { width: 64px; height: 64px; }
    .hk-trust-banner-cta { width: 100%; text-align: center; }
}

/* Value Prop refactor (SVG icons, not emoji) */
.hk-section-head-center { text-align: center; }
.hk-section-head-center > div { margin: 0 auto; }
.hk-valueprop-section { background: linear-gradient(180deg, var(--hk-bg) 0%, #fff 100%); }
.hk-valueprop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.hk-valueprop {
    background: #fff;
    border: 1.5px solid var(--hk-gray-100);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.2s;
}
.hk-valueprop:hover {
    border-color: var(--hk-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 118, 110, 0.12);
}
.hk-valueprop-icon {
    width: 64px; height: 64px;
    display: flex; align-items: center; justify-content: center;
    background: var(--hk-bg);
    color: var(--hk-primary);
    border-radius: 16px;
    margin: 0 auto 16px;
}
.hk-valueprop h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--hk-fg);
    margin-bottom: 8px;
}
.hk-valueprop p {
    color: var(--hk-gray-600);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

/* Soft section background for alternating rhythm */
.hk-section-soft { background: var(--hk-gray-50); }

/* Header dropdown (kemitraan menu) */
.hk-nav-dropdown { position: relative; display: inline-block; }
.hk-nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: var(--hk-gray-600);
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    padding: 8px 0;
    font-family: inherit;
}
.hk-nav-dropdown-toggle:hover { color: var(--hk-primary); }
.hk-nav-dropdown-toggle svg { transition: transform 0.2s; }
.hk-nav-dropdown:hover .hk-nav-dropdown-toggle svg,
.hk-nav-dropdown:focus-within .hk-nav-dropdown-toggle svg { transform: rotate(180deg); }
.hk-nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 240px;
    background: #fff;
    border: 1px solid var(--hk-gray-100);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 100;
}
.hk-nav-dropdown:hover .hk-nav-dropdown-menu,
.hk-nav-dropdown:focus-within .hk-nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.hk-nav-dropdown-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--hk-fg);
    text-decoration: none;
    transition: background 0.15s;
}
.hk-nav-dropdown-menu a:hover { background: var(--hk-bg); color: var(--hk-primary); }
.hk-nav-dropdown-menu a strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}
.hk-nav-dropdown-menu a span {
    display: block;
    font-size: 12px;
    color: var(--hk-gray-600);
}
.hk-nav-dropdown-menu a em {
    font-style: normal;
    color: #B45309;
    font-weight: 600;
}
@media (max-width: 768px) {
    .hk-nav-dropdown { display: none; }
}

/* ============================================================
 * LOCALE SWITCHER + RTL SUPPORT (Plan 4)
 * ============================================================ */
.hk-lang-switcher .hk-nav-dropdown-toggle {
    gap: 8px;
    padding: 6px 12px;
    border: 1.5px solid var(--hk-gray-200);
    border-radius: 999px;
    background: #fff;
    color: var(--hk-fg);
    font-size: 13px;
    font-weight: 600;
}
.hk-lang-switcher .hk-nav-dropdown-toggle:hover {
    border-color: var(--hk-primary);
    color: var(--hk-primary);
}
.hk-lang-switcher .hk-lang-current {
    letter-spacing: 0.5px;
    font-weight: 700;
}
.hk-lang-menu { min-width: 220px; }
.hk-lang-menu a.active {
    background: var(--hk-bg);
    color: var(--hk-primary);
    position: relative;
}
.hk-lang-menu a.active::after {
    content: '';
    position: absolute;
    top: 50%; right: 14px;
    transform: translateY(-50%);
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--hk-primary);
}
body.hk-rtl .hk-lang-menu a.active::after { right: auto; left: 14px; }

/* RTL support (Arabic) */
body.hk-rtl { direction: rtl; text-align: right; }
body.hk-rtl .hk-header-inner,
body.hk-rtl .hk-nav,
body.hk-rtl .hk-owner-hero-cta,
body.hk-rtl .hk-owner-hero-meta,
body.hk-rtl .hk-owner-final-cta-buttons,
body.hk-rtl .hk-popular-chips { flex-direction: row-reverse; }
body.hk-rtl .hk-search-box button svg,
body.hk-rtl .hk-owner-cta-primary svg,
body.hk-rtl .hk-owner-cta-secondary svg { transform: scaleX(-1); }
body.hk-rtl .hk-owner-hero-card-1 { right: auto; left: 40px; }
body.hk-rtl .hk-owner-hero-card-2 { left: auto; right: 0; }
body.hk-rtl .hk-owner-hero-card-3 { right: auto; left: 20px; }
body.hk-rtl .hk-owner-hero-meta-item,
body.hk-rtl .hk-chip,
body.hk-rtl .hk-owner-testimonial figcaption { flex-direction: row-reverse; }

/* ============================================================
 * OWNER LANDING V2 - Full (Plan 3)
 * ============================================================ */

/* Owner Hero (split grid with floating cards) */
.hk-owner-hero {
    position: relative;
    background: linear-gradient(135deg, #0F766E 0%, #14B8A6 50%, #0EA5E9 100%);
    color: #fff;
    padding: 80px 0 100px;
    overflow: hidden;
}
.hk-owner-hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.hk-owner-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hk-owner-hero-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}
.hk-owner-hero-content h1 span {
    background: linear-gradient(90deg, #FFFFFF 0%, #CCFBF1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.hk-owner-hero-content > p {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255,255,255,0.95);
    margin-bottom: 32px;
    max-width: 540px;
}
.hk-owner-hero-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.95);
    color: #0F766E;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.hk-owner-hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.hk-owner-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #0F766E;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.hk-owner-cta-primary:hover {
    background: #CCFBF1;
    color: #0F766E;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.hk-owner-cta-primary-large {
    padding: 18px 36px;
    font-size: 17px;
    border-radius: 12px;
}
.hk-owner-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    padding: 14px 24px;
    border-radius: 10px;
    border: 1.5px solid rgba(255,255,255,0.95);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
}
.hk-owner-cta-secondary:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: #fff;
}
.hk-owner-hero-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.hk-owner-hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.95);
    font-size: 14px;
    font-weight: 500;
}
.hk-owner-hero-meta-item svg { color: #CCFBF1; flex-shrink: 0; }

/* Hero floating cards (right column) */
.hk-owner-hero-visual {
    position: relative;
    height: 400px;
}
.hk-owner-hero-card {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.18);
    min-width: 260px;
    animation: hkOwnerCardFloat 5s ease-in-out infinite;
}
.hk-owner-hero-card-1 { top: 40px; right: 40px; animation-delay: 0s; }
.hk-owner-hero-card-2 { top: 160px; left: 0; animation-delay: 1.5s; }
.hk-owner-hero-card-3 { top: 280px; right: 20px; animation-delay: 3s; }
@keyframes hkOwnerCardFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
.hk-owner-hero-card-icon {
    flex: 0 0 auto;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: #F0FDFA;
    color: #0F766E;
    border-radius: 12px;
}
.hk-owner-hero-card-body { flex: 1; min-width: 0; }
.hk-owner-hero-card-label {
    font-size: 11px;
    font-weight: 600;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 2px;
}
.hk-owner-hero-card-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #134E4A;
    line-height: 1.2;
}
.hk-owner-hero-card-name {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #134E4A;
    line-height: 1.2;
    margin-bottom: 2px;
}
.hk-owner-hero-card-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #475569;
    margin-top: 2px;
}
.hk-owner-hero-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #16A34A;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
}

@media (max-width: 968px) {
    .hk-owner-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hk-owner-hero-visual { height: auto; display: grid; gap: 14px; }
    .hk-owner-hero-card {
        position: static;
        min-width: 0;
        width: 100%;
        animation: none;
    }
}
@media (max-width: 640px) {
    .hk-owner-hero { padding: 56px 0 72px; }
    .hk-owner-hero-cta { flex-direction: column; align-items: stretch; }
    .hk-owner-hero-cta a { justify-content: center; }
}

/* Stats strip below hero */
.hk-owner-stats {
    background: #fff;
    padding: 40px 0;
    border-bottom: 1px solid #E2E8F0;
}
.hk-owner-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.hk-owner-stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 700;
    color: #0F766E;
    line-height: 1.1;
    margin-bottom: 4px;
}
.hk-owner-stat-label {
    color: #475569;
    font-size: 13px;
    font-weight: 500;
}
@media (max-width: 640px) {
    .hk-owner-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* Owner sections */
.hk-owner-section {
    padding: 72px 0;
    background: #fff;
}
.hk-owner-section-soft { background: #F0FDFA; }
.hk-owner-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}
.hk-owner-section-eyebrow {
    display: inline-block;
    background: #F0FDFA;
    color: #0F766E;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.hk-owner-section-head h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 700;
    color: #134E4A;
    line-height: 1.2;
    margin-bottom: 14px;
}
.hk-owner-section-head p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

/* Value prop grid */
.hk-owner-valueprop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.hk-owner-valueprop {
    background: #fff;
    border: 1.5px solid #E2E8F0;
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.25s;
}
.hk-owner-valueprop:hover {
    border-color: #0F766E;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 118, 110, 0.12);
}
.hk-owner-section-soft .hk-owner-valueprop { background: #fff; }
.hk-owner-valueprop-icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #F0FDFA 0%, #CCFBF1 100%);
    color: #0F766E;
    border-radius: 14px;
    margin-bottom: 16px;
}
.hk-owner-valueprop h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #134E4A;
    margin-bottom: 8px;
}
.hk-owner-valueprop p {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Steps (Cara Kerja) */
.hk-owner-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    counter-reset: owner-step;
}
.hk-owner-step {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1.5px solid #CCFBF1;
    position: relative;
    transition: all 0.25s;
}
.hk-owner-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 118, 110, 0.12);
}
.hk-owner-step-number {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #0F766E 0%, #14B8A6 100%);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    border-radius: 14px;
    margin-bottom: 16px;
    box-shadow: 0 6px 16px rgba(15, 118, 110, 0.3);
}
.hk-owner-step h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #134E4A;
    margin-bottom: 8px;
}
.hk-owner-step p {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Pricing section */
.hk-owner-pricing {
    background: linear-gradient(135deg, #134E4A 0%, #0F766E 100%);
    border-radius: 28px;
    padding: 56px 40px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hk-owner-pricing::before {
    content: '';
    position: absolute;
    top: -50%; left: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.3) 0%, transparent 70%);
    pointer-events: none;
}
.hk-owner-pricing > * { position: relative; z-index: 1; }
.hk-owner-pricing-badge {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hk-owner-pricing h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 32px;
}
.hk-owner-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}
.hk-owner-pricing-item {
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 24px 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hk-owner-pricing-value {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}
.hk-owner-pricing-label {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 500;
}
.hk-owner-pricing-note {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Testimonials */
.hk-owner-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.hk-owner-testimonial {
    background: #fff;
    border: 1.5px solid #CCFBF1;
    border-radius: 16px;
    padding: 28px 24px;
    margin: 0;
    transition: all 0.25s;
}
.hk-owner-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 118, 110, 0.12);
}
.hk-owner-testimonial-rating {
    display: flex;
    gap: 4px;
    color: #F59E0B;
    margin-bottom: 14px;
}
.hk-owner-testimonial blockquote {
    font-size: 14px;
    line-height: 1.65;
    color: #1E293B;
    margin: 0 0 20px;
    padding: 0;
    font-style: normal;
}
.hk-owner-testimonial figcaption {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #E2E8F0;
}
.hk-owner-testimonial-avatar {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: #0F766E;
    color: #fff;
    border-radius: 50%;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}
.hk-owner-testimonial-name {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #134E4A;
}
.hk-owner-testimonial-role {
    font-size: 12px;
    color: #64748B;
    margin-top: 2px;
}

/* FAQ accordion */
.hk-owner-faq {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}
.hk-owner-faq-item {
    background: #fff;
    border: 1.5px solid #E2E8F0;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.hk-owner-faq-item[open] {
    border-color: #0F766E;
    box-shadow: 0 4px 16px rgba(15, 118, 110, 0.08);
}
.hk-owner-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 24px;
    cursor: pointer;
    list-style: none;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #134E4A;
    user-select: none;
}
.hk-owner-faq-item summary::-webkit-details-marker { display: none; }
.hk-owner-faq-item summary svg {
    flex-shrink: 0;
    color: #0F766E;
    transition: transform 0.2s;
}
.hk-owner-faq-item[open] summary svg { transform: rotate(180deg); }
.hk-owner-faq-item summary:hover { color: #0F766E; }
.hk-owner-faq-answer {
    padding: 0 24px 20px;
    color: #475569;
    font-size: 14px;
    line-height: 1.7;
}
.hk-owner-faq-answer p { margin: 0; }

/* Final CTA */
.hk-owner-final-cta { padding: 72px 0 96px; }
.hk-owner-final-cta-card {
    background: linear-gradient(135deg, #0369A1 0%, #0F766E 100%);
    border-radius: 28px;
    padding: 56px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(3, 105, 161, 0.25);
}
.hk-owner-final-cta-card::before {
    content: '';
    position: absolute;
    top: -40%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.hk-owner-final-cta-card > * { position: relative; z-index: 1; }
.hk-owner-final-cta-card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}
.hk-owner-final-cta-card > p {
    font-size: 17px;
    color: rgba(255,255,255,0.95);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hk-owner-final-cta-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.hk-owner-cta-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.5);
    text-underline-offset: 4px;
    transition: all 0.2s;
}
.hk-owner-cta-text:hover {
    color: #fff;
    text-decoration-color: #fff;
}
@media (max-width: 640px) {
    .hk-owner-pricing { padding: 40px 24px; }
    .hk-owner-final-cta-card { padding: 40px 24px; }
    .hk-owner-section { padding: 56px 0; }
    .hk-owner-section-head { margin-bottom: 36px; }
}

/* Focus-visible rings (WCAG 2.4.7) - applies to all public pages */
body.hk-public a:focus-visible,
body.hk-public button:focus-visible,
body.hk-public input:focus-visible,
body.hk-public textarea:focus-visible,
body.hk-public select:focus-visible,
body.hk-public [tabindex]:focus-visible {
    outline: 2px solid #0369A1;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Reduced motion (WCAG 2.3.3) */
@media (prefers-reduced-motion: reduce) {
    body.hk-public *,
    body.hk-public *::before,
    body.hk-public *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
