/* ============================================
   CARA KONSUMSI LANDING PAGE - COMBINED STYLES
   BloomLab Design System — Brand-Wide Palette
   ============================================ */

:root {
    --ck-brand-primary: #2D6A4F;
    --ck-brand-accent: #40916C;
    --ck-brand-light: #74C69D;
    --ck-brand-luminous: #52B788;
    --ck-text-primary: #1B4332;
    --ck-text-secondary: #2D6A4F;
    --ck-bg-clinical: #FFFFFF;
    --ck-bg-pearl: #F8FAF9;
    --ck-bg-deep: #1B4332;
    --white: #FFFFFF;

    --bloom-standard-width: 1200px;
    --bloom-standard-radius: 64px;
    --bloom-transition: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --bloom-radius-lg: 32px;
    --bloom-radius-xl: 64px;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    background-color: var(--ck-bg-clinical);
    color: var(--ck-text-primary);
    overflow-x: hidden;
}

/* ============================================
   SECTION 1: HERO
   ============================================ */

.ck-hero-outer {
    width: 100%;
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, var(--ck-bg-pearl) 0%, rgba(116, 198, 157, 0.08) 100%);
    position: relative;
    overflow: hidden;
}

.ck-hero-outer::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(82, 183, 136, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: ck-float 15s infinite alternate ease-in-out;
}

@keyframes ck-float {
    from { transform: translate(0, 0); }
    to { transform: translate(-15px, 15px) scale(1.02); }
}

.ck-hero-wrapper {
    width: 100%;
    max-width: var(--bloom-standard-width);
    padding: var(--bloom-hero-padding-top, 80px) var(--bloom-side-padding) 60px;
    position: relative;
    z-index: 1;
}

.ck-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.ck-badge-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}

.ck-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid rgba(27, 67, 50, 0.06);
    color: var(--ck-text-secondary);
    font-weight: 700;
    font-size: 13px;
}

.ck-badge-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.ck-headline {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
    color: var(--ck-text-primary);
}

.ck-headline span {
    color: var(--ck-brand-accent);
}

.ck-subheadline {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* ============================================
   SECTION 2: PRODUCT NAV (STICKY)
   ============================================ */

.ck-nav-section {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(27, 67, 50, 0.06);
    padding: 16px 0;
}

.ck-nav-wrapper {
    max-width: var(--bloom-standard-width);
    margin: 0 auto;
    padding: 0 var(--bloom-side-padding);
    display: flex;
    align-items: center;
    gap: 16px;
}

.ck-nav-label {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ck-text-secondary);
    white-space: nowrap;
    flex-shrink: 0;
}

.ck-nav-pills {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0;
}

.ck-nav-pills::-webkit-scrollbar { display: none; }

.ck-pill {
    display: inline-flex;
    padding: 10px 20px;
    border-radius: 100px;
    background: var(--ck-bg-pearl);
    border: 1.5px solid rgba(27, 67, 50, 0.08);
    color: var(--ck-text-primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--bloom-transition);
    cursor: pointer;
}

.ck-pill:hover, .ck-pill.active {
    background: var(--ck-text-primary);
    color: var(--white);
    border-color: var(--ck-text-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(27, 67, 50, 0.15);
}

/* ============================================
   SECTION 3: INDIVIDUAL PRODUCT GUIDES
   ============================================ */

.ck-guides-section {
    max-width: var(--bloom-standard-width);
    margin: 0 auto;
    padding: 60px var(--bloom-side-padding);
}

.ck-guides-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.ck-product-block {
    background: var(--ck-bg-pearl);
    border-radius: var(--bloom-standard-radius);
    padding: clamp(40px, 6vw, 80px);
    border: 1px solid rgba(27, 67, 50, 0.04);
    transition: var(--bloom-transition);
    scroll-margin-top: 100px;
}

.ck-product-block:hover {
    border-color: rgba(64, 145, 108, 0.15);
    box-shadow: 0 30px 60px rgba(45, 106, 79, 0.06);
}

.ck-product-header {
    text-align: center;
    margin-bottom: 50px;
}

.ck-product-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ck-brand-accent);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(64, 145, 108, 0.1);
    border-radius: 100px;
}

.ck-product-header h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.1;
    color: var(--ck-text-primary);
    margin-bottom: 12px;
}

.ck-product-subtitle {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ck-text-secondary);
    opacity: 0.85;
}

/* Steps Grid */
.ck-steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.ck-steps-single {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ck-step-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--bloom-radius-lg);
    border: 1px solid transparent;
    transition: var(--bloom-transition);
    position: relative;
}

.ck-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(45, 106, 79, 0.1);
    border-color: var(--ck-brand-light);
}

.ck-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--ck-bg-deep);
    color: var(--white);
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.ck-step-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: var(--ck-text-primary);
    line-height: 1.3;
}

.ck-step-card h3 span {
    color: var(--ck-brand-accent);
    font-weight: 700;
}

