
/* ============================================================
   HOMEPAGE.CSS — HEALTHY KNOTS PRO
   ============================================================ */
   html {
    scroll-behavior: smooth;
}

.hk-home-main {
    background:
        radial-gradient(circle at top left, rgba(34, 197, 94, 0.10), transparent 34%),
        linear-gradient(180deg, #fbfdfb 0%, #f7faf8 100%);
}

.hk-home-container {
    width: min(1280px, calc(100% - clamp(32px, 5vw, 48px)));
    margin: 0 auto;
}
.hk-btn:focus-visible,
.hk-intent-item:focus-visible,
.hk-knowledge-card-link:focus-visible,
.hk-section-footer a:focus-visible {
    outline: 3px solid rgba(22, 101, 52, 0.45);
    outline-offset: 4px;
}


.hk-home-hero {
    padding: clamp(64px, 9vw, 110px) 0 clamp(36px, 5vw, 70px);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
/* ============================================================
   HERO AMBIENT ILLUSTRATION
   ============================================================ */

.hk-home-hero::before {
    content: "";

    position: absolute;
    inset: auto auto -120px -120px;

    width: 420px;
    height: 420px;

    border-radius: 46% 54% 61% 39% / 44% 42% 58% 56%;

    background:
        radial-gradient(
            circle at 30% 30%,
            rgba(134, 239, 172, 0.28),
            rgba(16, 185, 129, 0.08) 58%,
            transparent 72%
        );

    filter: blur(12px);

    z-index: -1;

    opacity: 0.95;
}

.hk-home-hero::after {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -160px;
    top: -40px;

    border-radius: 50%;

    border:
        1px solid rgba(22, 101, 52, 0.08);

    z-index: -1;

    opacity: 0.45;
}


.hk-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
    gap: clamp(32px, 6vw, 72px);
    align-items: center;
}

.hk-soft-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.10);
    color: #166534;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.hk-hero-content h1 {
    margin: 0 0 24px;

    max-width: 780px;

    font-size: clamp(3rem, 5.8vw, 5.4rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    font-weight: 800;

    text-wrap: balance;
    color: #166534;

    background: linear-gradient(
    135deg,
    #166534 0%,
    #16a34a 42%,
    #14532d 100%
);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



.hk-hero-content p {
    max-width: 620px;
    margin: 0;

    font-size: clamp(1.05rem, 2vw, 1.18rem);
    line-height: 1.8;
    color: #52645c;
}

.hk-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 22px;

    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.hk-btn:hover {
    transform: translateY(-2px);
}

.hk-btn-primary {
    background: #166534;
    color: #fff;

    box-shadow: 0 18px 38px rgba(22, 101, 52, 0.18);
}

.hk-btn-secondary {
    background: #fff;
    color: #166534;

    border: 1px solid rgba(22, 101, 52, 0.12);
}

.hk-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.hk-trust-row span {
    padding: 8px 12px;
    border-radius: 999px;

    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(15, 23, 42, 0.06);

    color: #64748b;
    font-size: 0.85rem;
    font-weight: 700;
}

/* ============================================================
   HERO RIGHT CARD
   ============================================================ */

.hk-hero-card {
    position: relative;

    padding: clamp(28px, 5vw, 44px);

    border-radius: 30px;

    background:
        linear-gradient(145deg, rgba(255,255,255,0.96), rgba(240,253,244,0.92));

    border: 1px solid rgba(22, 101, 52, 0.10);

    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);

    overflow: hidden;
}

.hk-hero-card::before {
    content: "";

    position: absolute;
    top: -60px;
    right: -60px;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: rgba(34, 197, 94, 0.10);
}

.hk-card-kicker {
    display: inline-block;
    margin-bottom: 24px;

    color: #15803d;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.hk-intent-list {
    display: grid;
    gap: 12px;
}

.hk-intent-item {
    display: block;

    padding: 16px 18px;

    border-radius: 18px;

    background: rgba(255,255,255,0.88);

    color: #334155;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
line-height: 1.55;

    border: 1px solid rgba(15, 23, 42, 0.05);

    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.hk-intent-item:hover {
    transform: translateY(-1px);

border-color: rgba(22, 101, 52, 0.12);

background: rgba(255,255,255,0.96);

box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 860px) {

    .hk-hero-grid {
        grid-template-columns: 1fr;
    }

    .hk-home-hero {
        padding-top: 48px;
    }
.hk-home-hero::before {
    width: 260px;
    height: 260px;
}

.hk-home-hero::after {
    display: none;
}

    .hk-hero-content h1 {
        letter-spacing: -0.05em;
    }
.hk-trust-row {
    display: none;
}
    .hk-hero-card {
        border-radius: 24px;
    }

    .hk-intent-item {
        padding: 15px 16px;
    }
}

/* ==========================================================
   READ, REFLECT, UNDERSTAND
   ========================================================== */

.hk-home-resources {
    padding: clamp(32px, 5vw, 64px) 0 clamp(72px, 10vw, 120px);
}

.hk-section-heading {
     max-width: 920px;
    margin-bottom: clamp(34px, 5vw, 52px);
}

.hk-section-kicker {
    display: inline-flex;
    align-items: center;

    margin-bottom: 18px;
    padding: 8px 14px;

    border-radius: 999px;

    background: rgba(22, 163, 74, 0.08);

    color: #166534;
    font-size: 0.84rem;
    font-weight: 700;
}

.hk-section-heading h2 {
    margin: 0 0 18px;

    max-width: 720px;

    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.05em;

    color: #0f172a;

    text-wrap: balance;
}

.hk-section-heading p {
    margin: 0;

    max-width: 700px;

    color: #52645c;
    font-size: clamp(1rem, 1.8vw, 1.08rem);
    line-height: 1.9;
}

/* ==========================================================
   KNOWLEDGE GRID
   ========================================================== */

.hk-knowledge-grid {
    display: grid;
    

    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));

    gap: clamp(20px, 3vw, 30px);
    margin-top: 12px;
    align-items: stretch;
}

