:root {
    --jf-primary: #2f5b36;
    --jf-primary-dark: #21442a;
    --jf-accent: #d3a14a;
    --jf-accent-soft: #f3dfb9;
    --jf-cream: #f8f2e7;
    --jf-cream-strong: #efe3cf;
    --jf-surface: #fffdf8;
    --jf-text: #1d2318;
    --jf-muted: #5b6357;
    --jf-border: rgba(47, 91, 54, 0.12);
    --jf-shadow: 0 24px 60px rgba(42, 58, 34, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--jf-text);
    background:
        radial-gradient(circle at top left, rgba(211, 161, 74, 0.18), transparent 26%),
        linear-gradient(180deg, #fffef9 0%, #f8f2e7 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 10% 10%, rgba(211, 161, 74, 0.12), transparent 22%),
        radial-gradient(circle at 90% 12%, rgba(47, 91, 54, 0.08), transparent 20%),
        radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.45), transparent 30%);
    opacity: 0.75;
    animation: jfAmbientShift 18s ease-in-out infinite alternate;
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: "DM Serif Display", serif;
    letter-spacing: -0.02em;
}

p {
    margin: 0;
    color: var(--jf-muted);
    line-height: 1.75;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header {
    background: rgba(255, 252, 246, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(47, 91, 54, 0.08);
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.topbar-strip {
    max-height: 60px;
    overflow: hidden;
    border-bottom: 1px solid rgba(47, 91, 54, 0.08);
    background: rgba(239, 227, 207, 0.58);
    transition: max-height 0.3s ease, opacity 0.25s ease, border-color 0.25s ease, transform 0.3s ease;
}

.topbar-content,
.topbar-meta {
    display: flex;
    align-items: center;
}

.topbar-content {
    justify-content: space-between;
    gap: 20px;
    min-height: 52px;
}

.topbar-meta {
    flex-wrap: wrap;
    gap: 16px 24px;
}

.topbar-meta a,
.topbar-meta span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--jf-primary-dark);
}

.topbar-meta i {
    color: var(--jf-primary);
}

.site-header.is-scrolled {
    background: rgba(255, 252, 246, 0.96);
    border-bottom-color: rgba(47, 91, 54, 0.14);
    box-shadow: 0 12px 30px rgba(29, 35, 24, 0.06);
}

.site-header.is-scrolled .topbar-strip {
    max-height: 0;
    opacity: 0;
    border-bottom-color: transparent;
    transform: translateY(-8px);
}

.navbar {
    padding: 18px 0;
    transition: padding 0.3s ease;
}

.brand-mark {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    color: var(--jf-primary);
    transition: transform 0.3s ease;
}

.brand-script {
    font-family: "DM Serif Display", serif;
    font-size: 1.9rem;
    font-style: italic;
    transition: font-size 0.3s ease;
}

.brand-text {
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: font-size 0.3s ease, letter-spacing 0.3s ease;
}

.nav-link {
    padding: 10px 16px !important;
    color: var(--jf-text) !important;
    font-weight: 700;
    opacity: 0.78;
    transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.is-current {
    opacity: 1;
    color: var(--jf-primary) !important;
}

.nav-link:hover {
    transform: translateY(-1px);
}

.nav-cta {
    margin-top: 14px;
    transition: transform 0.3s ease, padding 0.3s ease, min-height 0.3s ease;
}

.site-header.is-scrolled .navbar {
    padding: 8px 0;
}

.site-header.is-scrolled .brand-mark {
    transform: translateY(-1px);
}

.site-header.is-scrolled .brand-script {
    font-size: 1.6rem;
}

.site-header.is-scrolled .brand-text {
    font-size: 0.86rem;
    letter-spacing: 0.16em;
}

.site-header.is-scrolled .nav-link {
    padding: 8px 14px !important;
}

.site-header.is-scrolled .nav-cta {
    min-height: 46px;
    padding: 0 20px;
    transform: none;
}

.button-primary,
.button-secondary,
.button-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--jf-primary) 0%, #46734e 100%);
    box-shadow: 0 16px 35px rgba(47, 91, 54, 0.24);
}

.button-secondary {
    color: var(--jf-primary);
    background: rgba(47, 91, 54, 0.08);
    border: 1px solid rgba(47, 91, 54, 0.14);
}