.ck-step-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 600;
    color: var(--ck-text-primary);
    opacity: 0.9;
}

.ck-note {
    margin-top: 16px;
    padding: 16px;
    background: rgba(82, 183, 136, 0.08);
    border-radius: 16px;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 600;
    color: var(--ck-text-secondary);
    border-left: 3px solid var(--ck-brand-light);
}

/* Tips Box */
.ck-tips-box {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--bloom-radius-lg);
    border: 2px dashed rgba(64, 145, 108, 0.2);
}

.ck-tips-box h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ck-brand-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ck-tips-box h4::before {
    content: '📌';
}

.ck-tips-box ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ck-tips-box ul li {
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 600;
    padding-left: 28px;
    position: relative;
    color: var(--ck-text-primary);
    opacity: 0.9;
}

.ck-tips-box ul li::before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.9rem;
}

.ck-reminder {
    margin-top: 20px;
    padding: 20px;
    background: rgba(27, 67, 50, 0.04);
    border-radius: 16px;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 600;
    color: var(--ck-text-primary);
    opacity: 0.85;
    font-style: italic;
}

.ck-reminder::before {
    content: '💡 ';
}

/* ============================================
   SECTION 4: COMBO GUIDES HEADER
   ============================================ */

.ck-combo-header-section {
    width: 100%;
    background: var(--ck-bg-deep);
    padding: clamp(60px, 10vw, 100px) var(--bloom-side-padding);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ck-combo-header-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(82, 183, 136, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
}

.ck-combo-header-wrapper {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.ck-eyebrow {
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--ck-brand-light);
    margin-bottom: 24px;
    display: block;
}

.ck-combo-header-wrapper h2 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.05em;
    color: var(--white);
    margin-bottom: 20px;
}

.ck-combo-header-wrapper h2 span {
    color: var(--ck-brand-luminous);
}

.ck-combo-header-wrapper p {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.85;
}

/* ============================================
   SECTION 5: COMBO GUIDES
   ============================================ */

.ck-combo-section {
    max-width: var(--bloom-standard-width);
    margin: 0 auto;
    padding: 60px var(--bloom-side-padding) 80px;
}

.ck-combo-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ck-combo-card {
    background: var(--ck-bg-pearl);
    border-radius: 48px;
    border: 1px solid rgba(27, 67, 50, 0.04);
    overflow: hidden;
    transition: var(--bloom-transition);
}

.ck-combo-card:hover {
    border-color: rgba(64, 145, 108, 0.15);
    box-shadow: 0 20px 50px rgba(45, 106, 79, 0.08);
}

.ck-combo-title {
    padding: 30px 40px;
    background: var(--ck-text-primary);
}

.ck-combo-title h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.ck-combo-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ck-combo-phase {
    background: var(--white);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(27, 67, 50, 0.05);
}

.ck-phase-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    background: var(--ck-brand-accent);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.ck-combo-phase ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ck-combo-phase ul li {
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 600;
    padding-left: 20px;
    position: relative;
    color: var(--ck-text-primary);
    opacity: 0.9;
}

.ck-combo-phase ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--ck-brand-accent);
    font-weight: 800;
}

.ck-combo-tips {
    padding: 20px 24px;
    background: rgba(82, 183, 136, 0.06);
    border-radius: 20px;
    border: 1px dashed rgba(64, 145, 108, 0.2);
}

.ck-combo-tips p {
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 600;
    color: var(--ck-text-secondary);
}

/* ============================================
   SECTION 6: FAQ
   ============================================ */

.ck-faq-section {
    max-width: 850px;
    margin: 0 auto;
    padding: 80px 20px;
}

.ck-faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.ck-faq-pill {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ck-brand-accent);
    margin-bottom: 16px;
}

.ck-faq-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--ck-text-primary);
    line-height: 1.1;
}

.ck-faq-header h2 span {
    color: var(--ck-brand-accent);
}

.ck-faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ck-faq-item {
    background: var(--ck-bg-pearl);
    border-radius: 24px;
    border: 2px solid rgba(27, 67, 50, 0.04);
    overflow: hidden;
    transition: var(--bloom-transition);
}

.ck-faq-item:hover {
    transform: translateY(-5px);
    background: var(--white);
    border-color: var(--ck-text-primary);
    box-shadow: 0 20px 40px rgba(27, 67, 50, 0.08);
}

.ck-faq-question {
    width: 100%;
    padding: 28px 32px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--ck-text-primary);
    transition: var(--bloom-transition);
    font-family: 'Plus Jakarta Sans', sans-serif;
    gap: 16px;
}

.ck-faq-item.active .ck-faq-question {
    color: var(--ck-brand-accent);
}

.ck-faq-icon {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--ck-text-primary);
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: var(--bloom-transition);
    flex-shrink: 0;
}

.ck-faq-item.active .ck-faq-icon {
    stroke: var(--ck-brand-accent);
    transform: rotate(180deg);
}

.ck-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--bloom-transition);
}