.hk-knowledge-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.98),
            rgba(247,250,248,0.92)
        );
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
        display: flex;
flex-direction: column;
text-decoration: none;
color: inherit;
}

.hk-knowledge-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at top left,
            rgba(34, 197, 94, 0.06),
            transparent 40%
        );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hk-knowledge-card:hover::before {
    opacity: 1;
}

.hk-knowledge-card:hover {
    transform: translateY(-2px);

    border-color: rgba(22, 163, 74, 0.12);

    box-shadow:
        0 24px 48px rgba(15, 23, 42, 0.07);
}
.hk-knowledge-card:not(.hk-knowledge-featured) .hk-knowledge-thumb {
    aspect-ratio: 4 / 3;
}

.hk-knowledge-card {
    cursor: pointer;
}





.hk-knowledge-thumb {
    display: block;

    aspect-ratio: 16 / 9;

    overflow: hidden;
}

.hk-knowledge-thumb img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.hk-knowledge-card:hover .hk-knowledge-thumb img {
    transform: scale(1.03);
}
.hk-knowledge-card:hover .hk-fallback-mark {
    transform:
        rotate(0deg)
        translateY(-2px);
}

/* ==========================================================
   FEATURED RESOURCE CARD
   ========================================================== */

@media (min-width: 980px) {

    .hk-knowledge-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hk-knowledge-featured {
        grid-column: span 2;
        
    }

    .hk-knowledge-featured .hk-knowledge-thumb {
    aspect-ratio: 16 / 9;
}

    .hk-knowledge-featured .hk-knowledge-body {
    padding: clamp(24px, 4vw, 32px);
}

    .hk-knowledge-featured h3 {
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        line-height: 1.15;

        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

 .hk-knowledge-featured p {
    font-size: 1.02rem;
    -webkit-line-clamp: 5;
    line-clamp: 5;
}
}

.hk-knowledge-body {
    padding: clamp(22px, 4vw, 30px);
    display: flex;
    flex-direction: column;
}

.hk-knowledge-badge {
    display: inline-flex;
    align-items: center;

    margin-bottom: 18px;
    padding: 7px 12px;

    border-radius: 999px;

    background: rgba(22, 163, 74, 0.08);

    color: #15803d;
    font-size: 0.8rem;
    font-weight: 700;

}
.hk-knowledge-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;
}

.hk-knowledge-meta .hk-knowledge-badge {
    margin-bottom: 0;
}

.hk-reading-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: #64748b;
    font-size: 0.82rem;
    font-weight: 700;

    opacity: 0.9;
}

.hk-knowledge-body h3 {
    margin: 0 0 14px;

    font-size: clamp(1.2rem, 2vw, 1.45rem);
    line-height: 1.35;
    letter-spacing: -0.03em;

    text-wrap: balance;

    display: -webkit-box;

    line-clamp: 2;
    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;
}


.hk-knowledge-body p {
    margin: 0 0 24px;

    color: #64748b;
    line-height: 1.8;
}

.hk-knowledge-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: #166534;
    text-decoration: none;
    font-weight: 700;
    margin-top: 8px;
}

.hk-knowledge-link:hover {
    color: #14532d;
    text-decoration: underline;
}

.hk-section-footer {
    margin-top: 50px;
    text-align: center;
}

.hk-no-posts {
    color: #64748b;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 900px) {

    .hk-knowledge-grid {
        grid-template-columns: 1fr;
    }

}

@media (prefers-reduced-motion: no-preference) {

    .hk-home-hero::before {
        animation:
            hkHeroFloat 16s ease-in-out infinite;
    }

    .hk-home-hero::after {
        animation:
            hkHeroRotate 28s linear infinite;
    }
}

@keyframes hkHeroFloat {

    0%, 100% {
        transform:
            translate3d(0, 0, 0)
            rotate(0deg);
    }

    50% {
        transform:
            translate3d(18px, -12px, 0)
            rotate(6deg);
    }
}

@keyframes hkHeroRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
@media (prefers-reduced-motion: reduce) {
    .hk-btn,
    .hk-intent-item,
    .hk-knowledge-card,
    .hk-knowledge-thumb img {
        transition: none;
    }

    .hk-btn:hover,
    .hk-intent-item:hover,
    .hk-knowledge-card:hover,
    .hk-knowledge-card:hover .hk-knowledge-thumb img {
        transform: none;
    }
}
/* ============================================================
   KNOWLEDGE CARD CSS FALLBACK THUMB
   ============================================================ */

.hk-knowledge-thumb-fallback {
    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(circle at 25% 20%, rgba(134, 239, 172, 0.45), transparent 34%),
        radial-gradient(circle at 80% 30%, rgba(20, 184, 166, 0.18), transparent 32%),
        linear-gradient(135deg, #f0fdf4 0%, #ecfeff 100%);
}

.hk-fallback-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 18px;
    min-height: 58px;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.88),
            rgba(255,255,255,0.62)
        );

    border: 1px solid rgba(22, 101, 52, 0.08);

    color: #166534;

    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: -0.01em;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow:
        0 18px 42px rgba(22, 101, 52, 0.10);
        transform: rotate(-2deg);
}

/* ============================================================
   KNOWLEDGE HUB — COMPACT LAYOUT
   Used by: [hk_knowledge_hub layout="compact"]
   ============================================================ */

.hk-knowledge-layout-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(18px, 3vw, 28px);
}

.hk-knowledge-layout-compact .hk-knowledge-card {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 16px;
    padding: 14px;
    align-items: center;
}