.button-light {
    color: var(--jf-primary-dark);
    background: #fff;
}

.small-button {
    min-height: 48px;
    padding: 0 18px;
}

.button-primary:hover,
.button-secondary:hover,
.button-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(47, 91, 54, 0.18);
}

.eyebrow {
    display: inline-flex;
    padding: 8px 14px;
    margin-bottom: 20px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(47, 91, 54, 0.08);
    color: var(--jf-primary);
}

.eyebrow.light {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.hero-section,
.page-hero {
    position: relative;
    overflow: hidden;
}

.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.75;
    pointer-events: none;
}

.hero-section::before {
    top: 60px;
    right: 10%;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(211, 161, 74, 0.25), transparent 70%);
    animation: jfFloatY 9s ease-in-out infinite;
}

.hero-section::after {
    left: -40px;
    bottom: 10px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(47, 91, 54, 0.12), transparent 70%);
    animation: jfFloatY 11s ease-in-out infinite reverse;
}

.hero-section {
    padding: 34px 0 46px;
}

.hero-shell {
    padding: 0 18px;
}

.hero-stage {
    position: relative;
    min-height: 680px;
    border-radius: 0 0 42px 42px;
    overflow: hidden;
    background: linear-gradient(135deg, #244d2e 0%, #325f3a 100%);
    box-shadow: 0 32px 80px rgba(42, 58, 34, 0.14);
}

.hero-stage-media {
    position: absolute;
    inset: 0;
}

.hero-stage-image,
.hero-stage-wash,
.hero-stage-glow {
    position: absolute;
    inset: 0;
}

.hero-stage-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.1s ease, transform 5.8s ease;
    will-change: opacity, transform;
}

.hero-stage-image.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-stage-wash {
    background:
    linear-gradient(180deg, rgba(18, 33, 21, 0.18), rgba(18, 33, 21, 0.06) 42%, rgba(18, 33, 21, 0.22) 100%),
    linear-gradient(90deg, rgba(33, 68, 42, 0.82) 0%, rgba(33, 68, 42, 0.62) 34%, rgba(33, 68, 42, 0.2) 58%, rgba(33, 68, 42, 0.1) 100%);
}

.hero-stage-glow {
    background:
        radial-gradient(circle at 18% 18%, rgba(211, 161, 74, 0.22), transparent 28%),
        radial-gradient(circle at 78% 30%, rgba(255, 255, 255, 0.16), transparent 22%),
        radial-gradient(circle at 92% 84%, rgba(47, 91, 54, 0.2), transparent 26%);
}

.hero-stage-content,
.hero-stage-card {
    position: relative;
    z-index: 2;
}

.hero-stage-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 680px;
    padding-top: 86px;
    padding-bottom: 38px;
}

.hero-kicker {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: -4px 0 20px;
}

.hero-kicker span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--jf-primary);
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(47, 91, 54, 0.09);
}

.hero-content-panel {
    max-width: 640px;
    padding: 10px 0 0;
}

.hero-section .eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.hero-section .hero-kicker span {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.hero-inline-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.96rem;
    font-weight: 700;
}

.hero-inline-note i {
    color: var(--jf-accent-soft);
}

.hero-section h1 {
    font-size: clamp(3rem, 5vw, 5.2rem);
    line-height: 1;
    max-width: 12ch;
    color: #fff;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.hero-copy {
    margin-top: 22px;
    max-width: 58ch;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.84);
}

.hero-proof-list {
    display: grid;
    gap: 10px;
    margin-top: 24px;
    max-width: 34rem;
}

.hero-proof-list li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
}

