/* ==========================================================================
   CSS VARIABLES & BRONZE FOREST DESIGN (ZEHOVUS.ONL)
   ========================================================================== */
:root {
    --c-forest: #065f46; /* Emerald 800 - Forest Green */
    --c-forest-dark: #022c22; /* Emerald 950 */
    --c-bronze: #b45309; /* Amber 700 */
    --c-bronze-light: #d97706; /* Amber 600 */
    --c-bone: #f5f5f4; /* Stone 100 - Base background */
    --c-dark: #1c1917; /* Stone 900 */
    --c-text: #44403c; /* Stone 600 */
    --c-white: #ffffff;
    --c-line: #d6d3d1; /* Stone 300 */

    --pad-x: clamp(15px, 5vw, 30px);
    --pad-y: clamp(60px, 8vw, 100px);
    
    --rad-sm: 6px;
    --rad-md: 16px;
    
    --shadow-soft: 0 10px 30px rgba(6, 95, 70, 0.08);
    --shadow-bronze: 0 10px 20px rgba(180, 83, 9, 0.2);
    --trans: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
    font-family: 'Outfit', system-ui, sans-serif;
    background-color: var(--c-bone);
    color: var(--c-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* COMPACT HEADINGS */
h1, h2, h3, h4 { color: var(--c-dark); font-weight: 800; line-height: 1.2; margin-bottom: 1rem; letter-spacing: -0.5px; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -1px; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); color: var(--c-forest); }
p { font-size: clamp(1rem, 1.5vw, 1.1rem); margin-bottom: 1.5rem; font-weight: 400; }

a { text-decoration: none; color: inherit; transition: var(--trans); }
img { max-width: 100%; height: auto; display: block; border-radius: var(--rad-sm); }
ul { list-style: none; }

.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--pad-x); }
.sec-p { padding: var(--pad-y) 0; }
.txt-c { text-align: center; }

/* ==========================================================================
   HEADER (STRICT 10PX MOBILE PADDING)
   ========================================================================== */
.site-hdr { background: var(--c-white); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--c-line); }

.nav-forest-bar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 10px; /* STRICT 10PX MOBILE */
    max-width: 1200px; margin: 0 auto; position: relative;
}

@media (min-width: 768px) { .nav-forest-bar { padding: 20px var(--pad-x); } }

.brand { font-size: 1.8rem; font-weight: 900; color: var(--c-forest-dark); letter-spacing: 0.5px; text-transform: uppercase; }
.brand span { color: var(--c-bronze); }

.burger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.burger span { width: 28px; height: 3px; background: var(--c-dark); transition: var(--trans); border-radius: 2px; }
#menu-tog { display: none; }

.desk-nav { display: none; }
.desk-nav ul { display: flex; gap: 30px; align-items: center; }
.desk-nav a { font-weight: 700; color: var(--c-text); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.5px; }
.desk-nav a:hover, .desk-nav a.active { color: var(--c-bronze); }

.mob-nav {
    display: none; position: absolute; top: 100%; left: 0; width: 100%;
    background: var(--c-forest); padding: 15px 20px 25px; border-top: 3px solid var(--c-bronze); box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.mob-nav a { display: block; font-weight: 700; color: var(--c-white); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); text-transform: uppercase; }
.mob-nav li:last-child a { border-bottom: none; }
#menu-tog:checked ~ .mob-nav { display: block; }