.ck-faq-item.active .ck-faq-answer {
    max-height: 800px;
}

.ck-answer-content {
    padding: 0 32px 32px 32px;
    line-height: 1.7;
    color: var(--ck-text-primary);
    opacity: 0.8;
    font-size: 1.05rem;
    font-weight: 600;
}

/* ============================================
   SECTION 7: CTA STRIP
   ============================================ */

.ck-cta-section {
    max-width: var(--bloom-standard-width);
    margin: 0 auto 80px;
    padding: 0 var(--bloom-side-padding);
}

.ck-cta-wrapper {
    background: var(--ck-text-primary);
    border-radius: var(--bloom-standard-radius);
    padding: clamp(50px, 8vw, 80px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ck-cta-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(82, 183, 136, 0.12) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
}

.ck-cta-wrapper h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.04em;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

.ck-cta-wrapper p {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    opacity: 0.85;
    max-width: 550px;
    margin: 0 auto 30px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.ck-cta-btn {
    display: inline-flex;
    padding: 20px 50px;
    background: var(--white);
    color: var(--ck-text-primary);
    text-decoration: none;
    font-weight: 800;
    border-radius: 100px;
    font-size: 1.05rem;
    transition: var(--bloom-transition);
    position: relative;
    z-index: 1;
}

.ck-cta-btn:hover {
    background: var(--ck-brand-luminous);
    color: var(--white);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(82, 183, 136, 0.3);
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

@media (max-width: 991px) {
    /* Hero */
    .ck-hero-outer::before { display: none; }
    .ck-headline { font-size: clamp(2.2rem, 6vw, 3rem); }
    .ck-subheadline { font-size: 1.1rem; }

    /* Nav */
    .ck-nav-wrapper { flex-direction: column; align-items: flex-start; gap: 10px; }
    .ck-nav-pills { width: 100%; }

    /* Product blocks */
    .ck-product-block { border-radius: 40px; padding: 35px 25px; }
    .ck-steps-grid { grid-template-columns: 1fr; }
    .ck-step-card { padding: 30px 22px; }
    .ck-step-card h3 { font-size: 1.2rem; }

    /* Combo */
    .ck-combo-title { padding: 24px 28px; }
    .ck-combo-title h3 { font-size: 1.3rem; }
    .ck-combo-body { padding: 28px 22px; }
    .ck-combo-phase { padding: 24px 20px; }
    .ck-combo-card { border-radius: 32px; }

    /* Section headers */
    .ck-combo-header-wrapper h2 { font-size: 2.2rem; }
    .ck-product-header h2 { font-size: 2.2rem; }

    /* FAQ */
    .ck-faq-header h2 { font-size: 2.2rem; text-align: left; }
    .ck-faq-question { padding: 24px; font-size: 1.05rem; }
    .ck-answer-content { padding: 0 24px 24px; }
    .ck-faq-item { border-radius: 20px; }

    /* CTA */
    .ck-cta-wrapper { border-radius: 40px; padding: 50px 25px; }
    .ck-cta-btn { padding: 18px 40px; font-size: 1rem; }
}

@media (max-width: 600px) {
    .ck-tips-box { padding: 25px 20px; }
    .ck-tips-box ul li { font-size: 0.95rem; }
    .ck-reminder { font-size: 0.9rem; }
    .ck-combo-tips p { font-size: 0.9rem; }
    .ck-combo-phase ul li { font-size: 0.95rem; }
}

@media (max-width: 480px) {
    .ck-hero-wrapper { padding: 40px 20px; }
    .ck-guides-section { padding: 40px 16px; }
    .ck-combo-section { padding: 40px 16px; }
    .ck-cta-section { padding: 0 16px; }
}

/* ============================================
   SCROLL-TO-TOP FLOATING BUTTON
   Positioned above WhatsApp widget (no stacking)
   ============================================ */

.ck-scroll-top {
    /* WhatsApp widget: bottom 20px, height 56px → place above with 12px gap */
    --ck-scroll-top-bottom: 88px;
    --ck-scroll-top-size: 50px;

    position: fixed;
    bottom: var(--ck-scroll-top-bottom);
    right: max(20px, env(safe-area-inset-right));
    z-index: 9998;
    width: var(--ck-scroll-top-size);
    height: var(--ck-scroll-top-size);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--ck-text-primary);
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(27, 67, 50, 0.25);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.ck-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ck-scroll-top:hover,
.ck-scroll-top:focus {
    background: var(--ck-brand-accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(64, 145, 108, 0.35);
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 3px;
}

.ck-scroll-top:focus:not(:focus-visible) {
    outline: none;
}

.ck-scroll-top svg {
    width: 24px;
    height: 24px;
}

/* Mobile: WhatsApp is 60px → bottom = 20 + 60 + 12 = 92px */
@media (max-width: 767px) {
    .ck-scroll-top {
        --ck-scroll-top-bottom: 92px;
        --ck-scroll-top-size: 52px;
    }
}