.hero-proof-list i {
    color: var(--jf-accent-soft);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-cta-note {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    font-weight: 700;
}

.hero-ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.hero-stage-bottom {
    max-width: 760px;
}

.hero-highlights-stage {
    margin-top: 0;
}

.highlight-item {
    padding: 18px 18px 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(14px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.highlight-item:hover {
    transform: translateY(-6px);
    border-color: rgba(47, 91, 54, 0.18);
    box-shadow: 0 28px 50px rgba(42, 58, 34, 0.14);
}

.highlight-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: #fff;
}

.highlight-item span {
    display: block;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-stage-card {
    position: absolute;
    right: 56px;
    top: 72px;
    width: min(390px, calc(100% - 112px));
    padding: 28px 28px 30px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 26px 70px rgba(42, 58, 34, 0.16);
    backdrop-filter: blur(16px);
}

.hero-stage-card h2 {
    font-size: clamp(2rem, 2.5vw, 2.7rem);
    line-height: 1.08;
    margin-bottom: 10px;
}

.hero-stage-card p {
    max-width: 32ch;
}

.hero-rotator-panel {
    display: grid;
    gap: 14px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(47, 91, 54, 0.12);
}

.hero-rotator-copy strong {
    display: block;
    color: var(--jf-text);
    font-size: 1rem;
    font-weight: 900;
}

.hero-rotator-copy span {
    display: block;
    margin-top: 6px;
    color: var(--jf-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.hero-rotator-dots {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-rotator-dot {
    position: relative;
    width: 42px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(47, 91, 54, 0.18);
    overflow: hidden;
    transition: width 0.35s ease, background 0.35s ease, transform 0.35s ease;
}

.hero-rotator-dot::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(211, 161, 74, 0.92), rgba(47, 91, 54, 0.95));
    transform: scaleX(0);
    transform-origin: left center;
    opacity: 0;
}

.hero-rotator-dot.is-active {
    width: 68px;
    background: linear-gradient(90deg, var(--jf-primary), #698c54);
}

.hero-rotator-dot.is-active::after {
    opacity: 1;
    animation: jfHeroProgress 4.8s linear forwards;
}

.hero-rotator-dot:hover {
    transform: translateY(-1px);
}

.hero-rotator-dot:focus-visible {
    outline: 2px solid rgba(47, 91, 54, 0.32);
    outline-offset: 3px;
}

.hero-rotator-progress {
    position: relative;
    width: min(220px, 100%);
    height: 3px;
    border-radius: 999px;
    background: rgba(47, 91, 54, 0.12);
    overflow: hidden;
}

.hero-rotator-progress-bar {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(211, 161, 74, 0.92), rgba(47, 91, 54, 0.95));
    transform: scaleX(0);
    transform-origin: left center;
}

.hero-rotator-progress-bar.is-playing {
    animation: jfHeroProgress 4.8s linear forwards;
}

.hero-banner-card {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid var(--jf-border);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--jf-shadow);
    transform: perspective(1400px) rotateX(0deg) rotateY(0deg);
    transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.hero-banner-card:hover {
    transform: perspective(1400px) rotateX(1.5deg) rotateY(-2deg) translateY(-6px);
    border-color: rgba(47, 91, 54, 0.18);
    box-shadow: 0 34px 70px rgba(42, 58, 34, 0.18);
}

.hero-banner-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    transition: transform 0.8s ease;
}

.hero-banner-card:hover .hero-banner-image {
    transform: scale(1.05);
}

.hero-banner-copy {
    padding: 26px 28px 30px;
}

.hero-banner-copy h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    margin-bottom: 12px;
}

.hero-badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hero-badge-list span {
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(47, 91, 54, 0.08);
    color: var(--jf-primary);
    font-size: 0.9rem;
    font-weight: 800;
    transition: transform 0.3s ease, background 0.3s ease;
}

.hero-badge-list span:hover {
    transform: translateY(-2px);
    background: rgba(47, 91, 54, 0.12);
}

    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(211, 161, 74, 0.92), rgba(47, 91, 54, 0.95));
    transform: scaleX(0);
    transform-origin: left center;
    opacity: 0;
}
.showcase-panel,
.showcase-card,
.feature-card,
.benefit-card,
.product-card,
.usage-card,
.testimonial-card,
.timeline-card,
.soft-panel,
.contact-card,
.faq-card,
.form-card,
.detail-card,
.story-card,
.value-card,
.delivery-card,
.checklist-card,
.pricing-card {
    border: 1px solid var(--jf-border);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--jf-shadow);
}

.glass-panel {
    padding: 30px;
    border-radius: 30px;
}

.showcase-panel {
    position: static;
    width: 100%;
    grid-column: 1;
    grid-row: 1 / span 2;
}

.showcase-panel h2 {
    font-size: 3.1rem;
    margin-bottom: 8px;
}

.panel-tag,
.product-badge {
    display: inline-flex;
    padding: 6px 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--jf-primary);
    background: rgba(47, 91, 54, 0.08);
    box-shadow: inset 0 0 0 1px rgba(47, 91, 54, 0.04);
}