.hk-knowledge-layout-compact .hk-knowledge-card.hk-knowledge-featured {
    grid-column: auto;
}

.hk-knowledge-layout-compact .hk-knowledge-thumb,
.hk-knowledge-layout-compact .hk-knowledge-featured .hk-knowledge-thumb {
    aspect-ratio: 1 / 1;
    border-radius: 18px;
}

.hk-knowledge-layout-compact .hk-knowledge-body,
.hk-knowledge-layout-compact .hk-knowledge-featured .hk-knowledge-body {
    padding: 0;
}

.hk-knowledge-layout-compact .hk-knowledge-body p,
.hk-knowledge-layout-compact .hk-knowledge-link {
    display: none;
}

.hk-knowledge-layout-compact h3,
.hk-knowledge-layout-compact .hk-knowledge-featured h3 {
    font-size: 1rem;
    line-height: 1.35;
    margin: 8px 0 0;
}

.hk-knowledge-layout-compact .hk-knowledge-meta {
    margin-bottom: 0;
}
.hk-knowledge-layout-compact .hk-knowledge-card {
    min-height: 126px;
}

.hk-knowledge-layout-compact h3 {
    font-size: 1.1rem;
}
/* ============================================================
   TOPIC SECTION — EXPLORE MORE ALIGNMENT
   ============================================================ */

.hk-home-topic-section {
    padding-top: 0;
}

.hk-home-topic-section .hk-section-heading {
    max-width: none;
}

.hk-home-topic-section .hk-topic-actions {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 26px;
    margin-bottom: 0;
}

.hk-topic-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.hk-topic-link:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .hk-home-topic-section .hk-topic-actions {
        margin-top: 22px;
    }
}
/* Tighten topic section spacing */
.hk-home-topic-section .hk-section-heading {
    margin-bottom: clamp(24px, 3vw, 34px);
}

.hk-home-topic-section .hk-topic-actions {
    margin-top: 18px;
}

@media (max-width: 768px) {
    .hk-home-topic-section .hk-section-heading {
        margin-bottom: 26px;
    }

    .hk-home-topic-section .hk-topic-actions {
        margin-top: 14px;
    }
}


/* Prevent homepage compact cards from shifting while images load */
.hk-knowledge-layout-compact .hk-knowledge-thumb {
    width: 96px;
    height: 96px;
    flex: 0 0 96px;
}

.hk-knowledge-layout-compact .hk-knowledge-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hk-knowledge-layout-compact .hk-knowledge-card {
    min-height: 126px;
}

/* ============================================================
   EXPLORE BY TOPIC — HEALTHY KNOTS
   ============================================================ */

.hk-home-topics-section {
    padding-top: 0;
}

.hk-topic-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: clamp(16px, 2vw, 24px);

    margin-top: 10px;
}

.hk-topic-card {
    position: relative;

    display: flex;
    flex-direction: column;
    gap: 14px;

    min-height: 190px;

    padding: 24px;

    border-radius: 28px;

    text-decoration: none;
    color: inherit;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.96),
            rgba(247,250,248,0.92)
        );

    border: 1px solid rgba(15, 23, 42, 0.06);

    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.05);

    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        background 0.22s ease;
}

.hk-topic-card::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at top left,
            rgba(34, 197, 94, 0.08),
            transparent 42%
        );

    opacity: 0;

    transition: opacity 0.25s ease;

    pointer-events: none;
}

.hk-topic-card:hover::before {
    opacity: 1;
}

.hk-topic-card:hover {
    transform: translateY(-3px);

    border-color:
        rgba(22, 163, 74, 0.14);

    box-shadow:
        0 24px 54px rgba(15, 23, 42, 0.08);
}

.hk-topic-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    border-radius: 18px;

    background:
        rgba(22, 163, 74, 0.08);

    color: #15803d;

    font-size: 1.4rem;
    font-weight: 700;
}

.hk-topic-card h3 {
    margin: 0;

    font-size: 1.22rem;
    line-height: 1.35;
    letter-spacing: -0.03em;

    color: #0f172a;

    text-wrap: balance;
}

.hk-topic-meta {
    margin-top: auto;

    color: #166534;

    font-size: 0.92rem;
    font-weight: 700;

    opacity: 0.9;
}

.hk-topic-arrow {
    position: absolute;

    right: 22px;
    bottom: 22px;

    color: #94a3b8;

    font-size: 1rem;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        color 0.2s ease;
}

.hk-topic-card:hover .hk-topic-arrow {
    transform: translateX(3px);

    color: #166534;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {

    .hk-topic-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {

    .hk-topic-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .hk-topic-card {
        min-height: 160px;

        padding: 22px;
    }

    .hk-topic-card h3 {
        font-size: 1.1rem;
    }
}

/* Topic card polish */
.hk-topic-card {
    min-height: 150px;
    padding: 22px;
}

.hk-topic-icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    font-size: 1.2rem;
}

.hk-topic-card h3 {
    font-size: 1.08rem;
}

.hk-topic-meta {
    font-size: 0.88rem;
}

@media (max-width: 640px) {
    .hk-topic-card {
        min-height: 148px;
        padding: 22px;
    }
}

/* ============================================================
   TOPIC CARD ACTION LINKS — PREMIUM CTA
   ============================================================ */

.hk-topic-actions-row {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: auto;
}

.hk-topic-actions-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 38px;

    padding: 0 14px;

    border-radius: 999px;

    text-decoration: none;

    font-size: 0.88rem;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

/* Guide button */
.hk-topic-actions-row a:first-child {
    background: rgba(22, 163, 74, 0.10);

    color: #166534;

    border: 1px solid rgba(22, 101, 52, 0.08);
}

/* Tools button */
.hk-topic-actions-row a:last-child {
    background: #166534;

    color: #ffffff;

    box-shadow:
        0 12px 24px rgba(22, 101, 52, 0.16);
}

