/* ========================================
   PilihSehat - Neo-Glassmorphism Styles
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --color-primary: #6200EE;
    --color-primary-dark: #3700B3;
    --color-primary-light: #BB86FC;
    --color-health: #00C853;
    --color-text: #1A237E;
    --color-text-light: #5C6BC0;
    --color-bg-start: #E0F2F1;
    --color-bg-end: #FFFFFF;
    --color-white: #FFFFFF;
    --color-gray-100: #F5F5F5;
    --color-gray-200: #EEEEEE;
    --color-gray-300: #E0E0E0;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px rgba(26, 35, 126, 0.1);
    --glass-blur: 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 35, 126, 0.08);
    --shadow-md: 0 4px 16px rgba(26, 35, 126, 0.12);
    --shadow-lg: 0 8px 32px rgba(26, 35, 126, 0.16);
    --shadow-xl: 0 16px 48px rgba(26, 35, 126, 0.2);
    
    /* Typography */
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 100px 0;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: linear-gradient(135deg, var(--color-bg-start) 0%, var(--color-bg-end) 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container */
.jfsmgd7p {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Glassmorphism Card Base
   ======================================== */
.lmg8rn5q {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
}

/* ========================================
   Header
   ======================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-normal);
}

.vuas43s2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.ubidt41c {
    font-size: 28px;
    font-weight: 800;
}

.rgk1kzch {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-health) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.nav {
    display: flex;
    gap: 32px;
}

.cd7pi5rr {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color var(--transition-fast);
    position: relative;
}

.cd7pi5rr::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-health));
    transition: width var(--transition-normal);
}

.cd7pi5rr:hover {
    color: var(--color-primary);
}

.cd7pi5rr:hover::after {
    width: 100%;
}

/* ========================================
   Buttons
   ======================================== */
.onmtnn81 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.c08xbnx0 {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(98, 0, 238, 0.4);
}

.c08xbnx0:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(98, 0, 238, 0.5);
}

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

.wupyzc3r {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.wupyzc3r:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.r9hlmes3 {
    padding: 16px 36px;
    font-size: 17px;
}

.tc1t2arn {
    width: 100%;
}

.eigzy3cr {
    width: 20px;
    height: 20px;
}

/* ========================================
   Hero Section
   ======================================== */
.tt6avoce {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.q9aor18x {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.ldsokpfq {
    max-width: 580px;
}

.qv839kaa {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--color-text);
}

.yc1te4sm {
    font-size: 20px;
    color: var(--color-text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.p6odwktj {
    position: relative;
}

.qp6l31o4 {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.exesyxai {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.qoaahsfu {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ped3bb9m {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--color-health);
}

.av6g6kqt {
    width: 12px;
    height: 12px;
    background: var(--color-health);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Background Shapes */
.gkr470ud {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.ea7wzcvp {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.oscfarct {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--color-primary-light), transparent);
    top: -100px;
    right: -100px;
}

.sdoltemb {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--color-health), transparent);
    bottom: 10%;
    left: -50px;
}

.v36no1cc {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #B3E5FC, transparent);
    top: 50%;
    right: 10%;
}

/* ========================================
   Sections Common
   ======================================== */
.section {
    padding: var(--section-padding);
    position: relative;
    z-index: 10;
}

.dif3kgte {
    text-align: center;
    margin-bottom: 60px;
}

.pcwtvse7 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--color-text);
}

.pygzwpa1 {
    font-size: 18px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Cara Kerja Section
   ======================================== */
.gf4xuwfg {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
}

.tiyvuqg8 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.d2tmgsnx {
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all var(--transition-normal);
}

.d2tmgsnx:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.kgi0cftg {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wxbg5vcu {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(98, 0, 238, 0.3);
}

.wxbg5vcu svg {
    width: 40px;
    height: 40px;
    color: var(--color-white);
}

.stk10d0j {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
}

.o1b6dnsi {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.z1paierh {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(98, 0, 238, 0.1);
    line-height: 1;
}

/* ========================================
   Paket Section
   ======================================== */
.l8odnwc1 {
    background: linear-gradient(180deg, transparent 0%, rgba(224, 242, 241, 0.5) 50%, transparent 100%);
}

.pb2jbff8 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.xvgvtb1x {
    padding: 0;
    overflow: hidden;
    position: relative;
    transition: all var(--transition-normal);
}

.xvgvtb1x:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.xvgvtb1x.lih4exjf {
    border: 2px solid var(--color-primary);
    box-shadow: 0 8px 40px rgba(98, 0, 238, 0.2);
}

.xvgvtb1x.lih4exjf:hover {
    box-shadow: 0 16px 50px rgba(98, 0, 238, 0.3);
}

.bdhbfy5k {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    background: var(--color-health);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius-full);
    z-index: 10;
}

.xqyxy1ed {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.t79lm3rk {
    padding: 32px 24px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(26, 35, 126, 0.1);
}

.tpbmw7g9 {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.qtmdukhv {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 8px;
}

.w9jg867e {
    font-size: 14px;
    color: var(--color-text-light);
}

.oxl4e1o0 {
    padding: 32px 24px;
}

.mupyb8vz {
    text-align: center;
    margin-bottom: 28px;
}

.ecwhwnwb {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-light);
    vertical-align: top;
}

.iewfskme {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.ywyhy5ts {
    font-size: 14px;
    color: var(--color-text-light);
    margin-left: 4px;
}

.e7qvy5u2 {
    list-style: none;
    margin-bottom: 28px;
}

.e7qvy5u2 li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--color-text);
    border-bottom: 1px solid rgba(26, 35, 126, 0.05);
}

.e7qvy5u2 li:last-child {
    border-bottom: none;
}

.e7qvy5u2 svg {
    width: 20px;
    height: 20px;
    color: var(--color-health);
    flex-shrink: 0;
}

/* ========================================
   Tanya Pakar Section
   ======================================== */
.lqwzjcrv {
    padding-bottom: 120px;
}

.v3tyus97 {
    padding: 48px;
}

.r7btp31w {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.lyq9of1t {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ldvkvrq7 {
    position: relative;
    width: 200px;
    height: 200px;
}

.ss93m4am {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.ztbgz43l {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-health) 0%, #00E676 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 200, 83, 0.4);
}

.ztbgz43l svg {
    width: 24px;
    height: 24px;
    color: var(--color-white);
}

.wv0cvkci {
    padding-top: 20px;
}

.c1v8uh0v {
    font-size: 26px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 8px;
}

.yu4x4tgd {
    font-size: 16px;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.lao128zv {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* Form */
.pvjl64fo {
    background: rgba(255, 255, 255, 0.6);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.t0pqa7p1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 24px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.zefxp69v {
    display: flex;
    flex-direction: column;
}

.ng2tybvo {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-family);
    font-size: 15px;
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(26, 35, 126, 0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    outline: none;
}

.ng2tybvo::placeholder {
    color: var(--color-text-light);
}

.ng2tybvo:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(98, 0, 238, 0.1);
}

.upbjz8tn {
    resize: vertical;
    min-height: 120px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: linear-gradient(180deg, transparent 0%, rgba(26, 35, 126, 0.05) 100%);
    padding: 80px 0 40px;
}

.my8i8dpb {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.d5nlrjnf .ubidt41c {
    margin-bottom: 16px;
}

.wm6wf28x {
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.l39g36gv {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.l39g36gv svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.e1amgayc {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
}

.rrmd80v5 ul {
    list-style: none;
}

.rrmd80v5 li {
    margin-bottom: 12px;
}

.rrmd80v5 a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-fast);
}

.rrmd80v5 a:hover {
    color: var(--color-primary);
}

.o1ov0n5o {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.dyun10sk {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.dyun10sk:hover {
    background: var(--color-primary);
}

.dyun10sk:hover svg {
    color: var(--color-white);
}

.dyun10sk svg {
    width: 20px;
    height: 20px;
    color: var(--color-text-light);
    transition: color var(--transition-fast);
}

.a06tpkch {
    padding-top: 32px;
    border-top: 1px solid rgba(26, 35, 126, 0.1);
    text-align: center;
}

.a06tpkch p {
    font-size: 14px;
    color: var(--color-text-light);
}

/* ========================================
   Modal
   ======================================== */
.elb3tlj4 {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.elb3tlj4[style*="display: flex"] {
    display: flex;
}

.lzjo7yt3 {
    position: absolute;
    inset: 0;
    background: rgba(26, 35, 126, 0.6);
    backdrop-filter: blur(4px);
}

.cmnem7jm {
    position: relative;
    width: 100%;
    max-width: 480px;
    padding: 48px 40px;
    z-index: 10;
    transform: scale(0.9) translateY(20px);
    transition: transform var(--transition-normal);
}

.elb3tlj4[style*="display: flex"] .cmnem7jm {
    transform: scale(1) translateY(0);
}

.fbiipd1m {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.fbiipd1m:hover {
    background: var(--color-primary);
}

.fbiipd1m svg {
    width: 20px;
    height: 20px;
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.fbiipd1m:hover svg {
    color: var(--color-white);
}

.voc08qjw {
    text-align: center;
}

.i5ozpsgr {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--color-health) 0%, #00E676 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 200, 83, 0.3);
}

.i5ozpsgr svg {
    width: 40px;
    height: 40px;
    color: var(--color-white);
}

.wdnsr8ae {
    font-size: 26px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 16px;
}

.i0oik3e8 {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .q9aor18x {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ldsokpfq {
        max-width: 100%;
    }
    
    .qv839kaa {
        font-size: 42px;
    }
    
    .p6odwktj {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .tiyvuqg8 {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pb2jbff8 {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .r7btp31w {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .lyq9of1t {
        align-items: center;
    }
    
    .my8i8dpb {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .qv839kaa {
        font-size: 32px;
    }
    
    .yc1te4sm {
        font-size: 16px;
    }
    
    .pcwtvse7 {
        font-size: 32px;
    }
    
    .v3tyus97 {
        padding: 24px;
    }
    
    .ldvkvrq7 {
        width: 150px;
        height: 150px;
    }
    
    .my8i8dpb {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cmnem7jm {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .jfsmgd7p {
        padding: 0 16px;
    }
    
    .tt6avoce {
        padding-top: 60px;
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .qv839kaa {
        font-size: 28px;
    }
    
    .r9hlmes3 {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .pcwtvse7 {
        font-size: 26px;
    }
    
    .pygzwpa1 {
        font-size: 15px;
    }
    
    .mupyb8vz {
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 4px;
    }
    
    .iewfskme {
        font-size: 36px;
    }
}