.product-visual {
    position: static;
    width: 100%;
    min-height: 390px;
    height: 100%;
    padding: 24px;
    border-radius: 40px;
    grid-column: 2;
    grid-row: 1;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.95), rgba(243, 223, 185, 0.6)),
        linear-gradient(180deg, #fdf9f1 0%, #e9dbc2 100%);
}

.mini-stat {
    position: static;
    width: 100%;
    padding: 24px;
    border-radius: 28px;
    grid-column: 2;
    grid-row: 2;
}

.mini-stat strong {
    display: block;
    margin-bottom: 8px;
    color: var(--jf-primary);
}

.bottle-visual {
    position: relative;
    width: 168px;
    height: 300px;
    margin: 30px auto 0;
}

.bottle-cap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 34px;
    border-radius: 16px 16px 8px 8px;
    background: #313131;
}

.bottle-body {
    position: absolute;
    top: 26px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 248px;
    border-radius: 36px 36px 30px 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 243, 230, 0.98) 100%);
    border: 3px solid rgba(255, 255, 255, 0.7);
    box-shadow: inset 0 -20px 30px rgba(211, 161, 74, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.bottle-body small {
    font-family: "DM Serif Display", serif;
    font-size: 1.6rem;
    font-style: italic;
    color: #403827;
}

.bottle-body strong {
    font-size: 1.55rem;
    color: #3a4a35;
}

.bottle-body em {
    margin-top: 10px;
    font-style: normal;
    font-size: 0.95rem;
    color: var(--jf-muted);
}

.compact-list,
.check-list,
.footer-links,
.muted-list {
    display: grid;
    gap: 12px;
}

.check-list li,
.muted-list li {
    position: relative;
    padding-left: 28px;
    color: var(--jf-text);
}

.check-list li::before,
.muted-list li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--jf-primary) 0%, var(--jf-accent) 100%);
}

.section-block {
    padding: 96px 0;
}

.trust-ribbon-section {
    position: relative;
    margin-top: -10px;
    padding-bottom: 26px;
}

.trust-ribbon {
    overflow: hidden;
    padding: 18px 0;
    border-top: 1px solid rgba(47, 91, 54, 0.08);
    border-bottom: 1px solid rgba(47, 91, 54, 0.08);
    background: rgba(255, 255, 255, 0.74);
}

.trust-ribbon-track {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    padding-left: 18px;
    animation: jfRibbon 28s linear infinite;
}

.trust-ribbon-track span {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--jf-primary-dark);
}

.trust-ribbon-track span::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--jf-primary), var(--jf-accent));
}

.cream-section {
    background: linear-gradient(180deg, rgba(239, 227, 207, 0.55) 0%, rgba(255, 253, 248, 0.85) 100%);
}

.faq-ornament-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.faq-ornament-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("../img/kandang2.png") center center / cover no-repeat;
    opacity: 0.24;
    pointer-events: none;
    z-index: 0;
}

.faq-ornament-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(255, 252, 246, 0.74) 0%, rgba(255, 252, 246, 0.8) 100%);
    pointer-events: none;
    z-index: 0;
}

.faq-ornament-section > .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 767.98px) {
    .faq-ornament-section::before {
        background-position: center top;
        opacity: 0.2;
    }
}

.green-section {
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(211, 161, 74, 0.18), transparent 24%),
        linear-gradient(135deg, #204629 0%, #2f5b36 50%, #3a6a42 100%);
}

.benefit-ornament-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.benefit-ornament-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    bottom: 0;
    height: auto;
    background: url("../img/kandan.png") center top / cover no-repeat;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.benefit-ornament-section > .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 767.98px) {
    .benefit-ornament-section::before {
        bottom: 0;
        background-position: center center;
        opacity: 0.08;
    }
}

.green-section p,
.green-section .muted-list li,
.green-section .product-card p,
.green-section .product-card li {
    color: rgba(255, 255, 255, 0.82);
}

.green-section .product-card,
.green-section .pricing-card.product-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(47, 91, 54, 0.12);
}

.green-section .featured-product {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 223, 185, 0.88) 100%);
}

.green-section .product-card h3,
.green-section .product-card p,
.green-section .product-card li {
    color: var(--jf-text);
}