.hk-topic-actions-row a:hover {
    transform: translateY(-1px);
}

.hk-topic-actions-row a:first-child:hover {
    background: rgba(22, 163, 74, 0.14);
}

.hk-topic-actions-row a:last-child:hover {
    background: #14532d;
}

/* remove old meta/arrow system */
.hk-topic-meta,
.hk-topic-arrow {
    display: none;
}

/* ============================================================
   EXPLORE BY LANGUAGE
   ============================================================ */

.hk-home-language-section {
    padding-top: 0;
}

.hk-language-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: clamp(16px, 2vw, 24px);

    margin-top: 10px;
}

.hk-language-card {
    position: relative;

    display: flex;
    flex-direction: column;
    gap: 10px;

    min-height: 170px;

    padding: 24px;

    border-radius: 28px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.96),
            rgba(247,250,248,0.92)
        );

    border:
        1px solid rgba(15, 23, 42, 0.06);

    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.05);

    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.hk-language-card:hover {
    transform: translateY(-3px);

    border-color:
        rgba(22, 163, 74, 0.14);

    box-shadow:
        0 24px 54px rgba(15, 23, 42, 0.08);
}

.hk-language-script {
    display: block;

    color: #166534;

    font-size: clamp(1.7rem, 2vw, 2rem);
    font-weight: 800;
    line-height: 1.2;

    letter-spacing: -0.03em;
}

.hk-language-name {
    color: #0f172a;

    font-size: 1rem;
    font-weight: 700;
}

.hk-language-meta {
    margin-top: auto;

    color: #166534;

    font-size: 0.9rem;
    font-weight: 700;

    opacity: 0.9;
}