@media (min-width: 992px) {
    .burger { display: none; }
    .desk-nav { display: block; }
    .mob-nav { display: none !important; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 16px 36px; font-weight: 800; font-size: 1rem; border-radius: 40px; cursor: pointer; transition: var(--trans); border: 2px solid transparent; text-transform: uppercase; letter-spacing: 0.5px; }
.btn-b { background: var(--c-bronze); color: var(--c-white); box-shadow: var(--shadow-bronze); }
.btn-b:hover { background: var(--c-forest-dark); color: var(--c-white); transform: translateY(-2px); box-shadow: var(--shadow-soft); border-color: var(--c-forest-dark); }
.btn-f { background: var(--c-white); border-color: var(--c-forest); color: var(--c-forest); }
.btn-f:hover { background: var(--c-forest); color: var(--c-white); }

/* ==========================================================================
   INDEX: SPLIT-CIRCLE SHOWCASE & HORIZONTAL SCROLL & HYDRATION UI
   ========================================================================== */
/* Split-Circle Showcase */
.circle-hero-wrap { padding: 40px var(--pad-x); display: flex; justify-content: center; overflow: hidden; }
.split-circle { width: 100%;  border-radius: 10px; display: flex; flex-direction: column; overflow: hidden; box-shadow: var(--shadow-soft); border: 8px solid var(--c-white); }
.sc-left { background: var(--c-bronze); padding: 10% 10% 5%; display: flex; flex-direction: column; justify-content: center; text-align: center; color: white; flex: 1; }
.sc-left h1 { color: white; margin-bottom: 15px; }
.sc-left p { color: var(--c-bone); font-size: 1.1rem; }
.sc-right { flex: 1; background: url('img/bg.jpg') center/cover; }
@media (min-width: 992px) {
    .split-circle { flex-direction: row;}
    .sc-left { padding: 5% 5% 5% 10%; text-align: left; }
    .sc-left p { font-size: 1.2rem; }
}

/* Horizontal Scroll Track */
.scroll-track-sec { background: var(--c-white); border-top: 1px solid var(--c-line); }
.scroll-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 20px var(--pad-x) 40px; scrollbar-width: thin; scrollbar-color: var(--c-forest) var(--c-line); }
.scroll-track::-webkit-scrollbar { height: 6px; }
.scroll-track::-webkit-scrollbar-track { background: var(--c-line); border-radius: 3px; }
.scroll-track::-webkit-scrollbar-thumb { background-color: var(--c-forest); border-radius: 3px; }
.st-card { flex: 0 0 85%; max-width: 350px; scroll-snap-align: center; background: var(--c-bone); padding: 40px 30px; border-radius: var(--rad-md); box-shadow: var(--shadow-soft); border: 1px solid var(--c-line); transition: var(--trans); }
.st-card:hover { border-color: var(--c-bronze); transform: translateY(-5px); background: var(--c-white); }
@media (min-width: 768px) { .scroll-track { justify-content: center; } .st-card { flex: 0 0 30%; } }
.st-ico { font-size: 2.5rem; margin-bottom: 15px; display: block; color: var(--c-forest); }

/* Hydration Level UI */
.hydration-ui { max-width: 700px; margin: 50px auto 0; background: var(--c-white); padding: 40px; border-radius: var(--rad-md); box-shadow: var(--shadow-soft); border: 2px dashed var(--c-bronze); }
.hyd-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; }
.hyd-label { font-weight: 800; color: var(--c-dark); font-size: 0.95rem; text-transform: uppercase; }
.hyd-bar-bg { width: 100%; height: 16px; background: var(--c-line); border-radius: 8px; overflow: hidden; margin-bottom: 10px; }
.hyd-bar-fill { height: 100%; border-radius: 8px; }
.fill-low { width: 35%; background: var(--c-text); }
.fill-opt { width: 90%; background: var(--c-forest); }
.hyd-desc { font-size: 0.9rem; color: var(--c-text); line-height: 1.4; margin-bottom: 30px; }
.hyd-desc:last-child { margin-bottom: 0; }

/* ==========================================================================
   GENERAL GRIDS
   ========================================================================== */
.g-2 { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 992px) { .g-2 { grid-template-columns: 1fr 1fr; gap: 50px; } }

/* ==========================================================================
   PROGRAM: STEPPED CHECKERBOARD & SLIT WINDOW & TAB PANEL
   ========================================================================== */