.green-section .product-card .product-badge {
    background: rgba(47, 91, 54, 0.08);
    color: var(--jf-primary);
}

.section-heading {
    margin-bottom: 20px;
}

.section-heading p {
    max-width: 36rem;
}

.section-heading h2,
.info-panel h2,
.timeline-card h2,
.cta-panel h2,
.page-hero h1 {
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 1.08;
}

.center-heading {
    max-width: 760px;
    margin: 0 auto 18px;
    text-align: center;
}

.feature-card,
.benefit-card,
.usage-card,
.product-card,
.testimonial-card,
.story-card,
.value-card,
.pricing-card,
.detail-card,
.delivery-card,
.checklist-card,
.contact-card,
.faq-card,
.form-card {
    height: 100%;
    padding: 30px;
    border-radius: 30px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.feature-card:hover,
.benefit-card:hover,
.usage-card:hover,
.product-card:hover,
.testimonial-card:hover,
.story-card:hover,
.value-card:hover,
.pricing-card:hover,
.detail-card:hover,
.delivery-card:hover,
.checklist-card:hover,
.contact-card:hover,
.faq-card:hover,
.form-card:hover {
    transform: translateY(-8px);
    border-color: rgba(47, 91, 54, 0.18);
    box-shadow: 0 30px 60px rgba(42, 58, 34, 0.16);
}

.feature-icon {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 18px;
    color: var(--jf-primary);
    background: rgba(47, 91, 54, 0.08);
    font-size: 1.3rem;
}

.benefit-card {
    height: 100%;
    padding: 30px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(243, 223, 185, 0.42) 100%);
}

.insight-row {
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(47, 91, 54, 0.05);
    border: 1px solid rgba(47, 91, 54, 0.08);
}

.insight-row strong {
    display: block;
    margin-bottom: 8px;
    color: var(--jf-primary);
}

.feature-card h3,
.benefit-card h3,
.usage-card h3,
.product-card h3,
.testimonial-card strong,
.process-step h3,
.contact-card h3,
.faq-card h3,
.detail-card h3,
.story-card h3,
.value-card h3,
.pricing-card h3,
.delivery-card h3,
.checklist-card h3,
.form-card h3 {
    margin-bottom: 10px;
    font-size: 1.7rem;
}

.soft-panel,
.timeline-card,
.cta-panel {
    padding: 38px;
    border-radius: 34px;
}

.timeline-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 223, 185, 0.52) 100%);
}

.process-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 18px;
    padding-top: 24px;
}

.process-step + .process-step {
    border-top: 1px solid rgba(47, 91, 54, 0.09);
    margin-top: 22px;
}

.process-step strong {
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: var(--jf-primary);
    color: #fff;
    font-size: 1.2rem;
}

.product-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.12);
}

.product-card-media {
    position: relative;
    margin: -12px -12px 22px;
    overflow: hidden;
    border-radius: 26px;
    aspect-ratio: 4 / 3;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(243, 223, 185, 0.72) 100%);
    box-shadow: 0 22px 34px rgba(29, 35, 24, 0.12);
}

.product-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(29, 35, 24, 0.12) 100%);
    pointer-events: none;
}

.product-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease, filter 0.35s ease;
}

.product-photo-pasteur {
    object-position: center 36%;
}

.product-photo-raw {
    object-position: center 55%;
}

.product-photo-kefir {
    object-position: center 44%;
}

.product-photo-raw-50 {
    object-position: center 62%;
}

.product-photo-raw-100 {
    object-position: center 58%;
}

.product-photo-raw-liter {
    object-position: center 52%;
}

.product-photo-pasteur-liter {
    object-position: center 48%;
}

.product-photo-focus-top {
    object-position: center 24%;
}

.product-photo-focus-bottom {
    object-position: center 68%;
}

.product-card:hover .product-card-image {
    transform: scale(1.05);
    filter: saturate(1.04);
}

.featured-product {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(211, 161, 74, 0.18) 100%);
}

.product-card .button-primary,
.product-card .button-secondary {
    margin-top: 22px;
}

.offer-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 12px 0 22px;
    padding: 22px 24px;
    border-radius: 28px;
    border: 1px solid rgba(47, 91, 54, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(243, 223, 185, 0.72) 100%);
    box-shadow: var(--jf-shadow);
}