.hk-language-actions {
    display: flex;
    justify-content: center;

    margin-top: 24px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {

    .hk-language-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {

    .hk-language-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .hk-language-card {
        min-height: 150px;

        padding: 22px;
    }

    .hk-language-script {
        font-size: 1.5rem;
    }
}/* Language card compact polish */
.hk-language-card {
    min-height: 138px;
    padding: 20px;
}

.hk-language-script {
    font-size: clamp(1.45rem, 1.8vw, 1.75rem);
}

.hk-language-name {
    font-size: 0.92rem;
}

.hk-language-meta {
    font-size: 0.84rem;
}

@media (max-width: 640px) {
    .hk-language-card {
        min-height: 132px;
        padding: 20px;
    }
}
/* ============================================================
   LANGUAGE ACTION BUTTONS
   ============================================================ */

.hk-language-actions-row {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: auto;
}

.hk-language-actions-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 36px;

    padding: 0 14px;

    border-radius: 999px;

    text-decoration: none;

    font-size: 0.84rem;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

/* First button */
.hk-language-actions-row a:first-child {
    background: rgba(22, 163, 74, 0.10);

    color: #166534;

    border:
        1px solid rgba(22, 101, 52, 0.08);
}

/* Second button */
.hk-language-actions-row a:last-child {
    background: #166534;

    color: #ffffff;

    box-shadow:
        0 10px 22px rgba(22, 101, 52, 0.16);
}

.hk-language-actions-row a:hover {
    transform: translateY(-1px);
}

.hk-language-actions-row a:first-child:hover {
    background:
        rgba(22, 163, 74, 0.14);
}

.hk-language-actions-row a:last-child:hover {
    background: #14532d;
}

/* ============================================================
   PRIVATE CHECK-INS — FEATURED ECOSYSTEM
   ============================================================ */

.hk-home-checkin-section {
    padding-top: 0;
}

.hk-checkin-system {
    display: grid;
    gap: clamp(24px, 4vw, 38px);
}

.hk-checkin-row {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: clamp(20px, 3vw, 30px);
    align-items: stretch;
}

.hk-checkin-row-reverse {
    grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
}

.hk-checkin-row-reverse .hk-checkin-feature {
    grid-column: 2;
    grid-row: 1;
}

.hk-checkin-row-reverse .hk-checkin-stack {
    grid-column: 1;
    grid-row: 1;
}

.hk-checkin-feature,
.hk-checkin-mini {
    position: relative;
    overflow: hidden;

    border-radius: 30px;
    border: 1px solid rgba(15, 23, 42, 0.06);

    background:
        radial-gradient(circle at top right, rgba(34, 197, 94, 0.10), transparent 38%),
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,250,248,0.92));

    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.055);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.hk-checkin-feature {
    min-height: 360px;
    padding: clamp(28px, 4vw, 42px);

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hk-checkin-feature::after {
    content: "";

    position: absolute;
    right: -90px;
    bottom: -110px;

    width: 260px;
    height: 260px;

    border-radius: 45% 55% 58% 42% / 44% 42% 58% 56%;

    background:
        radial-gradient(circle at 35% 35%, rgba(134, 239, 172, 0.24), transparent 62%);

    pointer-events: none;
}

.hk-checkin-label {
    display: inline-flex;
    width: fit-content;

    margin-bottom: 18px;
    padding: 8px 13px;

    border-radius: 999px;

    background: rgba(22, 163, 74, 0.09);
    color: #166534;

    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.hk-checkin-feature h3 {
    max-width: 560px;
    margin: 0 0 18px;

    color: #0f172a;

    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.02;
    letter-spacing: -0.055em;

    text-wrap: balance;
}

.hk-checkin-feature p {
    max-width: 520px;
    margin: 0;

    color: #52645c;

    font-size: 1rem;
    line-height: 1.8;
}

.hk-checkin-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin: 24px 0;
}

.hk-checkin-badges span {
    display: inline-flex;
    align-items: center;

    min-height: 34px;
    padding: 0 12px;

    border-radius: 999px;

    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(22, 101, 52, 0.08);

    color: #64748b;

    font-size: 0.82rem;
    font-weight: 800;
}

.hk-checkin-feature .hk-btn {
    width: fit-content;
    position: relative;
    z-index: 1;
}

.hk-checkin-stack {
    display: grid;
    gap: clamp(16px, 2vw, 20px);
}

.hk-checkin-mini {
    display: flex;
    flex-direction: column;

    min-height: 170px;
    padding: 24px;

    text-decoration: none;
    color: inherit;
}

.hk-checkin-mini span {
    display: inline-flex;
    width: fit-content;

    margin-bottom: 12px;

    color: #166534;

    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hk-checkin-mini h3 {
    margin: 0 0 10px;

    color: #0f172a;

    font-size: 1.35rem;
    line-height: 1.25;
    letter-spacing: -0.035em;
}

.hk-checkin-mini p {
    margin: 0;

    color: #52645c;

    font-size: 0.94rem;
    line-height: 1.65;
}

.hk-checkin-mini b {
    margin-top: auto;

    color: #166534;

    font-size: 0.9rem;
    font-weight: 800;
}

/* Breathing hover — transform only */
.hk-checkin-feature:hover,
.hk-checkin-mini:hover {
    transform: translateY(-3px);

    border-color: rgba(22, 163, 74, 0.14);

    box-shadow: 0 28px 64px rgba(15, 23, 42, 0.085);
}

.hk-checkin-row:hover .hk-checkin-feature {
    transform: translateX(-3px) translateY(-2px);
}

.hk-checkin-row:hover .hk-checkin-stack {
    transform: translateX(3px);
}

.hk-checkin-row-reverse:hover .hk-checkin-feature {
    transform: translateX(3px) translateY(-2px);
}

.hk-checkin-row-reverse:hover .hk-checkin-stack {
    transform: translateX(-3px);
}

.hk-checkin-stack {
    transition: transform 0.25s ease;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
    .hk-checkin-row,
    .hk-checkin-row-reverse {
        grid-template-columns: 1fr;
    }

    .hk-checkin-row-reverse .hk-checkin-feature,
    .hk-checkin-row-reverse .hk-checkin-stack {
        grid-column: auto;
        grid-row: auto;
    }

    .hk-checkin-feature {
        min-height: auto;
    }

    .hk-checkin-row:hover .hk-checkin-feature,
    .hk-checkin-row:hover .hk-checkin-stack,
    .hk-checkin-row-reverse:hover .hk-checkin-feature,
    .hk-checkin-row-reverse:hover .hk-checkin-stack {
        transform: none;
    }
}

@media (max-width: 640px) {
    .hk-checkin-feature {
        padding: 26px;
        border-radius: 26px;
    }

    .hk-checkin-feature h3 {
        font-size: clamp(2rem, 12vw, 2.65rem);
    }

    .hk-checkin-mini {
        min-height: 158px;
        padding: 22px;
        border-radius: 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hk-checkin-feature,
    .hk-checkin-mini,
    .hk-checkin-stack {
        transition: none;
    }

    .hk-checkin-feature:hover,
    .hk-checkin-mini:hover,
    .hk-checkin-row:hover .hk-checkin-feature,
    .hk-checkin-row:hover .hk-checkin-stack,
    .hk-checkin-row-reverse:hover .hk-checkin-feature,
    .hk-checkin-row-reverse:hover .hk-checkin-stack {
        transform: none;
    }
}
/* ============================================================
   IMMEDIATE SUPPORT — SLIM HELPLINE PANEL
   ============================================================ */

.hk-home-support-section {
    padding-top: 0;
}

.hk-support-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: 0;

    overflow: hidden;

    border-radius: 34px;
    border: 1px solid rgba(22, 101, 52, 0.12);

    background:
        linear-gradient(135deg, rgba(255,255,255,0.98), rgba(240,253,244,0.94));

    box-shadow:
        0 24px 60px rgba(15, 23, 42, 0.07);
}

.hk-support-content {
    padding: clamp(28px, 5vw, 48px);
}

.hk-support-content h2 {
    margin: 0 0 14px;

    color: #0f172a;

    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.hk-support-content p {
    max-width: 620px;
    margin: 0;

    color: #52645c;
    font-size: 1rem;
    line-height: 1.8;
}

.hk-support-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 26px;
}

.hk-support-visual {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 260px;

    padding: 34px;

    text-align: center;

    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.24), transparent 26%),
        radial-gradient(circle, rgba(255,255,255,0.10) 1px, transparent 1px),
        linear-gradient(135deg, #16a34a, #166534);

    background-size:
        auto,
        18px 18px,
        auto;

    color: #ffffff;
}

.hk-support-number {
    display: block;

    font-size: clamp(2.8rem, 6vw, 4.8rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.hk-support-label {
    display: inline-flex;

    margin-top: 10px;
    padding: 7px 12px;

    border-radius: 999px;

    background: rgba(255,255,255,0.16);

    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hk-support-note {
    margin-top: 14px;

    max-width: 240px;

    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.45;

    opacity: 0.9;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 800px) {
    .hk-support-panel {
        grid-template-columns: 1fr;
    }

    .hk-support-visual {
        min-height: 200px;
    }
}
/* Support panel emotional visual */
.hk-support-symbol {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 118px;
    height: 118px;

    margin-bottom: 24px;

    border-radius: 40% 60% 55% 45% / 48% 42% 58% 52%;

    background: rgba(255, 255, 255, 0.92);

    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.10);
}

.hk-support-symbol span {
    color: #166534;
    font-size: 3.4rem;
    line-height: 1;
}

.hk-support-message {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.hk-support-note {
    color: rgba(255,255,255,0.86);
}
/* ============================================================
   SUNO NA — EDITORIAL MOVEMENT SECTION
   ============================================================ */

.hk-home-sunona-section {
    position: relative;

    overflow: hidden;

    padding:
        clamp(90px, 10vw, 130px) 0;

    background:
        radial-gradient(circle at top left,
            rgba(253, 224, 71, 0.32),
            transparent 26%),

        radial-gradient(circle at bottom right,
            rgba(34, 197, 94, 0.24),
            transparent 34%),

        linear-gradient(
            135deg,
            #fff8ef 0%,
            #f7fdf5 45%,
            #eefbf5 100%
        );
}

.hk-sunona-layout {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);

    gap: clamp(36px, 6vw, 80px);

    align-items: center;
}

.hk-sunona-content h2 {
    margin: 0 0 24px;

    color: #0f172a;

    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 0.98;
    letter-spacing: -0.07em;

    text-wrap: balance;
}

.hk-sunona-intro {
    max-width: 640px;

    margin: 0 0 18px;

    color: #166534;

    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.8;
}

.hk-sunona-copy {
    max-width: 620px;

    margin: 0;

    color: #52645c;

    font-size: 1rem;
    line-height: 1.9;
}

.hk-sunona-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 34px;
}

/* ============================================================
   VISUAL COLLAGE
   ============================================================ */

.hk-sunona-visual {
    position: relative;

    min-height: 720px;
}

.hk-sunona-image {
    position: absolute;

    overflow: hidden;

    border-radius: 30px;

    box-shadow:
        0 30px 80px rgba(15, 23, 42, 0.18);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

    background: #ffffff;
}

.hk-sunona-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* Main image */
.hk-sunona-image-main {
    top: 0;
    left: 0;

    width: 76%;
    height: 480px;

    transform: rotate(-2deg);

    z-index: 1;
}

/* Overlay image */
.hk-sunona-image-overlay {
    right: 0;
    top: 220px;

    width: 58%;
    height: 320px;

    transform: rotate(3deg);

    z-index: 2;
}

/* Small image */
.hk-sunona-image-small {
    left: 8%;
    bottom: 20px;

    width: 42%;
    height: 210px;

    transform: rotate(-4deg);

    z-index: 3;
}

.hk-sunona-image:hover {
    transform:
        translateY(-4px)
        scale(1.01);

    box-shadow:
        0 40px 100px rgba(15, 23, 42, 0.22);
}

/* ============================================================
   FLOATING IMPACT PILLS
   ============================================================ */

.hk-sunona-pill {
    position: absolute;

    display: inline-flex;
    align-items: center;

    min-height: 48px;
    padding: 0 18px;

    border-radius: 999px;

    background: rgba(255,255,255,0.92);

    backdrop-filter: blur(12px);

    border:
        1px solid rgba(15, 23, 42, 0.06);

    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.10);

    color: #166534;

    font-size: 0.88rem;
    font-weight: 800;

    z-index: 5;
}

.hk-sunona-pill-one {
    top: 26px;
    right: 12%;
}

.hk-sunona-pill-two {
    bottom: 250px;
    left: -20px;
}

.hk-sunona-pill-three {
    bottom: -6px;
    right: 8%;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {

    .hk-sunona-layout {
        grid-template-columns: 1fr;
    }

    .hk-sunona-content {
        max-width: 760px;
    }

    .hk-sunona-visual {
        min-height: 680px;
    }
}

@media (max-width: 768px) {

    .hk-home-sunona-section {
        padding:
            clamp(60px, 12vw, 90px) 0;
    }

    .hk-sunona-visual {
        min-height: auto;

        display: grid;
        gap: 18px;
    }

    .hk-sunona-image,
    .hk-sunona-image-main,
    .hk-sunona-image-overlay,
    .hk-sunona-image-small {
        position: relative;

        width: 100%;
        height: auto;

        inset: auto;

        transform: none !important;
    }

    .hk-sunona-image img {
        aspect-ratio: 16 / 10;
    }

    .hk-sunona-pill {
        position: relative;

        width: fit-content;
    }

    .hk-sunona-content h2 {
        font-size: clamp(2.3rem, 12vw, 3.4rem);
    }
}
/* ============================================================
   SUNO NA — FINAL POLISH
   ============================================================ */

.hk-home-sunona-section {
    background:
        radial-gradient(circle at 8% 18%, rgba(253, 224, 71, 0.16), transparent 28%),
        radial-gradient(circle at 92% 78%, rgba(34, 197, 94, 0.16), transparent 30%),
        linear-gradient(135deg, #fffdf4 0%, #f0fdf4 58%, #ecfeff 100%);
}

.hk-sunona-image-main img {
    object-position: center 32%;
}

.hk-sunona-image-overlay img,
.hk-sunona-image-small img {
    object-position: center center;
}

.hk-sunona-pill {
    animation: hkSunonaFloat 7s ease-in-out infinite;
}

.hk-sunona-pill-two {
    animation-delay: 1.4s;
}

.hk-sunona-pill-three {
    animation-delay: 2.2s;
}

.hk-sunona-image-main {
    animation: hkSunonaImageFloat 9s ease-in-out infinite;
}

.hk-sunona-image-overlay {
    animation: hkSunonaImageFloat 10s ease-in-out infinite reverse;
}

.hk-sunona-image-small {
    animation: hkSunonaImageFloat 11s ease-in-out infinite;
}

@keyframes hkSunonaFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -8px, 0);
    }
}