/* Stepped Checkerboard */
.checker-grid { display: grid; grid-template-columns: 1fr; max-width: 1000px; margin: 40px auto 0; border: 1px solid var(--c-line); border-radius: var(--rad-md); overflow: hidden; }
@media (min-width: 768px) { .checker-grid { grid-template-columns: 1fr 1fr; } }
.chk-box { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.chk-box.light { background: var(--c-white); }
.chk-box.dark { background: var(--c-forest-dark); color: white; }
.chk-box.dark h3 { color: var(--c-bronze-light); }
.chk-box.dark p { color: var(--c-line); }
.chk-num { font-size: 1.2rem; font-weight: 900; opacity: 0.5; margin-bottom: 10px; display: block; text-transform: uppercase; letter-spacing: 2px; }

/* Slit Window Reveal (REQUIRED bg-1.jpg) */
.slit-window { width: 100vw; position: relative; height: 350px; background: url('img/bg-1.jpg') center/cover fixed; margin: 60px 0; border-top: 6px solid var(--c-bronze); border-bottom: 6px solid var(--c-bronze); display: flex; align-items: center; justify-content: center; }
.slit-window::after { content: ''; position: absolute; inset: 0; background: rgba(2, 44, 34, 0.7); }
.sw-txt { position: relative; z-index: 2; color: white; text-align: center; padding: 0 20px; font-weight: 800; font-size: 1.5rem; letter-spacing: 1px; }

/* Interactive Tab Panel FAQ */
.tab-container { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; background: var(--c-white); border-radius: var(--rad-md); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--c-line); }
@media (min-width: 768px) { .tab-container { flex-direction: row; min-height: 300px; } }
.tab-buttons { display: flex; flex-direction: column; background: var(--c-bone); width: 100%; border-right: 1px solid var(--c-line); }
@media (min-width: 768px) { .tab-buttons { width: 40%; } }
.tab-btn { padding: 20px; text-align: left; border: none; background: transparent; font-family: inherit; font-weight: 800; font-size: 1rem; color: var(--c-text); cursor: pointer; transition: var(--trans); border-bottom: 1px solid var(--c-line); }
.tab-btn.active { background: var(--c-white); color: var(--c-forest); border-left: 4px solid var(--c-forest); }
.tab-content-area { padding: 40px; width: 100%; display: flex; align-items: center; }
@media (min-width: 768px) { .tab-content-area { width: 60%; } }
.tab-pane { display: none; font-size: 1.05rem; color: var(--c-text); animation: fadeIn 0.4s ease; }
.tab-pane.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ==========================================================================
   MISSION: TYPOGRAPHIC POSTER & FLOATING HEXAGON & PRICING TIERS
   ========================================================================== */
/* Typographic Poster Background */
.typo-bg { position: relative; background: var(--c-forest); padding: 100px 0; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.typo-bg::before { content: '2020'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 35vw; font-weight: 900; color: rgba(255,255,255,0.05); pointer-events: none; line-height: 1; }
.typo-content { position: relative; z-index: 2; background: rgba(255, 255, 255, 0.95); padding: clamp(30px, 5vw, 50px); border-radius: var(--rad-sm); max-width: 800px; margin: 0 auto; box-shadow: var(--shadow-soft); text-align: center; border-bottom: 6px solid var(--c-bronze); }

/* Floating Hexagon (REQUIRED bg.jpg) */
.mission-story-wrap { max-width: 1000px; margin: 60px auto 0; text-align: justify; }
.mission-story-wrap::after { content: ''; display: table; clear: both; }
.hex-float { float: right; width: 300px; height: 320px; background: url('img/bg.jpg') center/cover; clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); margin: 0 0 20px 40px; shape-outside: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); }
@media (max-width: 768px) { .hex-float { float: none; display: block; margin: 0 auto 30px; shape-outside: none; } }

/* Pricing Tier Style Values */
.tier-cards { display: grid; grid-template-columns: 1fr; gap: 30px; max-width: 1000px; margin: 60px auto 0; }
@media (min-width: 768px) { .tier-cards { grid-template-columns: repeat(3, 1fr); align-items: end; } }
.tier { background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--rad-sm); padding: 40px 30px; text-align: center; box-shadow: var(--shadow-soft); transition: var(--trans); }
.tier-mid { border-color: var(--c-forest); border-width: 2px; padding: 50px 30px; position: relative; }
.tier-mid::before { content: 'Utama'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--c-forest); color: white; padding: 4px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; }
.tier h3 { color: var(--c-bronze); border-bottom: 1px solid var(--c-line); padding-bottom: 15px; margin-bottom: 20px; }
.tier p { font-size: 0.95rem; margin: 0; }