.offer-copy strong {
    display: block;
    margin-bottom: 6px;
    color: var(--jf-primary-dark);
    font-size: 1.2rem;
}

.offer-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.offer-points span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--jf-primary);
    font-size: 0.88rem;
    font-weight: 800;
    border: 1px solid rgba(47, 91, 54, 0.08);
}

.usage-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(243, 223, 185, 0.48) 100%);
}

.usage-card span {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--jf-accent);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.dark-panel {
    height: 100%;
    color: #fff;
    background: linear-gradient(135deg, #1f4328 0%, #2c5a35 100%);
}

.dark-panel p,
.dark-panel h2 {
    color: inherit;
}

.carousel-shell {
    height: 100%;
    padding: 28px;
    border-radius: 34px;
    border: 1px solid rgba(47, 91, 54, 0.1);
    background: rgba(255, 255, 255, 0.56);
    box-shadow: var(--jf-shadow);
    backdrop-filter: blur(12px);
}

.carousel-header {
    max-width: 520px;
    margin-bottom: 22px;
}

.carousel-header h3 {
    font-size: clamp(2rem, 3vw, 2.7rem);
    line-height: 1.1;
}

.location-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 223, 185, 0.52) 100%);
}

.location-map-card {
    overflow: hidden;
    min-height: 100%;
    border-radius: 34px;
    border: 1px solid rgba(47, 91, 54, 0.1);
    box-shadow: var(--jf-shadow);
    background: rgba(255, 255, 255, 0.92);
}

.location-map-card iframe {
    display: block;
    width: 100%;
    min-height: 460px;
    border: 0;
    filter: saturate(0.96) contrast(1.02);
}

.market-rating-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(47, 91, 54, 0.08);
}

.market-rating-score strong {
    display: block;
    color: var(--jf-primary-dark);
    font-size: 2rem;
    line-height: 1;
}

.market-rating-score .testimonial-rating {
    margin: 8px 0 6px;
}

.market-rating-score span {
    color: var(--jf-muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.market-rating-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.market-rating-points span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(47, 91, 54, 0.06);
    color: var(--jf-primary);
    font-size: 0.84rem;
    font-weight: 800;
}

.premium-carousel {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.premium-carousel:hover .premium-carousel-track {
    animation-play-state: paused;
}

.premium-carousel-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: jfCarousel 28s linear infinite;
}

.carousel-card {
    width: min(320px, calc(100vw - 88px));
    flex: 0 0 auto;
}

.testimonial-source {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--jf-muted);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.source-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(47, 91, 54, 0.08);
    color: var(--jf-primary);
}

.testimonial-author {
    display: block;
    margin-top: 0;
    margin-bottom: 6px;
    color: var(--jf-text);
    font-size: 1.05rem;
}

.testimonial-meta {
    display: block;
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--jf-muted);
    font-size: 0.92rem;
}

.testimonial-card strong {
    display: block;
    margin-top: 18px;
    color: var(--jf-text);
}

.testimonial-rating {
    display: inline-flex;
    gap: 4px;
    margin-bottom: 14px;
    color: var(--jf-accent);
    font-size: 0.88rem;
}

.testimonial-card span {
    display: block;
    margin-top: 4px;
    color: var(--jf-muted);
}

.testimonial-card p {
    color: var(--jf-text);
    line-height: 1.8;
}

.testimonial-product {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(47, 91, 54, 0.06);
    color: var(--jf-primary);
    font-size: 0.86rem;
    font-weight: 800;
}

.variant-review-card {
    background: rgba(255, 255, 255, 0.94);
}

.accent-card {
    background: linear-gradient(180deg, rgba(211, 161, 74, 0.22) 0%, rgba(255, 255, 255, 0.94) 100%);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--jf-primary);
    font-weight: 800;
}

.site-footer {
    padding: 80px 0 34px;
    color: rgba(255, 255, 255, 0.82);
    background: linear-gradient(180deg, #1d281d 0%, #121811 100%);
}

.cta-checklist {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.cta-checklist li {
    position: relative;
    padding-left: 28px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
}

.cta-checklist li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, var(--jf-accent-soft) 100%);
}

[data-animate] {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--jf-delay, 0ms);
    will-change: transform, opacity;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

[data-animate="left"] {
    transform: translate3d(-42px, 0, 0);
}

[data-animate="right"] {
    transform: translate3d(42px, 0, 0);
}