@keyframes hkSunonaImageFloat {
    0%, 100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -8px;
    }
}

@media (max-width: 768px) {
    .hk-sunona-image-main img {
        object-position: center 24%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hk-sunona-pill,
    .hk-sunona-image-main,
    .hk-sunona-image-overlay,
    .hk-sunona-image-small {
        animation: none;
    }
}
@media (max-width: 768px) {
    .hk-sunona-pill {
        position: static;
        width: fit-content;
max-width: 100%;
margin-inline: auto;
        justify-content: center;
        min-height: 44px;
        padding: 0 14px;
        font-size: 0.84rem;
        text-align: center;
        animation: none;
    }

    .hk-sunona-visual {
        gap: 14px;
    }
    @media (max-width: 768px) {
    .hk-sunona-visual {
        gap: 10px;
    }

    .hk-sunona-pill {
        min-height: 40px;
        padding: 0 16px;
    }
}
}
/* ============================================================
   PARTICIPATE — HELP SHAPE A MORE OPEN INDIA
   ============================================================ */

.hk-home-participate-section {
    padding-top: 0;
}

.hk-participate-heading {
    max-width: 760px;
}

.hk-participate-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 3vw, 28px);
}

.hk-participate-card {
    position: relative;
    overflow: hidden;

    min-height: 280px;
    padding: clamp(24px, 3vw, 34px);

    border-radius: 32px;
    color: #0f172a;
    text-decoration: none;

    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.hk-participate-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 34px 76px rgba(15, 23, 42, 0.12);
}