/* ==========================================================================
   FORM (4 FIELDS)
   ========================================================================== */
.frm-ui { background: var(--c-white); padding: clamp(30px, 5vw, 50px); border-radius: var(--rad-sm); box-shadow: var(--shadow-soft); max-width: 600px; margin: 0 auto; border-top: 6px solid var(--c-forest); }
.f-row { margin-bottom: 20px; }
.f-row label { display: block; font-weight: 800; color: var(--c-dark); margin-bottom: 8px; font-size: 0.9rem; text-transform: uppercase; }
.f-row input, .f-row textarea { width: 100%; padding: 15px; border: 2px solid var(--c-line); border-radius: var(--rad-sm); font-family: inherit; font-size: 1rem; background: var(--c-bone); transition: var(--trans); }
.f-row input:focus, .f-row textarea:focus { outline: none; border-color: var(--c-bronze); background: var(--c-white); box-shadow: inset 3px 0 0 var(--c-bronze); }
.f-row textarea { min-height: 120px; resize: vertical; }

/* ==========================================================================
   FOOTER (HARDCODED COLORS & !IMPORTANT)
   ========================================================================== */
.site-ftr { background-color: #022c22 !important; color: #d6d3d1 !important; padding: 60px 0 30px; margin-top: 80px; }
.ftr-g { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 50px; }
@media (min-width: 768px) { .ftr-g { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); } }
.f-logo { font-size: 2rem; font-weight: 900; color: #ffffff !important; margin-bottom: 15px; display: block; letter-spacing: 0.5px; text-transform: uppercase; }
.f-logo span { color: #b45309 !important; } /* Bronze */
.f-desc { font-size: 0.9rem; line-height: 1.6; color: #d6d3d1 !important; font-weight: 400; }
.f-h { color: #ffffff !important; font-size: 1.05rem; font-weight: 800; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }
.f-links li { margin-bottom: 10px; }
.f-links a { font-weight: 500; transition: var(--trans); color: #d6d3d1 !important; }
.f-links a:hover { color: #f59e0b !important; padding-left: 5px; }
.f-copy { border-top: 1px solid #064e3b !important; padding-top: 25px; text-align: center; font-size: 0.9rem; color: #a8a29e !important; }

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */
#ck-bnnr { position: fixed; bottom: 20px; left: 20px; right: 20px; background: var(--c-white); padding: 20px 25px; border-radius: var(--rad-sm); z-index: 9999; display: flex; flex-direction: column; gap: 15px; transform: translateY(150%); transition: 0.5s ease; box-shadow: var(--shadow-soft); border-left: 6px solid var(--c-bronze); max-width: 800px; margin: 0 auto; }
#ck-bnnr.show { transform: translateY(0); }
.ck-txt { margin: 0; font-size: 0.9rem; line-height: 1.5; color: var(--c-text); font-weight: 500; }
.ck-txt a { color: var(--c-forest); font-weight: 800; text-decoration: underline; }
.ck-acts { display: flex; gap: 10px; }
.b-ck { padding: 10px 20px; border: 1px solid transparent; border-radius: var(--rad-sm); font-weight: 800; cursor: pointer; flex: 1; transition: var(--trans); font-size: 0.85rem; text-align: center; text-transform: uppercase; letter-spacing: 0.5px; }
.b-ck.y { background: var(--c-forest); color: #fff; }
.b-ck.y:hover { background: var(--c-dark); }
.b-ck.n { background: var(--c-white); color: var(--c-dark); border-color: var(--c-line); }
.b-ck.n:hover { background: var(--c-bone); }
@media (min-width: 768px) { #ck-bnnr { flex-direction: row; align-items: center; justify-content: space-between; } .ck-acts { width: auto; flex-shrink: 0; } .b-ck { flex: none; } }