:root {
    --green-900: #0f5132;
    --green-700: #198754;
    --green-600: #20a36a;
    --green-100: #e8f5ee;
    --gold-500: #c89b3c;
    --text-900: #16202a;
    --text-600: #5f6b7a;
    --soft-shadow: 0 18px 45px rgba(15, 81, 50, .12);
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-900);
    background:
        radial-gradient(circle at top left, rgba(25,135,84,.11), transparent 30%),
        radial-gradient(circle at top right, rgba(200,155,60,.10), transparent 28%),
        #fbfcfb;
}

.topbar {
    background: linear-gradient(90deg, var(--green-900), #145c3a 45%, #0f5132);
    color: #fff;
    font-size: .92rem;
}

.navbar-glass {
    backdrop-filter: blur(18px);
    background: rgba(255,255,255,.72);
    border-bottom: 1px solid rgba(25,135,84,.08);
}

.brand-badge {
    width: 44px; height: 44px; border-radius: 14px;
    box-shadow: var(--soft-shadow);
    object-fit: contain; background: #fff;
}

.hero-wrap {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 92vh;
    background-position: center;
    background-size: cover;
}

.hero-wrap::before,
.hero-wrap::after {
    content: '';
    position: absolute;
    inset: auto;
    border-radius: 999px;
    filter: blur(8px);
    opacity: .22;
    z-index: -1;
    animation: floaty 10s ease-in-out infinite;
}
.hero-wrap::before {
    width: 360px; height: 360px; background: rgba(200,155,60,.40); top: -90px; right: -80px;
}
.hero-wrap::after {
    width: 280px; height: 280px; background: rgba(32,163,106,.35); bottom: 3%; left: -70px; animation-delay: -4s;
}

@keyframes floaty {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); }
    50% { transform: translateY(16px) translateX(8px) scale(1.06); }
}

.hero-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 30px 80px rgba(0,0,0,.22);
    backdrop-filter: blur(12px);
    border-radius: 28px;
}

.hero-kicker {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(255,255,255,.10);
    color: #fff;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 999px;
    padding: .55rem .95rem;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    line-height: .95;
    letter-spacing: -.04em;
    text-shadow: 0 10px 35px rgba(0,0,0,.25);
}

.hero-subtitle {
    color: rgba(255,255,255,.88);
    max-width: 52rem;
}

.floating-chip {
    display: inline-flex; align-items: center; gap: .45rem;
    padding: .55rem .85rem;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    color: #fff;
}

.pulse-dot {
    width: 10px; height: 10px; border-radius: 50%; background: #6ff2ad;
    box-shadow: 0 0 0 0 rgba(111,242,173,.7);
    animation: pulse 1.8s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(111,242,173,.68); }
    70% { box-shadow: 0 0 0 14px rgba(111,242,173,0); }
    100% { box-shadow: 0 0 0 0 rgba(111,242,173,0); }
}

.feature-card,
.info-card,
.story-card,
.stats-card,
.table-card,
.gallery-card {
    border: 0;
    border-radius: 24px;
    box-shadow: var(--soft-shadow);
    overflow: hidden;
}

.section-pad { padding: 90px 0; }
.section-title {
    font-size: clamp(1.7rem, 3vw, 2.7rem);
    letter-spacing: -.03em;
}
.section-lead { color: var(--text-600); max-width: 46rem; }

.icon-bubble {
    width: 58px; height: 58px; border-radius: 18px;
    display: grid; place-items: center;
    background: linear-gradient(145deg, var(--green-100), #fff);
    color: var(--green-700);
    font-size: 1.4rem;
}

.metric {
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(15,81,50,.08);
    border-radius: 22px;
    box-shadow: 0 10px 25px rgba(15,81,50,.08);
}

.table thead th {
    background: linear-gradient(90deg, var(--green-900), var(--green-700));
    color: #fff;
    border: 0;
}

.price { font-weight: 800; color: var(--green-700); }
.weight { color: var(--text-600); font-weight: 600; }
.small-muted { color: var(--text-600); font-size: .94rem; }

.sheet-box {
    position: relative;
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--soft-shadow);
    overflow: hidden;
}

.sheet-watermark {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: min(52vw, 420px);
    opacity: .05;
    pointer-events: none;
    user-select: none;
}

.sheet-header {
    background: linear-gradient(135deg, rgba(15,81,50,.07), rgba(200,155,60,.06));
}

.table-hover tbody tr {
    transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease;
}
.table-hover tbody tr:hover {
    transform: translateY(-1px);
    background: rgba(25,135,84,.04);
}

.gallery-img {
    aspect-ratio: 4 / 3;
    object-fit: contain;
    transition: transform .35s ease, filter .35s ease;
}
.gallery-card:hover .gallery-img { transform: scale(1.05); filter: saturate(1.08); }

.sticky-wa {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1040;
    border-radius: 999px;
    box-shadow: 0 18px 40px rgba(37, 211, 102, .38);
}

.review-pill {
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    padding: .5rem .8rem;
}

.timeline {
    position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 21px;
    width: 2px;
    background: linear-gradient(var(--green-700), rgba(25,135,84,.15));
}
.timeline-item {
    position: relative;
    padding-left: 62px;
    margin-bottom: 1.25rem;
}
.timeline-dot {
    position: absolute;
    left: 9px; top: 4px;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: #fff;
    border: 6px solid var(--green-700);
}

@media print {
    .no-print, .sticky-wa, .navbar, .topbar { display: none !important; }
    body { background: #fff !important; }
    .section-pad { padding: 24px 0 !important; }
    .sheet-box { box-shadow: none !important; }
    .sheet-watermark { opacity: .08 !important; }
    a[href]:after { content: ""; }
}