.hk-participate-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.9;
    pointer-events: none;
}

.hk-participate-card > * {
    position: relative;
    z-index: 1;
}

.hk-participate-community::before {
    background:
        radial-gradient(circle at 15% 10%, rgba(255,255,255,0.60), transparent 28%),
        linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
}

.hk-participate-campus::before {
    background:
        radial-gradient(circle at 15% 10%, rgba(255,255,255,0.62), transparent 28%),
        linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.hk-participate-creative::before {
    background:
        radial-gradient(circle at 15% 10%, rgba(255,255,255,0.64), transparent 28%),
        linear-gradient(135deg, #ffedd5 0%, #fde68a 100%);
}

.hk-participate-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    margin-bottom: 24px;

    border-radius: 22px;

    background: rgba(255,255,255,0.70);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);

    font-size: 1.6rem;
}

.hk-participate-card h3 {
    margin: 0 0 14px;

    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.hk-participate-card p {
    margin: 0 0 28px;

    color: rgba(15, 23, 42, 0.68);

    font-size: 0.98rem;
    line-height: 1.7;
}

.hk-participate-link {
    display: inline-flex;
    align-items: center;

    margin-top: auto;

    color: #0f172a;
    text-decoration: none;

    font-size: 0.92rem;
    font-weight: 900;

    transition: transform 0.2s ease;
}

.hk-participate-card:hover .hk-participate-link {
    transform: translateX(4px);
}

@media (max-width: 980px) {
    .hk-participate-grid {
        grid-template-columns: 1fr;
    }

    .hk-participate-card {
        min-height: auto;
    }
}


/* ============================================================
   HEALTHY KNOTS NOTES — NEWSLETTER
   ============================================================ */

.hk-home-notes-section {
    padding: clamp(36px, 5vw, 64px) 0;
}

.hk-notes-card {
    overflow: hidden;

    border-radius: 34px;
    border: 1px solid rgba(22, 101, 52, 0.10);

    background:
        radial-gradient(circle at 12% 20%, rgba(253, 224, 71, 0.16), transparent 26%),
        radial-gradient(circle at 88% 80%, rgba(34, 197, 94, 0.14), transparent 28%),
        linear-gradient(135deg, rgba(255,255,255,0.98), rgba(240,253,244,0.94));

    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.07);
}

.hk-notes-content {
    max-width: 860px;
    margin: 0 auto;
    padding: clamp(34px, 6vw, 56px);
    text-align: center;
}

.hk-notes-content h2 {
    margin: 0 0 14px;

    color: #0f172a;

    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.hk-notes-content p {
    margin-left: auto;
    margin-right: auto;
}

.hk-notes-content > p {
    max-width: 640px;
    color: #52645c;
    font-size: 1rem;
    line-height: 1.75;
}

.hk-notes-form {
    margin-top: 28px;
}

.hk-notes-input-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;

    min-height: 62px;

    padding: 7px 8px 7px 18px;

    border-radius: 999px;

    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(22, 101, 52, 0.10);

    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.hk-notes-icon {
    font-size: 1.05rem;
}

.hk-notes-input-wrap input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;

    color: #0f172a;

    font-size: 1rem;
    font-weight: 600;
}