[data-animate="scale"] {
    transform: scale(0.94);
}

[data-animate="blur"] {
    transform: translate3d(0, 24px, 0) scale(0.98);
    filter: blur(8px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-animate="blur"].is-visible {
    filter: blur(0);
}

.parallax-target {
    transform: translate3d(0, 0, 0);
    transition: transform 0.18s linear;
    will-change: transform;
}

@keyframes jfAmbientShift {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    100% {
        transform: translate3d(0, -18px, 0) scale(1.03);
    }
}

@keyframes jfFloatY {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -16px, 0);
    }
}

@keyframes jfRibbon {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes jfCarousel {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes jfHeroProgress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    body::before,
    .hero-section::before,
    .hero-section::after,
    .trust-ribbon-track,
    .premium-carousel-track {
        animation: none;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
    }

    [data-animate] {
        opacity: 1;
        filter: none;
        transform: none;
        transition: none;
    }

    .hero-banner-card,
    .hero-banner-image,
    .highlight-item,
    .feature-card,
    .benefit-card,
    .usage-card,
    .product-card,
    .testimonial-card,
    .story-card,
    .value-card,
    .pricing-card,
    .detail-card,
    .delivery-card,
    .checklist-card,
    .contact-card,
    .faq-card,
    .form-card,
    .hero-badge-list span,
    .button-primary,
    .button-secondary,
    .button-light,
    .nav-link {
        transition: none;
        transform: none;
    }

    .hero-rotator-dot::after,
    .hero-rotator-progress-bar {
        animation: none;
    }
}

.site-footer h3,
.site-footer p,
.site-footer a {
    color: inherit;
}

.site-footer .button-light {
    color: var(--jf-primary-dark);
}

.light-brand {
    color: #fff;
    margin-bottom: 16px;
}

.footer-links li + li {
    margin-top: 10px;
}

.footer-bottom {
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.page-hero {
    padding: 86px 0 64px;
}

.page-hero-layout {
    align-items: center;
}

.page-hero-copy-shell {
    position: relative;
    z-index: 1;
}

.page-hero-art {
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(47, 91, 54, 0.08);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--jf-shadow);
}

.page-hero-art img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(248, 242, 231, 0), rgba(248, 242, 231, 0.8));
}

.page-hero .hero-copy {
    max-width: 68ch;
    color: var(--jf-muted);
}

.breadcrumb-inline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--jf-muted);
}

.breadcrumb-inline a {
    color: var(--jf-primary);
}

.story-card,
.value-card,
.detail-card,
.pricing-card,
.delivery-card,
.checklist-card,
.contact-card,
.faq-card,
.form-card {
    background: rgba(255, 255, 255, 0.92);
}

.story-card p + p,
.detail-card p + p,
.contact-card p + p {
    margin-top: 12px;
}

.stat-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.stat-pill {
    padding: 24px 18px;
    text-align: center;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--jf-border);
    box-shadow: var(--jf-shadow);
}

.stat-pill strong {
    display: block;
    margin-bottom: 6px;
    font-size: 2rem;
    color: var(--jf-primary);
}

.stat-pill span {
    color: var(--jf-muted);
}

.green-section .stat-pill span {
    color: var(--jf-text);
}

.faq-list {
    display: grid;
    gap: 18px;
}

.faq-item {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--jf-border);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--jf-shadow);
}

.faq-button {
    width: 100%;
    padding: 22px 24px;
    border: 0;
    background: transparent;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--jf-text);
}

.faq-answer {
    padding: 0 24px 24px;
}

.contact-listing {
    display: grid;
    gap: 18px;
}

.contact-card i,
.delivery-card i,
.checklist-card i {
    margin-bottom: 16px;
    color: var(--jf-primary);
    font-size: 1.5rem;
}

.order-form .form-control,
.order-form .form-select,
.order-form textarea {
    min-height: 56px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(47, 91, 54, 0.16);
    box-shadow: none;
}

.order-form textarea {
    min-height: 140px;
    resize: vertical;
}

.order-form .form-control:focus,
.order-form .form-select:focus,
.order-form textarea:focus {
    border-color: var(--jf-primary);
    box-shadow: 0 0 0 0.2rem rgba(47, 91, 54, 0.12);
}

.wa-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 40;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #25d366 0%, #16944b 100%);
    box-shadow: 0 20px 35px rgba(22, 148, 75, 0.28);
    font-size: 1.45rem;
}

.wa-float:hover {
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 1199px) {
    .hero-stage {
        min-height: 640px;
    }

    .hero-stage-content {
        min-height: 640px;
        padding-top: 72px;
    }

    .hero-stage-card {
        right: 34px;
        top: 34px;
    }
}

@media (max-width: 991px) {
    .topbar-strip {
        display: none;
    }

    .nav-cta {
        width: 100%;
    }

    .hero-section,
    .page-hero,
    .section-block {
        padding: 74px 0;
    }

    .hero-section {
        padding: 22px 0 34px;
    }

    .hero-highlights,
    .stat-band,
    .review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-shell {
        padding: 0 12px;
    }

    .offer-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .market-rating-panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .market-rating-points {
        justify-content: flex-start;
    }

    .hero-stage,
    .hero-stage-content {
        min-height: auto;
    }

    .hero-stage {
        border-radius: 0 0 30px 30px;
    }

    .hero-stage-wash {
        background: linear-gradient(180deg, rgba(33, 68, 42, 0.78) 0%, rgba(33, 68, 42, 0.56) 38%, rgba(33, 68, 42, 0.26) 100%);
    }

    .hero-stage-content {
        padding-top: 68px;
        padding-bottom: 190px;
    }

    .hero-content-panel {
        max-width: 100%;
    }

    .hero-stage-card {
        left: 22px;
        right: 22px;
        top: auto;
        bottom: 22px;
        width: auto;
    }

    .hero-showcase {
        min-height: auto;
        display: grid;
        gap: 18px;
    }

    .hero-banner-image {
        aspect-ratio: 16 / 11;
    }

    .page-hero-layout {
        row-gap: 28px;
    }

    .hero-rotator-panel {
        gap: 12px;
    }

    .hero-rotator-dot {
        width: 34px;
    }

    .hero-rotator-dot.is-active {
        width: 54px;
    }

    .showcase-panel,
    .product-visual,
    .mini-stat {
        position: static;
        width: 100%;
    }

    .product-card-media {
        margin: -8px -8px 20px;
        border-radius: 22px;
    }

    .product-visual {
        height: auto;
        min-height: 320px;
    }
}

@media (max-width: 767px) {
    .hero-section h1,
    .page-hero h1 {
        max-width: none;
        font-size: 2.7rem;
    }

    .hero-highlights,
    .stat-band,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .hero-stage {
        min-height: auto;
        border-radius: 0 0 24px 24px;
    }

    .hero-stage-content {
        padding-top: 54px;
        padding-bottom: 22px;
    }

    .hero-content-panel {
        padding: 0;
    }

    .hero-stage-card {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: auto;
        margin: 18px 16px 16px;
    }

    .hero-stage-image {
        transition-duration: 0.9s, 4.2s;
    }

    .hero-stage-bottom {
        margin-top: 26px;
    }

    .hero-proof-list {
        max-width: none;
    }

    .feature-card,
    .benefit-card,
    .usage-card,
    .product-card,
    .testimonial-card,
    .story-card,
    .value-card,
    .pricing-card,
    .detail-card,
    .delivery-card,
    .checklist-card,
    .contact-card,
    .faq-card,
    .form-card,
    .soft-panel,
    .timeline-card,
    .cta-panel,
    .glass-panel,
    .hero-banner-card {
        padding: 24px;
        border-radius: 24px;
    }

    .hero-banner-card {
        padding: 0;
    }

    .hero-banner-copy {
        padding: 22px 20px 24px;
    }

    .page-hero-art {
        border-radius: 24px;
    }

    .carousel-shell {
        padding: 24px 18px;
    }

    .offer-banner {
        padding: 20px;
        border-radius: 22px;
    }

    .market-rating-panel {
        padding: 18px;
        border-radius: 20px;
    }

    .offer-points {
        gap: 8px;
    }

    .premium-carousel {
        mask-image: none;
    }

    .process-step {
        grid-template-columns: 1fr;
    }

    .process-step strong {
        width: 54px;
        height: 54px;
    }

    .button-primary,
    .button-secondary,
    .button-light {
        width: 100%;
    }

    .hero-actions {
        flex-direction: column;
    }
}