.hk-notes-input-wrap input::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.hk-notes-input-wrap button {
    min-height: 48px;
    padding: 0 22px;

    border: 0;
    border-radius: 999px;

    background: #166534;
    color: #ffffff;

    font-size: 0.95rem;
    font-weight: 800;

    cursor: pointer;

    box-shadow: 0 14px 28px rgba(22, 101, 52, 0.16);

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.hk-notes-input-wrap button:hover {
    transform: translateY(-1px);
    background: #14532d;
}

.hk-notes-privacy {
    margin-top: 22px !important;

    color: #64748b;

    font-size: 0.9rem;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 640px) {
    .hk-notes-input-wrap {
        grid-template-columns: 1fr;
        border-radius: 26px;
        padding: 18px;
        text-align: left;
         overflow: hidden;
    }

    .hk-notes-icon {
        display: none;
    }

    .hk-notes-input-wrap input {
        min-height: 44px;
    }

 .hk-notes-input-wrap button {
    width: 100%;
    min-width: 0;

    padding-left: 16px;
    padding-right: 16px;

    justify-content: center;
}
.hk-notes-input-wrap {
    box-sizing: border-box;
}

.hk-notes-input-wrap * {
    box-sizing: border-box;
}
}

/* ============================================================
   MENTAL HEALTH PLEDGE — COLORFUL CERTIFICATE STYLE
   ============================================================ */

.hk-home-pledge-section {
    padding: clamp(48px, 7vw, 90px) 0;
}

.hk-pledge-card {
    position: relative;
    overflow: hidden;

    padding: clamp(34px, 6vw, 66px);

    border-radius: 38px;

    background:
        radial-gradient(circle at 10% 15%, rgba(251, 191, 36, 0.28), transparent 24%),
        radial-gradient(circle at 90% 20%, rgba(56, 189, 248, 0.20), transparent 28%),
        radial-gradient(circle at 85% 85%, rgba(34, 197, 94, 0.24), transparent 30%),
        linear-gradient(135deg, #fff7ed 0%, #f0f9ff 45%, #ecfdf5 100%);

    border: 1px solid rgba(15, 23, 42, 0.07);

    box-shadow:
        0 30px 80px rgba(15, 23, 42, 0.08);

    text-align: center;
}

.hk-pledge-card::before {
    content: "✦";
    position: absolute;
    top: 34px;
    right: 42px;

    color: rgba(22, 101, 52, 0.16);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
}

.hk-pledge-card::after {
    content: "";

    position: absolute;
    left: 28px;
    bottom: 28px;

    width: 140px;
    height: 140px;

    border-radius: 50%;

    background:
        radial-gradient(circle, rgba(251, 191, 36, 0.20), transparent 68%);
}

.hk-pledge-card > * {
    position: relative;
    z-index: 1;
}

.hk-pledge-card h2 {
    max-width: 820px;

    margin: 0 auto 18px;

    color: #0f172a;

    font-size: clamp(2.25rem, 5vw, 4.6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;

    text-wrap: balance;
}

.hk-pledge-intro {
    max-width: 720px;

    margin: 0 auto 34px;

    color: #475569;

    font-size: 1.04rem;
    line-height: 1.85;
}

.hk-pledge-lines {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 14px;

    margin: 0 auto 34px;
}

.hk-pledge-line {
    min-height: 112px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 18px;

    border-radius: 26px;

    background: rgba(255,255,255,0.78);

    border: 1px solid rgba(15, 23, 42, 0.06);

    color: #166534;

    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.55;

    box-shadow:
        0 14px 34px rgba(15, 23, 42, 0.05);

    backdrop-filter: blur(10px);
}

.hk-pledge-line:nth-child(1) {
    color: #166534;
}

.hk-pledge-line:nth-child(2) {
    color: #075985;
}

.hk-pledge-line:nth-child(3) {
    color: #92400e;
}

.hk-pledge-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;
    padding: 0 30px;

    border-radius: 999px;

    background: #166534;
    color: #ffffff;

    text-decoration: none;

    font-size: 1rem;
    font-weight: 900;

    box-shadow:
        0 18px 34px rgba(22, 101, 52, 0.20);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.hk-pledge-btn:hover {
    transform: translateY(-2px);

    background: #14532d;

    box-shadow:
        0 24px 44px rgba(22, 101, 52, 0.24);
}

.hk-pledge-note {
    margin-top: 22px;

    color: #64748b;

    font-size: 0.95rem;
    font-weight: 800;
}

/* Responsive */
@media (max-width: 860px) {
    .hk-pledge-lines {
        grid-template-columns: 1fr;
    }

    .hk-pledge-line {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .hk-pledge-card {
        padding: 32px 22px;
    }

    .hk-pledge-btn {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;

        padding-left: 16px;
        padding-right: 16px;
    }

    .hk-pledge-note {
        line-height: 1.7;
    }
}
/* ============================================================
   HOMEPAGE PULSE — PLATFORM STRIP
   ============================================================ */

.hk-home-pulse {
    padding: 42px 0 70px;
}

.hk-pulse-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;

    border: 1px solid rgba(18, 92, 74, 0.12);
    border-radius: 30px;

    background:
        radial-gradient(circle at 8% 30%, rgba(187, 247, 208, 0.42), transparent 26%),
        radial-gradient(circle at 92% 70%, rgba(253, 224, 71, 0.24), transparent 24%),
        linear-gradient(135deg, rgba(255,255,255,0.96), rgba(240,253,244,0.88));

    box-shadow: 0 28px 76px rgba(18, 92, 74, 0.12);
    backdrop-filter: blur(14px);
}

.hk-pulse-item {
    position: relative;
    padding: 24px 26px;
}

.hk-pulse-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 22px;
    right: 0;
    bottom: 22px;
    width: 1px;
    background: rgba(18, 92, 74, 0.10);
}

.hk-pulse-label {
    display: block;
    margin-bottom: 9px;

    color: #5f776e;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.hk-pulse-item strong {
    display: block;

    color: #0f513f;
    font-size: clamp(1.16rem, 1.7vw, 1.45rem);
    line-height: 1.25;
    font-weight: 950;
    letter-spacing: -0.04em;
}

@media (max-width: 900px) {
    .hk-pulse-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hk-pulse-item:nth-child(2)::after {
        display: none;
    }

    .hk-pulse-item:nth-child(1),
    .hk-pulse-item:nth-child(2) {
        border-bottom: 1px solid rgba(18, 92, 74, 0.10);
    }
}

@media (max-width: 640px) {
    .hk-home-pulse {
        padding: 0 0 54px;
    }

    .hk-pulse-grid {
        border-radius: 26px;
    }

    .hk-pulse-item {
        padding: 18px 16px;
    }

    .hk-pulse-label {
        font-size: 0.68rem;
        letter-spacing: 0.045em;
    }

    .hk-pulse-item strong {
        font-size: 0.92rem;
        letter-spacing: -0.02em;
    }
}
.hk-pulse-item {
    color: inherit;
    text-decoration: none;
}

.hk-pulse-item:hover {
    background: rgba(255, 255, 255, 0.72);
}

.hk-pulse-item:focus-visible {
    outline: 3px solid rgba(22, 101, 52, 0.35);
    outline-offset: -3px;
}